From fe7e2e1a1ca67a16fab8cb0674dcb2f064b15e04 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Niccol=C3=B2=20Betto?= <niccolo.betto@skywarder.eu>
Date: Mon, 29 Jul 2024 02:12:01 +0200
Subject: [PATCH] [LogDecoder] Fix gitignore and add VSCode cpptools
 configuration

---
 .gitignore                    |  2 +-
 .vscode/c_cpp_properties.json | 11 +++++++++++
 2 files changed, 12 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index 0dbe996a9..15e70ba70 100644
--- a/.gitignore
+++ b/.gitignore
@@ -36,5 +36,5 @@ __pycache__
 **/generated
 **/scxmls
 
-src/scripts/logdecoder
+src/scripts/logdecoder/**/logdecoder
 
diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json
index 3f2468ca2..d92653937 100755
--- a/.vscode/c_cpp_properties.json
+++ b/.vscode/c_cpp_properties.json
@@ -424,6 +424,17 @@
                 "${workspaceFolder}/skyward-boardcore/src/bsps/stm32f767zi_lyra_motor/config",
                 "${workspaceFolder}/skyward-boardcore/src/bsps/stm32f767zi_lyra_motor"
             ]
+        },
+        {
+            "name": "logdecoder",
+            "includePath": [
+                "${defaultIncludePaths}"
+            ],
+            "defines": [],
+            "compilerPath": "/usr/bin/g++",
+            "cStandard": "c17",
+            "intelliSenseMode": "linux-gcc-x64",
+            "cppStandard": "c++20"
         }
     ],
     "version": 4
-- 
GitLab