Log in

View Full Version : Periodic Tasks and Autonomus


moore1320
20-02-2012, 19:59
Are periodic tasks called during autonomous?

DominickC
20-02-2012, 20:02
I believe they are, and here's why.

When I deploy code by running Robot Main.vi, I often have Teleop, Pereodic Tasks, and Autonimous open to debug them. I notice that regardless of the mode the bot is in, Pereodic Tasks has the bolded run arrow signifying it is running.

Greg McKaskle
20-02-2012, 20:04
The periodic tasks VI is called once and runs continuously, in parallel, according to each loop's timing. So yes, they will run during autonomous.

Greg McKaskle