test in progress

This commit is contained in:
Sheikah
2023-01-19 00:11:51 +08:00
commit b5cdb2d335
1163 changed files with 636480 additions and 0 deletions

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

@@ -0,0 +1,33 @@
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"Core/Inc",
"Drivers/STM32G0xx_HAL_Driver/Inc/**",
"Drivers/STM32G0xx_HAL_Driver/Inc",
"Drivers/STM32G0xx_HAL_Driver/Inc/Legacy",
"Drivers/CMSIS/Device/ST/STM32G0xx/Include",
"Drivers/CMSIS/Include",
"Core/kt0915",
"Core/ST7735",
"Core/RotaryCoder",
"Core/SWI2C"
],
"defines": [],
"compilerPath": "/usr/bin/arm-none-eabi-gcc",
"cStandard": "c17",
"cppStandard": "c++14",
"intelliSenseMode": "linux-gcc-arm",
"compilerArgs": [
"-ICore/Inc \\",
"-IDrivers/STM32G0xx_HAL_Driver/Inc \\",
"-IDrivers/STM32G0xx_HAL_Driver/Inc/Legacy \\",
"-IDrivers/CMSIS/Device/ST/STM32G0xx/Include \\",
"-IDrivers/CMSIS/Include"
]
}
],
"version": 4
}

7
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,7 @@
{
"C_Cpp.errorSquiggles": "disabled",
"files.associations": {
"KT0915.C": "cpp",
"tim.h": "c"
}
}

33
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,33 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: arm-none-eabi-gcc 生成活动文件",
"command": "/usr/bin/arm-none-eabi-gcc",
"args": [
"-fdiagnostics-color=always",
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}",
"-ICore/Inc \\",
"-IDrivers/STM32G0xx_HAL_Driver/Inc \\",
"-IDrivers/STM32G0xx_HAL_Driver/Inc/Legacy \\",
"-IDrivers/CMSIS/Device/ST/STM32G0xx/Include \\",
"-IDrivers/CMSIS/Include"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "编译器: /usr/bin/arm-none-eabi-gcc"
}
]
}