Add mcuboot to connect SDK BLE sample "central and peripheral"

Hi,

I'm trying to add BLE DFU to the nrf connect SDK sample "central and peripheral" for the nRF52832

I've done the following:

Add configurations to proj.conf


# Enable mcumgr.
CONFIG_MCUMGR=y

# Enable most core commands.
CONFIG_MCUMGR_CMD_IMG_MGMT=y
CONFIG_MCUMGR_CMD_OS_MGMT=y

# Ensure an MCUboot-compatible binary is generated.
CONFIG_BOOTLOADER_MCUBOOT=y

# Allow for large Bluetooth data packets.
CONFIG_BT_L2CAP_TX_MTU=252
CONFIG_BT_BUF_ACL_RX_SIZE=256

# Enable the Bluetooth (unauthenticated) and shell mcumgr transports.
CONFIG_MCUMGR_SMP_BT=y
CONFIG_MCUMGR_SMP_BT_AUTHEN=n

# Some command handlers require a large stack.
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=4096

Created a directory child_image with an empty mcuboot.conf file

When I build it with the command:

west build -b nrf52dk_nrf52832 --pristine

I get the following error:

zephyr/zephyr_pre0.elf section `text' will not fit in region
FLASH' region `FLASH' overflowed by 27752 bytes

Looking at the resulting size with arm-none-eabi-size of the mcuboot zephyr.elf i get:
text  data bss   dec   hex  filename
33082 500  23545 57127 df27 zephyr.elf

And the sizes for the central and peripheral without mcuboot:
Memory region Used Size   Region Size  %age Used
FLASH:        248516 B    512 KB       47.40%

Is there some memory allocated for the DFU slot which causes the overflow?

Thanks in advance,
Best Regards, Andreas

Parents Reply Children
  • One more thing, there are some other alternatives I forgot to mention.

    To make this a summary, the options are:

    1. Use an SoC variant with more flash.
    2. Adding an external flash.

    The following methods are also technically possible, but they are not officially supported, so realizing them will not be trivial, and technical support for them can be limited.

    1. A recovery image as discussed in this case:  BLE Recovery Image  .
    2. Single application slot DFU with CONFIG_SINGLE_APPLICATION_SLOT.
      • OTA is not possible out of the box with this.
      • OTA can be possible if you move the SMP Server to the bootloader.
        This is also discussed in the Recovery Image case above.
    3. Use Nordic Secure Immutable Bootloader as the only bootloader.
      1. A full DFU solution is not supported out of the box. 
      2. OTA is not possible out of the box with this.
      3. Possibility of moving the SMP Server to the bootloader has not been evaluated. Most likely not trivial.
    4. Use the nRF5 SDK Secure Bootloader and a SoftDevice as the only bootloader.
      1. Theoretically possible, not yet evaluated.
      2. BLE and Serial OTA supported possible.
      3. Single slot update possible.

    Overall, we still recommend changing SoC variant or adding an external flash. Depends on specific use cases and system architecture, the latter four methods, while challenging, can also be considered.

    Sorry I am late with those.

  • I've found I could reduce my build size by a lot by not using the Soft Device for bluetooth.

    Not sure why this is never recommended or barely mentioned in the docs, but my build went from 230kB (barely fitting on a nrf52832 with FOTA) to just 166KB!

    CONFIG_BT_LL_SOFTDEVICE=n
    CONFIG_BT_HCI=y
    CONFIG_BT_CTLR=y
    CONFIG_BT_LL_SW_SPLIT=y

    I'm sure the Soft Device is great but since the new SDK doesn't allow the Bootloader & App to share it, and none of the above options are easily supported, it's hard to justify!

    I will keep you updated if this change turns out to be problematic in any way.

  •  Interesting discovery. That option didn't occur to me at all.

    The SoftDevice Controller is provided as a prebuilt binary with all its features included; meanwhile the Zephyr Controller can be built to include just the features your required. Therefore, it makes sense that you can achieve a smaller size using that controller.

    The SoftDevice Controller is optimized for the nRF52 and nRF53 SoCs, so normally we recommend it for development. However, in a situation where flash size saving is of strong interest, using the Zephyr Controller makes sense. 

  • Maybe this is something that could be added to the documentation and taught to your support reps? In our case, it solves most of the problems we were dealing with just by freeing up a good amount of space. Could have saved ~two weeks of project progress & dev work. 

  • Yeah, that was quite the find. A table with size comparisons would quite useful.

Related