Hello,
I'm starting development with nordic arm processors. Therefore we purchased the BMD-360 EVK. This board features the NRF52811 processor and has the same pins as the PCA10040. I'm currently trying to setup a firmware project and faced some issues there.
i'm using segger embedded studio v6.32a and nordic sdk 17.1.0
i copied the "blinky" exanmple from the example forlder and i'm trying to change the project for my board.
here's what i've done so far:
the project was not compiling by default so i had to change the "flash_placement.xml"
- i removed size="0x4" there and the project compiled
<ProgramSection alignment="4" load="Yes" name=".text" size="0x4" /> <ProgramSection alignment="4" load="Yes" name=".rodata" size="0x4" />
- in segger embedded studio i changed some project settings to switch to the NRF52811 processor
i can connect to the board via jlink and i can upload new sketches. But i never reach a breakpoint in the code so i guess there are still isuues with the project file. If i debug the program always stops at the same point before hitting any breakpoint in the code.
does anybody know why the firmware sketch is not executed?
best,