vs code settings

This commit is contained in:
Richard Koeppe 2024-06-06 11:36:19 +02:00
parent c4d610a3a0
commit c5dc7cf31d
2 changed files with 98 additions and 1 deletions

19
.vscode/c_cpp_properties.json vendored Normal file
View File

@ -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,
}

80
.vscode/settings.json vendored
View File

@ -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,
}