I would like to make priority of timer0 interruption callback higher than priority of app_easy_timer callback. Is app_easy_timer callback called by BLE_GROSSTGTIM_IRQn interruption handler? If so, is this code allowed?
NVIC_SetPriority (SWTIM_IRQn 2);
NVIC_SetPriority (BLE_GROSSTGTIM_IRQn, 3);
Keywords:
Device:


Hi hashi,
The app_easy_timer() is fed by the BLE timer that has higher priority than the SW timer. I would recommend NOT modifying any interrupt priority and using the SDK as provided by Dialog.
Thanks, PM_Dialog
Thank you for your reply. I understand it.