This commit is contained in:
2023-11-06 20:31:43 +01:00
commit 617dd175b9
121 changed files with 198315 additions and 0 deletions

View File

@@ -0,0 +1 @@
[{"node":"ADC1","expanded":true,"format":0,"pinned":false}]

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/Core/Include",
"${workspaceFolder}/Drivers/CMSIS/Device/ST/STM32G0xx/Include",
"${workspaceFolder}/Drivers/STM32G0xx_HAL_Driver/Inc",
"${workspaceFolder}/utils/rtt"
],
"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
}

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

@@ -0,0 +1,61 @@
{
// 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 Nucloe",
"cwd": "${workspaceFolder}/func_gen_stm32f303re_nucleo/",
"executable": "./build/func_gen_stm32f303re_nucleo.elf",
"request": "launch",
"type": "cortex-debug",
"runToEntryPoint": "main",
"servertype": "jlink",
"device": "STM32G0B1RE",
"interface": "swd",
"svdFile": "STM32G0B1.svd",
"preLaunchTask": "${defaultBuildTask}",
"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"
// }
// ]
// }
// ]
}
]
}

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

@@ -0,0 +1,30 @@
{
"files.associations": {
"ad9833_def.h": "c",
"ad9833.h": "c",
"disp_layout.h": "c",
"bitmap_disp_buttons.h": "c",
"bitmap_fonts.h": "c",
"font_gfx.h": "c",
"display_gfx.h": "c",
"main.h": "c",
"ctrl_button.h": "c",
"ctrl_bottom_button.h": "c",
"printf.h": "c",
"disp_layout_template.h": "c",
"disp_layout_types.h": "c",
"ctrl_app_types.h": "c",
"tim.h": "c",
"ulog.h": "c",
"ctrl_generator.h": "c",
"type_traits": "c",
"ctrl_gen_types.h": "c",
"mcp41x.h": "c",
"ctrl_channel_button.h": "c",
"ctrl_encoder.h": "c",
"ctrl_disp_button.h": "c",
"ctrl_app.h": "c",
"ctrl_app_defs.h": "c"
},
"cortex-debug.variableUseNaturalFormat": true
}

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