Hello,
I'm trying to create my own bootloader application that uses softdevice in IAR. I would like to know how to configure my project so that it writes 0x0003A000 to the UICR at 0x10001014.
I am using IAR workbench, but when I use
#pragma location = 0x10001014
__root uint32_t uicr = 0x0003A000;
the value is not present at this specific address after i flash the device.
Is there an example available how to do this in IAR?
Thanks in advance