• RTX kernel. Task always sleeps
    Hi all, I am porting RTX on LH7A404. Now SWI and Clock interrupt worked well. I used the example1 as test program. The code is below. As you can see in the code, there are two tasks for testing...
  • RTX kernel. Task always sleeps
    Hi all, I am porting RTX on LH7A404. Now SWI and Clock interrupt worked well. I used the example1 as test program. The code is below. As you can see in the code, there are two tasks for testing...
  • Task stack size of RTX kernel
    Hi, I am trying to use the RTC of LPC2378 and the RTX kernel of KEIL. The below is the code of one of my tasks. void job3 (void) __task { while(1) { snprintf(FMTstring, 29, "%04d-%02d...
  • Task stack size of RTX kernel
    Hi, I am trying to use the RTC of LPC2378 and the RTX kernel of KEIL. The below is the code of one of my tasks. void job3 (void) __task { while(1) { snprintf(FMTstring, 29, "%04d-%02d...
  • RTX kernel: exception on Task exit by breaking out of while(1) loop
    Hi, I was experimenting with the Tasks in RTX kernel. What i observed was that 1) if the highest priority task (at some point of time. Need not be the highest among all the threads) exits...