103 lines
5.0 KiB
JSON
103 lines
5.0 KiB
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Build & Debug Microcontroller - ST-Link",
|
|
"cwd": "${workspaceFolder}",
|
|
"type": "cortex-debug",
|
|
"executable": "${command:cmake.launchTargetPath}",
|
|
// Let CMake extension decide executable: "${command:cmake.launchTargetPath}"
|
|
// Or fixed file path: "${workspaceFolder}/path/to/filename.elf"
|
|
"request": "launch",
|
|
"servertype": "stlink",
|
|
"device": "STM32F439ZITx", //MCU used
|
|
"interface": "swd",
|
|
"serialNumber": "", //Set ST-Link ID if you use multiple at the same time
|
|
"runToEntryPoint": "main",
|
|
"svdFile": "${config:STM32VSCodeExtension.cubeCLT.path}/STMicroelectronics_CMSIS_SVD/STM32F439.svd",
|
|
"v1": false, //Change it depending on ST Link version
|
|
"serverpath": "${config:STM32VSCodeExtension.cubeCLT.path}/STLink-gdb-server/bin/ST-LINK_gdbserver",
|
|
"stm32cubeprogrammer": "${config:STM32VSCodeExtension.cubeCLT.path}/STM32CubeProgrammer/bin",
|
|
"stlinkPath": "${config:STM32VSCodeExtension.cubeCLT.path}/STLink-gdb-server/bin/ST-LINK_gdbserver",
|
|
"armToolchainPath": "${config:STM32VSCodeExtension.cubeCLT.path}/GNU-tools-for-STM32/bin",
|
|
"gdbPath": "${config:STM32VSCodeExtension.cubeCLT.path}/GNU-tools-for-STM32/bin/arm-none-eabi-gdb",
|
|
"serverArgs": [
|
|
"-m",
|
|
"0",
|
|
],
|
|
//"preLaunchTask": "Build + Flash"
|
|
/* If you use external loader, add additional arguments */
|
|
//"serverArgs": ["--extload", "path/to/ext/loader.stldr"],
|
|
},
|
|
{
|
|
"name": "Attach to Microcontroller - ST-Link",
|
|
"cwd": "${workspaceFolder}",
|
|
"type": "cortex-debug",
|
|
"executable": "${command:cmake.launchTargetPath}",
|
|
// Let CMake extension decide executable: "${command:cmake.launchTargetPath}"
|
|
// Or fixed file path: "${workspaceFolder}/path/to/filename.elf"
|
|
"request": "attach",
|
|
"servertype": "stlink",
|
|
"device": "STM32F439ZITx", //MCU used
|
|
"interface": "swd",
|
|
"serialNumber": "", //Set ST-Link ID if you use multiple at the same time
|
|
"runToEntryPoint": "main",
|
|
"svdFile": "${config:STM32VSCodeExtension.cubeCLT.path}/STMicroelectronics_CMSIS_SVD/STM32F439.svd",
|
|
"v1": false, //Change it depending on ST Link version
|
|
"serverpath": "${config:STM32VSCodeExtension.cubeCLT.path}/STLink-gdb-server/bin/ST-LINK_gdbserver",
|
|
"stm32cubeprogrammer": "${config:STM32VSCodeExtension.cubeCLT.path}/STM32CubeProgrammer/bin",
|
|
"stlinkPath": "${config:STM32VSCodeExtension.cubeCLT.path}/STLink-gdb-server/bin/ST-LINK_gdbserver",
|
|
"armToolchainPath": "${config:STM32VSCodeExtension.cubeCLT.path}/GNU-tools-for-STM32/bin",
|
|
"gdbPath": "${config:STM32VSCodeExtension.cubeCLT.path}/GNU-tools-for-STM32/bin/arm-none-eabi-gdb",
|
|
"serverArgs": [
|
|
"-m",
|
|
"0",
|
|
],
|
|
/* If you use external loader, add additional arguments */
|
|
//"serverArgs": ["--extload", "path/to/ext/loader.stldr"],
|
|
},
|
|
{
|
|
"name": "OpenOCD Launch",
|
|
"cwd": "${workspaceFolder}",
|
|
"type": "cortex-debug",
|
|
"request": "launch",
|
|
"executable": "${command:cmake.launchTargetPath}",
|
|
"servertype": "openocd",
|
|
"device": "STM32F439ZITx",
|
|
"runToEntryPoint": "main",
|
|
"svdFile": "${config:STM32VSCodeExtension.cubeCLT.path}/STMicroelectronics_CMSIS_SVD/STM32F439.svd",
|
|
"gdbPath": "gdb-multiarch",
|
|
"configFiles": [
|
|
"board/st_nucleo_f4.cfg"
|
|
],
|
|
"openOCDLaunchCommands": [
|
|
"init",
|
|
"reset halt",
|
|
"$_TARGETNAME configure -rtos FreeRTOS"
|
|
],
|
|
"showDevDebugOutput": "raw"
|
|
},
|
|
{
|
|
"name": "OpenOCD Attach",
|
|
"cwd": "${workspaceFolder}",
|
|
"type": "cortex-debug",
|
|
"request": "attach",
|
|
"executable": "${command:cmake.launchTargetPath}",
|
|
"servertype": "openocd",
|
|
"device": "STM32F439ZITx",
|
|
"runToEntryPoint": "main",
|
|
"svdFile": "${config:STM32VSCodeExtension.cubeCLT.path}/STMicroelectronics_CMSIS_SVD/STM32F439.svd",
|
|
"gdbPath": "gdb-multiarch",
|
|
"configFiles": [
|
|
"board/st_nucleo_f4.cfg"
|
|
],
|
|
"openOCDLaunchCommands": [
|
|
"$_TARGETNAME configure -rtos FreeRTOS"
|
|
],
|
|
"showDevDebugOutput": "raw"
|
|
}
|
|
]
|
|
} |