working dac dma

This commit is contained in:
2023-12-13 21:26:21 +01:00
parent ca96771e90
commit 75d8c8560d
15 changed files with 59265 additions and 216 deletions

View File

@@ -15,7 +15,8 @@
"STM32G474xx",
"USE_HAL_DRIVER"
],
"compilerPath": "C:/MyApps/arm-gcc/arm-gnu-toolchain-12.2.mpacbti-bet1-mingw-w64-i686-arm-none-eabi/bin/arm-none-eabi-gcc.exe",
// "compilerPath": "C:/MyApps/arm-gcc/arm-gnu-toolchain-12.2.mpacbti-bet1-mingw-w64-i686-arm-none-eabi/bin/arm-none-eabi-gcc.exe",
"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-x64"

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

@@ -0,0 +1,22 @@
{
// 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": "stlink",
"stlinkPath": "C:/MyApps/STM32CubeIDE/STM32CubeIDE_1.14.0/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.stlink-gdb-server.win32_2.1.100.202310302101/tools/bin/ST-LINK_gdbserver.exe",
// "serverpath": "C:/MyApps/STM32CubeIDE/STM32CubeIDE_1.14.0/STM32CubeIDE/plugins/com.st.stm32cube.ide.mcu.externaltools.stlink-gdb-server.win32_2.1.100.202310302101/tools/bin/ST-LINK_gdbserver.exe",
"stm32cubeprogrammer": "C:/MyApps/STM32CubeProgrammer/bin",
"device": "STM32G474RE",
"svdFile": "STM32G474xx.svd"
}
]
}

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

@@ -0,0 +1,5 @@
{
"files.associations": {
"main.h": "c"
}
}