Flash ERROR with the j-link debugger

Hello I currently have an error when flashing with j-link on a custom board.
The mcu is nRF52833 QDAA and the debugger pin is connected to 4 pins.
In VSCODE, CONNECTD DEVICES in CONNECTD DEVICES, the MCU name comes out at first, but then it doesn't come out immediately. I'm attaching a picture of it. Is there any solution?

Parents
  • Hi

    This is something that is lacking in the board creation option in VS code unfortunately. When making the board, you can create the board on top of QIAA and change the following references to make them match QDAA:

    • Kconfig.board: replace SOC_NRF52833_QIAA with SOC_NRF52833_QDAA
    • myboard_defconfig: replace CONFIG_SOC_NRF52833_QIAA=y with CONFIG_SOC_NRF52833_QDAA=y
    • myboard.dts: replace #include <nordic/nrf52833_qiaa.dtsi> with #include <nordic/nrf52833_qdaa.dtsi>

    Best regards,

    Simon

Reply
  • Hi

    This is something that is lacking in the board creation option in VS code unfortunately. When making the board, you can create the board on top of QIAA and change the following references to make them match QDAA:

    • Kconfig.board: replace SOC_NRF52833_QIAA with SOC_NRF52833_QDAA
    • myboard_defconfig: replace CONFIG_SOC_NRF52833_QIAA=y with CONFIG_SOC_NRF52833_QDAA=y
    • myboard.dts: replace #include <nordic/nrf52833_qiaa.dtsi> with #include <nordic/nrf52833_qdaa.dtsi>

    Best regards,

    Simon

Children
Related