HI.
I use BLE in observer role. I register event handler only ones in initialization: NRF_SDH_BLE_OBSERVER(m_ble_observer, APP_BLE_OBSERVER_PRIO, ble_evt_handler, NULL);
Is the event handler ble_evt_handler reentrant (Reentering )function?
Thanks.
HI.
I use BLE in observer role. I register event handler only ones in initialization: NRF_SDH_BLE_OBSERVER(m_ble_observer, APP_BLE_OBSERVER_PRIO, ble_evt_handler, NULL);
Is the event handler ble_evt_handler reentrant (Reentering )function?
Thanks.
Hi.
The ble_evt_handler event handler is called in the SWI2_IRQHandler and it is always reentrant.
The ble_evt_handler has not the highest interrupt priority level, more about interrupt priority levels here.
It is not using any global variables.
- Andreas
Hi.
The ble_evt_handler event handler is called in the SWI2_IRQHandler and it is always reentrant.
The ble_evt_handler has not the highest interrupt priority level, more about interrupt priority levels here.
It is not using any global variables.
- Andreas