hi, I am using lpc2294, ARTX, 12MhzXTALx5=60Mhz
timer tick occurs every 10ms ...no problem with that. os_dly_wait works fine.
But my user timer never timeouts forexample: os_tmr_create(100,1);//I expect timeout every 10x100=1000ms
but I never get os_tmr_call() called.
Any opinions?
make sure OS_TIMERCNT is not 0 (If you are getting non-zero back from os_create_tmr I must not be 0)
os_create_tmr(100,1) will only call os_tmr_call(1) once, not every second. The timer needs to be re-created.
Not sure what else it could be at the moment.