|
|
|
![]() |
|
|||||||
|
||||||||
![]() |
| Thread Tools | Rate Thread | Display Modes |
|
#1
|
||||
|
||||
|
Loop execution time for Autonomous code
I know that the speed of execution for a non-autonomous code loop is 26.2 ms, but I jcan't find documentation of how long an autonomous code will take to loop. What is the correct time, for counter purposes?
|
|
#2
|
|||||
|
|||||
|
Re: Loop execution time for Autonomous code
If you look at the code, it shows the autonomous mode and the non-autonomous mode called at the same time, so I am pretty sure it is the same time for a loop in autonomous mode as it is in non-autonomous mode.
they might be off by a microsecond or two, because of the functions called, but they're basically the same Last edited by AIBob : 12-02-2005 at 14:28. |
|
#3
|
|||
|
|||
|
Re: Loop execution time for Autonomous code
If you look at the beginning of User_Autonomous_Code() you see
Code:
while (autonomous_mode) /* DO NOT CHANGE! */
{
if (statusflag.NEW_SPI_DATA) /* 26.2ms loop area */
{
Getdata(&rxdata); /* DO NOT DELETE, or you will be stuck here forever! */
So that gets executed every 26.2ms, and Process_Data_From_Master_uP() is not. I'm not sure what you are asking, do you want to know how long it takes for the code to run? |
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Example gyro code released. | Kevin Watson | Programming | 60 | 17-03-2005 18:32 |
| Team THRUST - Kevin's Code and Camera Code Combine | Chris_Elston | Programming | 3 | 31-01-2005 22:28 |
| Solution to Timing Loops | Steven Carmain | Programming | 39 | 10-02-2003 13:33 |
| How long should production time be??? | archiver | 1999 | 4 | 23-06-2002 23:16 |
| Arm Rotation (1 Button Programming!!) | Joelster | Technical Discussion | 1 | 14-02-2002 13:15 |