Hello ,
I am initialising application timer with prescale of 327 for 10 ms interrupt delay. I created a timer slot using app_timer_create(&ulTestTimer, APP_TIMER_MODE_REPEATED, test_timeout);
and started the timer app_timer_start(ulTestTimer, 1, NULL);
where the callback should be called for every 10ms.
Is this correct? If yes, I am not getting the interrupt. But the same is working when I start the timer with 5 value corresponding to 50ms, as app_timer_start(ulTestTimer, 5, NULL);
Am using with S110 softdevice v 8.0 and SDK 9.0.
Regards, Sowmya