summaryrefslogtreecommitdiff
path: root/.vscode
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
parentf7643a4d828ec3c60f418b6d9a660097eb44e05e (diff)
Updated documentation
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/cmake-variants.json4
-rw-r--r--.vscode/extensions.json3
-rw-r--r--.vscode/launch.json8
3 files changed, 9 insertions, 6 deletions
diff --git a/.vscode/cmake-variants.json b/.vscode/cmake-variants.json
index d00e638e..9c95a631 100644
--- a/.vscode/cmake-variants.json
+++ b/.vscode/cmake-variants.json
@@ -47,14 +47,14 @@
"short": "No DFU",
"long": "Do not build DFU",
"settings": {
- "BUILD_DFU":0
+ "BUILD_DFU":"0"
}
},
"yes": {
"short": "Build DFU",
"long": "Build DFU",
"settings": {
- "BUILD_DFU":1
+ "BUILD_DFU":"1"
}
}
}
diff --git a/.vscode/extensions.json b/.vscode/extensions.json
new file mode 100644
index 00000000..1cc05268
--- /dev/null
+++ b/.vscode/extensions.json
@@ -0,0 +1,3 @@
+{
+ "recommendations": ["ms-vscode.cpptools","ms-vscode.cmake-tools","marus25.cortex-debug"]
+} \ No newline at end of file
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",