Hi All,
I would like to change the OS Tick (timer interrupt) from 1ms to 0.2ms without changing the behaviour of the OS_Delay() or any other time functions. I did the following until now:
changing timer reload:
#define TIMER_RELOAD (OS_PCLK_TIMER/5000 - 1)
new tick handler:
OS_HandleTick_Ex();
What additional setting does i have to do now, to guarantee that a OS_Delay(10) call remains a delay of 10ms (I tried to modify with the OS_CONFIG macro, but this didn't work as expected)?
I'm using embOS version 3.60a with IAR Embedded Workbench.
Thanks for your help!
I would like to change the OS Tick (timer interrupt) from 1ms to 0.2ms without changing the behaviour of the OS_Delay() or any other time functions. I did the following until now:
changing timer reload:
#define TIMER_RELOAD (OS_PCLK_TIMER/5000 - 1)
new tick handler:
OS_HandleTick_Ex();
What additional setting does i have to do now, to guarantee that a OS_Delay(10) call remains a delay of 10ms (I tried to modify with the OS_CONFIG macro, but this didn't work as expected)?
I'm using embOS version 3.60a with IAR Embedded Workbench.
Thanks for your help!