Cannot see custom boards in nRF Connect for VS Code using a Mac

Custom boards are not getting picked up using nrf Connect for VS Code on a Macbook Pro. I have the settings.json set:


And there is a boards directory:

I've stopped and restarted VS Code, but the board I'm looking for won't show:

I even added the directory which has the /boards folder in it to the nrf settings:

Parents Reply
  • It seems you are missing at least the defconfig file which is mandatory. This is a list of mandatory files (for a 52 series device in this example, so you don't have multiple cores in this list, there are also no board revisions in this list):

    boards/<ARCH>/my_board_nrf52833
    ├── Kconfig.board
    ├── Kconfig.defconfig
    ├── my_board_nrf52833_defconfig
    ├── my_board_nrf52833.dts
    └── my_board_nrf52833-pinctrl.dtsi 

Children
Related