This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Whether Event handlers run in Interrupt context

Hello,

I am using ble_app_blinky. I have a basic query about event handles. There are lot of event handlers registers as part of initialization. Will all these event handlers run in interrupt context.

Example:

app_timer_create(...,  repeated_timer_handler)

fstorage_evt_handler()

button_event_handler()

nrf_drv_rtc_init(&rtc, &config, rtc_handler);

ble_evt_handler()

All  call back functions registered can called within on_write()

#define BLE_LBS_DEF(_name) \
static ble_lbs_t _name; \
NRF_SDH_BLE_OBSERVER(_name ## _obs, \
BLE_LBS_BLE_OBSERVER_PRIO, \

Thanks & Regards

Vishnu Beema

Related