• RTX timer tick rate
    Hello, I was wondering if any of you uses RTX with a tick rate faster than 10 milliseconds. Franc Urbanc, RTX's author, recommends this setting but I am not sure why - a context switch overhead of...
  • temporarily supress WARNING
    How can I temporarily supress a Compiler Warning just for one function? I thougt about #pragma WARNING disable = 47 void my_function(int iTest) { //do nothing, //iTest is an unreference Parameter...
  • How to measure RTX system ticks
    Hi, is there a programmatically way to get the number of RTX systems ticks a comand is running? I need to measure the time once and then have to use the value for a os_dly_wait.
  • Supressing Specific Warnings in RealView Compiler
    Hi everyone, Does anyone know if it is possible to supress a specific warning (arbitrary portion of code), as opposed to all warnings of a specific type? For instance, I am porting code that...
  • 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...