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

receiving ble evt callbacks using Mesh SDK 2.0.0 and SD6.0.0 (SDK15.0.0)

Hi @ll,

I'm not able to receive any ble events that should be triggered by the SoftDevice.

What I did:
- Using dfu_example (added beaconing advertiser and connectable advertiser)
- in mesh_softdevice_init.c:
  - replaced in mesh_softdevice_init(nrf_clock_lf_cfg_t lfc_cfg)
    //RETURN_ON_ERROR(sd_softdevice_enable(&lfc_cfg, app_error_fault_handler));
    RETURN_ON_ERROR(nrf_sdh_enable_request());
-  in my main(void):
  - after initialize() for initializing sd & mesh I added:
     NRF_SDH_BLE_OBSERVER(m_ble_observer, APP_BLE_OBSERVER_PRIO, ble_evt_handler, NULL);

But I never get the handler being called.

Is there something I missed?

Thank you in advance for your help!

Bye
Andrej

Related