• linking with rtx51tiny
    hi there, i just started learning rtos tiny. This is my first program and it goes like this #include "rtx51tny.h" #include "reg51f.h" #define LED P1 #define OFF 0XFF #define ON 0X00 void job0 (void...
  • LX51 and RTX51Tiny
    LX51 does not recognize RTX51TINY directive!?
  • DEBUG RTX51TINY
    Sorry for my bad English first. I use keil 7.0 and I wrote a little RTX program, and I have a question: When I STEP debug task 0, it just run in task 0 not run to other task, but at the time, other...
  • more tasks in rtx51tiny?
    Is it possible to increase the maximum number of tasks in RTX51TINY? If it is possible how much effort would this need, and what would I have to do? Of course I could use RTX51 full, but can't spend...
  • Question on RTX51Tiny os_wait
    What would happen if you have an os_wait or os_wait2 call with an interval of X milliseconds, such as while {TRUE) { os_wait2(K_IVL, X); //do some stuff } and the "stuff" takes more than X...