We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
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.
I initialize the OS ... tmr1 = os_tmr_create(100,1); returns someting ...so I can understand that timer has been created successfully.
What can be the problem?
Please help
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.