You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ardix/.vscode/launch.json

21 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"
}
]
}