Overview Version History Q & A Rating & Review
Nuvoton NuMicro Cortex-M Pack
Description
Nuvoton NuMicro Cortex-M Pack is a complete development toolkit for Nuvoton’s NuMicro Cortex-M microcontrollers in Visual Studio Code. It integrates essential extensions, configuration files, SVD support, OpenOCD setup, and template projects to simplify embedded development from setup to debugging.
Example
Preinstall Nuvoton NuMicro Cortex-M Pack .
Go to Nuvoton Technology Corp , and download NuMicro BSP project.
Open VSCode
folder in NuMicro BSP project.
Click CMSIS
, then execute Build solution
and Run
Open launch.json
file, and insert the debug configuration in configurations
{
"name": "Nuvoton Debug",
"type": "cortex-debug",
"request": "launch",
"cwd": "${workspaceFolder}",
"executable": "${command:embedded-debug.getApplicationFile}",
"servertype": "openocd",
"serverpath": "${command:openocd-helper.getOpenOcdPath}",
"svdFile": "${command:openocd-helper.getSvdPath}",
"configFiles": [
"interface/cmsis-dap.cfg",
"${command:openocd-helper.getOpenOcdConfigPath}"
],
"runToEntryPoint": "main"
}
Click Run and Debug
and select Nuvoton Debug
Set breakpoints and then click Start Debugging
Zephyr Project Setup Guide
Zephyr Project Setup Guide