|
Re: autonomous code placement
not all autonomous code goes in user_routines_fast - anything that is going to be acting on sensor input should probably just go in user_routines, as the sensor input is only updated once per user_routines call. put processing that is not sensor-dependent in user_routines_fast.
|