Application wont start on new MCU

Hi, I have custom board with nrf54l15. Im using sdk 2.9.1 and nRF54L15-DK as debugger/flasher. Im able to flash firmware correctly using SWD, or do nrfjprog --recover, but the application itself wont start. Debugger is stuck at:

I used nrfjprog --readregs and got:

I tried to flash same firmware (blinky example) but build for nRF54L15-DK and debugger is getting to:

but after that nothing happens. Im not sure what why mcu wont boot application. I assume its not hardware related since mcu is flashing correctly. I would appreciate some guidence on where to start with this issue, Thank you.

im also including my zephyr.dts file and .config

24173.zephyr.dts

config.config

Parents Reply
  • Hello,

    Adding this CONFIG_CLOCK_CONTROL_NRF_K32SRC_RC=y made the sample wrks on output board and made the output ogf bøinky sample on termina, proves the debug error was related to low frequency clock as board doesnt have any LFXO.

    I am not sure about the new error, maybe you can set all the configuration of RC (calibration, accuracy and ensuring the calibration is always on) and try the process again.

    CONFIG_CLOCK_CONTROL_NRF_K32SRC_RC=y
    CONFIG_CLOCK_CONTROL_NRF_K32SRC_500PPM=y
    CONFIG_CLOCK_CONTROL_NRF_K32SRC_RC_CALIBRATION=y
    CONFIG_CLOCK_CONTROL_NRF_CALIBRATION_LF_ALWAYS_ON=y

Children
No Data
Related