MCUXpresso 2.11.1 Development with VS Code¶
Overview¶
This guide demonstrates how to develop and cross compile applications for the DART-MX8M Cortex-m4 co-processor using Microsoft Visual Studio Code.
Please visit Variscite's MCUXpresso Guide for additional information about manually building demos, integration with Yocto, running applications from U-Boot and Linux, and JTAG debugging.
Setup Host Computer Environment¶
Follow the steps below to prepare a fresh Ubuntu 20.04 installation for VS Code debugging:
Install Dependencies¶
Install VS Code¶
Install VS Code Extensions¶
VS Code has a graphical interface for installing and managing extensions. To learn more, please see Using extensions in Visual Studio Code
For this guide, we will install the required extensions using the command line:
$ code --install-extension ms-vscode.cpptools
$ code --install-extension marus25.cortex-debug
$ code --install-extension dan-c-underwood.arm
Install Segger JLink¶
$ Download JLink_Linux_V760b_x86_64.deb from https://www.segger.com/downloads/jlink/
Direct Download: https://www.segger.com/downloads/jlink/JLink_Linux_V760b_x86_64.deb
$ sudo dpkg -i JLink_Linux_V760b_x86_64.deb
The software will be installed in /opt/SEGGER folder
Install MCUXpresso Toolchain and SDK¶
Download and install GNU-ARM bare-metal toolchain:
$ mkdir ~/var-mcuxpresso
$ cd ~/var-mcuxpresso
$ wget https://developer.arm.com/-/media/Files/downloads/gnu-rm/10.3-2021.07/gcc-arm-none-eabi-10.3-2021.07-x86_64-linux.tar.bz2
$ tar xvf gcc-arm-none-eabi-10.3-2021.07-x86_64-linux.tar.bz2
Download MCUXpresso SDK for the SOM:
$ cd ~/var-mcuxpresso
$ git clone https://github.com/varigit/freertos-variscite -b mcuxpresso_sdk_2.11.x-var01
$ cd freertos-variscite
Add Visual Studio Code support to the Variscite examples¶
Available Demos¶
All of the Variscite examples are located under the following folder.
Variscite provides a script to simplify the Project Configuration
Configure a single Project¶
For this example, we will configure the hello_world demo. However, the process is the same for all demos.
$ ./var_add_vscode_support.sh -b dart_mx8mq -e boards/dart_mx8mq/demo_apps/hello_world -t tcm -d /opt/SEGGER/JLink (for TCM target)
$ ./var_add_vscode_support.sh -b dart_mx8mq -e boards/dart_mx8mq/demo_apps/hello_world -t ddr -d /opt/SEGGER/JLink (for DDR target)
Configure all Projects¶
$ ./var_add_vscode_support.sh -b dart_mx8mq -e all -t tcm -d /opt/SEGGER/JLink (for TCM target)
$ ./var_add_vscode_support.sh -b dart_mx8mq -e all -t ddr -d /opt/SEGGER/JLink (for DDR target)
Note: Some J-Link debuggers support connecting to your host computer via Ethernet or Wi-Fi. To enable this, add the IP Address of your J-Link to launch.json:
$ vi ~/var-mcuxpresso/freertos-variscite/boards/dart_mx8mq/demo_apps/hello_world/.vscode/launch.json
{
"configurations": [
{
"ipAddress": "<J-Link IP Address>"
...
Disable LMEM caches to debug demos mapped in DDR¶
Note: to debug applications mapped in DDR, is mandatory to deactivate the LMEM caches
$ cd ~/var-mcuxpresso/freertos-variscite
$ git apply patches/0001-iMX8MQ-deactivated-the-LMEM-caches-to-debug-in-exter.patch
Please visit the SEGGER forum to additional information
https://forum.segger.com/index.php/Thread/2948-SOLVED-DEBUGGING-doesn-t-work-in-external-RAM-but-in-internal-RAM/?postID=11144&highlight=LMEM#post11144
Open a Demo in VS Code¶
For this example, we will use the hello_world demo mapped in TCM. However, the process is the same for all demos. From a terminal, launch VS Code and open the hello_world demo directory:
VS Code should open and look similiar too:
Build Demo using VS Code¶
If the build task completes successfully, the following output files will be generated:
~/var-mcuxpresso/freertos-variscite/boards/dart_mx8mq/demo_apps/hello_world/armgcc/debug/hello_world.bin (for TCM target, load in U-Boot)
~/var-mcuxpresso/freertos-variscite/boards/dart_mx8mq/demo_apps/hello_world/armgcc/debug/hello_world.elf (for TCM target, load using debugger or remoteproc)
~/var-mcuxpresso/freertos-variscite/boards/dart_mx8mq/demo_apps/hello_world/armgcc/ddr_debug/hello_world.bin (for DDR target, load in U-Boot)
~/var-mcuxpresso/freertos-variscite/boards/dart_mx8mq/demo_apps/hello_world/armgcc/ddr_debug/hello_world.elf (for DDR target, load using debugger or remoteproc)
Please visit Variscite's MCUXpresso Guide for instructions to run the demo using U-Boot or the Linux Remote Processor Framework.
Debugging with VS Code¶
Test Enviroment¶
Hardware
JTAG Debbugger: J-Link PLUS: https://www.segger.com/products/debug-probes/j-link/models/j-link-plus/
ARM-JTAG-20-10 adapter: https://www.digikey.it/it/products/detail/olimex-ltd/ARM-JTAG-20-10/3471401
Variscite Board: VAR-DT8MCustomBoard
Connect Hardware¶
Connect J-Link PLUS to JTAG connector of Variscite board
Connect J-Link PLUS to Development PC via USB cable
Load dedicated device tree¶
Please visit Variscite's MCUXpresso Guide for instructions to load a dedicated device tree.
For this example we will use imx8mq-var-dart-dt8mcustomboard-m4-sd-lvds.dtb:
From U-Boot
=> setenv fdt_file imx8mq-var-dart-dt8mcustomboard-m4-sd-lvds.dtb
=> setenv use_m4 yes
=> saveenv
Saving Environment to MMC... Writing to MMC(1)... OK
Power off / Power on the board
Or, from Linux
Start Debugging¶
Open source code and add a breakpoint
Start Debugging
if everything worked well the program will stop at the configured breakpoint
Debug RPMSG demos¶
The RPMSG demos can be debugged only starting from U-Boot.
You need even to change M4 Kernel Device Tree enabling rpmsg node and disabling cortex-m node.
Change M4 Kernel Device Tree¶
Edit arch/arm64/boot/dts/freescale/imx8mq-var-dart-dt8mcustomboard-m4.dtsi
Save the changes.
Compile the device tree and update the SD card/eMMC.
Note: If rpmsg node is missing in the arch/arm64/boot/dts/freescale/imx8mq-var-dart-dt8mcustomboard-m4.dtsi file discard the Change M4 Kernel Device Tree section above
For this example, we will debug pingpong demo mapped in TCM.
Note: rpmsg demos mapped in DDR can't be debugged due to the disabled lmem caches need to have the demo working
$ cd ~/var-mcuxpresso/freertos-variscite
$ ./var_add_vscode_support.sh -b dart_mx8mq -e boards/dart_mx8mq/multicore_examples/rpmsg_lite_pingpong_rtos/linux_remote -t tcm -d /opt/SEGGER/JLink
$ code ~/var-mcuxpresso/freertos-variscite/boards/dart_mx8mq/multicore_examples/rpmsg_lite_pingpong_rtos/linux_remote/
Note: Debugging applications mapped in the DDR, the use of SDK_DelayAtLeastUs function is not recommended because it produces a long delay time.
You can use vTaskDelay() instead.
Build application following the guide at the Build Demo using VS Code section above:
Power on the Board and interrupt the boot in the U-Boot prompt.
From Visual Studio Code start Debugging.
From U-Boot prompt:
Waiting for completed boot kernel
From Userspace prompt:
If everything worked well the program will stop at the configured breakpoint:
Note: Debugging RPMSG demos be careful to set breakpoint or debug step by step because when the M core is stopped even A core is blocked






