|
Re: Explanation for FRC Autonomous Needed
The 2011 LabVIEW robot project does not include the Autonomous Iterative vi that was supported in previous years. It's not hard to add its function to the 2011 project, but I think it turns out to be easier to move actions to Periodic Tasks where appropriate and use the Autonomous Independent to sequence things.
Autonomous Independent gets called once when Autonomous Mode begins. It should be written to do everything it needs to before completing. The framework code will automatically terminate Autonomous Independent at the end of Autonomous Mode, before starting to call Teleop each time a packet of information is exchanged with the Driver Station.
|