Initial commit

This commit is contained in:
2025-10-22 20:40:25 +03:00
commit 63d038ee63
57 changed files with 104378 additions and 0 deletions

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

@@ -0,0 +1,41 @@
{
"configurations": [
{
"name": "M2",
"intelliSenseMode": "gcc-arm",
"cStandard": "c17",
"cppStandard": "c++17",
"includePath": [
"libs",
"src"
],
"defines": [
"DEBUG",
"STM32F10X_CL",
"HSE_VALUE=16000000",
"CAN_FIRMWARE=1",
"MOBICAR_1_2=1"
],
"compilerPath": "${userHome}/.xpack-dev-tools/xpack-arm-none-eabi-gcc-12.3.1-1.2/bin/arm-none-eabi-gcc"
},
{
"name": "M3",
"intelliSenseMode": "gcc-arm",
"cStandard": "c17",
"cppStandard": "c++17",
"includePath": [
"libs",
"src"
],
"defines": [
"DEBUG",
"STM32F10X_CL",
"HSE_VALUE=16000000",
"CAN_FIRMWARE=1",
"MOBICAR_3=1"
],
"compilerPath": "${userHome}/.xpack-dev-tools/xpack-arm-none-eabi-gcc-12.3.1-1.2/bin/arm-none-eabi-gcc"
}
],
"version": 4
}