初版适配和修改

This commit is contained in:
cyy_mac
2026-08-07 19:04:38 +08:00
parent 460e0e9e73
commit f695460797
17 changed files with 1701 additions and 1 deletions

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

@@ -0,0 +1,30 @@
{
"configurations": [
{
"name": "STM32F407ZG (ARM GCC)",
"includePath": [
"${workspaceFolder}/GCC_COMPAT/include",
"${workspaceFolder}/USER",
"${workspaceFolder}/CORE",
"${workspaceFolder}/FWLIB/inc",
"${workspaceFolder}/SYSTEM/**",
"${workspaceFolder}/HARDWARE/**",
"${workspaceFolder}/BALANCE",
"${workspaceFolder}/FreeRTOS/include",
"${workspaceFolder}/FreeRTOS/portable/GCC/ARM_CM4F"
],
"defines": [
"STM32F40_41xxx",
"USE_STDPERIPH_DRIVER",
"ARM_MATH_CM4",
"HSE_VALUE=8000000U",
"__FPU_PRESENT=1",
"__FPU_USED=1"
],
"compilerPath": "/opt/homebrew/bin/arm-none-eabi-gcc",
"cStandard": "c11",
"intelliSenseMode": "linux-gcc-arm"
}
],
"version": 4
}