Skip to content

Commit

Permalink
Update compiler path sent to the debugger to use config variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake-Carter committed Apr 21, 2021
1 parent dd4b049 commit 7014d2f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion MaximLP/Inject/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"miDebuggerPath": "${env:MAXIM_PATH}/Toolchain/bin/arm-none-eabi-gdb.exe",
"miDebuggerPath": "${config:MAXIM_PATH}/Toolchain/bin/arm-none-eabi-gdb.exe",
"miDebuggerArgs": "./build/${config:target}.elf",
"preLaunchTask": "flash",
"setupCommands": [
Expand Down
2 changes: 1 addition & 1 deletion MaximLP/New_Project/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"miDebuggerPath": "${env:MAXIM_PATH}/Toolchain/bin/arm-none-eabi-gdb.exe",
"miDebuggerPath": "${config:MAXIM_PATH}/Toolchain/bin/arm-none-eabi-gdb.exe",
"miDebuggerArgs": "./build/${config:target}.elf",
"preLaunchTask": "flash",
"setupCommands": [
Expand Down
2 changes: 1 addition & 1 deletion MaximSDK/Inject/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"miDebuggerPath": "${env:MAXIM_PATH}/Tools/GNUTools/bin/arm-none-eabi-gdb.exe",
"miDebuggerPath": "${config:MAXIM_PATH}/Tools/GNUTools/bin/arm-none-eabi-gdb.exe",
"miDebuggerArgs": "./build/${config:target}.elf",
"preLaunchTask": "flash",
"setupCommands": [
Expand Down
2 changes: 1 addition & 1 deletion MaximSDK/New_Project/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"miDebuggerPath": "${env:MAXIM_PATH}/Tools/GNUTools/bin/arm-none-eabi-gdb.exe",
"miDebuggerPath": "${config:MAXIM_PATH}/Tools/GNUTools/bin/arm-none-eabi-gdb.exe",
"miDebuggerArgs": "./build/${config:target}.elf",
"preLaunchTask": "flash",
"setupCommands": [
Expand Down

0 comments on commit 7014d2f

Please sign in to comment.