New project stm32h7 from zero

This commit is contained in:
PanSi21 2025-10-30 10:55:24 +01:00
parent 215c2da62f
commit c47eb6ea73
Signed by untrusted user who does not match committer: PanSi21
GPG key ID: 198E46F625BADD13
126 changed files with 209090 additions and 0 deletions

38
CMakePresets.json Normal file
View file

@ -0,0 +1,38 @@
{
"version": 3,
"configurePresets": [
{
"name": "default",
"hidden": true,
"generator": "Ninja",
"binaryDir": "${sourceDir}/build/${presetName}",
"toolchainFile": "${sourceDir}/cmake/gcc-arm-none-eabi.cmake",
"cacheVariables": {
}
},
{
"name": "Debug",
"inherits": "default",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "Release",
"inherits": "default",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
}
],
"buildPresets": [
{
"name": "Debug",
"configurePreset": "Debug"
},
{
"name": "Release",
"configurePreset": "Release"
}
]
}