From a143fba47d0ca6c7d348fc9055a4f3b4416cefe3 Mon Sep 17 00:00:00 2001 From: Carsten Keller Date: Sun, 9 Jun 2024 17:57:44 +0200 Subject: [PATCH] =?UTF-8?q?ADC=20integriert=20mit=20TIM-als=20Trigger=20un?= =?UTF-8?q?d=20DMA=20zum=20Daten=C3=BCbertragen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .cproject | 10 +- .gitignore | 2 + .mxproject | 4 +- Core/Inc/main.h | 84 - Core/Inc/stm32g0xx_it.h | 63 - .../Inc/stm32g0xx_ll_tim.h | 5275 +++++++++++++++++ .../Src/stm32g0xx_ll_tim.c | 1369 +++++ Elektronische_Last.ioc | 46 +- Source/ADC.cpp | 199 + Source/ADC.hpp | 22 + Source/ElektronischeLast.cpp | 9 +- Source/STM32G071KBT6.cpp | 13 +- Source/serial.cpp | 62 + Source/serial.hpp | 13 + 14 files changed, 7010 insertions(+), 161 deletions(-) delete mode 100644 Core/Inc/main.h delete mode 100644 Core/Inc/stm32g0xx_it.h create mode 100644 Drivers/STM32G0xx_HAL_Driver/Inc/stm32g0xx_ll_tim.h create mode 100644 Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_tim.c create mode 100644 Source/ADC.cpp create mode 100644 Source/ADC.hpp create mode 100644 Source/serial.hpp diff --git a/.cproject b/.cproject index eebdaf2..f87c504 100644 --- a/.cproject +++ b/.cproject @@ -94,6 +94,7 @@ +