summaryrefslogtreecommitdiff
path: root/.vscode/launch.json
diff options
context:
space:
mode:
authorTim Keller <geekboy1011@gmail.com>2021-07-26 01:14:23 +0000
committerTim Keller <geekboy1011@gmail.com>2021-08-07 18:19:11 +0000
commite9248b225e78e36ff04f7c26244adf200e17020e (patch)
treec06977ff4b46fb45000715814ebad92fac24eb9e /.vscode/launch.json
parentf7643a4d828ec3c60f418b6d9a660097eb44e05e (diff)
Updated documentation
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json8
1 files changed, 4 insertions, 4 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 78fc1180..7cf3acd1 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -4,13 +4,13 @@
{
"name": "Debug - Openocd docker Remote",
"type":"cortex-debug",
- "cortex-debug.armToolchainPath":"${env:COMPILER_DIR}/bin",
+ "cortex-debug.armToolchainPath":"${env:ARM_NONE_EABI_TOOLCHAIN_PATH}/bin",
"cwd": "${workspaceRoot}",
"executable": "${command:cmake.launchTargetPath}",
"request": "launch",
"servertype": "external",
// This may need to be arm-none-eabi-gdb depending on your system
- "gdbPath" : "${env:COMPILER_DIR}/bin/arm-none-eabi-gdb",
+ "gdbPath" : "${env:ARM_NONE_EABI_TOOLCHAIN_PATH}/bin/arm-none-eabi-gdb",
// Connect to an already running OpenOCD instance
"gdbTarget": "host.docker.internal:3333",
"svdFile": "${workspaceRoot}/nrf52.svd",
@@ -24,13 +24,13 @@
{
"name": "Debug - Openocd Local",
"type":"cortex-debug",
- "cortex-debug.armToolchainPath":"${env:COMPILER_DIR}/bin",
+ "cortex-debug.armToolchainPath":"${env:ARM_NONE_EABI_TOOLCHAIN_PATH}/bin",
"cwd": "${workspaceRoot}",
"executable": "${command:cmake.launchTargetPath}",
"request": "launch",
"servertype": "openocd",
// This may need to be arm-none-eabi-gdb depending on your system
- "gdbPath" : "${env:COMPILER_DIR}/bin/arm-none-eabi-gdb",
+ "gdbPath" : "${env:ARM_NONE_EABI_TOOLCHAIN_PATH}/bin/arm-none-eabi-gdb",
// Connect to an already running OpenOCD instance
"gdbTarget": "localhost:3333",
"svdFile": "${workspaceRoot}/nrf52.svd",