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

Advertising after DFU

My application implements a beacon with services, and a buttonless BLE bootloader.

The application can start the bootloader in two ways.

The first method is executed locally.

#define BOOTLOADER_DFU_START 0xB1
sd_power_gpregret_set(0, BOOTLOADER_DFU_START);
NVIC_SystemReset();

For the second method, a remote device starts the bootloader using the buttonless DFU service.

After the update is complete, the bootloader jumps to the updated application.

If the application is updated with the first method, the beacon is advertised correctly.

If the application is updated with the second method, the beacon stop stops advertising until I perform a system reset or power cycle on the board.

How can I make advertising work correctly without forcing a device reset?

Parents
  • Have you tried to debug the issue? After the application is updated using the second method, is the application started at all, or is it stuck in the bootloader?

    If you enable logging, do you see any logging from the application? If you try to use the pca10056_s140_ble_debug bootloader project instead of the pca10056_s140_ble project, does the bootloader indicate that the application should start, or is it stuck somewhere in the bootloader? You can monitor the log from the bootloader if you use the ..._debug project.

    Best regards,

    Edvin

Reply
  • Have you tried to debug the issue? After the application is updated using the second method, is the application started at all, or is it stuck in the bootloader?

    If you enable logging, do you see any logging from the application? If you try to use the pca10056_s140_ble_debug bootloader project instead of the pca10056_s140_ble project, does the bootloader indicate that the application should start, or is it stuck somewhere in the bootloader? You can monitor the log from the bootloader if you use the ..._debug project.

    Best regards,

    Edvin

Children
Related