From c5dc7cf31d88bac02a8a16c64bdbaf6f91ae3011 Mon Sep 17 00:00:00 2001 From: "r.koeppe" Date: Thu, 6 Jun 2024 11:36:19 +0200 Subject: [PATCH] vs code settings --- .vscode/c_cpp_properties.json | 19 +++++++++ .vscode/settings.json | 80 ++++++++++++++++++++++++++++++++++- 2 files changed, 98 insertions(+), 1 deletion(-) create mode 100644 .vscode/c_cpp_properties.json diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..be0604d --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,19 @@ +{ + "configurations": [ + { + "name": "Linux", + "includePath": [ + "${workspaceFolder}/**", + "${workspaceFolder}/vn-interface/include" + ], + "defines": [ + "__cplusplus" + ], + "compilerPath": "/usr/bin/gcc", + "cStandard": "c17", + "cppStandard": "gnu++17", + "intelliSenseMode": "linux-gcc-x64", + } + ], + "version": 4, +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json index c519a7a..a011f19 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,81 @@ { - "cmake.sourceDirectory": "/home/richard/Uni/FaSTTUBe/INS-VN-200/INS-VN-200/INS-VN-200" + "cmake.sourceDirectory": "/home/richard/Uni/FaSTTUBe/INS-VN-200/INS-VN-200/INS-VN-200", + "files.associations": { + "stm32f3xx_hal.h": "c", + "stm32f3xx_hal_can.h": "c", + "stm32f3xx_hal_conf.h": "c", + "converter.h": "c++", + "stm32f302xc.h": "c", + "spi.h": "c", + "util.h": "c", + "vector.h": "c++", + "compiler.h": "c", + "registers.h": "c++", + "int.h": "c++", + "stm32f3xx_hal_def.h": "c", + "array": "cpp", + "atomic": "cpp", + "bit": "cpp", + "*.tcc": "cpp", + "cctype": "cpp", + "chrono": "cpp", + "clocale": "cpp", + "cmath": "cpp", + "compare": "cpp", + "concepts": "cpp", + "condition_variable": "cpp", + "cstdarg": "cpp", + "cstddef": "cpp", + "cstdint": "cpp", + "cstdio": "cpp", + "cstdlib": "cpp", + "cstring": "cpp", + "ctime": "cpp", + "cwchar": "cpp", + "cwctype": "cpp", + "deque": "cpp", + "list": "cpp", + "map": "cpp", + "set": "cpp", + "string": "cpp", + "unordered_map": "cpp", + "vector": "cpp", + "exception": "cpp", + "algorithm": "cpp", + "functional": "cpp", + "iterator": "cpp", + "memory": "cpp", + "memory_resource": "cpp", + "numeric": "cpp", + "optional": "cpp", + "random": "cpp", + "ratio": "cpp", + "string_view": "cpp", + "system_error": "cpp", + "tuple": "cpp", + "type_traits": "cpp", + "utility": "cpp", + "initializer_list": "cpp", + "iosfwd": "cpp", + "iostream": "cpp", + "istream": "cpp", + "limits": "cpp", + "mutex": "cpp", + "new": "cpp", + "numbers": "cpp", + "ostream": "cpp", + "ranges": "cpp", + "semaphore": "cpp", + "shared_mutex": "cpp", + "sstream": "cpp", + "stdexcept": "cpp", + "stop_token": "cpp", + "streambuf": "cpp", + "thread": "cpp", + "cfenv": "cpp", + "cinttypes": "cpp", + "typeinfo": "cpp" + }, + "C_Cpp.clang_format_fallbackStyle": "{ ColumnLimit: 150 }", + "stm32-for-vscode.openOCDPath": false, } \ No newline at end of file