From e296b8883bb214551c9f0f69d9bb28df64a5dd48 Mon Sep 17 00:00:00 2001
From: Tommy Andersson <klomega89@gmail.com>
Date: Sun, 28 Feb 2021 22:01:03 +0100
Subject: [PATCH] pushing to update branch

---
 examples/.vscode/launch.json | 25 +++++++++++++++++++++++++
 examples/.vscode/tasks.json  | 17 +++++++++++++++++
 2 files changed, 42 insertions(+)
 create mode 100644 examples/.vscode/launch.json
 create mode 100644 examples/.vscode/tasks.json

diff --git a/examples/.vscode/launch.json b/examples/.vscode/launch.json
new file mode 100644
index 0000000..5af8528
--- /dev/null
+++ b/examples/.vscode/launch.json
@@ -0,0 +1,25 @@
+{
+    // 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": [
+        
+        {
+            "cwd": "${workspaceRoot}",
+            "executable": "./bin/executable.elf",
+            "name": "Debug Microcontroller",
+            "request": "launch",
+            "type": "cortex-debug",
+            "servertype": "openocd"
+        },
+    {
+        "cwd": "${workspaceRoot}",
+        "executable": "./bin/executable.elf",
+        "name": "Debug Microcontroller",
+        "request": "launch",
+        "type": "cortex-debug",
+        "servertype": "jlink"
+    }
+    ]
+}
\ No newline at end of file
diff --git a/examples/.vscode/tasks.json b/examples/.vscode/tasks.json
new file mode 100644
index 0000000..f1a2d8f
--- /dev/null
+++ b/examples/.vscode/tasks.json
@@ -0,0 +1,17 @@
+{
+	"version": "2.0.0",
+	"tasks": [
+		{
+			"type": "cargo",
+			"command": "build",
+			"problemMatcher": [
+				"$rustc"
+			],
+			"group": {
+				"kind": "build",
+				"isDefault": true
+			},
+			"label": "rust: cargo build"
+		}
+	]
+}
\ No newline at end of file
-- 
GitLab