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

SDK14 ble_evt_t evt_ID

Hi

I'm migrating to SDK 14 and have my service's on_ble_evt() function registered. However, p_ble_evt->header.evt_id == 65535 (0xFFFF) for every evt, so I think I'm doing something wrong. Every connection cycle I get about five of these connection events.

SDK14.0 nRF52832

  • For anyone having the same problem, the arguments to your_service_on_ble_evt() has changed order between SDK 13 and 14. In SDK 14, it should be:

    void your_service_on_ble_evt(ble_evt_t const *p_ble_evt, void *context) { your_service_t *p_degree = (ble_your_service_t *) p_your_service; }

Related