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

beacon + DFU + buttonless

Hi
I trying to develop a module in the 52810. I want use te ble_app_beacon and add a DFU buttonless. I was able to add the DFU, but when i was to integrate the buttonless part i got an error during the initialisation. I followed the dfu buttonless tutorial.


ble_dfu_buttonless_init_t dfus_init =
{
.evt_handler = ble_dfu_buttonless_evt_handler
};
err_code = ble_dfu_buttonless_init(&dfus_init);
APP_ERROR_CHECK(err_code);

I got 0x04 error after the init.

Related