init commit
This commit is contained in:
1
.vscode/.cortex-debug.peripherals.state.json
vendored
Normal file
1
.vscode/.cortex-debug.peripherals.state.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
[]
|
||||
1
.vscode/.cortex-debug.registers.state.json
vendored
Normal file
1
.vscode/.cortex-debug.registers.state.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
[]
|
||||
27
.vscode/c_cpp_properties.json
vendored
Normal file
27
.vscode/c_cpp_properties.json
vendored
Normal 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
62
.vscode/launch.json
vendored
Normal 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
22
.vscode/tasks.json
vendored
Normal 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
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user