vscode: fix debug config file location

This commit is contained in:
anna 2021-08-10 22:09:40 +02:00
parent 60ec99692c
commit 75d2fb4470
Signed by: fef
GPG key ID: EC22E476DC2D3D84

4
.vscode/launch.json vendored
View file

@ -9,12 +9,12 @@
"type": "cortex-debug",
"servertype": "openocd",
"configFiles": [
"${workspaceRoot}/arch/at91sam3x8e/openocd.cfg"
"${workspaceRoot}/arch/at91sam3x8e/config/openocd.cfg"
],
"device": "AT91SAM3X8E",
"runToMain": false,
"gdbPath": "/usr/bin/arm-none-eabi-gdb",
"svdFile": "${workspaceRoot}/arch/at91sam3x8e/SAM3X8E.svd"
"svdFile": "${workspaceRoot}/arch/at91sam3x8e/config/SAM3X8E.svd"
}
]
}