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

Linking error when you try to add TWI module to secure bootloader project

I have an nrf52832 dev board with me and I'm using nRF5_SDK_15.0.0_a53641a SDK version. I'm using the project "pca10040_ble" inside the "secure_bootloader" folder from the "dfu" examples with segger IDE ( release v 4.16) . For application-specific reason, I wanted to have a TWI master functionality in my bootloader code. I was successfully able to add TWI module to this project and compile it. But when I add a function of TWI which writes to the slave device, then while compiling I'm getting this linker error : 

section .tdata overlaps absolute placed section .reserved_flash_tail

What my understanding from this error is that my application data is overlapping the reserved flash data. If this is the case then how do I change the size of reserved_flash data and what are the guidelines based on which I can change such that it does not lead to an error for other memory sections.

Thank you

Related