Zephyr RTOS application scaffold for ST Nucleo development boards.
Open this folder in VS Code and choose Dev Containers: Reopen in Container. The container uses Zephyr's official development image, maps USB devices for flashing, and installs helper agent CLIs.
Run these commands inside the devcontainer:
cd /workspaces
west init -l nucleo-zephyr
west update
west zephyr-export
west packages pip --installThis keeps the west workspace topdir at /workspaces and this Git repository at /workspaces/nucleo-zephyr, matching Zephyr's supported application-as-manifest topology.
The initial board target is nucleo_f401re. Replace it with your exact Nucleo board if needed.
cd /workspaces/nucleo-zephyr
west build -p always -b nucleo_f401re appConnect the board over USB, then run:
cd /workspaces/nucleo-zephyr
west flashThe intended remote is:
git@github.com:aurora-firmware/nucleo-zephyr.git