20 lines
616 B
JSON
20 lines
616 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "openocd",
|
|
"cwd": "${workspaceRoot}",
|
|
"executable": "./build/ardix.elf",
|
|
"request": "launch",
|
|
"type": "cortex-debug",
|
|
"servertype": "openocd",
|
|
"configFiles": [
|
|
"${workspaceRoot}/arch/at91sam3x8e/config/openocd.cfg"
|
|
],
|
|
"device": "AT91SAM3X8E",
|
|
"runToMain": false,
|
|
"gdbPath": "/usr/bin/arm-none-eabi-gdb",
|
|
"svdFile": "${workspaceRoot}/arch/at91sam3x8e/config/SAM3X8E.svd"
|
|
}
|
|
]
|
|
}
|