refactor, add cad
This commit is contained in:
43
.vscode/c_cpp_properties.json
vendored
43
.vscode/c_cpp_properties.json
vendored
@@ -1,22 +1,25 @@
|
||||
{
|
||||
"env": {
|
||||
"arduino_path": "/home/dennisgunia/.arduino15/packages/arduino",
|
||||
"arduino_avr_include2_path": "${env:arduino_path}/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/avr/include"
|
||||
},
|
||||
"configurations": [
|
||||
{
|
||||
"name": "linux-gcc-x64",
|
||||
"compilerPath": "/usr/bin/gcc",
|
||||
"includePath": [
|
||||
"${workspaceFolder}/**",
|
||||
"~/.arduino15/packages/arduino/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/avr/include"
|
||||
],
|
||||
"defines": [],
|
||||
"cStandard": "c11",
|
||||
"cppStandard": "c++20",
|
||||
"intelliSenseMode": "linux-gcc-x64"
|
||||
}
|
||||
],
|
||||
"version": 4,
|
||||
"enableConfigurationSquiggles": true
|
||||
"env": {
|
||||
"arduino_path": "/home/dennisgunia/.arduino15/packages/arduino",
|
||||
"arduino_avr_include2_path": "${env:arduino_path}/tools/avr-gcc/7.3.0-atmel3.6.1-arduino7/avr/include"
|
||||
},
|
||||
"configurations": [
|
||||
{
|
||||
"name": "linux-gcc-x64",
|
||||
"compilerPath": "/usr/bin/gcc",
|
||||
"includePath": [
|
||||
"${workspaceFolder}/**",
|
||||
"/usr/include",
|
||||
"/usr/lib/**",
|
||||
"/usr/include/x86_64-linux-gnu/",
|
||||
"/usr/lib/avr/include"
|
||||
],
|
||||
"defines": [],
|
||||
"cStandard": "c11",
|
||||
"cppStandard": "c++20",
|
||||
"intelliSenseMode": "linux-gcc-x64"
|
||||
}
|
||||
],
|
||||
"version": 4,
|
||||
"enableConfigurationSquiggles": true
|
||||
}
|
||||
33
.vscode/settings.json
vendored
33
.vscode/settings.json
vendored
@@ -58,5 +58,36 @@
|
||||
"C_Cpp_Runner.useLeakSanitizer": false,
|
||||
"C_Cpp_Runner.showCompilationTime": false,
|
||||
"C_Cpp_Runner.useLinkTimeOptimization": false,
|
||||
"C_Cpp_Runner.msvcSecureNoWarnings": false
|
||||
"C_Cpp_Runner.msvcSecureNoWarnings": false,
|
||||
"files.associations": {
|
||||
"string_view": "c",
|
||||
"json_object.h": "c",
|
||||
"system_error": "c",
|
||||
"devicemgr.h": "c",
|
||||
"thread": "c",
|
||||
"wsserver.h": "c",
|
||||
"sfbus.h": "c",
|
||||
"mctrl.h": "c",
|
||||
"condition_variable": "c",
|
||||
"array": "c",
|
||||
"type_traits": "c",
|
||||
"global.h": "c",
|
||||
"stdint.h": "c",
|
||||
"any": "c",
|
||||
"deque": "c",
|
||||
"list": "c",
|
||||
"string": "c",
|
||||
"vector": "c",
|
||||
"optional": "c",
|
||||
"algorithm": "c",
|
||||
"istream": "c",
|
||||
"limits": "c",
|
||||
"numeric": "c",
|
||||
"streambuf": "c",
|
||||
"functional": "c",
|
||||
"variant": "c",
|
||||
"*.def": "c",
|
||||
"unistd.h": "c"
|
||||
},
|
||||
"C_Cpp.errorSquiggles": "enabled"
|
||||
}
|
||||
Reference in New Issue
Block a user