This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

List of ble events?

Hi

I'm reading the debug output of ble_cts_c.c:

NRF_LOG_DEBUG("BLE event handler called with event 0x%x\r\n", p_ble_evt->header.evt_id);

However I can't find any list or enumeration that shows which event number corresponds with which event. I tried looking here but it didn't help much.

Thanks

SDK13 nRF52832

  • See enum BLE_GAP_EVTS in file ble_gap.h
    See enum BLE_GATTS_EVTS in file ble_gatts.h
    See enum BLE_GATTC_EVTS in file ble_gattc.h
    They are enums, but base numbers are in file ble_ranges.h
    If you are using nRF5 SDK 13 files are located in folder components/softdevice/s132/headers

Related