aboutsummaryrefslogtreecommitdiffstats
path: root/.vscode/launch.json
diff options
context:
space:
mode:
authorRossTheRoss <mstrapp@protonmail.com>2019-09-23 18:35:04 -0500
committerRossTheRoss <mstrapp@protonmail.com>2019-09-23 18:35:04 -0500
commit9c59d1347cae5a290762bb0dc4a3162c98b3e8f6 (patch)
tree0af0027949844b6d88faf6c9c973a5f5a5bda4f1 /.vscode/launch.json
parentFix an oopsie (diff)
downloadhomework-9c59d1347cae5a290762bb0dc4a3162c98b3e8f6.tar
homework-9c59d1347cae5a290762bb0dc4a3162c98b3e8f6.tar.gz
homework-9c59d1347cae5a290762bb0dc4a3162c98b3e8f6.tar.bz2
homework-9c59d1347cae5a290762bb0dc4a3162c98b3e8f6.tar.lz
homework-9c59d1347cae5a290762bb0dc4a3162c98b3e8f6.tar.xz
homework-9c59d1347cae5a290762bb0dc4a3162c98b3e8f6.tar.zst
homework-9c59d1347cae5a290762bb0dc4a3162c98b3e8f6.zip
Add VScode stuff for C O N S I S T E N C Y
Diffstat (limited to '')
-rw-r--r--.vscode/launch.json125
1 files changed, 125 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
new file mode 100644
index 0000000..20c3726
--- /dev/null
+++ b/.vscode/launch.json
@@ -0,0 +1,125 @@
+{
+ // Use IntelliSense to learn about possible attributes.
+ // Hover to view descriptions of existing attributes.
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "name": "(gdb) Launch",
+ "type": "cppdbg",
+ "request": "launch",
+ "program": "${workspaceFolder}/debug",
+ "args": [],
+ "stopAtEntry": false,
+ "cwd": "${workspaceFolder}",
+ "environment": [],
+ "externalConsole": false,
+ "MIMode": "gdb",
+ "setupCommands": [
+ {
+ "description": "Enable pretty-printing for gdb",
+ "text": "-enable-pretty-printing",
+ "ignoreFailures": true
+ }
+ ]
+ },
+
+ {
+ "name": "Python",
+ "type": "python",
+ "request": "launch",
+ "program": "${file}",
+ "console": "integratedTerminal"
+ },
+ {
+ "type": "java",
+ "name": "Java",
+ "request": "launch",
+ "mainClass": ""
+ },
+ // {
+ // "type": "cortex-debug",
+ // "request": "attach",
+ // "name": "Particle Debugger (photon, p1, electron)",
+ // "servertype": "openocd",
+ // "interface": "swd",
+ // "device": "STM32F205RG",
+ // "cwd": "${workspaceRoot}",
+ // "executable": "${command:particle.getDebuggerExecutable}",
+ // "preLaunchTask": "Particle: Flash application for debug (local)",
+ // "armToolchainPath": "${command:particle.getDebuggerCompilerDir}",
+ // "svdFile": "${command:particle.getDebuggerSVDFile}",
+ // "searchDir": [
+ // "${command:particle.getDebuggerSearchDir}"
+ // ],
+ // "configFiles": [
+ // "interface/cmsis-dap.cfg",
+ // "target/stm32f2x.cfg"
+ // ],
+ // "postAttachCommands": [
+ // "monitor reset halt"
+ // ],
+ // "windows": {
+ // "configFiles": [
+ // "interface\\cmsis-dap.cfg",
+ // "target\\stm32f2x.cfg"
+ // ]
+ // }
+ // },
+ // {
+ // "type": "cortex-debug",
+ // "request": "attach",
+ // "name": "Particle Debugger (argon, boron, xenon)",
+ // "servertype": "openocd",
+ // "interface": "swd",
+ // "device": "nRF52840_xxAA",
+ // "cwd": "${workspaceRoot}",
+ // "executable": "${command:particle.getDebuggerExecutable}",
+ // "preLaunchTask": "Particle: Flash application for debug (local)",
+ // "armToolchainPath": "${command:particle.getDebuggerCompilerDir}",
+ // "svdFile": "${command:particle.getDebuggerSVDFile}",
+ // "searchDir": [
+ // "${command:particle.getDebuggerSearchDir}"
+ // ],
+ // "configFiles": [
+ // "interface/cmsis-dap.cfg",
+ // "target/nrf52-particle.cfg"
+ // ],
+ // "windows": {
+ // "configFiles": [
+ // "interface\\cmsis-dap.cfg",
+ // "target\\nrf52-particle.cfg"
+ // ]
+ // }
+ // },
+ // {
+ // "type": "cortex-debug",
+ // "request": "attach",
+ // "name": "Particle Programmer Shield v1.0 (photon, p1, electron)",
+ // "servertype": "openocd",
+ // "interface": "swd",
+ // "device": "STM32F205RG",
+ // "cwd": "${workspaceRoot}",
+ // "executable": "${command:particle.getDebuggerExecutable}",
+ // "preLaunchTask": "Particle: Flash application for debug (local)",
+ // "armToolchainPath": "${command:particle.getDebuggerCompilerDir}",
+ // "svdFile": "${command:particle.getDebuggerSVDFile}",
+ // "searchDir": [
+ // "${command:particle.getDebuggerSearchDir}"
+ // ],
+ // "configFiles": [
+ // "interface/particle-ftdi.cfg",
+ // "target/stm32f2x.cfg"
+ // ],
+ // "postAttachCommands": [
+ // "monitor reset halt"
+ // ],
+ // "windows": {
+ // "configFiles": [
+ // "interface\\particle-ftdi.cfg",
+ // "target\\stm32f2x.cfg"
+ // ]
+ // }
+ // }
+ ]
+} \ No newline at end of file