Quote:
Originally Posted by Radical Pi
It's a known issue and 100% error of the team's programmer. Java and C++ code waits for the autonomous code to finish execution even when the FMS switches to teleop. The LabVIEW error is a little tougher to explain but it is user error.
coincidence
|
Not entirely sure I agree here.
Yes, C++ (what 1075 uses) DOES wait to start Teleop() until after Autonomous() is completed.
However, Autonomous() at least, as defined in the SimpleRobot template, has a While(IsAutonomous()){} loop in it. If your code is designed to pay attention to this fact, you should have no problems forcing your Autonomous code to stop operation the instant FMS changes your robots status from Autonomous to Teleop.