Hello, I am trying to integrate buttonless DFU functionality to my project.
However, when I compile the project I get this error
Linking target: _build/nrf52832_xxaa.out arm-none-eabi-gcc: error: _build/nrf52832_xxaa/bootloader.o: No such file or directory ../../../../nRF5_SDK/components/toolchain/gcc/Makefile.common:292: recipe for target '_build/nrf52832_xxaa.out' failed make: *** [_build/nrf52832_xxaa.out] Error 1
The steps I took was to start with the BLE application I have(That is working. start from hrs example), and I added BLE service for DFU to it from the `ble_app_buttonless_dfu` project.
Basically I added
// Initialize the async SVCI interface to bootloader. err_code = ble_dfu_buttonless_async_svci_init(); APP_ERROR_CHECK(err_code); dfus_init.evt_handler = ble_dfu_evt_handler; err_code = ble_dfu_buttonless_init(&dfus_init); APP_ERROR_CHECK(err_code);
and
`static void ble_dfu_evt_handler(ble_dfu_buttonless_evt_type_t event)` function and all the dependencies to them.
I just dont understand where to start debugging this. The Error message is not giving me enough information on where to start
I could not find documentation for integration buttonless DFU into an exisitng DFU project.
Can I get pointers on how to integrate buttonless DFU(Adding DFU service)