• RTX51 Tiny system function (os_wait)
    Hi. I've performed a 1 Hz incremental counter with RTX51 Tiny functions. I configured the parameter INT_CLOCK EQU 10000 at the Conf_tny.a51 file configuration, with a 12Mhz XTAL and then I did a task...
  • What is range of the ticks in the os_wait()
    hi: I want to know the range of the ticks in the os_wait() when the event which is timeout or interval is being waited for. for example: os_wait(K_TMO, ticks ,0); os_wait(K_IVL, ticks ,0); what...
  • 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...
  • os_wait for signal and timeout
    Hello all, My software is based RTX51-Full. Does someone has any idea how can I wait for a signal a X msec, but if I receive the signal in this period of time I'll still wait until the end of this X...
  • RTX51-full - os_wait for ever
    Hello all. Can anyone help me with the following one? My target is working under RTX51-full. I have an interrupt function (void mc12comm() interrupt 0 using 3) that calls other regular function, and...