ardix/.vscode/launch.json

21 lines
602 B
JSON
Raw Normal View History

2021-08-01 23:32:59 +02:00
{
"version": "0.2.0",
"configurations": [
{
2021-08-03 00:05:23 +02:00
"name": "openocd",
2021-08-01 23:32:59 +02:00
"cwd": "${workspaceRoot}",
"executable": "./build/ardix.elf",
"request": "launch",
"type": "cortex-debug",
"servertype": "openocd",
"configFiles": [
2021-08-03 00:05:23 +02:00
"${workspaceRoot}/arch/at91sam3x8e/openocd.cfg"
2021-08-01 23:32:59 +02:00
],
2021-08-03 00:05:23 +02:00
"device": "AT91SAM3X8E",
2021-08-01 23:32:59 +02:00
"runToMain": false,
"gdbPath": "/usr/bin/arm-none-eabi-gdb",
2021-08-03 00:05:23 +02:00
"svdFile": "${workspaceRoot}/arch/at91sam3x8e/SAM3X8E.svd"
2021-08-01 23:32:59 +02:00
}
]
2021-08-03 00:05:23 +02:00
}