Add VsCode workspace .json configuration files for IntelliSense engine setup, path indexing, recommended extensions, and tasks for debug build flash programming.

This commit is contained in:
2026-09-14 21:03:22 +08:00
parent 041791b6ca
commit 5ba7f18f3a
5 changed files with 141 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{
"configurations": [
{
"name": "Win32",
"includePath": [
"Core/Inc",
"Drivers/STM32G0xx_HAL_Driver/Inc",
"Drivers/STM32G0xx_HAL_Driver/Inc/Legacy",
"Middlewares/Third_Party/FreeRTOS/Source/include",
"Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS",
"Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM0",
"Drivers/CMSIS/Device/ST/STM32G0xx/Include",
"Drivers/CMSIS/Include",
"${workspaceFolder}/**",
"${workspaceFolder}/User/Main/Inc"
],
"defines": [
"USE_HAL_DRIVER",
"STM32G030xx"
],
"cStandard": "c23",
"cppStandard": "c++23"
}
],
"version": 4
}