From 59b94427c591e7ec4603b2d9dd6753b1b0927175 Mon Sep 17 00:00:00 2001 From: Vegard Storheil Eriksen Date: Sat, 10 Sep 2022 17:07:52 +0200 Subject: stm32g4: Add OPAMP. --- adc/stm32_opamp.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 adc/stm32_opamp.h (limited to 'adc/stm32_opamp.h') diff --git a/adc/stm32_opamp.h b/adc/stm32_opamp.h new file mode 100644 index 0000000..928bd0c --- /dev/null +++ b/adc/stm32_opamp.h @@ -0,0 +1,23 @@ +#pragma once + +#include + +struct STM32_OPAMP_reg_t { + volatile uint32_t CSR1; + volatile uint32_t CSR2; + volatile uint32_t CSR3; + volatile uint32_t CSR4; + volatile uint32_t CSR5; + volatile uint32_t CSR6; + volatile uint32_t TCMR1; + volatile uint32_t TCMR2; + volatile uint32_t TCMR3; + volatile uint32_t TCMR4; + volatile uint32_t TCMR5; + volatile uint32_t TCMR6; +}; + +class STM32_OPAMP_t : public mmio_ptr { + public: + using mmio_ptr::ptr; +}; -- cgit v1.2.3