Building in a local container allows you to deploy the development environment with a couple of clicks, bypassing the need to manually install the required build tools. It does require the installation of Docker and Windows Subsystem for Linux, as well as having Virtualization enabled in the BIOS.
-
Reboot the computer and enter the BIOS setup.
-
Find the Virtualization option and set to
enabled
. -
Save setting and restart Windows.
-
Download and unzip the latest OpenOCD and add its
bin
folder to your environment path. -
Install the relevant driver for the devkits on chip debugger:
Manufacturer Devkit Driver Microchip ATSAME54-XPRO None required MXCHIP AZ3166 STLink NXP MIMXRT1050-EVKB JLink NXP MIMXRT1060-EVK JLink STM BL475E-IOT01 STLink STM BL4S5I-IOT01 STLink
- Install Visual Studio Code.
- Install Docker Desktop
-
Recursively clone the Getting Started Guide repository to your machine.
git clone --recursive https://github.com/azure-rtos/getting-started.git
-
Launch Visual Studio Code and install the following extension:
-
From the Command Palette
F1
, chooseRemote-Containers: Open Folder in Container
, and select the root folder of the cloned repository to build the Docker container
-
From a new command window run OpenOCD locally, using the appropriate command below:
Manufacturer Devkit Connection Command Microchip ATSAME54-XPRO openocd -f board/microchip_same54_xplained_pro.cfg -c "bindto 0.0.0.0" -c init -c "reset init" MXCHIP AZ3166 openocd -f board/stm32f4discovery.cfg -c "bindto 0.0.0.0" -c init -c "reset init" NXP MIMXRT1050-EVKB JLinkGDBServerCL -select USB -device MIMXRT1052xxx6A -speed auto -if SWD -noLocalhostOnly NXP MIMXRT1060-EVK JLinkGDBServerCL -select USB -device MIMXRT1062xxx6A -speed auto -if SWD -noLocalhostOnly STMicroelectronics BL475E-IOT01 openocd -f board/stm32l4discovery.cfg -c "bindto 0.0.0.0" -c init -c "reset init" STMicroelectronics BL4S5I-IOT01 openocd -f board/stm32l4discovery.cfg -c "bindto 0.0.0.0" -c init -c "reset init" -
Launch VS Code, and open the workspace in the directory for the target devkit.
For example the STM32L4 devkit workspace is
STMicroelectronics/STM32L4_L4+/STM32L4plus.code-workspace
. -
Press
F7
to build the application.Choose the
ARM GCC Cortex
CMake kit if prompted. -
Press
F5
to start debugging the application. -
Enter
host.docker.internal:3333
when prompted for the local hostname.The application will be flashed to the devKit and execution will break at main().
-
Press
F5
to resume execution. -
Use a serial monitor such as Termite to monitoring the device's output.