chore: sdk compiles almost w/o warnings?

This commit is contained in:
2024-12-17 03:13:08 +06:00
parent 31efbc726f
commit 7c7b36a6b3
55 changed files with 658 additions and 514 deletions

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

@@ -0,0 +1,18 @@
{
"configurations": [
{
"name": "ARM",
"includePath": [
"${workspaceFolder}/**",
"${workspaceFolder}/lib/freertos/portable/GCC/ARM_CM4F/",
"/usr/arm-none-eabi/include/"
],
"defines": ["__ARM_ARCH_7M__", "__ARM_ARCH_7EM__", "CONFIG_PLATFORM_8711B"],
"cStandard": "gnu99",
"intelliSenseMode": "linux-gcc-arm",
"compilerPath": "/usr/bin/arm-none-eabi-gcc",
"compilerArgs": ["-mcpu=cortex-m4", "-mthumb"]
}
],
"version": 4
}