Hello,
I want to use P0.27 as output but no way to get it working (tested on my custom board and on DK). If I just change for another pin to check my code, it's OK.
It looks like if P0.27 is used somewhere else but I Don't know how to get it.
Hello,
I want to use P0.27 as output but no way to get it working (tested on my custom board and on DK). If I just change for another pin to check my code, it's OK.
It looks like if P0.27 is used somewhere else but I Don't know how to get it.
No, each image has its own overlay file (application, SPM, MCUBoot).
You can add an overlay file for the bootloader by adding the following to your CMakeLists.txt:
set(mcuboot_DTC_OVERLAY_FILE ${CMAKE_CURRENT_SOURCE_DIR}/mcuboot.overlay )
If you want to, instead of having multiple overlay files, you can point all images to the same one.
Hello Didrik, that's perfect.
Thank you.