init commit

This commit is contained in:
2023-02-02 22:03:55 +01:00
commit 967b944285
948 changed files with 697844 additions and 0 deletions

View File

@@ -0,0 +1 @@
[{"node":"DMA1","expanded":true,"format":0,"pinned":false},{"node":"DMA1.ISR","expanded":true,"format":0},{"node":"DMA1.IFCR","expanded":true,"format":0},{"node":"TIM6","expanded":true,"format":0,"pinned":false},{"node":"TIM6.CNT","expanded":true,"format":0},{"node":"TIM6.PSC","expanded":true,"format":0},{"node":"TIM6.ARR","expanded":true,"format":0}]

View File

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

View File

@@ -0,0 +1,25 @@
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/Core/Inc/**",
"${workspaceFolder}/Drivers/STM32F3xx_HAL_Driver/Inc/**",
"${workspaceFolder}/Drivers/CMSIS/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE",
"USE_HAL_DRIVERS",
"STM32F303xE"
],
"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
}

View File

@@ -0,0 +1,33 @@
{
// 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": "Cortex Debug",
"cwd": "${workspaceFolder}",
"executable": "./build/${workspaceFolderBasename}.elf",
"request": "launch",
"type": "cortex-debug",
"runToEntryPoint": "main",
"servertype": "jlink",
"device": "STM32F303RE",
"interface": "swd",
"runToMain": true,
"svdFile": "STM32F303xE.svd",
// "swoConfig": {
// "enabled": false,
// "cpuFrequency": 8000000,
// "swoFrequency": 2000000,
// "source": "probe",
// "decoders": [{
// "type": "console",
// "label": "ITM",
// "port": 0
// }
// ]
// }
}
]
}

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": [
{
"type": "shell",
"label": "build",
"command": "C:/MyApps/mingw64/bin/make.exe",
"options": {
"cwd": "${workspaceFolder}"
},
"args": [
"-j"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}