init commit

This commit is contained in:
2023-09-25 20:15:10 +02:00
commit 0d74fea761
113 changed files with 132027 additions and 0 deletions

View File

@@ -0,0 +1 @@
[]

View File

@@ -0,0 +1 @@
[]

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

@@ -0,0 +1,27 @@
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/Core/Inc",
"${workspaceFolder}/Drivers/CMSIS/Include",
"${workspaceFolder}/Drivers/CMSIS/Device/ST/STM32F3xx/Include",
"${workspaceFolder}/Drivers/STM32F3xx_HAL_Driver/Inc",
"${workspaceFolder}/app"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE",
"STM32F303xE",
"USE_HAL_DRIVER",
"ULOG_ENABLED"
],
"compilerPath": "C:/MyApps/arm-gcc/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi-gcc.exe",
"cStandard": "c11",
"cppStandard": "gnu++17",
"intelliSenseMode": "windows-gcc-arm"
}
],
"version": 4
}

62
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,62 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "stm32f303re-freertos",
"cwd": "${workspaceFolder}",
"executable": "./build/${workspaceFolderBasename}.elf",
"request": "launch",
"type": "cortex-debug",
"runToEntryPoint": "main",
"servertype": "jlink",
"device": "STM32F303RE",
"interface": "swd",
"svdFile": "STM32F303xE.svd",
"preLaunchTask": "${defaultBuildTask}",
"rtos": "C:/MyApps/SEGGER/JLink_V780a/GDBServer/RTOSPlugin_FreeRTOS.dll",
"rttConfig": {
"enabled": true,
"address": "auto",
"decoders": [
{
"label": "RTT stdout",
"port": 0,
"type": "console",
"timestamp": true
},
// {
// "label": "RTT graph",
// "port": 0,
// "encoding": "unsigned",
// "graphId": "1",
// "scale": 1
// }
]
},
// "graphConfig": [
// {
// "label": "Graph 1",
// "type": "realtime",
// "minimum": 0,
// "maximum": 65535,
// "timespan": 30,
// "plots": [
// {
// "graphId": "1",
// "label": "data 1",
// "color": "#53753c",
// },
// {
// "graphId": "2",
// "label": "data 2",
// "color": "#955f20"
// }
// ]
// }
// ]
}
]
}

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

@@ -0,0 +1,22 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "f303-freertos",
"type": "shell",
"command": "C:/MyApps/mingw64/bin/make.exe",
"options": {
"cwd": "${workspaceFolder}"
},
"args": [
"-j"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}