• OS Tick & OS Clock for OS_ITV_SET() ticks
    I'm attempting to run a task delay timer of 1 second. By my calculation, this should be 100 ticks if my OS_TICK is set to 10ms (10000 us). However, it's off by a factor of .6. It's no coincidence that...
  • Can a task period larger than tick time (rtx51tny)?
    The module just include at89s52,ps7219,ds12887a,leds.When use no os,have a delay sub as void Soft_Delay_ms(unsigned char x) { unsigned int i=0; i = x / Tma; while(x--) _nop_(); } ,and use...
  • 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...
  • How can I get the current RTX ticks?
    I could not find an API for RTX to get the current ticks. I need to know that information in order to measure the performance.
  • RTOS : Task switch during a time tick
    Dear all, I have to work with RL-RTX, and I have first look at the RTX traffic example. There is something I do not understand about task switching. Some years ago, I was working on a home-made RTOS...