Hello,
In order to know if my program is correctly running, I need to know how many time is spent in the idle task of my RTX OS (OS integrated with Keil) in order to be sure that my microcontrller has enougth time to execute all tasks. Thank you for your help
Ludovic
PS: I work on a cortex M3 microcontroller
void rt_post_taskswitch(unsigned int a_task_id) { // idle task? if (a_task_id == <place you're id here>) { lit_LED() ; } else { unlid_LED() ; } }
I meant, of course: "<place your id here>" !