• 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.
  • 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...
  • Get current program coutner
    I'm looking for a way to get the current program counter. I adapted the function __get_PSP() from core_cmFunc.h in the following way: __STATIC_INLINE uint32_t __get_PC(void) { register uint32_t...
  • 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...
  • get current time in microseconds method
    I'm using the Timer 3 and I want to verify that the ISR is being called at the correct interval. I wanted to use a the clock() function but I can't include <time.h>. What should I do??? Thanks