Hi,
I'm trying to integrate the secure_bootloader DFU code into the ble_app_uart_c example but am stuck on an error regarding not fitting in an 'UNPLACED_SECTIONS' region. Here is the error when I try compiling.
...
Linking ble_app_uart_c_pca10056_s140.elf
Output/Release/Exe/ble_app_uart_c_pca10056_s140.elf section `.dfu_trans' will not fit in region `UNPLACED_SECTIONS'
region `UNPLACED_SECTIONS' overflowed by 8200 bytes
...
I'm using nRF5_SDK_17.0.2, and all I've done so far was start with ble_app_uart_c (examples\ble_central\ble_app_uart_c\pca10056\s140\ses), then I added all the folders/files from the secure_bootloader example project (examples\dfu\secure_bootloader\pca10056_s140_ble_debug\ses). I've copy and pasted sections from the sdk_config.h file, though this error showed up before I finished going through the entire config. I haven't touched the main.c file at all.
Is this something particular I need to do in order to add secure bootloader DFU to the BLE app uart c example?