From ef611c6e24ad01c4349ac0be881c3327931de77d Mon Sep 17 00:00:00 2001 From: TT Date: Sat, 10 Aug 2019 13:19:33 +0900 Subject: [PATCH] env: add vscode configulation --- .vscode/c_cpp_properties.json | 20 ++++++++++++++++++++ .vscode/settings.json | 3 +++ 2 files changed, 23 insertions(+) create mode 100644 .vscode/c_cpp_properties.json create mode 100644 .vscode/settings.json diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..0e35e8f --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,20 @@ +{ + "configurations": [ + { + "name": "Mac", + "includePath": [ + "${workspaceFolder}/ChibiOS/os/hal/ports/STM32/**", + "${workspaceFolder}/ChibiOS/os/common/ext/CMSIS/ST/STM32F0xx/**", + "${workspaceFolder}/ChibiOS/os/common/startup/ARMCMx/**", + "${workspaceFolder}/ChibiOS/os/hal/ports/common/ARMCMx/**", + "${workspaceFolder}/**" + ], + "defines": ["STM32F072xB"], + "macFrameworkPath": [], + "compilerPath": "/usr/local/bin/arm-none-eabi-gcc", + "cStandard": "c11", + "cppStandard": "c++17" + } + ], + "version": 4 +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..691a8f6 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "C_Cpp.errorSquiggles": "Disabled" +} \ No newline at end of file