28 lines
947 B
JSON
28 lines
947 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Launch",
|
|
"device": "STM32F103RB",
|
|
"cwd": "${workspaceFolder}",
|
|
"executable": "build/zephyr/zephyr.elf",
|
|
"request": "launch",
|
|
"type": "cortex-debug",
|
|
//"runToEntryPoint": "main",
|
|
"servertype": "jlink",
|
|
"gdbPath": "${userHome}/zephyr-sdk-0.17.1/arm-zephyr-eabi/bin/arm-zephyr-eabi-gdb",
|
|
"preLaunchTask": "West Build"
|
|
},
|
|
{
|
|
"name": "Attach",
|
|
"device": "nRF52840_xxAA",
|
|
"cwd": "${workspaceFolder}",
|
|
"executable": "build/zephyr/zephyr.elf",
|
|
"request": "attach",
|
|
"type": "cortex-debug",
|
|
// "runToEntryPoint": "main",
|
|
"servertype": "jlink",
|
|
"gdbPath": "${userHome}/zephyr-sdk-0.17.1/arm-zephyr-eabi/bin/arm-zephyr-eabi-gdb"
|
|
},
|
|
]
|
|
} |