diff options
author | kartofen <mladenovnasko0@gmail.com> | 2024-01-18 00:35:25 +0200 |
---|---|---|
committer | kartofen <mladenovnasko0@gmail.com> | 2024-01-18 00:35:25 +0200 |
commit | de82bb11825e8bc5087f10605b3fe2fd926f1909 (patch) | |
tree | 73723345f7c5ebfe8a64d4fe904fa85ea57538e1 /.vscode/launch.json |
init
Diffstat (limited to '.vscode/launch.json')
-rw-r--r-- | .vscode/launch.json | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..5b804e8 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,21 @@ +{
+ // 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": [
+
+ {
+ "type": "wpilib",
+ "name": "WPILib Desktop Debug",
+ "request": "launch",
+ "desktop": true,
+ },
+ {
+ "type": "wpilib",
+ "name": "WPILib roboRIO Debug",
+ "request": "launch",
+ "desktop": false,
+ }
+ ]
+}
|