From 8506e3bfb87dc16d24b7f641ae82f996dc962421 Mon Sep 17 00:00:00 2001 From: Allen Hill Date: Fri, 23 Aug 2024 12:25:21 -0700 Subject: [PATCH] Update devcontainer --- .devcontainer/devcontainer.json | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 197ac26..d24dd68 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -17,7 +17,9 @@ "ms-vscode.cpptools", "ms-vscode.cmake-tools", "rockcat.avr-support", - "harikrishnan94.cxx-compiler-explorer" + "harikrishnan94.cxx-compiler-explorer", + "ms-vscode.cpptools-extension-pack", + "twxs.cmake" ], "settings": { "editor.formatOnSave": true, @@ -31,10 +33,14 @@ "*.S": "avr" }, "cmake.configureOnOpen": true, - "compilerexplorer.compilationDirectory": "${workspaceFolder}/build", + "compilerexplorer.compilationDirectory": "${workspaceFolder}/build" } } } + // "runArgs": [ + // "--device=/dev/ttyUSB0", + // "--device=/dev/ttyUSB1" + // ] // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. // "remoteUser": "root" -} \ No newline at end of file +}