aboutsummaryrefslogtreecommitdiff
path: root/lib/chibios/os/common/ext/ST/STM32H7xx/stm32h743xx.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chibios/os/common/ext/ST/STM32H7xx/stm32h743xx.h')
-rw-r--r--lib/chibios/os/common/ext/ST/STM32H7xx/stm32h743xx.h26301
1 files changed, 26301 insertions, 0 deletions
diff --git a/lib/chibios/os/common/ext/ST/STM32H7xx/stm32h743xx.h b/lib/chibios/os/common/ext/ST/STM32H7xx/stm32h743xx.h
new file mode 100644
index 000000000..09f4191bc
--- /dev/null
+++ b/lib/chibios/os/common/ext/ST/STM32H7xx/stm32h743xx.h
@@ -0,0 +1,26301 @@
1/**
2 ******************************************************************************
3 * @file stm32h743xx.h
4 * @author MCD Application Team
5 * @brief CMSIS STM32H743xx Device Peripheral Access Layer Header File.
6 *
7 * This file contains:
8 * - Data structures and the address mapping for all peripherals
9 * - Peripheral's registers declarations and bits definition
10 * - Macros to access peripheral's registers hardware
11 *
12 ******************************************************************************
13 * @attention
14 *
15 * <h2><center>&copy; Copyright (c) 2017 STMicroelectronics.
16 * All rights reserved.</center></h2>
17 *
18 * This software component is licensed by ST under BSD 3-Clause license,
19 * the "License"; You may not use this file except in compliance with the
20 * License. You may obtain a copy of the License at:
21 * opensource.org/licenses/BSD-3-Clause
22 *
23 ******************************************************************************
24 */
25
26/** @addtogroup CMSIS_Device
27 * @{
28 */
29
30/** @addtogroup stm32h743xx
31 * @{
32 */
33
34#ifndef STM32H743xx_H
35#define STM32H743xx_H
36
37#ifdef __cplusplus
38 extern "C" {
39#endif /* __cplusplus */
40
41/** @addtogroup Peripheral_interrupt_number_definition
42 * @{
43 */
44
45/**
46 * @brief STM32H7XX Interrupt Number Definition, according to the selected device
47 * in @ref Library_configuration_section
48 */
49typedef enum
50{
51/****** Cortex-M Processor Exceptions Numbers *****************************************************************/
52 NonMaskableInt_IRQn = -14, /*!< 2 Non Maskable Interrupt */
53 HardFault_IRQn = -13, /*!< 4 Cortex-M Memory Management Interrupt */
54 MemoryManagement_IRQn = -12, /*!< 4 Cortex-M Memory Management Interrupt */
55 BusFault_IRQn = -11, /*!< 5 Cortex-M Bus Fault Interrupt */
56 UsageFault_IRQn = -10, /*!< 6 Cortex-M Usage Fault Interrupt */
57 SVCall_IRQn = -5, /*!< 11 Cortex-M SV Call Interrupt */
58 DebugMonitor_IRQn = -4, /*!< 12 Cortex-M Debug Monitor Interrupt */
59 PendSV_IRQn = -2, /*!< 14 Cortex-M Pend SV Interrupt */
60 SysTick_IRQn = -1, /*!< 15 Cortex-M System Tick Interrupt */
61/****** STM32 specific Interrupt Numbers **********************************************************************/
62 WWDG_IRQn = 0, /*!< Window WatchDog Interrupt ( wwdg1_it, wwdg2_it) */
63 PVD_AVD_IRQn = 1, /*!< PVD/AVD through EXTI Line detection Interrupt */
64 TAMP_STAMP_IRQn = 2, /*!< Tamper and TimeStamp interrupts through the EXTI line */
65 RTC_WKUP_IRQn = 3, /*!< RTC Wakeup interrupt through the EXTI line */
66 FLASH_IRQn = 4, /*!< FLASH global Interrupt */
67 RCC_IRQn = 5, /*!< RCC global Interrupt */
68 EXTI0_IRQn = 6, /*!< EXTI Line0 Interrupt */
69 EXTI1_IRQn = 7, /*!< EXTI Line1 Interrupt */
70 EXTI2_IRQn = 8, /*!< EXTI Line2 Interrupt */
71 EXTI3_IRQn = 9, /*!< EXTI Line3 Interrupt */
72 EXTI4_IRQn = 10, /*!< EXTI Line4 Interrupt */
73 DMA1_Stream0_IRQn = 11, /*!< DMA1 Stream 0 global Interrupt */
74 DMA1_Stream1_IRQn = 12, /*!< DMA1 Stream 1 global Interrupt */
75 DMA1_Stream2_IRQn = 13, /*!< DMA1 Stream 2 global Interrupt */
76 DMA1_Stream3_IRQn = 14, /*!< DMA1 Stream 3 global Interrupt */
77 DMA1_Stream4_IRQn = 15, /*!< DMA1 Stream 4 global Interrupt */
78 DMA1_Stream5_IRQn = 16, /*!< DMA1 Stream 5 global Interrupt */
79 DMA1_Stream6_IRQn = 17, /*!< DMA1 Stream 6 global Interrupt */
80 ADC_IRQn = 18, /*!< ADC1 and ADC2 global Interrupts */
81 FDCAN1_IT0_IRQn = 19, /*!< FDCAN1 Interrupt line 0 */
82 FDCAN2_IT0_IRQn = 20, /*!< FDCAN2 Interrupt line 0 */
83 FDCAN1_IT1_IRQn = 21, /*!< FDCAN1 Interrupt line 1 */
84 FDCAN2_IT1_IRQn = 22, /*!< FDCAN2 Interrupt line 1 */
85 EXTI9_5_IRQn = 23, /*!< External Line[9:5] Interrupts */
86 TIM1_BRK_IRQn = 24, /*!< TIM1 Break Interrupt */
87 TIM1_UP_IRQn = 25, /*!< TIM1 Update Interrupt */
88 TIM1_TRG_COM_IRQn = 26, /*!< TIM1 Trigger and Commutation Interrupt */
89 TIM1_CC_IRQn = 27, /*!< TIM1 Capture Compare Interrupt */
90 TIM2_IRQn = 28, /*!< TIM2 global Interrupt */
91 TIM3_IRQn = 29, /*!< TIM3 global Interrupt */
92 TIM4_IRQn = 30, /*!< TIM4 global Interrupt */
93 I2C1_EV_IRQn = 31, /*!< I2C1 Event Interrupt */
94 I2C1_ER_IRQn = 32, /*!< I2C1 Error Interrupt */
95 I2C2_EV_IRQn = 33, /*!< I2C2 Event Interrupt */
96 I2C2_ER_IRQn = 34, /*!< I2C2 Error Interrupt */
97 SPI1_IRQn = 35, /*!< SPI1 global Interrupt */
98 SPI2_IRQn = 36, /*!< SPI2 global Interrupt */
99 USART1_IRQn = 37, /*!< USART1 global Interrupt */
100 USART2_IRQn = 38, /*!< USART2 global Interrupt */
101 USART3_IRQn = 39, /*!< USART3 global Interrupt */
102 EXTI15_10_IRQn = 40, /*!< External Line[15:10] Interrupts */
103 RTC_Alarm_IRQn = 41, /*!< RTC Alarm (A and B) through EXTI Line Interrupt */
104 TIM8_BRK_TIM12_IRQn = 43, /*!< TIM8 Break Interrupt and TIM12 global interrupt */
105 TIM8_UP_TIM13_IRQn = 44, /*!< TIM8 Update Interrupt and TIM13 global interrupt */
106 TIM8_TRG_COM_TIM14_IRQn = 45, /*!< TIM8 Trigger and Commutation Interrupt and TIM14 global interrupt */
107 TIM8_CC_IRQn = 46, /*!< TIM8 Capture Compare Interrupt */
108 DMA1_Stream7_IRQn = 47, /*!< DMA1 Stream7 Interrupt */
109 FMC_IRQn = 48, /*!< FMC global Interrupt */
110 SDMMC1_IRQn = 49, /*!< SDMMC1 global Interrupt */
111 TIM5_IRQn = 50, /*!< TIM5 global Interrupt */
112 SPI3_IRQn = 51, /*!< SPI3 global Interrupt */
113 UART4_IRQn = 52, /*!< UART4 global Interrupt */
114 UART5_IRQn = 53, /*!< UART5 global Interrupt */
115 TIM6_DAC_IRQn = 54, /*!< TIM6 global and DAC1&2 underrun error interrupts */
116 TIM7_IRQn = 55, /*!< TIM7 global interrupt */
117 DMA2_Stream0_IRQn = 56, /*!< DMA2 Stream 0 global Interrupt */
118 DMA2_Stream1_IRQn = 57, /*!< DMA2 Stream 1 global Interrupt */
119 DMA2_Stream2_IRQn = 58, /*!< DMA2 Stream 2 global Interrupt */
120 DMA2_Stream3_IRQn = 59, /*!< DMA2 Stream 3 global Interrupt */
121 DMA2_Stream4_IRQn = 60, /*!< DMA2 Stream 4 global Interrupt */
122 ETH_IRQn = 61, /*!< Ethernet global Interrupt */
123 ETH_WKUP_IRQn = 62, /*!< Ethernet Wakeup through EXTI line Interrupt */
124 FDCAN_CAL_IRQn = 63, /*!< FDCAN Calibration unit Interrupt */
125 DMA2_Stream5_IRQn = 68, /*!< DMA2 Stream 5 global interrupt */
126 DMA2_Stream6_IRQn = 69, /*!< DMA2 Stream 6 global interrupt */
127 DMA2_Stream7_IRQn = 70, /*!< DMA2 Stream 7 global interrupt */
128 USART6_IRQn = 71, /*!< USART6 global interrupt */
129 I2C3_EV_IRQn = 72, /*!< I2C3 event interrupt */
130 I2C3_ER_IRQn = 73, /*!< I2C3 error interrupt */
131 OTG_HS_EP1_OUT_IRQn = 74, /*!< USB OTG HS End Point 1 Out global interrupt */
132 OTG_HS_EP1_IN_IRQn = 75, /*!< USB OTG HS End Point 1 In global interrupt */
133 OTG_HS_WKUP_IRQn = 76, /*!< USB OTG HS Wakeup through EXTI interrupt */
134 OTG_HS_IRQn = 77, /*!< USB OTG HS global interrupt */
135 DCMI_IRQn = 78, /*!< DCMI global interrupt */
136 RNG_IRQn = 80, /*!< RNG global interrupt */
137 FPU_IRQn = 81, /*!< FPU global interrupt */
138 UART7_IRQn = 82, /*!< UART7 global interrupt */
139 UART8_IRQn = 83, /*!< UART8 global interrupt */
140 SPI4_IRQn = 84, /*!< SPI4 global Interrupt */
141 SPI5_IRQn = 85, /*!< SPI5 global Interrupt */
142 SPI6_IRQn = 86, /*!< SPI6 global Interrupt */
143 SAI1_IRQn = 87, /*!< SAI1 global Interrupt */
144 LTDC_IRQn = 88, /*!< LTDC global Interrupt */
145 LTDC_ER_IRQn = 89, /*!< LTDC Error global Interrupt */
146 DMA2D_IRQn = 90, /*!< DMA2D global Interrupt */
147 SAI2_IRQn = 91, /*!< SAI2 global Interrupt */
148 QUADSPI_IRQn = 92, /*!< Quad SPI global interrupt */
149 LPTIM1_IRQn = 93, /*!< LP TIM1 interrupt */
150 CEC_IRQn = 94, /*!< HDMI-CEC global Interrupt */
151 I2C4_EV_IRQn = 95, /*!< I2C4 Event Interrupt */
152 I2C4_ER_IRQn = 96, /*!< I2C4 Error Interrupt */
153 SPDIF_RX_IRQn = 97, /*!< SPDIF-RX global Interrupt */
154 OTG_FS_EP1_OUT_IRQn = 98, /*!< USB OTG HS2 global interrupt */
155 OTG_FS_EP1_IN_IRQn = 99, /*!< USB OTG HS2 End Point 1 Out global interrupt */
156 OTG_FS_WKUP_IRQn = 100, /*!< USB OTG HS2 End Point 1 In global interrupt */
157 OTG_FS_IRQn = 101, /*!< USB OTG HS2 Wakeup through EXTI interrupt */
158 DMAMUX1_OVR_IRQn = 102, /*!<DMAMUX1 Overrun interrupt */
159 HRTIM1_Master_IRQn = 103, /*!< HRTIM Master Timer global Interrupts */
160 HRTIM1_TIMA_IRQn = 104, /*!< HRTIM Timer A global Interrupt */
161 HRTIM1_TIMB_IRQn = 105, /*!< HRTIM Timer B global Interrupt */
162 HRTIM1_TIMC_IRQn = 106, /*!< HRTIM Timer C global Interrupt */
163 HRTIM1_TIMD_IRQn = 107, /*!< HRTIM Timer D global Interrupt */
164 HRTIM1_TIME_IRQn = 108, /*!< HRTIM Timer E global Interrupt */
165 HRTIM1_FLT_IRQn = 109, /*!< HRTIM Fault global Interrupt */
166 DFSDM1_FLT0_IRQn = 110, /*!<DFSDM Filter1 Interrupt */
167 DFSDM1_FLT1_IRQn = 111, /*!<DFSDM Filter2 Interrupt */
168 DFSDM1_FLT2_IRQn = 112, /*!<DFSDM Filter3 Interrupt */
169 DFSDM1_FLT3_IRQn = 113, /*!<DFSDM Filter4 Interrupt */
170 SAI3_IRQn = 114, /*!< SAI3 global Interrupt */
171 SWPMI1_IRQn = 115, /*!< Serial Wire Interface 1 global interrupt */
172 TIM15_IRQn = 116, /*!< TIM15 global Interrupt */
173 TIM16_IRQn = 117, /*!< TIM16 global Interrupt */
174 TIM17_IRQn = 118, /*!< TIM17 global Interrupt */
175 MDIOS_WKUP_IRQn = 119, /*!< MDIOS Wakeup Interrupt */
176 MDIOS_IRQn = 120, /*!< MDIOS global Interrupt */
177 JPEG_IRQn = 121, /*!< JPEG global Interrupt */
178 MDMA_IRQn = 122, /*!< MDMA global Interrupt */
179 SDMMC2_IRQn = 124, /*!< SDMMC2 global Interrupt */
180 HSEM1_IRQn = 125, /*!< HSEM1 global Interrupt */
181 ADC3_IRQn = 127, /*!< ADC3 global Interrupt */
182 DMAMUX2_OVR_IRQn = 128, /*!<DMAMUX2 Overrun interrupt */
183 BDMA_Channel0_IRQn = 129, /*!< BDMA Channel 0 global Interrupt */
184 BDMA_Channel1_IRQn = 130, /*!< BDMA Channel 1 global Interrupt */
185 BDMA_Channel2_IRQn = 131, /*!< BDMA Channel 2 global Interrupt */
186 BDMA_Channel3_IRQn = 132, /*!< BDMA Channel 3 global Interrupt */
187 BDMA_Channel4_IRQn = 133, /*!< BDMA Channel 4 global Interrupt */
188 BDMA_Channel5_IRQn = 134, /*!< BDMA Channel 5 global Interrupt */
189 BDMA_Channel6_IRQn = 135, /*!< BDMA Channel 6 global Interrupt */
190 BDMA_Channel7_IRQn = 136, /*!< BDMA Channel 7 global Interrupt */
191 COMP_IRQn = 137 , /*!< COMP global Interrupt */
192 LPTIM2_IRQn = 138, /*!< LP TIM2 global interrupt */
193 LPTIM3_IRQn = 139, /*!< LP TIM3 global interrupt */
194 LPTIM4_IRQn = 140, /*!< LP TIM4 global interrupt */
195 LPTIM5_IRQn = 141, /*!< LP TIM5 global interrupt */
196 LPUART1_IRQn = 142, /*!< LP UART1 interrupt */
197 CRS_IRQn = 144, /*!< Clock Recovery Global Interrupt */
198 ECC_IRQn = 145, /*!< ECC diagnostic Global Interrupt */
199 SAI4_IRQn = 146, /*!< SAI4 global interrupt */
200 WAKEUP_PIN_IRQn = 149, /*!< Interrupt for all 6 wake-up pins */
201} IRQn_Type;
202
203/**
204 * @}
205 */
206
207/** @addtogroup Configuration_section_for_CMSIS
208 * @{
209 */
210
211
212
213
214/**
215 * @brief Configuration of the Cortex-M7 Processor and Core Peripherals
216 */
217#define __CM7_REV 0x0100U /*!< Cortex-M7 revision r1p0 */
218#define __MPU_PRESENT 1 /*!< CM7 provides an MPU */
219#define __NVIC_PRIO_BITS 4 /*!< CM7 uses 4 Bits for the Priority Levels */
220#define __Vendor_SysTickConfig 0 /*!< Set to 1 if different SysTick Config is used */
221#define __FPU_PRESENT 1 /*!< FPU present */
222#define __ICACHE_PRESENT 1 /*!< CM7 instruction cache present */
223#define __DCACHE_PRESENT 1 /*!< CM7 data cache present */
224#include "core_cm7.h" /*!< Cortex-M7 processor and core peripherals */
225
226/**
227 * @}
228 */
229
230
231
232
233#include "system_stm32h7xx.h"
234#include <stdint.h>
235
236/** @addtogroup Peripheral_registers_structures
237 * @{
238 */
239
240/**
241 * @brief Analog to Digital Converter
242 */
243
244typedef struct
245{
246 __IO uint32_t ISR; /*!< ADC Interrupt and Status Register, Address offset: 0x00 */
247 __IO uint32_t IER; /*!< ADC Interrupt Enable Register, Address offset: 0x04 */
248 __IO uint32_t CR; /*!< ADC control register, Address offset: 0x08 */
249 __IO uint32_t CFGR; /*!< ADC Configuration register, Address offset: 0x0C */
250 __IO uint32_t CFGR2; /*!< ADC Configuration register 2, Address offset: 0x10 */
251 __IO uint32_t SMPR1; /*!< ADC sample time register 1, Address offset: 0x14 */
252 __IO uint32_t SMPR2; /*!< ADC sample time register 2, Address offset: 0x18 */
253 __IO uint32_t PCSEL; /*!< ADC pre-channel selection, Address offset: 0x1C */
254 __IO uint32_t LTR1; /*!< ADC watchdog Lower threshold register 1, Address offset: 0x20 */
255 __IO uint32_t HTR1; /*!< ADC watchdog higher threshold register 1, Address offset: 0x24 */
256 uint32_t RESERVED1; /*!< Reserved, 0x028 */
257 uint32_t RESERVED2; /*!< Reserved, 0x02C */
258 __IO uint32_t SQR1; /*!< ADC regular sequence register 1, Address offset: 0x30 */
259 __IO uint32_t SQR2; /*!< ADC regular sequence register 2, Address offset: 0x34 */
260 __IO uint32_t SQR3; /*!< ADC regular sequence register 3, Address offset: 0x38 */
261 __IO uint32_t SQR4; /*!< ADC regular sequence register 4, Address offset: 0x3C */
262 __IO uint32_t DR; /*!< ADC regular data register, Address offset: 0x40 */
263 uint32_t RESERVED3; /*!< Reserved, 0x044 */
264 uint32_t RESERVED4; /*!< Reserved, 0x048 */
265 __IO uint32_t JSQR; /*!< ADC injected sequence register, Address offset: 0x4C */
266 uint32_t RESERVED5[4]; /*!< Reserved, 0x050 - 0x05C */
267 __IO uint32_t OFR1; /*!< ADC offset register 1, Address offset: 0x60 */
268 __IO uint32_t OFR2; /*!< ADC offset register 2, Address offset: 0x64 */
269 __IO uint32_t OFR3; /*!< ADC offset register 3, Address offset: 0x68 */
270 __IO uint32_t OFR4; /*!< ADC offset register 4, Address offset: 0x6C */
271 uint32_t RESERVED6[4]; /*!< Reserved, 0x070 - 0x07C */
272 __IO uint32_t JDR1; /*!< ADC injected data register 1, Address offset: 0x80 */
273 __IO uint32_t JDR2; /*!< ADC injected data register 2, Address offset: 0x84 */
274 __IO uint32_t JDR3; /*!< ADC injected data register 3, Address offset: 0x88 */
275 __IO uint32_t JDR4; /*!< ADC injected data register 4, Address offset: 0x8C */
276 uint32_t RESERVED7[4]; /*!< Reserved, 0x090 - 0x09C */
277 __IO uint32_t AWD2CR; /*!< ADC Analog Watchdog 2 Configuration Register, Address offset: 0xA0 */
278 __IO uint32_t AWD3CR; /*!< ADC Analog Watchdog 3 Configuration Register, Address offset: 0xA4 */
279 uint32_t RESERVED8; /*!< Reserved, 0x0A8 */
280 uint32_t RESERVED9; /*!< Reserved, 0x0AC */
281 __IO uint32_t LTR2; /*!< ADC watchdog Lower threshold register 2, Address offset: 0xB0 */
282 __IO uint32_t HTR2; /*!< ADC watchdog Higher threshold register 2, Address offset: 0xB4 */
283 __IO uint32_t LTR3; /*!< ADC watchdog Lower threshold register 3, Address offset: 0xB8 */
284 __IO uint32_t HTR3; /*!< ADC watchdog Higher threshold register 3, Address offset: 0xBC */
285 __IO uint32_t DIFSEL; /*!< ADC Differential Mode Selection Register, Address offset: 0xC0 */
286 __IO uint32_t CALFACT; /*!< ADC Calibration Factors, Address offset: 0xC4 */
287 __IO uint32_t CALFACT2; /*!< ADC Linearity Calibration Factors, Address offset: 0xC8 */
288} ADC_TypeDef;
289
290
291typedef struct
292{
293__IO uint32_t CSR; /*!< ADC Common status register, Address offset: ADC1/3 base address + 0x300 */
294uint32_t RESERVED; /*!< Reserved, ADC1/3 base address + 0x304 */
295__IO uint32_t CCR; /*!< ADC common control register, Address offset: ADC1/3 base address + 0x308 */
296__IO uint32_t CDR; /*!< ADC common regular data register for dual Address offset: ADC1/3 base address + 0x30C */
297__IO uint32_t CDR2; /*!< ADC common regular data register for 32-bit dual mode Address offset: ADC1/3 base address + 0x310 */
298
299} ADC_Common_TypeDef;
300
301
302/**
303 * @brief VREFBUF
304 */
305
306typedef struct
307{
308 __IO uint32_t CSR; /*!< VREFBUF control and status register, Address offset: 0x00 */
309 __IO uint32_t CCR; /*!< VREFBUF calibration and control register, Address offset: 0x04 */
310} VREFBUF_TypeDef;
311
312
313/**
314 * @brief FD Controller Area Network
315 */
316
317typedef struct
318{
319 __IO uint32_t CREL; /*!< FDCAN Core Release register, Address offset: 0x000 */
320 __IO uint32_t ENDN; /*!< FDCAN Endian register, Address offset: 0x004 */
321 __IO uint32_t RESERVED1; /*!< Reserved, 0x008 */
322 __IO uint32_t DBTP; /*!< FDCAN Data Bit Timing & Prescaler register, Address offset: 0x00C */
323 __IO uint32_t TEST; /*!< FDCAN Test register, Address offset: 0x010 */
324 __IO uint32_t RWD; /*!< FDCAN RAM Watchdog register, Address offset: 0x014 */
325 __IO uint32_t CCCR; /*!< FDCAN CC Control register, Address offset: 0x018 */
326 __IO uint32_t NBTP; /*!< FDCAN Nominal Bit Timing & Prescaler register, Address offset: 0x01C */
327 __IO uint32_t TSCC; /*!< FDCAN Timestamp Counter Configuration register, Address offset: 0x020 */
328 __IO uint32_t TSCV; /*!< FDCAN Timestamp Counter Value register, Address offset: 0x024 */
329 __IO uint32_t TOCC; /*!< FDCAN Timeout Counter Configuration register, Address offset: 0x028 */
330 __IO uint32_t TOCV; /*!< FDCAN Timeout Counter Value register, Address offset: 0x02C */
331 __IO uint32_t RESERVED2[4]; /*!< Reserved, 0x030 - 0x03C */
332 __IO uint32_t ECR; /*!< FDCAN Error Counter register, Address offset: 0x040 */
333 __IO uint32_t PSR; /*!< FDCAN Protocol Status register, Address offset: 0x044 */
334 __IO uint32_t TDCR; /*!< FDCAN Transmitter Delay Compensation register, Address offset: 0x048 */
335 __IO uint32_t RESERVED3; /*!< Reserved, 0x04C */
336 __IO uint32_t IR; /*!< FDCAN Interrupt register, Address offset: 0x050 */
337 __IO uint32_t IE; /*!< FDCAN Interrupt Enable register, Address offset: 0x054 */
338 __IO uint32_t ILS; /*!< FDCAN Interrupt Line Select register, Address offset: 0x058 */
339 __IO uint32_t ILE; /*!< FDCAN Interrupt Line Enable register, Address offset: 0x05C */
340 __IO uint32_t RESERVED4[8]; /*!< Reserved, 0x060 - 0x07C */
341 __IO uint32_t GFC; /*!< FDCAN Global Filter Configuration register, Address offset: 0x080 */
342 __IO uint32_t SIDFC; /*!< FDCAN Standard ID Filter Configuration register, Address offset: 0x084 */
343 __IO uint32_t XIDFC; /*!< FDCAN Extended ID Filter Configuration register, Address offset: 0x088 */
344 __IO uint32_t RESERVED5; /*!< Reserved, 0x08C */
345 __IO uint32_t XIDAM; /*!< FDCAN Extended ID AND Mask register, Address offset: 0x090 */
346 __IO uint32_t HPMS; /*!< FDCAN High Priority Message Status register, Address offset: 0x094 */
347 __IO uint32_t NDAT1; /*!< FDCAN New Data 1 register, Address offset: 0x098 */
348 __IO uint32_t NDAT2; /*!< FDCAN New Data 2 register, Address offset: 0x09C */
349 __IO uint32_t RXF0C; /*!< FDCAN Rx FIFO 0 Configuration register, Address offset: 0x0A0 */
350 __IO uint32_t RXF0S; /*!< FDCAN Rx FIFO 0 Status register, Address offset: 0x0A4 */
351 __IO uint32_t RXF0A; /*!< FDCAN Rx FIFO 0 Acknowledge register, Address offset: 0x0A8 */
352 __IO uint32_t RXBC; /*!< FDCAN Rx Buffer Configuration register, Address offset: 0x0AC */
353 __IO uint32_t RXF1C; /*!< FDCAN Rx FIFO 1 Configuration register, Address offset: 0x0B0 */
354 __IO uint32_t RXF1S; /*!< FDCAN Rx FIFO 1 Status register, Address offset: 0x0B4 */
355 __IO uint32_t RXF1A; /*!< FDCAN Rx FIFO 1 Acknowledge register, Address offset: 0x0B8 */
356 __IO uint32_t RXESC; /*!< FDCAN Rx Buffer/FIFO Element Size Configuration register, Address offset: 0x0BC */
357 __IO uint32_t TXBC; /*!< FDCAN Tx Buffer Configuration register, Address offset: 0x0C0 */
358 __IO uint32_t TXFQS; /*!< FDCAN Tx FIFO/Queue Status register, Address offset: 0x0C4 */
359 __IO uint32_t TXESC; /*!< FDCAN Tx Buffer Element Size Configuration register, Address offset: 0x0C8 */
360 __IO uint32_t TXBRP; /*!< FDCAN Tx Buffer Request Pending register, Address offset: 0x0CC */
361 __IO uint32_t TXBAR; /*!< FDCAN Tx Buffer Add Request register, Address offset: 0x0D0 */
362 __IO uint32_t TXBCR; /*!< FDCAN Tx Buffer Cancellation Request register, Address offset: 0x0D4 */
363 __IO uint32_t TXBTO; /*!< FDCAN Tx Buffer Transmission Occurred register, Address offset: 0x0D8 */
364 __IO uint32_t TXBCF; /*!< FDCAN Tx Buffer Cancellation Finished register, Address offset: 0x0DC */
365 __IO uint32_t TXBTIE; /*!< FDCAN Tx Buffer Transmission Interrupt Enable register, Address offset: 0x0E0 */
366 __IO uint32_t TXBCIE; /*!< FDCAN Tx Buffer Cancellation Finished Interrupt Enable register, Address offset: 0x0E4 */
367 __IO uint32_t RESERVED6[2]; /*!< Reserved, 0x0E8 - 0x0EC */
368 __IO uint32_t TXEFC; /*!< FDCAN Tx Event FIFO Configuration register, Address offset: 0x0F0 */
369 __IO uint32_t TXEFS; /*!< FDCAN Tx Event FIFO Status register, Address offset: 0x0F4 */
370 __IO uint32_t TXEFA; /*!< FDCAN Tx Event FIFO Acknowledge register, Address offset: 0x0F8 */
371 __IO uint32_t RESERVED7; /*!< Reserved, 0x0FC */
372} FDCAN_GlobalTypeDef;
373
374/**
375 * @brief TTFD Controller Area Network
376 */
377
378typedef struct
379{
380 __IO uint32_t TTTMC; /*!< TT Trigger Memory Configuration register, Address offset: 0x100 */
381 __IO uint32_t TTRMC; /*!< TT Reference Message Configuration register, Address offset: 0x104 */
382 __IO uint32_t TTOCF; /*!< TT Operation Configuration register, Address offset: 0x108 */
383 __IO uint32_t TTMLM; /*!< TT Matrix Limits register, Address offset: 0x10C */
384 __IO uint32_t TURCF; /*!< TUR Configuration register, Address offset: 0x110 */
385 __IO uint32_t TTOCN; /*!< TT Operation Control register, Address offset: 0x114 */
386 __IO uint32_t TTGTP; /*!< TT Global Time Preset register, Address offset: 0x118 */
387 __IO uint32_t TTTMK; /*!< TT Time Mark register, Address offset: 0x11C */
388 __IO uint32_t TTIR; /*!< TT Interrupt register, Address offset: 0x120 */
389 __IO uint32_t TTIE; /*!< TT Interrupt Enable register, Address offset: 0x124 */
390 __IO uint32_t TTILS; /*!< TT Interrupt Line Select register, Address offset: 0x128 */
391 __IO uint32_t TTOST; /*!< TT Operation Status register, Address offset: 0x12C */
392 __IO uint32_t TURNA; /*!< TT TUR Numerator Actual register, Address offset: 0x130 */
393 __IO uint32_t TTLGT; /*!< TT Local and Global Time register, Address offset: 0x134 */
394 __IO uint32_t TTCTC; /*!< TT Cycle Time and Count register, Address offset: 0x138 */
395 __IO uint32_t TTCPT; /*!< TT Capture Time register, Address offset: 0x13C */
396 __IO uint32_t TTCSM; /*!< TT Cycle Sync Mark register, Address offset: 0x140 */
397 __IO uint32_t RESERVED1[111]; /*!< Reserved, 0x144 - 0x2FC */
398 __IO uint32_t TTTS; /*!< TT Trigger Select register, Address offset: 0x300 */
399} TTCAN_TypeDef;
400
401/**
402 * @brief FD Controller Area Network
403 */
404
405typedef struct
406{
407 __IO uint32_t CREL; /*!< Clock Calibration Unit Core Release register, Address offset: 0x00 */
408 __IO uint32_t CCFG; /*!< Calibration Configuration register, Address offset: 0x04 */
409 __IO uint32_t CSTAT; /*!< Calibration Status register, Address offset: 0x08 */
410 __IO uint32_t CWD; /*!< Calibration Watchdog register, Address offset: 0x0C */
411 __IO uint32_t IR; /*!< CCU Interrupt register, Address offset: 0x10 */
412 __IO uint32_t IE; /*!< CCU Interrupt Enable register, Address offset: 0x14 */
413} FDCAN_ClockCalibrationUnit_TypeDef;
414
415
416/**
417 * @brief Consumer Electronics Control
418 */
419
420typedef struct
421{
422 __IO uint32_t CR; /*!< CEC control register, Address offset:0x00 */
423 __IO uint32_t CFGR; /*!< CEC configuration register, Address offset:0x04 */
424 __IO uint32_t TXDR; /*!< CEC Tx data register , Address offset:0x08 */
425 __IO uint32_t RXDR; /*!< CEC Rx Data Register, Address offset:0x0C */
426 __IO uint32_t ISR; /*!< CEC Interrupt and Status Register, Address offset:0x10 */
427 __IO uint32_t IER; /*!< CEC interrupt enable register, Address offset:0x14 */
428}CEC_TypeDef;
429
430/**
431 * @brief CRC calculation unit
432 */
433
434typedef struct
435{
436 __IO uint32_t DR; /*!< CRC Data register, Address offset: 0x00 */
437 __IO uint32_t IDR; /*!< CRC Independent data register, Address offset: 0x04 */
438 __IO uint32_t CR; /*!< CRC Control register, Address offset: 0x08 */
439 uint32_t RESERVED2; /*!< Reserved, 0x0C */
440 __IO uint32_t INIT; /*!< Initial CRC value register, Address offset: 0x10 */
441 __IO uint32_t POL; /*!< CRC polynomial register, Address offset: 0x14 */
442} CRC_TypeDef;
443
444
445/**
446 * @brief Clock Recovery System
447 */
448typedef struct
449{
450__IO uint32_t CR; /*!< CRS ccontrol register, Address offset: 0x00 */
451__IO uint32_t CFGR; /*!< CRS configuration register, Address offset: 0x04 */
452__IO uint32_t ISR; /*!< CRS interrupt and status register, Address offset: 0x08 */
453__IO uint32_t ICR; /*!< CRS interrupt flag clear register, Address offset: 0x0C */
454} CRS_TypeDef;
455
456
457/**
458 * @brief Digital to Analog Converter
459 */
460
461typedef struct
462{
463 __IO uint32_t CR; /*!< DAC control register, Address offset: 0x00 */
464 __IO uint32_t SWTRIGR; /*!< DAC software trigger register, Address offset: 0x04 */
465 __IO uint32_t DHR12R1; /*!< DAC channel1 12-bit right-aligned data holding register, Address offset: 0x08 */
466 __IO uint32_t DHR12L1; /*!< DAC channel1 12-bit left aligned data holding register, Address offset: 0x0C */
467 __IO uint32_t DHR8R1; /*!< DAC channel1 8-bit right aligned data holding register, Address offset: 0x10 */
468 __IO uint32_t DHR12R2; /*!< DAC channel2 12-bit right aligned data holding register, Address offset: 0x14 */
469 __IO uint32_t DHR12L2; /*!< DAC channel2 12-bit left aligned data holding register, Address offset: 0x18 */
470 __IO uint32_t DHR8R2; /*!< DAC channel2 8-bit right-aligned data holding register, Address offset: 0x1C */
471 __IO uint32_t DHR12RD; /*!< Dual DAC 12-bit right-aligned data holding register, Address offset: 0x20 */
472 __IO uint32_t DHR12LD; /*!< DUAL DAC 12-bit left aligned data holding register, Address offset: 0x24 */
473 __IO uint32_t DHR8RD; /*!< DUAL DAC 8-bit right aligned data holding register, Address offset: 0x28 */
474 __IO uint32_t DOR1; /*!< DAC channel1 data output register, Address offset: 0x2C */
475 __IO uint32_t DOR2; /*!< DAC channel2 data output register, Address offset: 0x30 */
476 __IO uint32_t SR; /*!< DAC status register, Address offset: 0x34 */
477 __IO uint32_t CCR; /*!< DAC calibration control register, Address offset: 0x38 */
478 __IO uint32_t MCR; /*!< DAC mode control register, Address offset: 0x3C */
479 __IO uint32_t SHSR1; /*!< DAC Sample and Hold sample time register 1, Address offset: 0x40 */
480 __IO uint32_t SHSR2; /*!< DAC Sample and Hold sample time register 2, Address offset: 0x44 */
481 __IO uint32_t SHHR; /*!< DAC Sample and Hold hold time register, Address offset: 0x48 */
482 __IO uint32_t SHRR; /*!< DAC Sample and Hold refresh time register, Address offset: 0x4C */
483} DAC_TypeDef;
484
485/**
486 * @brief DFSDM module registers
487 */
488typedef struct
489{
490 __IO uint32_t FLTCR1; /*!< DFSDM control register1, Address offset: 0x100 */
491 __IO uint32_t FLTCR2; /*!< DFSDM control register2, Address offset: 0x104 */
492 __IO uint32_t FLTISR; /*!< DFSDM interrupt and status register, Address offset: 0x108 */
493 __IO uint32_t FLTICR; /*!< DFSDM interrupt flag clear register, Address offset: 0x10C */
494 __IO uint32_t FLTJCHGR; /*!< DFSDM injected channel group selection register, Address offset: 0x110 */
495 __IO uint32_t FLTFCR; /*!< DFSDM filter control register, Address offset: 0x114 */
496 __IO uint32_t FLTJDATAR; /*!< DFSDM data register for injected group, Address offset: 0x118 */
497 __IO uint32_t FLTRDATAR; /*!< DFSDM data register for regular group, Address offset: 0x11C */
498 __IO uint32_t FLTAWHTR; /*!< DFSDM analog watchdog high threshold register, Address offset: 0x120 */
499 __IO uint32_t FLTAWLTR; /*!< DFSDM analog watchdog low threshold register, Address offset: 0x124 */
500 __IO uint32_t FLTAWSR; /*!< DFSDM analog watchdog status register Address offset: 0x128 */
501 __IO uint32_t FLTAWCFR; /*!< DFSDM analog watchdog clear flag register Address offset: 0x12C */
502 __IO uint32_t FLTEXMAX; /*!< DFSDM extreme detector maximum register, Address offset: 0x130 */
503 __IO uint32_t FLTEXMIN; /*!< DFSDM extreme detector minimum register Address offset: 0x134 */
504 __IO uint32_t FLTCNVTIMR; /*!< DFSDM conversion timer, Address offset: 0x138 */
505} DFSDM_Filter_TypeDef;
506
507/**
508 * @brief DFSDM channel configuration registers
509 */
510typedef struct
511{
512 __IO uint32_t CHCFGR1; /*!< DFSDM channel configuration register1, Address offset: 0x00 */
513 __IO uint32_t CHCFGR2; /*!< DFSDM channel configuration register2, Address offset: 0x04 */
514 __IO uint32_t CHAWSCDR; /*!< DFSDM channel analog watchdog and
515 short circuit detector register, Address offset: 0x08 */
516 __IO uint32_t CHWDATAR; /*!< DFSDM channel watchdog filter data register, Address offset: 0x0C */
517 __IO uint32_t CHDATINR; /*!< DFSDM channel data input register, Address offset: 0x10 */
518} DFSDM_Channel_TypeDef;
519
520/**
521 * @brief Debug MCU
522 */
523typedef struct
524{
525 __IO uint32_t IDCODE; /*!< MCU device ID code, Address offset: 0x00 */
526 __IO uint32_t CR; /*!< Debug MCU configuration register, Address offset: 0x04 */
527 uint32_t RESERVED4[11]; /*!< Reserved, Address offset: 0x08 */
528 __IO uint32_t APB3FZ1; /*!< Debug MCU APB3FZ1 freeze register, Address offset: 0x34 */
529 uint32_t RESERVED5; /*!< Reserved, Address offset: 0x38 */
530 __IO uint32_t APB1LFZ1; /*!< Debug MCU APB1LFZ1 freeze register, Address offset: 0x3C */
531 uint32_t RESERVED6; /*!< Reserved, Address offset: 0x40 */
532 __IO uint32_t APB1HFZ1; /*!< Debug MCU APB1LFZ1 freeze register, Address offset: 0x44 */
533 uint32_t RESERVED7; /*!< Reserved, Address offset: 0x48 */
534 __IO uint32_t APB2FZ1; /*!< Debug MCU APB2FZ1 freeze register, Address offset: 0x4C */
535 uint32_t RESERVED8; /*!< Reserved, Address offset: 0x50 */
536 __IO uint32_t APB4FZ1; /*!< Debug MCU APB4FZ1 freeze register, Address offset: 0x54 */
537}DBGMCU_TypeDef;
538/**
539 * @brief DCMI
540 */
541
542typedef struct
543{
544 __IO uint32_t CR; /*!< DCMI control register 1, Address offset: 0x00 */
545 __IO uint32_t SR; /*!< DCMI status register, Address offset: 0x04 */
546 __IO uint32_t RISR; /*!< DCMI raw interrupt status register, Address offset: 0x08 */
547 __IO uint32_t IER; /*!< DCMI interrupt enable register, Address offset: 0x0C */
548 __IO uint32_t MISR; /*!< DCMI masked interrupt status register, Address offset: 0x10 */
549 __IO uint32_t ICR; /*!< DCMI interrupt clear register, Address offset: 0x14 */
550 __IO uint32_t ESCR; /*!< DCMI embedded synchronization code register, Address offset: 0x18 */
551 __IO uint32_t ESUR; /*!< DCMI embedded synchronization unmask register, Address offset: 0x1C */
552 __IO uint32_t CWSTRTR; /*!< DCMI crop window start, Address offset: 0x20 */
553 __IO uint32_t CWSIZER; /*!< DCMI crop window size, Address offset: 0x24 */
554 __IO uint32_t DR; /*!< DCMI data register, Address offset: 0x28 */
555} DCMI_TypeDef;
556
557/**
558 * @brief DMA Controller
559 */
560
561typedef struct
562{
563 __IO uint32_t CR; /*!< DMA stream x configuration register */
564 __IO uint32_t NDTR; /*!< DMA stream x number of data register */
565 __IO uint32_t PAR; /*!< DMA stream x peripheral address register */
566 __IO uint32_t M0AR; /*!< DMA stream x memory 0 address register */
567 __IO uint32_t M1AR; /*!< DMA stream x memory 1 address register */
568 __IO uint32_t FCR; /*!< DMA stream x FIFO control register */
569} DMA_Stream_TypeDef;
570
571typedef struct
572{
573 __IO uint32_t LISR; /*!< DMA low interrupt status register, Address offset: 0x00 */
574 __IO uint32_t HISR; /*!< DMA high interrupt status register, Address offset: 0x04 */
575 __IO uint32_t LIFCR; /*!< DMA low interrupt flag clear register, Address offset: 0x08 */
576 __IO uint32_t HIFCR; /*!< DMA high interrupt flag clear register, Address offset: 0x0C */
577} DMA_TypeDef;
578
579typedef struct
580{
581 __IO uint32_t CCR; /*!< DMA channel x configuration register */
582 __IO uint32_t CNDTR; /*!< DMA channel x number of data register */
583 __IO uint32_t CPAR; /*!< DMA channel x peripheral address register */
584 __IO uint32_t CM0AR; /*!< DMA channel x memory 0 address register */
585 __IO uint32_t CM1AR; /*!< DMA channel x memory 1 address register */
586} BDMA_Channel_TypeDef;
587
588typedef struct
589{
590 __IO uint32_t ISR; /*!< DMA interrupt status register, Address offset: 0x00 */
591 __IO uint32_t IFCR; /*!< DMA interrupt flag clear register, Address offset: 0x04 */
592} BDMA_TypeDef;
593
594typedef struct
595{
596 __IO uint32_t CCR; /*!< DMA Multiplexer Channel x Control Register */
597}DMAMUX_Channel_TypeDef;
598
599typedef struct
600{
601 __IO uint32_t CSR; /*!< DMA Channel Status Register */
602 __IO uint32_t CFR; /*!< DMA Channel Clear Flag Register */
603}DMAMUX_ChannelStatus_TypeDef;
604
605typedef struct
606{
607 __IO uint32_t RGCR; /*!< DMA Request Generator x Control Register */
608}DMAMUX_RequestGen_TypeDef;
609
610typedef struct
611{
612 __IO uint32_t RGSR; /*!< DMA Request Generator Status Register */
613 __IO uint32_t RGCFR; /*!< DMA Request Generator Clear Flag Register */
614}DMAMUX_RequestGenStatus_TypeDef;
615
616/**
617 * @brief MDMA Controller
618 */
619typedef struct
620{
621 __IO uint32_t GISR0; /*!< MDMA Global Interrupt/Status Register 0, Address offset: 0x00 */
622}MDMA_TypeDef;
623
624typedef struct
625{
626 __IO uint32_t CISR; /*!< MDMA channel x interrupt/status register, Address offset: 0x40 */
627 __IO uint32_t CIFCR; /*!< MDMA channel x interrupt flag clear register, Address offset: 0x44 */
628 __IO uint32_t CESR; /*!< MDMA Channel x error status register, Address offset: 0x48 */
629 __IO uint32_t CCR; /*!< MDMA channel x control register, Address offset: 0x4C */
630 __IO uint32_t CTCR; /*!< MDMA channel x Transfer Configuration register, Address offset: 0x50 */
631 __IO uint32_t CBNDTR; /*!< MDMA Channel x block number of data register, Address offset: 0x54 */
632 __IO uint32_t CSAR; /*!< MDMA channel x source address register, Address offset: 0x58 */
633 __IO uint32_t CDAR; /*!< MDMA channel x destination address register, Address offset: 0x5C */
634 __IO uint32_t CBRUR; /*!< MDMA channel x Block Repeat address Update register, Address offset: 0x60 */
635 __IO uint32_t CLAR; /*!< MDMA channel x Link Address register, Address offset: 0x64 */
636 __IO uint32_t CTBR; /*!< MDMA channel x Trigger and Bus selection Register, Address offset: 0x68 */
637 uint32_t RESERVED0; /*!< Reserved, 0x68 */
638 __IO uint32_t CMAR; /*!< MDMA channel x Mask address register, Address offset: 0x70 */
639 __IO uint32_t CMDR; /*!< MDMA channel x Mask Data register, Address offset: 0x74 */
640}MDMA_Channel_TypeDef;
641
642/**
643 * @brief DMA2D Controller
644 */
645
646typedef struct
647{
648 __IO uint32_t CR; /*!< DMA2D Control Register, Address offset: 0x00 */
649 __IO uint32_t ISR; /*!< DMA2D Interrupt Status Register, Address offset: 0x04 */
650 __IO uint32_t IFCR; /*!< DMA2D Interrupt Flag Clear Register, Address offset: 0x08 */
651 __IO uint32_t FGMAR; /*!< DMA2D Foreground Memory Address Register, Address offset: 0x0C */
652 __IO uint32_t FGOR; /*!< DMA2D Foreground Offset Register, Address offset: 0x10 */
653 __IO uint32_t BGMAR; /*!< DMA2D Background Memory Address Register, Address offset: 0x14 */
654 __IO uint32_t BGOR; /*!< DMA2D Background Offset Register, Address offset: 0x18 */
655 __IO uint32_t FGPFCCR; /*!< DMA2D Foreground PFC Control Register, Address offset: 0x1C */
656 __IO uint32_t FGCOLR; /*!< DMA2D Foreground Color Register, Address offset: 0x20 */
657 __IO uint32_t BGPFCCR; /*!< DMA2D Background PFC Control Register, Address offset: 0x24 */
658 __IO uint32_t BGCOLR; /*!< DMA2D Background Color Register, Address offset: 0x28 */
659 __IO uint32_t FGCMAR; /*!< DMA2D Foreground CLUT Memory Address Register, Address offset: 0x2C */
660 __IO uint32_t BGCMAR; /*!< DMA2D Background CLUT Memory Address Register, Address offset: 0x30 */
661 __IO uint32_t OPFCCR; /*!< DMA2D Output PFC Control Register, Address offset: 0x34 */
662 __IO uint32_t OCOLR; /*!< DMA2D Output Color Register, Address offset: 0x38 */
663 __IO uint32_t OMAR; /*!< DMA2D Output Memory Address Register, Address offset: 0x3C */
664 __IO uint32_t OOR; /*!< DMA2D Output Offset Register, Address offset: 0x40 */
665 __IO uint32_t NLR; /*!< DMA2D Number of Line Register, Address offset: 0x44 */
666 __IO uint32_t LWR; /*!< DMA2D Line Watermark Register, Address offset: 0x48 */
667 __IO uint32_t AMTCR; /*!< DMA2D AHB Master Timer Configuration Register, Address offset: 0x4C */
668 uint32_t RESERVED[236]; /*!< Reserved, 0x50-0x3FF */
669 __IO uint32_t FGCLUT[256]; /*!< DMA2D Foreground CLUT, Address offset:400-7FF */
670 __IO uint32_t BGCLUT[256]; /*!< DMA2D Background CLUT, Address offset:800-BFF */
671} DMA2D_TypeDef;
672
673
674/**
675 * @brief Ethernet MAC
676 */
677typedef struct
678{
679 __IO uint32_t MACCR;
680 __IO uint32_t MACECR;
681 __IO uint32_t MACPFR;
682 __IO uint32_t MACWTR;
683 __IO uint32_t MACHT0R;
684 __IO uint32_t MACHT1R;
685 uint32_t RESERVED1[14];
686 __IO uint32_t MACVTR;
687 uint32_t RESERVED2;
688 __IO uint32_t MACVHTR;
689 uint32_t RESERVED3;
690 __IO uint32_t MACVIR;
691 __IO uint32_t MACIVIR;
692 uint32_t RESERVED4[2];
693 __IO uint32_t MACTFCR;
694 uint32_t RESERVED5[7];
695 __IO uint32_t MACRFCR;
696 uint32_t RESERVED6[7];
697 __IO uint32_t MACISR;
698 __IO uint32_t MACIER;
699 __IO uint32_t MACRXTXSR;
700 uint32_t RESERVED7;
701 __IO uint32_t MACPCSR;
702 __IO uint32_t MACRWKPFR;
703 uint32_t RESERVED8[2];
704 __IO uint32_t MACLCSR;
705 __IO uint32_t MACLTCR;
706 __IO uint32_t MACLETR;
707 __IO uint32_t MAC1USTCR;
708 uint32_t RESERVED9[12];
709 __IO uint32_t MACVR;
710 __IO uint32_t MACDR;
711 uint32_t RESERVED10;
712 __IO uint32_t MACHWF0R;
713 __IO uint32_t MACHWF1R;
714 __IO uint32_t MACHWF2R;
715 uint32_t RESERVED11[54];
716 __IO uint32_t MACMDIOAR;
717 __IO uint32_t MACMDIODR;
718 uint32_t RESERVED12[2];
719 __IO uint32_t MACARPAR;
720 uint32_t RESERVED13[59];
721 __IO uint32_t MACA0HR;
722 __IO uint32_t MACA0LR;
723 __IO uint32_t MACA1HR;
724 __IO uint32_t MACA1LR;
725 __IO uint32_t MACA2HR;
726 __IO uint32_t MACA2LR;
727 __IO uint32_t MACA3HR;
728 __IO uint32_t MACA3LR;
729 uint32_t RESERVED14[248];
730 __IO uint32_t MMCCR;
731 __IO uint32_t MMCRIR;
732 __IO uint32_t MMCTIR;
733 __IO uint32_t MMCRIMR;
734 __IO uint32_t MMCTIMR;
735 uint32_t RESERVED15[14];
736 __IO uint32_t MMCTSCGPR;
737 __IO uint32_t MMCTMCGPR;
738 uint32_t RESERVED16[5];
739 __IO uint32_t MMCTPCGR;
740 uint32_t RESERVED17[10];
741 __IO uint32_t MMCRCRCEPR;
742 __IO uint32_t MMCRAEPR;
743 uint32_t RESERVED18[10];
744 __IO uint32_t MMCRUPGR;
745 uint32_t RESERVED19[9];
746 __IO uint32_t MMCTLPIMSTR;
747 __IO uint32_t MMCTLPITCR;
748 __IO uint32_t MMCRLPIMSTR;
749 __IO uint32_t MMCRLPITCR;
750 uint32_t RESERVED20[65];
751 __IO uint32_t MACL3L4C0R;
752 __IO uint32_t MACL4A0R;
753 uint32_t RESERVED21[2];
754 __IO uint32_t MACL3A0R0R;
755 __IO uint32_t MACL3A1R0R;
756 __IO uint32_t MACL3A2R0R;
757 __IO uint32_t MACL3A3R0R;
758 uint32_t RESERVED22[4];
759 __IO uint32_t MACL3L4C1R;
760 __IO uint32_t MACL4A1R;
761 uint32_t RESERVED23[2];
762 __IO uint32_t MACL3A0R1R;
763 __IO uint32_t MACL3A1R1R;
764 __IO uint32_t MACL3A2R1R;
765 __IO uint32_t MACL3A3R1R;
766 uint32_t RESERVED24[108];
767 __IO uint32_t MACTSCR;
768 __IO uint32_t MACSSIR;
769 __IO uint32_t MACSTSR;
770 __IO uint32_t MACSTNR;
771 __IO uint32_t MACSTSUR;
772 __IO uint32_t MACSTNUR;
773 __IO uint32_t MACTSAR;
774 uint32_t RESERVED25;
775 __IO uint32_t MACTSSR;
776 uint32_t RESERVED26[3];
777 __IO uint32_t MACTTSSNR;
778 __IO uint32_t MACTTSSSR;
779 uint32_t RESERVED27[2];
780 __IO uint32_t MACACR;
781 uint32_t RESERVED28;
782 __IO uint32_t MACATSNR;
783 __IO uint32_t MACATSSR;
784 __IO uint32_t MACTSIACR;
785 __IO uint32_t MACTSEACR;
786 __IO uint32_t MACTSICNR;
787 __IO uint32_t MACTSECNR;
788 uint32_t RESERVED29[4];
789 __IO uint32_t MACPPSCR;
790 uint32_t RESERVED30[3];
791 __IO uint32_t MACPPSTTSR;
792 __IO uint32_t MACPPSTTNR;
793 __IO uint32_t MACPPSIR;
794 __IO uint32_t MACPPSWR;
795 uint32_t RESERVED31[12];
796 __IO uint32_t MACPOCR;
797 __IO uint32_t MACSPI0R;
798 __IO uint32_t MACSPI1R;
799 __IO uint32_t MACSPI2R;
800 __IO uint32_t MACLMIR;
801 uint32_t RESERVED32[11];
802 __IO uint32_t MTLOMR;
803 uint32_t RESERVED33[7];
804 __IO uint32_t MTLISR;
805 uint32_t RESERVED34[55];
806 __IO uint32_t MTLTQOMR;
807 __IO uint32_t MTLTQUR;
808 __IO uint32_t MTLTQDR;
809 uint32_t RESERVED35[8];
810 __IO uint32_t MTLQICSR;
811 __IO uint32_t MTLRQOMR;
812 __IO uint32_t MTLRQMPOCR;
813 __IO uint32_t MTLRQDR;
814 uint32_t RESERVED36[177];
815 __IO uint32_t DMAMR;
816 __IO uint32_t DMASBMR;
817 __IO uint32_t DMAISR;
818 __IO uint32_t DMADSR;
819 uint32_t RESERVED37[60];
820 __IO uint32_t DMACCR;
821 __IO uint32_t DMACTCR;
822 __IO uint32_t DMACRCR;
823 uint32_t RESERVED38[2];
824 __IO uint32_t DMACTDLAR;
825 uint32_t RESERVED39;
826 __IO uint32_t DMACRDLAR;
827 __IO uint32_t DMACTDTPR;
828 uint32_t RESERVED40;
829 __IO uint32_t DMACRDTPR;
830 __IO uint32_t DMACTDRLR;
831 __IO uint32_t DMACRDRLR;
832 __IO uint32_t DMACIER;
833 __IO uint32_t DMACRIWTR;
834__IO uint32_t DMACSFCSR;
835 uint32_t RESERVED41;
836 __IO uint32_t DMACCATDR;
837 uint32_t RESERVED42;
838 __IO uint32_t DMACCARDR;
839 uint32_t RESERVED43;
840 __IO uint32_t DMACCATBR;
841 uint32_t RESERVED44;
842 __IO uint32_t DMACCARBR;
843 __IO uint32_t DMACSR;
844uint32_t RESERVED45[2];
845__IO uint32_t DMACMFCR;
846}ETH_TypeDef;
847/**
848 * @brief External Interrupt/Event Controller
849 */
850
851typedef struct
852{
853__IO uint32_t RTSR1; /*!< EXTI Rising trigger selection register, Address offset: 0x00 */
854__IO uint32_t FTSR1; /*!< EXTI Falling trigger selection register, Address offset: 0x04 */
855__IO uint32_t SWIER1; /*!< EXTI Software interrupt event register, Address offset: 0x08 */
856__IO uint32_t D3PMR1; /*!< EXTI D3 Pending mask register, (same register as to SRDPMR1) Address offset: 0x0C */
857__IO uint32_t D3PCR1L; /*!< EXTI D3 Pending clear selection register low, (same register as to SRDPCR1L) Address offset: 0x10 */
858__IO uint32_t D3PCR1H; /*!< EXTI D3 Pending clear selection register High, (same register as to SRDPCR1H) Address offset: 0x14 */
859uint32_t RESERVED1[2]; /*!< Reserved, 0x18 to 0x1C */
860__IO uint32_t RTSR2; /*!< EXTI Rising trigger selection register, Address offset: 0x20 */
861__IO uint32_t FTSR2; /*!< EXTI Falling trigger selection register, Address offset: 0x24 */
862__IO uint32_t SWIER2; /*!< EXTI Software interrupt event register, Address offset: 0x28 */
863__IO uint32_t D3PMR2; /*!< EXTI D3 Pending mask register, (same register as to SRDPMR2) Address offset: 0x2C */
864__IO uint32_t D3PCR2L; /*!< EXTI D3 Pending clear selection register low, (same register as to SRDPCR2L) Address offset: 0x30 */
865__IO uint32_t D3PCR2H; /*!< EXTI D3 Pending clear selection register High, (same register as to SRDPCR2H) Address offset: 0x34 */
866uint32_t RESERVED2[2]; /*!< Reserved, 0x38 to 0x3C */
867__IO uint32_t RTSR3; /*!< EXTI Rising trigger selection register, Address offset: 0x40 */
868__IO uint32_t FTSR3; /*!< EXTI Falling trigger selection register, Address offset: 0x44 */
869__IO uint32_t SWIER3; /*!< EXTI Software interrupt event register, Address offset: 0x48 */
870__IO uint32_t D3PMR3; /*!< EXTI D3 Pending mask register, (same register as to SRDPMR3) Address offset: 0x4C */
871__IO uint32_t D3PCR3L; /*!< EXTI D3 Pending clear selection register low, (same register as to SRDPCR3L) Address offset: 0x50 */
872__IO uint32_t D3PCR3H; /*!< EXTI D3 Pending clear selection register High, (same register as to SRDPCR3H) Address offset: 0x54 */
873uint32_t RESERVED3[10]; /*!< Reserved, 0x58 to 0x7C */
874__IO uint32_t IMR1; /*!< EXTI Interrupt mask register, Address offset: 0x80 */
875__IO uint32_t EMR1; /*!< EXTI Event mask register, Address offset: 0x84 */
876__IO uint32_t PR1; /*!< EXTI Pending register, Address offset: 0x88 */
877uint32_t RESERVED4; /*!< Reserved, 0x8C */
878__IO uint32_t IMR2; /*!< EXTI Interrupt mask register, Address offset: 0x90 */
879__IO uint32_t EMR2; /*!< EXTI Event mask register, Address offset: 0x94 */
880__IO uint32_t PR2; /*!< EXTI Pending register, Address offset: 0x98 */
881uint32_t RESERVED5; /*!< Reserved, 0x9C */
882__IO uint32_t IMR3; /*!< EXTI Interrupt mask register, Address offset: 0xA0 */
883__IO uint32_t EMR3; /*!< EXTI Event mask register, Address offset: 0xA4 */
884__IO uint32_t PR3; /*!< EXTI Pending register, Address offset: 0xA8 */
885}EXTI_TypeDef;
886
887typedef struct
888{
889__IO uint32_t IMR1; /*!< EXTI Interrupt mask register, Address offset: 0x00 */
890__IO uint32_t EMR1; /*!< EXTI Event mask register, Address offset: 0x04 */
891__IO uint32_t PR1; /*!< EXTI Pending register, Address offset: 0x08 */
892uint32_t RESERVED1; /*!< Reserved, 0x0C */
893__IO uint32_t IMR2; /*!< EXTI Interrupt mask register, Address offset: 0x10 */
894__IO uint32_t EMR2; /*!< EXTI Event mask register, Address offset: 0x14 */
895__IO uint32_t PR2; /*!< EXTI Pending register, Address offset: 0x18 */
896uint32_t RESERVED2; /*!< Reserved, 0x1C */
897__IO uint32_t IMR3; /*!< EXTI Interrupt mask register, Address offset: 0x20 */
898__IO uint32_t EMR3; /*!< EXTI Event mask register, Address offset: 0x24 */
899__IO uint32_t PR3; /*!< EXTI Pending register, Address offset: 0x28 */
900}EXTI_Core_TypeDef;
901
902
903/**
904 * @brief FLASH Registers
905 */
906
907typedef struct
908{
909 __IO uint32_t ACR; /*!< FLASH access control register, Address offset: 0x00 */
910 __IO uint32_t KEYR1; /*!< Flash Key Register for bank1, Address offset: 0x04 */
911 __IO uint32_t OPTKEYR; /*!< Flash Option Key Register, Address offset: 0x08 */
912 __IO uint32_t CR1; /*!< Flash Control Register for bank1, Address offset: 0x0C */
913 __IO uint32_t SR1; /*!< Flash Status Register for bank1, Address offset: 0x10 */
914 __IO uint32_t CCR1; /*!< Flash Control Register for bank1, Address offset: 0x14 */
915 __IO uint32_t OPTCR; /*!< Flash Option Control Register, Address offset: 0x18 */
916 __IO uint32_t OPTSR_CUR; /*!< Flash Option Status Current Register, Address offset: 0x1C */
917 __IO uint32_t OPTSR_PRG; /*!< Flash Option Status to Program Register, Address offset: 0x20 */
918 __IO uint32_t OPTCCR; /*!< Flash Option Clear Control Register, Address offset: 0x24 */
919 __IO uint32_t PRAR_CUR1; /*!< Flash Current Protection Address Register for bank1, Address offset: 0x28 */
920 __IO uint32_t PRAR_PRG1; /*!< Flash Protection Address to Program Register for bank1, Address offset: 0x2C */
921 __IO uint32_t SCAR_CUR1; /*!< Flash Current Secure Address Register for bank1, Address offset: 0x30 */
922 __IO uint32_t SCAR_PRG1; /*!< Flash Secure Address to Program Register for bank1, Address offset: 0x34 */
923 __IO uint32_t WPSN_CUR1; /*!< Flash Current Write Protection Register on bank1, Address offset: 0x38 */
924 __IO uint32_t WPSN_PRG1; /*!< Flash Write Protection to Program Register on bank1, Address offset: 0x3C */
925 __IO uint32_t BOOT_CUR; /*!< Flash Current Boot Address for Pelican Core Register, Address offset: 0x40 */
926 __IO uint32_t BOOT_PRG; /*!< Flash Boot Address to Program for Pelican Core Register, Address offset: 0x44 */
927 uint32_t RESERVED0[2]; /*!< Reserved, 0x48 to 0x4C */
928 __IO uint32_t CRCCR1; /*!< Flash CRC Control register For Bank1 Register , Address offset: 0x50 */
929 __IO uint32_t CRCSADD1; /*!< Flash CRC Start Address Register for Bank1 , Address offset: 0x54 */
930 __IO uint32_t CRCEADD1; /*!< Flash CRC End Address Register for Bank1 , Address offset: 0x58 */
931 __IO uint32_t CRCDATA; /*!< Flash CRC Data Register for Bank1 , Address offset: 0x5C */
932 __IO uint32_t ECC_FA1; /*!< Flash ECC Fail Address For Bank1 Register , Address offset: 0x60 */
933 uint32_t RESERVED1[40]; /*!< Reserved, 0x64 to 0x100 */
934 __IO uint32_t KEYR2; /*!< Flash Key Register for bank2, Address offset: 0x104 */
935 uint32_t RESERVED2; /*!< Reserved, 0x108 */
936 __IO uint32_t CR2; /*!< Flash Control Register for bank2, Address offset: 0x10C */
937 __IO uint32_t SR2; /*!< Flash Status Register for bank2, Address offset: 0x110 */
938 __IO uint32_t CCR2; /*!< Flash Status Register for bank2, Address offset: 0x114 */
939 uint32_t RESERVED3[4]; /*!< Reserved, 0x118 to 0x124 */
940 __IO uint32_t PRAR_CUR2; /*!< Flash Current Protection Address Register for bank2, Address offset: 0x128 */
941 __IO uint32_t PRAR_PRG2; /*!< Flash Protection Address to Program Register for bank2, Address offset: 0x12C */
942 __IO uint32_t SCAR_CUR2; /*!< Flash Current Secure Address Register for bank2, Address offset: 0x130 */
943 __IO uint32_t SCAR_PRG2; /*!< Flash Secure Address Register for bank2, Address offset: 0x134 */
944 __IO uint32_t WPSN_CUR2; /*!< Flash Current Write Protection Register on bank2, Address offset: 0x138 */
945 __IO uint32_t WPSN_PRG2; /*!< Flash Write Protection to Program Register on bank2, Address offset: 0x13C */
946 uint32_t RESERVED4[4]; /*!< Reserved, 0x140 to 0x14C */
947 __IO uint32_t CRCCR2; /*!< Flash CRC Control register For Bank2 Register , Address offset: 0x150 */
948 __IO uint32_t CRCSADD2; /*!< Flash CRC Start Address Register for Bank2 , Address offset: 0x154 */
949 __IO uint32_t CRCEADD2; /*!< Flash CRC End Address Register for Bank2 , Address offset: 0x158 */
950 __IO uint32_t CRCDATA2; /*!< Flash CRC Data Register for Bank2 , Address offset: 0x15C */
951 __IO uint32_t ECC_FA2; /*!< Flash ECC Fail Address For Bank2 Register , Address offset: 0x160 */
952} FLASH_TypeDef;
953
954/**
955 * @brief Flexible Memory Controller
956 */
957
958typedef struct
959{
960 __IO uint32_t BTCR[8]; /*!< NOR/PSRAM chip-select control register(BCR) and chip-select timing register(BTR), Address offset: 0x00-1C */
961} FMC_Bank1_TypeDef;
962
963/**
964 * @brief Flexible Memory Controller Bank1E
965 */
966
967typedef struct
968{
969 __IO uint32_t BWTR[7]; /*!< NOR/PSRAM write timing registers, Address offset: 0x104-0x11C */
970} FMC_Bank1E_TypeDef;
971
972/**
973 * @brief Flexible Memory Controller Bank2
974 */
975
976typedef struct
977{
978 __IO uint32_t PCR2; /*!< NAND Flash control register 2, Address offset: 0x60 */
979 __IO uint32_t SR2; /*!< NAND Flash FIFO status and interrupt register 2, Address offset: 0x64 */
980 __IO uint32_t PMEM2; /*!< NAND Flash Common memory space timing register 2, Address offset: 0x68 */
981 __IO uint32_t PATT2; /*!< NAND Flash Attribute memory space timing register 2, Address offset: 0x6C */
982 uint32_t RESERVED0; /*!< Reserved, 0x70 */
983 __IO uint32_t ECCR2; /*!< NAND Flash ECC result registers 2, Address offset: 0x74 */
984} FMC_Bank2_TypeDef;
985
986/**
987 * @brief Flexible Memory Controller Bank3
988 */
989
990typedef struct
991{
992 __IO uint32_t PCR; /*!< NAND Flash control register 3, Address offset: 0x80 */
993 __IO uint32_t SR; /*!< NAND Flash FIFO status and interrupt register 3, Address offset: 0x84 */
994 __IO uint32_t PMEM; /*!< NAND Flash Common memory space timing register 3, Address offset: 0x88 */
995 __IO uint32_t PATT; /*!< NAND Flash Attribute memory space timing register 3, Address offset: 0x8C */
996 uint32_t RESERVED; /*!< Reserved, 0x90 */
997 __IO uint32_t ECCR; /*!< NAND Flash ECC result registers 3, Address offset: 0x94 */
998} FMC_Bank3_TypeDef;
999
1000/**
1001 * @brief Flexible Memory Controller Bank5 and 6
1002 */
1003
1004
1005typedef struct
1006{
1007 __IO uint32_t SDCR[2]; /*!< SDRAM Control registers , Address offset: 0x140-0x144 */
1008 __IO uint32_t SDTR[2]; /*!< SDRAM Timing registers , Address offset: 0x148-0x14C */
1009 __IO uint32_t SDCMR; /*!< SDRAM Command Mode register, Address offset: 0x150 */
1010 __IO uint32_t SDRTR; /*!< SDRAM Refresh Timer register, Address offset: 0x154 */
1011 __IO uint32_t SDSR; /*!< SDRAM Status register, Address offset: 0x158 */
1012} FMC_Bank5_6_TypeDef;
1013
1014/**
1015 * @brief General Purpose I/O
1016 */
1017
1018typedef struct
1019{
1020 __IO uint32_t MODER; /*!< GPIO port mode register, Address offset: 0x00 */
1021 __IO uint32_t OTYPER; /*!< GPIO port output type register, Address offset: 0x04 */
1022 __IO uint32_t OSPEEDR; /*!< GPIO port output speed register, Address offset: 0x08 */
1023 __IO uint32_t PUPDR; /*!< GPIO port pull-up/pull-down register, Address offset: 0x0C */
1024 __IO uint32_t IDR; /*!< GPIO port input data register, Address offset: 0x10 */
1025 __IO uint32_t ODR; /*!< GPIO port output data register, Address offset: 0x14 */
1026 __IO uint32_t BSRR; /*!< GPIO port bit set/reset, Address offset: 0x18 */
1027 __IO uint32_t LCKR; /*!< GPIO port configuration lock register, Address offset: 0x1C */
1028 __IO uint32_t AFR[2]; /*!< GPIO alternate function registers, Address offset: 0x20-0x24 */
1029} GPIO_TypeDef;
1030
1031/**
1032 * @brief Operational Amplifier (OPAMP)
1033 */
1034
1035typedef struct
1036{
1037 __IO uint32_t CSR; /*!< OPAMP control/status register, Address offset: 0x00 */
1038 __IO uint32_t OTR; /*!< OPAMP offset trimming register for normal mode, Address offset: 0x04 */
1039 __IO uint32_t HSOTR; /*!< OPAMP offset trimming register for high speed mode, Address offset: 0x08 */
1040} OPAMP_TypeDef;
1041
1042/**
1043 * @brief System configuration controller
1044 */
1045
1046typedef struct
1047{
1048 uint32_t RESERVED1; /*!< Reserved, Address offset: 0x00 */
1049 __IO uint32_t PMCR; /*!< SYSCFG peripheral mode configuration register, Address offset: 0x04 */
1050 __IO uint32_t EXTICR[4]; /*!< SYSCFG external interrupt configuration registers, Address offset: 0x08-0x14 */
1051 __IO uint32_t CFGR; /*!< SYSCFG configuration registers, Address offset: 0x18 */
1052 uint32_t RESERVED2; /*!< Reserved, Address offset: 0x1C */
1053 __IO uint32_t CCCSR; /*!< SYSCFG compensation cell control/status register, Address offset: 0x20 */
1054 __IO uint32_t CCVR; /*!< SYSCFG compensation cell value register, Address offset: 0x24 */
1055 __IO uint32_t CCCR; /*!< SYSCFG compensation cell code register, Address offset: 0x28 */
1056 __IO uint32_t PWRCR; /*!< PWR control register, Address offset: 0x2C */
1057 uint32_t RESERVED3[61]; /*!< Reserved, 0x30-0x120 */
1058 __IO uint32_t PKGR; /*!< SYSCFG package register, Address offset: 0x124 */
1059 uint32_t RESERVED4[118]; /*!< Reserved, 0x128-0x2FC */
1060 __IO uint32_t UR0; /*!< SYSCFG user register 0, Address offset: 0x300 */
1061 __IO uint32_t UR1; /*!< SYSCFG user register 1, Address offset: 0x304 */
1062 __IO uint32_t UR2; /*!< SYSCFG user register 2, Address offset: 0x308 */
1063 __IO uint32_t UR3; /*!< SYSCFG user register 3, Address offset: 0x30C */
1064 __IO uint32_t UR4; /*!< SYSCFG user register 4, Address offset: 0x310 */
1065 __IO uint32_t UR5; /*!< SYSCFG user register 5, Address offset: 0x314 */
1066 __IO uint32_t UR6; /*!< SYSCFG user register 6, Address offset: 0x318 */
1067 __IO uint32_t UR7; /*!< SYSCFG user register 7, Address offset: 0x31C */
1068 __IO uint32_t UR8; /*!< SYSCFG user register 8, Address offset: 0x320 */
1069 __IO uint32_t UR9; /*!< SYSCFG user register 9, Address offset: 0x324 */
1070 __IO uint32_t UR10; /*!< SYSCFG user register 10, Address offset: 0x328 */
1071 __IO uint32_t UR11; /*!< SYSCFG user register 11, Address offset: 0x32C */
1072 __IO uint32_t UR12; /*!< SYSCFG user register 12, Address offset: 0x330 */
1073 __IO uint32_t UR13; /*!< SYSCFG user register 13, Address offset: 0x334 */
1074 __IO uint32_t UR14; /*!< SYSCFG user register 14, Address offset: 0x338 */
1075 __IO uint32_t UR15; /*!< SYSCFG user register 15, Address offset: 0x33C */
1076 __IO uint32_t UR16; /*!< SYSCFG user register 16, Address offset: 0x340 */
1077 __IO uint32_t UR17; /*!< SYSCFG user register 17, Address offset: 0x344 */
1078
1079} SYSCFG_TypeDef;
1080
1081/**
1082 * @brief Inter-integrated Circuit Interface
1083 */
1084
1085typedef struct
1086{
1087 __IO uint32_t CR1; /*!< I2C Control register 1, Address offset: 0x00 */
1088 __IO uint32_t CR2; /*!< I2C Control register 2, Address offset: 0x04 */
1089 __IO uint32_t OAR1; /*!< I2C Own address 1 register, Address offset: 0x08 */
1090 __IO uint32_t OAR2; /*!< I2C Own address 2 register, Address offset: 0x0C */
1091 __IO uint32_t TIMINGR; /*!< I2C Timing register, Address offset: 0x10 */
1092 __IO uint32_t TIMEOUTR; /*!< I2C Timeout register, Address offset: 0x14 */
1093 __IO uint32_t ISR; /*!< I2C Interrupt and status register, Address offset: 0x18 */
1094 __IO uint32_t ICR; /*!< I2C Interrupt clear register, Address offset: 0x1C */
1095 __IO uint32_t PECR; /*!< I2C PEC register, Address offset: 0x20 */
1096 __IO uint32_t RXDR; /*!< I2C Receive data register, Address offset: 0x24 */
1097 __IO uint32_t TXDR; /*!< I2C Transmit data register, Address offset: 0x28 */
1098} I2C_TypeDef;
1099
1100/**
1101 * @brief Independent WATCHDOG
1102 */
1103
1104typedef struct
1105{
1106 __IO uint32_t KR; /*!< IWDG Key register, Address offset: 0x00 */
1107 __IO uint32_t PR; /*!< IWDG Prescaler register, Address offset: 0x04 */
1108 __IO uint32_t RLR; /*!< IWDG Reload register, Address offset: 0x08 */
1109 __IO uint32_t SR; /*!< IWDG Status register, Address offset: 0x0C */
1110 __IO uint32_t WINR; /*!< IWDG Window register, Address offset: 0x10 */
1111} IWDG_TypeDef;
1112
1113
1114/**
1115 * @brief JPEG Codec
1116 */
1117typedef struct
1118{
1119 __IO uint32_t CONFR0; /*!< JPEG Codec Control Register (JPEG_CONFR0), Address offset: 00h */
1120 __IO uint32_t CONFR1; /*!< JPEG Codec Control Register (JPEG_CONFR1), Address offset: 04h */
1121 __IO uint32_t CONFR2; /*!< JPEG Codec Control Register (JPEG_CONFR2), Address offset: 08h */
1122 __IO uint32_t CONFR3; /*!< JPEG Codec Control Register (JPEG_CONFR3), Address offset: 0Ch */
1123 __IO uint32_t CONFR4; /*!< JPEG Codec Control Register (JPEG_CONFR4), Address offset: 10h */
1124 __IO uint32_t CONFR5; /*!< JPEG Codec Control Register (JPEG_CONFR5), Address offset: 14h */
1125 __IO uint32_t CONFR6; /*!< JPEG Codec Control Register (JPEG_CONFR6), Address offset: 18h */
1126 __IO uint32_t CONFR7; /*!< JPEG Codec Control Register (JPEG_CONFR7), Address offset: 1Ch */
1127 uint32_t Reserved20[4]; /* Reserved Address offset: 20h-2Ch */
1128 __IO uint32_t CR; /*!< JPEG Control Register (JPEG_CR), Address offset: 30h */
1129 __IO uint32_t SR; /*!< JPEG Status Register (JPEG_SR), Address offset: 34h */
1130 __IO uint32_t CFR; /*!< JPEG Clear Flag Register (JPEG_CFR), Address offset: 38h */
1131 uint32_t Reserved3c; /* Reserved Address offset: 3Ch */
1132 __IO uint32_t DIR; /*!< JPEG Data Input Register (JPEG_DIR), Address offset: 40h */
1133 __IO uint32_t DOR; /*!< JPEG Data Output Register (JPEG_DOR), Address offset: 44h */
1134 uint32_t Reserved48[2]; /* Reserved Address offset: 48h-4Ch */
1135 __IO uint32_t QMEM0[16]; /*!< JPEG quantization tables 0, Address offset: 50h-8Ch */
1136 __IO uint32_t QMEM1[16]; /*!< JPEG quantization tables 1, Address offset: 90h-CCh */
1137 __IO uint32_t QMEM2[16]; /*!< JPEG quantization tables 2, Address offset: D0h-10Ch */
1138 __IO uint32_t QMEM3[16]; /*!< JPEG quantization tables 3, Address offset: 110h-14Ch */
1139 __IO uint32_t HUFFMIN[16]; /*!< JPEG HuffMin tables, Address offset: 150h-18Ch */
1140 __IO uint32_t HUFFBASE[32]; /*!< JPEG HuffSymb tables, Address offset: 190h-20Ch */
1141 __IO uint32_t HUFFSYMB[84]; /*!< JPEG HUFFSYMB tables, Address offset: 210h-35Ch */
1142 __IO uint32_t DHTMEM[103]; /*!< JPEG DHTMem tables, Address offset: 360h-4F8h */
1143 uint32_t Reserved4FC; /* Reserved Address offset: 4FCh */
1144 __IO uint32_t HUFFENC_AC0[88]; /*!< JPEG encodor, AC Huffman table 0, Address offset: 500h-65Ch */
1145 __IO uint32_t HUFFENC_AC1[88]; /*!< JPEG encodor, AC Huffman table 1, Address offset: 660h-7BCh */
1146 __IO uint32_t HUFFENC_DC0[8]; /*!< JPEG encodor, DC Huffman table 0, Address offset: 7C0h-7DCh */
1147 __IO uint32_t HUFFENC_DC1[8]; /*!< JPEG encodor, DC Huffman table 1, Address offset: 7E0h-7FCh */
1148
1149} JPEG_TypeDef;
1150
1151/**
1152 * @brief LCD-TFT Display Controller
1153 */
1154
1155typedef struct
1156{
1157 uint32_t RESERVED0[2]; /*!< Reserved, 0x00-0x04 */
1158 __IO uint32_t SSCR; /*!< LTDC Synchronization Size Configuration Register, Address offset: 0x08 */
1159 __IO uint32_t BPCR; /*!< LTDC Back Porch Configuration Register, Address offset: 0x0C */
1160 __IO uint32_t AWCR; /*!< LTDC Active Width Configuration Register, Address offset: 0x10 */
1161 __IO uint32_t TWCR; /*!< LTDC Total Width Configuration Register, Address offset: 0x14 */
1162 __IO uint32_t GCR; /*!< LTDC Global Control Register, Address offset: 0x18 */
1163 uint32_t RESERVED1[2]; /*!< Reserved, 0x1C-0x20 */
1164 __IO uint32_t SRCR; /*!< LTDC Shadow Reload Configuration Register, Address offset: 0x24 */
1165 uint32_t RESERVED2[1]; /*!< Reserved, 0x28 */
1166 __IO uint32_t BCCR; /*!< LTDC Background Color Configuration Register, Address offset: 0x2C */
1167 uint32_t RESERVED3[1]; /*!< Reserved, 0x30 */
1168 __IO uint32_t IER; /*!< LTDC Interrupt Enable Register, Address offset: 0x34 */
1169 __IO uint32_t ISR; /*!< LTDC Interrupt Status Register, Address offset: 0x38 */
1170 __IO uint32_t ICR; /*!< LTDC Interrupt Clear Register, Address offset: 0x3C */
1171 __IO uint32_t LIPCR; /*!< LTDC Line Interrupt Position Configuration Register, Address offset: 0x40 */
1172 __IO uint32_t CPSR; /*!< LTDC Current Position Status Register, Address offset: 0x44 */
1173 __IO uint32_t CDSR; /*!< LTDC Current Display Status Register, Address offset: 0x48 */
1174} LTDC_TypeDef;
1175
1176/**
1177 * @brief LCD-TFT Display layer x Controller
1178 */
1179
1180typedef struct
1181{
1182 __IO uint32_t CR; /*!< LTDC Layerx Control Register Address offset: 0x84 */
1183 __IO uint32_t WHPCR; /*!< LTDC Layerx Window Horizontal Position Configuration Register Address offset: 0x88 */
1184 __IO uint32_t WVPCR; /*!< LTDC Layerx Window Vertical Position Configuration Register Address offset: 0x8C */
1185 __IO uint32_t CKCR; /*!< LTDC Layerx Color Keying Configuration Register Address offset: 0x90 */
1186 __IO uint32_t PFCR; /*!< LTDC Layerx Pixel Format Configuration Register Address offset: 0x94 */
1187 __IO uint32_t CACR; /*!< LTDC Layerx Constant Alpha Configuration Register Address offset: 0x98 */
1188 __IO uint32_t DCCR; /*!< LTDC Layerx Default Color Configuration Register Address offset: 0x9C */
1189 __IO uint32_t BFCR; /*!< LTDC Layerx Blending Factors Configuration Register Address offset: 0xA0 */
1190 uint32_t RESERVED0[2]; /*!< Reserved */
1191 __IO uint32_t CFBAR; /*!< LTDC Layerx Color Frame Buffer Address Register Address offset: 0xAC */
1192 __IO uint32_t CFBLR; /*!< LTDC Layerx Color Frame Buffer Length Register Address offset: 0xB0 */
1193 __IO uint32_t CFBLNR; /*!< LTDC Layerx ColorFrame Buffer Line Number Register Address offset: 0xB4 */
1194 uint32_t RESERVED1[3]; /*!< Reserved */
1195 __IO uint32_t CLUTWR; /*!< LTDC Layerx CLUT Write Register Address offset: 0x144 */
1196
1197} LTDC_Layer_TypeDef;
1198
1199/**
1200 * @brief Power Control
1201 */
1202
1203typedef struct
1204{
1205 __IO uint32_t CR1; /*!< PWR power control register 1, Address offset: 0x00 */
1206 __IO uint32_t CSR1; /*!< PWR power control status register 1, Address offset: 0x04 */
1207 __IO uint32_t CR2; /*!< PWR power control register 2, Address offset: 0x08 */
1208 __IO uint32_t CR3; /*!< PWR power control register 3, Address offset: 0x0C */
1209 __IO uint32_t CPUCR; /*!< PWR CPU control register, Address offset: 0x10 */
1210 uint32_t RESERVED0; /*!< Reserved, Address offset: 0x14 */
1211 __IO uint32_t D3CR; /*!< PWR D3 domain control register, Address offset: 0x18 */
1212 uint32_t RESERVED1; /*!< Reserved, Address offset: 0x1C */
1213 __IO uint32_t WKUPCR; /*!< PWR wakeup clear register, Address offset: 0x20 */
1214 __IO uint32_t WKUPFR; /*!< PWR wakeup flag register, Address offset: 0x24 */
1215 __IO uint32_t WKUPEPR; /*!< PWR wakeup enable and polarity register, Address offset: 0x28 */
1216} PWR_TypeDef;
1217
1218/**
1219 * @brief Reset and Clock Control
1220 */
1221
1222typedef struct
1223{
1224 __IO uint32_t CR; /*!< RCC clock control register, Address offset: 0x00 */
1225 __IO uint32_t HSICFGR; /*!< HSI Clock Calibration Register, Address offset: 0x04 */
1226 __IO uint32_t CRRCR; /*!< Clock Recovery RC Register, Address offset: 0x08 */
1227 __IO uint32_t CSICFGR; /*!< CSI Clock Calibration Register, Address offset: 0x0C */
1228 __IO uint32_t CFGR; /*!< RCC clock configuration register, Address offset: 0x10 */
1229 uint32_t RESERVED1; /*!< Reserved, Address offset: 0x14 */
1230 __IO uint32_t D1CFGR; /*!< RCC Domain 1 configuration register, Address offset: 0x18 */
1231 __IO uint32_t D2CFGR; /*!< RCC Domain 2 configuration register, Address offset: 0x1C */
1232 __IO uint32_t D3CFGR; /*!< RCC Domain 3 configuration register, Address offset: 0x20 */
1233 uint32_t RESERVED2; /*!< Reserved, Address offset: 0x24 */
1234 __IO uint32_t PLLCKSELR; /*!< RCC PLLs Clock Source Selection Register, Address offset: 0x28 */
1235 __IO uint32_t PLLCFGR; /*!< RCC PLLs Configuration Register, Address offset: 0x2C */
1236 __IO uint32_t PLL1DIVR; /*!< RCC PLL1 Dividers Configuration Register, Address offset: 0x30 */
1237 __IO uint32_t PLL1FRACR; /*!< RCC PLL1 Fractional Divider Configuration Register, Address offset: 0x34 */
1238 __IO uint32_t PLL2DIVR; /*!< RCC PLL2 Dividers Configuration Register, Address offset: 0x38 */
1239 __IO uint32_t PLL2FRACR; /*!< RCC PLL2 Fractional Divider Configuration Register, Address offset: 0x3C */
1240 __IO uint32_t PLL3DIVR; /*!< RCC PLL3 Dividers Configuration Register, Address offset: 0x40 */
1241 __IO uint32_t PLL3FRACR; /*!< RCC PLL3 Fractional Divider Configuration Register, Address offset: 0x44 */
1242 uint32_t RESERVED3; /*!< Reserved, Address offset: 0x48 */
1243 __IO uint32_t D1CCIPR; /*!< RCC Domain 1 Kernel Clock Configuration Register Address offset: 0x4C */
1244 __IO uint32_t D2CCIP1R; /*!< RCC Domain 2 Kernel Clock Configuration Register Address offset: 0x50 */
1245 __IO uint32_t D2CCIP2R; /*!< RCC Domain 2 Kernel Clock Configuration Register Address offset: 0x54 */
1246 __IO uint32_t D3CCIPR; /*!< RCC Domain 3 Kernel Clock Configuration Register Address offset: 0x58 */
1247 uint32_t RESERVED4; /*!< Reserved, Address offset: 0x5C */
1248 __IO uint32_t CIER; /*!< RCC Clock Source Interrupt Enable Register Address offset: 0x60 */
1249 __IO uint32_t CIFR; /*!< RCC Clock Source Interrupt Flag Register Address offset: 0x64 */
1250 __IO uint32_t CICR; /*!< RCC Clock Source Interrupt Clear Register Address offset: 0x68 */
1251 uint32_t RESERVED5; /*!< Reserved, Address offset: 0x6C */
1252 __IO uint32_t BDCR; /*!< RCC Vswitch Backup Domain Control Register, Address offset: 0x70 */
1253 __IO uint32_t CSR; /*!< RCC clock control & status register, Address offset: 0x74 */
1254 uint32_t RESERVED6; /*!< Reserved, Address offset: 0x78 */
1255 __IO uint32_t AHB3RSTR; /*!< RCC AHB3 peripheral reset register, Address offset: 0x7C */
1256 __IO uint32_t AHB1RSTR; /*!< RCC AHB1 peripheral reset register, Address offset: 0x80 */
1257 __IO uint32_t AHB2RSTR; /*!< RCC AHB2 peripheral reset register, Address offset: 0x84 */
1258 __IO uint32_t AHB4RSTR; /*!< RCC AHB4 peripheral reset register, Address offset: 0x88 */
1259 __IO uint32_t APB3RSTR; /*!< RCC APB3 peripheral reset register, Address offset: 0x8C */
1260 __IO uint32_t APB1LRSTR; /*!< RCC APB1 peripheral reset Low Word register, Address offset: 0x90 */
1261 __IO uint32_t APB1HRSTR; /*!< RCC APB1 peripheral reset High Word register, Address offset: 0x94 */
1262 __IO uint32_t APB2RSTR; /*!< RCC APB2 peripheral reset register, Address offset: 0x98 */
1263 __IO uint32_t APB4RSTR; /*!< RCC APB4 peripheral reset register, Address offset: 0x9C */
1264 __IO uint32_t GCR; /*!< RCC RCC Global Control Register, Address offset: 0xA0 */
1265 uint32_t RESERVED8; /*!< Reserved, Address offset: 0xA4 */
1266 __IO uint32_t D3AMR; /*!< RCC Domain 3 Autonomous Mode Register, Address offset: 0xA8 */
1267 uint32_t RESERVED11[9]; /*!< Reserved, 0xAC-0xCC Address offset: 0xAC */
1268 __IO uint32_t RSR; /*!< RCC Reset status register, Address offset: 0xD0 */
1269 __IO uint32_t AHB3ENR; /*!< RCC AHB3 peripheral clock register, Address offset: 0xD4 */
1270 __IO uint32_t AHB1ENR; /*!< RCC AHB1 peripheral clock register, Address offset: 0xD8 */
1271 __IO uint32_t AHB2ENR; /*!< RCC AHB2 peripheral clock register, Address offset: 0xDC */
1272 __IO uint32_t AHB4ENR; /*!< RCC AHB4 peripheral clock register, Address offset: 0xE0 */
1273 __IO uint32_t APB3ENR; /*!< RCC APB3 peripheral clock register, Address offset: 0xE4 */
1274 __IO uint32_t APB1LENR; /*!< RCC APB1 peripheral clock Low Word register, Address offset: 0xE8 */
1275 __IO uint32_t APB1HENR; /*!< RCC APB1 peripheral clock High Word register, Address offset: 0xEC */
1276 __IO uint32_t APB2ENR; /*!< RCC APB2 peripheral clock register, Address offset: 0xF0 */
1277 __IO uint32_t APB4ENR; /*!< RCC APB4 peripheral clock register, Address offset: 0xF4 */
1278 uint32_t RESERVED12; /*!< Reserved, Address offset: 0xF8 */
1279 __IO uint32_t AHB3LPENR; /*!< RCC AHB3 peripheral sleep clock register, Address offset: 0xFC */
1280 __IO uint32_t AHB1LPENR; /*!< RCC AHB1 peripheral sleep clock register, Address offset: 0x100 */
1281 __IO uint32_t AHB2LPENR; /*!< RCC AHB2 peripheral sleep clock register, Address offset: 0x104 */
1282 __IO uint32_t AHB4LPENR; /*!< RCC AHB4 peripheral sleep clock register, Address offset: 0x108 */
1283 __IO uint32_t APB3LPENR; /*!< RCC APB3 peripheral sleep clock register, Address offset: 0x10C */
1284 __IO uint32_t APB1LLPENR; /*!< RCC APB1 peripheral sleep clock Low Word register, Address offset: 0x110 */
1285 __IO uint32_t APB1HLPENR; /*!< RCC APB1 peripheral sleep clock High Word register, Address offset: 0x114 */
1286 __IO uint32_t APB2LPENR; /*!< RCC APB2 peripheral sleep clock register, Address offset: 0x118 */
1287 __IO uint32_t APB4LPENR; /*!< RCC APB4 peripheral sleep clock register, Address offset: 0x11C */
1288 uint32_t RESERVED13[4]; /*!< Reserved, 0x120-0x12C Address offset: 0x120 */
1289
1290} RCC_TypeDef;
1291
1292
1293/**
1294 * @brief Real-Time Clock
1295 */
1296typedef struct
1297{
1298 __IO uint32_t TR; /*!< RTC time register, Address offset: 0x00 */
1299 __IO uint32_t DR; /*!< RTC date register, Address offset: 0x04 */
1300 __IO uint32_t CR; /*!< RTC control register, Address offset: 0x08 */
1301 __IO uint32_t ISR; /*!< RTC initialization and status register, Address offset: 0x0C */
1302 __IO uint32_t PRER; /*!< RTC prescaler register, Address offset: 0x10 */
1303 __IO uint32_t WUTR; /*!< RTC wakeup timer register, Address offset: 0x14 */
1304 uint32_t RESERVED; /*!< Reserved, Address offset: 0x18 */
1305 __IO uint32_t ALRMAR; /*!< RTC alarm A register, Address offset: 0x1C */
1306 __IO uint32_t ALRMBR; /*!< RTC alarm B register, Address offset: 0x20 */
1307 __IO uint32_t WPR; /*!< RTC write protection register, Address offset: 0x24 */
1308 __IO uint32_t SSR; /*!< RTC sub second register, Address offset: 0x28 */
1309 __IO uint32_t SHIFTR; /*!< RTC shift control register, Address offset: 0x2C */
1310 __IO uint32_t TSTR; /*!< RTC time stamp time register, Address offset: 0x30 */
1311 __IO uint32_t TSDR; /*!< RTC time stamp date register, Address offset: 0x34 */
1312 __IO uint32_t TSSSR; /*!< RTC time-stamp sub second register, Address offset: 0x38 */
1313 __IO uint32_t CALR; /*!< RTC calibration register, Address offset: 0x3C */
1314 __IO uint32_t TAMPCR; /*!< RTC tamper configuration register, Address offset: 0x40 */
1315 __IO uint32_t ALRMASSR; /*!< RTC alarm A sub second register, Address offset: 0x44 */
1316 __IO uint32_t ALRMBSSR; /*!< RTC alarm B sub second register, Address offset: 0x48 */
1317 __IO uint32_t OR; /*!< RTC option register, Address offset: 0x4C */
1318 __IO uint32_t BKP0R; /*!< RTC backup register 0, Address offset: 0x50 */
1319 __IO uint32_t BKP1R; /*!< RTC backup register 1, Address offset: 0x54 */
1320 __IO uint32_t BKP2R; /*!< RTC backup register 2, Address offset: 0x58 */
1321 __IO uint32_t BKP3R; /*!< RTC backup register 3, Address offset: 0x5C */
1322 __IO uint32_t BKP4R; /*!< RTC backup register 4, Address offset: 0x60 */
1323 __IO uint32_t BKP5R; /*!< RTC backup register 5, Address offset: 0x64 */
1324 __IO uint32_t BKP6R; /*!< RTC backup register 6, Address offset: 0x68 */
1325 __IO uint32_t BKP7R; /*!< RTC backup register 7, Address offset: 0x6C */
1326 __IO uint32_t BKP8R; /*!< RTC backup register 8, Address offset: 0x70 */
1327 __IO uint32_t BKP9R; /*!< RTC backup register 9, Address offset: 0x74 */
1328 __IO uint32_t BKP10R; /*!< RTC backup register 10, Address offset: 0x78 */
1329 __IO uint32_t BKP11R; /*!< RTC backup register 11, Address offset: 0x7C */
1330 __IO uint32_t BKP12R; /*!< RTC backup register 12, Address offset: 0x80 */
1331 __IO uint32_t BKP13R; /*!< RTC backup register 13, Address offset: 0x84 */
1332 __IO uint32_t BKP14R; /*!< RTC backup register 14, Address offset: 0x88 */
1333 __IO uint32_t BKP15R; /*!< RTC backup register 15, Address offset: 0x8C */
1334 __IO uint32_t BKP16R; /*!< RTC backup register 16, Address offset: 0x90 */
1335 __IO uint32_t BKP17R; /*!< RTC backup register 17, Address offset: 0x94 */
1336 __IO uint32_t BKP18R; /*!< RTC backup register 18, Address offset: 0x98 */
1337 __IO uint32_t BKP19R; /*!< RTC backup register 19, Address offset: 0x9C */
1338 __IO uint32_t BKP20R; /*!< RTC backup register 20, Address offset: 0xA0 */
1339 __IO uint32_t BKP21R; /*!< RTC backup register 21, Address offset: 0xA4 */
1340 __IO uint32_t BKP22R; /*!< RTC backup register 22, Address offset: 0xA8 */
1341 __IO uint32_t BKP23R; /*!< RTC backup register 23, Address offset: 0xAC */
1342 __IO uint32_t BKP24R; /*!< RTC backup register 24, Address offset: 0xB0 */
1343 __IO uint32_t BKP25R; /*!< RTC backup register 25, Address offset: 0xB4 */
1344 __IO uint32_t BKP26R; /*!< RTC backup register 26, Address offset: 0xB8 */
1345 __IO uint32_t BKP27R; /*!< RTC backup register 27, Address offset: 0xBC */
1346 __IO uint32_t BKP28R; /*!< RTC backup register 28, Address offset: 0xC0 */
1347 __IO uint32_t BKP29R; /*!< RTC backup register 29, Address offset: 0xC4 */
1348 __IO uint32_t BKP30R; /*!< RTC backup register 30, Address offset: 0xC8 */
1349 __IO uint32_t BKP31R; /*!< RTC backup register 31, Address offset: 0xCC */
1350} RTC_TypeDef;
1351
1352/**
1353 * @brief Serial Audio Interface
1354 */
1355
1356typedef struct
1357{
1358 __IO uint32_t GCR; /*!< SAI global configuration register, Address offset: 0x00 */
1359 uint32_t RESERVED0[16]; /*!< Reserved, 0x04 - 0x43 */
1360 __IO uint32_t PDMCR; /*!< SAI PDM control register, Address offset: 0x44 */
1361 __IO uint32_t PDMDLY; /*!< SAI PDM delay register, Address offset: 0x48 */
1362} SAI_TypeDef;
1363
1364typedef struct
1365{
1366 __IO uint32_t CR1; /*!< SAI block x configuration register 1, Address offset: 0x04 */
1367 __IO uint32_t CR2; /*!< SAI block x configuration register 2, Address offset: 0x08 */
1368 __IO uint32_t FRCR; /*!< SAI block x frame configuration register, Address offset: 0x0C */
1369 __IO uint32_t SLOTR; /*!< SAI block x slot register, Address offset: 0x10 */
1370 __IO uint32_t IMR; /*!< SAI block x interrupt mask register, Address offset: 0x14 */
1371 __IO uint32_t SR; /*!< SAI block x status register, Address offset: 0x18 */
1372 __IO uint32_t CLRFR; /*!< SAI block x clear flag register, Address offset: 0x1C */
1373 __IO uint32_t DR; /*!< SAI block x data register, Address offset: 0x20 */
1374} SAI_Block_TypeDef;
1375
1376/**
1377 * @brief SPDIF-RX Interface
1378 */
1379
1380typedef struct
1381{
1382 __IO uint32_t CR; /*!< Control register, Address offset: 0x00 */
1383 __IO uint32_t IMR; /*!< Interrupt mask register, Address offset: 0x04 */
1384 __IO uint32_t SR; /*!< Status register, Address offset: 0x08 */
1385 __IO uint32_t IFCR; /*!< Interrupt Flag Clear register, Address offset: 0x0C */
1386 __IO uint32_t DR; /*!< Data input register, Address offset: 0x10 */
1387 __IO uint32_t CSR; /*!< Channel Status register, Address offset: 0x14 */
1388 __IO uint32_t DIR; /*!< Debug Information register, Address offset: 0x18 */
1389 uint32_t RESERVED2; /*!< Reserved, 0x1A */
1390} SPDIFRX_TypeDef;
1391
1392
1393/**
1394 * @brief Secure digital input/output Interface
1395 */
1396
1397typedef struct
1398{
1399 __IO uint32_t POWER; /*!< SDMMC power control register, Address offset: 0x00 */
1400 __IO uint32_t CLKCR; /*!< SDMMC clock control register, Address offset: 0x04 */
1401 __IO uint32_t ARG; /*!< SDMMC argument register, Address offset: 0x08 */
1402 __IO uint32_t CMD; /*!< SDMMC command register, Address offset: 0x0C */
1403 __I uint32_t RESPCMD; /*!< SDMMC command response register, Address offset: 0x10 */
1404 __I uint32_t RESP1; /*!< SDMMC response 1 register, Address offset: 0x14 */
1405 __I uint32_t RESP2; /*!< SDMMC response 2 register, Address offset: 0x18 */
1406 __I uint32_t RESP3; /*!< SDMMC response 3 register, Address offset: 0x1C */
1407 __I uint32_t RESP4; /*!< SDMMC response 4 register, Address offset: 0x20 */
1408 __IO uint32_t DTIMER; /*!< SDMMC data timer register, Address offset: 0x24 */
1409 __IO uint32_t DLEN; /*!< SDMMC data length register, Address offset: 0x28 */
1410 __IO uint32_t DCTRL; /*!< SDMMC data control register, Address offset: 0x2C */
1411 __I uint32_t DCOUNT; /*!< SDMMC data counter register, Address offset: 0x30 */
1412 __I uint32_t STA; /*!< SDMMC status register, Address offset: 0x34 */
1413 __IO uint32_t ICR; /*!< SDMMC interrupt clear register, Address offset: 0x38 */
1414 __IO uint32_t MASK; /*!< SDMMC mask register, Address offset: 0x3C */
1415 __IO uint32_t ACKTIME; /*!< SDMMC Acknowledgement timer register, Address offset: 0x40 */
1416 uint32_t RESERVED0[3]; /*!< Reserved, 0x44 - 0x4C - 0x4C */
1417 __IO uint32_t IDMACTRL; /*!< SDMMC DMA control register, Address offset: 0x50 */
1418 __IO uint32_t IDMABSIZE; /*!< SDMMC DMA buffer size register, Address offset: 0x54 */
1419 __IO uint32_t IDMABASE0; /*!< SDMMC DMA buffer 0 base address register, Address offset: 0x58 */
1420 __IO uint32_t IDMABASE1; /*!< SDMMC DMA buffer 1 base address register, Address offset: 0x5C */
1421 uint32_t RESERVED1[8]; /*!< Reserved, 0x60-0x7C */
1422 __IO uint32_t FIFO; /*!< SDMMC data FIFO register, Address offset: 0x80 */
1423 uint32_t RESERVED2[222]; /*!< Reserved, 0x84-0x3F8 */
1424 __IO uint32_t IPVR; /*!< SDMMC data FIFO register, Address offset: 0x3FC */
1425} SDMMC_TypeDef;
1426
1427
1428/**
1429 * @brief Delay Block DLYB
1430 */
1431
1432typedef struct
1433{
1434 __IO uint32_t CR; /*!< DELAY BLOCK control register, Address offset: 0x00 */
1435 __IO uint32_t CFGR; /*!< DELAY BLOCK configuration register, Address offset: 0x04 */
1436} DLYB_TypeDef;
1437
1438/**
1439 * @brief HW Semaphore HSEM
1440 */
1441
1442typedef struct
1443{
1444 __IO uint32_t R[32]; /*!< 2-step write lock and read back registers, Address offset: 00h-7Ch */
1445 __IO uint32_t RLR[32]; /*!< 1-step read lock registers, Address offset: 80h-FCh */
1446 __IO uint32_t C1IER; /*!< HSEM Interrupt enable register , Address offset: 100h */
1447 __IO uint32_t C1ICR; /*!< HSEM Interrupt clear register , Address offset: 104h */
1448 __IO uint32_t C1ISR; /*!< HSEM Interrupt Status register , Address offset: 108h */
1449 __IO uint32_t C1MISR; /*!< HSEM Interrupt Masked Status register , Address offset: 10Ch */
1450 uint32_t Reserved[12]; /* Reserved Address offset: 110h-13Ch */
1451 __IO uint32_t CR; /*!< HSEM Semaphore clear register , Address offset: 140h */
1452 __IO uint32_t KEYR; /*!< HSEM Semaphore clear key register , Address offset: 144h */
1453
1454} HSEM_TypeDef;
1455
1456typedef struct
1457{
1458 __IO uint32_t IER; /*!< HSEM interrupt enable register , Address offset: 0h */
1459 __IO uint32_t ICR; /*!< HSEM interrupt clear register , Address offset: 4h */
1460 __IO uint32_t ISR; /*!< HSEM interrupt status register , Address offset: 8h */
1461 __IO uint32_t MISR; /*!< HSEM masked interrupt status register , Address offset: Ch */
1462} HSEM_Common_TypeDef;
1463
1464/**
1465 * @brief Serial Peripheral Interface
1466 */
1467
1468typedef struct
1469{
1470 __IO uint32_t CR1; /*!< SPI/I2S Control register 1, Address offset: 0x00 */
1471 __IO uint32_t CR2; /*!< SPI Control register 2, Address offset: 0x04 */
1472 __IO uint32_t CFG1; /*!< SPI Configuration register 1, Address offset: 0x08 */
1473 __IO uint32_t CFG2; /*!< SPI Configuration register 2, Address offset: 0x0C */
1474 __IO uint32_t IER; /*!< SPI/I2S Interrupt Enable register, Address offset: 0x10 */
1475 __IO uint32_t SR; /*!< SPI/I2S Status register, Address offset: 0x14 */
1476 __IO uint32_t IFCR; /*!< SPI/I2S Interrupt/Status flags clear register, Address offset: 0x18 */
1477 uint32_t RESERVED0; /*!< Reserved, 0x1C */
1478 __IO uint32_t TXDR; /*!< SPI/I2S Transmit data register, Address offset: 0x20 */
1479 uint32_t RESERVED1[3]; /*!< Reserved, 0x24-0x2C */
1480 __IO uint32_t RXDR; /*!< SPI/I2S Receive data register, Address offset: 0x30 */
1481 uint32_t RESERVED2[3]; /*!< Reserved, 0x34-0x3C */
1482 __IO uint32_t CRCPOLY; /*!< SPI CRC Polynomial register, Address offset: 0x40 */
1483 __IO uint32_t TXCRC; /*!< SPI Transmitter CRC register, Address offset: 0x44 */
1484 __IO uint32_t RXCRC; /*!< SPI Receiver CRC register, Address offset: 0x48 */
1485 __IO uint32_t UDRDR; /*!< SPI Underrun data register, Address offset: 0x4C */
1486 __IO uint32_t I2SCFGR; /*!< I2S Configuration register, Address offset: 0x50 */
1487
1488} SPI_TypeDef;
1489/**
1490 * @brief QUAD Serial Peripheral Interface
1491 */
1492
1493typedef struct
1494{
1495 __IO uint32_t CR; /*!< QUADSPI Control register, Address offset: 0x00 */
1496 __IO uint32_t DCR; /*!< QUADSPI Device Configuration register, Address offset: 0x04 */
1497 __IO uint32_t SR; /*!< QUADSPI Status register, Address offset: 0x08 */
1498 __IO uint32_t FCR; /*!< QUADSPI Flag Clear register, Address offset: 0x0C */
1499 __IO uint32_t DLR; /*!< QUADSPI Data Length register, Address offset: 0x10 */
1500 __IO uint32_t CCR; /*!< QUADSPI Communication Configuration register, Address offset: 0x14 */
1501 __IO uint32_t AR; /*!< QUADSPI Address register, Address offset: 0x18 */
1502 __IO uint32_t ABR; /*!< QUADSPI Alternate Bytes register, Address offset: 0x1C */
1503 __IO uint32_t DR; /*!< QUADSPI Data register, Address offset: 0x20 */
1504 __IO uint32_t PSMKR; /*!< QUADSPI Polling Status Mask register, Address offset: 0x24 */
1505 __IO uint32_t PSMAR; /*!< QUADSPI Polling Status Match register, Address offset: 0x28 */
1506 __IO uint32_t PIR; /*!< QUADSPI Polling Interval register, Address offset: 0x2C */
1507 __IO uint32_t LPTR; /*!< QUADSPI Low Power Timeout register, Address offset: 0x30 */
1508} QUADSPI_TypeDef;
1509
1510/**
1511 * @brief TIM
1512 */
1513
1514typedef struct
1515{
1516 __IO uint32_t CR1; /*!< TIM control register 1, Address offset: 0x00 */
1517 __IO uint32_t CR2; /*!< TIM control register 2, Address offset: 0x04 */
1518 __IO uint32_t SMCR; /*!< TIM slave mode control register, Address offset: 0x08 */
1519 __IO uint32_t DIER; /*!< TIM DMA/interrupt enable register, Address offset: 0x0C */
1520 __IO uint32_t SR; /*!< TIM status register, Address offset: 0x10 */
1521 __IO uint32_t EGR; /*!< TIM event generation register, Address offset: 0x14 */
1522 __IO uint32_t CCMR1; /*!< TIM capture/compare mode register 1, Address offset: 0x18 */
1523 __IO uint32_t CCMR2; /*!< TIM capture/compare mode register 2, Address offset: 0x1C */
1524 __IO uint32_t CCER; /*!< TIM capture/compare enable register, Address offset: 0x20 */
1525 __IO uint32_t CNT; /*!< TIM counter register, Address offset: 0x24 */
1526 __IO uint32_t PSC; /*!< TIM prescaler, Address offset: 0x28 */
1527 __IO uint32_t ARR; /*!< TIM auto-reload register, Address offset: 0x2C */
1528 __IO uint32_t RCR; /*!< TIM repetition counter register, Address offset: 0x30 */
1529 __IO uint32_t CCR1; /*!< TIM capture/compare register 1, Address offset: 0x34 */
1530 __IO uint32_t CCR2; /*!< TIM capture/compare register 2, Address offset: 0x38 */
1531 __IO uint32_t CCR3; /*!< TIM capture/compare register 3, Address offset: 0x3C */
1532 __IO uint32_t CCR4; /*!< TIM capture/compare register 4, Address offset: 0x40 */
1533 __IO uint32_t BDTR; /*!< TIM break and dead-time register, Address offset: 0x44 */
1534 __IO uint32_t DCR; /*!< TIM DMA control register, Address offset: 0x48 */
1535 __IO uint32_t DMAR; /*!< TIM DMA address for full transfer, Address offset: 0x4C */
1536 uint32_t RESERVED1; /*!< Reserved, 0x50 */
1537 __IO uint32_t CCMR3; /*!< TIM capture/compare mode register 3, Address offset: 0x54 */
1538 __IO uint32_t CCR5; /*!< TIM capture/compare register5, Address offset: 0x58 */
1539 __IO uint32_t CCR6; /*!< TIM capture/compare register6, Address offset: 0x5C */
1540 __IO uint32_t AF1; /*!< TIM alternate function option register 1, Address offset: 0x60 */
1541 __IO uint32_t AF2; /*!< TIM alternate function option register 2, Address offset: 0x64 */
1542 __IO uint32_t TISEL; /*!< TIM Input Selection register, Address offset: 0x68 */
1543} TIM_TypeDef;
1544
1545/**
1546 * @brief LPTIMIMER
1547 */
1548typedef struct
1549{
1550 __IO uint32_t ISR; /*!< LPTIM Interrupt and Status register, Address offset: 0x00 */
1551 __IO uint32_t ICR; /*!< LPTIM Interrupt Clear register, Address offset: 0x04 */
1552 __IO uint32_t IER; /*!< LPTIM Interrupt Enable register, Address offset: 0x08 */
1553 __IO uint32_t CFGR; /*!< LPTIM Configuration register, Address offset: 0x0C */
1554 __IO uint32_t CR; /*!< LPTIM Control register, Address offset: 0x10 */
1555 __IO uint32_t CMP; /*!< LPTIM Compare register, Address offset: 0x14 */
1556 __IO uint32_t ARR; /*!< LPTIM Autoreload register, Address offset: 0x18 */
1557 __IO uint32_t CNT; /*!< LPTIM Counter register, Address offset: 0x1C */
1558 uint32_t RESERVED1; /*!< Reserved, 0x20 */
1559 __IO uint32_t CFGR2; /*!< LPTIM Configuration register, Address offset: 0x24 */
1560} LPTIM_TypeDef;
1561
1562/**
1563 * @brief Comparator
1564 */
1565typedef struct
1566{
1567 __IO uint32_t SR; /*!< Comparator status register, Address offset: 0x00 */
1568 __IO uint32_t ICFR; /*!< Comparator interrupt clear flag register, Address offset: 0x04 */
1569 __IO uint32_t OR; /*!< Comparator option register, Address offset: 0x08 */
1570} COMPOPT_TypeDef;
1571
1572typedef struct
1573{
1574 __IO uint32_t CFGR; /*!< Comparator configuration register , Address offset: 0x00 */
1575} COMP_TypeDef;
1576
1577typedef struct
1578{
1579 __IO uint32_t CFGR; /*!< COMP control and status register, used for bits common to several COMP instances, Address offset: 0x00 */
1580} COMP_Common_TypeDef;
1581/**
1582 * @brief Universal Synchronous Asynchronous Receiver Transmitter
1583 */
1584
1585typedef struct
1586{
1587 __IO uint32_t CR1; /*!< USART Control register 1, Address offset: 0x00 */
1588 __IO uint32_t CR2; /*!< USART Control register 2, Address offset: 0x04 */
1589 __IO uint32_t CR3; /*!< USART Control register 3, Address offset: 0x08 */
1590 __IO uint32_t BRR; /*!< USART Baud rate register, Address offset: 0x0C */
1591 __IO uint32_t GTPR; /*!< USART Guard time and prescaler register, Address offset: 0x10 */
1592 __IO uint32_t RTOR; /*!< USART Receiver Time Out register, Address offset: 0x14 */
1593 __IO uint32_t RQR; /*!< USART Request register, Address offset: 0x18 */
1594 __IO uint32_t ISR; /*!< USART Interrupt and status register, Address offset: 0x1C */
1595 __IO uint32_t ICR; /*!< USART Interrupt flag Clear register, Address offset: 0x20 */
1596 __IO uint32_t RDR; /*!< USART Receive Data register, Address offset: 0x24 */
1597 __IO uint32_t TDR; /*!< USART Transmit Data register, Address offset: 0x28 */
1598 __IO uint32_t PRESC; /*!< USART clock Prescaler register, Address offset: 0x2C */
1599} USART_TypeDef;
1600
1601/**
1602 * @brief Single Wire Protocol Master Interface SPWMI
1603 */
1604typedef struct
1605{
1606 __IO uint32_t CR; /*!< SWPMI Configuration/Control register, Address offset: 0x00 */
1607 __IO uint32_t BRR; /*!< SWPMI bitrate register, Address offset: 0x04 */
1608 uint32_t RESERVED1; /*!< Reserved, 0x08 */
1609 __IO uint32_t ISR; /*!< SWPMI Interrupt and Status register, Address offset: 0x0C */
1610 __IO uint32_t ICR; /*!< SWPMI Interrupt Flag Clear register, Address offset: 0x10 */
1611 __IO uint32_t IER; /*!< SWPMI Interrupt Enable register, Address offset: 0x14 */
1612 __IO uint32_t RFL; /*!< SWPMI Receive Frame Length register, Address offset: 0x18 */
1613 __IO uint32_t TDR; /*!< SWPMI Transmit data register, Address offset: 0x1C */
1614 __IO uint32_t RDR; /*!< SWPMI Receive data register, Address offset: 0x20 */
1615 __IO uint32_t OR; /*!< SWPMI Option register, Address offset: 0x24 */
1616} SWPMI_TypeDef;
1617
1618/**
1619 * @brief Window WATCHDOG
1620 */
1621
1622typedef struct
1623{
1624 __IO uint32_t CR; /*!< WWDG Control register, Address offset: 0x00 */
1625 __IO uint32_t CFR; /*!< WWDG Configuration register, Address offset: 0x04 */
1626 __IO uint32_t SR; /*!< WWDG Status register, Address offset: 0x08 */
1627} WWDG_TypeDef;
1628
1629
1630/**
1631 * @brief RAM_ECC_Specific_Registers
1632 */
1633typedef struct
1634{
1635 __IO uint32_t CR; /*!< RAMECC monitor configuration register */
1636 __IO uint32_t SR; /*!< RAMECC monitor status register */
1637 __IO uint32_t FAR; /*!< RAMECC monitor failing address register */
1638 __IO uint32_t FDRL; /*!< RAMECC monitor failing data low register */
1639 __IO uint32_t FDRH; /*!< RAMECC monitor failing data high register */
1640 __IO uint32_t FECR; /*!< RAMECC monitor failing ECC error code register */
1641} RAMECC_MonitorTypeDef;
1642
1643typedef struct
1644{
1645 __IO uint32_t IER; /*!< RAMECC interrupt enable register */
1646} RAMECC_TypeDef;
1647/**
1648 * @}
1649 */
1650
1651
1652
1653/**
1654 * @brief High resolution Timer (HRTIM)
1655 */
1656/* HRTIM master registers definition */
1657typedef struct
1658{
1659 __IO uint32_t MCR; /*!< HRTIM Master Timer control register, Address offset: 0x00 */
1660 __IO uint32_t MISR; /*!< HRTIM Master Timer interrupt status register, Address offset: 0x04 */
1661 __IO uint32_t MICR; /*!< HRTIM Master Timer interupt clear register, Address offset: 0x08 */
1662 __IO uint32_t MDIER; /*!< HRTIM Master Timer DMA/interrupt enable register Address offset: 0x0C */
1663 __IO uint32_t MCNTR; /*!< HRTIM Master Timer counter register, Address offset: 0x10 */
1664 __IO uint32_t MPER; /*!< HRTIM Master Timer period register, Address offset: 0x14 */
1665 __IO uint32_t MREP; /*!< HRTIM Master Timer repetition register, Address offset: 0x18 */
1666 __IO uint32_t MCMP1R; /*!< HRTIM Master Timer compare 1 register, Address offset: 0x1C */
1667 uint32_t RESERVED0; /*!< Reserved, 0x20 */
1668 __IO uint32_t MCMP2R; /*!< HRTIM Master Timer compare 2 register, Address offset: 0x24 */
1669 __IO uint32_t MCMP3R; /*!< HRTIM Master Timer compare 3 register, Address offset: 0x28 */
1670 __IO uint32_t MCMP4R; /*!< HRTIM Master Timer compare 4 register, Address offset: 0x2C */
1671 uint32_t RESERVED1[20]; /*!< Reserved, 0x30..0x7C */
1672}HRTIM_Master_TypeDef;
1673
1674/* HRTIM Timer A to E registers definition */
1675typedef struct
1676{
1677 __IO uint32_t TIMxCR; /*!< HRTIM Timerx control register, Address offset: 0x00 */
1678 __IO uint32_t TIMxISR; /*!< HRTIM Timerx interrupt status register, Address offset: 0x04 */
1679 __IO uint32_t TIMxICR; /*!< HRTIM Timerx interrupt clear register, Address offset: 0x08 */
1680 __IO uint32_t TIMxDIER; /*!< HRTIM Timerx DMA/interrupt enable register, Address offset: 0x0C */
1681 __IO uint32_t CNTxR; /*!< HRTIM Timerx counter register, Address offset: 0x10 */
1682 __IO uint32_t PERxR; /*!< HRTIM Timerx period register, Address offset: 0x14 */
1683 __IO uint32_t REPxR; /*!< HRTIM Timerx repetition register, Address offset: 0x18 */
1684 __IO uint32_t CMP1xR; /*!< HRTIM Timerx compare 1 register, Address offset: 0x1C */
1685 __IO uint32_t CMP1CxR; /*!< HRTIM Timerx compare 1 compound register, Address offset: 0x20 */
1686 __IO uint32_t CMP2xR; /*!< HRTIM Timerx compare 2 register, Address offset: 0x24 */
1687 __IO uint32_t CMP3xR; /*!< HRTIM Timerx compare 3 register, Address offset: 0x28 */
1688 __IO uint32_t CMP4xR; /*!< HRTIM Timerx compare 4 register, Address offset: 0x2C */
1689 __IO uint32_t CPT1xR; /*!< HRTIM Timerx capture 1 register, Address offset: 0x30 */
1690 __IO uint32_t CPT2xR; /*!< HRTIM Timerx capture 2 register, Address offset: 0x34 */
1691 __IO uint32_t DTxR; /*!< HRTIM Timerx dead time register, Address offset: 0x38 */
1692 __IO uint32_t SETx1R; /*!< HRTIM Timerx output 1 set register, Address offset: 0x3C */
1693 __IO uint32_t RSTx1R; /*!< HRTIM Timerx output 1 reset register, Address offset: 0x40 */
1694 __IO uint32_t SETx2R; /*!< HRTIM Timerx output 2 set register, Address offset: 0x44 */
1695 __IO uint32_t RSTx2R; /*!< HRTIM Timerx output 2 reset register, Address offset: 0x48 */
1696 __IO uint32_t EEFxR1; /*!< HRTIM Timerx external event filtering 1 register, Address offset: 0x4C */
1697 __IO uint32_t EEFxR2; /*!< HRTIM Timerx external event filtering 2 register, Address offset: 0x50 */
1698 __IO uint32_t RSTxR; /*!< HRTIM Timerx Reset register, Address offset: 0x54 */
1699 __IO uint32_t CHPxR; /*!< HRTIM Timerx Chopper register, Address offset: 0x58 */
1700 __IO uint32_t CPT1xCR; /*!< HRTIM Timerx Capture 1 register, Address offset: 0x5C */
1701 __IO uint32_t CPT2xCR; /*!< HRTIM Timerx Capture 2 register, Address offset: 0x60 */
1702 __IO uint32_t OUTxR; /*!< HRTIM Timerx Output register, Address offset: 0x64 */
1703 __IO uint32_t FLTxR; /*!< HRTIM Timerx Fault register, Address offset: 0x68 */
1704 uint32_t RESERVED0[5]; /*!< Reserved, 0x6C..0x7C */
1705}HRTIM_Timerx_TypeDef;
1706
1707/* HRTIM common register definition */
1708typedef struct
1709{
1710 __IO uint32_t CR1; /*!< HRTIM control register1, Address offset: 0x00 */
1711 __IO uint32_t CR2; /*!< HRTIM control register2, Address offset: 0x04 */
1712 __IO uint32_t ISR; /*!< HRTIM interrupt status register, Address offset: 0x08 */
1713 __IO uint32_t ICR; /*!< HRTIM interrupt clear register, Address offset: 0x0C */
1714 __IO uint32_t IER; /*!< HRTIM interrupt enable register, Address offset: 0x10 */
1715 __IO uint32_t OENR; /*!< HRTIM Output enable register, Address offset: 0x14 */
1716 __IO uint32_t ODISR; /*!< HRTIM Output disable register, Address offset: 0x18 */
1717 __IO uint32_t ODSR; /*!< HRTIM Output disable status register, Address offset: 0x1C */
1718 __IO uint32_t BMCR; /*!< HRTIM Burst mode control register, Address offset: 0x20 */
1719 __IO uint32_t BMTRGR; /*!< HRTIM Busrt mode trigger register, Address offset: 0x24 */
1720 __IO uint32_t BMCMPR; /*!< HRTIM Burst mode compare register, Address offset: 0x28 */
1721 __IO uint32_t BMPER; /*!< HRTIM Burst mode period register, Address offset: 0x2C */
1722 __IO uint32_t EECR1; /*!< HRTIM Timer external event control register1, Address offset: 0x30 */
1723 __IO uint32_t EECR2; /*!< HRTIM Timer external event control register2, Address offset: 0x34 */
1724 __IO uint32_t EECR3; /*!< HRTIM Timer external event control register3, Address offset: 0x38 */
1725 __IO uint32_t ADC1R; /*!< HRTIM ADC Trigger 1 register, Address offset: 0x3C */
1726 __IO uint32_t ADC2R; /*!< HRTIM ADC Trigger 2 register, Address offset: 0x40 */
1727 __IO uint32_t ADC3R; /*!< HRTIM ADC Trigger 3 register, Address offset: 0x44 */
1728 __IO uint32_t ADC4R; /*!< HRTIM ADC Trigger 4 register, Address offset: 0x48 */
1729 __IO uint32_t RESERVED0; /*!< Reserved, Address offset: 0x4C */
1730 __IO uint32_t FLTINR1; /*!< HRTIM Fault input register1, Address offset: 0x50 */
1731 __IO uint32_t FLTINR2; /*!< HRTIM Fault input register2, Address offset: 0x54 */
1732 __IO uint32_t BDMUPR; /*!< HRTIM Burst DMA Master Timer update register, Address offset: 0x58 */
1733 __IO uint32_t BDTAUPR; /*!< HRTIM Burst DMA Timerx update register, Address offset: 0x5C */
1734 __IO uint32_t BDTBUPR; /*!< HRTIM Burst DMA Timerx update register, Address offset: 0x60 */
1735 __IO uint32_t BDTCUPR; /*!< HRTIM Burst DMA Timerx update register, Address offset: 0x64 */
1736 __IO uint32_t BDTDUPR; /*!< HRTIM Burst DMA Timerx update register, Address offset: 0x68 */
1737 __IO uint32_t BDTEUPR; /*!< HRTIM Burst DMA Timerx update register, Address offset: 0x6C */
1738 __IO uint32_t BDMADR; /*!< HRTIM Burst DMA Master Data register, Address offset: 0x70 */
1739}HRTIM_Common_TypeDef;
1740
1741/* HRTIM register definition */
1742typedef struct {
1743 HRTIM_Master_TypeDef sMasterRegs;
1744 HRTIM_Timerx_TypeDef sTimerxRegs[5];
1745 uint32_t RESERVED0[32];
1746 HRTIM_Common_TypeDef sCommonRegs;
1747}HRTIM_TypeDef;
1748/**
1749 * @brief RNG
1750 */
1751
1752typedef struct
1753{
1754 __IO uint32_t CR; /*!< RNG control register, Address offset: 0x00 */
1755 __IO uint32_t SR; /*!< RNG status register, Address offset: 0x04 */
1756 __IO uint32_t DR; /*!< RNG data register, Address offset: 0x08 */
1757} RNG_TypeDef;
1758
1759/**
1760 * @brief MDIOS
1761 */
1762
1763typedef struct
1764{
1765 __IO uint32_t CR;
1766 __IO uint32_t WRFR;
1767 __IO uint32_t CWRFR;
1768 __IO uint32_t RDFR;
1769 __IO uint32_t CRDFR;
1770 __IO uint32_t SR;
1771 __IO uint32_t CLRFR;
1772 uint32_t RESERVED[57];
1773 __IO uint32_t DINR0;
1774 __IO uint32_t DINR1;
1775 __IO uint32_t DINR2;
1776 __IO uint32_t DINR3;
1777 __IO uint32_t DINR4;
1778 __IO uint32_t DINR5;
1779 __IO uint32_t DINR6;
1780 __IO uint32_t DINR7;
1781 __IO uint32_t DINR8;
1782 __IO uint32_t DINR9;
1783 __IO uint32_t DINR10;
1784 __IO uint32_t DINR11;
1785 __IO uint32_t DINR12;
1786 __IO uint32_t DINR13;
1787 __IO uint32_t DINR14;
1788 __IO uint32_t DINR15;
1789 __IO uint32_t DINR16;
1790 __IO uint32_t DINR17;
1791 __IO uint32_t DINR18;
1792 __IO uint32_t DINR19;
1793 __IO uint32_t DINR20;
1794 __IO uint32_t DINR21;
1795 __IO uint32_t DINR22;
1796 __IO uint32_t DINR23;
1797 __IO uint32_t DINR24;
1798 __IO uint32_t DINR25;
1799 __IO uint32_t DINR26;
1800 __IO uint32_t DINR27;
1801 __IO uint32_t DINR28;
1802 __IO uint32_t DINR29;
1803 __IO uint32_t DINR30;
1804 __IO uint32_t DINR31;
1805 __IO uint32_t DOUTR0;
1806 __IO uint32_t DOUTR1;
1807 __IO uint32_t DOUTR2;
1808 __IO uint32_t DOUTR3;
1809 __IO uint32_t DOUTR4;
1810 __IO uint32_t DOUTR5;
1811 __IO uint32_t DOUTR6;
1812 __IO uint32_t DOUTR7;
1813 __IO uint32_t DOUTR8;
1814 __IO uint32_t DOUTR9;
1815 __IO uint32_t DOUTR10;
1816 __IO uint32_t DOUTR11;
1817 __IO uint32_t DOUTR12;
1818 __IO uint32_t DOUTR13;
1819 __IO uint32_t DOUTR14;
1820 __IO uint32_t DOUTR15;
1821 __IO uint32_t DOUTR16;
1822 __IO uint32_t DOUTR17;
1823 __IO uint32_t DOUTR18;
1824 __IO uint32_t DOUTR19;
1825 __IO uint32_t DOUTR20;
1826 __IO uint32_t DOUTR21;
1827 __IO uint32_t DOUTR22;
1828 __IO uint32_t DOUTR23;
1829 __IO uint32_t DOUTR24;
1830 __IO uint32_t DOUTR25;
1831 __IO uint32_t DOUTR26;
1832 __IO uint32_t DOUTR27;
1833 __IO uint32_t DOUTR28;
1834 __IO uint32_t DOUTR29;
1835 __IO uint32_t DOUTR30;
1836 __IO uint32_t DOUTR31;
1837} MDIOS_TypeDef;
1838
1839
1840/**
1841 * @brief USB_OTG_Core_Registers
1842 */
1843typedef struct
1844{
1845 __IO uint32_t GOTGCTL; /*!< USB_OTG Control and Status Register 000h */
1846 __IO uint32_t GOTGINT; /*!< USB_OTG Interrupt Register 004h */
1847 __IO uint32_t GAHBCFG; /*!< Core AHB Configuration Register 008h */
1848 __IO uint32_t GUSBCFG; /*!< Core USB Configuration Register 00Ch */
1849 __IO uint32_t GRSTCTL; /*!< Core Reset Register 010h */
1850 __IO uint32_t GINTSTS; /*!< Core Interrupt Register 014h */
1851 __IO uint32_t GINTMSK; /*!< Core Interrupt Mask Register 018h */
1852 __IO uint32_t GRXSTSR; /*!< Receive Sts Q Read Register 01Ch */
1853 __IO uint32_t GRXSTSP; /*!< Receive Sts Q Read & POP Register 020h */
1854 __IO uint32_t GRXFSIZ; /*!< Receive FIFO Size Register 024h */
1855 __IO uint32_t DIEPTXF0_HNPTXFSIZ; /*!< EP0 / Non Periodic Tx FIFO Size Register 028h */
1856 __IO uint32_t HNPTXSTS; /*!< Non Periodic Tx FIFO/Queue Sts reg 02Ch */
1857 uint32_t Reserved30[2]; /*!< Reserved 030h */
1858 __IO uint32_t GCCFG; /*!< General Purpose IO Register 038h */
1859 __IO uint32_t CID; /*!< User ID Register 03Ch */
1860 __IO uint32_t GSNPSID; /* USB_OTG core ID 040h*/
1861 __IO uint32_t GHWCFG1; /* User HW config1 044h*/
1862 __IO uint32_t GHWCFG2; /* User HW config2 048h*/
1863 __IO uint32_t GHWCFG3; /*!< User HW config3 04Ch */
1864 uint32_t Reserved6; /*!< Reserved 050h */
1865 __IO uint32_t GLPMCFG; /*!< LPM Register 054h */
1866 __IO uint32_t GPWRDN; /*!< Power Down Register 058h */
1867 __IO uint32_t GDFIFOCFG; /*!< DFIFO Software Config Register 05Ch */
1868 __IO uint32_t GADPCTL; /*!< ADP Timer, Control and Status Register 60Ch */
1869 uint32_t Reserved43[39]; /*!< Reserved 058h-0FFh */
1870 __IO uint32_t HPTXFSIZ; /*!< Host Periodic Tx FIFO Size Reg 100h */
1871 __IO uint32_t DIEPTXF[0x0F]; /*!< dev Periodic Transmit FIFO */
1872} USB_OTG_GlobalTypeDef;
1873
1874
1875/**
1876 * @brief USB_OTG_device_Registers
1877 */
1878typedef struct
1879{
1880 __IO uint32_t DCFG; /*!< dev Configuration Register 800h */
1881 __IO uint32_t DCTL; /*!< dev Control Register 804h */
1882 __IO uint32_t DSTS; /*!< dev Status Register (RO) 808h */
1883 uint32_t Reserved0C; /*!< Reserved 80Ch */
1884 __IO uint32_t DIEPMSK; /*!< dev IN Endpoint Mask 810h */
1885 __IO uint32_t DOEPMSK; /*!< dev OUT Endpoint Mask 814h */
1886 __IO uint32_t DAINT; /*!< dev All Endpoints Itr Reg 818h */
1887 __IO uint32_t DAINTMSK; /*!< dev All Endpoints Itr Mask 81Ch */
1888 uint32_t Reserved20; /*!< Reserved 820h */
1889 uint32_t Reserved9; /*!< Reserved 824h */
1890 __IO uint32_t DVBUSDIS; /*!< dev VBUS discharge Register 828h */
1891 __IO uint32_t DVBUSPULSE; /*!< dev VBUS Pulse Register 82Ch */
1892 __IO uint32_t DTHRCTL; /*!< dev threshold 830h */
1893 __IO uint32_t DIEPEMPMSK; /*!< dev empty msk 834h */
1894 __IO uint32_t DEACHINT; /*!< dedicated EP interrupt 838h */
1895 __IO uint32_t DEACHMSK; /*!< dedicated EP msk 83Ch */
1896 uint32_t Reserved40; /*!< dedicated EP mask 840h */
1897 __IO uint32_t DINEP1MSK; /*!< dedicated EP mask 844h */
1898 uint32_t Reserved44[15]; /*!< Reserved 844-87Ch */
1899 __IO uint32_t DOUTEP1MSK; /*!< dedicated EP msk 884h */
1900} USB_OTG_DeviceTypeDef;
1901
1902
1903/**
1904 * @brief USB_OTG_IN_Endpoint-Specific_Register
1905 */
1906typedef struct
1907{
1908 __IO uint32_t DIEPCTL; /*!< dev IN Endpoint Control Reg 900h + (ep_num * 20h) + 00h */
1909 uint32_t Reserved04; /*!< Reserved 900h + (ep_num * 20h) + 04h */
1910 __IO uint32_t DIEPINT; /*!< dev IN Endpoint Itr Reg 900h + (ep_num * 20h) + 08h */
1911 uint32_t Reserved0C; /*!< Reserved 900h + (ep_num * 20h) + 0Ch */
1912 __IO uint32_t DIEPTSIZ; /*!< IN Endpoint Txfer Size 900h + (ep_num * 20h) + 10h */
1913 __IO uint32_t DIEPDMA; /*!< IN Endpoint DMA Address Reg 900h + (ep_num * 20h) + 14h */
1914 __IO uint32_t DTXFSTS; /*!< IN Endpoint Tx FIFO Status Reg 900h + (ep_num * 20h) + 18h */
1915 uint32_t Reserved18; /*!< Reserved 900h+(ep_num*20h)+1Ch-900h+ (ep_num * 20h) + 1Ch */
1916} USB_OTG_INEndpointTypeDef;
1917
1918
1919/**
1920 * @brief USB_OTG_OUT_Endpoint-Specific_Registers
1921 */
1922typedef struct
1923{
1924 __IO uint32_t DOEPCTL; /*!< dev OUT Endpoint Control Reg B00h + (ep_num * 20h) + 00h */
1925 uint32_t Reserved04; /*!< Reserved B00h + (ep_num * 20h) + 04h */
1926 __IO uint32_t DOEPINT; /*!< dev OUT Endpoint Itr Reg B00h + (ep_num * 20h) + 08h */
1927 uint32_t Reserved0C; /*!< Reserved B00h + (ep_num * 20h) + 0Ch */
1928 __IO uint32_t DOEPTSIZ; /*!< dev OUT Endpoint Txfer Size B00h + (ep_num * 20h) + 10h */
1929 __IO uint32_t DOEPDMA; /*!< dev OUT Endpoint DMA Address B00h + (ep_num * 20h) + 14h */
1930 uint32_t Reserved18[2]; /*!< Reserved B00h + (ep_num * 20h) + 18h - B00h + (ep_num * 20h) + 1Ch */
1931} USB_OTG_OUTEndpointTypeDef;
1932
1933
1934/**
1935 * @brief USB_OTG_Host_Mode_Register_Structures
1936 */
1937typedef struct
1938{
1939 __IO uint32_t HCFG; /*!< Host Configuration Register 400h */
1940 __IO uint32_t HFIR; /*!< Host Frame Interval Register 404h */
1941 __IO uint32_t HFNUM; /*!< Host Frame Nbr/Frame Remaining 408h */
1942 uint32_t Reserved40C; /*!< Reserved 40Ch */
1943 __IO uint32_t HPTXSTS; /*!< Host Periodic Tx FIFO/ Queue Status 410h */
1944 __IO uint32_t HAINT; /*!< Host All Channels Interrupt Register 414h */
1945 __IO uint32_t HAINTMSK; /*!< Host All Channels Interrupt Mask 418h */
1946} USB_OTG_HostTypeDef;
1947
1948/**
1949 * @brief USB_OTG_Host_Channel_Specific_Registers
1950 */
1951typedef struct
1952{
1953 __IO uint32_t HCCHAR; /*!< Host Channel Characteristics Register 500h */
1954 __IO uint32_t HCSPLT; /*!< Host Channel Split Control Register 504h */
1955 __IO uint32_t HCINT; /*!< Host Channel Interrupt Register 508h */
1956 __IO uint32_t HCINTMSK; /*!< Host Channel Interrupt Mask Register 50Ch */
1957 __IO uint32_t HCTSIZ; /*!< Host Channel Transfer Size Register 510h */
1958 __IO uint32_t HCDMA; /*!< Host Channel DMA Address Register 514h */
1959 uint32_t Reserved[2]; /*!< Reserved */
1960} USB_OTG_HostChannelTypeDef;
1961/**
1962 * @}
1963 */
1964
1965
1966/** @addtogroup Peripheral_memory_map
1967 * @{
1968 */
1969#define D1_ITCMRAM_BASE (0x00000000UL) /*!< Base address of : 64KB RAM reserved for CPU execution/instruction accessible over ITCM */
1970#define D1_ITCMICP_BASE (0x00100000UL) /*!< Base address of : (up to 128KB) embedded Test FLASH memory accessible over ITCM */
1971#define D1_DTCMRAM_BASE (0x20000000UL) /*!< Base address of : 128KB system data RAM accessible over DTCM */
1972#define D1_AXIFLASH_BASE (0x08000000UL) /*!< Base address of : (up to 2 MB) embedded FLASH memory accessible over AXI */
1973#define D1_AXIICP_BASE (0x1FF00000UL) /*!< Base address of : (up to 128KB) embedded Test FLASH memory accessible over AXI */
1974#define D1_AXISRAM_BASE (0x24000000UL) /*!< Base address of : (up to 512KB) system data RAM accessible over over AXI */
1975
1976#define D2_AXISRAM_BASE (0x10000000UL) /*!< Base address of : (up to 288KB) system data RAM accessible over over AXI */
1977#define D2_AHBSRAM_BASE (0x30000000UL) /*!< Base address of : (up to 288KB) system data RAM accessible over over AXI->AHB Bridge */
1978
1979#define D3_BKPSRAM_BASE (0x38800000UL) /*!< Base address of : Backup SRAM(4 KB) over AXI->AHB Bridge */
1980#define D3_SRAM_BASE (0x38000000UL) /*!< Base address of : Backup SRAM(64 KB) over AXI->AHB Bridge */
1981
1982#define PERIPH_BASE (0x40000000UL) /*!< Base address of : AHB/APB Peripherals */
1983#define QSPI_BASE (0x90000000UL) /*!< Base address of : QSPI memories accessible over AXI */
1984
1985#define FLASH_BANK1_BASE (0x08000000UL) /*!< Base address of : (up to 1 MB) Flash Bank1 accessible over AXI */
1986#define FLASH_BANK2_BASE (0x08100000UL) /*!< Base address of : (up to 1 MB) Flash Bank2 accessible over AXI */
1987#define FLASH_END (0x081FFFFFUL) /*!< FLASH end address */
1988
1989/* Legacy define */
1990#define FLASH_BASE FLASH_BANK1_BASE
1991
1992/*!< Device electronic signature memory map */
1993#define UID_BASE (0x1FF1E800UL) /*!< Unique device ID register base address */
1994#define FLASHSIZE_BASE (0x1FF1E880UL) /*!< FLASH Size register base address */
1995
1996
1997/*!< Peripheral memory map */
1998#define D2_APB1PERIPH_BASE PERIPH_BASE
1999#define D2_APB2PERIPH_BASE (PERIPH_BASE + 0x00010000UL)
2000#define D2_AHB1PERIPH_BASE (PERIPH_BASE + 0x00020000UL)
2001#define D2_AHB2PERIPH_BASE (PERIPH_BASE + 0x08020000UL)
2002
2003#define D1_APB1PERIPH_BASE (PERIPH_BASE + 0x10000000UL)
2004#define D1_AHB1PERIPH_BASE (PERIPH_BASE + 0x12000000UL)
2005
2006#define D3_APB1PERIPH_BASE (PERIPH_BASE + 0x18000000UL)
2007#define D3_AHB1PERIPH_BASE (PERIPH_BASE + 0x18020000UL)
2008
2009/*!< Legacy Peripheral memory map */
2010#define APB1PERIPH_BASE PERIPH_BASE
2011#define APB2PERIPH_BASE (PERIPH_BASE + 0x00010000UL)
2012#define AHB1PERIPH_BASE (PERIPH_BASE + 0x00020000UL)
2013#define AHB2PERIPH_BASE (PERIPH_BASE + 0x08000000UL)
2014
2015
2016/*!< D1_AHB1PERIPH peripherals */
2017
2018#define MDMA_BASE (D1_AHB1PERIPH_BASE + 0x0000UL)
2019#define DMA2D_BASE (D1_AHB1PERIPH_BASE + 0x1000UL)
2020#define JPGDEC_BASE (D1_AHB1PERIPH_BASE + 0x3000UL)
2021#define FLASH_R_BASE (D1_AHB1PERIPH_BASE + 0x2000UL)
2022#define FMC_R_BASE (D1_AHB1PERIPH_BASE + 0x4000UL)
2023#define QSPI_R_BASE (D1_AHB1PERIPH_BASE + 0x5000UL)
2024#define DLYB_QSPI_BASE (D1_AHB1PERIPH_BASE + 0x6000UL)
2025#define SDMMC1_BASE (D1_AHB1PERIPH_BASE + 0x7000UL)
2026#define DLYB_SDMMC1_BASE (D1_AHB1PERIPH_BASE + 0x8000UL)
2027#define RAMECC1_BASE (D1_AHB1PERIPH_BASE + 0x9000UL)
2028
2029/*!< D2_AHB1PERIPH peripherals */
2030
2031#define DMA1_BASE (D2_AHB1PERIPH_BASE + 0x0000UL)
2032#define DMA2_BASE (D2_AHB1PERIPH_BASE + 0x0400UL)
2033#define DMAMUX1_BASE (D2_AHB1PERIPH_BASE + 0x0800UL)
2034#define ADC1_BASE (D2_AHB1PERIPH_BASE + 0x2000UL)
2035#define ADC2_BASE (D2_AHB1PERIPH_BASE + 0x2100UL)
2036#define ADC12_COMMON_BASE (D2_AHB1PERIPH_BASE + 0x2300UL)
2037#define ETH_BASE (D2_AHB1PERIPH_BASE + 0x8000UL)
2038#define ETH_MAC_BASE (ETH_BASE)
2039
2040/*!< USB registers base address */
2041#define USB1_OTG_HS_PERIPH_BASE (0x40040000UL)
2042#define USB2_OTG_FS_PERIPH_BASE (0x40080000UL)
2043#define USB_OTG_GLOBAL_BASE (0x000UL)
2044#define USB_OTG_DEVICE_BASE (0x800UL)
2045#define USB_OTG_IN_ENDPOINT_BASE (0x900UL)
2046#define USB_OTG_OUT_ENDPOINT_BASE (0xB00UL)
2047#define USB_OTG_EP_REG_SIZE (0x20UL)
2048#define USB_OTG_HOST_BASE (0x400UL)
2049#define USB_OTG_HOST_PORT_BASE (0x440UL)
2050#define USB_OTG_HOST_CHANNEL_BASE (0x500UL)
2051#define USB_OTG_HOST_CHANNEL_SIZE (0x20UL)
2052#define USB_OTG_PCGCCTL_BASE (0xE00UL)
2053#define USB_OTG_FIFO_BASE (0x1000UL)
2054#define USB_OTG_FIFO_SIZE (0x1000UL)
2055
2056/*!< D2_AHB2PERIPH peripherals */
2057
2058#define DCMI_BASE (D2_AHB2PERIPH_BASE + 0x0000UL)
2059#define RNG_BASE (D2_AHB2PERIPH_BASE + 0x1800UL)
2060#define SDMMC2_BASE (D2_AHB2PERIPH_BASE + 0x2400UL)
2061#define DLYB_SDMMC2_BASE (D2_AHB2PERIPH_BASE + 0x2800UL)
2062#define RAMECC2_BASE (D2_AHB2PERIPH_BASE + 0x3000UL)
2063
2064/*!< D3_AHB1PERIPH peripherals */
2065#define GPIOA_BASE (D3_AHB1PERIPH_BASE + 0x0000UL)
2066#define GPIOB_BASE (D3_AHB1PERIPH_BASE + 0x0400UL)
2067#define GPIOC_BASE (D3_AHB1PERIPH_BASE + 0x0800UL)
2068#define GPIOD_BASE (D3_AHB1PERIPH_BASE + 0x0C00UL)
2069#define GPIOE_BASE (D3_AHB1PERIPH_BASE + 0x1000UL)
2070#define GPIOF_BASE (D3_AHB1PERIPH_BASE + 0x1400UL)
2071#define GPIOG_BASE (D3_AHB1PERIPH_BASE + 0x1800UL)
2072#define GPIOH_BASE (D3_AHB1PERIPH_BASE + 0x1C00UL)
2073#define GPIOI_BASE (D3_AHB1PERIPH_BASE + 0x2000UL)
2074#define GPIOJ_BASE (D3_AHB1PERIPH_BASE + 0x2400UL)
2075#define GPIOK_BASE (D3_AHB1PERIPH_BASE + 0x2800UL)
2076#define RCC_BASE (D3_AHB1PERIPH_BASE + 0x4400UL)
2077#define PWR_BASE (D3_AHB1PERIPH_BASE + 0x4800UL)
2078#define CRC_BASE (D3_AHB1PERIPH_BASE + 0x4C00UL)
2079#define BDMA_BASE (D3_AHB1PERIPH_BASE + 0x5400UL)
2080#define DMAMUX2_BASE (D3_AHB1PERIPH_BASE + 0x5800UL)
2081#define ADC3_BASE (D3_AHB1PERIPH_BASE + 0x6000UL)
2082#define ADC3_COMMON_BASE (D3_AHB1PERIPH_BASE + 0x6300UL)
2083#define HSEM_BASE (D3_AHB1PERIPH_BASE + 0x6400UL)
2084#define RAMECC3_BASE (D3_AHB1PERIPH_BASE + 0x7000UL)
2085
2086/*!< D1_APB1PERIPH peripherals */
2087#define LTDC_BASE (D1_APB1PERIPH_BASE + 0x1000UL)
2088#define LTDC_Layer1_BASE (LTDC_BASE + 0x84UL)
2089#define LTDC_Layer2_BASE (LTDC_BASE + 0x104UL)
2090#define WWDG1_BASE (D1_APB1PERIPH_BASE + 0x3000UL)
2091
2092/*!< D2_APB1PERIPH peripherals */
2093#define TIM2_BASE (D2_APB1PERIPH_BASE + 0x0000UL)
2094#define TIM3_BASE (D2_APB1PERIPH_BASE + 0x0400UL)
2095#define TIM4_BASE (D2_APB1PERIPH_BASE + 0x0800UL)
2096#define TIM5_BASE (D2_APB1PERIPH_BASE + 0x0C00UL)
2097#define TIM6_BASE (D2_APB1PERIPH_BASE + 0x1000UL)
2098#define TIM7_BASE (D2_APB1PERIPH_BASE + 0x1400UL)
2099#define TIM12_BASE (D2_APB1PERIPH_BASE + 0x1800UL)
2100#define TIM13_BASE (D2_APB1PERIPH_BASE + 0x1C00UL)
2101#define TIM14_BASE (D2_APB1PERIPH_BASE + 0x2000UL)
2102#define LPTIM1_BASE (D2_APB1PERIPH_BASE + 0x2400UL)
2103
2104
2105#define SPI2_BASE (D2_APB1PERIPH_BASE + 0x3800UL)
2106#define SPI3_BASE (D2_APB1PERIPH_BASE + 0x3C00UL)
2107#define SPDIFRX_BASE (D2_APB1PERIPH_BASE + 0x4000UL)
2108#define USART2_BASE (D2_APB1PERIPH_BASE + 0x4400UL)
2109#define USART3_BASE (D2_APB1PERIPH_BASE + 0x4800UL)
2110#define UART4_BASE (D2_APB1PERIPH_BASE + 0x4C00UL)
2111#define UART5_BASE (D2_APB1PERIPH_BASE + 0x5000UL)
2112#define I2C1_BASE (D2_APB1PERIPH_BASE + 0x5400UL)
2113#define I2C2_BASE (D2_APB1PERIPH_BASE + 0x5800UL)
2114#define I2C3_BASE (D2_APB1PERIPH_BASE + 0x5C00UL)
2115#define CEC_BASE (D2_APB1PERIPH_BASE + 0x6C00UL)
2116#define DAC1_BASE (D2_APB1PERIPH_BASE + 0x7400UL)
2117#define UART7_BASE (D2_APB1PERIPH_BASE + 0x7800UL)
2118#define UART8_BASE (D2_APB1PERIPH_BASE + 0x7C00UL)
2119#define CRS_BASE (D2_APB1PERIPH_BASE + 0x8400UL)
2120#define SWPMI1_BASE (D2_APB1PERIPH_BASE + 0x8800UL)
2121#define OPAMP_BASE (D2_APB1PERIPH_BASE + 0x9000UL)
2122#define OPAMP1_BASE (D2_APB1PERIPH_BASE + 0x9000UL)
2123#define OPAMP2_BASE (D2_APB1PERIPH_BASE + 0x9010UL)
2124#define MDIOS_BASE (D2_APB1PERIPH_BASE + 0x9400UL)
2125#define FDCAN1_BASE (D2_APB1PERIPH_BASE + 0xA000UL)
2126#define FDCAN2_BASE (D2_APB1PERIPH_BASE + 0xA400UL)
2127#define FDCAN_CCU_BASE (D2_APB1PERIPH_BASE + 0xA800UL)
2128#define SRAMCAN_BASE (D2_APB1PERIPH_BASE + 0xAC00UL)
2129
2130/*!< D2_APB2PERIPH peripherals */
2131
2132#define TIM1_BASE (D2_APB2PERIPH_BASE + 0x0000UL)
2133#define TIM8_BASE (D2_APB2PERIPH_BASE + 0x0400UL)
2134#define USART1_BASE (D2_APB2PERIPH_BASE + 0x1000UL)
2135#define USART6_BASE (D2_APB2PERIPH_BASE + 0x1400UL)
2136#define SPI1_BASE (D2_APB2PERIPH_BASE + 0x3000UL)
2137#define SPI4_BASE (D2_APB2PERIPH_BASE + 0x3400UL)
2138#define TIM15_BASE (D2_APB2PERIPH_BASE + 0x4000UL)
2139#define TIM16_BASE (D2_APB2PERIPH_BASE + 0x4400UL)
2140#define TIM17_BASE (D2_APB2PERIPH_BASE + 0x4800UL)
2141#define SPI5_BASE (D2_APB2PERIPH_BASE + 0x5000UL)
2142#define SAI1_BASE (D2_APB2PERIPH_BASE + 0x5800UL)
2143#define SAI1_Block_A_BASE (SAI1_BASE + 0x004UL)
2144#define SAI1_Block_B_BASE (SAI1_BASE + 0x024UL)
2145#define SAI2_BASE (D2_APB2PERIPH_BASE + 0x5C00UL)
2146#define SAI2_Block_A_BASE (SAI2_BASE + 0x004UL)
2147#define SAI2_Block_B_BASE (SAI2_BASE + 0x024UL)
2148#define SAI3_BASE (D2_APB2PERIPH_BASE + 0x6000UL)
2149#define SAI3_Block_A_BASE (SAI3_BASE + 0x004UL)
2150#define SAI3_Block_B_BASE (SAI3_BASE + 0x024UL)
2151#define DFSDM1_BASE (D2_APB2PERIPH_BASE + 0x7000UL)
2152#define DFSDM1_Channel0_BASE (DFSDM1_BASE + 0x00UL)
2153#define DFSDM1_Channel1_BASE (DFSDM1_BASE + 0x20UL)
2154#define DFSDM1_Channel2_BASE (DFSDM1_BASE + 0x40UL)
2155#define DFSDM1_Channel3_BASE (DFSDM1_BASE + 0x60UL)
2156#define DFSDM1_Channel4_BASE (DFSDM1_BASE + 0x80UL)
2157#define DFSDM1_Channel5_BASE (DFSDM1_BASE + 0xA0UL)
2158#define DFSDM1_Channel6_BASE (DFSDM1_BASE + 0xC0UL)
2159#define DFSDM1_Channel7_BASE (DFSDM1_BASE + 0xE0UL)
2160#define DFSDM1_Filter0_BASE (DFSDM1_BASE + 0x100UL)
2161#define DFSDM1_Filter1_BASE (DFSDM1_BASE + 0x180UL)
2162#define DFSDM1_Filter2_BASE (DFSDM1_BASE + 0x200UL)
2163#define DFSDM1_Filter3_BASE (DFSDM1_BASE + 0x280UL)
2164#define HRTIM1_BASE (D2_APB2PERIPH_BASE + 0x7400UL)
2165#define HRTIM1_TIMA_BASE (HRTIM1_BASE + 0x00000080UL)
2166#define HRTIM1_TIMB_BASE (HRTIM1_BASE + 0x00000100UL)
2167#define HRTIM1_TIMC_BASE (HRTIM1_BASE + 0x00000180UL)
2168#define HRTIM1_TIMD_BASE (HRTIM1_BASE + 0x00000200UL)
2169#define HRTIM1_TIME_BASE (HRTIM1_BASE + 0x00000280UL)
2170#define HRTIM1_COMMON_BASE (HRTIM1_BASE + 0x00000380UL)
2171
2172
2173/*!< D3_APB1PERIPH peripherals */
2174#define EXTI_BASE (D3_APB1PERIPH_BASE + 0x0000UL)
2175#define EXTI_D1_BASE (EXTI_BASE + 0x0080UL)
2176#define EXTI_D2_BASE (EXTI_BASE + 0x00C0UL)
2177#define SYSCFG_BASE (D3_APB1PERIPH_BASE + 0x0400UL)
2178#define LPUART1_BASE (D3_APB1PERIPH_BASE + 0x0C00UL)
2179#define SPI6_BASE (D3_APB1PERIPH_BASE + 0x1400UL)
2180#define I2C4_BASE (D3_APB1PERIPH_BASE + 0x1C00UL)
2181#define LPTIM2_BASE (D3_APB1PERIPH_BASE + 0x2400UL)
2182#define LPTIM3_BASE (D3_APB1PERIPH_BASE + 0x2800UL)
2183#define LPTIM4_BASE (D3_APB1PERIPH_BASE + 0x2C00UL)
2184#define LPTIM5_BASE (D3_APB1PERIPH_BASE + 0x3000UL)
2185#define COMP12_BASE (D3_APB1PERIPH_BASE + 0x3800UL)
2186#define COMP1_BASE (COMP12_BASE + 0x0CUL)
2187#define COMP2_BASE (COMP12_BASE + 0x10UL)
2188#define VREFBUF_BASE (D3_APB1PERIPH_BASE + 0x3C00UL)
2189#define RTC_BASE (D3_APB1PERIPH_BASE + 0x4000UL)
2190#define IWDG1_BASE (D3_APB1PERIPH_BASE + 0x4800UL)
2191
2192
2193#define SAI4_BASE (D3_APB1PERIPH_BASE + 0x5400UL)
2194#define SAI4_Block_A_BASE (SAI4_BASE + 0x004UL)
2195#define SAI4_Block_B_BASE (SAI4_BASE + 0x024UL)
2196
2197
2198
2199
2200#define BDMA_Channel0_BASE (BDMA_BASE + 0x0008UL)
2201#define BDMA_Channel1_BASE (BDMA_BASE + 0x001CUL)
2202#define BDMA_Channel2_BASE (BDMA_BASE + 0x0030UL)
2203#define BDMA_Channel3_BASE (BDMA_BASE + 0x0044UL)
2204#define BDMA_Channel4_BASE (BDMA_BASE + 0x0058UL)
2205#define BDMA_Channel5_BASE (BDMA_BASE + 0x006CUL)
2206#define BDMA_Channel6_BASE (BDMA_BASE + 0x0080UL)
2207#define BDMA_Channel7_BASE (BDMA_BASE + 0x0094UL)
2208
2209#define DMAMUX2_Channel0_BASE (DMAMUX2_BASE)
2210#define DMAMUX2_Channel1_BASE (DMAMUX2_BASE + 0x0004UL)
2211#define DMAMUX2_Channel2_BASE (DMAMUX2_BASE + 0x0008UL)
2212#define DMAMUX2_Channel3_BASE (DMAMUX2_BASE + 0x000CUL)
2213#define DMAMUX2_Channel4_BASE (DMAMUX2_BASE + 0x0010UL)
2214#define DMAMUX2_Channel5_BASE (DMAMUX2_BASE + 0x0014UL)
2215#define DMAMUX2_Channel6_BASE (DMAMUX2_BASE + 0x0018UL)
2216#define DMAMUX2_Channel7_BASE (DMAMUX2_BASE + 0x001CUL)
2217
2218#define DMAMUX2_RequestGenerator0_BASE (DMAMUX2_BASE + 0x0100UL)
2219#define DMAMUX2_RequestGenerator1_BASE (DMAMUX2_BASE + 0x0104UL)
2220#define DMAMUX2_RequestGenerator2_BASE (DMAMUX2_BASE + 0x0108UL)
2221#define DMAMUX2_RequestGenerator3_BASE (DMAMUX2_BASE + 0x010CUL)
2222#define DMAMUX2_RequestGenerator4_BASE (DMAMUX2_BASE + 0x0110UL)
2223#define DMAMUX2_RequestGenerator5_BASE (DMAMUX2_BASE + 0x0114UL)
2224#define DMAMUX2_RequestGenerator6_BASE (DMAMUX2_BASE + 0x0118UL)
2225#define DMAMUX2_RequestGenerator7_BASE (DMAMUX2_BASE + 0x011CUL)
2226
2227#define DMAMUX2_ChannelStatus_BASE (DMAMUX2_BASE + 0x0080UL)
2228#define DMAMUX2_RequestGenStatus_BASE (DMAMUX2_BASE + 0x0140UL)
2229
2230#define DMA1_Stream0_BASE (DMA1_BASE + 0x010UL)
2231#define DMA1_Stream1_BASE (DMA1_BASE + 0x028UL)
2232#define DMA1_Stream2_BASE (DMA1_BASE + 0x040UL)
2233#define DMA1_Stream3_BASE (DMA1_BASE + 0x058UL)
2234#define DMA1_Stream4_BASE (DMA1_BASE + 0x070UL)
2235#define DMA1_Stream5_BASE (DMA1_BASE + 0x088UL)
2236#define DMA1_Stream6_BASE (DMA1_BASE + 0x0A0UL)
2237#define DMA1_Stream7_BASE (DMA1_BASE + 0x0B8UL)
2238
2239#define DMA2_Stream0_BASE (DMA2_BASE + 0x010UL)
2240#define DMA2_Stream1_BASE (DMA2_BASE + 0x028UL)
2241#define DMA2_Stream2_BASE (DMA2_BASE + 0x040UL)
2242#define DMA2_Stream3_BASE (DMA2_BASE + 0x058UL)
2243#define DMA2_Stream4_BASE (DMA2_BASE + 0x070UL)
2244#define DMA2_Stream5_BASE (DMA2_BASE + 0x088UL)
2245#define DMA2_Stream6_BASE (DMA2_BASE + 0x0A0UL)
2246#define DMA2_Stream7_BASE (DMA2_BASE + 0x0B8UL)
2247
2248#define DMAMUX1_Channel0_BASE (DMAMUX1_BASE)
2249#define DMAMUX1_Channel1_BASE (DMAMUX1_BASE + 0x0004UL)
2250#define DMAMUX1_Channel2_BASE (DMAMUX1_BASE + 0x0008UL)
2251#define DMAMUX1_Channel3_BASE (DMAMUX1_BASE + 0x000CUL)
2252#define DMAMUX1_Channel4_BASE (DMAMUX1_BASE + 0x0010UL)
2253#define DMAMUX1_Channel5_BASE (DMAMUX1_BASE + 0x0014UL)
2254#define DMAMUX1_Channel6_BASE (DMAMUX1_BASE + 0x0018UL)
2255#define DMAMUX1_Channel7_BASE (DMAMUX1_BASE + 0x001CUL)
2256#define DMAMUX1_Channel8_BASE (DMAMUX1_BASE + 0x0020UL)
2257#define DMAMUX1_Channel9_BASE (DMAMUX1_BASE + 0x0024UL)
2258#define DMAMUX1_Channel10_BASE (DMAMUX1_BASE + 0x0028UL)
2259#define DMAMUX1_Channel11_BASE (DMAMUX1_BASE + 0x002CUL)
2260#define DMAMUX1_Channel12_BASE (DMAMUX1_BASE + 0x0030UL)
2261#define DMAMUX1_Channel13_BASE (DMAMUX1_BASE + 0x0034UL)
2262#define DMAMUX1_Channel14_BASE (DMAMUX1_BASE + 0x0038UL)
2263#define DMAMUX1_Channel15_BASE (DMAMUX1_BASE + 0x003CUL)
2264
2265#define DMAMUX1_RequestGenerator0_BASE (DMAMUX1_BASE + 0x0100UL)
2266#define DMAMUX1_RequestGenerator1_BASE (DMAMUX1_BASE + 0x0104UL)
2267#define DMAMUX1_RequestGenerator2_BASE (DMAMUX1_BASE + 0x0108UL)
2268#define DMAMUX1_RequestGenerator3_BASE (DMAMUX1_BASE + 0x010CUL)
2269#define DMAMUX1_RequestGenerator4_BASE (DMAMUX1_BASE + 0x0110UL)
2270#define DMAMUX1_RequestGenerator5_BASE (DMAMUX1_BASE + 0x0114UL)
2271#define DMAMUX1_RequestGenerator6_BASE (DMAMUX1_BASE + 0x0118UL)
2272#define DMAMUX1_RequestGenerator7_BASE (DMAMUX1_BASE + 0x011CUL)
2273
2274#define DMAMUX1_ChannelStatus_BASE (DMAMUX1_BASE + 0x0080UL)
2275#define DMAMUX1_RequestGenStatus_BASE (DMAMUX1_BASE + 0x0140UL)
2276
2277/*!< FMC Banks registers base address */
2278#define FMC_Bank1_R_BASE (FMC_R_BASE + 0x0000UL)
2279#define FMC_Bank1E_R_BASE (FMC_R_BASE + 0x0104UL)
2280#define FMC_Bank2_R_BASE (FMC_R_BASE + 0x0060UL)
2281#define FMC_Bank3_R_BASE (FMC_R_BASE + 0x0080UL)
2282#define FMC_Bank5_6_R_BASE (FMC_R_BASE + 0x0140UL)
2283
2284/* Debug MCU registers base address */
2285#define DBGMCU_BASE (0x5C001000UL)
2286
2287#define MDMA_Channel0_BASE (MDMA_BASE + 0x00000040UL)
2288#define MDMA_Channel1_BASE (MDMA_BASE + 0x00000080UL)
2289#define MDMA_Channel2_BASE (MDMA_BASE + 0x000000C0UL)
2290#define MDMA_Channel3_BASE (MDMA_BASE + 0x00000100UL)
2291#define MDMA_Channel4_BASE (MDMA_BASE + 0x00000140UL)
2292#define MDMA_Channel5_BASE (MDMA_BASE + 0x00000180UL)
2293#define MDMA_Channel6_BASE (MDMA_BASE + 0x000001C0UL)
2294#define MDMA_Channel7_BASE (MDMA_BASE + 0x00000200UL)
2295#define MDMA_Channel8_BASE (MDMA_BASE + 0x00000240UL)
2296#define MDMA_Channel9_BASE (MDMA_BASE + 0x00000280UL)
2297#define MDMA_Channel10_BASE (MDMA_BASE + 0x000002C0UL)
2298#define MDMA_Channel11_BASE (MDMA_BASE + 0x00000300UL)
2299#define MDMA_Channel12_BASE (MDMA_BASE + 0x00000340UL)
2300#define MDMA_Channel13_BASE (MDMA_BASE + 0x00000380UL)
2301#define MDMA_Channel14_BASE (MDMA_BASE + 0x000003C0UL)
2302#define MDMA_Channel15_BASE (MDMA_BASE + 0x00000400UL)
2303
2304#define RAMECC1_Monitor1_BASE (RAMECC1_BASE + 0x20UL)
2305#define RAMECC1_Monitor2_BASE (RAMECC1_BASE + 0x40UL)
2306#define RAMECC1_Monitor3_BASE (RAMECC1_BASE + 0x60UL)
2307#define RAMECC1_Monitor4_BASE (RAMECC1_BASE + 0x80UL)
2308#define RAMECC1_Monitor5_BASE (RAMECC1_BASE + 0xA0UL)
2309
2310#define RAMECC2_Monitor1_BASE (RAMECC2_BASE + 0x20UL)
2311#define RAMECC2_Monitor2_BASE (RAMECC2_BASE + 0x40UL)
2312#define RAMECC2_Monitor3_BASE (RAMECC2_BASE + 0x60UL)
2313#define RAMECC2_Monitor4_BASE (RAMECC2_BASE + 0x80UL)
2314#define RAMECC2_Monitor5_BASE (RAMECC2_BASE + 0xA0UL)
2315
2316#define RAMECC3_Monitor1_BASE (RAMECC3_BASE + 0x20UL)
2317#define RAMECC3_Monitor2_BASE (RAMECC3_BASE + 0x40UL)
2318
2319
2320/**
2321 * @}
2322 */
2323
2324/** @addtogroup Peripheral_declaration
2325 * @{
2326 */
2327#define TIM2 ((TIM_TypeDef *) TIM2_BASE)
2328#define TIM3 ((TIM_TypeDef *) TIM3_BASE)
2329#define TIM4 ((TIM_TypeDef *) TIM4_BASE)
2330#define TIM5 ((TIM_TypeDef *) TIM5_BASE)
2331#define TIM6 ((TIM_TypeDef *) TIM6_BASE)
2332#define TIM7 ((TIM_TypeDef *) TIM7_BASE)
2333#define TIM13 ((TIM_TypeDef *) TIM13_BASE)
2334#define TIM14 ((TIM_TypeDef *) TIM14_BASE)
2335#define VREFBUF ((VREFBUF_TypeDef *) VREFBUF_BASE)
2336#define RTC ((RTC_TypeDef *) RTC_BASE)
2337#define WWDG1 ((WWDG_TypeDef *) WWDG1_BASE)
2338
2339
2340#define IWDG1 ((IWDG_TypeDef *) IWDG1_BASE)
2341#define SPI2 ((SPI_TypeDef *) SPI2_BASE)
2342#define SPI3 ((SPI_TypeDef *) SPI3_BASE)
2343#define SPI4 ((SPI_TypeDef *) SPI4_BASE)
2344#define SPI5 ((SPI_TypeDef *) SPI5_BASE)
2345#define SPI6 ((SPI_TypeDef *) SPI6_BASE)
2346#define USART2 ((USART_TypeDef *) USART2_BASE)
2347#define USART3 ((USART_TypeDef *) USART3_BASE)
2348#define USART6 ((USART_TypeDef *) USART6_BASE)
2349#define UART7 ((USART_TypeDef *) UART7_BASE)
2350#define UART8 ((USART_TypeDef *) UART8_BASE)
2351#define CRS ((CRS_TypeDef *) CRS_BASE)
2352#define UART4 ((USART_TypeDef *) UART4_BASE)
2353#define UART5 ((USART_TypeDef *) UART5_BASE)
2354#define I2C1 ((I2C_TypeDef *) I2C1_BASE)
2355#define I2C2 ((I2C_TypeDef *) I2C2_BASE)
2356#define I2C3 ((I2C_TypeDef *) I2C3_BASE)
2357#define I2C4 ((I2C_TypeDef *) I2C4_BASE)
2358#define FDCAN1 ((FDCAN_GlobalTypeDef *) FDCAN1_BASE)
2359#define FDCAN2 ((FDCAN_GlobalTypeDef *) FDCAN2_BASE)
2360#define FDCAN_CCU ((FDCAN_ClockCalibrationUnit_TypeDef *) FDCAN_CCU_BASE)
2361#define CEC ((CEC_TypeDef *) CEC_BASE)
2362#define LPTIM1 ((LPTIM_TypeDef *) LPTIM1_BASE)
2363#define PWR ((PWR_TypeDef *) PWR_BASE)
2364#define DAC1 ((DAC_TypeDef *) DAC1_BASE)
2365#define LPUART1 ((USART_TypeDef *) LPUART1_BASE)
2366#define SWPMI1 ((SWPMI_TypeDef *) SWPMI1_BASE)
2367#define LPTIM2 ((LPTIM_TypeDef *) LPTIM2_BASE)
2368#define LPTIM3 ((LPTIM_TypeDef *) LPTIM3_BASE)
2369#define LPTIM4 ((LPTIM_TypeDef *) LPTIM4_BASE)
2370#define LPTIM5 ((LPTIM_TypeDef *) LPTIM5_BASE)
2371
2372#define SYSCFG ((SYSCFG_TypeDef *) SYSCFG_BASE)
2373#define COMP12 ((COMPOPT_TypeDef *) COMP12_BASE)
2374#define COMP1 ((COMP_TypeDef *) COMP1_BASE)
2375#define COMP2 ((COMP_TypeDef *) COMP2_BASE)
2376#define COMP12_COMMON ((COMP_Common_TypeDef *) COMP2_BASE)
2377#define OPAMP ((OPAMP_TypeDef *) OPAMP_BASE)
2378#define OPAMP1 ((OPAMP_TypeDef *) OPAMP1_BASE)
2379#define OPAMP2 ((OPAMP_TypeDef *) OPAMP2_BASE)
2380
2381
2382#define EXTI ((EXTI_TypeDef *) EXTI_BASE)
2383#define EXTI_D1 ((EXTI_Core_TypeDef *) EXTI_D1_BASE)
2384#define EXTI_D2 ((EXTI_Core_TypeDef *) EXTI_D2_BASE)
2385#define TIM1 ((TIM_TypeDef *) TIM1_BASE)
2386#define SPI1 ((SPI_TypeDef *) SPI1_BASE)
2387#define TIM8 ((TIM_TypeDef *) TIM8_BASE)
2388#define USART1 ((USART_TypeDef *) USART1_BASE)
2389#define TIM12 ((TIM_TypeDef *) TIM12_BASE)
2390#define TIM15 ((TIM_TypeDef *) TIM15_BASE)
2391#define TIM16 ((TIM_TypeDef *) TIM16_BASE)
2392#define TIM17 ((TIM_TypeDef *) TIM17_BASE)
2393#define HRTIM1 ((HRTIM_TypeDef *) HRTIM1_BASE)
2394#define HRTIM1_TIMA ((HRTIM_Timerx_TypeDef *) HRTIM1_TIMA_BASE)
2395#define HRTIM1_TIMB ((HRTIM_Timerx_TypeDef *) HRTIM1_TIMB_BASE)
2396#define HRTIM1_TIMC ((HRTIM_Timerx_TypeDef *) HRTIM1_TIMC_BASE)
2397#define HRTIM1_TIMD ((HRTIM_Timerx_TypeDef *) HRTIM1_TIMD_BASE)
2398#define HRTIM1_TIME ((HRTIM_Timerx_TypeDef *) HRTIM1_TIME_BASE)
2399#define HRTIM1_COMMON ((HRTIM_Common_TypeDef *) HRTIM1_COMMON_BASE)
2400#define SAI1 ((SAI_TypeDef *) SAI1_BASE)
2401#define SAI1_Block_A ((SAI_Block_TypeDef *)SAI1_Block_A_BASE)
2402#define SAI1_Block_B ((SAI_Block_TypeDef *)SAI1_Block_B_BASE)
2403#define SAI2 ((SAI_TypeDef *) SAI2_BASE)
2404#define SAI2_Block_A ((SAI_Block_TypeDef *)SAI2_Block_A_BASE)
2405#define SAI2_Block_B ((SAI_Block_TypeDef *)SAI2_Block_B_BASE)
2406#define SAI3 ((SAI_TypeDef *) SAI3_BASE)
2407#define SAI3_Block_A ((SAI_Block_TypeDef *)SAI3_Block_A_BASE)
2408#define SAI3_Block_B ((SAI_Block_TypeDef *)SAI3_Block_B_BASE)
2409#define SAI4 ((SAI_TypeDef *) SAI4_BASE)
2410#define SAI4_Block_A ((SAI_Block_TypeDef *)SAI4_Block_A_BASE)
2411#define SAI4_Block_B ((SAI_Block_TypeDef *)SAI4_Block_B_BASE)
2412
2413#define SPDIFRX ((SPDIFRX_TypeDef *) SPDIFRX_BASE)
2414#define DFSDM1_Channel0 ((DFSDM_Channel_TypeDef *) DFSDM1_Channel0_BASE)
2415#define DFSDM1_Channel1 ((DFSDM_Channel_TypeDef *) DFSDM1_Channel1_BASE)
2416#define DFSDM1_Channel2 ((DFSDM_Channel_TypeDef *) DFSDM1_Channel2_BASE)
2417#define DFSDM1_Channel3 ((DFSDM_Channel_TypeDef *) DFSDM1_Channel3_BASE)
2418#define DFSDM1_Channel4 ((DFSDM_Channel_TypeDef *) DFSDM1_Channel4_BASE)
2419#define DFSDM1_Channel5 ((DFSDM_Channel_TypeDef *) DFSDM1_Channel5_BASE)
2420#define DFSDM1_Channel6 ((DFSDM_Channel_TypeDef *) DFSDM1_Channel6_BASE)
2421#define DFSDM1_Channel7 ((DFSDM_Channel_TypeDef *) DFSDM1_Channel7_BASE)
2422#define DFSDM1_Filter0 ((DFSDM_Filter_TypeDef *) DFSDM1_Filter0_BASE)
2423#define DFSDM1_Filter1 ((DFSDM_Filter_TypeDef *) DFSDM1_Filter1_BASE)
2424#define DFSDM1_Filter2 ((DFSDM_Filter_TypeDef *) DFSDM1_Filter2_BASE)
2425#define DFSDM1_Filter3 ((DFSDM_Filter_TypeDef *) DFSDM1_Filter3_BASE)
2426#define DMA2D ((DMA2D_TypeDef *) DMA2D_BASE)
2427#define DCMI ((DCMI_TypeDef *) DCMI_BASE)
2428#define RCC ((RCC_TypeDef *) RCC_BASE)
2429#define FLASH ((FLASH_TypeDef *) FLASH_R_BASE)
2430#define CRC ((CRC_TypeDef *) CRC_BASE)
2431
2432#define GPIOA ((GPIO_TypeDef *) GPIOA_BASE)
2433#define GPIOB ((GPIO_TypeDef *) GPIOB_BASE)
2434#define GPIOC ((GPIO_TypeDef *) GPIOC_BASE)
2435#define GPIOD ((GPIO_TypeDef *) GPIOD_BASE)
2436#define GPIOE ((GPIO_TypeDef *) GPIOE_BASE)
2437#define GPIOF ((GPIO_TypeDef *) GPIOF_BASE)
2438#define GPIOG ((GPIO_TypeDef *) GPIOG_BASE)
2439#define GPIOH ((GPIO_TypeDef *) GPIOH_BASE)
2440#define GPIOI ((GPIO_TypeDef *) GPIOI_BASE)
2441#define GPIOJ ((GPIO_TypeDef *) GPIOJ_BASE)
2442#define GPIOK ((GPIO_TypeDef *) GPIOK_BASE)
2443
2444#define ADC1 ((ADC_TypeDef *) ADC1_BASE)
2445#define ADC2 ((ADC_TypeDef *) ADC2_BASE)
2446#define ADC3 ((ADC_TypeDef *) ADC3_BASE)
2447#define ADC3_COMMON ((ADC_Common_TypeDef *) ADC3_COMMON_BASE)
2448#define ADC12_COMMON ((ADC_Common_TypeDef *) ADC12_COMMON_BASE)
2449
2450#define RNG ((RNG_TypeDef *) RNG_BASE)
2451#define SDMMC2 ((SDMMC_TypeDef *) SDMMC2_BASE)
2452#define DLYB_SDMMC2 ((DLYB_TypeDef *) DLYB_SDMMC2_BASE)
2453
2454#define BDMA ((BDMA_TypeDef *) BDMA_BASE)
2455#define BDMA_Channel0 ((BDMA_Channel_TypeDef *) BDMA_Channel0_BASE)
2456#define BDMA_Channel1 ((BDMA_Channel_TypeDef *) BDMA_Channel1_BASE)
2457#define BDMA_Channel2 ((BDMA_Channel_TypeDef *) BDMA_Channel2_BASE)
2458#define BDMA_Channel3 ((BDMA_Channel_TypeDef *) BDMA_Channel3_BASE)
2459#define BDMA_Channel4 ((BDMA_Channel_TypeDef *) BDMA_Channel4_BASE)
2460#define BDMA_Channel5 ((BDMA_Channel_TypeDef *) BDMA_Channel5_BASE)
2461#define BDMA_Channel6 ((BDMA_Channel_TypeDef *) BDMA_Channel6_BASE)
2462#define BDMA_Channel7 ((BDMA_Channel_TypeDef *) BDMA_Channel7_BASE)
2463
2464#define RAMECC1 ((RAMECC_TypeDef *)RAMECC1_BASE)
2465#define RAMECC1_Monitor1 ((RAMECC_MonitorTypeDef *)RAMECC1_Monitor1_BASE)
2466#define RAMECC1_Monitor2 ((RAMECC_MonitorTypeDef *)RAMECC1_Monitor2_BASE)
2467#define RAMECC1_Monitor3 ((RAMECC_MonitorTypeDef *)RAMECC1_Monitor3_BASE)
2468#define RAMECC1_Monitor4 ((RAMECC_MonitorTypeDef *)RAMECC1_Monitor4_BASE)
2469#define RAMECC1_Monitor5 ((RAMECC_MonitorTypeDef *)RAMECC1_Monitor5_BASE)
2470
2471#define RAMECC2 ((RAMECC_TypeDef *)RAMECC2_BASE)
2472#define RAMECC2_Monitor1 ((RAMECC_MonitorTypeDef *)RAMECC2_Monitor1_BASE)
2473#define RAMECC2_Monitor2 ((RAMECC_MonitorTypeDef *)RAMECC2_Monitor2_BASE)
2474#define RAMECC2_Monitor3 ((RAMECC_MonitorTypeDef *)RAMECC2_Monitor3_BASE)
2475#define RAMECC2_Monitor4 ((RAMECC_MonitorTypeDef *)RAMECC2_Monitor4_BASE)
2476#define RAMECC2_Monitor5 ((RAMECC_MonitorTypeDef *)RAMECC2_Monitor5_BASE)
2477
2478#define RAMECC3 ((RAMECC_TypeDef *)RAMECC3_BASE)
2479#define RAMECC3_Monitor1 ((RAMECC_MonitorTypeDef *)RAMECC3_Monitor1_BASE)
2480#define RAMECC3_Monitor2 ((RAMECC_MonitorTypeDef *)RAMECC3_Monitor2_BASE)
2481
2482#define DMAMUX2 ((DMAMUX_Channel_TypeDef *) DMAMUX2_BASE)
2483#define DMAMUX2_Channel0 ((DMAMUX_Channel_TypeDef *) DMAMUX2_Channel0_BASE)
2484#define DMAMUX2_Channel1 ((DMAMUX_Channel_TypeDef *) DMAMUX2_Channel1_BASE)
2485#define DMAMUX2_Channel2 ((DMAMUX_Channel_TypeDef *) DMAMUX2_Channel2_BASE)
2486#define DMAMUX2_Channel3 ((DMAMUX_Channel_TypeDef *) DMAMUX2_Channel3_BASE)
2487#define DMAMUX2_Channel4 ((DMAMUX_Channel_TypeDef *) DMAMUX2_Channel4_BASE)
2488#define DMAMUX2_Channel5 ((DMAMUX_Channel_TypeDef *) DMAMUX2_Channel5_BASE)
2489#define DMAMUX2_Channel6 ((DMAMUX_Channel_TypeDef *) DMAMUX2_Channel6_BASE)
2490#define DMAMUX2_Channel7 ((DMAMUX_Channel_TypeDef *) DMAMUX2_Channel7_BASE)
2491
2492
2493#define DMAMUX2_RequestGenerator0 ((DMAMUX_RequestGen_TypeDef *) DMAMUX2_RequestGenerator0_BASE)
2494#define DMAMUX2_RequestGenerator1 ((DMAMUX_RequestGen_TypeDef *) DMAMUX2_RequestGenerator1_BASE)
2495#define DMAMUX2_RequestGenerator2 ((DMAMUX_RequestGen_TypeDef *) DMAMUX2_RequestGenerator2_BASE)
2496#define DMAMUX2_RequestGenerator3 ((DMAMUX_RequestGen_TypeDef *) DMAMUX2_RequestGenerator3_BASE)
2497#define DMAMUX2_RequestGenerator4 ((DMAMUX_RequestGen_TypeDef *) DMAMUX2_RequestGenerator4_BASE)
2498#define DMAMUX2_RequestGenerator5 ((DMAMUX_RequestGen_TypeDef *) DMAMUX2_RequestGenerator5_BASE)
2499#define DMAMUX2_RequestGenerator6 ((DMAMUX_RequestGen_TypeDef *) DMAMUX2_RequestGenerator6_BASE)
2500#define DMAMUX2_RequestGenerator7 ((DMAMUX_RequestGen_TypeDef *) DMAMUX2_RequestGenerator7_BASE)
2501
2502#define DMAMUX2_ChannelStatus ((DMAMUX_ChannelStatus_TypeDef *) DMAMUX2_ChannelStatus_BASE)
2503#define DMAMUX2_RequestGenStatus ((DMAMUX_RequestGenStatus_TypeDef *) DMAMUX2_RequestGenStatus_BASE)
2504
2505#define DMA2 ((DMA_TypeDef *) DMA2_BASE)
2506#define DMA2_Stream0 ((DMA_Stream_TypeDef *) DMA2_Stream0_BASE)
2507#define DMA2_Stream1 ((DMA_Stream_TypeDef *) DMA2_Stream1_BASE)
2508#define DMA2_Stream2 ((DMA_Stream_TypeDef *) DMA2_Stream2_BASE)
2509#define DMA2_Stream3 ((DMA_Stream_TypeDef *) DMA2_Stream3_BASE)
2510#define DMA2_Stream4 ((DMA_Stream_TypeDef *) DMA2_Stream4_BASE)
2511#define DMA2_Stream5 ((DMA_Stream_TypeDef *) DMA2_Stream5_BASE)
2512#define DMA2_Stream6 ((DMA_Stream_TypeDef *) DMA2_Stream6_BASE)
2513#define DMA2_Stream7 ((DMA_Stream_TypeDef *) DMA2_Stream7_BASE)
2514
2515#define DMA1 ((DMA_TypeDef *) DMA1_BASE)
2516#define DMA1_Stream0 ((DMA_Stream_TypeDef *) DMA1_Stream0_BASE)
2517#define DMA1_Stream1 ((DMA_Stream_TypeDef *) DMA1_Stream1_BASE)
2518#define DMA1_Stream2 ((DMA_Stream_TypeDef *) DMA1_Stream2_BASE)
2519#define DMA1_Stream3 ((DMA_Stream_TypeDef *) DMA1_Stream3_BASE)
2520#define DMA1_Stream4 ((DMA_Stream_TypeDef *) DMA1_Stream4_BASE)
2521#define DMA1_Stream5 ((DMA_Stream_TypeDef *) DMA1_Stream5_BASE)
2522#define DMA1_Stream6 ((DMA_Stream_TypeDef *) DMA1_Stream6_BASE)
2523#define DMA1_Stream7 ((DMA_Stream_TypeDef *) DMA1_Stream7_BASE)
2524
2525
2526#define DMAMUX1 ((DMAMUX_Channel_TypeDef *) DMAMUX1_BASE)
2527#define DMAMUX1_Channel0 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel0_BASE)
2528#define DMAMUX1_Channel1 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel1_BASE)
2529#define DMAMUX1_Channel2 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel2_BASE)
2530#define DMAMUX1_Channel3 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel3_BASE)
2531#define DMAMUX1_Channel4 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel4_BASE)
2532#define DMAMUX1_Channel5 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel5_BASE)
2533#define DMAMUX1_Channel6 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel6_BASE)
2534#define DMAMUX1_Channel7 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel7_BASE)
2535#define DMAMUX1_Channel8 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel8_BASE)
2536#define DMAMUX1_Channel9 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel9_BASE)
2537#define DMAMUX1_Channel10 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel10_BASE)
2538#define DMAMUX1_Channel11 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel11_BASE)
2539#define DMAMUX1_Channel12 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel12_BASE)
2540#define DMAMUX1_Channel13 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel13_BASE)
2541#define DMAMUX1_Channel14 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel14_BASE)
2542#define DMAMUX1_Channel15 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel15_BASE)
2543
2544#define DMAMUX1_RequestGenerator0 ((DMAMUX_RequestGen_TypeDef *) DMAMUX1_RequestGenerator0_BASE)
2545#define DMAMUX1_RequestGenerator1 ((DMAMUX_RequestGen_TypeDef *) DMAMUX1_RequestGenerator1_BASE)
2546#define DMAMUX1_RequestGenerator2 ((DMAMUX_RequestGen_TypeDef *) DMAMUX1_RequestGenerator2_BASE)
2547#define DMAMUX1_RequestGenerator3 ((DMAMUX_RequestGen_TypeDef *) DMAMUX1_RequestGenerator3_BASE)
2548#define DMAMUX1_RequestGenerator4 ((DMAMUX_RequestGen_TypeDef *) DMAMUX1_RequestGenerator4_BASE)
2549#define DMAMUX1_RequestGenerator5 ((DMAMUX_RequestGen_TypeDef *) DMAMUX1_RequestGenerator5_BASE)
2550#define DMAMUX1_RequestGenerator6 ((DMAMUX_RequestGen_TypeDef *) DMAMUX1_RequestGenerator6_BASE)
2551#define DMAMUX1_RequestGenerator7 ((DMAMUX_RequestGen_TypeDef *) DMAMUX1_RequestGenerator7_BASE)
2552
2553#define DMAMUX1_ChannelStatus ((DMAMUX_ChannelStatus_TypeDef *) DMAMUX1_ChannelStatus_BASE)
2554#define DMAMUX1_RequestGenStatus ((DMAMUX_RequestGenStatus_TypeDef *) DMAMUX1_RequestGenStatus_BASE)
2555
2556
2557#define FMC_Bank1_R ((FMC_Bank1_TypeDef *) FMC_Bank1_R_BASE)
2558#define FMC_Bank1E_R ((FMC_Bank1E_TypeDef *) FMC_Bank1E_R_BASE)
2559#define FMC_Bank2_R ((FMC_Bank2_TypeDef *) FMC_Bank2_R_BASE)
2560#define FMC_Bank3_R ((FMC_Bank3_TypeDef *) FMC_Bank3_R_BASE)
2561#define FMC_Bank5_6_R ((FMC_Bank5_6_TypeDef *) FMC_Bank5_6_R_BASE)
2562
2563
2564#define QUADSPI ((QUADSPI_TypeDef *) QSPI_R_BASE)
2565#define DLYB_QUADSPI ((DLYB_TypeDef *) DLYB_QSPI_BASE)
2566#define SDMMC1 ((SDMMC_TypeDef *) SDMMC1_BASE)
2567#define DLYB_SDMMC1 ((DLYB_TypeDef *) DLYB_SDMMC1_BASE)
2568
2569#define DBGMCU ((DBGMCU_TypeDef *) DBGMCU_BASE)
2570
2571#define JPEG ((JPEG_TypeDef *) JPGDEC_BASE)
2572#define HSEM ((HSEM_TypeDef *) HSEM_BASE)
2573#define HSEM_COMMON ((HSEM_Common_TypeDef *) (HSEM_BASE + 0x100UL))
2574
2575#define LTDC ((LTDC_TypeDef *)LTDC_BASE)
2576#define LTDC_Layer1 ((LTDC_Layer_TypeDef *)LTDC_Layer1_BASE)
2577#define LTDC_Layer2 ((LTDC_Layer_TypeDef *)LTDC_Layer2_BASE)
2578
2579#define MDIOS ((MDIOS_TypeDef *) MDIOS_BASE)
2580
2581#define ETH ((ETH_TypeDef *)ETH_BASE)
2582#define MDMA ((MDMA_TypeDef *)MDMA_BASE)
2583#define MDMA_Channel0 ((MDMA_Channel_TypeDef *)MDMA_Channel0_BASE)
2584#define MDMA_Channel1 ((MDMA_Channel_TypeDef *)MDMA_Channel1_BASE)
2585#define MDMA_Channel2 ((MDMA_Channel_TypeDef *)MDMA_Channel2_BASE)
2586#define MDMA_Channel3 ((MDMA_Channel_TypeDef *)MDMA_Channel3_BASE)
2587#define MDMA_Channel4 ((MDMA_Channel_TypeDef *)MDMA_Channel4_BASE)
2588#define MDMA_Channel5 ((MDMA_Channel_TypeDef *)MDMA_Channel5_BASE)
2589#define MDMA_Channel6 ((MDMA_Channel_TypeDef *)MDMA_Channel6_BASE)
2590#define MDMA_Channel7 ((MDMA_Channel_TypeDef *)MDMA_Channel7_BASE)
2591#define MDMA_Channel8 ((MDMA_Channel_TypeDef *)MDMA_Channel8_BASE)
2592#define MDMA_Channel9 ((MDMA_Channel_TypeDef *)MDMA_Channel9_BASE)
2593#define MDMA_Channel10 ((MDMA_Channel_TypeDef *)MDMA_Channel10_BASE)
2594#define MDMA_Channel11 ((MDMA_Channel_TypeDef *)MDMA_Channel11_BASE)
2595#define MDMA_Channel12 ((MDMA_Channel_TypeDef *)MDMA_Channel12_BASE)
2596#define MDMA_Channel13 ((MDMA_Channel_TypeDef *)MDMA_Channel13_BASE)
2597#define MDMA_Channel14 ((MDMA_Channel_TypeDef *)MDMA_Channel14_BASE)
2598#define MDMA_Channel15 ((MDMA_Channel_TypeDef *)MDMA_Channel15_BASE)
2599
2600
2601#define USB1_OTG_HS ((USB_OTG_GlobalTypeDef *) USB1_OTG_HS_PERIPH_BASE)
2602#define USB2_OTG_FS ((USB_OTG_GlobalTypeDef *) USB2_OTG_FS_PERIPH_BASE)
2603
2604/* Legacy defines */
2605#define USB_OTG_HS USB1_OTG_HS
2606#define USB_OTG_HS_PERIPH_BASE USB1_OTG_HS_PERIPH_BASE
2607#define USB_OTG_FS USB2_OTG_FS
2608#define USB_OTG_FS_PERIPH_BASE USB2_OTG_FS_PERIPH_BASE
2609
2610/**
2611 * @}
2612 */
2613
2614/** @addtogroup Exported_constants
2615 * @{
2616 */
2617
2618 /** @addtogroup Peripheral_Registers_Bits_Definition
2619 * @{
2620 */
2621
2622/******************************************************************************/
2623/* Peripheral Registers_Bits_Definition */
2624/******************************************************************************/
2625
2626/******************************************************************************/
2627/* */
2628/* Analog to Digital Converter */
2629/* */
2630/******************************************************************************/
2631/******************************* ADC VERSION ********************************/
2632#define ADC_VER_V5_X
2633/******************** Bit definition for ADC_ISR register ********************/
2634#define ADC_ISR_ADRDY_Pos (0U)
2635#define ADC_ISR_ADRDY_Msk (0x1UL << ADC_ISR_ADRDY_Pos) /*!< 0x00000001 */
2636#define ADC_ISR_ADRDY ADC_ISR_ADRDY_Msk /*!< ADC Ready (ADRDY) flag */
2637#define ADC_ISR_EOSMP_Pos (1U)
2638#define ADC_ISR_EOSMP_Msk (0x1UL << ADC_ISR_EOSMP_Pos) /*!< 0x00000002 */
2639#define ADC_ISR_EOSMP ADC_ISR_EOSMP_Msk /*!< ADC End of Sampling flag */
2640#define ADC_ISR_EOC_Pos (2U)
2641#define ADC_ISR_EOC_Msk (0x1UL << ADC_ISR_EOC_Pos) /*!< 0x00000004 */
2642#define ADC_ISR_EOC ADC_ISR_EOC_Msk /*!< ADC End of Regular Conversion flag */
2643#define ADC_ISR_EOS_Pos (3U)
2644#define ADC_ISR_EOS_Msk (0x1UL << ADC_ISR_EOS_Pos) /*!< 0x00000008 */
2645#define ADC_ISR_EOS ADC_ISR_EOS_Msk /*!< ADC End of Regular sequence of Conversions flag */
2646#define ADC_ISR_OVR_Pos (4U)
2647#define ADC_ISR_OVR_Msk (0x1UL << ADC_ISR_OVR_Pos) /*!< 0x00000010 */
2648#define ADC_ISR_OVR ADC_ISR_OVR_Msk /*!< ADC overrun flag */
2649#define ADC_ISR_JEOC_Pos (5U)
2650#define ADC_ISR_JEOC_Msk (0x1UL << ADC_ISR_JEOC_Pos) /*!< 0x00000020 */
2651#define ADC_ISR_JEOC ADC_ISR_JEOC_Msk /*!< ADC End of Injected Conversion flag */
2652#define ADC_ISR_JEOS_Pos (6U)
2653#define ADC_ISR_JEOS_Msk (0x1UL << ADC_ISR_JEOS_Pos) /*!< 0x00000040 */
2654#define ADC_ISR_JEOS ADC_ISR_JEOS_Msk /*!< ADC End of Injected sequence of Conversions flag */
2655#define ADC_ISR_AWD1_Pos (7U)
2656#define ADC_ISR_AWD1_Msk (0x1UL << ADC_ISR_AWD1_Pos) /*!< 0x00000080 */
2657#define ADC_ISR_AWD1 ADC_ISR_AWD1_Msk /*!< ADC Analog watchdog 1 flag */
2658#define ADC_ISR_AWD2_Pos (8U)
2659#define ADC_ISR_AWD2_Msk (0x1UL << ADC_ISR_AWD2_Pos) /*!< 0x00000100 */
2660#define ADC_ISR_AWD2 ADC_ISR_AWD2_Msk /*!< ADC Analog watchdog 2 flag */
2661#define ADC_ISR_AWD3_Pos (9U)
2662#define ADC_ISR_AWD3_Msk (0x1UL << ADC_ISR_AWD3_Pos) /*!< 0x00000200 */
2663#define ADC_ISR_AWD3 ADC_ISR_AWD3_Msk /*!< ADC Analog watchdog 3 flag */
2664#define ADC_ISR_JQOVF_Pos (10U)
2665#define ADC_ISR_JQOVF_Msk (0x1UL << ADC_ISR_JQOVF_Pos) /*!< 0x00000400 */
2666#define ADC_ISR_JQOVF ADC_ISR_JQOVF_Msk /*!< ADC Injected Context Queue Overflow flag */
2667
2668/******************** Bit definition for ADC_IER register ********************/
2669#define ADC_IER_ADRDYIE_Pos (0U)
2670#define ADC_IER_ADRDYIE_Msk (0x1UL << ADC_IER_ADRDYIE_Pos) /*!< 0x00000001 */
2671#define ADC_IER_ADRDYIE ADC_IER_ADRDYIE_Msk /*!< ADC Ready (ADRDY) interrupt source */
2672#define ADC_IER_EOSMPIE_Pos (1U)
2673#define ADC_IER_EOSMPIE_Msk (0x1UL << ADC_IER_EOSMPIE_Pos) /*!< 0x00000002 */
2674#define ADC_IER_EOSMPIE ADC_IER_EOSMPIE_Msk /*!< ADC End of Sampling interrupt source */
2675#define ADC_IER_EOCIE_Pos (2U)
2676#define ADC_IER_EOCIE_Msk (0x1UL << ADC_IER_EOCIE_Pos) /*!< 0x00000004 */
2677#define ADC_IER_EOCIE ADC_IER_EOCIE_Msk /*!< ADC End of Regular Conversion interrupt source */
2678#define ADC_IER_EOSIE_Pos (3U)
2679#define ADC_IER_EOSIE_Msk (0x1UL << ADC_IER_EOSIE_Pos) /*!< 0x00000008 */
2680#define ADC_IER_EOSIE ADC_IER_EOSIE_Msk /*!< ADC End of Regular sequence of Conversions interrupt source */
2681#define ADC_IER_OVRIE_Pos (4U)
2682#define ADC_IER_OVRIE_Msk (0x1UL << ADC_IER_OVRIE_Pos) /*!< 0x00000010 */
2683#define ADC_IER_OVRIE ADC_IER_OVRIE_Msk /*!< ADC overrun interrupt source */
2684#define ADC_IER_JEOCIE_Pos (5U)
2685#define ADC_IER_JEOCIE_Msk (0x1UL << ADC_IER_JEOCIE_Pos) /*!< 0x00000020 */
2686#define ADC_IER_JEOCIE ADC_IER_JEOCIE_Msk /*!< ADC End of Injected Conversion interrupt source */
2687#define ADC_IER_JEOSIE_Pos (6U)
2688#define ADC_IER_JEOSIE_Msk (0x1UL << ADC_IER_JEOSIE_Pos) /*!< 0x00000040 */
2689#define ADC_IER_JEOSIE ADC_IER_JEOSIE_Msk /*!< ADC End of Injected sequence of Conversions interrupt source */
2690#define ADC_IER_AWD1IE_Pos (7U)
2691#define ADC_IER_AWD1IE_Msk (0x1UL << ADC_IER_AWD1IE_Pos) /*!< 0x00000080 */
2692#define ADC_IER_AWD1IE ADC_IER_AWD1IE_Msk /*!< ADC Analog watchdog 1 interrupt source */
2693#define ADC_IER_AWD2IE_Pos (8U)
2694#define ADC_IER_AWD2IE_Msk (0x1UL << ADC_IER_AWD2IE_Pos) /*!< 0x00000100 */
2695#define ADC_IER_AWD2IE ADC_IER_AWD2IE_Msk /*!< ADC Analog watchdog 2 interrupt source */
2696#define ADC_IER_AWD3IE_Pos (9U)
2697#define ADC_IER_AWD3IE_Msk (0x1UL << ADC_IER_AWD3IE_Pos) /*!< 0x00000200 */
2698#define ADC_IER_AWD3IE ADC_IER_AWD3IE_Msk /*!< ADC Analog watchdog 3 interrupt source */
2699#define ADC_IER_JQOVFIE_Pos (10U)
2700#define ADC_IER_JQOVFIE_Msk (0x1UL << ADC_IER_JQOVFIE_Pos) /*!< 0x00000400 */
2701#define ADC_IER_JQOVFIE ADC_IER_JQOVFIE_Msk /*!< ADC Injected Context Queue Overflow interrupt source */
2702
2703/******************** Bit definition for ADC_CR register ********************/
2704#define ADC_CR_ADEN_Pos (0U)
2705#define ADC_CR_ADEN_Msk (0x1UL << ADC_CR_ADEN_Pos) /*!< 0x00000001 */
2706#define ADC_CR_ADEN ADC_CR_ADEN_Msk /*!< ADC Enable control */
2707#define ADC_CR_ADDIS_Pos (1U)
2708#define ADC_CR_ADDIS_Msk (0x1UL << ADC_CR_ADDIS_Pos) /*!< 0x00000002 */
2709#define ADC_CR_ADDIS ADC_CR_ADDIS_Msk /*!< ADC Disable command */
2710#define ADC_CR_ADSTART_Pos (2U)
2711#define ADC_CR_ADSTART_Msk (0x1UL << ADC_CR_ADSTART_Pos) /*!< 0x00000004 */
2712#define ADC_CR_ADSTART ADC_CR_ADSTART_Msk /*!< ADC Start of Regular conversion */
2713#define ADC_CR_JADSTART_Pos (3U)
2714#define ADC_CR_JADSTART_Msk (0x1UL << ADC_CR_JADSTART_Pos) /*!< 0x00000008 */
2715#define ADC_CR_JADSTART ADC_CR_JADSTART_Msk /*!< ADC Start of injected conversion */
2716#define ADC_CR_ADSTP_Pos (4U)
2717#define ADC_CR_ADSTP_Msk (0x1UL << ADC_CR_ADSTP_Pos) /*!< 0x00000010 */
2718#define ADC_CR_ADSTP ADC_CR_ADSTP_Msk /*!< ADC Stop of Regular conversion */
2719#define ADC_CR_JADSTP_Pos (5U)
2720#define ADC_CR_JADSTP_Msk (0x1UL << ADC_CR_JADSTP_Pos) /*!< 0x00000020 */
2721#define ADC_CR_JADSTP ADC_CR_JADSTP_Msk /*!< ADC Stop of injected conversion */
2722#define ADC_CR_BOOST_Pos (8U)
2723#define ADC_CR_BOOST_Msk (0x3UL << ADC_CR_BOOST_Pos) /*!< 0x00000300 */
2724#define ADC_CR_BOOST ADC_CR_BOOST_Msk /*!< ADC Boost Mode configuration */
2725#define ADC_CR_BOOST_0 (0x1UL << ADC_CR_BOOST_Pos) /*!< 0x00000100 */
2726#define ADC_CR_BOOST_1 (0x2UL << ADC_CR_BOOST_Pos) /*!< 0x00000200 */
2727#define ADC_CR_ADCALLIN_Pos (16U)
2728#define ADC_CR_ADCALLIN_Msk (0x1UL << ADC_CR_ADCALLIN_Pos) /*!< 0x00010000 */
2729#define ADC_CR_ADCALLIN ADC_CR_ADCALLIN_Msk /*!< ADC Linearity calibration */
2730#define ADC_CR_LINCALRDYW1_Pos (22U)
2731#define ADC_CR_LINCALRDYW1_Msk (0x1UL << ADC_CR_LINCALRDYW1_Pos) /*!< 0x00400000 */
2732#define ADC_CR_LINCALRDYW1 ADC_CR_LINCALRDYW1_Msk /*!< ADC Linearity calibration ready Word 1 */
2733#define ADC_CR_LINCALRDYW2_Pos (23U)
2734#define ADC_CR_LINCALRDYW2_Msk (0x1UL << ADC_CR_LINCALRDYW2_Pos) /*!< 0x00800000 */
2735#define ADC_CR_LINCALRDYW2 ADC_CR_LINCALRDYW2_Msk /*!< ADC Linearity calibration ready Word 2 */
2736#define ADC_CR_LINCALRDYW3_Pos (24U)
2737#define ADC_CR_LINCALRDYW3_Msk (0x1UL << ADC_CR_LINCALRDYW3_Pos) /*!< 0x01000000 */
2738#define ADC_CR_LINCALRDYW3 ADC_CR_LINCALRDYW3_Msk /*!< ADC Linearity calibration ready Word 3 */
2739#define ADC_CR_LINCALRDYW4_Pos (25U)
2740#define ADC_CR_LINCALRDYW4_Msk (0x1UL << ADC_CR_LINCALRDYW4_Pos) /*!< 0x02000000 */
2741#define ADC_CR_LINCALRDYW4 ADC_CR_LINCALRDYW4_Msk /*!< ADC Linearity calibration ready Word 4 */
2742#define ADC_CR_LINCALRDYW5_Pos (26U)
2743#define ADC_CR_LINCALRDYW5_Msk (0x1UL << ADC_CR_LINCALRDYW5_Pos) /*!< 0x04000000 */
2744#define ADC_CR_LINCALRDYW5 ADC_CR_LINCALRDYW5_Msk /*!< ADC Linearity calibration ready Word 5 */
2745#define ADC_CR_LINCALRDYW6_Pos (27U)
2746#define ADC_CR_LINCALRDYW6_Msk (0x1UL << ADC_CR_LINCALRDYW6_Pos) /*!< 0x08000000 */
2747#define ADC_CR_LINCALRDYW6 ADC_CR_LINCALRDYW6_Msk /*!< ADC Linearity calibration ready Word 6 */
2748#define ADC_CR_ADVREGEN_Pos (28U)
2749#define ADC_CR_ADVREGEN_Msk (0x1UL << ADC_CR_ADVREGEN_Pos) /*!< 0x10000000 */
2750#define ADC_CR_ADVREGEN ADC_CR_ADVREGEN_Msk /*!< ADC Voltage regulator Enable */
2751#define ADC_CR_DEEPPWD_Pos (29U)
2752#define ADC_CR_DEEPPWD_Msk (0x1UL << ADC_CR_DEEPPWD_Pos) /*!< 0x20000000 */
2753#define ADC_CR_DEEPPWD ADC_CR_DEEPPWD_Msk /*!< ADC Deep power down Enable */
2754#define ADC_CR_ADCALDIF_Pos (30U)
2755#define ADC_CR_ADCALDIF_Msk (0x1UL << ADC_CR_ADCALDIF_Pos) /*!< 0x40000000 */
2756#define ADC_CR_ADCALDIF ADC_CR_ADCALDIF_Msk /*!< ADC Differential Mode for calibration */
2757#define ADC_CR_ADCAL_Pos (31U)
2758#define ADC_CR_ADCAL_Msk (0x1UL << ADC_CR_ADCAL_Pos) /*!< 0x80000000 */
2759#define ADC_CR_ADCAL ADC_CR_ADCAL_Msk /*!< ADC Calibration */
2760
2761/******************** Bit definition for ADC_CFGR register ********************/
2762#define ADC_CFGR_DMNGT_Pos (0U)
2763#define ADC_CFGR_DMNGT_Msk (0x3UL << ADC_CFGR_DMNGT_Pos) /*!< 0x00000003 */
2764#define ADC_CFGR_DMNGT ADC_CFGR_DMNGT_Msk /*!< ADC Data Management configuration */
2765#define ADC_CFGR_DMNGT_0 (0x1UL << ADC_CFGR_DMNGT_Pos) /*!< 0x00000001 */
2766#define ADC_CFGR_DMNGT_1 (0x2UL << ADC_CFGR_DMNGT_Pos) /*!< 0x00000002 */
2767
2768#define ADC_CFGR_RES_Pos (2U)
2769#define ADC_CFGR_RES_Msk (0x7UL << ADC_CFGR_RES_Pos) /*!< 0x0000001C */
2770#define ADC_CFGR_RES ADC_CFGR_RES_Msk /*!< ADC Data resolution */
2771#define ADC_CFGR_RES_0 (0x1UL << ADC_CFGR_RES_Pos) /*!< 0x00000004 */
2772#define ADC_CFGR_RES_1 (0x2UL << ADC_CFGR_RES_Pos) /*!< 0x00000008 */
2773#define ADC_CFGR_RES_2 (0x4UL << ADC_CFGR_RES_Pos) /*!< 0x00000010 */
2774
2775#define ADC_CFGR_EXTSEL_Pos (5U)
2776#define ADC_CFGR_EXTSEL_Msk (0x1FUL << ADC_CFGR_EXTSEL_Pos) /*!< 0x000003E0 */
2777#define ADC_CFGR_EXTSEL ADC_CFGR_EXTSEL_Msk /*!< ADC External trigger selection for regular group */
2778#define ADC_CFGR_EXTSEL_0 (0x01UL << ADC_CFGR_EXTSEL_Pos) /*!< 0x00000020 */
2779#define ADC_CFGR_EXTSEL_1 (0x02UL << ADC_CFGR_EXTSEL_Pos) /*!< 0x00000040 */
2780#define ADC_CFGR_EXTSEL_2 (0x04UL << ADC_CFGR_EXTSEL_Pos) /*!< 0x00000080 */
2781#define ADC_CFGR_EXTSEL_3 (0x08UL << ADC_CFGR_EXTSEL_Pos) /*!< 0x00000100 */
2782#define ADC_CFGR_EXTSEL_4 (0x10UL << ADC_CFGR_EXTSEL_Pos) /*!< 0x00000200 */
2783
2784#define ADC_CFGR_EXTEN_Pos (10U)
2785#define ADC_CFGR_EXTEN_Msk (0x3UL << ADC_CFGR_EXTEN_Pos) /*!< 0x00000C00 */
2786#define ADC_CFGR_EXTEN ADC_CFGR_EXTEN_Msk /*!< ADC External trigger enable and polarity selection for regular channels */
2787#define ADC_CFGR_EXTEN_0 (0x1UL << ADC_CFGR_EXTEN_Pos) /*!< 0x00000400 */
2788#define ADC_CFGR_EXTEN_1 (0x2UL << ADC_CFGR_EXTEN_Pos) /*!< 0x00000800 */
2789
2790#define ADC_CFGR_OVRMOD_Pos (12U)
2791#define ADC_CFGR_OVRMOD_Msk (0x1UL << ADC_CFGR_OVRMOD_Pos) /*!< 0x00001000 */
2792#define ADC_CFGR_OVRMOD ADC_CFGR_OVRMOD_Msk /*!< ADC overrun mode */
2793#define ADC_CFGR_CONT_Pos (13U)
2794#define ADC_CFGR_CONT_Msk (0x1UL << ADC_CFGR_CONT_Pos) /*!< 0x00002000 */
2795#define ADC_CFGR_CONT ADC_CFGR_CONT_Msk /*!< ADC Single/continuous conversion mode for regular conversion */
2796#define ADC_CFGR_AUTDLY_Pos (14U)
2797#define ADC_CFGR_AUTDLY_Msk (0x1UL << ADC_CFGR_AUTDLY_Pos) /*!< 0x00004000 */
2798#define ADC_CFGR_AUTDLY ADC_CFGR_AUTDLY_Msk /*!< ADC Delayed conversion mode */
2799
2800#define ADC_CFGR_DISCEN_Pos (16U)
2801#define ADC_CFGR_DISCEN_Msk (0x1UL << ADC_CFGR_DISCEN_Pos) /*!< 0x00010000 */
2802#define ADC_CFGR_DISCEN ADC_CFGR_DISCEN_Msk /*!< ADC Discontinuous mode for regular channels */
2803
2804#define ADC_CFGR_DISCNUM_Pos (17U)
2805#define ADC_CFGR_DISCNUM_Msk (0x7UL << ADC_CFGR_DISCNUM_Pos) /*!< 0x000E0000 */
2806#define ADC_CFGR_DISCNUM ADC_CFGR_DISCNUM_Msk /*!< ADC Discontinuous mode channel count */
2807#define ADC_CFGR_DISCNUM_0 (0x1UL << ADC_CFGR_DISCNUM_Pos) /*!< 0x00020000 */
2808#define ADC_CFGR_DISCNUM_1 (0x2UL << ADC_CFGR_DISCNUM_Pos) /*!< 0x00040000 */
2809#define ADC_CFGR_DISCNUM_2 (0x4UL << ADC_CFGR_DISCNUM_Pos) /*!< 0x00080000 */
2810
2811#define ADC_CFGR_JDISCEN_Pos (20U)
2812#define ADC_CFGR_JDISCEN_Msk (0x1UL << ADC_CFGR_JDISCEN_Pos) /*!< 0x00100000 */
2813#define ADC_CFGR_JDISCEN ADC_CFGR_JDISCEN_Msk /*!< ADC Discontinuous mode on injected channels */
2814#define ADC_CFGR_JQM_Pos (21U)
2815#define ADC_CFGR_JQM_Msk (0x1UL << ADC_CFGR_JQM_Pos) /*!< 0x00200000 */
2816#define ADC_CFGR_JQM ADC_CFGR_JQM_Msk /*!< ADC JSQR Queue mode */
2817#define ADC_CFGR_AWD1SGL_Pos (22U)
2818#define ADC_CFGR_AWD1SGL_Msk (0x1UL << ADC_CFGR_AWD1SGL_Pos) /*!< 0x00400000 */
2819#define ADC_CFGR_AWD1SGL ADC_CFGR_AWD1SGL_Msk /*!< Enable the watchdog 1 on a single channel or on all channels */
2820#define ADC_CFGR_AWD1EN_Pos (23U)
2821#define ADC_CFGR_AWD1EN_Msk (0x1UL << ADC_CFGR_AWD1EN_Pos) /*!< 0x00800000 */
2822#define ADC_CFGR_AWD1EN ADC_CFGR_AWD1EN_Msk /*!< ADC Analog watchdog 1 enable on regular Channels */
2823#define ADC_CFGR_JAWD1EN_Pos (24U)
2824#define ADC_CFGR_JAWD1EN_Msk (0x1UL << ADC_CFGR_JAWD1EN_Pos) /*!< 0x01000000 */
2825#define ADC_CFGR_JAWD1EN ADC_CFGR_JAWD1EN_Msk /*!< ADC Analog watchdog 1 enable on injected Channels */
2826#define ADC_CFGR_JAUTO_Pos (25U)
2827#define ADC_CFGR_JAUTO_Msk (0x1UL << ADC_CFGR_JAUTO_Pos) /*!< 0x02000000 */
2828#define ADC_CFGR_JAUTO ADC_CFGR_JAUTO_Msk /*!< ADC Automatic injected group conversion */
2829
2830#define ADC_CFGR_AWD1CH_Pos (26U)
2831#define ADC_CFGR_AWD1CH_Msk (0x1FUL << ADC_CFGR_AWD1CH_Pos) /*!< 0x7C000000 */
2832#define ADC_CFGR_AWD1CH ADC_CFGR_AWD1CH_Msk /*!< ADC Analog watchdog 1 Channel selection */
2833#define ADC_CFGR_AWD1CH_0 (0x01UL << ADC_CFGR_AWD1CH_Pos) /*!< 0x04000000 */
2834#define ADC_CFGR_AWD1CH_1 (0x02UL << ADC_CFGR_AWD1CH_Pos) /*!< 0x08000000 */
2835#define ADC_CFGR_AWD1CH_2 (0x04UL << ADC_CFGR_AWD1CH_Pos) /*!< 0x10000000 */
2836#define ADC_CFGR_AWD1CH_3 (0x08UL << ADC_CFGR_AWD1CH_Pos) /*!< 0x20000000 */
2837#define ADC_CFGR_AWD1CH_4 (0x10UL << ADC_CFGR_AWD1CH_Pos) /*!< 0x40000000 */
2838
2839#define ADC_CFGR_JQDIS_Pos (31U)
2840#define ADC_CFGR_JQDIS_Msk (0x1UL << ADC_CFGR_JQDIS_Pos) /*!< 0x80000000 */
2841#define ADC_CFGR_JQDIS ADC_CFGR_JQDIS_Msk /*!< ADC Injected queue disable */
2842
2843/******************** Bit definition for ADC_CFGR2 register ********************/
2844#define ADC_CFGR2_ROVSE_Pos (0U)
2845#define ADC_CFGR2_ROVSE_Msk (0x1UL << ADC_CFGR2_ROVSE_Pos) /*!< 0x00000001 */
2846#define ADC_CFGR2_ROVSE ADC_CFGR2_ROVSE_Msk /*!< ADC Regular group oversampler enable */
2847#define ADC_CFGR2_JOVSE_Pos (1U)
2848#define ADC_CFGR2_JOVSE_Msk (0x1UL << ADC_CFGR2_JOVSE_Pos) /*!< 0x00000002 */
2849#define ADC_CFGR2_JOVSE ADC_CFGR2_JOVSE_Msk /*!< ADC Injected group oversampler enable */
2850
2851#define ADC_CFGR2_OVSS_Pos (5U)
2852#define ADC_CFGR2_OVSS_Msk (0xFUL << ADC_CFGR2_OVSS_Pos) /*!< 0x000001E0 */
2853#define ADC_CFGR2_OVSS ADC_CFGR2_OVSS_Msk /*!< ADC Regular Oversampling shift */
2854#define ADC_CFGR2_OVSS_0 (0x1UL << ADC_CFGR2_OVSS_Pos) /*!< 0x00000020 */
2855#define ADC_CFGR2_OVSS_1 (0x2UL << ADC_CFGR2_OVSS_Pos) /*!< 0x00000040 */
2856#define ADC_CFGR2_OVSS_2 (0x4UL << ADC_CFGR2_OVSS_Pos) /*!< 0x00000080 */
2857#define ADC_CFGR2_OVSS_3 (0x8UL << ADC_CFGR2_OVSS_Pos) /*!< 0x00000100 */
2858
2859#define ADC_CFGR2_TROVS_Pos (9U)
2860#define ADC_CFGR2_TROVS_Msk (0x1UL << ADC_CFGR2_TROVS_Pos) /*!< 0x00000200 */
2861#define ADC_CFGR2_TROVS ADC_CFGR2_TROVS_Msk /*!< ADC Triggered regular Oversampling */
2862#define ADC_CFGR2_ROVSM_Pos (10U)
2863#define ADC_CFGR2_ROVSM_Msk (0x1UL << ADC_CFGR2_ROVSM_Pos) /*!< 0x00000400 */
2864#define ADC_CFGR2_ROVSM ADC_CFGR2_ROVSM_Msk /*!< ADC Regular oversampling mode */
2865
2866#define ADC_CFGR2_RSHIFT1_Pos (11U)
2867#define ADC_CFGR2_RSHIFT1_Msk (0x1UL << ADC_CFGR2_RSHIFT1_Pos) /*!< 0x00000800 */
2868#define ADC_CFGR2_RSHIFT1 ADC_CFGR2_RSHIFT1_Msk /*!< ADC Right-shift data after Offset 1 correction */
2869#define ADC_CFGR2_RSHIFT2_Pos (12U)
2870#define ADC_CFGR2_RSHIFT2_Msk (0x1UL << ADC_CFGR2_RSHIFT2_Pos) /*!< 0x00001000 */
2871#define ADC_CFGR2_RSHIFT2 ADC_CFGR2_RSHIFT2_Msk /*!< ADC Right-shift data after Offset 2 correction */
2872#define ADC_CFGR2_RSHIFT3_Pos (13U)
2873#define ADC_CFGR2_RSHIFT3_Msk (0x1UL << ADC_CFGR2_RSHIFT3_Pos) /*!< 0x00002000 */
2874#define ADC_CFGR2_RSHIFT3 ADC_CFGR2_RSHIFT3_Msk /*!< ADC Right-shift data after Offset 3 correction */
2875#define ADC_CFGR2_RSHIFT4_Pos (14U)
2876#define ADC_CFGR2_RSHIFT4_Msk (0x1UL << ADC_CFGR2_RSHIFT4_Pos) /*!< 0x00004000 */
2877#define ADC_CFGR2_RSHIFT4 ADC_CFGR2_RSHIFT4_Msk /*!< ADC Right-shift data after Offset 4 correction */
2878
2879#define ADC_CFGR2_OVSR_Pos (16U)
2880#define ADC_CFGR2_OVSR_Msk (0x3FFUL << ADC_CFGR2_OVSR_Pos) /*!< 0x03FF0000 */
2881#define ADC_CFGR2_OVSR ADC_CFGR2_OVSR_Msk /*!< ADC oversampling Ratio */
2882#define ADC_CFGR2_OVSR_0 (0x001UL << ADC_CFGR2_OVSR_Pos) /*!< 0x00010000 */
2883#define ADC_CFGR2_OVSR_1 (0x002UL << ADC_CFGR2_OVSR_Pos) /*!< 0x00020000 */
2884#define ADC_CFGR2_OVSR_2 (0x004UL << ADC_CFGR2_OVSR_Pos) /*!< 0x00040000 */
2885#define ADC_CFGR2_OVSR_3 (0x008UL << ADC_CFGR2_OVSR_Pos) /*!< 0x00080000 */
2886#define ADC_CFGR2_OVSR_4 (0x010UL << ADC_CFGR2_OVSR_Pos) /*!< 0x00100000 */
2887#define ADC_CFGR2_OVSR_5 (0x020UL << ADC_CFGR2_OVSR_Pos) /*!< 0x00200000 */
2888#define ADC_CFGR2_OVSR_6 (0x040UL << ADC_CFGR2_OVSR_Pos) /*!< 0x00400000 */
2889#define ADC_CFGR2_OVSR_7 (0x080UL << ADC_CFGR2_OVSR_Pos) /*!< 0x00800000 */
2890#define ADC_CFGR2_OVSR_8 (0x100UL << ADC_CFGR2_OVSR_Pos) /*!< 0x01000000 */
2891#define ADC_CFGR2_OVSR_9 (0x200UL << ADC_CFGR2_OVSR_Pos) /*!< 0x02000000 */
2892
2893#define ADC_CFGR2_LSHIFT_Pos (28U)
2894#define ADC_CFGR2_LSHIFT_Msk (0xFUL << ADC_CFGR2_LSHIFT_Pos) /*!< 0xF0000000 */
2895#define ADC_CFGR2_LSHIFT ADC_CFGR2_LSHIFT_Msk /*!< ADC Left shift factor */
2896#define ADC_CFGR2_LSHIFT_0 (0x1UL << ADC_CFGR2_LSHIFT_Pos) /*!< 0x10000000 */
2897#define ADC_CFGR2_LSHIFT_1 (0x2UL << ADC_CFGR2_LSHIFT_Pos) /*!< 0x20000000 */
2898#define ADC_CFGR2_LSHIFT_2 (0x4UL << ADC_CFGR2_LSHIFT_Pos) /*!< 0x40000000 */
2899#define ADC_CFGR2_LSHIFT_3 (0x8UL << ADC_CFGR2_LSHIFT_Pos) /*!< 0x80000000 */
2900
2901/******************** Bit definition for ADC_SMPR1 register ********************/
2902#define ADC_SMPR1_SMP0_Pos (0U)
2903#define ADC_SMPR1_SMP0_Msk (0x7UL << ADC_SMPR1_SMP0_Pos) /*!< 0x00000007 */
2904#define ADC_SMPR1_SMP0 ADC_SMPR1_SMP0_Msk /*!< ADC Channel 0 Sampling time selection */
2905#define ADC_SMPR1_SMP0_0 (0x1UL << ADC_SMPR1_SMP0_Pos) /*!< 0x00000001 */
2906#define ADC_SMPR1_SMP0_1 (0x2UL << ADC_SMPR1_SMP0_Pos) /*!< 0x00000002 */
2907#define ADC_SMPR1_SMP0_2 (0x4UL << ADC_SMPR1_SMP0_Pos) /*!< 0x00000004 */
2908
2909#define ADC_SMPR1_SMP1_Pos (3U)
2910#define ADC_SMPR1_SMP1_Msk (0x7UL << ADC_SMPR1_SMP1_Pos) /*!< 0x00000038 */
2911#define ADC_SMPR1_SMP1 ADC_SMPR1_SMP1_Msk /*!< ADC Channel 1 Sampling time selection */
2912#define ADC_SMPR1_SMP1_0 (0x1UL << ADC_SMPR1_SMP1_Pos) /*!< 0x00000008 */
2913#define ADC_SMPR1_SMP1_1 (0x2UL << ADC_SMPR1_SMP1_Pos) /*!< 0x00000010 */
2914#define ADC_SMPR1_SMP1_2 (0x4UL << ADC_SMPR1_SMP1_Pos) /*!< 0x00000020 */
2915
2916#define ADC_SMPR1_SMP2_Pos (6U)
2917#define ADC_SMPR1_SMP2_Msk (0x7UL << ADC_SMPR1_SMP2_Pos) /*!< 0x000001C0 */
2918#define ADC_SMPR1_SMP2 ADC_SMPR1_SMP2_Msk /*!< ADC Channel 2 Sampling time selection */
2919#define ADC_SMPR1_SMP2_0 (0x1UL << ADC_SMPR1_SMP2_Pos) /*!< 0x00000040 */
2920#define ADC_SMPR1_SMP2_1 (0x2UL << ADC_SMPR1_SMP2_Pos) /*!< 0x00000080 */
2921#define ADC_SMPR1_SMP2_2 (0x4UL << ADC_SMPR1_SMP2_Pos) /*!< 0x00000100 */
2922
2923#define ADC_SMPR1_SMP3_Pos (9U)
2924#define ADC_SMPR1_SMP3_Msk (0x7UL << ADC_SMPR1_SMP3_Pos) /*!< 0x00000E00 */
2925#define ADC_SMPR1_SMP3 ADC_SMPR1_SMP3_Msk /*!< ADC Channel 3 Sampling time selection */
2926#define ADC_SMPR1_SMP3_0 (0x1UL << ADC_SMPR1_SMP3_Pos) /*!< 0x00000200 */
2927#define ADC_SMPR1_SMP3_1 (0x2UL << ADC_SMPR1_SMP3_Pos) /*!< 0x00000400 */
2928#define ADC_SMPR1_SMP3_2 (0x4UL << ADC_SMPR1_SMP3_Pos) /*!< 0x00000800 */
2929
2930#define ADC_SMPR1_SMP4_Pos (12U)
2931#define ADC_SMPR1_SMP4_Msk (0x7UL << ADC_SMPR1_SMP4_Pos) /*!< 0x00007000 */
2932#define ADC_SMPR1_SMP4 ADC_SMPR1_SMP4_Msk /*!< ADC Channel 4 Sampling time selection */
2933#define ADC_SMPR1_SMP4_0 (0x1UL << ADC_SMPR1_SMP4_Pos) /*!< 0x00001000 */
2934#define ADC_SMPR1_SMP4_1 (0x2UL << ADC_SMPR1_SMP4_Pos) /*!< 0x00002000 */
2935#define ADC_SMPR1_SMP4_2 (0x4UL << ADC_SMPR1_SMP4_Pos) /*!< 0x00004000 */
2936
2937#define ADC_SMPR1_SMP5_Pos (15U)
2938#define ADC_SMPR1_SMP5_Msk (0x7UL << ADC_SMPR1_SMP5_Pos) /*!< 0x00038000 */
2939#define ADC_SMPR1_SMP5 ADC_SMPR1_SMP5_Msk /*!< ADC Channel 5 Sampling time selection */
2940#define ADC_SMPR1_SMP5_0 (0x1UL << ADC_SMPR1_SMP5_Pos) /*!< 0x00008000 */
2941#define ADC_SMPR1_SMP5_1 (0x2UL << ADC_SMPR1_SMP5_Pos) /*!< 0x00010000 */
2942#define ADC_SMPR1_SMP5_2 (0x4UL << ADC_SMPR1_SMP5_Pos) /*!< 0x00020000 */
2943
2944#define ADC_SMPR1_SMP6_Pos (18U)
2945#define ADC_SMPR1_SMP6_Msk (0x7UL << ADC_SMPR1_SMP6_Pos) /*!< 0x001C0000 */
2946#define ADC_SMPR1_SMP6 ADC_SMPR1_SMP6_Msk /*!< ADC Channel 6 Sampling time selection */
2947#define ADC_SMPR1_SMP6_0 (0x1UL << ADC_SMPR1_SMP6_Pos) /*!< 0x00040000 */
2948#define ADC_SMPR1_SMP6_1 (0x2UL << ADC_SMPR1_SMP6_Pos) /*!< 0x00080000 */
2949#define ADC_SMPR1_SMP6_2 (0x4UL << ADC_SMPR1_SMP6_Pos) /*!< 0x00100000 */
2950
2951#define ADC_SMPR1_SMP7_Pos (21U)
2952#define ADC_SMPR1_SMP7_Msk (0x7UL << ADC_SMPR1_SMP7_Pos) /*!< 0x00E00000 */
2953#define ADC_SMPR1_SMP7 ADC_SMPR1_SMP7_Msk /*!< ADC Channel 7 Sampling time selection */
2954#define ADC_SMPR1_SMP7_0 (0x1UL << ADC_SMPR1_SMP7_Pos) /*!< 0x00200000 */
2955#define ADC_SMPR1_SMP7_1 (0x2UL << ADC_SMPR1_SMP7_Pos) /*!< 0x00400000 */
2956#define ADC_SMPR1_SMP7_2 (0x4UL << ADC_SMPR1_SMP7_Pos) /*!< 0x00800000 */
2957
2958#define ADC_SMPR1_SMP8_Pos (24U)
2959#define ADC_SMPR1_SMP8_Msk (0x7UL << ADC_SMPR1_SMP8_Pos) /*!< 0x07000000 */
2960#define ADC_SMPR1_SMP8 ADC_SMPR1_SMP8_Msk /*!< ADC Channel 8 Sampling time selection */
2961#define ADC_SMPR1_SMP8_0 (0x1UL << ADC_SMPR1_SMP8_Pos) /*!< 0x01000000 */
2962#define ADC_SMPR1_SMP8_1 (0x2UL << ADC_SMPR1_SMP8_Pos) /*!< 0x02000000 */
2963#define ADC_SMPR1_SMP8_2 (0x4UL << ADC_SMPR1_SMP8_Pos) /*!< 0x04000000 */
2964
2965#define ADC_SMPR1_SMP9_Pos (27U)
2966#define ADC_SMPR1_SMP9_Msk (0x7UL << ADC_SMPR1_SMP9_Pos) /*!< 0x38000000 */
2967#define ADC_SMPR1_SMP9 ADC_SMPR1_SMP9_Msk /*!< ADC Channel 9 Sampling time selection */
2968#define ADC_SMPR1_SMP9_0 (0x1UL << ADC_SMPR1_SMP9_Pos) /*!< 0x08000000 */
2969#define ADC_SMPR1_SMP9_1 (0x2UL << ADC_SMPR1_SMP9_Pos) /*!< 0x10000000 */
2970#define ADC_SMPR1_SMP9_2 (0x4UL << ADC_SMPR1_SMP9_Pos) /*!< 0x20000000 */
2971
2972/******************** Bit definition for ADC_SMPR2 register ********************/
2973#define ADC_SMPR2_SMP10_Pos (0U)
2974#define ADC_SMPR2_SMP10_Msk (0x7UL << ADC_SMPR2_SMP10_Pos) /*!< 0x00000007 */
2975#define ADC_SMPR2_SMP10 ADC_SMPR2_SMP10_Msk /*!< ADC Channel 10 Sampling time selection */
2976#define ADC_SMPR2_SMP10_0 (0x1UL << ADC_SMPR2_SMP10_Pos) /*!< 0x00000001 */
2977#define ADC_SMPR2_SMP10_1 (0x2UL << ADC_SMPR2_SMP10_Pos) /*!< 0x00000002 */
2978#define ADC_SMPR2_SMP10_2 (0x4UL << ADC_SMPR2_SMP10_Pos) /*!< 0x00000004 */
2979
2980#define ADC_SMPR2_SMP11_Pos (3U)
2981#define ADC_SMPR2_SMP11_Msk (0x7UL << ADC_SMPR2_SMP11_Pos) /*!< 0x00000038 */
2982#define ADC_SMPR2_SMP11 ADC_SMPR2_SMP11_Msk /*!< ADC Channel 11 Sampling time selection */
2983#define ADC_SMPR2_SMP11_0 (0x1UL << ADC_SMPR2_SMP11_Pos) /*!< 0x00000008 */
2984#define ADC_SMPR2_SMP11_1 (0x2UL << ADC_SMPR2_SMP11_Pos) /*!< 0x00000010 */
2985#define ADC_SMPR2_SMP11_2 (0x4UL << ADC_SMPR2_SMP11_Pos) /*!< 0x00000020 */
2986
2987#define ADC_SMPR2_SMP12_Pos (6U)
2988#define ADC_SMPR2_SMP12_Msk (0x7UL << ADC_SMPR2_SMP12_Pos) /*!< 0x000001C0 */
2989#define ADC_SMPR2_SMP12 ADC_SMPR2_SMP12_Msk /*!< ADC Channel 12 Sampling time selection */
2990#define ADC_SMPR2_SMP12_0 (0x1UL << ADC_SMPR2_SMP12_Pos) /*!< 0x00000040 */
2991#define ADC_SMPR2_SMP12_1 (0x2UL << ADC_SMPR2_SMP12_Pos) /*!< 0x00000080 */
2992#define ADC_SMPR2_SMP12_2 (0x4UL << ADC_SMPR2_SMP12_Pos) /*!< 0x00000100 */
2993
2994#define ADC_SMPR2_SMP13_Pos (9U)
2995#define ADC_SMPR2_SMP13_Msk (0x7UL << ADC_SMPR2_SMP13_Pos) /*!< 0x00000E00 */
2996#define ADC_SMPR2_SMP13 ADC_SMPR2_SMP13_Msk /*!< ADC Channel 13 Sampling time selection */
2997#define ADC_SMPR2_SMP13_0 (0x1UL << ADC_SMPR2_SMP13_Pos) /*!< 0x00000200 */
2998#define ADC_SMPR2_SMP13_1 (0x2UL << ADC_SMPR2_SMP13_Pos) /*!< 0x00000400 */
2999#define ADC_SMPR2_SMP13_2 (0x4UL << ADC_SMPR2_SMP13_Pos) /*!< 0x00000800 */
3000
3001#define ADC_SMPR2_SMP14_Pos (12U)
3002#define ADC_SMPR2_SMP14_Msk (0x7UL << ADC_SMPR2_SMP14_Pos) /*!< 0x00007000 */
3003#define ADC_SMPR2_SMP14 ADC_SMPR2_SMP14_Msk /*!< ADC Channel 14 Sampling time selection */
3004#define ADC_SMPR2_SMP14_0 (0x1UL << ADC_SMPR2_SMP14_Pos) /*!< 0x00001000 */
3005#define ADC_SMPR2_SMP14_1 (0x2UL << ADC_SMPR2_SMP14_Pos) /*!< 0x00002000 */
3006#define ADC_SMPR2_SMP14_2 (0x4UL << ADC_SMPR2_SMP14_Pos) /*!< 0x00004000 */
3007
3008#define ADC_SMPR2_SMP15_Pos (15U)
3009#define ADC_SMPR2_SMP15_Msk (0x7UL << ADC_SMPR2_SMP15_Pos) /*!< 0x00038000 */
3010#define ADC_SMPR2_SMP15 ADC_SMPR2_SMP15_Msk /*!< ADC Channel 15 Sampling time selection */
3011#define ADC_SMPR2_SMP15_0 (0x1UL << ADC_SMPR2_SMP15_Pos) /*!< 0x00008000 */
3012#define ADC_SMPR2_SMP15_1 (0x2UL << ADC_SMPR2_SMP15_Pos) /*!< 0x00010000 */
3013#define ADC_SMPR2_SMP15_2 (0x4UL << ADC_SMPR2_SMP15_Pos) /*!< 0x00020000 */
3014
3015#define ADC_SMPR2_SMP16_Pos (18U)
3016#define ADC_SMPR2_SMP16_Msk (0x7UL << ADC_SMPR2_SMP16_Pos) /*!< 0x001C0000 */
3017#define ADC_SMPR2_SMP16 ADC_SMPR2_SMP16_Msk /*!< ADC Channel 16 Sampling time selection */
3018#define ADC_SMPR2_SMP16_0 (0x1UL << ADC_SMPR2_SMP16_Pos) /*!< 0x00040000 */
3019#define ADC_SMPR2_SMP16_1 (0x2UL << ADC_SMPR2_SMP16_Pos) /*!< 0x00080000 */
3020#define ADC_SMPR2_SMP16_2 (0x4UL << ADC_SMPR2_SMP16_Pos) /*!< 0x00100000 */
3021
3022#define ADC_SMPR2_SMP17_Pos (21U)
3023#define ADC_SMPR2_SMP17_Msk (0x7UL << ADC_SMPR2_SMP17_Pos) /*!< 0x00E00000 */
3024#define ADC_SMPR2_SMP17 ADC_SMPR2_SMP17_Msk /*!< ADC Channel 17 Sampling time selection */
3025#define ADC_SMPR2_SMP17_0 (0x1UL << ADC_SMPR2_SMP17_Pos) /*!< 0x00200000 */
3026#define ADC_SMPR2_SMP17_1 (0x2UL << ADC_SMPR2_SMP17_Pos) /*!< 0x00400000 */
3027#define ADC_SMPR2_SMP17_2 (0x4UL << ADC_SMPR2_SMP17_Pos) /*!< 0x00800000 */
3028
3029#define ADC_SMPR2_SMP18_Pos (24U)
3030#define ADC_SMPR2_SMP18_Msk (0x7UL << ADC_SMPR2_SMP18_Pos) /*!< 0x07000000 */
3031#define ADC_SMPR2_SMP18 ADC_SMPR2_SMP18_Msk /*!< ADC Channel 18 Sampling time selection */
3032#define ADC_SMPR2_SMP18_0 (0x1UL << ADC_SMPR2_SMP18_Pos) /*!< 0x01000000 */
3033#define ADC_SMPR2_SMP18_1 (0x2UL << ADC_SMPR2_SMP18_Pos) /*!< 0x02000000 */
3034#define ADC_SMPR2_SMP18_2 (0x4UL << ADC_SMPR2_SMP18_Pos) /*!< 0x04000000 */
3035
3036#define ADC_SMPR2_SMP19_Pos (27U)
3037#define ADC_SMPR2_SMP19_Msk (0x7UL << ADC_SMPR2_SMP19_Pos) /*!< 0x38000000 */
3038#define ADC_SMPR2_SMP19 ADC_SMPR2_SMP19_Msk /*!< ADC Channel 19 Sampling time selection */
3039#define ADC_SMPR2_SMP19_0 (0x1UL << ADC_SMPR2_SMP19_Pos) /*!< 0x08000000 */
3040#define ADC_SMPR2_SMP19_1 (0x2UL << ADC_SMPR2_SMP19_Pos) /*!< 0x10000000 */
3041#define ADC_SMPR2_SMP19_2 (0x4UL << ADC_SMPR2_SMP19_Pos) /*!< 0x20000000 */
3042
3043/******************** Bit definition for ADC_PCSEL register ********************/
3044#define ADC_PCSEL_PCSEL_Pos (0U)
3045#define ADC_PCSEL_PCSEL_Msk (0xFFFFFUL << ADC_PCSEL_PCSEL_Pos) /*!< 0x000FFFFF */
3046#define ADC_PCSEL_PCSEL ADC_PCSEL_PCSEL_Msk /*!< ADC pre channel selection */
3047#define ADC_PCSEL_PCSEL_0 (0x00001UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00000001 */
3048#define ADC_PCSEL_PCSEL_1 (0x00002UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00000002 */
3049#define ADC_PCSEL_PCSEL_2 (0x00004UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00000004 */
3050#define ADC_PCSEL_PCSEL_3 (0x00008UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00000008 */
3051#define ADC_PCSEL_PCSEL_4 (0x00010UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00000010 */
3052#define ADC_PCSEL_PCSEL_5 (0x00020UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00000020 */
3053#define ADC_PCSEL_PCSEL_6 (0x00040UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00000040 */
3054#define ADC_PCSEL_PCSEL_7 (0x00080UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00000080 */
3055#define ADC_PCSEL_PCSEL_8 (0x00100UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00000100 */
3056#define ADC_PCSEL_PCSEL_9 (0x00200UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00000200 */
3057#define ADC_PCSEL_PCSEL_10 (0x00400UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00000400 */
3058#define ADC_PCSEL_PCSEL_11 (0x00800UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00000800 */
3059#define ADC_PCSEL_PCSEL_12 (0x01000UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00001000 */
3060#define ADC_PCSEL_PCSEL_13 (0x02000UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00002000 */
3061#define ADC_PCSEL_PCSEL_14 (0x04000UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00004000 */
3062#define ADC_PCSEL_PCSEL_15 (0x08000UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00008000 */
3063#define ADC_PCSEL_PCSEL_16 (0x10000UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00010000 */
3064#define ADC_PCSEL_PCSEL_17 (0x20000UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00020000 */
3065#define ADC_PCSEL_PCSEL_18 (0x40000UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00040000 */
3066#define ADC_PCSEL_PCSEL_19 (0x80000UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00080000 */
3067
3068/***************** Bit definition for ADC_LTR1, 2, 3 registers *****************/
3069#define ADC_LTR_LT_Pos (0U)
3070#define ADC_LTR_LT_Msk (0x3FFFFFFUL << ADC_LTR_LT_Pos) /*!< 0x03FFFFFF */
3071#define ADC_LTR_LT ADC_LTR_LT_Msk /*!< ADC Analog watchdog 1, 2 and 3 lower threshold */
3072
3073/***************** Bit definition for ADC_HTR1, 2, 3 registers ****************/
3074#define ADC_HTR_HT_Pos (0U)
3075#define ADC_HTR_HT_Msk (0x3FFFFFFUL << ADC_HTR_HT_Pos) /*!< 0x03FFFFFF */
3076#define ADC_HTR_HT ADC_HTR_HT_Msk /*!< ADC Analog watchdog 1,2 and 3 higher threshold */
3077
3078
3079/******************** Bit definition for ADC_SQR1 register ********************/
3080#define ADC_SQR1_L_Pos (0U)
3081#define ADC_SQR1_L_Msk (0xFUL << ADC_SQR1_L_Pos) /*!< 0x0000000F */
3082#define ADC_SQR1_L ADC_SQR1_L_Msk /*!< ADC regular channel sequence lenght */
3083#define ADC_SQR1_L_0 (0x1UL << ADC_SQR1_L_Pos) /*!< 0x00000001 */
3084#define ADC_SQR1_L_1 (0x2UL << ADC_SQR1_L_Pos) /*!< 0x00000002 */
3085#define ADC_SQR1_L_2 (0x4UL << ADC_SQR1_L_Pos) /*!< 0x00000004 */
3086#define ADC_SQR1_L_3 (0x8UL << ADC_SQR1_L_Pos) /*!< 0x00000008 */
3087
3088#define ADC_SQR1_SQ1_Pos (6U)
3089#define ADC_SQR1_SQ1_Msk (0x1FUL << ADC_SQR1_SQ1_Pos) /*!< 0x000007C0 */
3090#define ADC_SQR1_SQ1 ADC_SQR1_SQ1_Msk /*!< ADC 1st conversion in regular sequence */
3091#define ADC_SQR1_SQ1_0 (0x01UL << ADC_SQR1_SQ1_Pos) /*!< 0x00000040 */
3092#define ADC_SQR1_SQ1_1 (0x02UL << ADC_SQR1_SQ1_Pos) /*!< 0x00000080 */
3093#define ADC_SQR1_SQ1_2 (0x04UL << ADC_SQR1_SQ1_Pos) /*!< 0x00000100 */
3094#define ADC_SQR1_SQ1_3 (0x08UL << ADC_SQR1_SQ1_Pos) /*!< 0x00000200 */
3095#define ADC_SQR1_SQ1_4 (0x10UL << ADC_SQR1_SQ1_Pos) /*!< 0x00000400 */
3096
3097#define ADC_SQR1_SQ2_Pos (12U)
3098#define ADC_SQR1_SQ2_Msk (0x1FUL << ADC_SQR1_SQ2_Pos) /*!< 0x0001F000 */
3099#define ADC_SQR1_SQ2 ADC_SQR1_SQ2_Msk /*!< ADC 2nd conversion in regular sequence */
3100#define ADC_SQR1_SQ2_0 (0x01UL << ADC_SQR1_SQ2_Pos) /*!< 0x00001000 */
3101#define ADC_SQR1_SQ2_1 (0x02UL << ADC_SQR1_SQ2_Pos) /*!< 0x00002000 */
3102#define ADC_SQR1_SQ2_2 (0x04UL << ADC_SQR1_SQ2_Pos) /*!< 0x00004000 */
3103#define ADC_SQR1_SQ2_3 (0x08UL << ADC_SQR1_SQ2_Pos) /*!< 0x00008000 */
3104#define ADC_SQR1_SQ2_4 (0x10UL << ADC_SQR1_SQ2_Pos) /*!< 0x00010000 */
3105
3106#define ADC_SQR1_SQ3_Pos (18U)
3107#define ADC_SQR1_SQ3_Msk (0x1FUL << ADC_SQR1_SQ3_Pos) /*!< 0x007C0000 */
3108#define ADC_SQR1_SQ3 ADC_SQR1_SQ3_Msk /*!< ADC 3rd conversion in regular sequence */
3109#define ADC_SQR1_SQ3_0 (0x01UL << ADC_SQR1_SQ3_Pos) /*!< 0x00040000 */
3110#define ADC_SQR1_SQ3_1 (0x02UL << ADC_SQR1_SQ3_Pos) /*!< 0x00080000 */
3111#define ADC_SQR1_SQ3_2 (0x04UL << ADC_SQR1_SQ3_Pos) /*!< 0x00100000 */
3112#define ADC_SQR1_SQ3_3 (0x08UL << ADC_SQR1_SQ3_Pos) /*!< 0x00200000 */
3113#define ADC_SQR1_SQ3_4 (0x10UL << ADC_SQR1_SQ3_Pos) /*!< 0x00400000 */
3114
3115#define ADC_SQR1_SQ4_Pos (24U)
3116#define ADC_SQR1_SQ4_Msk (0x1FUL << ADC_SQR1_SQ4_Pos) /*!< 0x1F000000 */
3117#define ADC_SQR1_SQ4 ADC_SQR1_SQ4_Msk /*!< ADC 4th conversion in regular sequence */
3118#define ADC_SQR1_SQ4_0 (0x01UL << ADC_SQR1_SQ4_Pos) /*!< 0x01000000 */
3119#define ADC_SQR1_SQ4_1 (0x02UL << ADC_SQR1_SQ4_Pos) /*!< 0x02000000 */
3120#define ADC_SQR1_SQ4_2 (0x04UL << ADC_SQR1_SQ4_Pos) /*!< 0x04000000 */
3121#define ADC_SQR1_SQ4_3 (0x08UL << ADC_SQR1_SQ4_Pos) /*!< 0x08000000 */
3122#define ADC_SQR1_SQ4_4 (0x10UL << ADC_SQR1_SQ4_Pos) /*!< 0x10000000 */
3123
3124/******************** Bit definition for ADC_SQR2 register ********************/
3125#define ADC_SQR2_SQ5_Pos (0U)
3126#define ADC_SQR2_SQ5_Msk (0x1FUL << ADC_SQR2_SQ5_Pos) /*!< 0x0000001F */
3127#define ADC_SQR2_SQ5 ADC_SQR2_SQ5_Msk /*!< ADC 5th conversion in regular sequence */
3128#define ADC_SQR2_SQ5_0 (0x01UL << ADC_SQR2_SQ5_Pos) /*!< 0x00000001 */
3129#define ADC_SQR2_SQ5_1 (0x02UL << ADC_SQR2_SQ5_Pos) /*!< 0x00000002 */
3130#define ADC_SQR2_SQ5_2 (0x04UL << ADC_SQR2_SQ5_Pos) /*!< 0x00000004 */
3131#define ADC_SQR2_SQ5_3 (0x08UL << ADC_SQR2_SQ5_Pos) /*!< 0x00000008 */
3132#define ADC_SQR2_SQ5_4 (0x10UL << ADC_SQR2_SQ5_Pos) /*!< 0x00000010 */
3133
3134#define ADC_SQR2_SQ6_Pos (6U)
3135#define ADC_SQR2_SQ6_Msk (0x1FUL << ADC_SQR2_SQ6_Pos) /*!< 0x000007C0 */
3136#define ADC_SQR2_SQ6 ADC_SQR2_SQ6_Msk /*!< ADC 6th conversion in regular sequence */
3137#define ADC_SQR2_SQ6_0 (0x01UL << ADC_SQR2_SQ6_Pos) /*!< 0x00000040 */
3138#define ADC_SQR2_SQ6_1 (0x02UL << ADC_SQR2_SQ6_Pos) /*!< 0x00000080 */
3139#define ADC_SQR2_SQ6_2 (0x04UL << ADC_SQR2_SQ6_Pos) /*!< 0x00000100 */
3140#define ADC_SQR2_SQ6_3 (0x08UL << ADC_SQR2_SQ6_Pos) /*!< 0x00000200 */
3141#define ADC_SQR2_SQ6_4 (0x10UL << ADC_SQR2_SQ6_Pos) /*!< 0x00000400 */
3142
3143#define ADC_SQR2_SQ7_Pos (12U)
3144#define ADC_SQR2_SQ7_Msk (0x1FUL << ADC_SQR2_SQ7_Pos) /*!< 0x0001F000 */
3145#define ADC_SQR2_SQ7 ADC_SQR2_SQ7_Msk /*!< ADC 7th conversion in regular sequence */
3146#define ADC_SQR2_SQ7_0 (0x01UL << ADC_SQR2_SQ7_Pos) /*!< 0x00001000 */
3147#define ADC_SQR2_SQ7_1 (0x02UL << ADC_SQR2_SQ7_Pos) /*!< 0x00002000 */
3148#define ADC_SQR2_SQ7_2 (0x04UL << ADC_SQR2_SQ7_Pos) /*!< 0x00004000 */
3149#define ADC_SQR2_SQ7_3 (0x08UL << ADC_SQR2_SQ7_Pos) /*!< 0x00008000 */
3150#define ADC_SQR2_SQ7_4 (0x10UL << ADC_SQR2_SQ7_Pos) /*!< 0x00010000 */
3151
3152#define ADC_SQR2_SQ8_Pos (18U)
3153#define ADC_SQR2_SQ8_Msk (0x1FUL << ADC_SQR2_SQ8_Pos) /*!< 0x007C0000 */
3154#define ADC_SQR2_SQ8 ADC_SQR2_SQ8_Msk /*!< ADC 8th conversion in regular sequence */
3155#define ADC_SQR2_SQ8_0 (0x01UL << ADC_SQR2_SQ8_Pos) /*!< 0x00040000 */
3156#define ADC_SQR2_SQ8_1 (0x02UL << ADC_SQR2_SQ8_Pos) /*!< 0x00080000 */
3157#define ADC_SQR2_SQ8_2 (0x04UL << ADC_SQR2_SQ8_Pos) /*!< 0x00100000 */
3158#define ADC_SQR2_SQ8_3 (0x08UL << ADC_SQR2_SQ8_Pos) /*!< 0x00200000 */
3159#define ADC_SQR2_SQ8_4 (0x10UL << ADC_SQR2_SQ8_Pos) /*!< 0x00400000 */
3160
3161#define ADC_SQR2_SQ9_Pos (24U)
3162#define ADC_SQR2_SQ9_Msk (0x1FUL << ADC_SQR2_SQ9_Pos) /*!< 0x1F000000 */
3163#define ADC_SQR2_SQ9 ADC_SQR2_SQ9_Msk /*!< ADC 9th conversion in regular sequence */
3164#define ADC_SQR2_SQ9_0 (0x01UL << ADC_SQR2_SQ9_Pos) /*!< 0x01000000 */
3165#define ADC_SQR2_SQ9_1 (0x02UL << ADC_SQR2_SQ9_Pos) /*!< 0x02000000 */
3166#define ADC_SQR2_SQ9_2 (0x04UL << ADC_SQR2_SQ9_Pos) /*!< 0x04000000 */
3167#define ADC_SQR2_SQ9_3 (0x08UL << ADC_SQR2_SQ9_Pos) /*!< 0x08000000 */
3168#define ADC_SQR2_SQ9_4 (0x10UL << ADC_SQR2_SQ9_Pos) /*!< 0x10000000 */
3169
3170/******************** Bit definition for ADC_SQR3 register ********************/
3171#define ADC_SQR3_SQ10_Pos (0U)
3172#define ADC_SQR3_SQ10_Msk (0x1FUL << ADC_SQR3_SQ10_Pos) /*!< 0x0000001F */
3173#define ADC_SQR3_SQ10 ADC_SQR3_SQ10_Msk /*!< ADC 10th conversion in regular sequence */
3174#define ADC_SQR3_SQ10_0 (0x01UL << ADC_SQR3_SQ10_Pos) /*!< 0x00000001 */
3175#define ADC_SQR3_SQ10_1 (0x02UL << ADC_SQR3_SQ10_Pos) /*!< 0x00000002 */
3176#define ADC_SQR3_SQ10_2 (0x04UL << ADC_SQR3_SQ10_Pos) /*!< 0x00000004 */
3177#define ADC_SQR3_SQ10_3 (0x08UL << ADC_SQR3_SQ10_Pos) /*!< 0x00000008 */
3178#define ADC_SQR3_SQ10_4 (0x10UL << ADC_SQR3_SQ10_Pos) /*!< 0x00000010 */
3179
3180#define ADC_SQR3_SQ11_Pos (6U)
3181#define ADC_SQR3_SQ11_Msk (0x1FUL << ADC_SQR3_SQ11_Pos) /*!< 0x000007C0 */
3182#define ADC_SQR3_SQ11 ADC_SQR3_SQ11_Msk /*!< ADC 11th conversion in regular sequence */
3183#define ADC_SQR3_SQ11_0 (0x01UL << ADC_SQR3_SQ11_Pos) /*!< 0x00000040 */
3184#define ADC_SQR3_SQ11_1 (0x02UL << ADC_SQR3_SQ11_Pos) /*!< 0x00000080 */
3185#define ADC_SQR3_SQ11_2 (0x04UL << ADC_SQR3_SQ11_Pos) /*!< 0x00000100 */
3186#define ADC_SQR3_SQ11_3 (0x08UL << ADC_SQR3_SQ11_Pos) /*!< 0x00000200 */
3187#define ADC_SQR3_SQ11_4 (0x10UL << ADC_SQR3_SQ11_Pos) /*!< 0x00000400 */
3188
3189#define ADC_SQR3_SQ12_Pos (12U)
3190#define ADC_SQR3_SQ12_Msk (0x1FUL << ADC_SQR3_SQ12_Pos) /*!< 0x0001F000 */
3191#define ADC_SQR3_SQ12 ADC_SQR3_SQ12_Msk /*!< ADC 12th conversion in regular sequence */
3192#define ADC_SQR3_SQ12_0 (0x01UL << ADC_SQR3_SQ12_Pos) /*!< 0x00001000 */
3193#define ADC_SQR3_SQ12_1 (0x02UL << ADC_SQR3_SQ12_Pos) /*!< 0x00002000 */
3194#define ADC_SQR3_SQ12_2 (0x04UL << ADC_SQR3_SQ12_Pos) /*!< 0x00004000 */
3195#define ADC_SQR3_SQ12_3 (0x08UL << ADC_SQR3_SQ12_Pos) /*!< 0x00008000 */
3196#define ADC_SQR3_SQ12_4 (0x10UL << ADC_SQR3_SQ12_Pos) /*!< 0x00010000 */
3197
3198#define ADC_SQR3_SQ13_Pos (18U)
3199#define ADC_SQR3_SQ13_Msk (0x1FUL << ADC_SQR3_SQ13_Pos) /*!< 0x007C0000 */
3200#define ADC_SQR3_SQ13 ADC_SQR3_SQ13_Msk /*!< ADC 13th conversion in regular sequence */
3201#define ADC_SQR3_SQ13_0 (0x01UL << ADC_SQR3_SQ13_Pos) /*!< 0x00040000 */
3202#define ADC_SQR3_SQ13_1 (0x02UL << ADC_SQR3_SQ13_Pos) /*!< 0x00080000 */
3203#define ADC_SQR3_SQ13_2 (0x04UL << ADC_SQR3_SQ13_Pos) /*!< 0x00100000 */
3204#define ADC_SQR3_SQ13_3 (0x08UL << ADC_SQR3_SQ13_Pos) /*!< 0x00200000 */
3205#define ADC_SQR3_SQ13_4 (0x10UL << ADC_SQR3_SQ13_Pos) /*!< 0x00400000 */
3206
3207#define ADC_SQR3_SQ14_Pos (24U)
3208#define ADC_SQR3_SQ14_Msk (0x1FUL << ADC_SQR3_SQ14_Pos) /*!< 0x1F000000 */
3209#define ADC_SQR3_SQ14 ADC_SQR3_SQ14_Msk /*!< ADC 14th conversion in regular sequence */
3210#define ADC_SQR3_SQ14_0 (0x01UL << ADC_SQR3_SQ14_Pos) /*!< 0x01000000 */
3211#define ADC_SQR3_SQ14_1 (0x02UL << ADC_SQR3_SQ14_Pos) /*!< 0x02000000 */
3212#define ADC_SQR3_SQ14_2 (0x04UL << ADC_SQR3_SQ14_Pos) /*!< 0x04000000 */
3213#define ADC_SQR3_SQ14_3 (0x08UL << ADC_SQR3_SQ14_Pos) /*!< 0x08000000 */
3214#define ADC_SQR3_SQ14_4 (0x10UL << ADC_SQR3_SQ14_Pos) /*!< 0x10000000 */
3215
3216/******************** Bit definition for ADC_SQR4 register ********************/
3217#define ADC_SQR4_SQ15_Pos (0U)
3218#define ADC_SQR4_SQ15_Msk (0x1FUL << ADC_SQR4_SQ15_Pos) /*!< 0x0000001F */
3219#define ADC_SQR4_SQ15 ADC_SQR4_SQ15_Msk /*!< ADC 15th conversion in regular sequence */
3220#define ADC_SQR4_SQ15_0 (0x01UL << ADC_SQR4_SQ15_Pos) /*!< 0x00000001 */
3221#define ADC_SQR4_SQ15_1 (0x02UL << ADC_SQR4_SQ15_Pos) /*!< 0x00000002 */
3222#define ADC_SQR4_SQ15_2 (0x04UL << ADC_SQR4_SQ15_Pos) /*!< 0x00000004 */
3223#define ADC_SQR4_SQ15_3 (0x08UL << ADC_SQR4_SQ15_Pos) /*!< 0x00000008 */
3224#define ADC_SQR4_SQ15_4 (0x10UL << ADC_SQR4_SQ15_Pos) /*!< 0x00000010 */
3225
3226#define ADC_SQR4_SQ16_Pos (6U)
3227#define ADC_SQR4_SQ16_Msk (0x1FUL << ADC_SQR4_SQ16_Pos) /*!< 0x000007C0 */
3228#define ADC_SQR4_SQ16 ADC_SQR4_SQ16_Msk /*!< ADC 16th conversion in regular sequence */
3229#define ADC_SQR4_SQ16_0 (0x01UL << ADC_SQR4_SQ16_Pos) /*!< 0x00000040 */
3230#define ADC_SQR4_SQ16_1 (0x02UL << ADC_SQR4_SQ16_Pos) /*!< 0x00000080 */
3231#define ADC_SQR4_SQ16_2 (0x04UL << ADC_SQR4_SQ16_Pos) /*!< 0x00000100 */
3232#define ADC_SQR4_SQ16_3 (0x08UL << ADC_SQR4_SQ16_Pos) /*!< 0x00000200 */
3233#define ADC_SQR4_SQ16_4 (0x10UL << ADC_SQR4_SQ16_Pos) /*!< 0x00000400 */
3234/******************** Bit definition for ADC_DR register ********************/
3235#define ADC_DR_RDATA_Pos (0U)
3236#define ADC_DR_RDATA_Msk (0xFFFFFFFFUL << ADC_DR_RDATA_Pos) /*!< 0xFFFFFFFF */
3237#define ADC_DR_RDATA ADC_DR_RDATA_Msk /*!< ADC regular Data converted */
3238
3239/******************** Bit definition for ADC_JSQR register ********************/
3240#define ADC_JSQR_JL_Pos (0U)
3241#define ADC_JSQR_JL_Msk (0x3UL << ADC_JSQR_JL_Pos) /*!< 0x00000003 */
3242#define ADC_JSQR_JL ADC_JSQR_JL_Msk /*!< ADC injected channel sequence length */
3243#define ADC_JSQR_JL_0 (0x1UL << ADC_JSQR_JL_Pos) /*!< 0x00000001 */
3244#define ADC_JSQR_JL_1 (0x2UL << ADC_JSQR_JL_Pos) /*!< 0x00000002 */
3245
3246#define ADC_JSQR_JEXTSEL_Pos (2U)
3247#define ADC_JSQR_JEXTSEL_Msk (0x1FUL << ADC_JSQR_JEXTSEL_Pos) /*!< 0x0000007C */
3248#define ADC_JSQR_JEXTSEL ADC_JSQR_JEXTSEL_Msk /*!< ADC external trigger selection for injected group */
3249#define ADC_JSQR_JEXTSEL_0 (0x01UL << ADC_JSQR_JEXTSEL_Pos) /*!< 0x00000004 */
3250#define ADC_JSQR_JEXTSEL_1 (0x02UL << ADC_JSQR_JEXTSEL_Pos) /*!< 0x00000008 */
3251#define ADC_JSQR_JEXTSEL_2 (0x04UL << ADC_JSQR_JEXTSEL_Pos) /*!< 0x00000010 */
3252#define ADC_JSQR_JEXTSEL_3 (0x08UL << ADC_JSQR_JEXTSEL_Pos) /*!< 0x00000020 */
3253#define ADC_JSQR_JEXTSEL_4 (0x10UL << ADC_JSQR_JEXTSEL_Pos) /*!< 0x00000040 */
3254
3255#define ADC_JSQR_JEXTEN_Pos (7U)
3256#define ADC_JSQR_JEXTEN_Msk (0x3UL << ADC_JSQR_JEXTEN_Pos) /*!< 0x00000180 */
3257#define ADC_JSQR_JEXTEN ADC_JSQR_JEXTEN_Msk /*!< ADC external trigger enable and polarity selection for injected channels */
3258#define ADC_JSQR_JEXTEN_0 (0x1UL << ADC_JSQR_JEXTEN_Pos) /*!< 0x00000080 */
3259#define ADC_JSQR_JEXTEN_1 (0x2UL << ADC_JSQR_JEXTEN_Pos) /*!< 0x00000100 */
3260
3261#define ADC_JSQR_JSQ1_Pos (9U)
3262#define ADC_JSQR_JSQ1_Msk (0x1FUL << ADC_JSQR_JSQ1_Pos) /*!< 0x00003E00 */
3263#define ADC_JSQR_JSQ1 ADC_JSQR_JSQ1_Msk /*!< ADC 1st conversion in injected sequence */
3264#define ADC_JSQR_JSQ1_0 (0x01UL << ADC_JSQR_JSQ1_Pos) /*!< 0x00000200 */
3265#define ADC_JSQR_JSQ1_1 (0x02UL << ADC_JSQR_JSQ1_Pos) /*!< 0x00000400 */
3266#define ADC_JSQR_JSQ1_2 (0x04UL << ADC_JSQR_JSQ1_Pos) /*!< 0x00000800 */
3267#define ADC_JSQR_JSQ1_3 (0x08UL << ADC_JSQR_JSQ1_Pos) /*!< 0x00001000 */
3268#define ADC_JSQR_JSQ1_4 (0x10UL << ADC_JSQR_JSQ1_Pos) /*!< 0x00002000 */
3269
3270#define ADC_JSQR_JSQ2_Pos (15U)
3271#define ADC_JSQR_JSQ2_Msk (0x1FUL << ADC_JSQR_JSQ2_Pos) /*!< 0x000F8000 */
3272#define ADC_JSQR_JSQ2 ADC_JSQR_JSQ2_Msk /*!< ADC 2nd conversion in injected sequence */
3273#define ADC_JSQR_JSQ2_0 (0x01UL << ADC_JSQR_JSQ2_Pos) /*!< 0x00008000 */
3274#define ADC_JSQR_JSQ2_1 (0x02UL << ADC_JSQR_JSQ2_Pos) /*!< 0x00010000 */
3275#define ADC_JSQR_JSQ2_2 (0x04UL << ADC_JSQR_JSQ2_Pos) /*!< 0x00020000 */
3276#define ADC_JSQR_JSQ2_3 (0x08UL << ADC_JSQR_JSQ2_Pos) /*!< 0x00040000 */
3277#define ADC_JSQR_JSQ2_4 (0x10UL << ADC_JSQR_JSQ2_Pos) /*!< 0x00080000 */
3278
3279#define ADC_JSQR_JSQ3_Pos (21U)
3280#define ADC_JSQR_JSQ3_Msk (0x1FUL << ADC_JSQR_JSQ3_Pos) /*!< 0x03E00000 */
3281#define ADC_JSQR_JSQ3 ADC_JSQR_JSQ3_Msk /*!< ADC 3rd conversion in injected sequence */
3282#define ADC_JSQR_JSQ3_0 (0x01UL << ADC_JSQR_JSQ3_Pos) /*!< 0x00200000 */
3283#define ADC_JSQR_JSQ3_1 (0x02UL << ADC_JSQR_JSQ3_Pos) /*!< 0x00400000 */
3284#define ADC_JSQR_JSQ3_2 (0x04UL << ADC_JSQR_JSQ3_Pos) /*!< 0x00800000 */
3285#define ADC_JSQR_JSQ3_3 (0x08UL << ADC_JSQR_JSQ3_Pos) /*!< 0x01000000 */
3286#define ADC_JSQR_JSQ3_4 (0x10UL << ADC_JSQR_JSQ3_Pos) /*!< 0x02000000 */
3287
3288#define ADC_JSQR_JSQ4_Pos (27U)
3289#define ADC_JSQR_JSQ4_Msk (0x1FUL << ADC_JSQR_JSQ4_Pos) /*!< 0xF8000000 */
3290#define ADC_JSQR_JSQ4 ADC_JSQR_JSQ4_Msk /*!< ADC 4th conversion in injected sequence */
3291#define ADC_JSQR_JSQ4_0 (0x01UL << ADC_JSQR_JSQ4_Pos) /*!< 0x08000000 */
3292#define ADC_JSQR_JSQ4_1 (0x02UL << ADC_JSQR_JSQ4_Pos) /*!< 0x10000000 */
3293#define ADC_JSQR_JSQ4_2 (0x04UL << ADC_JSQR_JSQ4_Pos) /*!< 0x20000000 */
3294#define ADC_JSQR_JSQ4_3 (0x08UL << ADC_JSQR_JSQ4_Pos) /*!< 0x40000000 */
3295#define ADC_JSQR_JSQ4_4 (0x10UL << ADC_JSQR_JSQ4_Pos) /*!< 0x80000000 */
3296
3297/******************** Bit definition for ADC_OFR1 register ********************/
3298#define ADC_OFR1_OFFSET1_Pos (0U)
3299#define ADC_OFR1_OFFSET1_Msk (0x3FFFFFFUL << ADC_OFR1_OFFSET1_Pos) /*!< 0x03FFFFFF */
3300#define ADC_OFR1_OFFSET1 ADC_OFR1_OFFSET1_Msk /*!< ADC data offset 1 for channel programmed into bits OFFSET1_CH[4:0] */
3301#define ADC_OFR1_OFFSET1_0 (0x0000001UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00000001 */
3302#define ADC_OFR1_OFFSET1_1 (0x0000002UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00000002 */
3303#define ADC_OFR1_OFFSET1_2 (0x0000004UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00000004 */
3304#define ADC_OFR1_OFFSET1_3 (0x0000008UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00000008 */
3305#define ADC_OFR1_OFFSET1_4 (0x0000010UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00000010 */
3306#define ADC_OFR1_OFFSET1_5 (0x0000020UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00000020 */
3307#define ADC_OFR1_OFFSET1_6 (0x0000040UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00000040 */
3308#define ADC_OFR1_OFFSET1_7 (0x0000080UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00000080 */
3309#define ADC_OFR1_OFFSET1_8 (0x0000100UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00000100 */
3310#define ADC_OFR1_OFFSET1_9 (0x0000200UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00000200 */
3311#define ADC_OFR1_OFFSET1_10 (0x0000400UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00000400 */
3312#define ADC_OFR1_OFFSET1_11 (0x0000800UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00000800 */
3313#define ADC_OFR1_OFFSET1_12 (0x0001000UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00001000 */
3314#define ADC_OFR1_OFFSET1_13 (0x0002000UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00002000 */
3315#define ADC_OFR1_OFFSET1_14 (0x0004000UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00004000 */
3316#define ADC_OFR1_OFFSET1_15 (0x0008000UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00008000 */
3317#define ADC_OFR1_OFFSET1_16 (0x0010000UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00010000 */
3318#define ADC_OFR1_OFFSET1_17 (0x0020000UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00020000 */
3319#define ADC_OFR1_OFFSET1_18 (0x0040000UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00040000 */
3320#define ADC_OFR1_OFFSET1_19 (0x0080000UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00080000 */
3321#define ADC_OFR1_OFFSET1_20 (0x0100000UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00100000 */
3322#define ADC_OFR1_OFFSET1_21 (0x0200000UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00200000 */
3323#define ADC_OFR1_OFFSET1_22 (0x0400000UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00400000 */
3324#define ADC_OFR1_OFFSET1_23 (0x0800000UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00800000 */
3325#define ADC_OFR1_OFFSET1_24 (0x1000000UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x01000000 */
3326#define ADC_OFR1_OFFSET1_25 (0x2000000UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x02000000 */
3327
3328#define ADC_OFR1_OFFSET1_CH_Pos (26U)
3329#define ADC_OFR1_OFFSET1_CH_Msk (0x1FUL << ADC_OFR1_OFFSET1_CH_Pos) /*!< 0x7C000000 */
3330#define ADC_OFR1_OFFSET1_CH ADC_OFR1_OFFSET1_CH_Msk /*!< ADC Channel selection for the data offset 1 */
3331#define ADC_OFR1_OFFSET1_CH_0 (0x01UL << ADC_OFR1_OFFSET1_CH_Pos) /*!< 0x04000000 */
3332#define ADC_OFR1_OFFSET1_CH_1 (0x02UL << ADC_OFR1_OFFSET1_CH_Pos) /*!< 0x08000000 */
3333#define ADC_OFR1_OFFSET1_CH_2 (0x04UL << ADC_OFR1_OFFSET1_CH_Pos) /*!< 0x10000000 */
3334#define ADC_OFR1_OFFSET1_CH_3 (0x08UL << ADC_OFR1_OFFSET1_CH_Pos) /*!< 0x20000000 */
3335#define ADC_OFR1_OFFSET1_CH_4 (0x10UL << ADC_OFR1_OFFSET1_CH_Pos) /*!< 0x40000000 */
3336
3337#define ADC_OFR1_SSATE_Pos (31U)
3338#define ADC_OFR1_SSATE_Msk (0x1UL << ADC_OFR1_SSATE_Pos) /*!< 0x80000000 */
3339#define ADC_OFR1_SSATE ADC_OFR1_SSATE_Msk /*!< ADC Signed saturation Enable */
3340
3341
3342/******************** Bit definition for ADC_OFR2 register ********************/
3343#define ADC_OFR2_OFFSET2_Pos (0U)
3344#define ADC_OFR2_OFFSET2_Msk (0x3FFFFFFUL << ADC_OFR2_OFFSET2_Pos) /*!< 0x03FFFFFF */
3345#define ADC_OFR2_OFFSET2 ADC_OFR2_OFFSET2_Msk /*!< ADC data offset 2 for channel programmed into bits OFFSET2_CH[4:0] */
3346#define ADC_OFR2_OFFSET2_0 (0x0000001UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00000001 */
3347#define ADC_OFR2_OFFSET2_1 (0x0000002UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00000002 */
3348#define ADC_OFR2_OFFSET2_2 (0x0000004UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00000004 */
3349#define ADC_OFR2_OFFSET2_3 (0x0000008UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00000008 */
3350#define ADC_OFR2_OFFSET2_4 (0x0000010UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00000010 */
3351#define ADC_OFR2_OFFSET2_5 (0x0000020UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00000020 */
3352#define ADC_OFR2_OFFSET2_6 (0x0000040UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00000040 */
3353#define ADC_OFR2_OFFSET2_7 (0x0000080UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00000080 */
3354#define ADC_OFR2_OFFSET2_8 (0x0000100UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00000100 */
3355#define ADC_OFR2_OFFSET2_9 (0x0000200UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00000200 */
3356#define ADC_OFR2_OFFSET2_10 (0x0000400UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00000400 */
3357#define ADC_OFR2_OFFSET2_11 (0x0000800UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00000800 */
3358#define ADC_OFR2_OFFSET2_12 (0x0001000UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00001000 */
3359#define ADC_OFR2_OFFSET2_13 (0x0002000UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00002000 */
3360#define ADC_OFR2_OFFSET2_14 (0x0004000UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00004000 */
3361#define ADC_OFR2_OFFSET2_15 (0x0008000UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00008000 */
3362#define ADC_OFR2_OFFSET2_16 (0x0010000UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00010000 */
3363#define ADC_OFR2_OFFSET2_17 (0x0020000UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00020000 */
3364#define ADC_OFR2_OFFSET2_18 (0x0040000UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00040000 */
3365#define ADC_OFR2_OFFSET2_19 (0x0080000UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00080000 */
3366#define ADC_OFR2_OFFSET2_20 (0x0100000UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00100000 */
3367#define ADC_OFR2_OFFSET2_21 (0x0200000UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00200000 */
3368#define ADC_OFR2_OFFSET2_22 (0x0400000UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00400000 */
3369#define ADC_OFR2_OFFSET2_23 (0x0800000UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00800000 */
3370#define ADC_OFR2_OFFSET2_24 (0x1000000UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x01000000 */
3371#define ADC_OFR2_OFFSET2_25 (0x2000000UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x02000000 */
3372
3373#define ADC_OFR2_OFFSET2_CH_Pos (26U)
3374#define ADC_OFR2_OFFSET2_CH_Msk (0x1FUL << ADC_OFR2_OFFSET2_CH_Pos) /*!< 0x7C000000 */
3375#define ADC_OFR2_OFFSET2_CH ADC_OFR2_OFFSET2_CH_Msk /*!< ADC Channel selection for the data offset 2 */
3376#define ADC_OFR2_OFFSET2_CH_0 (0x01UL << ADC_OFR2_OFFSET2_CH_Pos) /*!< 0x04000000 */
3377#define ADC_OFR2_OFFSET2_CH_1 (0x02UL << ADC_OFR2_OFFSET2_CH_Pos) /*!< 0x08000000 */
3378#define ADC_OFR2_OFFSET2_CH_2 (0x04UL << ADC_OFR2_OFFSET2_CH_Pos) /*!< 0x10000000 */
3379#define ADC_OFR2_OFFSET2_CH_3 (0x08UL << ADC_OFR2_OFFSET2_CH_Pos) /*!< 0x20000000 */
3380#define ADC_OFR2_OFFSET2_CH_4 (0x10UL << ADC_OFR2_OFFSET2_CH_Pos) /*!< 0x40000000 */
3381
3382#define ADC_OFR2_SSATE_Pos (31U)
3383#define ADC_OFR2_SSATE_Msk (0x1UL << ADC_OFR2_SSATE_Pos) /*!< 0x80000000 */
3384#define ADC_OFR2_SSATE ADC_OFR2_SSATE_Msk /*!< ADC Signed saturation Enable */
3385
3386
3387/******************** Bit definition for ADC_OFR3 register ********************/
3388#define ADC_OFR3_OFFSET3_Pos (0U)
3389#define ADC_OFR3_OFFSET3_Msk (0x3FFFFFFUL << ADC_OFR3_OFFSET3_Pos) /*!< 0x03FFFFFF */
3390#define ADC_OFR3_OFFSET3 ADC_OFR3_OFFSET3_Msk /*!< ADC data offset 3 for channel programmed into bits OFFSET3_CH[4:0] */
3391#define ADC_OFR3_OFFSET3_0 (0x0000001UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00000001 */
3392#define ADC_OFR3_OFFSET3_1 (0x0000002UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00000002 */
3393#define ADC_OFR3_OFFSET3_2 (0x0000004UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00000004 */
3394#define ADC_OFR3_OFFSET3_3 (0x0000008UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00000008 */
3395#define ADC_OFR3_OFFSET3_4 (0x0000010UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00000010 */
3396#define ADC_OFR3_OFFSET3_5 (0x0000020UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00000020 */
3397#define ADC_OFR3_OFFSET3_6 (0x0000040UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00000040 */
3398#define ADC_OFR3_OFFSET3_7 (0x0000080UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00000080 */
3399#define ADC_OFR3_OFFSET3_8 (0x0000100UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00000100 */
3400#define ADC_OFR3_OFFSET3_9 (0x0000200UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00000200 */
3401#define ADC_OFR3_OFFSET3_10 (0x0000400UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00000400 */
3402#define ADC_OFR3_OFFSET3_11 (0x0000800UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00000800 */
3403#define ADC_OFR3_OFFSET3_12 (0x0001000UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00001000 */
3404#define ADC_OFR3_OFFSET3_13 (0x0002000UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00002000 */
3405#define ADC_OFR3_OFFSET3_14 (0x0004000UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00004000 */
3406#define ADC_OFR3_OFFSET3_15 (0x0008000UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00008000 */
3407#define ADC_OFR3_OFFSET3_16 (0x0010000UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00010000 */
3408#define ADC_OFR3_OFFSET3_17 (0x0020000UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00020000 */
3409#define ADC_OFR3_OFFSET3_18 (0x0040000UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00040000 */
3410#define ADC_OFR3_OFFSET3_19 (0x0080000UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00080000 */
3411#define ADC_OFR3_OFFSET3_20 (0x0100000UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00100000 */
3412#define ADC_OFR3_OFFSET3_21 (0x0200000UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00200000 */
3413#define ADC_OFR3_OFFSET3_22 (0x0400000UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00400000 */
3414#define ADC_OFR3_OFFSET3_23 (0x0800000UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00800000 */
3415#define ADC_OFR3_OFFSET3_24 (0x1000000UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x01000000 */
3416#define ADC_OFR3_OFFSET3_25 (0x2000000UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x02000000 */
3417
3418#define ADC_OFR3_OFFSET3_CH_Pos (26U)
3419#define ADC_OFR3_OFFSET3_CH_Msk (0x1FUL << ADC_OFR3_OFFSET3_CH_Pos) /*!< 0x7C000000 */
3420#define ADC_OFR3_OFFSET3_CH ADC_OFR3_OFFSET3_CH_Msk /*!< ADC Channel selection for the data offset 3 */
3421#define ADC_OFR3_OFFSET3_CH_0 (0x01UL << ADC_OFR3_OFFSET3_CH_Pos) /*!< 0x04000000 */
3422#define ADC_OFR3_OFFSET3_CH_1 (0x02UL << ADC_OFR3_OFFSET3_CH_Pos) /*!< 0x08000000 */
3423#define ADC_OFR3_OFFSET3_CH_2 (0x04UL << ADC_OFR3_OFFSET3_CH_Pos) /*!< 0x10000000 */
3424#define ADC_OFR3_OFFSET3_CH_3 (0x08UL << ADC_OFR3_OFFSET3_CH_Pos) /*!< 0x20000000 */
3425#define ADC_OFR3_OFFSET3_CH_4 (0x10UL << ADC_OFR3_OFFSET3_CH_Pos) /*!< 0x40000000 */
3426
3427#define ADC_OFR3_SSATE_Pos (31U)
3428#define ADC_OFR3_SSATE_Msk (0x1UL << ADC_OFR3_SSATE_Pos) /*!< 0x80000000 */
3429#define ADC_OFR3_SSATE ADC_OFR3_SSATE_Msk /*!< ADC Signed saturation Enable */
3430
3431
3432/******************** Bit definition for ADC_OFR4 register ********************/
3433#define ADC_OFR4_OFFSET4_Pos (0U)
3434#define ADC_OFR4_OFFSET4_Msk (0x3FFFFFFUL << ADC_OFR4_OFFSET4_Pos) /*!< 0x03FFFFFF */
3435#define ADC_OFR4_OFFSET4 ADC_OFR4_OFFSET4_Msk /*!< ADC data offset 4 for channel programmed into bits OFFSET4_CH[4:0] */
3436#define ADC_OFR4_OFFSET4_0 (0x0000001UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00000001 */
3437#define ADC_OFR4_OFFSET4_1 (0x0000002UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00000002 */
3438#define ADC_OFR4_OFFSET4_2 (0x0000004UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00000004 */
3439#define ADC_OFR4_OFFSET4_3 (0x0000008UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00000008 */
3440#define ADC_OFR4_OFFSET4_4 (0x0000010UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00000010 */
3441#define ADC_OFR4_OFFSET4_5 (0x0000020UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00000020 */
3442#define ADC_OFR4_OFFSET4_6 (0x0000040UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00000040 */
3443#define ADC_OFR4_OFFSET4_7 (0x0000080UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00000080 */
3444#define ADC_OFR4_OFFSET4_8 (0x0000100UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00000100 */
3445#define ADC_OFR4_OFFSET4_9 (0x0000200UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00000200 */
3446#define ADC_OFR4_OFFSET4_10 (0x0000400UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00000400 */
3447#define ADC_OFR4_OFFSET4_11 (0x0000800UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00000800 */
3448#define ADC_OFR4_OFFSET4_12 (0x0001000UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00001000 */
3449#define ADC_OFR4_OFFSET4_13 (0x0002000UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00002000 */
3450#define ADC_OFR4_OFFSET4_14 (0x0004000UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00004000 */
3451#define ADC_OFR4_OFFSET4_15 (0x0008000UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00008000 */
3452#define ADC_OFR4_OFFSET4_16 (0x0010000UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00010000 */
3453#define ADC_OFR4_OFFSET4_17 (0x0020000UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00020000 */
3454#define ADC_OFR4_OFFSET4_18 (0x0040000UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00040000 */
3455#define ADC_OFR4_OFFSET4_19 (0x0080000UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00080000 */
3456#define ADC_OFR4_OFFSET4_20 (0x0100000UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00100000 */
3457#define ADC_OFR4_OFFSET4_21 (0x0200000UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00200000 */
3458#define ADC_OFR4_OFFSET4_22 (0x0400000UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00400000 */
3459#define ADC_OFR4_OFFSET4_23 (0x0800000UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00800000 */
3460#define ADC_OFR4_OFFSET4_24 (0x1000000UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x01000000 */
3461#define ADC_OFR4_OFFSET4_25 (0x2000000UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x02000000 */
3462
3463#define ADC_OFR4_OFFSET4_CH_Pos (26U)
3464#define ADC_OFR4_OFFSET4_CH_Msk (0x1FUL << ADC_OFR4_OFFSET4_CH_Pos) /*!< 0x7C000000 */
3465#define ADC_OFR4_OFFSET4_CH ADC_OFR4_OFFSET4_CH_Msk /*!< ADC Channel selection for the data offset 4 */
3466#define ADC_OFR4_OFFSET4_CH_0 (0x01UL << ADC_OFR4_OFFSET4_CH_Pos) /*!< 0x04000000 */
3467#define ADC_OFR4_OFFSET4_CH_1 (0x02UL << ADC_OFR4_OFFSET4_CH_Pos) /*!< 0x08000000 */
3468#define ADC_OFR4_OFFSET4_CH_2 (0x04UL << ADC_OFR4_OFFSET4_CH_Pos) /*!< 0x10000000 */
3469#define ADC_OFR4_OFFSET4_CH_3 (0x08UL << ADC_OFR4_OFFSET4_CH_Pos) /*!< 0x20000000 */
3470#define ADC_OFR4_OFFSET4_CH_4 (0x10UL << ADC_OFR4_OFFSET4_CH_Pos) /*!< 0x40000000 */
3471
3472#define ADC_OFR4_SSATE_Pos (31U)
3473#define ADC_OFR4_SSATE_Msk (0x1UL << ADC_OFR4_SSATE_Pos) /*!< 0x80000000 */
3474#define ADC_OFR4_SSATE ADC_OFR4_SSATE_Msk /*!< ADC Signed saturation Enable */
3475
3476
3477/******************** Bit definition for ADC_JDR1 register ********************/
3478#define ADC_JDR1_JDATA_Pos (0U)
3479#define ADC_JDR1_JDATA_Msk (0xFFFFFFFFUL << ADC_JDR1_JDATA_Pos) /*!< 0xFFFFFFFF */
3480#define ADC_JDR1_JDATA ADC_JDR1_JDATA_Msk /*!< ADC Injected DATA */
3481#define ADC_JDR1_JDATA_0 (0x00000001UL << ADC_JDR1_JDATA_Pos) /*!< 0x00000001 */
3482#define ADC_JDR1_JDATA_1 (0x00000002UL << ADC_JDR1_JDATA_Pos) /*!< 0x00000002 */
3483#define ADC_JDR1_JDATA_2 (0x00000004UL << ADC_JDR1_JDATA_Pos) /*!< 0x00000004 */
3484#define ADC_JDR1_JDATA_3 (0x00000008UL << ADC_JDR1_JDATA_Pos) /*!< 0x00000008 */
3485#define ADC_JDR1_JDATA_4 (0x00000010UL << ADC_JDR1_JDATA_Pos) /*!< 0x00000010 */
3486#define ADC_JDR1_JDATA_5 (0x00000020UL << ADC_JDR1_JDATA_Pos) /*!< 0x00000020 */
3487#define ADC_JDR1_JDATA_6 (0x00000040UL << ADC_JDR1_JDATA_Pos) /*!< 0x00000040 */
3488#define ADC_JDR1_JDATA_7 (0x00000080UL << ADC_JDR1_JDATA_Pos) /*!< 0x00000080 */
3489#define ADC_JDR1_JDATA_8 (0x00000100UL << ADC_JDR1_JDATA_Pos) /*!< 0x00000100 */
3490#define ADC_JDR1_JDATA_9 (0x00000200UL << ADC_JDR1_JDATA_Pos) /*!< 0x00000200 */
3491#define ADC_JDR1_JDATA_10 (0x00000400UL << ADC_JDR1_JDATA_Pos) /*!< 0x00000400 */
3492#define ADC_JDR1_JDATA_11 (0x00000800UL << ADC_JDR1_JDATA_Pos) /*!< 0x00000800 */
3493#define ADC_JDR1_JDATA_12 (0x00001000UL << ADC_JDR1_JDATA_Pos) /*!< 0x00001000 */
3494#define ADC_JDR1_JDATA_13 (0x00002000UL << ADC_JDR1_JDATA_Pos) /*!< 0x00002000 */
3495#define ADC_JDR1_JDATA_14 (0x00004000UL << ADC_JDR1_JDATA_Pos) /*!< 0x00004000 */
3496#define ADC_JDR1_JDATA_15 (0x00008000UL << ADC_JDR1_JDATA_Pos) /*!< 0x00008000 */
3497#define ADC_JDR1_JDATA_16 (0x00010000UL << ADC_JDR1_JDATA_Pos) /*!< 0x00010000 */
3498#define ADC_JDR1_JDATA_17 (0x00020000UL << ADC_JDR1_JDATA_Pos) /*!< 0x00020000 */
3499#define ADC_JDR1_JDATA_18 (0x00040000UL << ADC_JDR1_JDATA_Pos) /*!< 0x00040000 */
3500#define ADC_JDR1_JDATA_19 (0x00080000UL << ADC_JDR1_JDATA_Pos) /*!< 0x00080000 */
3501#define ADC_JDR1_JDATA_20 (0x00100000UL << ADC_JDR1_JDATA_Pos) /*!< 0x00100000 */
3502#define ADC_JDR1_JDATA_21 (0x00200000UL << ADC_JDR1_JDATA_Pos) /*!< 0x00200000 */
3503#define ADC_JDR1_JDATA_22 (0x00400000UL << ADC_JDR1_JDATA_Pos) /*!< 0x00400000 */
3504#define ADC_JDR1_JDATA_23 (0x00800000UL << ADC_JDR1_JDATA_Pos) /*!< 0x00800000 */
3505#define ADC_JDR1_JDATA_24 (0x01000000UL << ADC_JDR1_JDATA_Pos) /*!< 0x01000000 */
3506#define ADC_JDR1_JDATA_25 (0x02000000UL << ADC_JDR1_JDATA_Pos) /*!< 0x02000000 */
3507#define ADC_JDR1_JDATA_26 (0x04000000UL << ADC_JDR1_JDATA_Pos) /*!< 0x04000000 */
3508#define ADC_JDR1_JDATA_27 (0x08000000UL << ADC_JDR1_JDATA_Pos) /*!< 0x08000000 */
3509#define ADC_JDR1_JDATA_28 (0x10000000UL << ADC_JDR1_JDATA_Pos) /*!< 0x10000000 */
3510#define ADC_JDR1_JDATA_29 (0x20000000UL << ADC_JDR1_JDATA_Pos) /*!< 0x20000000 */
3511#define ADC_JDR1_JDATA_30 (0x40000000UL << ADC_JDR1_JDATA_Pos) /*!< 0x40000000 */
3512#define ADC_JDR1_JDATA_31 (0x80000000UL << ADC_JDR1_JDATA_Pos) /*!< 0x80000000 */
3513
3514/******************** Bit definition for ADC_JDR2 register ********************/
3515#define ADC_JDR2_JDATA_Pos (0U)
3516#define ADC_JDR2_JDATA_Msk (0xFFFFFFFFUL << ADC_JDR2_JDATA_Pos) /*!< 0xFFFFFFFF */
3517#define ADC_JDR2_JDATA ADC_JDR2_JDATA_Msk /*!< ADC Injected DATA */
3518#define ADC_JDR2_JDATA_0 (0x00000001UL << ADC_JDR2_JDATA_Pos) /*!< 0x00000001 */
3519#define ADC_JDR2_JDATA_1 (0x00000002UL << ADC_JDR2_JDATA_Pos) /*!< 0x00000002 */
3520#define ADC_JDR2_JDATA_2 (0x00000004UL << ADC_JDR2_JDATA_Pos) /*!< 0x00000004 */
3521#define ADC_JDR2_JDATA_3 (0x00000008UL << ADC_JDR2_JDATA_Pos) /*!< 0x00000008 */
3522#define ADC_JDR2_JDATA_4 (0x00000010UL << ADC_JDR2_JDATA_Pos) /*!< 0x00000010 */
3523#define ADC_JDR2_JDATA_5 (0x00000020UL << ADC_JDR2_JDATA_Pos) /*!< 0x00000020 */
3524#define ADC_JDR2_JDATA_6 (0x00000040UL << ADC_JDR2_JDATA_Pos) /*!< 0x00000040 */
3525#define ADC_JDR2_JDATA_7 (0x00000080UL << ADC_JDR2_JDATA_Pos) /*!< 0x00000080 */
3526#define ADC_JDR2_JDATA_8 (0x00000100UL << ADC_JDR2_JDATA_Pos) /*!< 0x00000100 */
3527#define ADC_JDR2_JDATA_9 (0x00000200UL << ADC_JDR2_JDATA_Pos) /*!< 0x00000200 */
3528#define ADC_JDR2_JDATA_10 (0x00000400UL << ADC_JDR2_JDATA_Pos) /*!< 0x00000400 */
3529#define ADC_JDR2_JDATA_11 (0x00000800UL << ADC_JDR2_JDATA_Pos) /*!< 0x00000800 */
3530#define ADC_JDR2_JDATA_12 (0x00001000UL << ADC_JDR2_JDATA_Pos) /*!< 0x00001000 */
3531#define ADC_JDR2_JDATA_13 (0x00002000UL << ADC_JDR2_JDATA_Pos) /*!< 0x00002000 */
3532#define ADC_JDR2_JDATA_14 (0x00004000UL << ADC_JDR2_JDATA_Pos) /*!< 0x00004000 */
3533#define ADC_JDR2_JDATA_15 (0x00008000UL << ADC_JDR2_JDATA_Pos) /*!< 0x00008000 */
3534#define ADC_JDR2_JDATA_16 (0x00010000UL << ADC_JDR2_JDATA_Pos) /*!< 0x00010000 */
3535#define ADC_JDR2_JDATA_17 (0x00020000UL << ADC_JDR2_JDATA_Pos) /*!< 0x00020000 */
3536#define ADC_JDR2_JDATA_18 (0x00040000UL << ADC_JDR2_JDATA_Pos) /*!< 0x00040000 */
3537#define ADC_JDR2_JDATA_19 (0x00080000UL << ADC_JDR2_JDATA_Pos) /*!< 0x00080000 */
3538#define ADC_JDR2_JDATA_20 (0x00100000UL << ADC_JDR2_JDATA_Pos) /*!< 0x00100000 */
3539#define ADC_JDR2_JDATA_21 (0x00200000UL << ADC_JDR2_JDATA_Pos) /*!< 0x00200000 */
3540#define ADC_JDR2_JDATA_22 (0x00400000UL << ADC_JDR2_JDATA_Pos) /*!< 0x00400000 */
3541#define ADC_JDR2_JDATA_23 (0x00800000UL << ADC_JDR2_JDATA_Pos) /*!< 0x00800000 */
3542#define ADC_JDR2_JDATA_24 (0x01000000UL << ADC_JDR2_JDATA_Pos) /*!< 0x01000000 */
3543#define ADC_JDR2_JDATA_25 (0x02000000UL << ADC_JDR2_JDATA_Pos) /*!< 0x02000000 */
3544#define ADC_JDR2_JDATA_26 (0x04000000UL << ADC_JDR2_JDATA_Pos) /*!< 0x04000000 */
3545#define ADC_JDR2_JDATA_27 (0x08000000UL << ADC_JDR2_JDATA_Pos) /*!< 0x08000000 */
3546#define ADC_JDR2_JDATA_28 (0x10000000UL << ADC_JDR2_JDATA_Pos) /*!< 0x10000000 */
3547#define ADC_JDR2_JDATA_29 (0x20000000UL << ADC_JDR2_JDATA_Pos) /*!< 0x20000000 */
3548#define ADC_JDR2_JDATA_30 (0x40000000UL << ADC_JDR2_JDATA_Pos) /*!< 0x40000000 */
3549#define ADC_JDR2_JDATA_31 (0x80000000UL << ADC_JDR2_JDATA_Pos) /*!< 0x80000000 */
3550
3551/******************** Bit definition for ADC_JDR3 register ********************/
3552#define ADC_JDR3_JDATA_Pos (0U)
3553#define ADC_JDR3_JDATA_Msk (0xFFFFFFFFUL << ADC_JDR3_JDATA_Pos) /*!< 0xFFFFFFFF */
3554#define ADC_JDR3_JDATA ADC_JDR3_JDATA_Msk /*!< ADC Injected DATA */
3555#define ADC_JDR3_JDATA_0 (0x00000001UL << ADC_JDR3_JDATA_Pos) /*!< 0x00000001 */
3556#define ADC_JDR3_JDATA_1 (0x00000002UL << ADC_JDR3_JDATA_Pos) /*!< 0x00000002 */
3557#define ADC_JDR3_JDATA_2 (0x00000004UL << ADC_JDR3_JDATA_Pos) /*!< 0x00000004 */
3558#define ADC_JDR3_JDATA_3 (0x00000008UL << ADC_JDR3_JDATA_Pos) /*!< 0x00000008 */
3559#define ADC_JDR3_JDATA_4 (0x00000010UL << ADC_JDR3_JDATA_Pos) /*!< 0x00000010 */
3560#define ADC_JDR3_JDATA_5 (0x00000020UL << ADC_JDR3_JDATA_Pos) /*!< 0x00000020 */
3561#define ADC_JDR3_JDATA_6 (0x00000040UL << ADC_JDR3_JDATA_Pos) /*!< 0x00000040 */
3562#define ADC_JDR3_JDATA_7 (0x00000080UL << ADC_JDR3_JDATA_Pos) /*!< 0x00000080 */
3563#define ADC_JDR3_JDATA_8 (0x00000100UL << ADC_JDR3_JDATA_Pos) /*!< 0x00000100 */
3564#define ADC_JDR3_JDATA_9 (0x00000200UL << ADC_JDR3_JDATA_Pos) /*!< 0x00000200 */
3565#define ADC_JDR3_JDATA_10 (0x00000400UL << ADC_JDR3_JDATA_Pos) /*!< 0x00000400 */
3566#define ADC_JDR3_JDATA_11 (0x00000800UL << ADC_JDR3_JDATA_Pos) /*!< 0x00000800 */
3567#define ADC_JDR3_JDATA_12 (0x00001000UL << ADC_JDR3_JDATA_Pos) /*!< 0x00001000 */
3568#define ADC_JDR3_JDATA_13 (0x00002000UL << ADC_JDR3_JDATA_Pos) /*!< 0x00002000 */
3569#define ADC_JDR3_JDATA_14 (0x00004000UL << ADC_JDR3_JDATA_Pos) /*!< 0x00004000 */
3570#define ADC_JDR3_JDATA_15 (0x00008000UL << ADC_JDR3_JDATA_Pos) /*!< 0x00008000 */
3571#define ADC_JDR3_JDATA_16 (0x00010000UL << ADC_JDR3_JDATA_Pos) /*!< 0x00010000 */
3572#define ADC_JDR3_JDATA_17 (0x00020000UL << ADC_JDR3_JDATA_Pos) /*!< 0x00020000 */
3573#define ADC_JDR3_JDATA_18 (0x00040000UL << ADC_JDR3_JDATA_Pos) /*!< 0x00040000 */
3574#define ADC_JDR3_JDATA_19 (0x00080000UL << ADC_JDR3_JDATA_Pos) /*!< 0x00080000 */
3575#define ADC_JDR3_JDATA_20 (0x00100000UL << ADC_JDR3_JDATA_Pos) /*!< 0x00100000 */
3576#define ADC_JDR3_JDATA_21 (0x00200000UL << ADC_JDR3_JDATA_Pos) /*!< 0x00200000 */
3577#define ADC_JDR3_JDATA_22 (0x00400000UL << ADC_JDR3_JDATA_Pos) /*!< 0x00400000 */
3578#define ADC_JDR3_JDATA_23 (0x00800000UL << ADC_JDR3_JDATA_Pos) /*!< 0x00800000 */
3579#define ADC_JDR3_JDATA_24 (0x01000000UL << ADC_JDR3_JDATA_Pos) /*!< 0x01000000 */
3580#define ADC_JDR3_JDATA_25 (0x02000000UL << ADC_JDR3_JDATA_Pos) /*!< 0x02000000 */
3581#define ADC_JDR3_JDATA_26 (0x04000000UL << ADC_JDR3_JDATA_Pos) /*!< 0x04000000 */
3582#define ADC_JDR3_JDATA_27 (0x08000000UL << ADC_JDR3_JDATA_Pos) /*!< 0x08000000 */
3583#define ADC_JDR3_JDATA_28 (0x10000000UL << ADC_JDR3_JDATA_Pos) /*!< 0x10000000 */
3584#define ADC_JDR3_JDATA_29 (0x20000000UL << ADC_JDR3_JDATA_Pos) /*!< 0x20000000 */
3585#define ADC_JDR3_JDATA_30 (0x40000000UL << ADC_JDR3_JDATA_Pos) /*!< 0x40000000 */
3586#define ADC_JDR3_JDATA_31 (0x80000000UL << ADC_JDR3_JDATA_Pos) /*!< 0x80000000 */
3587
3588/******************** Bit definition for ADC_JDR4 register ********************/
3589#define ADC_JDR4_JDATA_Pos (0U)
3590#define ADC_JDR4_JDATA_Msk (0xFFFFFFFFUL << ADC_JDR4_JDATA_Pos) /*!< 0xFFFFFFFF */
3591#define ADC_JDR4_JDATA ADC_JDR4_JDATA_Msk /*!< ADC Injected DATA */
3592#define ADC_JDR4_JDATA_0 (0x00000001UL << ADC_JDR4_JDATA_Pos) /*!< 0x00000001 */
3593#define ADC_JDR4_JDATA_1 (0x00000002UL << ADC_JDR4_JDATA_Pos) /*!< 0x00000002 */
3594#define ADC_JDR4_JDATA_2 (0x00000004UL << ADC_JDR4_JDATA_Pos) /*!< 0x00000004 */
3595#define ADC_JDR4_JDATA_3 (0x00000008UL << ADC_JDR4_JDATA_Pos) /*!< 0x00000008 */
3596#define ADC_JDR4_JDATA_4 (0x00000010UL << ADC_JDR4_JDATA_Pos) /*!< 0x00000010 */
3597#define ADC_JDR4_JDATA_5 (0x00000020UL << ADC_JDR4_JDATA_Pos) /*!< 0x00000020 */
3598#define ADC_JDR4_JDATA_6 (0x00000040UL << ADC_JDR4_JDATA_Pos) /*!< 0x00000040 */
3599#define ADC_JDR4_JDATA_7 (0x00000080UL << ADC_JDR4_JDATA_Pos) /*!< 0x00000080 */
3600#define ADC_JDR4_JDATA_8 (0x00000100UL << ADC_JDR4_JDATA_Pos) /*!< 0x00000100 */
3601#define ADC_JDR4_JDATA_9 (0x00000200UL << ADC_JDR4_JDATA_Pos) /*!< 0x00000200 */
3602#define ADC_JDR4_JDATA_10 (0x00000400UL << ADC_JDR4_JDATA_Pos) /*!< 0x00000400 */
3603#define ADC_JDR4_JDATA_11 (0x00000800UL << ADC_JDR4_JDATA_Pos) /*!< 0x00000800 */
3604#define ADC_JDR4_JDATA_12 (0x00001000UL << ADC_JDR4_JDATA_Pos) /*!< 0x00001000 */
3605#define ADC_JDR4_JDATA_13 (0x00002000UL << ADC_JDR4_JDATA_Pos) /*!< 0x00002000 */
3606#define ADC_JDR4_JDATA_14 (0x00004000UL << ADC_JDR4_JDATA_Pos) /*!< 0x00004000 */
3607#define ADC_JDR4_JDATA_15 (0x00008000UL << ADC_JDR4_JDATA_Pos) /*!< 0x00008000 */
3608#define ADC_JDR4_JDATA_16 (0x00010000UL << ADC_JDR4_JDATA_Pos) /*!< 0x00010000 */
3609#define ADC_JDR4_JDATA_17 (0x00020000UL << ADC_JDR4_JDATA_Pos) /*!< 0x00020000 */
3610#define ADC_JDR4_JDATA_18 (0x00040000UL << ADC_JDR4_JDATA_Pos) /*!< 0x00040000 */
3611#define ADC_JDR4_JDATA_19 (0x00080000UL << ADC_JDR4_JDATA_Pos) /*!< 0x00080000 */
3612#define ADC_JDR4_JDATA_20 (0x00100000UL << ADC_JDR4_JDATA_Pos) /*!< 0x00100000 */
3613#define ADC_JDR4_JDATA_21 (0x00200000UL << ADC_JDR4_JDATA_Pos) /*!< 0x00200000 */
3614#define ADC_JDR4_JDATA_22 (0x00400000UL << ADC_JDR4_JDATA_Pos) /*!< 0x00400000 */
3615#define ADC_JDR4_JDATA_23 (0x00800000UL << ADC_JDR4_JDATA_Pos) /*!< 0x00800000 */
3616#define ADC_JDR4_JDATA_24 (0x01000000UL << ADC_JDR4_JDATA_Pos) /*!< 0x01000000 */
3617#define ADC_JDR4_JDATA_25 (0x02000000UL << ADC_JDR4_JDATA_Pos) /*!< 0x02000000 */
3618#define ADC_JDR4_JDATA_26 (0x04000000UL << ADC_JDR4_JDATA_Pos) /*!< 0x04000000 */
3619#define ADC_JDR4_JDATA_27 (0x08000000UL << ADC_JDR4_JDATA_Pos) /*!< 0x08000000 */
3620#define ADC_JDR4_JDATA_28 (0x10000000UL << ADC_JDR4_JDATA_Pos) /*!< 0x10000000 */
3621#define ADC_JDR4_JDATA_29 (0x20000000UL << ADC_JDR4_JDATA_Pos) /*!< 0x20000000 */
3622#define ADC_JDR4_JDATA_30 (0x40000000UL << ADC_JDR4_JDATA_Pos) /*!< 0x40000000 */
3623#define ADC_JDR4_JDATA_31 (0x80000000UL << ADC_JDR4_JDATA_Pos) /*!< 0x80000000 */
3624
3625/******************** Bit definition for ADC_AWD2CR register ********************/
3626#define ADC_AWD2CR_AWD2CH_Pos (0U)
3627#define ADC_AWD2CR_AWD2CH_Msk (0xFFFFFUL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x000FFFFF */
3628#define ADC_AWD2CR_AWD2CH ADC_AWD2CR_AWD2CH_Msk /*!< ADC Analog watchdog 2 channel selection */
3629#define ADC_AWD2CR_AWD2CH_0 (0x00001UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000001 */
3630#define ADC_AWD2CR_AWD2CH_1 (0x00002UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000002 */
3631#define ADC_AWD2CR_AWD2CH_2 (0x00004UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000004 */
3632#define ADC_AWD2CR_AWD2CH_3 (0x00008UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000008 */
3633#define ADC_AWD2CR_AWD2CH_4 (0x00010UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000010 */
3634#define ADC_AWD2CR_AWD2CH_5 (0x00020UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000020 */
3635#define ADC_AWD2CR_AWD2CH_6 (0x00040UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000040 */
3636#define ADC_AWD2CR_AWD2CH_7 (0x00080UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000080 */
3637#define ADC_AWD2CR_AWD2CH_8 (0x00100UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000100 */
3638#define ADC_AWD2CR_AWD2CH_9 (0x00200UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000200 */
3639#define ADC_AWD2CR_AWD2CH_10 (0x00400UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000400 */
3640#define ADC_AWD2CR_AWD2CH_11 (0x00800UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000800 */
3641#define ADC_AWD2CR_AWD2CH_12 (0x01000UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00001000 */
3642#define ADC_AWD2CR_AWD2CH_13 (0x02000UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00002000 */
3643#define ADC_AWD2CR_AWD2CH_14 (0x04000UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00004000 */
3644#define ADC_AWD2CR_AWD2CH_15 (0x08000UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00008000 */
3645#define ADC_AWD2CR_AWD2CH_16 (0x10000UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00010000 */
3646#define ADC_AWD2CR_AWD2CH_17 (0x20000UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00020000 */
3647#define ADC_AWD2CR_AWD2CH_18 (0x40000UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00040000 */
3648#define ADC_AWD2CR_AWD2CH_19 (0x80000UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00080000 */
3649
3650/******************** Bit definition for ADC_AWD3CR register ********************/
3651#define ADC_AWD3CR_AWD3CH_Pos (0U)
3652#define ADC_AWD3CR_AWD3CH_Msk (0xFFFFFUL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x000FFFFF */
3653#define ADC_AWD3CR_AWD3CH ADC_AWD3CR_AWD3CH_Msk /*!< ADC Analog watchdog 2 channel selection */
3654#define ADC_AWD3CR_AWD3CH_0 (0x00001UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000001 */
3655#define ADC_AWD3CR_AWD3CH_1 (0x00002UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000002 */
3656#define ADC_AWD3CR_AWD3CH_2 (0x00004UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000004 */
3657#define ADC_AWD3CR_AWD3CH_3 (0x00008UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000008 */
3658#define ADC_AWD3CR_AWD3CH_4 (0x00010UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000010 */
3659#define ADC_AWD3CR_AWD3CH_5 (0x00020UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000020 */
3660#define ADC_AWD3CR_AWD3CH_6 (0x00040UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000040 */
3661#define ADC_AWD3CR_AWD3CH_7 (0x00080UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000080 */
3662#define ADC_AWD3CR_AWD3CH_8 (0x00100UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000100 */
3663#define ADC_AWD3CR_AWD3CH_9 (0x00200UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000200 */
3664#define ADC_AWD3CR_AWD3CH_10 (0x00400UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000400 */
3665#define ADC_AWD3CR_AWD3CH_11 (0x00800UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000800 */
3666#define ADC_AWD3CR_AWD3CH_12 (0x01000UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00001000 */
3667#define ADC_AWD3CR_AWD3CH_13 (0x02000UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00002000 */
3668#define ADC_AWD3CR_AWD3CH_14 (0x04000UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00004000 */
3669#define ADC_AWD3CR_AWD3CH_15 (0x08000UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00008000 */
3670#define ADC_AWD3CR_AWD3CH_16 (0x10000UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00010000 */
3671#define ADC_AWD3CR_AWD3CH_17 (0x20000UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00020000 */
3672#define ADC_AWD3CR_AWD3CH_18 (0x40000UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00040000 */
3673#define ADC_AWD3CR_AWD3CH_19 (0x80000UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00080000 */
3674
3675/******************** Bit definition for ADC_DIFSEL register ********************/
3676#define ADC_DIFSEL_DIFSEL_Pos (0U)
3677#define ADC_DIFSEL_DIFSEL_Msk (0xFFFFFUL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x000FFFFF */
3678#define ADC_DIFSEL_DIFSEL ADC_DIFSEL_DIFSEL_Msk /*!< ADC differential modes for channels 1 to 18 */
3679#define ADC_DIFSEL_DIFSEL_0 (0x00001UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00000001 */
3680#define ADC_DIFSEL_DIFSEL_1 (0x00002UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00000002 */
3681#define ADC_DIFSEL_DIFSEL_2 (0x00004UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00000004 */
3682#define ADC_DIFSEL_DIFSEL_3 (0x00008UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00000008 */
3683#define ADC_DIFSEL_DIFSEL_4 (0x00010UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00000010 */
3684#define ADC_DIFSEL_DIFSEL_5 (0x00020UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00000020 */
3685#define ADC_DIFSEL_DIFSEL_6 (0x00040UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00000040 */
3686#define ADC_DIFSEL_DIFSEL_7 (0x00080UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00000080 */
3687#define ADC_DIFSEL_DIFSEL_8 (0x00100UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00000100 */
3688#define ADC_DIFSEL_DIFSEL_9 (0x00200UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00000200 */
3689#define ADC_DIFSEL_DIFSEL_10 (0x00400UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00000400 */
3690#define ADC_DIFSEL_DIFSEL_11 (0x00800UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00000800 */
3691#define ADC_DIFSEL_DIFSEL_12 (0x01000UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00001000 */
3692#define ADC_DIFSEL_DIFSEL_13 (0x02000UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00002000 */
3693#define ADC_DIFSEL_DIFSEL_14 (0x04000UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00004000 */
3694#define ADC_DIFSEL_DIFSEL_15 (0x08000UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00008000 */
3695#define ADC_DIFSEL_DIFSEL_16 (0x10000UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00010000 */
3696#define ADC_DIFSEL_DIFSEL_17 (0x20000UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00020000 */
3697#define ADC_DIFSEL_DIFSEL_18 (0x40000UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00040000 */
3698#define ADC_DIFSEL_DIFSEL_19 (0x80000UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00080000 */
3699
3700/******************** Bit definition for ADC_CALFACT register ********************/
3701#define ADC_CALFACT_CALFACT_S_Pos (0U)
3702#define ADC_CALFACT_CALFACT_S_Msk (0x7FFUL << ADC_CALFACT_CALFACT_S_Pos) /*!< 0x000007FF */
3703#define ADC_CALFACT_CALFACT_S ADC_CALFACT_CALFACT_S_Msk /*!< ADC calibration factors in single-ended mode */
3704#define ADC_CALFACT_CALFACT_S_0 (0x001UL << ADC_CALFACT_CALFACT_S_Pos) /*!< 0x00000001 */
3705#define ADC_CALFACT_CALFACT_S_1 (0x002UL << ADC_CALFACT_CALFACT_S_Pos) /*!< 0x00000002 */
3706#define ADC_CALFACT_CALFACT_S_2 (0x004UL << ADC_CALFACT_CALFACT_S_Pos) /*!< 0x00000004 */
3707#define ADC_CALFACT_CALFACT_S_3 (0x008UL << ADC_CALFACT_CALFACT_S_Pos) /*!< 0x00000008 */
3708#define ADC_CALFACT_CALFACT_S_4 (0x010UL << ADC_CALFACT_CALFACT_S_Pos) /*!< 0x00000010 */
3709#define ADC_CALFACT_CALFACT_S_5 (0x020UL << ADC_CALFACT_CALFACT_S_Pos) /*!< 0x00000020 */
3710#define ADC_CALFACT_CALFACT_S_6 (0x040UL << ADC_CALFACT_CALFACT_S_Pos) /*!< 0x00000040 */
3711#define ADC_CALFACT_CALFACT_S_7 (0x080UL << ADC_CALFACT_CALFACT_S_Pos) /*!< 0x00000080 */
3712#define ADC_CALFACT_CALFACT_S_8 (0x100UL << ADC_CALFACT_CALFACT_S_Pos) /*!< 0x00000100 */
3713#define ADC_CALFACT_CALFACT_S_9 (0x200UL << ADC_CALFACT_CALFACT_S_Pos) /*!< 0x00000200 */
3714#define ADC_CALFACT_CALFACT_S_10 (0x400UL << ADC_CALFACT_CALFACT_S_Pos) /*!< 0x00000400 */
3715#define ADC_CALFACT_CALFACT_D_Pos (16U)
3716#define ADC_CALFACT_CALFACT_D_Msk (0x7FFUL << ADC_CALFACT_CALFACT_D_Pos) /*!< 0x07FF0000 */
3717#define ADC_CALFACT_CALFACT_D ADC_CALFACT_CALFACT_D_Msk /*!< ADC calibration factors in differential mode */
3718#define ADC_CALFACT_CALFACT_D_0 (0x001UL << ADC_CALFACT_CALFACT_D_Pos) /*!< 0x00010000 */
3719#define ADC_CALFACT_CALFACT_D_1 (0x002UL << ADC_CALFACT_CALFACT_D_Pos) /*!< 0x00020000 */
3720#define ADC_CALFACT_CALFACT_D_2 (0x004UL << ADC_CALFACT_CALFACT_D_Pos) /*!< 0x00040000 */
3721#define ADC_CALFACT_CALFACT_D_3 (0x008UL << ADC_CALFACT_CALFACT_D_Pos) /*!< 0x00080000 */
3722#define ADC_CALFACT_CALFACT_D_4 (0x010UL << ADC_CALFACT_CALFACT_D_Pos) /*!< 0x00100000 */
3723#define ADC_CALFACT_CALFACT_D_5 (0x020UL << ADC_CALFACT_CALFACT_D_Pos) /*!< 0x00200000 */
3724#define ADC_CALFACT_CALFACT_D_6 (0x040UL << ADC_CALFACT_CALFACT_D_Pos) /*!< 0x00400000 */
3725#define ADC_CALFACT_CALFACT_D_7 (0x080UL << ADC_CALFACT_CALFACT_D_Pos) /*!< 0x00800000 */
3726#define ADC_CALFACT_CALFACT_D_8 (0x100UL << ADC_CALFACT_CALFACT_D_Pos) /*!< 0x01000000 */
3727#define ADC_CALFACT_CALFACT_D_9 (0x200UL << ADC_CALFACT_CALFACT_D_Pos) /*!< 0x02000000 */
3728#define ADC_CALFACT_CALFACT_D_10 (0x400UL << ADC_CALFACT_CALFACT_D_Pos) /*!< 0x04000000 */
3729
3730/******************** Bit definition for ADC_CALFACT2 register ********************/
3731#define ADC_CALFACT2_LINCALFACT_Pos (0U)
3732#define ADC_CALFACT2_LINCALFACT_Msk (0x3FFFFFFFUL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x3FFFFFFF */
3733#define ADC_CALFACT2_LINCALFACT ADC_CALFACT2_LINCALFACT_Msk /*!< ADC Linearity calibration factors */
3734#define ADC_CALFACT2_LINCALFACT_0 (0x00000001UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00000001 */
3735#define ADC_CALFACT2_LINCALFACT_1 (0x00000002UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00000002 */
3736#define ADC_CALFACT2_LINCALFACT_2 (0x00000004UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00000004 */
3737#define ADC_CALFACT2_LINCALFACT_3 (0x00000008UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00000008 */
3738#define ADC_CALFACT2_LINCALFACT_4 (0x00000010UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00000010 */
3739#define ADC_CALFACT2_LINCALFACT_5 (0x00000020UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00000020 */
3740#define ADC_CALFACT2_LINCALFACT_6 (0x00000040UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00000040 */
3741#define ADC_CALFACT2_LINCALFACT_7 (0x00000080UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00000080 */
3742#define ADC_CALFACT2_LINCALFACT_8 (0x00000100UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00000100 */
3743#define ADC_CALFACT2_LINCALFACT_9 (0x00000200UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00000200 */
3744#define ADC_CALFACT2_LINCALFACT_10 (0x00000400UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00000400 */
3745#define ADC_CALFACT2_LINCALFACT_11 (0x00000800UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00000800 */
3746#define ADC_CALFACT2_LINCALFACT_12 (0x00001000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00001000 */
3747#define ADC_CALFACT2_LINCALFACT_13 (0x00002000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00002000 */
3748#define ADC_CALFACT2_LINCALFACT_14 (0x00004000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00004000 */
3749#define ADC_CALFACT2_LINCALFACT_15 (0x00008000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00008000 */
3750#define ADC_CALFACT2_LINCALFACT_16 (0x00010000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00010000 */
3751#define ADC_CALFACT2_LINCALFACT_17 (0x00020000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00020000 */
3752#define ADC_CALFACT2_LINCALFACT_18 (0x00040000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00040000 */
3753#define ADC_CALFACT2_LINCALFACT_19 (0x00080000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00080000 */
3754#define ADC_CALFACT2_LINCALFACT_20 (0x00100000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00100000 */
3755#define ADC_CALFACT2_LINCALFACT_21 (0x00200000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00200000 */
3756#define ADC_CALFACT2_LINCALFACT_22 (0x00400000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00400000 */
3757#define ADC_CALFACT2_LINCALFACT_23 (0x00800000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00800000 */
3758#define ADC_CALFACT2_LINCALFACT_24 (0x01000000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x01000000 */
3759#define ADC_CALFACT2_LINCALFACT_25 (0x02000000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x02000000 */
3760#define ADC_CALFACT2_LINCALFACT_26 (0x04000000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x04000000 */
3761#define ADC_CALFACT2_LINCALFACT_27 (0x08000000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x08000000 */
3762#define ADC_CALFACT2_LINCALFACT_28 (0x10000000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x10000000 */
3763#define ADC_CALFACT2_LINCALFACT_29 (0x20000000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x20000000 */
3764
3765/************************* ADC Common registers *****************************/
3766/******************** Bit definition for ADC_CSR register ********************/
3767#define ADC_CSR_ADRDY_MST_Pos (0U)
3768#define ADC_CSR_ADRDY_MST_Msk (0x1UL << ADC_CSR_ADRDY_MST_Pos) /*!< 0x00000001 */
3769#define ADC_CSR_ADRDY_MST ADC_C