From 6bba5034d00408950c7de7ce9f03e6f2d2393019 Mon Sep 17 00:00:00 2001 From: Gennady Gurov Date: Thu, 21 Nov 2024 10:06:33 -0500 Subject: [PATCH] add compile custom firmware vscode task --- .vscode/tasks.json | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 465feef..0dbd8ad 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -211,6 +211,22 @@ "isDefault": true } }, + { + "label": "Compile custom firmware", + "type": "shell", + "command": "./compile_firmware.sh", + "windows": { + "command": "wsl ./compile_firmware.sh " + }, + "options": { + "cwd": "${workspaceRoot}" + }, + "problemMatcher": [], + "group": { + "kind": "build", + "isDefault": true + } + }, { "label": "Build Simulator", "type": "shell", @@ -228,4 +244,4 @@ } } ] -} \ No newline at end of file +}