aboutsummaryrefslogtreecommitdiff
path: root/lib/chibios/os/common/ext/ST/STM32H7xx/stm32h745xx.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chibios/os/common/ext/ST/STM32H7xx/stm32h745xx.h')
-rw-r--r--lib/chibios/os/common/ext/ST/STM32H7xx/stm32h745xx.h27074
1 files changed, 27074 insertions, 0 deletions
diff --git a/lib/chibios/os/common/ext/ST/STM32H7xx/stm32h745xx.h b/lib/chibios/os/common/ext/ST/STM32H7xx/stm32h745xx.h
new file mode 100644
index 000000000..1028f3613
--- /dev/null
+++ b/lib/chibios/os/common/ext/ST/STM32H7xx/stm32h745xx.h
@@ -0,0 +1,27074 @@
1/**
2 ******************************************************************************
3 * @file stm32h745xx.h
4 * @author MCD Application Team
5 * @brief CMSIS STM32H745xx 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) 2019 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 stm32h745xx
31 * @{
32 */
33
34#ifndef STM32H745xx_H
35#define STM32H745xx_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 CM7_SEV_IRQn = 64, /*!< CM7 Send event interrupt for CM4 */
126 CM4_SEV_IRQn = 65, /*!< CM4 Send event interrupt for CM7 */
127 DMA2_Stream5_IRQn = 68, /*!< DMA2 Stream 5 global interrupt */
128 DMA2_Stream6_IRQn = 69, /*!< DMA2 Stream 6 global interrupt */
129 DMA2_Stream7_IRQn = 70, /*!< DMA2 Stream 7 global interrupt */
130 USART6_IRQn = 71, /*!< USART6 global interrupt */
131 I2C3_EV_IRQn = 72, /*!< I2C3 event interrupt */
132 I2C3_ER_IRQn = 73, /*!< I2C3 error interrupt */
133 OTG_HS_EP1_OUT_IRQn = 74, /*!< USB OTG HS End Point 1 Out global interrupt */
134 OTG_HS_EP1_IN_IRQn = 75, /*!< USB OTG HS End Point 1 In global interrupt */
135 OTG_HS_WKUP_IRQn = 76, /*!< USB OTG HS Wakeup through EXTI interrupt */
136 OTG_HS_IRQn = 77, /*!< USB OTG HS global interrupt */
137 DCMI_IRQn = 78, /*!< DCMI global interrupt */
138 RNG_IRQn = 80, /*!< RNG global interrupt */
139 FPU_IRQn = 81, /*!< FPU global interrupt */
140 UART7_IRQn = 82, /*!< UART7 global interrupt */
141 UART8_IRQn = 83, /*!< UART8 global interrupt */
142 SPI4_IRQn = 84, /*!< SPI4 global Interrupt */
143 SPI5_IRQn = 85, /*!< SPI5 global Interrupt */
144 SPI6_IRQn = 86, /*!< SPI6 global Interrupt */
145 SAI1_IRQn = 87, /*!< SAI1 global Interrupt */
146 LTDC_IRQn = 88, /*!< LTDC global Interrupt */
147 LTDC_ER_IRQn = 89, /*!< LTDC Error global Interrupt */
148 DMA2D_IRQn = 90, /*!< DMA2D global Interrupt */
149 SAI2_IRQn = 91, /*!< SAI2 global Interrupt */
150 QUADSPI_IRQn = 92, /*!< Quad SPI global interrupt */
151 LPTIM1_IRQn = 93, /*!< LP TIM1 interrupt */
152 CEC_IRQn = 94, /*!< HDMI-CEC global Interrupt */
153 I2C4_EV_IRQn = 95, /*!< I2C4 Event Interrupt */
154 I2C4_ER_IRQn = 96, /*!< I2C4 Error Interrupt */
155 SPDIF_RX_IRQn = 97, /*!< SPDIF-RX global Interrupt */
156 OTG_FS_EP1_OUT_IRQn = 98, /*!< USB OTG HS2 global interrupt */
157 OTG_FS_EP1_IN_IRQn = 99, /*!< USB OTG HS2 End Point 1 Out global interrupt */
158 OTG_FS_WKUP_IRQn = 100, /*!< USB OTG HS2 End Point 1 In global interrupt */
159 OTG_FS_IRQn = 101, /*!< USB OTG HS2 Wakeup through EXTI interrupt */
160 DMAMUX1_OVR_IRQn = 102, /*!<DMAMUX1 Overrun interrupt */
161 HRTIM1_Master_IRQn = 103, /*!< HRTIM Master Timer global Interrupts */
162 HRTIM1_TIMA_IRQn = 104, /*!< HRTIM Timer A global Interrupt */
163 HRTIM1_TIMB_IRQn = 105, /*!< HRTIM Timer B global Interrupt */
164 HRTIM1_TIMC_IRQn = 106, /*!< HRTIM Timer C global Interrupt */
165 HRTIM1_TIMD_IRQn = 107, /*!< HRTIM Timer D global Interrupt */
166 HRTIM1_TIME_IRQn = 108, /*!< HRTIM Timer E global Interrupt */
167 HRTIM1_FLT_IRQn = 109, /*!< HRTIM Fault global Interrupt */
168 DFSDM1_FLT0_IRQn = 110, /*!<DFSDM Filter1 Interrupt */
169 DFSDM1_FLT1_IRQn = 111, /*!<DFSDM Filter2 Interrupt */
170 DFSDM1_FLT2_IRQn = 112, /*!<DFSDM Filter3 Interrupt */
171 DFSDM1_FLT3_IRQn = 113, /*!<DFSDM Filter4 Interrupt */
172 SAI3_IRQn = 114, /*!< SAI3 global Interrupt */
173 SWPMI1_IRQn = 115, /*!< Serial Wire Interface 1 global interrupt */
174 TIM15_IRQn = 116, /*!< TIM15 global Interrupt */
175 TIM16_IRQn = 117, /*!< TIM16 global Interrupt */
176 TIM17_IRQn = 118, /*!< TIM17 global Interrupt */
177 MDIOS_WKUP_IRQn = 119, /*!< MDIOS Wakeup Interrupt */
178 MDIOS_IRQn = 120, /*!< MDIOS global Interrupt */
179 JPEG_IRQn = 121, /*!< JPEG global Interrupt */
180 MDMA_IRQn = 122, /*!< MDMA global Interrupt */
181 SDMMC2_IRQn = 124, /*!< SDMMC2 global Interrupt */
182 HSEM1_IRQn = 125, /*!< HSEM1 global Interrupt */
183 HSEM2_IRQn = 126, /*!< HSEM2 global Interrupt */
184 ADC3_IRQn = 127, /*!< ADC3 global Interrupt */
185 DMAMUX2_OVR_IRQn = 128, /*!<DMAMUX2 Overrun interrupt */
186 BDMA_Channel0_IRQn = 129, /*!< BDMA Channel 0 global Interrupt */
187 BDMA_Channel1_IRQn = 130, /*!< BDMA Channel 1 global Interrupt */
188 BDMA_Channel2_IRQn = 131, /*!< BDMA Channel 2 global Interrupt */
189 BDMA_Channel3_IRQn = 132, /*!< BDMA Channel 3 global Interrupt */
190 BDMA_Channel4_IRQn = 133, /*!< BDMA Channel 4 global Interrupt */
191 BDMA_Channel5_IRQn = 134, /*!< BDMA Channel 5 global Interrupt */
192 BDMA_Channel6_IRQn = 135, /*!< BDMA Channel 6 global Interrupt */
193 BDMA_Channel7_IRQn = 136, /*!< BDMA Channel 7 global Interrupt */
194 COMP_IRQn = 137 , /*!< COMP global Interrupt */
195 LPTIM2_IRQn = 138, /*!< LP TIM2 global interrupt */
196 LPTIM3_IRQn = 139, /*!< LP TIM3 global interrupt */
197 LPTIM4_IRQn = 140, /*!< LP TIM4 global interrupt */
198 LPTIM5_IRQn = 141, /*!< LP TIM5 global interrupt */
199 LPUART1_IRQn = 142, /*!< LP UART1 interrupt */
200 WWDG_RST_IRQn = 143, /*!<Window Watchdog reset interrupt (exti_d2_wwdg_it, exti_d1_wwdg_it) */
201 CRS_IRQn = 144, /*!< Clock Recovery Global Interrupt */
202 ECC_IRQn = 145, /*!< ECC diagnostic Global Interrupt */
203 SAI4_IRQn = 146, /*!< SAI4 global interrupt */
204 HOLD_CORE_IRQn = 148, /*!< Hold core interrupt */
205 WAKEUP_PIN_IRQn = 149, /*!< Interrupt for all 6 wake-up pins */
206} IRQn_Type;
207
208/**
209 * @}
210 */
211
212/** @addtogroup Configuration_section_for_CMSIS
213 * @{
214 */
215#define DUAL_CORE /*!< Dual core line feature */
216
217#define SMPS /*!< Switched mode power supply feature */
218
219
220
221/**
222 * @brief Configuration of the Cortex-M4/ Cortex-M7 Processor and Core Peripherals
223 */
224#ifdef CORE_CM4
225#define __CM4_REV 0x0001 /*!< Cortex-M4 revision r0p1 */
226#define __MPU_PRESENT 1 /*!< CM4 provides an MPU */
227#define __NVIC_PRIO_BITS 4 /*!< CM4 uses 4 Bits for the Priority Levels */
228#define __Vendor_SysTickConfig 0 /*!< Set to 1 if different SysTick Config is used */
229#define __FPU_PRESENT 1 /*!< FPU present */
230
231#include "core_cm4.h" /*!< Cortex-M4 processor and core peripherals */
232#else /* CORE_CM7 */
233#ifdef CORE_CM7
234#define __CM7_REV 0x0100U /*!< Cortex-M7 revision r1p0 */
235#define __MPU_PRESENT 1 /*!< CM7 provides an MPU */
236#define __NVIC_PRIO_BITS 4 /*!< CM7 uses 4 Bits for the Priority Levels */
237#define __Vendor_SysTickConfig 0 /*!< Set to 1 if different SysTick Config is used */
238#define __FPU_PRESENT 1 /*!< FPU present */
239#define __ICACHE_PRESENT 1 /*!< CM7 instruction cache present */
240#define __DCACHE_PRESENT 1 /*!< CM7 data cache present */
241#include "core_cm7.h" /*!< Cortex-M7 processor and core peripherals */
242#else /* UNKNOWN_CORE */
243#error Please #define CORE_CM4 or CORE_CM7
244#endif /* CORE_CM7 */
245#endif /* CORE_CM4 */
246
247/**
248 * @}
249 */
250
251
252
253
254
255#include "system_stm32h7xx.h"
256#include <stdint.h>
257
258/** @addtogroup Peripheral_registers_structures
259 * @{
260 */
261
262/**
263 * @brief Analog to Digital Converter
264 */
265
266typedef struct
267{
268 __IO uint32_t ISR; /*!< ADC Interrupt and Status Register, Address offset: 0x00 */
269 __IO uint32_t IER; /*!< ADC Interrupt Enable Register, Address offset: 0x04 */
270 __IO uint32_t CR; /*!< ADC control register, Address offset: 0x08 */
271 __IO uint32_t CFGR; /*!< ADC Configuration register, Address offset: 0x0C */
272 __IO uint32_t CFGR2; /*!< ADC Configuration register 2, Address offset: 0x10 */
273 __IO uint32_t SMPR1; /*!< ADC sample time register 1, Address offset: 0x14 */
274 __IO uint32_t SMPR2; /*!< ADC sample time register 2, Address offset: 0x18 */
275 __IO uint32_t PCSEL; /*!< ADC pre-channel selection, Address offset: 0x1C */
276 __IO uint32_t LTR1; /*!< ADC watchdog Lower threshold register 1, Address offset: 0x20 */
277 __IO uint32_t HTR1; /*!< ADC watchdog higher threshold register 1, Address offset: 0x24 */
278 uint32_t RESERVED1; /*!< Reserved, 0x028 */
279 uint32_t RESERVED2; /*!< Reserved, 0x02C */
280 __IO uint32_t SQR1; /*!< ADC regular sequence register 1, Address offset: 0x30 */
281 __IO uint32_t SQR2; /*!< ADC regular sequence register 2, Address offset: 0x34 */
282 __IO uint32_t SQR3; /*!< ADC regular sequence register 3, Address offset: 0x38 */
283 __IO uint32_t SQR4; /*!< ADC regular sequence register 4, Address offset: 0x3C */
284 __IO uint32_t DR; /*!< ADC regular data register, Address offset: 0x40 */
285 uint32_t RESERVED3; /*!< Reserved, 0x044 */
286 uint32_t RESERVED4; /*!< Reserved, 0x048 */
287 __IO uint32_t JSQR; /*!< ADC injected sequence register, Address offset: 0x4C */
288 uint32_t RESERVED5[4]; /*!< Reserved, 0x050 - 0x05C */
289 __IO uint32_t OFR1; /*!< ADC offset register 1, Address offset: 0x60 */
290 __IO uint32_t OFR2; /*!< ADC offset register 2, Address offset: 0x64 */
291 __IO uint32_t OFR3; /*!< ADC offset register 3, Address offset: 0x68 */
292 __IO uint32_t OFR4; /*!< ADC offset register 4, Address offset: 0x6C */
293 uint32_t RESERVED6[4]; /*!< Reserved, 0x070 - 0x07C */
294 __IO uint32_t JDR1; /*!< ADC injected data register 1, Address offset: 0x80 */
295 __IO uint32_t JDR2; /*!< ADC injected data register 2, Address offset: 0x84 */
296 __IO uint32_t JDR3; /*!< ADC injected data register 3, Address offset: 0x88 */
297 __IO uint32_t JDR4; /*!< ADC injected data register 4, Address offset: 0x8C */
298 uint32_t RESERVED7[4]; /*!< Reserved, 0x090 - 0x09C */
299 __IO uint32_t AWD2CR; /*!< ADC Analog Watchdog 2 Configuration Register, Address offset: 0xA0 */
300 __IO uint32_t AWD3CR; /*!< ADC Analog Watchdog 3 Configuration Register, Address offset: 0xA4 */
301 uint32_t RESERVED8; /*!< Reserved, 0x0A8 */
302 uint32_t RESERVED9; /*!< Reserved, 0x0AC */
303 __IO uint32_t LTR2; /*!< ADC watchdog Lower threshold register 2, Address offset: 0xB0 */
304 __IO uint32_t HTR2; /*!< ADC watchdog Higher threshold register 2, Address offset: 0xB4 */
305 __IO uint32_t LTR3; /*!< ADC watchdog Lower threshold register 3, Address offset: 0xB8 */
306 __IO uint32_t HTR3; /*!< ADC watchdog Higher threshold register 3, Address offset: 0xBC */
307 __IO uint32_t DIFSEL; /*!< ADC Differential Mode Selection Register, Address offset: 0xC0 */
308 __IO uint32_t CALFACT; /*!< ADC Calibration Factors, Address offset: 0xC4 */
309 __IO uint32_t CALFACT2; /*!< ADC Linearity Calibration Factors, Address offset: 0xC8 */
310} ADC_TypeDef;
311
312
313typedef struct
314{
315__IO uint32_t CSR; /*!< ADC Common status register, Address offset: ADC1/3 base address + 0x300 */
316uint32_t RESERVED; /*!< Reserved, ADC1/3 base address + 0x304 */
317__IO uint32_t CCR; /*!< ADC common control register, Address offset: ADC1/3 base address + 0x308 */
318__IO uint32_t CDR; /*!< ADC common regular data register for dual Address offset: ADC1/3 base address + 0x30C */
319__IO uint32_t CDR2; /*!< ADC common regular data register for 32-bit dual mode Address offset: ADC1/3 base address + 0x310 */
320
321} ADC_Common_TypeDef;
322
323/**
324 * @brief ART
325 */
326
327typedef struct
328{
329 __IO uint32_t CTR; /*!< ART accelerator - control register */
330}ART_TypeDef;
331
332/**
333 * @brief VREFBUF
334 */
335
336typedef struct
337{
338 __IO uint32_t CSR; /*!< VREFBUF control and status register, Address offset: 0x00 */
339 __IO uint32_t CCR; /*!< VREFBUF calibration and control register, Address offset: 0x04 */
340} VREFBUF_TypeDef;
341
342
343/**
344 * @brief FD Controller Area Network
345 */
346
347typedef struct
348{
349 __IO uint32_t CREL; /*!< FDCAN Core Release register, Address offset: 0x000 */
350 __IO uint32_t ENDN; /*!< FDCAN Endian register, Address offset: 0x004 */
351 __IO uint32_t RESERVED1; /*!< Reserved, 0x008 */
352 __IO uint32_t DBTP; /*!< FDCAN Data Bit Timing & Prescaler register, Address offset: 0x00C */
353 __IO uint32_t TEST; /*!< FDCAN Test register, Address offset: 0x010 */
354 __IO uint32_t RWD; /*!< FDCAN RAM Watchdog register, Address offset: 0x014 */
355 __IO uint32_t CCCR; /*!< FDCAN CC Control register, Address offset: 0x018 */
356 __IO uint32_t NBTP; /*!< FDCAN Nominal Bit Timing & Prescaler register, Address offset: 0x01C */
357 __IO uint32_t TSCC; /*!< FDCAN Timestamp Counter Configuration register, Address offset: 0x020 */
358 __IO uint32_t TSCV; /*!< FDCAN Timestamp Counter Value register, Address offset: 0x024 */
359 __IO uint32_t TOCC; /*!< FDCAN Timeout Counter Configuration register, Address offset: 0x028 */
360 __IO uint32_t TOCV; /*!< FDCAN Timeout Counter Value register, Address offset: 0x02C */
361 __IO uint32_t RESERVED2[4]; /*!< Reserved, 0x030 - 0x03C */
362 __IO uint32_t ECR; /*!< FDCAN Error Counter register, Address offset: 0x040 */
363 __IO uint32_t PSR; /*!< FDCAN Protocol Status register, Address offset: 0x044 */
364 __IO uint32_t TDCR; /*!< FDCAN Transmitter Delay Compensation register, Address offset: 0x048 */
365 __IO uint32_t RESERVED3; /*!< Reserved, 0x04C */
366 __IO uint32_t IR; /*!< FDCAN Interrupt register, Address offset: 0x050 */
367 __IO uint32_t IE; /*!< FDCAN Interrupt Enable register, Address offset: 0x054 */
368 __IO uint32_t ILS; /*!< FDCAN Interrupt Line Select register, Address offset: 0x058 */
369 __IO uint32_t ILE; /*!< FDCAN Interrupt Line Enable register, Address offset: 0x05C */
370 __IO uint32_t RESERVED4[8]; /*!< Reserved, 0x060 - 0x07C */
371 __IO uint32_t GFC; /*!< FDCAN Global Filter Configuration register, Address offset: 0x080 */
372 __IO uint32_t SIDFC; /*!< FDCAN Standard ID Filter Configuration register, Address offset: 0x084 */
373 __IO uint32_t XIDFC; /*!< FDCAN Extended ID Filter Configuration register, Address offset: 0x088 */
374 __IO uint32_t RESERVED5; /*!< Reserved, 0x08C */
375 __IO uint32_t XIDAM; /*!< FDCAN Extended ID AND Mask register, Address offset: 0x090 */
376 __IO uint32_t HPMS; /*!< FDCAN High Priority Message Status register, Address offset: 0x094 */
377 __IO uint32_t NDAT1; /*!< FDCAN New Data 1 register, Address offset: 0x098 */
378 __IO uint32_t NDAT2; /*!< FDCAN New Data 2 register, Address offset: 0x09C */
379 __IO uint32_t RXF0C; /*!< FDCAN Rx FIFO 0 Configuration register, Address offset: 0x0A0 */
380 __IO uint32_t RXF0S; /*!< FDCAN Rx FIFO 0 Status register, Address offset: 0x0A4 */
381 __IO uint32_t RXF0A; /*!< FDCAN Rx FIFO 0 Acknowledge register, Address offset: 0x0A8 */
382 __IO uint32_t RXBC; /*!< FDCAN Rx Buffer Configuration register, Address offset: 0x0AC */
383 __IO uint32_t RXF1C; /*!< FDCAN Rx FIFO 1 Configuration register, Address offset: 0x0B0 */
384 __IO uint32_t RXF1S; /*!< FDCAN Rx FIFO 1 Status register, Address offset: 0x0B4 */
385 __IO uint32_t RXF1A; /*!< FDCAN Rx FIFO 1 Acknowledge register, Address offset: 0x0B8 */
386 __IO uint32_t RXESC; /*!< FDCAN Rx Buffer/FIFO Element Size Configuration register, Address offset: 0x0BC */
387 __IO uint32_t TXBC; /*!< FDCAN Tx Buffer Configuration register, Address offset: 0x0C0 */
388 __IO uint32_t TXFQS; /*!< FDCAN Tx FIFO/Queue Status register, Address offset: 0x0C4 */
389 __IO uint32_t TXESC; /*!< FDCAN Tx Buffer Element Size Configuration register, Address offset: 0x0C8 */
390 __IO uint32_t TXBRP; /*!< FDCAN Tx Buffer Request Pending register, Address offset: 0x0CC */
391 __IO uint32_t TXBAR; /*!< FDCAN Tx Buffer Add Request register, Address offset: 0x0D0 */
392 __IO uint32_t TXBCR; /*!< FDCAN Tx Buffer Cancellation Request register, Address offset: 0x0D4 */
393 __IO uint32_t TXBTO; /*!< FDCAN Tx Buffer Transmission Occurred register, Address offset: 0x0D8 */
394 __IO uint32_t TXBCF; /*!< FDCAN Tx Buffer Cancellation Finished register, Address offset: 0x0DC */
395 __IO uint32_t TXBTIE; /*!< FDCAN Tx Buffer Transmission Interrupt Enable register, Address offset: 0x0E0 */
396 __IO uint32_t TXBCIE; /*!< FDCAN Tx Buffer Cancellation Finished Interrupt Enable register, Address offset: 0x0E4 */
397 __IO uint32_t RESERVED6[2]; /*!< Reserved, 0x0E8 - 0x0EC */
398 __IO uint32_t TXEFC; /*!< FDCAN Tx Event FIFO Configuration register, Address offset: 0x0F0 */
399 __IO uint32_t TXEFS; /*!< FDCAN Tx Event FIFO Status register, Address offset: 0x0F4 */
400 __IO uint32_t TXEFA; /*!< FDCAN Tx Event FIFO Acknowledge register, Address offset: 0x0F8 */
401 __IO uint32_t RESERVED7; /*!< Reserved, 0x0FC */
402} FDCAN_GlobalTypeDef;
403
404/**
405 * @brief TTFD Controller Area Network
406 */
407
408typedef struct
409{
410 __IO uint32_t TTTMC; /*!< TT Trigger Memory Configuration register, Address offset: 0x100 */
411 __IO uint32_t TTRMC; /*!< TT Reference Message Configuration register, Address offset: 0x104 */
412 __IO uint32_t TTOCF; /*!< TT Operation Configuration register, Address offset: 0x108 */
413 __IO uint32_t TTMLM; /*!< TT Matrix Limits register, Address offset: 0x10C */
414 __IO uint32_t TURCF; /*!< TUR Configuration register, Address offset: 0x110 */
415 __IO uint32_t TTOCN; /*!< TT Operation Control register, Address offset: 0x114 */
416 __IO uint32_t TTGTP; /*!< TT Global Time Preset register, Address offset: 0x118 */
417 __IO uint32_t TTTMK; /*!< TT Time Mark register, Address offset: 0x11C */
418 __IO uint32_t TTIR; /*!< TT Interrupt register, Address offset: 0x120 */
419 __IO uint32_t TTIE; /*!< TT Interrupt Enable register, Address offset: 0x124 */
420 __IO uint32_t TTILS; /*!< TT Interrupt Line Select register, Address offset: 0x128 */
421 __IO uint32_t TTOST; /*!< TT Operation Status register, Address offset: 0x12C */
422 __IO uint32_t TURNA; /*!< TT TUR Numerator Actual register, Address offset: 0x130 */
423 __IO uint32_t TTLGT; /*!< TT Local and Global Time register, Address offset: 0x134 */
424 __IO uint32_t TTCTC; /*!< TT Cycle Time and Count register, Address offset: 0x138 */
425 __IO uint32_t TTCPT; /*!< TT Capture Time register, Address offset: 0x13C */
426 __IO uint32_t TTCSM; /*!< TT Cycle Sync Mark register, Address offset: 0x140 */
427 __IO uint32_t RESERVED1[111]; /*!< Reserved, 0x144 - 0x2FC */
428 __IO uint32_t TTTS; /*!< TT Trigger Select register, Address offset: 0x300 */
429} TTCAN_TypeDef;
430
431/**
432 * @brief FD Controller Area Network
433 */
434
435typedef struct
436{
437 __IO uint32_t CREL; /*!< Clock Calibration Unit Core Release register, Address offset: 0x00 */
438 __IO uint32_t CCFG; /*!< Calibration Configuration register, Address offset: 0x04 */
439 __IO uint32_t CSTAT; /*!< Calibration Status register, Address offset: 0x08 */
440 __IO uint32_t CWD; /*!< Calibration Watchdog register, Address offset: 0x0C */
441 __IO uint32_t IR; /*!< CCU Interrupt register, Address offset: 0x10 */
442 __IO uint32_t IE; /*!< CCU Interrupt Enable register, Address offset: 0x14 */
443} FDCAN_ClockCalibrationUnit_TypeDef;
444
445
446/**
447 * @brief Consumer Electronics Control
448 */
449
450typedef struct
451{
452 __IO uint32_t CR; /*!< CEC control register, Address offset:0x00 */
453 __IO uint32_t CFGR; /*!< CEC configuration register, Address offset:0x04 */
454 __IO uint32_t TXDR; /*!< CEC Tx data register , Address offset:0x08 */
455 __IO uint32_t RXDR; /*!< CEC Rx Data Register, Address offset:0x0C */
456 __IO uint32_t ISR; /*!< CEC Interrupt and Status Register, Address offset:0x10 */
457 __IO uint32_t IER; /*!< CEC interrupt enable register, Address offset:0x14 */
458}CEC_TypeDef;
459
460/**
461 * @brief CRC calculation unit
462 */
463
464typedef struct
465{
466 __IO uint32_t DR; /*!< CRC Data register, Address offset: 0x00 */
467 __IO uint32_t IDR; /*!< CRC Independent data register, Address offset: 0x04 */
468 __IO uint32_t CR; /*!< CRC Control register, Address offset: 0x08 */
469 uint32_t RESERVED2; /*!< Reserved, 0x0C */
470 __IO uint32_t INIT; /*!< Initial CRC value register, Address offset: 0x10 */
471 __IO uint32_t POL; /*!< CRC polynomial register, Address offset: 0x14 */
472} CRC_TypeDef;
473
474
475/**
476 * @brief Clock Recovery System
477 */
478typedef struct
479{
480__IO uint32_t CR; /*!< CRS ccontrol register, Address offset: 0x00 */
481__IO uint32_t CFGR; /*!< CRS configuration register, Address offset: 0x04 */
482__IO uint32_t ISR; /*!< CRS interrupt and status register, Address offset: 0x08 */
483__IO uint32_t ICR; /*!< CRS interrupt flag clear register, Address offset: 0x0C */
484} CRS_TypeDef;
485
486
487/**
488 * @brief Digital to Analog Converter
489 */
490
491typedef struct
492{
493 __IO uint32_t CR; /*!< DAC control register, Address offset: 0x00 */
494 __IO uint32_t SWTRIGR; /*!< DAC software trigger register, Address offset: 0x04 */
495 __IO uint32_t DHR12R1; /*!< DAC channel1 12-bit right-aligned data holding register, Address offset: 0x08 */
496 __IO uint32_t DHR12L1; /*!< DAC channel1 12-bit left aligned data holding register, Address offset: 0x0C */
497 __IO uint32_t DHR8R1; /*!< DAC channel1 8-bit right aligned data holding register, Address offset: 0x10 */
498 __IO uint32_t DHR12R2; /*!< DAC channel2 12-bit right aligned data holding register, Address offset: 0x14 */
499 __IO uint32_t DHR12L2; /*!< DAC channel2 12-bit left aligned data holding register, Address offset: 0x18 */
500 __IO uint32_t DHR8R2; /*!< DAC channel2 8-bit right-aligned data holding register, Address offset: 0x1C */
501 __IO uint32_t DHR12RD; /*!< Dual DAC 12-bit right-aligned data holding register, Address offset: 0x20 */
502 __IO uint32_t DHR12LD; /*!< DUAL DAC 12-bit left aligned data holding register, Address offset: 0x24 */
503 __IO uint32_t DHR8RD; /*!< DUAL DAC 8-bit right aligned data holding register, Address offset: 0x28 */
504 __IO uint32_t DOR1; /*!< DAC channel1 data output register, Address offset: 0x2C */
505 __IO uint32_t DOR2; /*!< DAC channel2 data output register, Address offset: 0x30 */
506 __IO uint32_t SR; /*!< DAC status register, Address offset: 0x34 */
507 __IO uint32_t CCR; /*!< DAC calibration control register, Address offset: 0x38 */
508 __IO uint32_t MCR; /*!< DAC mode control register, Address offset: 0x3C */
509 __IO uint32_t SHSR1; /*!< DAC Sample and Hold sample time register 1, Address offset: 0x40 */
510 __IO uint32_t SHSR2; /*!< DAC Sample and Hold sample time register 2, Address offset: 0x44 */
511 __IO uint32_t SHHR; /*!< DAC Sample and Hold hold time register, Address offset: 0x48 */
512 __IO uint32_t SHRR; /*!< DAC Sample and Hold refresh time register, Address offset: 0x4C */
513} DAC_TypeDef;
514
515/**
516 * @brief DFSDM module registers
517 */
518typedef struct
519{
520 __IO uint32_t FLTCR1; /*!< DFSDM control register1, Address offset: 0x100 */
521 __IO uint32_t FLTCR2; /*!< DFSDM control register2, Address offset: 0x104 */
522 __IO uint32_t FLTISR; /*!< DFSDM interrupt and status register, Address offset: 0x108 */
523 __IO uint32_t FLTICR; /*!< DFSDM interrupt flag clear register, Address offset: 0x10C */
524 __IO uint32_t FLTJCHGR; /*!< DFSDM injected channel group selection register, Address offset: 0x110 */
525 __IO uint32_t FLTFCR; /*!< DFSDM filter control register, Address offset: 0x114 */
526 __IO uint32_t FLTJDATAR; /*!< DFSDM data register for injected group, Address offset: 0x118 */
527 __IO uint32_t FLTRDATAR; /*!< DFSDM data register for regular group, Address offset: 0x11C */
528 __IO uint32_t FLTAWHTR; /*!< DFSDM analog watchdog high threshold register, Address offset: 0x120 */
529 __IO uint32_t FLTAWLTR; /*!< DFSDM analog watchdog low threshold register, Address offset: 0x124 */
530 __IO uint32_t FLTAWSR; /*!< DFSDM analog watchdog status register Address offset: 0x128 */
531 __IO uint32_t FLTAWCFR; /*!< DFSDM analog watchdog clear flag register Address offset: 0x12C */
532 __IO uint32_t FLTEXMAX; /*!< DFSDM extreme detector maximum register, Address offset: 0x130 */
533 __IO uint32_t FLTEXMIN; /*!< DFSDM extreme detector minimum register Address offset: 0x134 */
534 __IO uint32_t FLTCNVTIMR; /*!< DFSDM conversion timer, Address offset: 0x138 */
535} DFSDM_Filter_TypeDef;
536
537/**
538 * @brief DFSDM channel configuration registers
539 */
540typedef struct
541{
542 __IO uint32_t CHCFGR1; /*!< DFSDM channel configuration register1, Address offset: 0x00 */
543 __IO uint32_t CHCFGR2; /*!< DFSDM channel configuration register2, Address offset: 0x04 */
544 __IO uint32_t CHAWSCDR; /*!< DFSDM channel analog watchdog and
545 short circuit detector register, Address offset: 0x08 */
546 __IO uint32_t CHWDATAR; /*!< DFSDM channel watchdog filter data register, Address offset: 0x0C */
547 __IO uint32_t CHDATINR; /*!< DFSDM channel data input register, Address offset: 0x10 */
548} DFSDM_Channel_TypeDef;
549
550/**
551 * @brief Debug MCU
552 */
553typedef struct
554{
555 __IO uint32_t IDCODE; /*!< MCU device ID code, Address offset: 0x00 */
556 __IO uint32_t CR; /*!< Debug MCU configuration register, Address offset: 0x04 */
557 __IO uint32_t RESERVED4[11]; /*!< Reserved, Address offset: 0x08 */
558 __IO uint32_t APB3FZ1; /*!< Debug MCU APB3FZ1 freeze register, Address offset: 0x34 */
559 __IO uint32_t APB3FZ2; /*!< Debug MCU APB3FZ2 freeze register, Address offset: 0x38 */
560 __IO uint32_t APB1LFZ1; /*!< Debug MCU APB1LFZ1 freeze register, Address offset: 0x3C */
561 __IO uint32_t APB1LFZ2; /*!< Debug MCU APB1LFZ2 freeze register, Address offset: 0x40 */
562 __IO uint32_t APB1HFZ1; /*!< Debug MCU APB1LFZ1 freeze register, Address offset: 0x44 */
563 __IO uint32_t APB1HFZ2; /*!< Debug MCU APB1LFZ2 freeze register, Address offset: 0x48 */
564 __IO uint32_t APB2FZ1; /*!< Debug MCU APB2FZ1 freeze register, Address offset: 0x4C */
565 __IO uint32_t APB2FZ2; /*!< Debug MCU APB2FZ2 freeze register, Address offset: 0x50 */
566 __IO uint32_t APB4FZ1; /*!< Debug MCU APB4FZ1 freeze register, Address offset: 0x54 */
567 __IO uint32_t APB4FZ2; /*!< Debug MCU APB4FZ2 freeze register, Address offset: 0x58 */
568
569}DBGMCU_TypeDef;
570/**
571 * @brief DCMI
572 */
573
574typedef struct
575{
576 __IO uint32_t CR; /*!< DCMI control register 1, Address offset: 0x00 */
577 __IO uint32_t SR; /*!< DCMI status register, Address offset: 0x04 */
578 __IO uint32_t RISR; /*!< DCMI raw interrupt status register, Address offset: 0x08 */
579 __IO uint32_t IER; /*!< DCMI interrupt enable register, Address offset: 0x0C */
580 __IO uint32_t MISR; /*!< DCMI masked interrupt status register, Address offset: 0x10 */
581 __IO uint32_t ICR; /*!< DCMI interrupt clear register, Address offset: 0x14 */
582 __IO uint32_t ESCR; /*!< DCMI embedded synchronization code register, Address offset: 0x18 */
583 __IO uint32_t ESUR; /*!< DCMI embedded synchronization unmask register, Address offset: 0x1C */
584 __IO uint32_t CWSTRTR; /*!< DCMI crop window start, Address offset: 0x20 */
585 __IO uint32_t CWSIZER; /*!< DCMI crop window size, Address offset: 0x24 */
586 __IO uint32_t DR; /*!< DCMI data register, Address offset: 0x28 */
587} DCMI_TypeDef;
588
589/**
590 * @brief DMA Controller
591 */
592
593typedef struct
594{
595 __IO uint32_t CR; /*!< DMA stream x configuration register */
596 __IO uint32_t NDTR; /*!< DMA stream x number of data register */
597 __IO uint32_t PAR; /*!< DMA stream x peripheral address register */
598 __IO uint32_t M0AR; /*!< DMA stream x memory 0 address register */
599 __IO uint32_t M1AR; /*!< DMA stream x memory 1 address register */
600 __IO uint32_t FCR; /*!< DMA stream x FIFO control register */
601} DMA_Stream_TypeDef;
602
603typedef struct
604{
605 __IO uint32_t LISR; /*!< DMA low interrupt status register, Address offset: 0x00 */
606 __IO uint32_t HISR; /*!< DMA high interrupt status register, Address offset: 0x04 */
607 __IO uint32_t LIFCR; /*!< DMA low interrupt flag clear register, Address offset: 0x08 */
608 __IO uint32_t HIFCR; /*!< DMA high interrupt flag clear register, Address offset: 0x0C */
609} DMA_TypeDef;
610
611typedef struct
612{
613 __IO uint32_t CCR; /*!< DMA channel x configuration register */
614 __IO uint32_t CNDTR; /*!< DMA channel x number of data register */
615 __IO uint32_t CPAR; /*!< DMA channel x peripheral address register */
616 __IO uint32_t CM0AR; /*!< DMA channel x memory 0 address register */
617 __IO uint32_t CM1AR; /*!< DMA channel x memory 1 address register */
618} BDMA_Channel_TypeDef;
619
620typedef struct
621{
622 __IO uint32_t ISR; /*!< DMA interrupt status register, Address offset: 0x00 */
623 __IO uint32_t IFCR; /*!< DMA interrupt flag clear register, Address offset: 0x04 */
624} BDMA_TypeDef;
625
626typedef struct
627{
628 __IO uint32_t CCR; /*!< DMA Multiplexer Channel x Control Register */
629}DMAMUX_Channel_TypeDef;
630
631typedef struct
632{
633 __IO uint32_t CSR; /*!< DMA Channel Status Register */
634 __IO uint32_t CFR; /*!< DMA Channel Clear Flag Register */
635}DMAMUX_ChannelStatus_TypeDef;
636
637typedef struct
638{
639 __IO uint32_t RGCR; /*!< DMA Request Generator x Control Register */
640}DMAMUX_RequestGen_TypeDef;
641
642typedef struct
643{
644 __IO uint32_t RGSR; /*!< DMA Request Generator Status Register */
645 __IO uint32_t RGCFR; /*!< DMA Request Generator Clear Flag Register */
646}DMAMUX_RequestGenStatus_TypeDef;
647
648/**
649 * @brief MDMA Controller
650 */
651typedef struct
652{
653 __IO uint32_t GISR0; /*!< MDMA Global Interrupt/Status Register 0, Address offset: 0x00 */
654}MDMA_TypeDef;
655
656typedef struct
657{
658 __IO uint32_t CISR; /*!< MDMA channel x interrupt/status register, Address offset: 0x40 */
659 __IO uint32_t CIFCR; /*!< MDMA channel x interrupt flag clear register, Address offset: 0x44 */
660 __IO uint32_t CESR; /*!< MDMA Channel x error status register, Address offset: 0x48 */
661 __IO uint32_t CCR; /*!< MDMA channel x control register, Address offset: 0x4C */
662 __IO uint32_t CTCR; /*!< MDMA channel x Transfer Configuration register, Address offset: 0x50 */
663 __IO uint32_t CBNDTR; /*!< MDMA Channel x block number of data register, Address offset: 0x54 */
664 __IO uint32_t CSAR; /*!< MDMA channel x source address register, Address offset: 0x58 */
665 __IO uint32_t CDAR; /*!< MDMA channel x destination address register, Address offset: 0x5C */
666 __IO uint32_t CBRUR; /*!< MDMA channel x Block Repeat address Update register, Address offset: 0x60 */
667 __IO uint32_t CLAR; /*!< MDMA channel x Link Address register, Address offset: 0x64 */
668 __IO uint32_t CTBR; /*!< MDMA channel x Trigger and Bus selection Register, Address offset: 0x68 */
669 uint32_t RESERVED0; /*!< Reserved, 0x68 */
670 __IO uint32_t CMAR; /*!< MDMA channel x Mask address register, Address offset: 0x70 */
671 __IO uint32_t CMDR; /*!< MDMA channel x Mask Data register, Address offset: 0x74 */
672}MDMA_Channel_TypeDef;
673
674/**
675 * @brief DMA2D Controller
676 */
677
678typedef struct
679{
680 __IO uint32_t CR; /*!< DMA2D Control Register, Address offset: 0x00 */
681 __IO uint32_t ISR; /*!< DMA2D Interrupt Status Register, Address offset: 0x04 */
682 __IO uint32_t IFCR; /*!< DMA2D Interrupt Flag Clear Register, Address offset: 0x08 */
683 __IO uint32_t FGMAR; /*!< DMA2D Foreground Memory Address Register, Address offset: 0x0C */
684 __IO uint32_t FGOR; /*!< DMA2D Foreground Offset Register, Address offset: 0x10 */
685 __IO uint32_t BGMAR; /*!< DMA2D Background Memory Address Register, Address offset: 0x14 */
686 __IO uint32_t BGOR; /*!< DMA2D Background Offset Register, Address offset: 0x18 */
687 __IO uint32_t FGPFCCR; /*!< DMA2D Foreground PFC Control Register, Address offset: 0x1C */
688 __IO uint32_t FGCOLR; /*!< DMA2D Foreground Color Register, Address offset: 0x20 */
689 __IO uint32_t BGPFCCR; /*!< DMA2D Background PFC Control Register, Address offset: 0x24 */
690 __IO uint32_t BGCOLR; /*!< DMA2D Background Color Register, Address offset: 0x28 */
691 __IO uint32_t FGCMAR; /*!< DMA2D Foreground CLUT Memory Address Register, Address offset: 0x2C */
692 __IO uint32_t BGCMAR; /*!< DMA2D Background CLUT Memory Address Register, Address offset: 0x30 */
693 __IO uint32_t OPFCCR; /*!< DMA2D Output PFC Control Register, Address offset: 0x34 */
694 __IO uint32_t OCOLR; /*!< DMA2D Output Color Register, Address offset: 0x38 */
695 __IO uint32_t OMAR; /*!< DMA2D Output Memory Address Register, Address offset: 0x3C */
696 __IO uint32_t OOR; /*!< DMA2D Output Offset Register, Address offset: 0x40 */
697 __IO uint32_t NLR; /*!< DMA2D Number of Line Register, Address offset: 0x44 */
698 __IO uint32_t LWR; /*!< DMA2D Line Watermark Register, Address offset: 0x48 */
699 __IO uint32_t AMTCR; /*!< DMA2D AHB Master Timer Configuration Register, Address offset: 0x4C */
700 uint32_t RESERVED[236]; /*!< Reserved, 0x50-0x3FF */
701 __IO uint32_t FGCLUT[256]; /*!< DMA2D Foreground CLUT, Address offset:400-7FF */
702 __IO uint32_t BGCLUT[256]; /*!< DMA2D Background CLUT, Address offset:800-BFF */
703} DMA2D_TypeDef;
704
705
706/**
707 * @brief Ethernet MAC
708 */
709typedef struct
710{
711 __IO uint32_t MACCR;
712 __IO uint32_t MACECR;
713 __IO uint32_t MACPFR;
714 __IO uint32_t MACWTR;
715 __IO uint32_t MACHT0R;
716 __IO uint32_t MACHT1R;
717 uint32_t RESERVED1[14];
718 __IO uint32_t MACVTR;
719 uint32_t RESERVED2;
720 __IO uint32_t MACVHTR;
721 uint32_t RESERVED3;
722 __IO uint32_t MACVIR;
723 __IO uint32_t MACIVIR;
724 uint32_t RESERVED4[2];
725 __IO uint32_t MACTFCR;
726 uint32_t RESERVED5[7];
727 __IO uint32_t MACRFCR;
728 uint32_t RESERVED6[7];
729 __IO uint32_t MACISR;
730 __IO uint32_t MACIER;
731 __IO uint32_t MACRXTXSR;
732 uint32_t RESERVED7;
733 __IO uint32_t MACPCSR;
734 __IO uint32_t MACRWKPFR;
735 uint32_t RESERVED8[2];
736 __IO uint32_t MACLCSR;
737 __IO uint32_t MACLTCR;
738 __IO uint32_t MACLETR;
739 __IO uint32_t MAC1USTCR;
740 uint32_t RESERVED9[12];
741 __IO uint32_t MACVR;
742 __IO uint32_t MACDR;
743 uint32_t RESERVED10;
744 __IO uint32_t MACHWF0R;
745 __IO uint32_t MACHWF1R;
746 __IO uint32_t MACHWF2R;
747 uint32_t RESERVED11[54];
748 __IO uint32_t MACMDIOAR;
749 __IO uint32_t MACMDIODR;
750 uint32_t RESERVED12[2];
751 __IO uint32_t MACARPAR;
752 uint32_t RESERVED13[59];
753 __IO uint32_t MACA0HR;
754 __IO uint32_t MACA0LR;
755 __IO uint32_t MACA1HR;
756 __IO uint32_t MACA1LR;
757 __IO uint32_t MACA2HR;
758 __IO uint32_t MACA2LR;
759 __IO uint32_t MACA3HR;
760 __IO uint32_t MACA3LR;
761 uint32_t RESERVED14[248];
762 __IO uint32_t MMCCR;
763 __IO uint32_t MMCRIR;
764 __IO uint32_t MMCTIR;
765 __IO uint32_t MMCRIMR;
766 __IO uint32_t MMCTIMR;
767 uint32_t RESERVED15[14];
768 __IO uint32_t MMCTSCGPR;
769 __IO uint32_t MMCTMCGPR;
770 uint32_t RESERVED16[5];
771 __IO uint32_t MMCTPCGR;
772 uint32_t RESERVED17[10];
773 __IO uint32_t MMCRCRCEPR;
774 __IO uint32_t MMCRAEPR;
775 uint32_t RESERVED18[10];
776 __IO uint32_t MMCRUPGR;
777 uint32_t RESERVED19[9];
778 __IO uint32_t MMCTLPIMSTR;
779 __IO uint32_t MMCTLPITCR;
780 __IO uint32_t MMCRLPIMSTR;
781 __IO uint32_t MMCRLPITCR;
782 uint32_t RESERVED20[65];
783 __IO uint32_t MACL3L4C0R;
784 __IO uint32_t MACL4A0R;
785 uint32_t RESERVED21[2];
786 __IO uint32_t MACL3A0R0R;
787 __IO uint32_t MACL3A1R0R;
788 __IO uint32_t MACL3A2R0R;
789 __IO uint32_t MACL3A3R0R;
790 uint32_t RESERVED22[4];
791 __IO uint32_t MACL3L4C1R;
792 __IO uint32_t MACL4A1R;
793 uint32_t RESERVED23[2];
794 __IO uint32_t MACL3A0R1R;
795 __IO uint32_t MACL3A1R1R;
796 __IO uint32_t MACL3A2R1R;
797 __IO uint32_t MACL3A3R1R;
798 uint32_t RESERVED24[108];
799 __IO uint32_t MACTSCR;
800 __IO uint32_t MACSSIR;
801 __IO uint32_t MACSTSR;
802 __IO uint32_t MACSTNR;
803 __IO uint32_t MACSTSUR;
804 __IO uint32_t MACSTNUR;
805 __IO uint32_t MACTSAR;
806 uint32_t RESERVED25;
807 __IO uint32_t MACTSSR;
808 uint32_t RESERVED26[3];
809 __IO uint32_t MACTTSSNR;
810 __IO uint32_t MACTTSSSR;
811 uint32_t RESERVED27[2];
812 __IO uint32_t MACACR;
813 uint32_t RESERVED28;
814 __IO uint32_t MACATSNR;
815 __IO uint32_t MACATSSR;
816 __IO uint32_t MACTSIACR;
817 __IO uint32_t MACTSEACR;
818 __IO uint32_t MACTSICNR;
819 __IO uint32_t MACTSECNR;
820 uint32_t RESERVED29[4];
821 __IO uint32_t MACPPSCR;
822 uint32_t RESERVED30[3];
823 __IO uint32_t MACPPSTTSR;
824 __IO uint32_t MACPPSTTNR;
825 __IO uint32_t MACPPSIR;
826 __IO uint32_t MACPPSWR;
827 uint32_t RESERVED31[12];
828 __IO uint32_t MACPOCR;
829 __IO uint32_t MACSPI0R;
830 __IO uint32_t MACSPI1R;
831 __IO uint32_t MACSPI2R;
832 __IO uint32_t MACLMIR;
833 uint32_t RESERVED32[11];
834 __IO uint32_t MTLOMR;
835 uint32_t RESERVED33[7];
836 __IO uint32_t MTLISR;
837 uint32_t RESERVED34[55];
838 __IO uint32_t MTLTQOMR;
839 __IO uint32_t MTLTQUR;
840 __IO uint32_t MTLTQDR;
841 uint32_t RESERVED35[8];
842 __IO uint32_t MTLQICSR;
843 __IO uint32_t MTLRQOMR;
844 __IO uint32_t MTLRQMPOCR;
845 __IO uint32_t MTLRQDR;
846 uint32_t RESERVED36[177];
847 __IO uint32_t DMAMR;
848 __IO uint32_t DMASBMR;
849 __IO uint32_t DMAISR;
850 __IO uint32_t DMADSR;
851 uint32_t RESERVED37[60];
852 __IO uint32_t DMACCR;
853 __IO uint32_t DMACTCR;
854 __IO uint32_t DMACRCR;
855 uint32_t RESERVED38[2];
856 __IO uint32_t DMACTDLAR;
857 uint32_t RESERVED39;
858 __IO uint32_t DMACRDLAR;
859 __IO uint32_t DMACTDTPR;
860 uint32_t RESERVED40;
861 __IO uint32_t DMACRDTPR;
862 __IO uint32_t DMACTDRLR;
863 __IO uint32_t DMACRDRLR;
864 __IO uint32_t DMACIER;
865 __IO uint32_t DMACRIWTR;
866__IO uint32_t DMACSFCSR;
867 uint32_t RESERVED41;
868 __IO uint32_t DMACCATDR;
869 uint32_t RESERVED42;
870 __IO uint32_t DMACCARDR;
871 uint32_t RESERVED43;
872 __IO uint32_t DMACCATBR;
873 uint32_t RESERVED44;
874 __IO uint32_t DMACCARBR;
875 __IO uint32_t DMACSR;
876uint32_t RESERVED45[2];
877__IO uint32_t DMACMFCR;
878}ETH_TypeDef;
879/**
880 * @brief External Interrupt/Event Controller
881 */
882
883typedef struct
884{
885__IO uint32_t RTSR1; /*!< EXTI Rising trigger selection register, Address offset: 0x00 */
886__IO uint32_t FTSR1; /*!< EXTI Falling trigger selection register, Address offset: 0x04 */
887__IO uint32_t SWIER1; /*!< EXTI Software interrupt event register, Address offset: 0x08 */
888__IO uint32_t D3PMR1; /*!< EXTI D3 Pending mask register, (same register as to SRDPMR1) Address offset: 0x0C */
889__IO uint32_t D3PCR1L; /*!< EXTI D3 Pending clear selection register low, (same register as to SRDPCR1L) Address offset: 0x10 */
890__IO uint32_t D3PCR1H; /*!< EXTI D3 Pending clear selection register High, (same register as to SRDPCR1H) Address offset: 0x14 */
891uint32_t RESERVED1[2]; /*!< Reserved, 0x18 to 0x1C */
892__IO uint32_t RTSR2; /*!< EXTI Rising trigger selection register, Address offset: 0x20 */
893__IO uint32_t FTSR2; /*!< EXTI Falling trigger selection register, Address offset: 0x24 */
894__IO uint32_t SWIER2; /*!< EXTI Software interrupt event register, Address offset: 0x28 */
895__IO uint32_t D3PMR2; /*!< EXTI D3 Pending mask register, (same register as to SRDPMR2) Address offset: 0x2C */
896__IO uint32_t D3PCR2L; /*!< EXTI D3 Pending clear selection register low, (same register as to SRDPCR2L) Address offset: 0x30 */
897__IO uint32_t D3PCR2H; /*!< EXTI D3 Pending clear selection register High, (same register as to SRDPCR2H) Address offset: 0x34 */
898uint32_t RESERVED2[2]; /*!< Reserved, 0x38 to 0x3C */
899__IO uint32_t RTSR3; /*!< EXTI Rising trigger selection register, Address offset: 0x40 */
900__IO uint32_t FTSR3; /*!< EXTI Falling trigger selection register, Address offset: 0x44 */
901__IO uint32_t SWIER3; /*!< EXTI Software interrupt event register, Address offset: 0x48 */
902__IO uint32_t D3PMR3; /*!< EXTI D3 Pending mask register, (same register as to SRDPMR3) Address offset: 0x4C */
903__IO uint32_t D3PCR3L; /*!< EXTI D3 Pending clear selection register low, (same register as to SRDPCR3L) Address offset: 0x50 */
904__IO uint32_t D3PCR3H; /*!< EXTI D3 Pending clear selection register High, (same register as to SRDPCR3H) Address offset: 0x54 */
905uint32_t RESERVED3[10]; /*!< Reserved, 0x58 to 0x7C */
906__IO uint32_t IMR1; /*!< EXTI Interrupt mask register, Address offset: 0x80 */
907__IO uint32_t EMR1; /*!< EXTI Event mask register, Address offset: 0x84 */
908__IO uint32_t PR1; /*!< EXTI Pending register, Address offset: 0x88 */
909uint32_t RESERVED4; /*!< Reserved, 0x8C */
910__IO uint32_t IMR2; /*!< EXTI Interrupt mask register, Address offset: 0x90 */
911__IO uint32_t EMR2; /*!< EXTI Event mask register, Address offset: 0x94 */
912__IO uint32_t PR2; /*!< EXTI Pending register, Address offset: 0x98 */
913uint32_t RESERVED5; /*!< Reserved, 0x9C */
914__IO uint32_t IMR3; /*!< EXTI Interrupt mask register, Address offset: 0xA0 */
915__IO uint32_t EMR3; /*!< EXTI Event mask register, Address offset: 0xA4 */
916__IO uint32_t PR3; /*!< EXTI Pending register, Address offset: 0xA8 */
917uint32_t RESERVED6[5]; /*!< Reserved, 0xAC to 0xBC */
918__IO uint32_t C2IMR1; /*!< EXTI Interrupt mask register, Address offset: 0xC0 */
919__IO uint32_t C2EMR1; /*!< EXTI Event mask register, Address offset: 0xC4 */
920__IO uint32_t C2PR1; /*!< EXTI Pending register, Address offset: 0xC8 */
921uint32_t RESERVED7; /*!< Reserved, 0xCC */
922__IO uint32_t C2IMR2; /*!< EXTI Interrupt mask register, Address offset: 0xD0 */
923__IO uint32_t C2EMR2; /*!< EXTI Event mask register, Address offset: 0xD4 */
924__IO uint32_t C2PR2; /*!< EXTI Pending register, Address offset: 0xD8 */
925uint32_t RESERVED8; /*!< Reserved, 0xDC */
926__IO uint32_t C2IMR3; /*!< EXTI Interrupt mask register, Address offset: 0xE0 */
927__IO uint32_t C2EMR3; /*!< EXTI Event mask register, Address offset: 0xE4 */
928__IO uint32_t C2PR3; /*!< EXTI Pending register, Address offset: 0xE8 */
929
930}EXTI_TypeDef;
931
932typedef struct
933{
934__IO uint32_t IMR1; /*!< EXTI Interrupt mask register, Address offset: 0x00 */
935__IO uint32_t EMR1; /*!< EXTI Event mask register, Address offset: 0x04 */
936__IO uint32_t PR1; /*!< EXTI Pending register, Address offset: 0x08 */
937uint32_t RESERVED1; /*!< Reserved, 0x0C */
938__IO uint32_t IMR2; /*!< EXTI Interrupt mask register, Address offset: 0x10 */
939__IO uint32_t EMR2; /*!< EXTI Event mask register, Address offset: 0x14 */
940__IO uint32_t PR2; /*!< EXTI Pending register, Address offset: 0x18 */
941uint32_t RESERVED2; /*!< Reserved, 0x1C */
942__IO uint32_t IMR3; /*!< EXTI Interrupt mask register, Address offset: 0x20 */
943__IO uint32_t EMR3; /*!< EXTI Event mask register, Address offset: 0x24 */
944__IO uint32_t PR3; /*!< EXTI Pending register, Address offset: 0x28 */
945}EXTI_Core_TypeDef;
946
947
948/**
949 * @brief FLASH Registers
950 */
951
952typedef struct
953{
954 __IO uint32_t ACR; /*!< FLASH access control register, Address offset: 0x00 */
955 __IO uint32_t KEYR1; /*!< Flash Key Register for bank1, Address offset: 0x04 */
956 __IO uint32_t OPTKEYR; /*!< Flash Option Key Register, Address offset: 0x08 */
957 __IO uint32_t CR1; /*!< Flash Control Register for bank1, Address offset: 0x0C */
958 __IO uint32_t SR1; /*!< Flash Status Register for bank1, Address offset: 0x10 */
959 __IO uint32_t CCR1; /*!< Flash Control Register for bank1, Address offset: 0x14 */
960 __IO uint32_t OPTCR; /*!< Flash Option Control Register, Address offset: 0x18 */
961 __IO uint32_t OPTSR_CUR; /*!< Flash Option Status Current Register, Address offset: 0x1C */
962 __IO uint32_t OPTSR_PRG; /*!< Flash Option Status to Program Register, Address offset: 0x20 */
963 __IO uint32_t OPTCCR; /*!< Flash Option Clear Control Register, Address offset: 0x24 */
964 __IO uint32_t PRAR_CUR1; /*!< Flash Current Protection Address Register for bank1, Address offset: 0x28 */
965 __IO uint32_t PRAR_PRG1; /*!< Flash Protection Address to Program Register for bank1, Address offset: 0x2C */
966 __IO uint32_t SCAR_CUR1; /*!< Flash Current Secure Address Register for bank1, Address offset: 0x30 */
967 __IO uint32_t SCAR_PRG1; /*!< Flash Secure Address to Program Register for bank1, Address offset: 0x34 */
968 __IO uint32_t WPSN_CUR1; /*!< Flash Current Write Protection Register on bank1, Address offset: 0x38 */
969 __IO uint32_t WPSN_PRG1; /*!< Flash Write Protection to Program Register on bank1, Address offset: 0x3C */
970 __IO uint32_t BOOT7_CUR; /*!< Flash Current Boot Address for Pelican Core Register, Address offset: 0x40 */
971 __IO uint32_t BOOT7_PRG; /*!< Flash Boot Address to Program for Pelican Core Register, Address offset: 0x44 */
972 __IO uint32_t BOOT4_CUR; /*!< Flash Current Boot Address for M4 Core Register, Address offset: 0x48 */
973 __IO uint32_t BOOT4_PRG; /*!< Flash Boot Address to Program for M4 Core Register, Address offset: 0x4C */
974 __IO uint32_t CRCCR1; /*!< Flash CRC Control register For Bank1 Register , Address offset: 0x50 */
975 __IO uint32_t CRCSADD1; /*!< Flash CRC Start Address Register for Bank1 , Address offset: 0x54 */
976 __IO uint32_t CRCEADD1; /*!< Flash CRC End Address Register for Bank1 , Address offset: 0x58 */
977 __IO uint32_t CRCDATA; /*!< Flash CRC Data Register for Bank1 , Address offset: 0x5C */
978 __IO uint32_t ECC_FA1; /*!< Flash ECC Fail Address For Bank1 Register , Address offset: 0x60 */
979 uint32_t RESERVED1[40]; /*!< Reserved, 0x64 to 0x100 */
980 __IO uint32_t KEYR2; /*!< Flash Key Register for bank2, Address offset: 0x104 */
981 uint32_t RESERVED2; /*!< Reserved, 0x108 */
982 __IO uint32_t CR2; /*!< Flash Control Register for bank2, Address offset: 0x10C */
983 __IO uint32_t SR2; /*!< Flash Status Register for bank2, Address offset: 0x110 */
984 __IO uint32_t CCR2; /*!< Flash Status Register for bank2, Address offset: 0x114 */
985 uint32_t RESERVED3[4]; /*!< Reserved, 0x118 to 0x124 */
986 __IO uint32_t PRAR_CUR2; /*!< Flash Current Protection Address Register for bank2, Address offset: 0x128 */
987 __IO uint32_t PRAR_PRG2; /*!< Flash Protection Address to Program Register for bank2, Address offset: 0x12C */
988 __IO uint32_t SCAR_CUR2; /*!< Flash Current Secure Address Register for bank2, Address offset: 0x130 */
989 __IO uint32_t SCAR_PRG2; /*!< Flash Secure Address Register for bank2, Address offset: 0x134 */
990 __IO uint32_t WPSN_CUR2; /*!< Flash Current Write Protection Register on bank2, Address offset: 0x138 */
991 __IO uint32_t WPSN_PRG2; /*!< Flash Write Protection to Program Register on bank2, Address offset: 0x13C */
992 uint32_t RESERVED4[4]; /*!< Reserved, 0x140 to 0x14C */
993 __IO uint32_t CRCCR2; /*!< Flash CRC Control register For Bank2 Register , Address offset: 0x150 */
994 __IO uint32_t CRCSADD2; /*!< Flash CRC Start Address Register for Bank2 , Address offset: 0x154 */
995 __IO uint32_t CRCEADD2; /*!< Flash CRC End Address Register for Bank2 , Address offset: 0x158 */
996 __IO uint32_t CRCDATA2; /*!< Flash CRC Data Register for Bank2 , Address offset: 0x15C */
997 __IO uint32_t ECC_FA2; /*!< Flash ECC Fail Address For Bank2 Register , Address offset: 0x160 */
998} FLASH_TypeDef;
999
1000/**
1001 * @brief Flexible Memory Controller
1002 */
1003
1004typedef struct
1005{
1006 __IO uint32_t BTCR[8]; /*!< NOR/PSRAM chip-select control register(BCR) and chip-select timing register(BTR), Address offset: 0x00-1C */
1007} FMC_Bank1_TypeDef;
1008
1009/**
1010 * @brief Flexible Memory Controller Bank1E
1011 */
1012
1013typedef struct
1014{
1015 __IO uint32_t BWTR[7]; /*!< NOR/PSRAM write timing registers, Address offset: 0x104-0x11C */
1016} FMC_Bank1E_TypeDef;
1017
1018/**
1019 * @brief Flexible Memory Controller Bank2
1020 */
1021
1022typedef struct
1023{
1024 __IO uint32_t PCR2; /*!< NAND Flash control register 2, Address offset: 0x60 */
1025 __IO uint32_t SR2; /*!< NAND Flash FIFO status and interrupt register 2, Address offset: 0x64 */
1026 __IO uint32_t PMEM2; /*!< NAND Flash Common memory space timing register 2, Address offset: 0x68 */
1027 __IO uint32_t PATT2; /*!< NAND Flash Attribute memory space timing register 2, Address offset: 0x6C */
1028 uint32_t RESERVED0; /*!< Reserved, 0x70 */
1029 __IO uint32_t ECCR2; /*!< NAND Flash ECC result registers 2, Address offset: 0x74 */
1030} FMC_Bank2_TypeDef;
1031
1032/**
1033 * @brief Flexible Memory Controller Bank3
1034 */
1035
1036typedef struct
1037{
1038 __IO uint32_t PCR; /*!< NAND Flash control register 3, Address offset: 0x80 */
1039 __IO uint32_t SR; /*!< NAND Flash FIFO status and interrupt register 3, Address offset: 0x84 */
1040 __IO uint32_t PMEM; /*!< NAND Flash Common memory space timing register 3, Address offset: 0x88 */
1041 __IO uint32_t PATT; /*!< NAND Flash Attribute memory space timing register 3, Address offset: 0x8C */
1042 uint32_t RESERVED; /*!< Reserved, 0x90 */
1043 __IO uint32_t ECCR; /*!< NAND Flash ECC result registers 3, Address offset: 0x94 */
1044} FMC_Bank3_TypeDef;
1045
1046/**
1047 * @brief Flexible Memory Controller Bank5 and 6
1048 */
1049
1050
1051typedef struct
1052{
1053 __IO uint32_t SDCR[2]; /*!< SDRAM Control registers , Address offset: 0x140-0x144 */
1054 __IO uint32_t SDTR[2]; /*!< SDRAM Timing registers , Address offset: 0x148-0x14C */
1055 __IO uint32_t SDCMR; /*!< SDRAM Command Mode register, Address offset: 0x150 */
1056 __IO uint32_t SDRTR; /*!< SDRAM Refresh Timer register, Address offset: 0x154 */
1057 __IO uint32_t SDSR; /*!< SDRAM Status register, Address offset: 0x158 */
1058} FMC_Bank5_6_TypeDef;
1059
1060/**
1061 * @brief General Purpose I/O
1062 */
1063
1064typedef struct
1065{
1066 __IO uint32_t MODER; /*!< GPIO port mode register, Address offset: 0x00 */
1067 __IO uint32_t OTYPER; /*!< GPIO port output type register, Address offset: 0x04 */
1068 __IO uint32_t OSPEEDR; /*!< GPIO port output speed register, Address offset: 0x08 */
1069 __IO uint32_t PUPDR; /*!< GPIO port pull-up/pull-down register, Address offset: 0x0C */
1070 __IO uint32_t IDR; /*!< GPIO port input data register, Address offset: 0x10 */
1071 __IO uint32_t ODR; /*!< GPIO port output data register, Address offset: 0x14 */
1072 __IO uint32_t BSRR; /*!< GPIO port bit set/reset, Address offset: 0x18 */
1073 __IO uint32_t LCKR; /*!< GPIO port configuration lock register, Address offset: 0x1C */
1074 __IO uint32_t AFR[2]; /*!< GPIO alternate function registers, Address offset: 0x20-0x24 */
1075} GPIO_TypeDef;
1076
1077/**
1078 * @brief Operational Amplifier (OPAMP)
1079 */
1080
1081typedef struct
1082{
1083 __IO uint32_t CSR; /*!< OPAMP control/status register, Address offset: 0x00 */
1084 __IO uint32_t OTR; /*!< OPAMP offset trimming register for normal mode, Address offset: 0x04 */
1085 __IO uint32_t HSOTR; /*!< OPAMP offset trimming register for high speed mode, Address offset: 0x08 */
1086} OPAMP_TypeDef;
1087
1088/**
1089 * @brief System configuration controller
1090 */
1091
1092typedef struct
1093{
1094 uint32_t RESERVED1; /*!< Reserved, Address offset: 0x00 */
1095 __IO uint32_t PMCR; /*!< SYSCFG peripheral mode configuration register, Address offset: 0x04 */
1096 __IO uint32_t EXTICR[4]; /*!< SYSCFG external interrupt configuration registers, Address offset: 0x08-0x14 */
1097 __IO uint32_t CFGR; /*!< SYSCFG configuration registers, Address offset: 0x18 */
1098 uint32_t RESERVED2; /*!< Reserved, Address offset: 0x1C */
1099 __IO uint32_t CCCSR; /*!< SYSCFG compensation cell control/status register, Address offset: 0x20 */
1100 __IO uint32_t CCVR; /*!< SYSCFG compensation cell value register, Address offset: 0x24 */
1101 __IO uint32_t CCCR; /*!< SYSCFG compensation cell code register, Address offset: 0x28 */
1102 __IO uint32_t PWRCR; /*!< PWR control register, Address offset: 0x2C */
1103 uint32_t RESERVED3[61]; /*!< Reserved, 0x30-0x120 */
1104 __IO uint32_t PKGR; /*!< SYSCFG package register, Address offset: 0x124 */
1105 uint32_t RESERVED4[118]; /*!< Reserved, 0x128-0x2FC */
1106 __IO uint32_t UR0; /*!< SYSCFG user register 0, Address offset: 0x300 */
1107 __IO uint32_t UR1; /*!< SYSCFG user register 1, Address offset: 0x304 */
1108 __IO uint32_t UR2; /*!< SYSCFG user register 2, Address offset: 0x308 */
1109 __IO uint32_t UR3; /*!< SYSCFG user register 3, Address offset: 0x30C */
1110 __IO uint32_t UR4; /*!< SYSCFG user register 4, Address offset: 0x310 */
1111 __IO uint32_t UR5; /*!< SYSCFG user register 5, Address offset: 0x314 */
1112 __IO uint32_t UR6; /*!< SYSCFG user register 6, Address offset: 0x318 */
1113 __IO uint32_t UR7; /*!< SYSCFG user register 7, Address offset: 0x31C */
1114 __IO uint32_t UR8; /*!< SYSCFG user register 8, Address offset: 0x320 */
1115 __IO uint32_t UR9; /*!< SYSCFG user register 9, Address offset: 0x324 */
1116 __IO uint32_t UR10; /*!< SYSCFG user register 10, Address offset: 0x328 */
1117 __IO uint32_t UR11; /*!< SYSCFG user register 11, Address offset: 0x32C */
1118 __IO uint32_t UR12; /*!< SYSCFG user register 12, Address offset: 0x330 */
1119 __IO uint32_t UR13; /*!< SYSCFG user register 13, Address offset: 0x334 */
1120 __IO uint32_t UR14; /*!< SYSCFG user register 14, Address offset: 0x338 */
1121 __IO uint32_t UR15; /*!< SYSCFG user register 15, Address offset: 0x33C */
1122 __IO uint32_t UR16; /*!< SYSCFG user register 16, Address offset: 0x340 */
1123 __IO uint32_t UR17; /*!< SYSCFG user register 17, Address offset: 0x344 */
1124
1125} SYSCFG_TypeDef;
1126
1127/**
1128 * @brief Inter-integrated Circuit Interface
1129 */
1130
1131typedef struct
1132{
1133 __IO uint32_t CR1; /*!< I2C Control register 1, Address offset: 0x00 */
1134 __IO uint32_t CR2; /*!< I2C Control register 2, Address offset: 0x04 */
1135 __IO uint32_t OAR1; /*!< I2C Own address 1 register, Address offset: 0x08 */
1136 __IO uint32_t OAR2; /*!< I2C Own address 2 register, Address offset: 0x0C */
1137 __IO uint32_t TIMINGR; /*!< I2C Timing register, Address offset: 0x10 */
1138 __IO uint32_t TIMEOUTR; /*!< I2C Timeout register, Address offset: 0x14 */
1139 __IO uint32_t ISR; /*!< I2C Interrupt and status register, Address offset: 0x18 */
1140 __IO uint32_t ICR; /*!< I2C Interrupt clear register, Address offset: 0x1C */
1141 __IO uint32_t PECR; /*!< I2C PEC register, Address offset: 0x20 */
1142 __IO uint32_t RXDR; /*!< I2C Receive data register, Address offset: 0x24 */
1143 __IO uint32_t TXDR; /*!< I2C Transmit data register, Address offset: 0x28 */
1144} I2C_TypeDef;
1145
1146/**
1147 * @brief Independent WATCHDOG
1148 */
1149
1150typedef struct
1151{
1152 __IO uint32_t KR; /*!< IWDG Key register, Address offset: 0x00 */
1153 __IO uint32_t PR; /*!< IWDG Prescaler register, Address offset: 0x04 */
1154 __IO uint32_t RLR; /*!< IWDG Reload register, Address offset: 0x08 */
1155 __IO uint32_t SR; /*!< IWDG Status register, Address offset: 0x0C */
1156 __IO uint32_t WINR; /*!< IWDG Window register, Address offset: 0x10 */
1157} IWDG_TypeDef;
1158
1159
1160/**
1161 * @brief JPEG Codec
1162 */
1163typedef struct
1164{
1165 __IO uint32_t CONFR0; /*!< JPEG Codec Control Register (JPEG_CONFR0), Address offset: 00h */
1166 __IO uint32_t CONFR1; /*!< JPEG Codec Control Register (JPEG_CONFR1), Address offset: 04h */
1167 __IO uint32_t CONFR2; /*!< JPEG Codec Control Register (JPEG_CONFR2), Address offset: 08h */
1168 __IO uint32_t CONFR3; /*!< JPEG Codec Control Register (JPEG_CONFR3), Address offset: 0Ch */
1169 __IO uint32_t CONFR4; /*!< JPEG Codec Control Register (JPEG_CONFR4), Address offset: 10h */
1170 __IO uint32_t CONFR5; /*!< JPEG Codec Control Register (JPEG_CONFR5), Address offset: 14h */
1171 __IO uint32_t CONFR6; /*!< JPEG Codec Control Register (JPEG_CONFR6), Address offset: 18h */
1172 __IO uint32_t CONFR7; /*!< JPEG Codec Control Register (JPEG_CONFR7), Address offset: 1Ch */
1173 uint32_t Reserved20[4]; /* Reserved Address offset: 20h-2Ch */
1174 __IO uint32_t CR; /*!< JPEG Control Register (JPEG_CR), Address offset: 30h */
1175 __IO uint32_t SR; /*!< JPEG Status Register (JPEG_SR), Address offset: 34h */
1176 __IO uint32_t CFR; /*!< JPEG Clear Flag Register (JPEG_CFR), Address offset: 38h */
1177 uint32_t Reserved3c; /* Reserved Address offset: 3Ch */
1178 __IO uint32_t DIR; /*!< JPEG Data Input Register (JPEG_DIR), Address offset: 40h */
1179 __IO uint32_t DOR; /*!< JPEG Data Output Register (JPEG_DOR), Address offset: 44h */
1180 uint32_t Reserved48[2]; /* Reserved Address offset: 48h-4Ch */
1181 __IO uint32_t QMEM0[16]; /*!< JPEG quantization tables 0, Address offset: 50h-8Ch */
1182 __IO uint32_t QMEM1[16]; /*!< JPEG quantization tables 1, Address offset: 90h-CCh */
1183 __IO uint32_t QMEM2[16]; /*!< JPEG quantization tables 2, Address offset: D0h-10Ch */
1184 __IO uint32_t QMEM3[16]; /*!< JPEG quantization tables 3, Address offset: 110h-14Ch */
1185 __IO uint32_t HUFFMIN[16]; /*!< JPEG HuffMin tables, Address offset: 150h-18Ch */
1186 __IO uint32_t HUFFBASE[32]; /*!< JPEG HuffSymb tables, Address offset: 190h-20Ch */
1187 __IO uint32_t HUFFSYMB[84]; /*!< JPEG HUFFSYMB tables, Address offset: 210h-35Ch */
1188 __IO uint32_t DHTMEM[103]; /*!< JPEG DHTMem tables, Address offset: 360h-4F8h */
1189 uint32_t Reserved4FC; /* Reserved Address offset: 4FCh */
1190 __IO uint32_t HUFFENC_AC0[88]; /*!< JPEG encodor, AC Huffman table 0, Address offset: 500h-65Ch */
1191 __IO uint32_t HUFFENC_AC1[88]; /*!< JPEG encodor, AC Huffman table 1, Address offset: 660h-7BCh */
1192 __IO uint32_t HUFFENC_DC0[8]; /*!< JPEG encodor, DC Huffman table 0, Address offset: 7C0h-7DCh */
1193 __IO uint32_t HUFFENC_DC1[8]; /*!< JPEG encodor, DC Huffman table 1, Address offset: 7E0h-7FCh */
1194
1195} JPEG_TypeDef;
1196
1197/**
1198 * @brief LCD-TFT Display Controller
1199 */
1200
1201typedef struct
1202{
1203 uint32_t RESERVED0[2]; /*!< Reserved, 0x00-0x04 */
1204 __IO uint32_t SSCR; /*!< LTDC Synchronization Size Configuration Register, Address offset: 0x08 */
1205 __IO uint32_t BPCR; /*!< LTDC Back Porch Configuration Register, Address offset: 0x0C */
1206 __IO uint32_t AWCR; /*!< LTDC Active Width Configuration Register, Address offset: 0x10 */
1207 __IO uint32_t TWCR; /*!< LTDC Total Width Configuration Register, Address offset: 0x14 */
1208 __IO uint32_t GCR; /*!< LTDC Global Control Register, Address offset: 0x18 */
1209 uint32_t RESERVED1[2]; /*!< Reserved, 0x1C-0x20 */
1210 __IO uint32_t SRCR; /*!< LTDC Shadow Reload Configuration Register, Address offset: 0x24 */
1211 uint32_t RESERVED2[1]; /*!< Reserved, 0x28 */
1212 __IO uint32_t BCCR; /*!< LTDC Background Color Configuration Register, Address offset: 0x2C */
1213 uint32_t RESERVED3[1]; /*!< Reserved, 0x30 */
1214 __IO uint32_t IER; /*!< LTDC Interrupt Enable Register, Address offset: 0x34 */
1215 __IO uint32_t ISR; /*!< LTDC Interrupt Status Register, Address offset: 0x38 */
1216 __IO uint32_t ICR; /*!< LTDC Interrupt Clear Register, Address offset: 0x3C */
1217 __IO uint32_t LIPCR; /*!< LTDC Line Interrupt Position Configuration Register, Address offset: 0x40 */
1218 __IO uint32_t CPSR; /*!< LTDC Current Position Status Register, Address offset: 0x44 */
1219 __IO uint32_t CDSR; /*!< LTDC Current Display Status Register, Address offset: 0x48 */
1220} LTDC_TypeDef;
1221
1222/**
1223 * @brief LCD-TFT Display layer x Controller
1224 */
1225
1226typedef struct
1227{
1228 __IO uint32_t CR; /*!< LTDC Layerx Control Register Address offset: 0x84 */
1229 __IO uint32_t WHPCR; /*!< LTDC Layerx Window Horizontal Position Configuration Register Address offset: 0x88 */
1230 __IO uint32_t WVPCR; /*!< LTDC Layerx Window Vertical Position Configuration Register Address offset: 0x8C */
1231 __IO uint32_t CKCR; /*!< LTDC Layerx Color Keying Configuration Register Address offset: 0x90 */
1232 __IO uint32_t PFCR; /*!< LTDC Layerx Pixel Format Configuration Register Address offset: 0x94 */
1233 __IO uint32_t CACR; /*!< LTDC Layerx Constant Alpha Configuration Register Address offset: 0x98 */
1234 __IO uint32_t DCCR; /*!< LTDC Layerx Default Color Configuration Register Address offset: 0x9C */
1235 __IO uint32_t BFCR; /*!< LTDC Layerx Blending Factors Configuration Register Address offset: 0xA0 */
1236 uint32_t RESERVED0[2]; /*!< Reserved */
1237 __IO uint32_t CFBAR; /*!< LTDC Layerx Color Frame Buffer Address Register Address offset: 0xAC */
1238 __IO uint32_t CFBLR; /*!< LTDC Layerx Color Frame Buffer Length Register Address offset: 0xB0 */
1239 __IO uint32_t CFBLNR; /*!< LTDC Layerx ColorFrame Buffer Line Number Register Address offset: 0xB4 */
1240 uint32_t RESERVED1[3]; /*!< Reserved */
1241 __IO uint32_t CLUTWR; /*!< LTDC Layerx CLUT Write Register Address offset: 0x144 */
1242
1243} LTDC_Layer_TypeDef;
1244
1245/**
1246 * @brief Power Control
1247 */
1248
1249typedef struct
1250{
1251 __IO uint32_t CR1; /*!< PWR power control register 1, Address offset: 0x00 */
1252 __IO uint32_t CSR1; /*!< PWR power control status register 1, Address offset: 0x04 */
1253 __IO uint32_t CR2; /*!< PWR power control register 2, Address offset: 0x08 */
1254 __IO uint32_t CR3; /*!< PWR power control register 3, Address offset: 0x0C */
1255 __IO uint32_t CPUCR; /*!< PWR CPU control register, Address offset: 0x10 */
1256 __IO uint32_t CPU2CR; /*!< PWR CPU2 control register, Address offset: 0x14 */
1257 __IO uint32_t D3CR; /*!< PWR D3 domain control register, Address offset: 0x18 */
1258 uint32_t RESERVED1; /*!< Reserved, Address offset: 0x1C */
1259 __IO uint32_t WKUPCR; /*!< PWR wakeup clear register, Address offset: 0x20 */
1260 __IO uint32_t WKUPFR; /*!< PWR wakeup flag register, Address offset: 0x24 */
1261 __IO uint32_t WKUPEPR; /*!< PWR wakeup enable and polarity register, Address offset: 0x28 */
1262} PWR_TypeDef;
1263
1264/**
1265 * @brief Reset and Clock Control
1266 */
1267
1268typedef struct
1269{
1270 __IO uint32_t CR; /*!< RCC clock control register, Address offset: 0x00 */
1271 __IO uint32_t HSICFGR; /*!< HSI Clock Calibration Register, Address offset: 0x04 */
1272 __IO uint32_t CRRCR; /*!< Clock Recovery RC Register, Address offset: 0x08 */
1273 __IO uint32_t CSICFGR; /*!< CSI Clock Calibration Register, Address offset: 0x0C */
1274 __IO uint32_t CFGR; /*!< RCC clock configuration register, Address offset: 0x10 */
1275 uint32_t RESERVED1; /*!< Reserved, Address offset: 0x14 */
1276 __IO uint32_t D1CFGR; /*!< RCC Domain 1 configuration register, Address offset: 0x18 */
1277 __IO uint32_t D2CFGR; /*!< RCC Domain 2 configuration register, Address offset: 0x1C */
1278 __IO uint32_t D3CFGR; /*!< RCC Domain 3 configuration register, Address offset: 0x20 */
1279 uint32_t RESERVED2; /*!< Reserved, Address offset: 0x24 */
1280 __IO uint32_t PLLCKSELR; /*!< RCC PLLs Clock Source Selection Register, Address offset: 0x28 */
1281 __IO uint32_t PLLCFGR; /*!< RCC PLLs Configuration Register, Address offset: 0x2C */
1282 __IO uint32_t PLL1DIVR; /*!< RCC PLL1 Dividers Configuration Register, Address offset: 0x30 */
1283 __IO uint32_t PLL1FRACR; /*!< RCC PLL1 Fractional Divider Configuration Register, Address offset: 0x34 */
1284 __IO uint32_t PLL2DIVR; /*!< RCC PLL2 Dividers Configuration Register, Address offset: 0x38 */
1285 __IO uint32_t PLL2FRACR; /*!< RCC PLL2 Fractional Divider Configuration Register, Address offset: 0x3C */
1286 __IO uint32_t PLL3DIVR; /*!< RCC PLL3 Dividers Configuration Register, Address offset: 0x40 */
1287 __IO uint32_t PLL3FRACR; /*!< RCC PLL3 Fractional Divider Configuration Register, Address offset: 0x44 */
1288 uint32_t RESERVED3; /*!< Reserved, Address offset: 0x48 */
1289 __IO uint32_t D1CCIPR; /*!< RCC Domain 1 Kernel Clock Configuration Register Address offset: 0x4C */
1290 __IO uint32_t D2CCIP1R; /*!< RCC Domain 2 Kernel Clock Configuration Register Address offset: 0x50 */
1291 __IO uint32_t D2CCIP2R; /*!< RCC Domain 2 Kernel Clock Configuration Register Address offset: 0x54 */
1292 __IO uint32_t D3CCIPR; /*!< RCC Domain 3 Kernel Clock Configuration Register Address offset: 0x58 */
1293 uint32_t RESERVED4; /*!< Reserved, Address offset: 0x5C */
1294 __IO uint32_t CIER; /*!< RCC Clock Source Interrupt Enable Register Address offset: 0x60 */
1295 __IO uint32_t CIFR; /*!< RCC Clock Source Interrupt Flag Register Address offset: 0x64 */
1296 __IO uint32_t CICR; /*!< RCC Clock Source Interrupt Clear Register Address offset: 0x68 */
1297 uint32_t RESERVED5; /*!< Reserved, Address offset: 0x6C */
1298 __IO uint32_t BDCR; /*!< RCC Vswitch Backup Domain Control Register, Address offset: 0x70 */
1299 __IO uint32_t CSR; /*!< RCC clock control & status register, Address offset: 0x74 */
1300 uint32_t RESERVED6; /*!< Reserved, Address offset: 0x78 */
1301 __IO uint32_t AHB3RSTR; /*!< RCC AHB3 peripheral reset register, Address offset: 0x7C */
1302 __IO uint32_t AHB1RSTR; /*!< RCC AHB1 peripheral reset register, Address offset: 0x80 */
1303 __IO uint32_t AHB2RSTR; /*!< RCC AHB2 peripheral reset register, Address offset: 0x84 */
1304 __IO uint32_t AHB4RSTR; /*!< RCC AHB4 peripheral reset register, Address offset: 0x88 */
1305 __IO uint32_t APB3RSTR; /*!< RCC APB3 peripheral reset register, Address offset: 0x8C */
1306 __IO uint32_t APB1LRSTR; /*!< RCC APB1 peripheral reset Low Word register, Address offset: 0x90 */
1307 __IO uint32_t APB1HRSTR; /*!< RCC APB1 peripheral reset High Word register, Address offset: 0x94 */
1308 __IO uint32_t APB2RSTR; /*!< RCC APB2 peripheral reset register, Address offset: 0x98 */
1309 __IO uint32_t APB4RSTR; /*!< RCC APB4 peripheral reset register, Address offset: 0x9C */
1310 __IO uint32_t GCR; /*!< RCC RCC Global Control Register, Address offset: 0xA0 */
1311 uint32_t RESERVED8; /*!< Reserved, Address offset: 0xA4 */
1312 __IO uint32_t D3AMR; /*!< RCC Domain 3 Autonomous Mode Register, Address offset: 0xA8 */
1313 uint32_t RESERVED11[9]; /*!< Reserved, 0xAC-0xCC Address offset: 0xAC */
1314 __IO uint32_t RSR; /*!< RCC Reset status register, Address offset: 0xD0 */
1315 __IO uint32_t AHB3ENR; /*!< RCC AHB3 peripheral clock register, Address offset: 0xD4 */
1316 __IO uint32_t AHB1ENR; /*!< RCC AHB1 peripheral clock register, Address offset: 0xD8 */
1317 __IO uint32_t AHB2ENR; /*!< RCC AHB2 peripheral clock register, Address offset: 0xDC */
1318 __IO uint32_t AHB4ENR; /*!< RCC AHB4 peripheral clock register, Address offset: 0xE0 */
1319 __IO uint32_t APB3ENR; /*!< RCC APB3 peripheral clock register, Address offset: 0xE4 */
1320 __IO uint32_t APB1LENR; /*!< RCC APB1 peripheral clock Low Word register, Address offset: 0xE8 */
1321 __IO uint32_t APB1HENR; /*!< RCC APB1 peripheral clock High Word register, Address offset: 0xEC */
1322 __IO uint32_t APB2ENR; /*!< RCC APB2 peripheral clock register, Address offset: 0xF0 */
1323 __IO uint32_t APB4ENR; /*!< RCC APB4 peripheral clock register, Address offset: 0xF4 */
1324 uint32_t RESERVED12; /*!< Reserved, Address offset: 0xF8 */
1325 __IO uint32_t AHB3LPENR; /*!< RCC AHB3 peripheral sleep clock register, Address offset: 0xFC */
1326 __IO uint32_t AHB1LPENR; /*!< RCC AHB1 peripheral sleep clock register, Address offset: 0x100 */
1327 __IO uint32_t AHB2LPENR; /*!< RCC AHB2 peripheral sleep clock register, Address offset: 0x104 */
1328 __IO uint32_t AHB4LPENR; /*!< RCC AHB4 peripheral sleep clock register, Address offset: 0x108 */
1329 __IO uint32_t APB3LPENR; /*!< RCC APB3 peripheral sleep clock register, Address offset: 0x10C */
1330 __IO uint32_t APB1LLPENR; /*!< RCC APB1 peripheral sleep clock Low Word register, Address offset: 0x110 */
1331 __IO uint32_t APB1HLPENR; /*!< RCC APB1 peripheral sleep clock High Word register, Address offset: 0x114 */
1332 __IO uint32_t APB2LPENR; /*!< RCC APB2 peripheral sleep clock register, Address offset: 0x118 */
1333 __IO uint32_t APB4LPENR; /*!< RCC APB4 peripheral sleep clock register, Address offset: 0x11C */
1334 uint32_t RESERVED13[4]; /*!< Reserved, 0x120-0x12C Address offset: 0x120 */
1335
1336} RCC_TypeDef;
1337
1338typedef struct
1339{
1340 __IO uint32_t RSR; /*!< RCC Reset status register, Address offset: 0x00 */
1341 __IO uint32_t AHB3ENR; /*!< RCC AHB3 peripheral clock register, Address offset: 0x04 */
1342 __IO uint32_t AHB1ENR; /*!< RCC AHB1 peripheral clock register, Address offset: 0x08 */
1343 __IO uint32_t AHB2ENR; /*!< RCC AHB2 peripheral clock register, Address offset: 0x0C */
1344 __IO uint32_t AHB4ENR; /*!< RCC AHB4 peripheral clock register, Address offset: 0x10 */
1345 __IO uint32_t APB3ENR; /*!< RCC APB3 peripheral clock register, Address offset: 0x14 */
1346 __IO uint32_t APB1LENR; /*!< RCC APB1 peripheral clock Low Word register, Address offset: 0x18 */
1347 __IO uint32_t APB1HENR; /*!< RCC APB1 peripheral clock High Word register, Address offset: 0x1C */
1348 __IO uint32_t APB2ENR; /*!< RCC APB2 peripheral clock register, Address offset: 0x20 */
1349 __IO uint32_t APB4ENR; /*!< RCC APB4 peripheral clock register, Address offset: 0x24 */
1350 uint32_t RESERVED9; /*!< Reserved, Address offset: 0x28 */
1351 __IO uint32_t AHB3LPENR; /*!< RCC AHB3 peripheral sleep clock register, Address offset: 0x3C */
1352 __IO uint32_t AHB1LPENR; /*!< RCC AHB1 peripheral sleep clock register, Address offset: 0x40 */
1353 __IO uint32_t AHB2LPENR; /*!< RCC AHB2 peripheral sleep clock register, Address offset: 0x44 */
1354 __IO uint32_t AHB4LPENR; /*!< RCC AHB4 peripheral sleep clock register, Address offset: 0x48 */
1355 __IO uint32_t APB3LPENR; /*!< RCC APB3 peripheral sleep clock register, Address offset: 0x4C */
1356 __IO uint32_t APB1LLPENR; /*!< RCC APB1 peripheral sleep clock Low Word register, Address offset: 0x50 */
1357 __IO uint32_t APB1HLPENR; /*!< RCC APB1 peripheral sleep clock High Word register, Address offset: 0x54 */
1358 __IO uint32_t APB2LPENR; /*!< RCC APB2 peripheral sleep clock register, Address offset: 0x58 */
1359 __IO uint32_t APB4LPENR; /*!< RCC APB4 peripheral sleep clock register, Address offset: 0x5C */
1360 uint32_t RESERVED10[4]; /*!< Reserved, 0x60-0x6C Address offset: 0x60 */
1361
1362} RCC_Core_TypeDef;
1363
1364/**
1365 * @brief Real-Time Clock
1366 */
1367typedef struct
1368{
1369 __IO uint32_t TR; /*!< RTC time register, Address offset: 0x00 */
1370 __IO uint32_t DR; /*!< RTC date register, Address offset: 0x04 */
1371 __IO uint32_t CR; /*!< RTC control register, Address offset: 0x08 */
1372 __IO uint32_t ISR; /*!< RTC initialization and status register, Address offset: 0x0C */
1373 __IO uint32_t PRER; /*!< RTC prescaler register, Address offset: 0x10 */
1374 __IO uint32_t WUTR; /*!< RTC wakeup timer register, Address offset: 0x14 */
1375 uint32_t RESERVED; /*!< Reserved, Address offset: 0x18 */
1376 __IO uint32_t ALRMAR; /*!< RTC alarm A register, Address offset: 0x1C */
1377 __IO uint32_t ALRMBR; /*!< RTC alarm B register, Address offset: 0x20 */
1378 __IO uint32_t WPR; /*!< RTC write protection register, Address offset: 0x24 */
1379 __IO uint32_t SSR; /*!< RTC sub second register, Address offset: 0x28 */
1380 __IO uint32_t SHIFTR; /*!< RTC shift control register, Address offset: 0x2C */
1381 __IO uint32_t TSTR; /*!< RTC time stamp time register, Address offset: 0x30 */
1382 __IO uint32_t TSDR; /*!< RTC time stamp date register, Address offset: 0x34 */
1383 __IO uint32_t TSSSR; /*!< RTC time-stamp sub second register, Address offset: 0x38 */
1384 __IO uint32_t CALR; /*!< RTC calibration register, Address offset: 0x3C */
1385 __IO uint32_t TAMPCR; /*!< RTC tamper configuration register, Address offset: 0x40 */
1386 __IO uint32_t ALRMASSR; /*!< RTC alarm A sub second register, Address offset: 0x44 */
1387 __IO uint32_t ALRMBSSR; /*!< RTC alarm B sub second register, Address offset: 0x48 */
1388 __IO uint32_t OR; /*!< RTC option register, Address offset: 0x4C */
1389 __IO uint32_t BKP0R; /*!< RTC backup register 0, Address offset: 0x50 */
1390 __IO uint32_t BKP1R; /*!< RTC backup register 1, Address offset: 0x54 */
1391 __IO uint32_t BKP2R; /*!< RTC backup register 2, Address offset: 0x58 */
1392 __IO uint32_t BKP3R; /*!< RTC backup register 3, Address offset: 0x5C */
1393 __IO uint32_t BKP4R; /*!< RTC backup register 4, Address offset: 0x60 */
1394 __IO uint32_t BKP5R; /*!< RTC backup register 5, Address offset: 0x64 */
1395 __IO uint32_t BKP6R; /*!< RTC backup register 6, Address offset: 0x68 */
1396 __IO uint32_t BKP7R; /*!< RTC backup register 7, Address offset: 0x6C */
1397 __IO uint32_t BKP8R; /*!< RTC backup register 8, Address offset: 0x70 */
1398 __IO uint32_t BKP9R; /*!< RTC backup register 9, Address offset: 0x74 */
1399 __IO uint32_t BKP10R; /*!< RTC backup register 10, Address offset: 0x78 */
1400 __IO uint32_t BKP11R; /*!< RTC backup register 11, Address offset: 0x7C */
1401 __IO uint32_t BKP12R; /*!< RTC backup register 12, Address offset: 0x80 */
1402 __IO uint32_t BKP13R; /*!< RTC backup register 13, Address offset: 0x84 */
1403 __IO uint32_t BKP14R; /*!< RTC backup register 14, Address offset: 0x88 */
1404 __IO uint32_t BKP15R; /*!< RTC backup register 15, Address offset: 0x8C */
1405 __IO uint32_t BKP16R; /*!< RTC backup register 16, Address offset: 0x90 */
1406 __IO uint32_t BKP17R; /*!< RTC backup register 17, Address offset: 0x94 */
1407 __IO uint32_t BKP18R; /*!< RTC backup register 18, Address offset: 0x98 */
1408 __IO uint32_t BKP19R; /*!< RTC backup register 19, Address offset: 0x9C */
1409 __IO uint32_t BKP20R; /*!< RTC backup register 20, Address offset: 0xA0 */
1410 __IO uint32_t BKP21R; /*!< RTC backup register 21, Address offset: 0xA4 */
1411 __IO uint32_t BKP22R; /*!< RTC backup register 22, Address offset: 0xA8 */
1412 __IO uint32_t BKP23R; /*!< RTC backup register 23, Address offset: 0xAC */
1413 __IO uint32_t BKP24R; /*!< RTC backup register 24, Address offset: 0xB0 */
1414 __IO uint32_t BKP25R; /*!< RTC backup register 25, Address offset: 0xB4 */
1415 __IO uint32_t BKP26R; /*!< RTC backup register 26, Address offset: 0xB8 */
1416 __IO uint32_t BKP27R; /*!< RTC backup register 27, Address offset: 0xBC */
1417 __IO uint32_t BKP28R; /*!< RTC backup register 28, Address offset: 0xC0 */
1418 __IO uint32_t BKP29R; /*!< RTC backup register 29, Address offset: 0xC4 */
1419 __IO uint32_t BKP30R; /*!< RTC backup register 30, Address offset: 0xC8 */
1420 __IO uint32_t BKP31R; /*!< RTC backup register 31, Address offset: 0xCC */
1421} RTC_TypeDef;
1422
1423/**
1424 * @brief Serial Audio Interface
1425 */
1426
1427typedef struct
1428{
1429 __IO uint32_t GCR; /*!< SAI global configuration register, Address offset: 0x00 */
1430 uint32_t RESERVED0[16]; /*!< Reserved, 0x04 - 0x43 */
1431 __IO uint32_t PDMCR; /*!< SAI PDM control register, Address offset: 0x44 */
1432 __IO uint32_t PDMDLY; /*!< SAI PDM delay register, Address offset: 0x48 */
1433} SAI_TypeDef;
1434
1435typedef struct
1436{
1437 __IO uint32_t CR1; /*!< SAI block x configuration register 1, Address offset: 0x04 */
1438 __IO uint32_t CR2; /*!< SAI block x configuration register 2, Address offset: 0x08 */
1439 __IO uint32_t FRCR; /*!< SAI block x frame configuration register, Address offset: 0x0C */
1440 __IO uint32_t SLOTR; /*!< SAI block x slot register, Address offset: 0x10 */
1441 __IO uint32_t IMR; /*!< SAI block x interrupt mask register, Address offset: 0x14 */
1442 __IO uint32_t SR; /*!< SAI block x status register, Address offset: 0x18 */
1443 __IO uint32_t CLRFR; /*!< SAI block x clear flag register, Address offset: 0x1C */
1444 __IO uint32_t DR; /*!< SAI block x data register, Address offset: 0x20 */
1445} SAI_Block_TypeDef;
1446
1447/**
1448 * @brief SPDIF-RX Interface
1449 */
1450
1451typedef struct
1452{
1453 __IO uint32_t CR; /*!< Control register, Address offset: 0x00 */
1454 __IO uint32_t IMR; /*!< Interrupt mask register, Address offset: 0x04 */
1455 __IO uint32_t SR; /*!< Status register, Address offset: 0x08 */
1456 __IO uint32_t IFCR; /*!< Interrupt Flag Clear register, Address offset: 0x0C */
1457 __IO uint32_t DR; /*!< Data input register, Address offset: 0x10 */
1458 __IO uint32_t CSR; /*!< Channel Status register, Address offset: 0x14 */
1459 __IO uint32_t DIR; /*!< Debug Information register, Address offset: 0x18 */
1460 uint32_t RESERVED2; /*!< Reserved, 0x1A */
1461} SPDIFRX_TypeDef;
1462
1463
1464/**
1465 * @brief Secure digital input/output Interface
1466 */
1467
1468typedef struct
1469{
1470 __IO uint32_t POWER; /*!< SDMMC power control register, Address offset: 0x00 */
1471 __IO uint32_t CLKCR; /*!< SDMMC clock control register, Address offset: 0x04 */
1472 __IO uint32_t ARG; /*!< SDMMC argument register, Address offset: 0x08 */
1473 __IO uint32_t CMD; /*!< SDMMC command register, Address offset: 0x0C */
1474 __I uint32_t RESPCMD; /*!< SDMMC command response register, Address offset: 0x10 */
1475 __I uint32_t RESP1; /*!< SDMMC response 1 register, Address offset: 0x14 */
1476 __I uint32_t RESP2; /*!< SDMMC response 2 register, Address offset: 0x18 */
1477 __I uint32_t RESP3; /*!< SDMMC response 3 register, Address offset: 0x1C */
1478 __I uint32_t RESP4; /*!< SDMMC response 4 register, Address offset: 0x20 */
1479 __IO uint32_t DTIMER; /*!< SDMMC data timer register, Address offset: 0x24 */
1480 __IO uint32_t DLEN; /*!< SDMMC data length register, Address offset: 0x28 */
1481 __IO uint32_t DCTRL; /*!< SDMMC data control register, Address offset: 0x2C */
1482 __I uint32_t DCOUNT; /*!< SDMMC data counter register, Address offset: 0x30 */
1483 __I uint32_t STA; /*!< SDMMC status register, Address offset: 0x34 */
1484 __IO uint32_t ICR; /*!< SDMMC interrupt clear register, Address offset: 0x38 */
1485 __IO uint32_t MASK; /*!< SDMMC mask register, Address offset: 0x3C */
1486 __IO uint32_t ACKTIME; /*!< SDMMC Acknowledgement timer register, Address offset: 0x40 */
1487 uint32_t RESERVED0[3]; /*!< Reserved, 0x44 - 0x4C - 0x4C */
1488 __IO uint32_t IDMACTRL; /*!< SDMMC DMA control register, Address offset: 0x50 */
1489 __IO uint32_t IDMABSIZE; /*!< SDMMC DMA buffer size register, Address offset: 0x54 */
1490 __IO uint32_t IDMABASE0; /*!< SDMMC DMA buffer 0 base address register, Address offset: 0x58 */
1491 __IO uint32_t IDMABASE1; /*!< SDMMC DMA buffer 1 base address register, Address offset: 0x5C */
1492 uint32_t RESERVED1[8]; /*!< Reserved, 0x60-0x7C */
1493 __IO uint32_t FIFO; /*!< SDMMC data FIFO register, Address offset: 0x80 */
1494 uint32_t RESERVED2[222]; /*!< Reserved, 0x84-0x3F8 */
1495 __IO uint32_t IPVR; /*!< SDMMC data FIFO register, Address offset: 0x3FC */
1496} SDMMC_TypeDef;
1497
1498
1499/**
1500 * @brief Delay Block DLYB
1501 */
1502
1503typedef struct
1504{
1505 __IO uint32_t CR; /*!< DELAY BLOCK control register, Address offset: 0x00 */
1506 __IO uint32_t CFGR; /*!< DELAY BLOCK configuration register, Address offset: 0x04 */
1507} DLYB_TypeDef;
1508
1509/**
1510 * @brief HW Semaphore HSEM
1511 */
1512
1513typedef struct
1514{
1515 __IO uint32_t R[32]; /*!< 2-step write lock and read back registers, Address offset: 00h-7Ch */
1516 __IO uint32_t RLR[32]; /*!< 1-step read lock registers, Address offset: 80h-FCh */
1517 __IO uint32_t C1IER; /*!< HSEM Interrupt 0 enable register , Address offset: 100h */
1518 __IO uint32_t C1ICR; /*!< HSEM Interrupt 0 clear register , Address offset: 104h */
1519 __IO uint32_t C1ISR; /*!< HSEM Interrupt 0 Status register , Address offset: 108h */
1520 __IO uint32_t C1MISR; /*!< HSEM Interrupt 0 Masked Status register , Address offset: 10Ch */
1521 __IO uint32_t C2IER; /*!< HSEM Interrupt 1 enable register , Address offset: 110h */
1522 __IO uint32_t C2ICR; /*!< HSEM Interrupt 1 clear register , Address offset: 114h */
1523 __IO uint32_t C2ISR; /*!< HSEM Interrupt 1 Status register , Address offset: 118h */
1524 __IO uint32_t C2MISR; /*!< HSEM Interrupt 1 Masked Status register , Address offset: 11Ch */
1525 uint32_t Reserved[8]; /* Reserved Address offset: 120h-13Ch*/
1526 __IO uint32_t CR; /*!< HSEM Semaphore clear register , Address offset: 140h */
1527 __IO uint32_t KEYR; /*!< HSEM Semaphore clear key register , Address offset: 144h */
1528
1529} HSEM_TypeDef;
1530
1531typedef struct
1532{
1533 __IO uint32_t IER; /*!< HSEM interrupt enable register , Address offset: 0h */
1534 __IO uint32_t ICR; /*!< HSEM interrupt clear register , Address offset: 4h */
1535 __IO uint32_t ISR; /*!< HSEM interrupt status register , Address offset: 8h */
1536 __IO uint32_t MISR; /*!< HSEM masked interrupt status register , Address offset: Ch */
1537} HSEM_Common_TypeDef;
1538
1539/**
1540 * @brief Serial Peripheral Interface
1541 */
1542
1543typedef struct
1544{
1545 __IO uint32_t CR1; /*!< SPI/I2S Control register 1, Address offset: 0x00 */
1546 __IO uint32_t CR2; /*!< SPI Control register 2, Address offset: 0x04 */
1547 __IO uint32_t CFG1; /*!< SPI Configuration register 1, Address offset: 0x08 */
1548 __IO uint32_t CFG2; /*!< SPI Configuration register 2, Address offset: 0x0C */
1549 __IO uint32_t IER; /*!< SPI/I2S Interrupt Enable register, Address offset: 0x10 */
1550 __IO uint32_t SR; /*!< SPI/I2S Status register, Address offset: 0x14 */
1551 __IO uint32_t IFCR; /*!< SPI/I2S Interrupt/Status flags clear register, Address offset: 0x18 */
1552 uint32_t RESERVED0; /*!< Reserved, 0x1C */
1553 __IO uint32_t TXDR; /*!< SPI/I2S Transmit data register, Address offset: 0x20 */
1554 uint32_t RESERVED1[3]; /*!< Reserved, 0x24-0x2C */
1555 __IO uint32_t RXDR; /*!< SPI/I2S Receive data register, Address offset: 0x30 */
1556 uint32_t RESERVED2[3]; /*!< Reserved, 0x34-0x3C */
1557 __IO uint32_t CRCPOLY; /*!< SPI CRC Polynomial register, Address offset: 0x40 */
1558 __IO uint32_t TXCRC; /*!< SPI Transmitter CRC register, Address offset: 0x44 */
1559 __IO uint32_t RXCRC; /*!< SPI Receiver CRC register, Address offset: 0x48 */
1560 __IO uint32_t UDRDR; /*!< SPI Underrun data register, Address offset: 0x4C */
1561 __IO uint32_t I2SCFGR; /*!< I2S Configuration register, Address offset: 0x50 */
1562
1563} SPI_TypeDef;
1564/**
1565 * @brief QUAD Serial Peripheral Interface
1566 */
1567
1568typedef struct
1569{
1570 __IO uint32_t CR; /*!< QUADSPI Control register, Address offset: 0x00 */
1571 __IO uint32_t DCR; /*!< QUADSPI Device Configuration register, Address offset: 0x04 */
1572 __IO uint32_t SR; /*!< QUADSPI Status register, Address offset: 0x08 */
1573 __IO uint32_t FCR; /*!< QUADSPI Flag Clear register, Address offset: 0x0C */
1574 __IO uint32_t DLR; /*!< QUADSPI Data Length register, Address offset: 0x10 */
1575 __IO uint32_t CCR; /*!< QUADSPI Communication Configuration register, Address offset: 0x14 */
1576 __IO uint32_t AR; /*!< QUADSPI Address register, Address offset: 0x18 */
1577 __IO uint32_t ABR; /*!< QUADSPI Alternate Bytes register, Address offset: 0x1C */
1578 __IO uint32_t DR; /*!< QUADSPI Data register, Address offset: 0x20 */
1579 __IO uint32_t PSMKR; /*!< QUADSPI Polling Status Mask register, Address offset: 0x24 */
1580 __IO uint32_t PSMAR; /*!< QUADSPI Polling Status Match register, Address offset: 0x28 */
1581 __IO uint32_t PIR; /*!< QUADSPI Polling Interval register, Address offset: 0x2C */
1582 __IO uint32_t LPTR; /*!< QUADSPI Low Power Timeout register, Address offset: 0x30 */
1583} QUADSPI_TypeDef;
1584
1585/**
1586 * @brief TIM
1587 */
1588
1589typedef struct
1590{
1591 __IO uint32_t CR1; /*!< TIM control register 1, Address offset: 0x00 */
1592 __IO uint32_t CR2; /*!< TIM control register 2, Address offset: 0x04 */
1593 __IO uint32_t SMCR; /*!< TIM slave mode control register, Address offset: 0x08 */
1594 __IO uint32_t DIER; /*!< TIM DMA/interrupt enable register, Address offset: 0x0C */
1595 __IO uint32_t SR; /*!< TIM status register, Address offset: 0x10 */
1596 __IO uint32_t EGR; /*!< TIM event generation register, Address offset: 0x14 */
1597 __IO uint32_t CCMR1; /*!< TIM capture/compare mode register 1, Address offset: 0x18 */
1598 __IO uint32_t CCMR2; /*!< TIM capture/compare mode register 2, Address offset: 0x1C */
1599 __IO uint32_t CCER; /*!< TIM capture/compare enable register, Address offset: 0x20 */
1600 __IO uint32_t CNT; /*!< TIM counter register, Address offset: 0x24 */
1601 __IO uint32_t PSC; /*!< TIM prescaler, Address offset: 0x28 */
1602 __IO uint32_t ARR; /*!< TIM auto-reload register, Address offset: 0x2C */
1603 __IO uint32_t RCR; /*!< TIM repetition counter register, Address offset: 0x30 */
1604 __IO uint32_t CCR1; /*!< TIM capture/compare register 1, Address offset: 0x34 */
1605 __IO uint32_t CCR2; /*!< TIM capture/compare register 2, Address offset: 0x38 */
1606 __IO uint32_t CCR3; /*!< TIM capture/compare register 3, Address offset: 0x3C */
1607 __IO uint32_t CCR4; /*!< TIM capture/compare register 4, Address offset: 0x40 */
1608 __IO uint32_t BDTR; /*!< TIM break and dead-time register, Address offset: 0x44 */
1609 __IO uint32_t DCR; /*!< TIM DMA control register, Address offset: 0x48 */
1610 __IO uint32_t DMAR; /*!< TIM DMA address for full transfer, Address offset: 0x4C */
1611 uint32_t RESERVED1; /*!< Reserved, 0x50 */
1612 __IO uint32_t CCMR3; /*!< TIM capture/compare mode register 3, Address offset: 0x54 */
1613 __IO uint32_t CCR5; /*!< TIM capture/compare register5, Address offset: 0x58 */
1614 __IO uint32_t CCR6; /*!< TIM capture/compare register6, Address offset: 0x5C */
1615 __IO uint32_t AF1; /*!< TIM alternate function option register 1, Address offset: 0x60 */
1616 __IO uint32_t AF2; /*!< TIM alternate function option register 2, Address offset: 0x64 */
1617 __IO uint32_t TISEL; /*!< TIM Input Selection register, Address offset: 0x68 */
1618} TIM_TypeDef;
1619
1620/**
1621 * @brief LPTIMIMER
1622 */
1623typedef struct
1624{
1625 __IO uint32_t ISR; /*!< LPTIM Interrupt and Status register, Address offset: 0x00 */
1626 __IO uint32_t ICR; /*!< LPTIM Interrupt Clear register, Address offset: 0x04 */
1627 __IO uint32_t IER; /*!< LPTIM Interrupt Enable register, Address offset: 0x08 */
1628 __IO uint32_t CFGR; /*!< LPTIM Configuration register, Address offset: 0x0C */
1629 __IO uint32_t CR; /*!< LPTIM Control register, Address offset: 0x10 */
1630 __IO uint32_t CMP; /*!< LPTIM Compare register, Address offset: 0x14 */
1631 __IO uint32_t ARR; /*!< LPTIM Autoreload register, Address offset: 0x18 */
1632 __IO uint32_t CNT; /*!< LPTIM Counter register, Address offset: 0x1C */
1633 uint32_t RESERVED1; /*!< Reserved, 0x20 */
1634 __IO uint32_t CFGR2; /*!< LPTIM Configuration register, Address offset: 0x24 */
1635} LPTIM_TypeDef;
1636
1637/**
1638 * @brief Comparator
1639 */
1640typedef struct
1641{
1642 __IO uint32_t SR; /*!< Comparator status register, Address offset: 0x00 */
1643 __IO uint32_t ICFR; /*!< Comparator interrupt clear flag register, Address offset: 0x04 */
1644 __IO uint32_t OR; /*!< Comparator option register, Address offset: 0x08 */
1645} COMPOPT_TypeDef;
1646
1647typedef struct
1648{
1649 __IO uint32_t CFGR; /*!< Comparator configuration register , Address offset: 0x00 */
1650} COMP_TypeDef;
1651
1652typedef struct
1653{
1654 __IO uint32_t CFGR; /*!< COMP control and status register, used for bits common to several COMP instances, Address offset: 0x00 */
1655} COMP_Common_TypeDef;
1656/**
1657 * @brief Universal Synchronous Asynchronous Receiver Transmitter
1658 */
1659
1660typedef struct
1661{
1662 __IO uint32_t CR1; /*!< USART Control register 1, Address offset: 0x00 */
1663 __IO uint32_t CR2; /*!< USART Control register 2, Address offset: 0x04 */
1664 __IO uint32_t CR3; /*!< USART Control register 3, Address offset: 0x08 */
1665 __IO uint32_t BRR; /*!< USART Baud rate register, Address offset: 0x0C */
1666 __IO uint32_t GTPR; /*!< USART Guard time and prescaler register, Address offset: 0x10 */
1667 __IO uint32_t RTOR; /*!< USART Receiver Time Out register, Address offset: 0x14 */
1668 __IO uint32_t RQR; /*!< USART Request register, Address offset: 0x18 */
1669 __IO uint32_t ISR; /*!< USART Interrupt and status register, Address offset: 0x1C */
1670 __IO uint32_t ICR; /*!< USART Interrupt flag Clear register, Address offset: 0x20 */
1671 __IO uint32_t RDR; /*!< USART Receive Data register, Address offset: 0x24 */
1672 __IO uint32_t TDR; /*!< USART Transmit Data register, Address offset: 0x28 */
1673 __IO uint32_t PRESC; /*!< USART clock Prescaler register, Address offset: 0x2C */
1674} USART_TypeDef;
1675
1676/**
1677 * @brief Single Wire Protocol Master Interface SPWMI
1678 */
1679typedef struct
1680{
1681 __IO uint32_t CR; /*!< SWPMI Configuration/Control register, Address offset: 0x00 */
1682 __IO uint32_t BRR; /*!< SWPMI bitrate register, Address offset: 0x04 */
1683 uint32_t RESERVED1; /*!< Reserved, 0x08 */
1684 __IO uint32_t ISR; /*!< SWPMI Interrupt and Status register, Address offset: 0x0C */
1685 __IO uint32_t ICR; /*!< SWPMI Interrupt Flag Clear register, Address offset: 0x10 */
1686 __IO uint32_t IER; /*!< SWPMI Interrupt Enable register, Address offset: 0x14 */
1687 __IO uint32_t RFL; /*!< SWPMI Receive Frame Length register, Address offset: 0x18 */
1688 __IO uint32_t TDR; /*!< SWPMI Transmit data register, Address offset: 0x1C */
1689 __IO uint32_t RDR; /*!< SWPMI Receive data register, Address offset: 0x20 */
1690 __IO uint32_t OR; /*!< SWPMI Option register, Address offset: 0x24 */
1691} SWPMI_TypeDef;
1692
1693/**
1694 * @brief Window WATCHDOG
1695 */
1696
1697typedef struct
1698{
1699 __IO uint32_t CR; /*!< WWDG Control register, Address offset: 0x00 */
1700 __IO uint32_t CFR; /*!< WWDG Configuration register, Address offset: 0x04 */
1701 __IO uint32_t SR; /*!< WWDG Status register, Address offset: 0x08 */
1702} WWDG_TypeDef;
1703
1704
1705/**
1706 * @brief RAM_ECC_Specific_Registers
1707 */
1708typedef struct
1709{
1710 __IO uint32_t CR; /*!< RAMECC monitor configuration register */
1711 __IO uint32_t SR; /*!< RAMECC monitor status register */
1712 __IO uint32_t FAR; /*!< RAMECC monitor failing address register */
1713 __IO uint32_t FDRL; /*!< RAMECC monitor failing data low register */
1714 __IO uint32_t FDRH; /*!< RAMECC monitor failing data high register */
1715 __IO uint32_t FECR; /*!< RAMECC monitor failing ECC error code register */
1716} RAMECC_MonitorTypeDef;
1717
1718typedef struct
1719{
1720 __IO uint32_t IER; /*!< RAMECC interrupt enable register */
1721} RAMECC_TypeDef;
1722/**
1723 * @}
1724 */
1725
1726
1727
1728/**
1729 * @brief High resolution Timer (HRTIM)
1730 */
1731/* HRTIM master registers definition */
1732typedef struct
1733{
1734 __IO uint32_t MCR; /*!< HRTIM Master Timer control register, Address offset: 0x00 */
1735 __IO uint32_t MISR; /*!< HRTIM Master Timer interrupt status register, Address offset: 0x04 */
1736 __IO uint32_t MICR; /*!< HRTIM Master Timer interupt clear register, Address offset: 0x08 */
1737 __IO uint32_t MDIER; /*!< HRTIM Master Timer DMA/interrupt enable register Address offset: 0x0C */
1738 __IO uint32_t MCNTR; /*!< HRTIM Master Timer counter register, Address offset: 0x10 */
1739 __IO uint32_t MPER; /*!< HRTIM Master Timer period register, Address offset: 0x14 */
1740 __IO uint32_t MREP; /*!< HRTIM Master Timer repetition register, Address offset: 0x18 */
1741 __IO uint32_t MCMP1R; /*!< HRTIM Master Timer compare 1 register, Address offset: 0x1C */
1742 uint32_t RESERVED0; /*!< Reserved, 0x20 */
1743 __IO uint32_t MCMP2R; /*!< HRTIM Master Timer compare 2 register, Address offset: 0x24 */
1744 __IO uint32_t MCMP3R; /*!< HRTIM Master Timer compare 3 register, Address offset: 0x28 */
1745 __IO uint32_t MCMP4R; /*!< HRTIM Master Timer compare 4 register, Address offset: 0x2C */
1746 uint32_t RESERVED1[20]; /*!< Reserved, 0x30..0x7C */
1747}HRTIM_Master_TypeDef;
1748
1749/* HRTIM Timer A to E registers definition */
1750typedef struct
1751{
1752 __IO uint32_t TIMxCR; /*!< HRTIM Timerx control register, Address offset: 0x00 */
1753 __IO uint32_t TIMxISR; /*!< HRTIM Timerx interrupt status register, Address offset: 0x04 */
1754 __IO uint32_t TIMxICR; /*!< HRTIM Timerx interrupt clear register, Address offset: 0x08 */
1755 __IO uint32_t TIMxDIER; /*!< HRTIM Timerx DMA/interrupt enable register, Address offset: 0x0C */
1756 __IO uint32_t CNTxR; /*!< HRTIM Timerx counter register, Address offset: 0x10 */
1757 __IO uint32_t PERxR; /*!< HRTIM Timerx period register, Address offset: 0x14 */
1758 __IO uint32_t REPxR; /*!< HRTIM Timerx repetition register, Address offset: 0x18 */
1759 __IO uint32_t CMP1xR; /*!< HRTIM Timerx compare 1 register, Address offset: 0x1C */
1760 __IO uint32_t CMP1CxR; /*!< HRTIM Timerx compare 1 compound register, Address offset: 0x20 */
1761 __IO uint32_t CMP2xR; /*!< HRTIM Timerx compare 2 register, Address offset: 0x24 */
1762 __IO uint32_t CMP3xR; /*!< HRTIM Timerx compare 3 register, Address offset: 0x28 */
1763 __IO uint32_t CMP4xR; /*!< HRTIM Timerx compare 4 register, Address offset: 0x2C */
1764 __IO uint32_t CPT1xR; /*!< HRTIM Timerx capture 1 register, Address offset: 0x30 */
1765 __IO uint32_t CPT2xR; /*!< HRTIM Timerx capture 2 register, Address offset: 0x34 */
1766 __IO uint32_t DTxR; /*!< HRTIM Timerx dead time register, Address offset: 0x38 */
1767 __IO uint32_t SETx1R; /*!< HRTIM Timerx output 1 set register, Address offset: 0x3C */
1768 __IO uint32_t RSTx1R; /*!< HRTIM Timerx output 1 reset register, Address offset: 0x40 */
1769 __IO uint32_t SETx2R; /*!< HRTIM Timerx output 2 set register, Address offset: 0x44 */
1770 __IO uint32_t RSTx2R; /*!< HRTIM Timerx output 2 reset register, Address offset: 0x48 */
1771 __IO uint32_t EEFxR1; /*!< HRTIM Timerx external event filtering 1 register, Address offset: 0x4C */
1772 __IO uint32_t EEFxR2; /*!< HRTIM Timerx external event filtering 2 register, Address offset: 0x50 */
1773 __IO uint32_t RSTxR; /*!< HRTIM Timerx Reset register, Address offset: 0x54 */
1774 __IO uint32_t CHPxR; /*!< HRTIM Timerx Chopper register, Address offset: 0x58 */
1775 __IO uint32_t CPT1xCR; /*!< HRTIM Timerx Capture 1 register, Address offset: 0x5C */
1776 __IO uint32_t CPT2xCR; /*!< HRTIM Timerx Capture 2 register, Address offset: 0x60 */
1777 __IO uint32_t OUTxR; /*!< HRTIM Timerx Output register, Address offset: 0x64 */
1778 __IO uint32_t FLTxR; /*!< HRTIM Timerx Fault register, Address offset: 0x68 */
1779 uint32_t RESERVED0[5]; /*!< Reserved, 0x6C..0x7C */
1780}HRTIM_Timerx_TypeDef;
1781
1782/* HRTIM common register definition */
1783typedef struct
1784{
1785 __IO uint32_t CR1; /*!< HRTIM control register1, Address offset: 0x00 */
1786 __IO uint32_t CR2; /*!< HRTIM control register2, Address offset: 0x04 */
1787 __IO uint32_t ISR; /*!< HRTIM interrupt status register, Address offset: 0x08 */
1788 __IO uint32_t ICR; /*!< HRTIM interrupt clear register, Address offset: 0x0C */
1789 __IO uint32_t IER; /*!< HRTIM interrupt enable register, Address offset: 0x10 */
1790 __IO uint32_t OENR; /*!< HRTIM Output enable register, Address offset: 0x14 */
1791 __IO uint32_t ODISR; /*!< HRTIM Output disable register, Address offset: 0x18 */
1792 __IO uint32_t ODSR; /*!< HRTIM Output disable status register, Address offset: 0x1C */
1793 __IO uint32_t BMCR; /*!< HRTIM Burst mode control register, Address offset: 0x20 */
1794 __IO uint32_t BMTRGR; /*!< HRTIM Busrt mode trigger register, Address offset: 0x24 */
1795 __IO uint32_t BMCMPR; /*!< HRTIM Burst mode compare register, Address offset: 0x28 */
1796 __IO uint32_t BMPER; /*!< HRTIM Burst mode period register, Address offset: 0x2C */
1797 __IO uint32_t EECR1; /*!< HRTIM Timer external event control register1, Address offset: 0x30 */
1798 __IO uint32_t EECR2; /*!< HRTIM Timer external event control register2, Address offset: 0x34 */
1799 __IO uint32_t EECR3; /*!< HRTIM Timer external event control register3, Address offset: 0x38 */
1800 __IO uint32_t ADC1R; /*!< HRTIM ADC Trigger 1 register, Address offset: 0x3C */
1801 __IO uint32_t ADC2R; /*!< HRTIM ADC Trigger 2 register, Address offset: 0x40 */
1802 __IO uint32_t ADC3R; /*!< HRTIM ADC Trigger 3 register, Address offset: 0x44 */
1803 __IO uint32_t ADC4R; /*!< HRTIM ADC Trigger 4 register, Address offset: 0x48 */
1804 __IO uint32_t RESERVED0; /*!< Reserved, Address offset: 0x4C */
1805 __IO uint32_t FLTINR1; /*!< HRTIM Fault input register1, Address offset: 0x50 */
1806 __IO uint32_t FLTINR2; /*!< HRTIM Fault input register2, Address offset: 0x54 */
1807 __IO uint32_t BDMUPR; /*!< HRTIM Burst DMA Master Timer update register, Address offset: 0x58 */
1808 __IO uint32_t BDTAUPR; /*!< HRTIM Burst DMA Timerx update register, Address offset: 0x5C */
1809 __IO uint32_t BDTBUPR; /*!< HRTIM Burst DMA Timerx update register, Address offset: 0x60 */
1810 __IO uint32_t BDTCUPR; /*!< HRTIM Burst DMA Timerx update register, Address offset: 0x64 */
1811 __IO uint32_t BDTDUPR; /*!< HRTIM Burst DMA Timerx update register, Address offset: 0x68 */
1812 __IO uint32_t BDTEUPR; /*!< HRTIM Burst DMA Timerx update register, Address offset: 0x6C */
1813 __IO uint32_t BDMADR; /*!< HRTIM Burst DMA Master Data register, Address offset: 0x70 */
1814}HRTIM_Common_TypeDef;
1815
1816/* HRTIM register definition */
1817typedef struct {
1818 HRTIM_Master_TypeDef sMasterRegs;
1819 HRTIM_Timerx_TypeDef sTimerxRegs[5];
1820 uint32_t RESERVED0[32];
1821 HRTIM_Common_TypeDef sCommonRegs;
1822}HRTIM_TypeDef;
1823/**
1824 * @brief RNG
1825 */
1826
1827typedef struct
1828{
1829 __IO uint32_t CR; /*!< RNG control register, Address offset: 0x00 */
1830 __IO uint32_t SR; /*!< RNG status register, Address offset: 0x04 */
1831 __IO uint32_t DR; /*!< RNG data register, Address offset: 0x08 */
1832} RNG_TypeDef;
1833
1834/**
1835 * @brief MDIOS
1836 */
1837
1838typedef struct
1839{
1840 __IO uint32_t CR;
1841 __IO uint32_t WRFR;
1842 __IO uint32_t CWRFR;
1843 __IO uint32_t RDFR;
1844 __IO uint32_t CRDFR;
1845 __IO uint32_t SR;
1846 __IO uint32_t CLRFR;
1847 uint32_t RESERVED[57];
1848 __IO uint32_t DINR0;
1849 __IO uint32_t DINR1;
1850 __IO uint32_t DINR2;
1851 __IO uint32_t DINR3;
1852 __IO uint32_t DINR4;
1853 __IO uint32_t DINR5;
1854 __IO uint32_t DINR6;
1855 __IO uint32_t DINR7;
1856 __IO uint32_t DINR8;
1857 __IO uint32_t DINR9;
1858 __IO uint32_t DINR10;
1859 __IO uint32_t DINR11;
1860 __IO uint32_t DINR12;
1861 __IO uint32_t DINR13;
1862 __IO uint32_t DINR14;
1863 __IO uint32_t DINR15;
1864 __IO uint32_t DINR16;
1865 __IO uint32_t DINR17;
1866 __IO uint32_t DINR18;
1867 __IO uint32_t DINR19;
1868 __IO uint32_t DINR20;
1869 __IO uint32_t DINR21;
1870 __IO uint32_t DINR22;
1871 __IO uint32_t DINR23;
1872 __IO uint32_t DINR24;
1873 __IO uint32_t DINR25;
1874 __IO uint32_t DINR26;
1875 __IO uint32_t DINR27;
1876 __IO uint32_t DINR28;
1877 __IO uint32_t DINR29;
1878 __IO uint32_t DINR30;
1879 __IO uint32_t DINR31;
1880 __IO uint32_t DOUTR0;
1881 __IO uint32_t DOUTR1;
1882 __IO uint32_t DOUTR2;
1883 __IO uint32_t DOUTR3;
1884 __IO uint32_t DOUTR4;
1885 __IO uint32_t DOUTR5;
1886 __IO uint32_t DOUTR6;
1887 __IO uint32_t DOUTR7;
1888 __IO uint32_t DOUTR8;
1889 __IO uint32_t DOUTR9;
1890 __IO uint32_t DOUTR10;
1891 __IO uint32_t DOUTR11;
1892 __IO uint32_t DOUTR12;
1893 __IO uint32_t DOUTR13;
1894 __IO uint32_t DOUTR14;
1895 __IO uint32_t DOUTR15;
1896 __IO uint32_t DOUTR16;
1897 __IO uint32_t DOUTR17;
1898 __IO uint32_t DOUTR18;
1899 __IO uint32_t DOUTR19;
1900 __IO uint32_t DOUTR20;
1901 __IO uint32_t DOUTR21;
1902 __IO uint32_t DOUTR22;
1903 __IO uint32_t DOUTR23;
1904 __IO uint32_t DOUTR24;
1905 __IO uint32_t DOUTR25;
1906 __IO uint32_t DOUTR26;
1907 __IO uint32_t DOUTR27;
1908 __IO uint32_t DOUTR28;
1909 __IO uint32_t DOUTR29;
1910 __IO uint32_t DOUTR30;
1911 __IO uint32_t DOUTR31;
1912} MDIOS_TypeDef;
1913
1914
1915/**
1916 * @brief USB_OTG_Core_Registers
1917 */
1918typedef struct
1919{
1920 __IO uint32_t GOTGCTL; /*!< USB_OTG Control and Status Register 000h */
1921 __IO uint32_t GOTGINT; /*!< USB_OTG Interrupt Register 004h */
1922 __IO uint32_t GAHBCFG; /*!< Core AHB Configuration Register 008h */
1923 __IO uint32_t GUSBCFG; /*!< Core USB Configuration Register 00Ch */
1924 __IO uint32_t GRSTCTL; /*!< Core Reset Register 010h */
1925 __IO uint32_t GINTSTS; /*!< Core Interrupt Register 014h */
1926 __IO uint32_t GINTMSK; /*!< Core Interrupt Mask Register 018h */
1927 __IO uint32_t GRXSTSR; /*!< Receive Sts Q Read Register 01Ch */
1928 __IO uint32_t GRXSTSP; /*!< Receive Sts Q Read & POP Register 020h */
1929 __IO uint32_t GRXFSIZ; /*!< Receive FIFO Size Register 024h */
1930 __IO uint32_t DIEPTXF0_HNPTXFSIZ; /*!< EP0 / Non Periodic Tx FIFO Size Register 028h */
1931 __IO uint32_t HNPTXSTS; /*!< Non Periodic Tx FIFO/Queue Sts reg 02Ch */
1932 uint32_t Reserved30[2]; /*!< Reserved 030h */
1933 __IO uint32_t GCCFG; /*!< General Purpose IO Register 038h */
1934 __IO uint32_t CID; /*!< User ID Register 03Ch */
1935 __IO uint32_t GSNPSID; /* USB_OTG core ID 040h*/
1936 __IO uint32_t GHWCFG1; /* User HW config1 044h*/
1937 __IO uint32_t GHWCFG2; /* User HW config2 048h*/
1938 __IO uint32_t GHWCFG3; /*!< User HW config3 04Ch */
1939 uint32_t Reserved6; /*!< Reserved 050h */
1940 __IO uint32_t GLPMCFG; /*!< LPM Register 054h */
1941 __IO uint32_t GPWRDN; /*!< Power Down Register 058h */
1942 __IO uint32_t GDFIFOCFG; /*!< DFIFO Software Config Register 05Ch */
1943 __IO uint32_t GADPCTL; /*!< ADP Timer, Control and Status Register 60Ch */
1944 uint32_t Reserved43[39]; /*!< Reserved 058h-0FFh */
1945 __IO uint32_t HPTXFSIZ; /*!< Host Periodic Tx FIFO Size Reg 100h */
1946 __IO uint32_t DIEPTXF[0x0F]; /*!< dev Periodic Transmit FIFO */
1947} USB_OTG_GlobalTypeDef;
1948
1949
1950/**
1951 * @brief USB_OTG_device_Registers
1952 */
1953typedef struct
1954{
1955 __IO uint32_t DCFG; /*!< dev Configuration Register 800h */
1956 __IO uint32_t DCTL; /*!< dev Control Register 804h */
1957 __IO uint32_t DSTS; /*!< dev Status Register (RO) 808h */
1958 uint32_t Reserved0C; /*!< Reserved 80Ch */
1959 __IO uint32_t DIEPMSK; /*!< dev IN Endpoint Mask 810h */
1960 __IO uint32_t DOEPMSK; /*!< dev OUT Endpoint Mask 814h */
1961 __IO uint32_t DAINT; /*!< dev All Endpoints Itr Reg 818h */
1962 __IO uint32_t DAINTMSK; /*!< dev All Endpoints Itr Mask 81Ch */
1963 uint32_t Reserved20; /*!< Reserved 820h */
1964 uint32_t Reserved9; /*!< Reserved 824h */
1965 __IO uint32_t DVBUSDIS; /*!< dev VBUS discharge Register 828h */
1966 __IO uint32_t DVBUSPULSE; /*!< dev VBUS Pulse Register 82Ch */
1967 __IO uint32_t DTHRCTL; /*!< dev threshold 830h */
1968 __IO uint32_t DIEPEMPMSK; /*!< dev empty msk 834h */
1969 __IO uint32_t DEACHINT; /*!< dedicated EP interrupt 838h */
1970 __IO uint32_t DEACHMSK; /*!< dedicated EP msk 83Ch */
1971 uint32_t Reserved40; /*!< dedicated EP mask 840h */
1972 __IO uint32_t DINEP1MSK; /*!< dedicated EP mask 844h */
1973 uint32_t Reserved44[15]; /*!< Reserved 844-87Ch */
1974 __IO uint32_t DOUTEP1MSK; /*!< dedicated EP msk 884h */
1975} USB_OTG_DeviceTypeDef;
1976
1977
1978/**
1979 * @brief USB_OTG_IN_Endpoint-Specific_Register
1980 */
1981typedef struct
1982{
1983 __IO uint32_t DIEPCTL; /*!< dev IN Endpoint Control Reg 900h + (ep_num * 20h) + 00h */
1984 uint32_t Reserved04; /*!< Reserved 900h + (ep_num * 20h) + 04h */
1985 __IO uint32_t DIEPINT; /*!< dev IN Endpoint Itr Reg 900h + (ep_num * 20h) + 08h */
1986 uint32_t Reserved0C; /*!< Reserved 900h + (ep_num * 20h) + 0Ch */
1987 __IO uint32_t DIEPTSIZ; /*!< IN Endpoint Txfer Size 900h + (ep_num * 20h) + 10h */
1988 __IO uint32_t DIEPDMA; /*!< IN Endpoint DMA Address Reg 900h + (ep_num * 20h) + 14h */
1989 __IO uint32_t DTXFSTS; /*!< IN Endpoint Tx FIFO Status Reg 900h + (ep_num * 20h) + 18h */
1990 uint32_t Reserved18; /*!< Reserved 900h+(ep_num*20h)+1Ch-900h+ (ep_num * 20h) + 1Ch */
1991} USB_OTG_INEndpointTypeDef;
1992
1993
1994/**
1995 * @brief USB_OTG_OUT_Endpoint-Specific_Registers
1996 */
1997typedef struct
1998{
1999 __IO uint32_t DOEPCTL; /*!< dev OUT Endpoint Control Reg B00h + (ep_num * 20h) + 00h */
2000 uint32_t Reserved04; /*!< Reserved B00h + (ep_num * 20h) + 04h */
2001 __IO uint32_t DOEPINT; /*!< dev OUT Endpoint Itr Reg B00h + (ep_num * 20h) + 08h */
2002 uint32_t Reserved0C; /*!< Reserved B00h + (ep_num * 20h) + 0Ch */
2003 __IO uint32_t DOEPTSIZ; /*!< dev OUT Endpoint Txfer Size B00h + (ep_num * 20h) + 10h */
2004 __IO uint32_t DOEPDMA; /*!< dev OUT Endpoint DMA Address B00h + (ep_num * 20h) + 14h */
2005 uint32_t Reserved18[2]; /*!< Reserved B00h + (ep_num * 20h) + 18h - B00h + (ep_num * 20h) + 1Ch */
2006} USB_OTG_OUTEndpointTypeDef;
2007
2008
2009/**
2010 * @brief USB_OTG_Host_Mode_Register_Structures
2011 */
2012typedef struct
2013{
2014 __IO uint32_t HCFG; /*!< Host Configuration Register 400h */
2015 __IO uint32_t HFIR; /*!< Host Frame Interval Register 404h */
2016 __IO uint32_t HFNUM; /*!< Host Frame Nbr/Frame Remaining 408h */
2017 uint32_t Reserved40C; /*!< Reserved 40Ch */
2018 __IO uint32_t HPTXSTS; /*!< Host Periodic Tx FIFO/ Queue Status 410h */
2019 __IO uint32_t HAINT; /*!< Host All Channels Interrupt Register 414h */
2020 __IO uint32_t HAINTMSK; /*!< Host All Channels Interrupt Mask 418h */
2021} USB_OTG_HostTypeDef;
2022
2023/**
2024 * @brief USB_OTG_Host_Channel_Specific_Registers
2025 */
2026typedef struct
2027{
2028 __IO uint32_t HCCHAR; /*!< Host Channel Characteristics Register 500h */
2029 __IO uint32_t HCSPLT; /*!< Host Channel Split Control Register 504h */
2030 __IO uint32_t HCINT; /*!< Host Channel Interrupt Register 508h */
2031 __IO uint32_t HCINTMSK; /*!< Host Channel Interrupt Mask Register 50Ch */
2032 __IO uint32_t HCTSIZ; /*!< Host Channel Transfer Size Register 510h */
2033 __IO uint32_t HCDMA; /*!< Host Channel DMA Address Register 514h */
2034 uint32_t Reserved[2]; /*!< Reserved */
2035} USB_OTG_HostChannelTypeDef;
2036/**
2037 * @}
2038 */
2039
2040
2041/** @addtogroup Peripheral_memory_map
2042 * @{
2043 */
2044#define D1_ITCMRAM_BASE (0x00000000UL) /*!< Base address of : 64KB RAM reserved for CPU execution/instruction accessible over ITCM */
2045#define D1_ITCMICP_BASE (0x00100000UL) /*!< Base address of : (up to 128KB) embedded Test FLASH memory accessible over ITCM */
2046#define D1_DTCMRAM_BASE (0x20000000UL) /*!< Base address of : 128KB system data RAM accessible over DTCM */
2047#define D1_AXIFLASH_BASE (0x08000000UL) /*!< Base address of : (up to 2 MB) embedded FLASH memory accessible over AXI */
2048#define D1_AXIICP_BASE (0x1FF00000UL) /*!< Base address of : (up to 128KB) embedded Test FLASH memory accessible over AXI */
2049#define D1_AXISRAM_BASE (0x24000000UL) /*!< Base address of : (up to 512KB) system data RAM accessible over over AXI */
2050
2051#define D2_AXISRAM_BASE (0x10000000UL) /*!< Base address of : (up to 288KB) system data RAM accessible over over AXI */
2052#define D2_AHBSRAM_BASE (0x30000000UL) /*!< Base address of : (up to 288KB) system data RAM accessible over over AXI->AHB Bridge */
2053
2054#define D3_BKPSRAM_BASE (0x38800000UL) /*!< Base address of : Backup SRAM(4 KB) over AXI->AHB Bridge */
2055#define D3_SRAM_BASE (0x38000000UL) /*!< Base address of : Backup SRAM(64 KB) over AXI->AHB Bridge */
2056
2057#define PERIPH_BASE (0x40000000UL) /*!< Base address of : AHB/APB Peripherals */
2058#define QSPI_BASE (0x90000000UL) /*!< Base address of : QSPI memories accessible over AXI */
2059
2060#define FLASH_BANK1_BASE (0x08000000UL) /*!< Base address of : (up to 1 MB) Flash Bank1 accessible over AXI */
2061#define FLASH_BANK2_BASE (0x08100000UL) /*!< Base address of : (up to 1 MB) Flash Bank2 accessible over AXI */
2062#define FLASH_END (0x081FFFFFUL) /*!< FLASH end address */
2063
2064/* Legacy define */
2065#define FLASH_BASE FLASH_BANK1_BASE
2066
2067/*!< Device electronic signature memory map */
2068#define UID_BASE (0x1FF1E800UL) /*!< Unique device ID register base address */
2069#define FLASHSIZE_BASE (0x1FF1E880UL) /*!< FLASH Size register base address */
2070
2071
2072/*!< Peripheral memory map */
2073#define D2_APB1PERIPH_BASE PERIPH_BASE
2074#define D2_APB2PERIPH_BASE (PERIPH_BASE + 0x00010000UL)
2075#define D2_AHB1PERIPH_BASE (PERIPH_BASE + 0x00020000UL)
2076#define D2_AHB2PERIPH_BASE (PERIPH_BASE + 0x08020000UL)
2077
2078#define D1_APB1PERIPH_BASE (PERIPH_BASE + 0x10000000UL)
2079#define D1_AHB1PERIPH_BASE (PERIPH_BASE + 0x12000000UL)
2080
2081#define D3_APB1PERIPH_BASE (PERIPH_BASE + 0x18000000UL)
2082#define D3_AHB1PERIPH_BASE (PERIPH_BASE + 0x18020000UL)
2083
2084/*!< Legacy Peripheral memory map */
2085#define APB1PERIPH_BASE PERIPH_BASE
2086#define APB2PERIPH_BASE (PERIPH_BASE + 0x00010000UL)
2087#define AHB1PERIPH_BASE (PERIPH_BASE + 0x00020000UL)
2088#define AHB2PERIPH_BASE (PERIPH_BASE + 0x08000000UL)
2089
2090
2091/*!< D1_AHB1PERIPH peripherals */
2092
2093#define MDMA_BASE (D1_AHB1PERIPH_BASE + 0x0000UL)
2094#define DMA2D_BASE (D1_AHB1PERIPH_BASE + 0x1000UL)
2095#define JPGDEC_BASE (D1_AHB1PERIPH_BASE + 0x3000UL)
2096#define FLASH_R_BASE (D1_AHB1PERIPH_BASE + 0x2000UL)
2097#define FMC_R_BASE (D1_AHB1PERIPH_BASE + 0x4000UL)
2098#define QSPI_R_BASE (D1_AHB1PERIPH_BASE + 0x5000UL)
2099#define DLYB_QSPI_BASE (D1_AHB1PERIPH_BASE + 0x6000UL)
2100#define SDMMC1_BASE (D1_AHB1PERIPH_BASE + 0x7000UL)
2101#define DLYB_SDMMC1_BASE (D1_AHB1PERIPH_BASE + 0x8000UL)
2102#define RAMECC1_BASE (D1_AHB1PERIPH_BASE + 0x9000UL)
2103
2104/*!< D2_AHB1PERIPH peripherals */
2105
2106#define DMA1_BASE (D2_AHB1PERIPH_BASE + 0x0000UL)
2107#define DMA2_BASE (D2_AHB1PERIPH_BASE + 0x0400UL)
2108#define DMAMUX1_BASE (D2_AHB1PERIPH_BASE + 0x0800UL)
2109#define ADC1_BASE (D2_AHB1PERIPH_BASE + 0x2000UL)
2110#define ADC2_BASE (D2_AHB1PERIPH_BASE + 0x2100UL)
2111#define ADC12_COMMON_BASE (D2_AHB1PERIPH_BASE + 0x2300UL)
2112#define ART_BASE (D2_AHB1PERIPH_BASE + 0x4400UL)
2113#define ETH_BASE (D2_AHB1PERIPH_BASE + 0x8000UL)
2114#define ETH_MAC_BASE (ETH_BASE)
2115
2116/*!< USB registers base address */
2117#define USB1_OTG_HS_PERIPH_BASE (0x40040000UL)
2118#define USB2_OTG_FS_PERIPH_BASE (0x40080000UL)
2119#define USB_OTG_GLOBAL_BASE (0x000UL)
2120#define USB_OTG_DEVICE_BASE (0x800UL)
2121#define USB_OTG_IN_ENDPOINT_BASE (0x900UL)
2122#define USB_OTG_OUT_ENDPOINT_BASE (0xB00UL)
2123#define USB_OTG_EP_REG_SIZE (0x20UL)
2124#define USB_OTG_HOST_BASE (0x400UL)
2125#define USB_OTG_HOST_PORT_BASE (0x440UL)
2126#define USB_OTG_HOST_CHANNEL_BASE (0x500UL)
2127#define USB_OTG_HOST_CHANNEL_SIZE (0x20UL)
2128#define USB_OTG_PCGCCTL_BASE (0xE00UL)
2129#define USB_OTG_FIFO_BASE (0x1000UL)
2130#define USB_OTG_FIFO_SIZE (0x1000UL)
2131
2132/*!< D2_AHB2PERIPH peripherals */
2133
2134#define DCMI_BASE (D2_AHB2PERIPH_BASE + 0x0000UL)
2135#define RNG_BASE (D2_AHB2PERIPH_BASE + 0x1800UL)
2136#define SDMMC2_BASE (D2_AHB2PERIPH_BASE + 0x2400UL)
2137#define DLYB_SDMMC2_BASE (D2_AHB2PERIPH_BASE + 0x2800UL)
2138#define RAMECC2_BASE (D2_AHB2PERIPH_BASE + 0x3000UL)
2139
2140/*!< D3_AHB1PERIPH peripherals */
2141#define GPIOA_BASE (D3_AHB1PERIPH_BASE + 0x0000UL)
2142#define GPIOB_BASE (D3_AHB1PERIPH_BASE + 0x0400UL)
2143#define GPIOC_BASE (D3_AHB1PERIPH_BASE + 0x0800UL)
2144#define GPIOD_BASE (D3_AHB1PERIPH_BASE + 0x0C00UL)
2145#define GPIOE_BASE (D3_AHB1PERIPH_BASE + 0x1000UL)
2146#define GPIOF_BASE (D3_AHB1PERIPH_BASE + 0x1400UL)
2147#define GPIOG_BASE (D3_AHB1PERIPH_BASE + 0x1800UL)
2148#define GPIOH_BASE (D3_AHB1PERIPH_BASE + 0x1C00UL)
2149#define GPIOI_BASE (D3_AHB1PERIPH_BASE + 0x2000UL)
2150#define GPIOJ_BASE (D3_AHB1PERIPH_BASE + 0x2400UL)
2151#define GPIOK_BASE (D3_AHB1PERIPH_BASE + 0x2800UL)
2152#define RCC_BASE (D3_AHB1PERIPH_BASE + 0x4400UL)
2153#define RCC_C1_BASE (RCC_BASE + 0x130UL)
2154#define RCC_C2_BASE (RCC_BASE + 0x190UL)
2155#define PWR_BASE (D3_AHB1PERIPH_BASE + 0x4800UL)
2156#define CRC_BASE (D3_AHB1PERIPH_BASE + 0x4C00UL)
2157#define BDMA_BASE (D3_AHB1PERIPH_BASE + 0x5400UL)
2158#define DMAMUX2_BASE (D3_AHB1PERIPH_BASE + 0x5800UL)
2159#define ADC3_BASE (D3_AHB1PERIPH_BASE + 0x6000UL)
2160#define ADC3_COMMON_BASE (D3_AHB1PERIPH_BASE + 0x6300UL)
2161#define HSEM_BASE (D3_AHB1PERIPH_BASE + 0x6400UL)
2162#define RAMECC3_BASE (D3_AHB1PERIPH_BASE + 0x7000UL)
2163
2164/*!< D1_APB1PERIPH peripherals */
2165#define LTDC_BASE (D1_APB1PERIPH_BASE + 0x1000UL)
2166#define LTDC_Layer1_BASE (LTDC_BASE + 0x84UL)
2167#define LTDC_Layer2_BASE (LTDC_BASE + 0x104UL)
2168#define WWDG1_BASE (D1_APB1PERIPH_BASE + 0x3000UL)
2169
2170/*!< D2_APB1PERIPH peripherals */
2171#define TIM2_BASE (D2_APB1PERIPH_BASE + 0x0000UL)
2172#define TIM3_BASE (D2_APB1PERIPH_BASE + 0x0400UL)
2173#define TIM4_BASE (D2_APB1PERIPH_BASE + 0x0800UL)
2174#define TIM5_BASE (D2_APB1PERIPH_BASE + 0x0C00UL)
2175#define TIM6_BASE (D2_APB1PERIPH_BASE + 0x1000UL)
2176#define TIM7_BASE (D2_APB1PERIPH_BASE + 0x1400UL)
2177#define TIM12_BASE (D2_APB1PERIPH_BASE + 0x1800UL)
2178#define TIM13_BASE (D2_APB1PERIPH_BASE + 0x1C00UL)
2179#define TIM14_BASE (D2_APB1PERIPH_BASE + 0x2000UL)
2180#define LPTIM1_BASE (D2_APB1PERIPH_BASE + 0x2400UL)
2181
2182#define WWDG2_BASE (D2_APB1PERIPH_BASE + 0x2C00UL)
2183
2184#define SPI2_BASE (D2_APB1PERIPH_BASE + 0x3800UL)
2185#define SPI3_BASE (D2_APB1PERIPH_BASE + 0x3C00UL)
2186#define SPDIFRX_BASE (D2_APB1PERIPH_BASE + 0x4000UL)
2187#define USART2_BASE (D2_APB1PERIPH_BASE + 0x4400UL)
2188#define USART3_BASE (D2_APB1PERIPH_BASE + 0x4800UL)
2189#define UART4_BASE (D2_APB1PERIPH_BASE + 0x4C00UL)
2190#define UART5_BASE (D2_APB1PERIPH_BASE + 0x5000UL)
2191#define I2C1_BASE (D2_APB1PERIPH_BASE + 0x5400UL)
2192#define I2C2_BASE (D2_APB1PERIPH_BASE + 0x5800UL)
2193#define I2C3_BASE (D2_APB1PERIPH_BASE + 0x5C00UL)
2194#define CEC_BASE (D2_APB1PERIPH_BASE + 0x6C00UL)
2195#define DAC1_BASE (D2_APB1PERIPH_BASE + 0x7400UL)
2196#define UART7_BASE (D2_APB1PERIPH_BASE + 0x7800UL)
2197#define UART8_BASE (D2_APB1PERIPH_BASE + 0x7C00UL)
2198#define CRS_BASE (D2_APB1PERIPH_BASE + 0x8400UL)
2199#define SWPMI1_BASE (D2_APB1PERIPH_BASE + 0x8800UL)
2200#define OPAMP_BASE (D2_APB1PERIPH_BASE + 0x9000UL)
2201#define OPAMP1_BASE (D2_APB1PERIPH_BASE + 0x9000UL)
2202#define OPAMP2_BASE (D2_APB1PERIPH_BASE + 0x9010UL)
2203#define MDIOS_BASE (D2_APB1PERIPH_BASE + 0x9400UL)
2204#define FDCAN1_BASE (D2_APB1PERIPH_BASE + 0xA000UL)
2205#define FDCAN2_BASE (D2_APB1PERIPH_BASE + 0xA400UL)
2206#define FDCAN_CCU_BASE (D2_APB1PERIPH_BASE + 0xA800UL)
2207#define SRAMCAN_BASE (D2_APB1PERIPH_BASE + 0xAC00UL)
2208
2209/*!< D2_APB2PERIPH peripherals */
2210
2211#define TIM1_BASE (D2_APB2PERIPH_BASE + 0x0000UL)
2212#define TIM8_BASE (D2_APB2PERIPH_BASE + 0x0400UL)
2213#define USART1_BASE (D2_APB2PERIPH_BASE + 0x1000UL)
2214#define USART6_BASE (D2_APB2PERIPH_BASE + 0x1400UL)
2215#define SPI1_BASE (D2_APB2PERIPH_BASE + 0x3000UL)
2216#define SPI4_BASE (D2_APB2PERIPH_BASE + 0x3400UL)
2217#define TIM15_BASE (D2_APB2PERIPH_BASE + 0x4000UL)
2218#define TIM16_BASE (D2_APB2PERIPH_BASE + 0x4400UL)
2219#define TIM17_BASE (D2_APB2PERIPH_BASE + 0x4800UL)
2220#define SPI5_BASE (D2_APB2PERIPH_BASE + 0x5000UL)
2221#define SAI1_BASE (D2_APB2PERIPH_BASE + 0x5800UL)
2222#define SAI1_Block_A_BASE (SAI1_BASE + 0x004UL)
2223#define SAI1_Block_B_BASE (SAI1_BASE + 0x024UL)
2224#define SAI2_BASE (D2_APB2PERIPH_BASE + 0x5C00UL)
2225#define SAI2_Block_A_BASE (SAI2_BASE + 0x004UL)
2226#define SAI2_Block_B_BASE (SAI2_BASE + 0x024UL)
2227#define SAI3_BASE (D2_APB2PERIPH_BASE + 0x6000UL)
2228#define SAI3_Block_A_BASE (SAI3_BASE + 0x004UL)
2229#define SAI3_Block_B_BASE (SAI3_BASE + 0x024UL)
2230#define DFSDM1_BASE (D2_APB2PERIPH_BASE + 0x7000UL)
2231#define DFSDM1_Channel0_BASE (DFSDM1_BASE + 0x00UL)
2232#define DFSDM1_Channel1_BASE (DFSDM1_BASE + 0x20UL)
2233#define DFSDM1_Channel2_BASE (DFSDM1_BASE + 0x40UL)
2234#define DFSDM1_Channel3_BASE (DFSDM1_BASE + 0x60UL)
2235#define DFSDM1_Channel4_BASE (DFSDM1_BASE + 0x80UL)
2236#define DFSDM1_Channel5_BASE (DFSDM1_BASE + 0xA0UL)
2237#define DFSDM1_Channel6_BASE (DFSDM1_BASE + 0xC0UL)
2238#define DFSDM1_Channel7_BASE (DFSDM1_BASE + 0xE0UL)
2239#define DFSDM1_Filter0_BASE (DFSDM1_BASE + 0x100UL)
2240#define DFSDM1_Filter1_BASE (DFSDM1_BASE + 0x180UL)
2241#define DFSDM1_Filter2_BASE (DFSDM1_BASE + 0x200UL)
2242#define DFSDM1_Filter3_BASE (DFSDM1_BASE + 0x280UL)
2243#define HRTIM1_BASE (D2_APB2PERIPH_BASE + 0x7400UL)
2244#define HRTIM1_TIMA_BASE (HRTIM1_BASE + 0x00000080UL)
2245#define HRTIM1_TIMB_BASE (HRTIM1_BASE + 0x00000100UL)
2246#define HRTIM1_TIMC_BASE (HRTIM1_BASE + 0x00000180UL)
2247#define HRTIM1_TIMD_BASE (HRTIM1_BASE + 0x00000200UL)
2248#define HRTIM1_TIME_BASE (HRTIM1_BASE + 0x00000280UL)
2249#define HRTIM1_COMMON_BASE (HRTIM1_BASE + 0x00000380UL)
2250
2251
2252/*!< D3_APB1PERIPH peripherals */
2253#define EXTI_BASE (D3_APB1PERIPH_BASE + 0x0000UL)
2254#define EXTI_D1_BASE (EXTI_BASE + 0x0080UL)
2255#define EXTI_D2_BASE (EXTI_BASE + 0x00C0UL)
2256#define SYSCFG_BASE (D3_APB1PERIPH_BASE + 0x0400UL)
2257#define LPUART1_BASE (D3_APB1PERIPH_BASE + 0x0C00UL)
2258#define SPI6_BASE (D3_APB1PERIPH_BASE + 0x1400UL)
2259#define I2C4_BASE (D3_APB1PERIPH_BASE + 0x1C00UL)
2260#define LPTIM2_BASE (D3_APB1PERIPH_BASE + 0x2400UL)
2261#define LPTIM3_BASE (D3_APB1PERIPH_BASE + 0x2800UL)
2262#define LPTIM4_BASE (D3_APB1PERIPH_BASE + 0x2C00UL)
2263#define LPTIM5_BASE (D3_APB1PERIPH_BASE + 0x3000UL)
2264#define COMP12_BASE (D3_APB1PERIPH_BASE + 0x3800UL)
2265#define COMP1_BASE (COMP12_BASE + 0x0CUL)
2266#define COMP2_BASE (COMP12_BASE + 0x10UL)
2267#define VREFBUF_BASE (D3_APB1PERIPH_BASE + 0x3C00UL)
2268#define RTC_BASE (D3_APB1PERIPH_BASE + 0x4000UL)
2269#define IWDG1_BASE (D3_APB1PERIPH_BASE + 0x4800UL)
2270
2271#define IWDG2_BASE (D3_APB1PERIPH_BASE + 0x4C00UL)
2272
2273#define SAI4_BASE (D3_APB1PERIPH_BASE + 0x5400UL)
2274#define SAI4_Block_A_BASE (SAI4_BASE + 0x004UL)
2275#define SAI4_Block_B_BASE (SAI4_BASE + 0x024UL)
2276
2277
2278
2279
2280#define BDMA_Channel0_BASE (BDMA_BASE + 0x0008UL)
2281#define BDMA_Channel1_BASE (BDMA_BASE + 0x001CUL)
2282#define BDMA_Channel2_BASE (BDMA_BASE + 0x0030UL)
2283#define BDMA_Channel3_BASE (BDMA_BASE + 0x0044UL)
2284#define BDMA_Channel4_BASE (BDMA_BASE + 0x0058UL)
2285#define BDMA_Channel5_BASE (BDMA_BASE + 0x006CUL)
2286#define BDMA_Channel6_BASE (BDMA_BASE + 0x0080UL)
2287#define BDMA_Channel7_BASE (BDMA_BASE + 0x0094UL)
2288
2289#define DMAMUX2_Channel0_BASE (DMAMUX2_BASE)
2290#define DMAMUX2_Channel1_BASE (DMAMUX2_BASE + 0x0004UL)
2291#define DMAMUX2_Channel2_BASE (DMAMUX2_BASE + 0x0008UL)
2292#define DMAMUX2_Channel3_BASE (DMAMUX2_BASE + 0x000CUL)
2293#define DMAMUX2_Channel4_BASE (DMAMUX2_BASE + 0x0010UL)
2294#define DMAMUX2_Channel5_BASE (DMAMUX2_BASE + 0x0014UL)
2295#define DMAMUX2_Channel6_BASE (DMAMUX2_BASE + 0x0018UL)
2296#define DMAMUX2_Channel7_BASE (DMAMUX2_BASE + 0x001CUL)
2297
2298#define DMAMUX2_RequestGenerator0_BASE (DMAMUX2_BASE + 0x0100UL)
2299#define DMAMUX2_RequestGenerator1_BASE (DMAMUX2_BASE + 0x0104UL)
2300#define DMAMUX2_RequestGenerator2_BASE (DMAMUX2_BASE + 0x0108UL)
2301#define DMAMUX2_RequestGenerator3_BASE (DMAMUX2_BASE + 0x010CUL)
2302#define DMAMUX2_RequestGenerator4_BASE (DMAMUX2_BASE + 0x0110UL)
2303#define DMAMUX2_RequestGenerator5_BASE (DMAMUX2_BASE + 0x0114UL)
2304#define DMAMUX2_RequestGenerator6_BASE (DMAMUX2_BASE + 0x0118UL)
2305#define DMAMUX2_RequestGenerator7_BASE (DMAMUX2_BASE + 0x011CUL)
2306
2307#define DMAMUX2_ChannelStatus_BASE (DMAMUX2_BASE + 0x0080UL)
2308#define DMAMUX2_RequestGenStatus_BASE (DMAMUX2_BASE + 0x0140UL)
2309
2310#define DMA1_Stream0_BASE (DMA1_BASE + 0x010UL)
2311#define DMA1_Stream1_BASE (DMA1_BASE + 0x028UL)
2312#define DMA1_Stream2_BASE (DMA1_BASE + 0x040UL)
2313#define DMA1_Stream3_BASE (DMA1_BASE + 0x058UL)
2314#define DMA1_Stream4_BASE (DMA1_BASE + 0x070UL)
2315#define DMA1_Stream5_BASE (DMA1_BASE + 0x088UL)
2316#define DMA1_Stream6_BASE (DMA1_BASE + 0x0A0UL)
2317#define DMA1_Stream7_BASE (DMA1_BASE + 0x0B8UL)
2318
2319#define DMA2_Stream0_BASE (DMA2_BASE + 0x010UL)
2320#define DMA2_Stream1_BASE (DMA2_BASE + 0x028UL)
2321#define DMA2_Stream2_BASE (DMA2_BASE + 0x040UL)
2322#define DMA2_Stream3_BASE (DMA2_BASE + 0x058UL)
2323#define DMA2_Stream4_BASE (DMA2_BASE + 0x070UL)
2324#define DMA2_Stream5_BASE (DMA2_BASE + 0x088UL)
2325#define DMA2_Stream6_BASE (DMA2_BASE + 0x0A0UL)
2326#define DMA2_Stream7_BASE (DMA2_BASE + 0x0B8UL)
2327
2328#define DMAMUX1_Channel0_BASE (DMAMUX1_BASE)
2329#define DMAMUX1_Channel1_BASE (DMAMUX1_BASE + 0x0004UL)
2330#define DMAMUX1_Channel2_BASE (DMAMUX1_BASE + 0x0008UL)
2331#define DMAMUX1_Channel3_BASE (DMAMUX1_BASE + 0x000CUL)
2332#define DMAMUX1_Channel4_BASE (DMAMUX1_BASE + 0x0010UL)
2333#define DMAMUX1_Channel5_BASE (DMAMUX1_BASE + 0x0014UL)
2334#define DMAMUX1_Channel6_BASE (DMAMUX1_BASE + 0x0018UL)
2335#define DMAMUX1_Channel7_BASE (DMAMUX1_BASE + 0x001CUL)
2336#define DMAMUX1_Channel8_BASE (DMAMUX1_BASE + 0x0020UL)
2337#define DMAMUX1_Channel9_BASE (DMAMUX1_BASE + 0x0024UL)
2338#define DMAMUX1_Channel10_BASE (DMAMUX1_BASE + 0x0028UL)
2339#define DMAMUX1_Channel11_BASE (DMAMUX1_BASE + 0x002CUL)
2340#define DMAMUX1_Channel12_BASE (DMAMUX1_BASE + 0x0030UL)
2341#define DMAMUX1_Channel13_BASE (DMAMUX1_BASE + 0x0034UL)
2342#define DMAMUX1_Channel14_BASE (DMAMUX1_BASE + 0x0038UL)
2343#define DMAMUX1_Channel15_BASE (DMAMUX1_BASE + 0x003CUL)
2344
2345#define DMAMUX1_RequestGenerator0_BASE (DMAMUX1_BASE + 0x0100UL)
2346#define DMAMUX1_RequestGenerator1_BASE (DMAMUX1_BASE + 0x0104UL)
2347#define DMAMUX1_RequestGenerator2_BASE (DMAMUX1_BASE + 0x0108UL)
2348#define DMAMUX1_RequestGenerator3_BASE (DMAMUX1_BASE + 0x010CUL)
2349#define DMAMUX1_RequestGenerator4_BASE (DMAMUX1_BASE + 0x0110UL)
2350#define DMAMUX1_RequestGenerator5_BASE (DMAMUX1_BASE + 0x0114UL)
2351#define DMAMUX1_RequestGenerator6_BASE (DMAMUX1_BASE + 0x0118UL)
2352#define DMAMUX1_RequestGenerator7_BASE (DMAMUX1_BASE + 0x011CUL)
2353
2354#define DMAMUX1_ChannelStatus_BASE (DMAMUX1_BASE + 0x0080UL)
2355#define DMAMUX1_RequestGenStatus_BASE (DMAMUX1_BASE + 0x0140UL)
2356
2357/*!< FMC Banks registers base address */
2358#define FMC_Bank1_R_BASE (FMC_R_BASE + 0x0000UL)
2359#define FMC_Bank1E_R_BASE (FMC_R_BASE + 0x0104UL)
2360#define FMC_Bank2_R_BASE (FMC_R_BASE + 0x0060UL)
2361#define FMC_Bank3_R_BASE (FMC_R_BASE + 0x0080UL)
2362#define FMC_Bank5_6_R_BASE (FMC_R_BASE + 0x0140UL)
2363
2364/* Debug MCU registers base address */
2365#define DBGMCU_BASE (0x5C001000UL)
2366
2367#define MDMA_Channel0_BASE (MDMA_BASE + 0x00000040UL)
2368#define MDMA_Channel1_BASE (MDMA_BASE + 0x00000080UL)
2369#define MDMA_Channel2_BASE (MDMA_BASE + 0x000000C0UL)
2370#define MDMA_Channel3_BASE (MDMA_BASE + 0x00000100UL)
2371#define MDMA_Channel4_BASE (MDMA_BASE + 0x00000140UL)
2372#define MDMA_Channel5_BASE (MDMA_BASE + 0x00000180UL)
2373#define MDMA_Channel6_BASE (MDMA_BASE + 0x000001C0UL)
2374#define MDMA_Channel7_BASE (MDMA_BASE + 0x00000200UL)
2375#define MDMA_Channel8_BASE (MDMA_BASE + 0x00000240UL)
2376#define MDMA_Channel9_BASE (MDMA_BASE + 0x00000280UL)
2377#define MDMA_Channel10_BASE (MDMA_BASE + 0x000002C0UL)
2378#define MDMA_Channel11_BASE (MDMA_BASE + 0x00000300UL)
2379#define MDMA_Channel12_BASE (MDMA_BASE + 0x00000340UL)
2380#define MDMA_Channel13_BASE (MDMA_BASE + 0x00000380UL)
2381#define MDMA_Channel14_BASE (MDMA_BASE + 0x000003C0UL)
2382#define MDMA_Channel15_BASE (MDMA_BASE + 0x00000400UL)
2383
2384#define RAMECC1_Monitor1_BASE (RAMECC1_BASE + 0x20UL)
2385#define RAMECC1_Monitor2_BASE (RAMECC1_BASE + 0x40UL)
2386#define RAMECC1_Monitor3_BASE (RAMECC1_BASE + 0x60UL)
2387#define RAMECC1_Monitor4_BASE (RAMECC1_BASE + 0x80UL)
2388#define RAMECC1_Monitor5_BASE (RAMECC1_BASE + 0xA0UL)
2389
2390#define RAMECC2_Monitor1_BASE (RAMECC2_BASE + 0x20UL)
2391#define RAMECC2_Monitor2_BASE (RAMECC2_BASE + 0x40UL)
2392#define RAMECC2_Monitor3_BASE (RAMECC2_BASE + 0x60UL)
2393#define RAMECC2_Monitor4_BASE (RAMECC2_BASE + 0x80UL)
2394#define RAMECC2_Monitor5_BASE (RAMECC2_BASE + 0xA0UL)
2395
2396#define RAMECC3_Monitor1_BASE (RAMECC3_BASE + 0x20UL)
2397#define RAMECC3_Monitor2_BASE (RAMECC3_BASE + 0x40UL)
2398
2399
2400/**
2401 * @}
2402 */
2403
2404/** @addtogroup Peripheral_declaration
2405 * @{
2406 */
2407#define TIM2 ((TIM_TypeDef *) TIM2_BASE)
2408#define TIM3 ((TIM_TypeDef *) TIM3_BASE)
2409#define TIM4 ((TIM_TypeDef *) TIM4_BASE)
2410#define TIM5 ((TIM_TypeDef *) TIM5_BASE)
2411#define TIM6 ((TIM_TypeDef *) TIM6_BASE)
2412#define TIM7 ((TIM_TypeDef *) TIM7_BASE)
2413#define TIM13 ((TIM_TypeDef *) TIM13_BASE)
2414#define TIM14 ((TIM_TypeDef *) TIM14_BASE)
2415#define VREFBUF ((VREFBUF_TypeDef *) VREFBUF_BASE)
2416#define RTC ((RTC_TypeDef *) RTC_BASE)
2417#define WWDG1 ((WWDG_TypeDef *) WWDG1_BASE)
2418
2419#define WWDG2 ((WWDG_TypeDef *) WWDG2_BASE)
2420#define IWDG2 ((IWDG_TypeDef *) IWDG2_BASE)
2421
2422#define IWDG1 ((IWDG_TypeDef *) IWDG1_BASE)
2423#define SPI2 ((SPI_TypeDef *) SPI2_BASE)
2424#define SPI3 ((SPI_TypeDef *) SPI3_BASE)
2425#define SPI4 ((SPI_TypeDef *) SPI4_BASE)
2426#define SPI5 ((SPI_TypeDef *) SPI5_BASE)
2427#define SPI6 ((SPI_TypeDef *) SPI6_BASE)
2428#define USART2 ((USART_TypeDef *) USART2_BASE)
2429#define USART3 ((USART_TypeDef *) USART3_BASE)
2430#define USART6 ((USART_TypeDef *) USART6_BASE)
2431#define UART7 ((USART_TypeDef *) UART7_BASE)
2432#define UART8 ((USART_TypeDef *) UART8_BASE)
2433#define CRS ((CRS_TypeDef *) CRS_BASE)
2434#define UART4 ((USART_TypeDef *) UART4_BASE)
2435#define UART5 ((USART_TypeDef *) UART5_BASE)
2436#define I2C1 ((I2C_TypeDef *) I2C1_BASE)
2437#define I2C2 ((I2C_TypeDef *) I2C2_BASE)
2438#define I2C3 ((I2C_TypeDef *) I2C3_BASE)
2439#define I2C4 ((I2C_TypeDef *) I2C4_BASE)
2440#define FDCAN1 ((FDCAN_GlobalTypeDef *) FDCAN1_BASE)
2441#define FDCAN2 ((FDCAN_GlobalTypeDef *) FDCAN2_BASE)
2442#define FDCAN_CCU ((FDCAN_ClockCalibrationUnit_TypeDef *) FDCAN_CCU_BASE)
2443#define CEC ((CEC_TypeDef *) CEC_BASE)
2444#define LPTIM1 ((LPTIM_TypeDef *) LPTIM1_BASE)
2445#define PWR ((PWR_TypeDef *) PWR_BASE)
2446#define DAC1 ((DAC_TypeDef *) DAC1_BASE)
2447#define LPUART1 ((USART_TypeDef *) LPUART1_BASE)
2448#define SWPMI1 ((SWPMI_TypeDef *) SWPMI1_BASE)
2449#define LPTIM2 ((LPTIM_TypeDef *) LPTIM2_BASE)
2450#define LPTIM3 ((LPTIM_TypeDef *) LPTIM3_BASE)
2451#define LPTIM4 ((LPTIM_TypeDef *) LPTIM4_BASE)
2452#define LPTIM5 ((LPTIM_TypeDef *) LPTIM5_BASE)
2453
2454#define SYSCFG ((SYSCFG_TypeDef *) SYSCFG_BASE)
2455#define COMP12 ((COMPOPT_TypeDef *) COMP12_BASE)
2456#define COMP1 ((COMP_TypeDef *) COMP1_BASE)
2457#define COMP2 ((COMP_TypeDef *) COMP2_BASE)
2458#define COMP12_COMMON ((COMP_Common_TypeDef *) COMP2_BASE)
2459#define OPAMP ((OPAMP_TypeDef *) OPAMP_BASE)
2460#define OPAMP1 ((OPAMP_TypeDef *) OPAMP1_BASE)
2461#define OPAMP2 ((OPAMP_TypeDef *) OPAMP2_BASE)
2462
2463
2464#define EXTI ((EXTI_TypeDef *) EXTI_BASE)
2465#define EXTI_D1 ((EXTI_Core_TypeDef *) EXTI_D1_BASE)
2466#define EXTI_D2 ((EXTI_Core_TypeDef *) EXTI_D2_BASE)
2467#define TIM1 ((TIM_TypeDef *) TIM1_BASE)
2468#define SPI1 ((SPI_TypeDef *) SPI1_BASE)
2469#define TIM8 ((TIM_TypeDef *) TIM8_BASE)
2470#define USART1 ((USART_TypeDef *) USART1_BASE)
2471#define TIM12 ((TIM_TypeDef *) TIM12_BASE)
2472#define TIM15 ((TIM_TypeDef *) TIM15_BASE)
2473#define TIM16 ((TIM_TypeDef *) TIM16_BASE)
2474#define TIM17 ((TIM_TypeDef *) TIM17_BASE)
2475#define HRTIM1 ((HRTIM_TypeDef *) HRTIM1_BASE)
2476#define HRTIM1_TIMA ((HRTIM_Timerx_TypeDef *) HRTIM1_TIMA_BASE)
2477#define HRTIM1_TIMB ((HRTIM_Timerx_TypeDef *) HRTIM1_TIMB_BASE)
2478#define HRTIM1_TIMC ((HRTIM_Timerx_TypeDef *) HRTIM1_TIMC_BASE)
2479#define HRTIM1_TIMD ((HRTIM_Timerx_TypeDef *) HRTIM1_TIMD_BASE)
2480#define HRTIM1_TIME ((HRTIM_Timerx_TypeDef *) HRTIM1_TIME_BASE)
2481#define HRTIM1_COMMON ((HRTIM_Common_TypeDef *) HRTIM1_COMMON_BASE)
2482#define SAI1 ((SAI_TypeDef *) SAI1_BASE)
2483#define SAI1_Block_A ((SAI_Block_TypeDef *)SAI1_Block_A_BASE)
2484#define SAI1_Block_B ((SAI_Block_TypeDef *)SAI1_Block_B_BASE)
2485#define SAI2 ((SAI_TypeDef *) SAI2_BASE)
2486#define SAI2_Block_A ((SAI_Block_TypeDef *)SAI2_Block_A_BASE)
2487#define SAI2_Block_B ((SAI_Block_TypeDef *)SAI2_Block_B_BASE)
2488#define SAI3 ((SAI_TypeDef *) SAI3_BASE)
2489#define SAI3_Block_A ((SAI_Block_TypeDef *)SAI3_Block_A_BASE)
2490#define SAI3_Block_B ((SAI_Block_TypeDef *)SAI3_Block_B_BASE)
2491#define SAI4 ((SAI_TypeDef *) SAI4_BASE)
2492#define SAI4_Block_A ((SAI_Block_TypeDef *)SAI4_Block_A_BASE)
2493#define SAI4_Block_B ((SAI_Block_TypeDef *)SAI4_Block_B_BASE)
2494
2495#define SPDIFRX ((SPDIFRX_TypeDef *) SPDIFRX_BASE)
2496#define DFSDM1_Channel0 ((DFSDM_Channel_TypeDef *) DFSDM1_Channel0_BASE)
2497#define DFSDM1_Channel1 ((DFSDM_Channel_TypeDef *) DFSDM1_Channel1_BASE)
2498#define DFSDM1_Channel2 ((DFSDM_Channel_TypeDef *) DFSDM1_Channel2_BASE)
2499#define DFSDM1_Channel3 ((DFSDM_Channel_TypeDef *) DFSDM1_Channel3_BASE)
2500#define DFSDM1_Channel4 ((DFSDM_Channel_TypeDef *) DFSDM1_Channel4_BASE)
2501#define DFSDM1_Channel5 ((DFSDM_Channel_TypeDef *) DFSDM1_Channel5_BASE)
2502#define DFSDM1_Channel6 ((DFSDM_Channel_TypeDef *) DFSDM1_Channel6_BASE)
2503#define DFSDM1_Channel7 ((DFSDM_Channel_TypeDef *) DFSDM1_Channel7_BASE)
2504#define DFSDM1_Filter0 ((DFSDM_Filter_TypeDef *) DFSDM1_Filter0_BASE)
2505#define DFSDM1_Filter1 ((DFSDM_Filter_TypeDef *) DFSDM1_Filter1_BASE)
2506#define DFSDM1_Filter2 ((DFSDM_Filter_TypeDef *) DFSDM1_Filter2_BASE)
2507#define DFSDM1_Filter3 ((DFSDM_Filter_TypeDef *) DFSDM1_Filter3_BASE)
2508#define DMA2D ((DMA2D_TypeDef *) DMA2D_BASE)
2509#define DCMI ((DCMI_TypeDef *) DCMI_BASE)
2510#define RCC ((RCC_TypeDef *) RCC_BASE)
2511#define RCC_C1 ((RCC_Core_TypeDef *) RCC_C1_BASE)
2512#define RCC_C2 ((RCC_Core_TypeDef *) RCC_C2_BASE)
2513
2514#define ART ((ART_TypeDef *) ART_BASE)
2515#define FLASH ((FLASH_TypeDef *) FLASH_R_BASE)
2516#define CRC ((CRC_TypeDef *) CRC_BASE)
2517
2518#define GPIOA ((GPIO_TypeDef *) GPIOA_BASE)
2519#define GPIOB ((GPIO_TypeDef *) GPIOB_BASE)
2520#define GPIOC ((GPIO_TypeDef *) GPIOC_BASE)
2521#define GPIOD ((GPIO_TypeDef *) GPIOD_BASE)
2522#define GPIOE ((GPIO_TypeDef *) GPIOE_BASE)
2523#define GPIOF ((GPIO_TypeDef *) GPIOF_BASE)
2524#define GPIOG ((GPIO_TypeDef *) GPIOG_BASE)
2525#define GPIOH ((GPIO_TypeDef *) GPIOH_BASE)
2526#define GPIOI ((GPIO_TypeDef *) GPIOI_BASE)
2527#define GPIOJ ((GPIO_TypeDef *) GPIOJ_BASE)
2528#define GPIOK ((GPIO_TypeDef *) GPIOK_BASE)
2529
2530#define ADC1 ((ADC_TypeDef *) ADC1_BASE)
2531#define ADC2 ((ADC_TypeDef *) ADC2_BASE)
2532#define ADC3 ((ADC_TypeDef *) ADC3_BASE)
2533#define ADC3_COMMON ((ADC_Common_TypeDef *) ADC3_COMMON_BASE)
2534#define ADC12_COMMON ((ADC_Common_TypeDef *) ADC12_COMMON_BASE)
2535
2536#define RNG ((RNG_TypeDef *) RNG_BASE)
2537#define SDMMC2 ((SDMMC_TypeDef *) SDMMC2_BASE)
2538#define DLYB_SDMMC2 ((DLYB_TypeDef *) DLYB_SDMMC2_BASE)
2539
2540#define BDMA ((BDMA_TypeDef *) BDMA_BASE)
2541#define BDMA_Channel0 ((BDMA_Channel_TypeDef *) BDMA_Channel0_BASE)
2542#define BDMA_Channel1 ((BDMA_Channel_TypeDef *) BDMA_Channel1_BASE)
2543#define BDMA_Channel2 ((BDMA_Channel_TypeDef *) BDMA_Channel2_BASE)
2544#define BDMA_Channel3 ((BDMA_Channel_TypeDef *) BDMA_Channel3_BASE)
2545#define BDMA_Channel4 ((BDMA_Channel_TypeDef *) BDMA_Channel4_BASE)
2546#define BDMA_Channel5 ((BDMA_Channel_TypeDef *) BDMA_Channel5_BASE)
2547#define BDMA_Channel6 ((BDMA_Channel_TypeDef *) BDMA_Channel6_BASE)
2548#define BDMA_Channel7 ((BDMA_Channel_TypeDef *) BDMA_Channel7_BASE)
2549
2550#define RAMECC1 ((RAMECC_TypeDef *)RAMECC1_BASE)
2551#define RAMECC1_Monitor1 ((RAMECC_MonitorTypeDef *)RAMECC1_Monitor1_BASE)
2552#define RAMECC1_Monitor2 ((RAMECC_MonitorTypeDef *)RAMECC1_Monitor2_BASE)
2553#define RAMECC1_Monitor3 ((RAMECC_MonitorTypeDef *)RAMECC1_Monitor3_BASE)
2554#define RAMECC1_Monitor4 ((RAMECC_MonitorTypeDef *)RAMECC1_Monitor4_BASE)
2555#define RAMECC1_Monitor5 ((RAMECC_MonitorTypeDef *)RAMECC1_Monitor5_BASE)
2556
2557#define RAMECC2 ((RAMECC_TypeDef *)RAMECC2_BASE)
2558#define RAMECC2_Monitor1 ((RAMECC_MonitorTypeDef *)RAMECC2_Monitor1_BASE)
2559#define RAMECC2_Monitor2 ((RAMECC_MonitorTypeDef *)RAMECC2_Monitor2_BASE)
2560#define RAMECC2_Monitor3 ((RAMECC_MonitorTypeDef *)RAMECC2_Monitor3_BASE)
2561#define RAMECC2_Monitor4 ((RAMECC_MonitorTypeDef *)RAMECC2_Monitor4_BASE)
2562#define RAMECC2_Monitor5 ((RAMECC_MonitorTypeDef *)RAMECC2_Monitor5_BASE)
2563
2564#define RAMECC3 ((RAMECC_TypeDef *)RAMECC3_BASE)
2565#define RAMECC3_Monitor1 ((RAMECC_MonitorTypeDef *)RAMECC3_Monitor1_BASE)
2566#define RAMECC3_Monitor2 ((RAMECC_MonitorTypeDef *)RAMECC3_Monitor2_BASE)
2567
2568#define DMAMUX2 ((DMAMUX_Channel_TypeDef *) DMAMUX2_BASE)
2569#define DMAMUX2_Channel0 ((DMAMUX_Channel_TypeDef *) DMAMUX2_Channel0_BASE)
2570#define DMAMUX2_Channel1 ((DMAMUX_Channel_TypeDef *) DMAMUX2_Channel1_BASE)
2571#define DMAMUX2_Channel2 ((DMAMUX_Channel_TypeDef *) DMAMUX2_Channel2_BASE)
2572#define DMAMUX2_Channel3 ((DMAMUX_Channel_TypeDef *) DMAMUX2_Channel3_BASE)
2573#define DMAMUX2_Channel4 ((DMAMUX_Channel_TypeDef *) DMAMUX2_Channel4_BASE)
2574#define DMAMUX2_Channel5 ((DMAMUX_Channel_TypeDef *) DMAMUX2_Channel5_BASE)
2575#define DMAMUX2_Channel6 ((DMAMUX_Channel_TypeDef *) DMAMUX2_Channel6_BASE)
2576#define DMAMUX2_Channel7 ((DMAMUX_Channel_TypeDef *) DMAMUX2_Channel7_BASE)
2577
2578
2579#define DMAMUX2_RequestGenerator0 ((DMAMUX_RequestGen_TypeDef *) DMAMUX2_RequestGenerator0_BASE)
2580#define DMAMUX2_RequestGenerator1 ((DMAMUX_RequestGen_TypeDef *) DMAMUX2_RequestGenerator1_BASE)
2581#define DMAMUX2_RequestGenerator2 ((DMAMUX_RequestGen_TypeDef *) DMAMUX2_RequestGenerator2_BASE)
2582#define DMAMUX2_RequestGenerator3 ((DMAMUX_RequestGen_TypeDef *) DMAMUX2_RequestGenerator3_BASE)
2583#define DMAMUX2_RequestGenerator4 ((DMAMUX_RequestGen_TypeDef *) DMAMUX2_RequestGenerator4_BASE)
2584#define DMAMUX2_RequestGenerator5 ((DMAMUX_RequestGen_TypeDef *) DMAMUX2_RequestGenerator5_BASE)
2585#define DMAMUX2_RequestGenerator6 ((DMAMUX_RequestGen_TypeDef *) DMAMUX2_RequestGenerator6_BASE)
2586#define DMAMUX2_RequestGenerator7 ((DMAMUX_RequestGen_TypeDef *) DMAMUX2_RequestGenerator7_BASE)
2587
2588#define DMAMUX2_ChannelStatus ((DMAMUX_ChannelStatus_TypeDef *) DMAMUX2_ChannelStatus_BASE)
2589#define DMAMUX2_RequestGenStatus ((DMAMUX_RequestGenStatus_TypeDef *) DMAMUX2_RequestGenStatus_BASE)
2590
2591#define DMA2 ((DMA_TypeDef *) DMA2_BASE)
2592#define DMA2_Stream0 ((DMA_Stream_TypeDef *) DMA2_Stream0_BASE)
2593#define DMA2_Stream1 ((DMA_Stream_TypeDef *) DMA2_Stream1_BASE)
2594#define DMA2_Stream2 ((DMA_Stream_TypeDef *) DMA2_Stream2_BASE)
2595#define DMA2_Stream3 ((DMA_Stream_TypeDef *) DMA2_Stream3_BASE)
2596#define DMA2_Stream4 ((DMA_Stream_TypeDef *) DMA2_Stream4_BASE)
2597#define DMA2_Stream5 ((DMA_Stream_TypeDef *) DMA2_Stream5_BASE)
2598#define DMA2_Stream6 ((DMA_Stream_TypeDef *) DMA2_Stream6_BASE)
2599#define DMA2_Stream7 ((DMA_Stream_TypeDef *) DMA2_Stream7_BASE)
2600
2601#define DMA1 ((DMA_TypeDef *) DMA1_BASE)
2602#define DMA1_Stream0 ((DMA_Stream_TypeDef *) DMA1_Stream0_BASE)
2603#define DMA1_Stream1 ((DMA_Stream_TypeDef *) DMA1_Stream1_BASE)
2604#define DMA1_Stream2 ((DMA_Stream_TypeDef *) DMA1_Stream2_BASE)
2605#define DMA1_Stream3 ((DMA_Stream_TypeDef *) DMA1_Stream3_BASE)
2606#define DMA1_Stream4 ((DMA_Stream_TypeDef *) DMA1_Stream4_BASE)
2607#define DMA1_Stream5 ((DMA_Stream_TypeDef *) DMA1_Stream5_BASE)
2608#define DMA1_Stream6 ((DMA_Stream_TypeDef *) DMA1_Stream6_BASE)
2609#define DMA1_Stream7 ((DMA_Stream_TypeDef *) DMA1_Stream7_BASE)
2610
2611
2612#define DMAMUX1 ((DMAMUX_Channel_TypeDef *) DMAMUX1_BASE)
2613#define DMAMUX1_Channel0 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel0_BASE)
2614#define DMAMUX1_Channel1 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel1_BASE)
2615#define DMAMUX1_Channel2 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel2_BASE)
2616#define DMAMUX1_Channel3 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel3_BASE)
2617#define DMAMUX1_Channel4 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel4_BASE)
2618#define DMAMUX1_Channel5 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel5_BASE)
2619#define DMAMUX1_Channel6 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel6_BASE)
2620#define DMAMUX1_Channel7 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel7_BASE)
2621#define DMAMUX1_Channel8 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel8_BASE)
2622#define DMAMUX1_Channel9 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel9_BASE)
2623#define DMAMUX1_Channel10 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel10_BASE)
2624#define DMAMUX1_Channel11 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel11_BASE)
2625#define DMAMUX1_Channel12 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel12_BASE)
2626#define DMAMUX1_Channel13 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel13_BASE)
2627#define DMAMUX1_Channel14 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel14_BASE)
2628#define DMAMUX1_Channel15 ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel15_BASE)
2629
2630#define DMAMUX1_RequestGenerator0 ((DMAMUX_RequestGen_TypeDef *) DMAMUX1_RequestGenerator0_BASE)
2631#define DMAMUX1_RequestGenerator1 ((DMAMUX_RequestGen_TypeDef *) DMAMUX1_RequestGenerator1_BASE)
2632#define DMAMUX1_RequestGenerator2 ((DMAMUX_RequestGen_TypeDef *) DMAMUX1_RequestGenerator2_BASE)
2633#define DMAMUX1_RequestGenerator3 ((DMAMUX_RequestGen_TypeDef *) DMAMUX1_RequestGenerator3_BASE)
2634#define DMAMUX1_RequestGenerator4 ((DMAMUX_RequestGen_TypeDef *) DMAMUX1_RequestGenerator4_BASE)
2635#define DMAMUX1_RequestGenerator5 ((DMAMUX_RequestGen_TypeDef *) DMAMUX1_RequestGenerator5_BASE)
2636#define DMAMUX1_RequestGenerator6 ((DMAMUX_RequestGen_TypeDef *) DMAMUX1_RequestGenerator6_BASE)
2637#define DMAMUX1_RequestGenerator7 ((DMAMUX_RequestGen_TypeDef *) DMAMUX1_RequestGenerator7_BASE)
2638
2639#define DMAMUX1_ChannelStatus ((DMAMUX_ChannelStatus_TypeDef *) DMAMUX1_ChannelStatus_BASE)
2640#define DMAMUX1_RequestGenStatus ((DMAMUX_RequestGenStatus_TypeDef *) DMAMUX1_RequestGenStatus_BASE)
2641
2642
2643#define FMC_Bank1_R ((FMC_Bank1_TypeDef *) FMC_Bank1_R_BASE)
2644#define FMC_Bank1E_R ((FMC_Bank1E_TypeDef *) FMC_Bank1E_R_BASE)
2645#define FMC_Bank2_R ((FMC_Bank2_TypeDef *) FMC_Bank2_R_BASE)
2646#define FMC_Bank3_R ((FMC_Bank3_TypeDef *) FMC_Bank3_R_BASE)
2647#define FMC_Bank5_6_R ((FMC_Bank5_6_TypeDef *) FMC_Bank5_6_R_BASE)
2648
2649
2650#define QUADSPI ((QUADSPI_TypeDef *) QSPI_R_BASE)
2651#define DLYB_QUADSPI ((DLYB_TypeDef *) DLYB_QSPI_BASE)
2652#define SDMMC1 ((SDMMC_TypeDef *) SDMMC1_BASE)
2653#define DLYB_SDMMC1 ((DLYB_TypeDef *) DLYB_SDMMC1_BASE)
2654
2655#define DBGMCU ((DBGMCU_TypeDef *) DBGMCU_BASE)
2656
2657#define JPEG ((JPEG_TypeDef *) JPGDEC_BASE)
2658#define HSEM ((HSEM_TypeDef *) HSEM_BASE)
2659#if defined(CORE_CM4)
2660#define HSEM_COMMON ((HSEM_Common_TypeDef *) (HSEM_BASE + 0x110UL))
2661#else /* CORE_CM7 */
2662#define HSEM_COMMON ((HSEM_Common_TypeDef *) (HSEM_BASE + 0x100UL))
2663#endif /* CORE_CM4 */
2664
2665#define LTDC ((LTDC_TypeDef *)LTDC_BASE)
2666#define LTDC_Layer1 ((LTDC_Layer_TypeDef *)LTDC_Layer1_BASE)
2667#define LTDC_Layer2 ((LTDC_Layer_TypeDef *)LTDC_Layer2_BASE)
2668
2669#define MDIOS ((MDIOS_TypeDef *) MDIOS_BASE)
2670
2671#define ETH ((ETH_TypeDef *)ETH_BASE)
2672#define MDMA ((MDMA_TypeDef *)MDMA_BASE)
2673#define MDMA_Channel0 ((MDMA_Channel_TypeDef *)MDMA_Channel0_BASE)
2674#define MDMA_Channel1 ((MDMA_Channel_TypeDef *)MDMA_Channel1_BASE)
2675#define MDMA_Channel2 ((MDMA_Channel_TypeDef *)MDMA_Channel2_BASE)
2676#define MDMA_Channel3 ((MDMA_Channel_TypeDef *)MDMA_Channel3_BASE)
2677#define MDMA_Channel4 ((MDMA_Channel_TypeDef *)MDMA_Channel4_BASE)
2678#define MDMA_Channel5 ((MDMA_Channel_TypeDef *)MDMA_Channel5_BASE)
2679#define MDMA_Channel6 ((MDMA_Channel_TypeDef *)MDMA_Channel6_BASE)
2680#define MDMA_Channel7 ((MDMA_Channel_TypeDef *)MDMA_Channel7_BASE)
2681#define MDMA_Channel8 ((MDMA_Channel_TypeDef *)MDMA_Channel8_BASE)
2682#define MDMA_Channel9 ((MDMA_Channel_TypeDef *)MDMA_Channel9_BASE)
2683#define MDMA_Channel10 ((MDMA_Channel_TypeDef *)MDMA_Channel10_BASE)
2684#define MDMA_Channel11 ((MDMA_Channel_TypeDef *)MDMA_Channel11_BASE)
2685#define MDMA_Channel12 ((MDMA_Channel_TypeDef *)MDMA_Channel12_BASE)
2686#define MDMA_Channel13 ((MDMA_Channel_TypeDef *)MDMA_Channel13_BASE)
2687#define MDMA_Channel14 ((MDMA_Channel_TypeDef *)MDMA_Channel14_BASE)
2688#define MDMA_Channel15 ((MDMA_Channel_TypeDef *)MDMA_Channel15_BASE)
2689
2690
2691#define USB1_OTG_HS ((USB_OTG_GlobalTypeDef *) USB1_OTG_HS_PERIPH_BASE)
2692#define USB2_OTG_FS ((USB_OTG_GlobalTypeDef *) USB2_OTG_FS_PERIPH_BASE)
2693
2694/* Legacy defines */
2695#define USB_OTG_HS USB1_OTG_HS
2696#define USB_OTG_HS_PERIPH_BASE USB1_OTG_HS_PERIPH_BASE
2697#define USB_OTG_FS USB2_OTG_FS
2698#define USB_OTG_FS_PERIPH_BASE USB2_OTG_FS_PERIPH_BASE
2699
2700/**
2701 * @}
2702 */
2703
2704/** @addtogroup Exported_constants
2705 * @{
2706 */
2707
2708 /** @addtogroup Peripheral_Registers_Bits_Definition
2709 * @{
2710 */
2711
2712/******************************************************************************/
2713/* Peripheral Registers_Bits_Definition */
2714/******************************************************************************/
2715
2716/******************************************************************************/
2717/* */
2718/* Analog to Digital Converter */
2719/* */
2720/******************************************************************************/
2721/******************************* ADC VERSION ********************************/
2722#define ADC_VER_V5_X
2723/******************** Bit definition for ADC_ISR register ********************/
2724#define ADC_ISR_ADRDY_Pos (0U)
2725#define ADC_ISR_ADRDY_Msk (0x1UL << ADC_ISR_ADRDY_Pos) /*!< 0x00000001 */
2726#define ADC_ISR_ADRDY ADC_ISR_ADRDY_Msk /*!< ADC Ready (ADRDY) flag */
2727#define ADC_ISR_EOSMP_Pos (1U)
2728#define ADC_ISR_EOSMP_Msk (0x1UL << ADC_ISR_EOSMP_Pos) /*!< 0x00000002 */
2729#define ADC_ISR_EOSMP ADC_ISR_EOSMP_Msk /*!< ADC End of Sampling flag */
2730#define ADC_ISR_EOC_Pos (2U)
2731#define ADC_ISR_EOC_Msk (0x1UL << ADC_ISR_EOC_Pos) /*!< 0x00000004 */
2732#define ADC_ISR_EOC ADC_ISR_EOC_Msk /*!< ADC End of Regular Conversion flag */
2733#define ADC_ISR_EOS_Pos (3U)
2734#define ADC_ISR_EOS_Msk (0x1UL << ADC_ISR_EOS_Pos) /*!< 0x00000008 */
2735#define ADC_ISR_EOS ADC_ISR_EOS_Msk /*!< ADC End of Regular sequence of Conversions flag */
2736#define ADC_ISR_OVR_Pos (4U)
2737#define ADC_ISR_OVR_Msk (0x1UL << ADC_ISR_OVR_Pos) /*!< 0x00000010 */
2738#define ADC_ISR_OVR ADC_ISR_OVR_Msk /*!< ADC overrun flag */
2739#define ADC_ISR_JEOC_Pos (5U)
2740#define ADC_ISR_JEOC_Msk (0x1UL << ADC_ISR_JEOC_Pos) /*!< 0x00000020 */
2741#define ADC_ISR_JEOC ADC_ISR_JEOC_Msk /*!< ADC End of Injected Conversion flag */
2742#define ADC_ISR_JEOS_Pos (6U)
2743#define ADC_ISR_JEOS_Msk (0x1UL << ADC_ISR_JEOS_Pos) /*!< 0x00000040 */
2744#define ADC_ISR_JEOS ADC_ISR_JEOS_Msk /*!< ADC End of Injected sequence of Conversions flag */
2745#define ADC_ISR_AWD1_Pos (7U)
2746#define ADC_ISR_AWD1_Msk (0x1UL << ADC_ISR_AWD1_Pos) /*!< 0x00000080 */
2747#define ADC_ISR_AWD1 ADC_ISR_AWD1_Msk /*!< ADC Analog watchdog 1 flag */
2748#define ADC_ISR_AWD2_Pos (8U)
2749#define ADC_ISR_AWD2_Msk (0x1UL << ADC_ISR_AWD2_Pos) /*!< 0x00000100 */
2750#define ADC_ISR_AWD2 ADC_ISR_AWD2_Msk /*!< ADC Analog watchdog 2 flag */
2751#define ADC_ISR_AWD3_Pos (9U)
2752#define ADC_ISR_AWD3_Msk (0x1UL << ADC_ISR_AWD3_Pos) /*!< 0x00000200 */
2753#define ADC_ISR_AWD3 ADC_ISR_AWD3_Msk /*!< ADC Analog watchdog 3 flag */
2754#define ADC_ISR_JQOVF_Pos (10U)
2755#define ADC_ISR_JQOVF_Msk (0x1UL << ADC_ISR_JQOVF_Pos) /*!< 0x00000400 */
2756#define ADC_ISR_JQOVF ADC_ISR_JQOVF_Msk /*!< ADC Injected Context Queue Overflow flag */
2757
2758/******************** Bit definition for ADC_IER register ********************/
2759#define ADC_IER_ADRDYIE_Pos (0U)
2760#define ADC_IER_ADRDYIE_Msk (0x1UL << ADC_IER_ADRDYIE_Pos) /*!< 0x00000001 */
2761#define ADC_IER_ADRDYIE ADC_IER_ADRDYIE_Msk /*!< ADC Ready (ADRDY) interrupt source */
2762#define ADC_IER_EOSMPIE_Pos (1U)
2763#define ADC_IER_EOSMPIE_Msk (0x1UL << ADC_IER_EOSMPIE_Pos) /*!< 0x00000002 */
2764#define ADC_IER_EOSMPIE ADC_IER_EOSMPIE_Msk /*!< ADC End of Sampling interrupt source */
2765#define ADC_IER_EOCIE_Pos (2U)
2766#define ADC_IER_EOCIE_Msk (0x1UL << ADC_IER_EOCIE_Pos) /*!< 0x00000004 */
2767#define ADC_IER_EOCIE ADC_IER_EOCIE_Msk /*!< ADC End of Regular Conversion interrupt source */
2768#define ADC_IER_EOSIE_Pos (3U)
2769#define ADC_IER_EOSIE_Msk (0x1UL << ADC_IER_EOSIE_Pos) /*!< 0x00000008 */
2770#define ADC_IER_EOSIE ADC_IER_EOSIE_Msk /*!< ADC End of Regular sequence of Conversions interrupt source */
2771#define ADC_IER_OVRIE_Pos (4U)
2772#define ADC_IER_OVRIE_Msk (0x1UL << ADC_IER_OVRIE_Pos) /*!< 0x00000010 */
2773#define ADC_IER_OVRIE ADC_IER_OVRIE_Msk /*!< ADC overrun interrupt source */
2774#define ADC_IER_JEOCIE_Pos (5U)
2775#define ADC_IER_JEOCIE_Msk (0x1UL << ADC_IER_JEOCIE_Pos) /*!< 0x00000020 */
2776#define ADC_IER_JEOCIE ADC_IER_JEOCIE_Msk /*!< ADC End of Injected Conversion interrupt source */
2777#define ADC_IER_JEOSIE_Pos (6U)
2778#define ADC_IER_JEOSIE_Msk (0x1UL << ADC_IER_JEOSIE_Pos) /*!< 0x00000040 */
2779#define ADC_IER_JEOSIE ADC_IER_JEOSIE_Msk /*!< ADC End of Injected sequence of Conversions interrupt source */
2780#define ADC_IER_AWD1IE_Pos (7U)
2781#define ADC_IER_AWD1IE_Msk (0x1UL << ADC_IER_AWD1IE_Pos) /*!< 0x00000080 */
2782#define ADC_IER_AWD1IE ADC_IER_AWD1IE_Msk /*!< ADC Analog watchdog 1 interrupt source */
2783#define ADC_IER_AWD2IE_Pos (8U)
2784#define ADC_IER_AWD2IE_Msk (0x1UL << ADC_IER_AWD2IE_Pos) /*!< 0x00000100 */
2785#define ADC_IER_AWD2IE ADC_IER_AWD2IE_Msk /*!< ADC Analog watchdog 2 interrupt source */
2786#define ADC_IER_AWD3IE_Pos (9U)
2787#define ADC_IER_AWD3IE_Msk (0x1UL << ADC_IER_AWD3IE_Pos) /*!< 0x00000200 */
2788#define ADC_IER_AWD3IE ADC_IER_AWD3IE_Msk /*!< ADC Analog watchdog 3 interrupt source */
2789#define ADC_IER_JQOVFIE_Pos (10U)
2790#define ADC_IER_JQOVFIE_Msk (0x1UL << ADC_IER_JQOVFIE_Pos) /*!< 0x00000400 */
2791#define ADC_IER_JQOVFIE ADC_IER_JQOVFIE_Msk /*!< ADC Injected Context Queue Overflow interrupt source */
2792
2793/******************** Bit definition for ADC_CR register ********************/
2794#define ADC_CR_ADEN_Pos (0U)
2795#define ADC_CR_ADEN_Msk (0x1UL << ADC_CR_ADEN_Pos) /*!< 0x00000001 */
2796#define ADC_CR_ADEN ADC_CR_ADEN_Msk /*!< ADC Enable control */
2797#define ADC_CR_ADDIS_Pos (1U)
2798#define ADC_CR_ADDIS_Msk (0x1UL << ADC_CR_ADDIS_Pos) /*!< 0x00000002 */
2799#define ADC_CR_ADDIS ADC_CR_ADDIS_Msk /*!< ADC Disable command */
2800#define ADC_CR_ADSTART_Pos (2U)
2801#define ADC_CR_ADSTART_Msk (0x1UL << ADC_CR_ADSTART_Pos) /*!< 0x00000004 */
2802#define ADC_CR_ADSTART ADC_CR_ADSTART_Msk /*!< ADC Start of Regular conversion */
2803#define ADC_CR_JADSTART_Pos (3U)
2804#define ADC_CR_JADSTART_Msk (0x1UL << ADC_CR_JADSTART_Pos) /*!< 0x00000008 */
2805#define ADC_CR_JADSTART ADC_CR_JADSTART_Msk /*!< ADC Start of injected conversion */
2806#define ADC_CR_ADSTP_Pos (4U)
2807#define ADC_CR_ADSTP_Msk (0x1UL << ADC_CR_ADSTP_Pos) /*!< 0x00000010 */
2808#define ADC_CR_ADSTP ADC_CR_ADSTP_Msk /*!< ADC Stop of Regular conversion */
2809#define ADC_CR_JADSTP_Pos (5U)
2810#define ADC_CR_JADSTP_Msk (0x1UL << ADC_CR_JADSTP_Pos) /*!< 0x00000020 */
2811#define ADC_CR_JADSTP ADC_CR_JADSTP_Msk /*!< ADC Stop of injected conversion */
2812#define ADC_CR_BOOST_Pos (8U)
2813#define ADC_CR_BOOST_Msk (0x3UL << ADC_CR_BOOST_Pos) /*!< 0x00000300 */
2814#define ADC_CR_BOOST ADC_CR_BOOST_Msk /*!< ADC Boost Mode configuration */
2815#define ADC_CR_BOOST_0 (0x1UL << ADC_CR_BOOST_Pos) /*!< 0x00000100 */
2816#define ADC_CR_BOOST_1 (0x2UL << ADC_CR_BOOST_Pos) /*!< 0x00000200 */
2817#define ADC_CR_ADCALLIN_Pos (16U)
2818#define ADC_CR_ADCALLIN_Msk (0x1UL << ADC_CR_ADCALLIN_Pos) /*!< 0x00010000 */
2819#define ADC_CR_ADCALLIN ADC_CR_ADCALLIN_Msk /*!< ADC Linearity calibration */
2820#define ADC_CR_LINCALRDYW1_Pos (22U)
2821#define ADC_CR_LINCALRDYW1_Msk (0x1UL << ADC_CR_LINCALRDYW1_Pos) /*!< 0x00400000 */
2822#define ADC_CR_LINCALRDYW1 ADC_CR_LINCALRDYW1_Msk /*!< ADC Linearity calibration ready Word 1 */
2823#define ADC_CR_LINCALRDYW2_Pos (23U)
2824#define ADC_CR_LINCALRDYW2_Msk (0x1UL << ADC_CR_LINCALRDYW2_Pos) /*!< 0x00800000 */
2825#define ADC_CR_LINCALRDYW2 ADC_CR_LINCALRDYW2_Msk /*!< ADC Linearity calibration ready Word 2 */
2826#define ADC_CR_LINCALRDYW3_Pos (24U)
2827#define ADC_CR_LINCALRDYW3_Msk (0x1UL << ADC_CR_LINCALRDYW3_Pos) /*!< 0x01000000 */
2828#define ADC_CR_LINCALRDYW3 ADC_CR_LINCALRDYW3_Msk /*!< ADC Linearity calibration ready Word 3 */
2829#define ADC_CR_LINCALRDYW4_Pos (25U)
2830#define ADC_CR_LINCALRDYW4_Msk (0x1UL << ADC_CR_LINCALRDYW4_Pos) /*!< 0x02000000 */
2831#define ADC_CR_LINCALRDYW4 ADC_CR_LINCALRDYW4_Msk /*!< ADC Linearity calibration ready Word 4 */
2832#define ADC_CR_LINCALRDYW5_Pos (26U)
2833#define ADC_CR_LINCALRDYW5_Msk (0x1UL << ADC_CR_LINCALRDYW5_Pos) /*!< 0x04000000 */
2834#define ADC_CR_LINCALRDYW5 ADC_CR_LINCALRDYW5_Msk /*!< ADC Linearity calibration ready Word 5 */
2835#define ADC_CR_LINCALRDYW6_Pos (27U)
2836#define ADC_CR_LINCALRDYW6_Msk (0x1UL << ADC_CR_LINCALRDYW6_Pos) /*!< 0x08000000 */
2837#define ADC_CR_LINCALRDYW6 ADC_CR_LINCALRDYW6_Msk /*!< ADC Linearity calibration ready Word 6 */
2838#define ADC_CR_ADVREGEN_Pos (28U)
2839#define ADC_CR_ADVREGEN_Msk (0x1UL << ADC_CR_ADVREGEN_Pos) /*!< 0x10000000 */
2840#define ADC_CR_ADVREGEN ADC_CR_ADVREGEN_Msk /*!< ADC Voltage regulator Enable */
2841#define ADC_CR_DEEPPWD_Pos (29U)
2842#define ADC_CR_DEEPPWD_Msk (0x1UL << ADC_CR_DEEPPWD_Pos) /*!< 0x20000000 */
2843#define ADC_CR_DEEPPWD ADC_CR_DEEPPWD_Msk /*!< ADC Deep power down Enable */
2844#define ADC_CR_ADCALDIF_Pos (30U)
2845#define ADC_CR_ADCALDIF_Msk (0x1UL << ADC_CR_ADCALDIF_Pos) /*!< 0x40000000 */
2846#define ADC_CR_ADCALDIF ADC_CR_ADCALDIF_Msk /*!< ADC Differential Mode for calibration */
2847#define ADC_CR_ADCAL_Pos (31U)
2848#define ADC_CR_ADCAL_Msk (0x1UL << ADC_CR_ADCAL_Pos) /*!< 0x80000000 */
2849#define ADC_CR_ADCAL ADC_CR_ADCAL_Msk /*!< ADC Calibration */
2850
2851/******************** Bit definition for ADC_CFGR register ********************/
2852#define ADC_CFGR_DMNGT_Pos (0U)
2853#define ADC_CFGR_DMNGT_Msk (0x3UL << ADC_CFGR_DMNGT_Pos) /*!< 0x00000003 */
2854#define ADC_CFGR_DMNGT ADC_CFGR_DMNGT_Msk /*!< ADC Data Management configuration */
2855#define ADC_CFGR_DMNGT_0 (0x1UL << ADC_CFGR_DMNGT_Pos) /*!< 0x00000001 */
2856#define ADC_CFGR_DMNGT_1 (0x2UL << ADC_CFGR_DMNGT_Pos) /*!< 0x00000002 */
2857
2858#define ADC_CFGR_RES_Pos (2U)
2859#define ADC_CFGR_RES_Msk (0x7UL << ADC_CFGR_RES_Pos) /*!< 0x0000001C */
2860#define ADC_CFGR_RES ADC_CFGR_RES_Msk /*!< ADC Data resolution */
2861#define ADC_CFGR_RES_0 (0x1UL << ADC_CFGR_RES_Pos) /*!< 0x00000004 */
2862#define ADC_CFGR_RES_1 (0x2UL << ADC_CFGR_RES_Pos) /*!< 0x00000008 */
2863#define ADC_CFGR_RES_2 (0x4UL << ADC_CFGR_RES_Pos) /*!< 0x00000010 */
2864
2865#define ADC_CFGR_EXTSEL_Pos (5U)
2866#define ADC_CFGR_EXTSEL_Msk (0x1FUL << ADC_CFGR_EXTSEL_Pos) /*!< 0x000003E0 */
2867#define ADC_CFGR_EXTSEL ADC_CFGR_EXTSEL_Msk /*!< ADC External trigger selection for regular group */
2868#define ADC_CFGR_EXTSEL_0 (0x01UL << ADC_CFGR_EXTSEL_Pos) /*!< 0x00000020 */
2869#define ADC_CFGR_EXTSEL_1 (0x02UL << ADC_CFGR_EXTSEL_Pos) /*!< 0x00000040 */
2870#define ADC_CFGR_EXTSEL_2 (0x04UL << ADC_CFGR_EXTSEL_Pos) /*!< 0x00000080 */
2871#define ADC_CFGR_EXTSEL_3 (0x08UL << ADC_CFGR_EXTSEL_Pos) /*!< 0x00000100 */
2872#define ADC_CFGR_EXTSEL_4 (0x10UL << ADC_CFGR_EXTSEL_Pos) /*!< 0x00000200 */
2873
2874#define ADC_CFGR_EXTEN_Pos (10U)
2875#define ADC_CFGR_EXTEN_Msk (0x3UL << ADC_CFGR_EXTEN_Pos) /*!< 0x00000C00 */
2876#define ADC_CFGR_EXTEN ADC_CFGR_EXTEN_Msk /*!< ADC External trigger enable and polarity selection for regular channels */
2877#define ADC_CFGR_EXTEN_0 (0x1UL << ADC_CFGR_EXTEN_Pos) /*!< 0x00000400 */
2878#define ADC_CFGR_EXTEN_1 (0x2UL << ADC_CFGR_EXTEN_Pos) /*!< 0x00000800 */
2879
2880#define ADC_CFGR_OVRMOD_Pos (12U)
2881#define ADC_CFGR_OVRMOD_Msk (0x1UL << ADC_CFGR_OVRMOD_Pos) /*!< 0x00001000 */
2882#define ADC_CFGR_OVRMOD ADC_CFGR_OVRMOD_Msk /*!< ADC overrun mode */
2883#define ADC_CFGR_CONT_Pos (13U)
2884#define ADC_CFGR_CONT_Msk (0x1UL << ADC_CFGR_CONT_Pos) /*!< 0x00002000 */
2885#define ADC_CFGR_CONT ADC_CFGR_CONT_Msk /*!< ADC Single/continuous conversion mode for regular conversion */
2886#define ADC_CFGR_AUTDLY_Pos (14U)
2887#define ADC_CFGR_AUTDLY_Msk (0x1UL << ADC_CFGR_AUTDLY_Pos) /*!< 0x00004000 */
2888#define ADC_CFGR_AUTDLY ADC_CFGR_AUTDLY_Msk /*!< ADC Delayed conversion mode */
2889
2890#define ADC_CFGR_DISCEN_Pos (16U)
2891#define ADC_CFGR_DISCEN_Msk (0x1UL << ADC_CFGR_DISCEN_Pos) /*!< 0x00010000 */
2892#define ADC_CFGR_DISCEN ADC_CFGR_DISCEN_Msk /*!< ADC Discontinuous mode for regular channels */
2893
2894#define ADC_CFGR_DISCNUM_Pos (17U)
2895#define ADC_CFGR_DISCNUM_Msk (0x7UL << ADC_CFGR_DISCNUM_Pos) /*!< 0x000E0000 */
2896#define ADC_CFGR_DISCNUM ADC_CFGR_DISCNUM_Msk /*!< ADC Discontinuous mode channel count */
2897#define ADC_CFGR_DISCNUM_0 (0x1UL << ADC_CFGR_DISCNUM_Pos) /*!< 0x00020000 */
2898#define ADC_CFGR_DISCNUM_1 (0x2UL << ADC_CFGR_DISCNUM_Pos) /*!< 0x00040000 */
2899#define ADC_CFGR_DISCNUM_2 (0x4UL << ADC_CFGR_DISCNUM_Pos) /*!< 0x00080000 */
2900
2901#define ADC_CFGR_JDISCEN_Pos (20U)
2902#define ADC_CFGR_JDISCEN_Msk (0x1UL << ADC_CFGR_JDISCEN_Pos) /*!< 0x00100000 */
2903#define ADC_CFGR_JDISCEN ADC_CFGR_JDISCEN_Msk /*!< ADC Discontinuous mode on injected channels */
2904#define ADC_CFGR_JQM_Pos (21U)
2905#define ADC_CFGR_JQM_Msk (0x1UL << ADC_CFGR_JQM_Pos) /*!< 0x00200000 */
2906#define ADC_CFGR_JQM ADC_CFGR_JQM_Msk /*!< ADC JSQR Queue mode */
2907#define ADC_CFGR_AWD1SGL_Pos (22U)
2908#define ADC_CFGR_AWD1SGL_Msk (0x1UL << ADC_CFGR_AWD1SGL_Pos) /*!< 0x00400000 */
2909#define ADC_CFGR_AWD1SGL ADC_CFGR_AWD1SGL_Msk /*!< Enable the watchdog 1 on a single channel or on all channels */
2910#define ADC_CFGR_AWD1EN_Pos (23U)
2911#define ADC_CFGR_AWD1EN_Msk (0x1UL << ADC_CFGR_AWD1EN_Pos) /*!< 0x00800000 */
2912#define ADC_CFGR_AWD1EN ADC_CFGR_AWD1EN_Msk /*!< ADC Analog watchdog 1 enable on regular Channels */
2913#define ADC_CFGR_JAWD1EN_Pos (24U)
2914#define ADC_CFGR_JAWD1EN_Msk (0x1UL << ADC_CFGR_JAWD1EN_Pos) /*!< 0x01000000 */
2915#define ADC_CFGR_JAWD1EN ADC_CFGR_JAWD1EN_Msk /*!< ADC Analog watchdog 1 enable on injected Channels */
2916#define ADC_CFGR_JAUTO_Pos (25U)
2917#define ADC_CFGR_JAUTO_Msk (0x1UL << ADC_CFGR_JAUTO_Pos) /*!< 0x02000000 */
2918#define ADC_CFGR_JAUTO ADC_CFGR_JAUTO_Msk /*!< ADC Automatic injected group conversion */
2919
2920#define ADC_CFGR_AWD1CH_Pos (26U)
2921#define ADC_CFGR_AWD1CH_Msk (0x1FUL << ADC_CFGR_AWD1CH_Pos) /*!< 0x7C000000 */
2922#define ADC_CFGR_AWD1CH ADC_CFGR_AWD1CH_Msk /*!< ADC Analog watchdog 1 Channel selection */
2923#define ADC_CFGR_AWD1CH_0 (0x01UL << ADC_CFGR_AWD1CH_Pos) /*!< 0x04000000 */
2924#define ADC_CFGR_AWD1CH_1 (0x02UL << ADC_CFGR_AWD1CH_Pos) /*!< 0x08000000 */
2925#define ADC_CFGR_AWD1CH_2 (0x04UL << ADC_CFGR_AWD1CH_Pos) /*!< 0x10000000 */
2926#define ADC_CFGR_AWD1CH_3 (0x08UL << ADC_CFGR_AWD1CH_Pos) /*!< 0x20000000 */
2927#define ADC_CFGR_AWD1CH_4 (0x10UL << ADC_CFGR_AWD1CH_Pos) /*!< 0x40000000 */
2928
2929#define ADC_CFGR_JQDIS_Pos (31U)
2930#define ADC_CFGR_JQDIS_Msk (0x1UL << ADC_CFGR_JQDIS_Pos) /*!< 0x80000000 */
2931#define ADC_CFGR_JQDIS ADC_CFGR_JQDIS_Msk /*!< ADC Injected queue disable */
2932
2933/******************** Bit definition for ADC_CFGR2 register ********************/
2934#define ADC_CFGR2_ROVSE_Pos (0U)
2935#define ADC_CFGR2_ROVSE_Msk (0x1UL << ADC_CFGR2_ROVSE_Pos) /*!< 0x00000001 */
2936#define ADC_CFGR2_ROVSE ADC_CFGR2_ROVSE_Msk /*!< ADC Regular group oversampler enable */
2937#define ADC_CFGR2_JOVSE_Pos (1U)
2938#define ADC_CFGR2_JOVSE_Msk (0x1UL << ADC_CFGR2_JOVSE_Pos) /*!< 0x00000002 */
2939#define ADC_CFGR2_JOVSE ADC_CFGR2_JOVSE_Msk /*!< ADC Injected group oversampler enable */
2940
2941#define ADC_CFGR2_OVSS_Pos (5U)
2942#define ADC_CFGR2_OVSS_Msk (0xFUL << ADC_CFGR2_OVSS_Pos) /*!< 0x000001E0 */
2943#define ADC_CFGR2_OVSS ADC_CFGR2_OVSS_Msk /*!< ADC Regular Oversampling shift */
2944#define ADC_CFGR2_OVSS_0 (0x1UL << ADC_CFGR2_OVSS_Pos) /*!< 0x00000020 */
2945#define ADC_CFGR2_OVSS_1 (0x2UL << ADC_CFGR2_OVSS_Pos) /*!< 0x00000040 */
2946#define ADC_CFGR2_OVSS_2 (0x4UL << ADC_CFGR2_OVSS_Pos) /*!< 0x00000080 */
2947#define ADC_CFGR2_OVSS_3 (0x8UL << ADC_CFGR2_OVSS_Pos) /*!< 0x00000100 */
2948
2949#define ADC_CFGR2_TROVS_Pos (9U)
2950#define ADC_CFGR2_TROVS_Msk (0x1UL << ADC_CFGR2_TROVS_Pos) /*!< 0x00000200 */
2951#define ADC_CFGR2_TROVS ADC_CFGR2_TROVS_Msk /*!< ADC Triggered regular Oversampling */
2952#define ADC_CFGR2_ROVSM_Pos (10U)
2953#define ADC_CFGR2_ROVSM_Msk (0x1UL << ADC_CFGR2_ROVSM_Pos) /*!< 0x00000400 */
2954#define ADC_CFGR2_ROVSM ADC_CFGR2_ROVSM_Msk /*!< ADC Regular oversampling mode */
2955
2956#define ADC_CFGR2_RSHIFT1_Pos (11U)
2957#define ADC_CFGR2_RSHIFT1_Msk (0x1UL << ADC_CFGR2_RSHIFT1_Pos) /*!< 0x00000800 */
2958#define ADC_CFGR2_RSHIFT1 ADC_CFGR2_RSHIFT1_Msk /*!< ADC Right-shift data after Offset 1 correction */
2959#define ADC_CFGR2_RSHIFT2_Pos (12U)
2960#define ADC_CFGR2_RSHIFT2_Msk (0x1UL << ADC_CFGR2_RSHIFT2_Pos) /*!< 0x00001000 */
2961#define ADC_CFGR2_RSHIFT2 ADC_CFGR2_RSHIFT2_Msk /*!< ADC Right-shift data after Offset 2 correction */
2962#define ADC_CFGR2_RSHIFT3_Pos (13U)
2963#define ADC_CFGR2_RSHIFT3_Msk (0x1UL << ADC_CFGR2_RSHIFT3_Pos) /*!< 0x00002000 */
2964#define ADC_CFGR2_RSHIFT3 ADC_CFGR2_RSHIFT3_Msk /*!< ADC Right-shift data after Offset 3 correction */
2965#define ADC_CFGR2_RSHIFT4_Pos (14U)
2966#define ADC_CFGR2_RSHIFT4_Msk (0x1UL << ADC_CFGR2_RSHIFT4_Pos) /*!< 0x00004000 */
2967#define ADC_CFGR2_RSHIFT4 ADC_CFGR2_RSHIFT4_Msk /*!< ADC Right-shift data after Offset 4 correction */
2968
2969#define ADC_CFGR2_OVSR_Pos (16U)
2970#define ADC_CFGR2_OVSR_Msk (0x3FFUL << ADC_CFGR2_OVSR_Pos) /*!< 0x03FF0000 */
2971#define ADC_CFGR2_OVSR ADC_CFGR2_OVSR_Msk /*!< ADC oversampling Ratio */
2972#define ADC_CFGR2_OVSR_0 (0x001UL << ADC_CFGR2_OVSR_Pos) /*!< 0x00010000 */
2973#define ADC_CFGR2_OVSR_1 (0x002UL << ADC_CFGR2_OVSR_Pos) /*!< 0x00020000 */
2974#define ADC_CFGR2_OVSR_2 (0x004UL << ADC_CFGR2_OVSR_Pos) /*!< 0x00040000 */
2975#define ADC_CFGR2_OVSR_3 (0x008UL << ADC_CFGR2_OVSR_Pos) /*!< 0x00080000 */
2976#define ADC_CFGR2_OVSR_4 (0x010UL << ADC_CFGR2_OVSR_Pos) /*!< 0x00100000 */
2977#define ADC_CFGR2_OVSR_5 (0x020UL << ADC_CFGR2_OVSR_Pos) /*!< 0x00200000 */
2978#define ADC_CFGR2_OVSR_6 (0x040UL << ADC_CFGR2_OVSR_Pos) /*!< 0x00400000 */
2979#define ADC_CFGR2_OVSR_7 (0x080UL << ADC_CFGR2_OVSR_Pos) /*!< 0x00800000 */
2980#define ADC_CFGR2_OVSR_8 (0x100UL << ADC_CFGR2_OVSR_Pos) /*!< 0x01000000 */
2981#define ADC_CFGR2_OVSR_9 (0x200UL << ADC_CFGR2_OVSR_Pos) /*!< 0x02000000 */
2982
2983#define ADC_CFGR2_LSHIFT_Pos (28U)
2984#define ADC_CFGR2_LSHIFT_Msk (0xFUL << ADC_CFGR2_LSHIFT_Pos) /*!< 0xF0000000 */
2985#define ADC_CFGR2_LSHIFT ADC_CFGR2_LSHIFT_Msk /*!< ADC Left shift factor */
2986#define ADC_CFGR2_LSHIFT_0 (0x1UL << ADC_CFGR2_LSHIFT_Pos) /*!< 0x10000000 */
2987#define ADC_CFGR2_LSHIFT_1 (0x2UL << ADC_CFGR2_LSHIFT_Pos) /*!< 0x20000000 */
2988#define ADC_CFGR2_LSHIFT_2 (0x4UL << ADC_CFGR2_LSHIFT_Pos) /*!< 0x40000000 */
2989#define ADC_CFGR2_LSHIFT_3 (0x8UL << ADC_CFGR2_LSHIFT_Pos) /*!< 0x80000000 */
2990
2991/******************** Bit definition for ADC_SMPR1 register ********************/
2992#define ADC_SMPR1_SMP0_Pos (0U)
2993#define ADC_SMPR1_SMP0_Msk (0x7UL << ADC_SMPR1_SMP0_Pos) /*!< 0x00000007 */
2994#define ADC_SMPR1_SMP0 ADC_SMPR1_SMP0_Msk /*!< ADC Channel 0 Sampling time selection */
2995#define ADC_SMPR1_SMP0_0 (0x1UL << ADC_SMPR1_SMP0_Pos) /*!< 0x00000001 */
2996#define ADC_SMPR1_SMP0_1 (0x2UL << ADC_SMPR1_SMP0_Pos) /*!< 0x00000002 */
2997#define ADC_SMPR1_SMP0_2 (0x4UL << ADC_SMPR1_SMP0_Pos) /*!< 0x00000004 */
2998
2999#define ADC_SMPR1_SMP1_Pos (3U)
3000#define ADC_SMPR1_SMP1_Msk (0x7UL << ADC_SMPR1_SMP1_Pos) /*!< 0x00000038 */
3001#define ADC_SMPR1_SMP1 ADC_SMPR1_SMP1_Msk /*!< ADC Channel 1 Sampling time selection */
3002#define ADC_SMPR1_SMP1_0 (0x1UL << ADC_SMPR1_SMP1_Pos) /*!< 0x00000008 */
3003#define ADC_SMPR1_SMP1_1 (0x2UL << ADC_SMPR1_SMP1_Pos) /*!< 0x00000010 */
3004#define ADC_SMPR1_SMP1_2 (0x4UL << ADC_SMPR1_SMP1_Pos) /*!< 0x00000020 */
3005
3006#define ADC_SMPR1_SMP2_Pos (6U)
3007#define ADC_SMPR1_SMP2_Msk (0x7UL << ADC_SMPR1_SMP2_Pos) /*!< 0x000001C0 */
3008#define ADC_SMPR1_SMP2 ADC_SMPR1_SMP2_Msk /*!< ADC Channel 2 Sampling time selection */
3009#define ADC_SMPR1_SMP2_0 (0x1UL << ADC_SMPR1_SMP2_Pos) /*!< 0x00000040 */
3010#define ADC_SMPR1_SMP2_1 (0x2UL << ADC_SMPR1_SMP2_Pos) /*!< 0x00000080 */
3011#define ADC_SMPR1_SMP2_2 (0x4UL << ADC_SMPR1_SMP2_Pos) /*!< 0x00000100 */
3012
3013#define ADC_SMPR1_SMP3_Pos (9U)
3014#define ADC_SMPR1_SMP3_Msk (0x7UL << ADC_SMPR1_SMP3_Pos) /*!< 0x00000E00 */
3015#define ADC_SMPR1_SMP3 ADC_SMPR1_SMP3_Msk /*!< ADC Channel 3 Sampling time selection */
3016#define ADC_SMPR1_SMP3_0 (0x1UL << ADC_SMPR1_SMP3_Pos) /*!< 0x00000200 */
3017#define ADC_SMPR1_SMP3_1 (0x2UL << ADC_SMPR1_SMP3_Pos) /*!< 0x00000400 */
3018#define ADC_SMPR1_SMP3_2 (0x4UL << ADC_SMPR1_SMP3_Pos) /*!< 0x00000800 */
3019
3020#define ADC_SMPR1_SMP4_Pos (12U)
3021#define ADC_SMPR1_SMP4_Msk (0x7UL << ADC_SMPR1_SMP4_Pos) /*!< 0x00007000 */
3022#define ADC_SMPR1_SMP4 ADC_SMPR1_SMP4_Msk /*!< ADC Channel 4 Sampling time selection */
3023#define ADC_SMPR1_SMP4_0 (0x1UL << ADC_SMPR1_SMP4_Pos) /*!< 0x00001000 */
3024#define ADC_SMPR1_SMP4_1 (0x2UL << ADC_SMPR1_SMP4_Pos) /*!< 0x00002000 */
3025#define ADC_SMPR1_SMP4_2 (0x4UL << ADC_SMPR1_SMP4_Pos) /*!< 0x00004000 */
3026
3027#define ADC_SMPR1_SMP5_Pos (15U)
3028#define ADC_SMPR1_SMP5_Msk (0x7UL << ADC_SMPR1_SMP5_Pos) /*!< 0x00038000 */
3029#define ADC_SMPR1_SMP5 ADC_SMPR1_SMP5_Msk /*!< ADC Channel 5 Sampling time selection */
3030#define ADC_SMPR1_SMP5_0 (0x1UL << ADC_SMPR1_SMP5_Pos) /*!< 0x00008000 */
3031#define ADC_SMPR1_SMP5_1 (0x2UL << ADC_SMPR1_SMP5_Pos) /*!< 0x00010000 */
3032#define ADC_SMPR1_SMP5_2 (0x4UL << ADC_SMPR1_SMP5_Pos) /*!< 0x00020000 */
3033
3034#define ADC_SMPR1_SMP6_Pos (18U)
3035#define ADC_SMPR1_SMP6_Msk (0x7UL << ADC_SMPR1_SMP6_Pos) /*!< 0x001C0000 */
3036#define ADC_SMPR1_SMP6 ADC_SMPR1_SMP6_Msk /*!< ADC Channel 6 Sampling time selection */
3037#define ADC_SMPR1_SMP6_0 (0x1UL << ADC_SMPR1_SMP6_Pos) /*!< 0x00040000 */
3038#define ADC_SMPR1_SMP6_1 (0x2UL << ADC_SMPR1_SMP6_Pos) /*!< 0x00080000 */
3039#define ADC_SMPR1_SMP6_2 (0x4UL << ADC_SMPR1_SMP6_Pos) /*!< 0x00100000 */
3040
3041#define ADC_SMPR1_SMP7_Pos (21U)
3042#define ADC_SMPR1_SMP7_Msk (0x7UL << ADC_SMPR1_SMP7_Pos) /*!< 0x00E00000 */
3043#define ADC_SMPR1_SMP7 ADC_SMPR1_SMP7_Msk /*!< ADC Channel 7 Sampling time selection */
3044#define ADC_SMPR1_SMP7_0 (0x1UL << ADC_SMPR1_SMP7_Pos) /*!< 0x00200000 */
3045#define ADC_SMPR1_SMP7_1 (0x2UL << ADC_SMPR1_SMP7_Pos) /*!< 0x00400000 */
3046#define ADC_SMPR1_SMP7_2 (0x4UL << ADC_SMPR1_SMP7_Pos) /*!< 0x00800000 */
3047
3048#define ADC_SMPR1_SMP8_Pos (24U)
3049#define ADC_SMPR1_SMP8_Msk (0x7UL << ADC_SMPR1_SMP8_Pos) /*!< 0x07000000 */
3050#define ADC_SMPR1_SMP8 ADC_SMPR1_SMP8_Msk /*!< ADC Channel 8 Sampling time selection */
3051#define ADC_SMPR1_SMP8_0 (0x1UL << ADC_SMPR1_SMP8_Pos) /*!< 0x01000000 */
3052#define ADC_SMPR1_SMP8_1 (0x2UL << ADC_SMPR1_SMP8_Pos) /*!< 0x02000000 */
3053#define ADC_SMPR1_SMP8_2 (0x4UL << ADC_SMPR1_SMP8_Pos) /*!< 0x04000000 */
3054
3055#define ADC_SMPR1_SMP9_Pos (27U)
3056#define ADC_SMPR1_SMP9_Msk (0x7UL << ADC_SMPR1_SMP9_Pos) /*!< 0x38000000 */
3057#define ADC_SMPR1_SMP9 ADC_SMPR1_SMP9_Msk /*!< ADC Channel 9 Sampling time selection */
3058#define ADC_SMPR1_SMP9_0 (0x1UL << ADC_SMPR1_SMP9_Pos) /*!< 0x08000000 */
3059#define ADC_SMPR1_SMP9_1 (0x2UL << ADC_SMPR1_SMP9_Pos) /*!< 0x10000000 */
3060#define ADC_SMPR1_SMP9_2 (0x4UL << ADC_SMPR1_SMP9_Pos) /*!< 0x20000000 */
3061
3062/******************** Bit definition for ADC_SMPR2 register ********************/
3063#define ADC_SMPR2_SMP10_Pos (0U)
3064#define ADC_SMPR2_SMP10_Msk (0x7UL << ADC_SMPR2_SMP10_Pos) /*!< 0x00000007 */
3065#define ADC_SMPR2_SMP10 ADC_SMPR2_SMP10_Msk /*!< ADC Channel 10 Sampling time selection */
3066#define ADC_SMPR2_SMP10_0 (0x1UL << ADC_SMPR2_SMP10_Pos) /*!< 0x00000001 */
3067#define ADC_SMPR2_SMP10_1 (0x2UL << ADC_SMPR2_SMP10_Pos) /*!< 0x00000002 */
3068#define ADC_SMPR2_SMP10_2 (0x4UL << ADC_SMPR2_SMP10_Pos) /*!< 0x00000004 */
3069
3070#define ADC_SMPR2_SMP11_Pos (3U)
3071#define ADC_SMPR2_SMP11_Msk (0x7UL << ADC_SMPR2_SMP11_Pos) /*!< 0x00000038 */
3072#define ADC_SMPR2_SMP11 ADC_SMPR2_SMP11_Msk /*!< ADC Channel 11 Sampling time selection */
3073#define ADC_SMPR2_SMP11_0 (0x1UL << ADC_SMPR2_SMP11_Pos) /*!< 0x00000008 */
3074#define ADC_SMPR2_SMP11_1 (0x2UL << ADC_SMPR2_SMP11_Pos) /*!< 0x00000010 */
3075#define ADC_SMPR2_SMP11_2 (0x4UL << ADC_SMPR2_SMP11_Pos) /*!< 0x00000020 */
3076
3077#define ADC_SMPR2_SMP12_Pos (6U)
3078#define ADC_SMPR2_SMP12_Msk (0x7UL << ADC_SMPR2_SMP12_Pos) /*!< 0x000001C0 */
3079#define ADC_SMPR2_SMP12 ADC_SMPR2_SMP12_Msk /*!< ADC Channel 12 Sampling time selection */
3080#define ADC_SMPR2_SMP12_0 (0x1UL << ADC_SMPR2_SMP12_Pos) /*!< 0x00000040 */
3081#define ADC_SMPR2_SMP12_1 (0x2UL << ADC_SMPR2_SMP12_Pos) /*!< 0x00000080 */
3082#define ADC_SMPR2_SMP12_2 (0x4UL << ADC_SMPR2_SMP12_Pos) /*!< 0x00000100 */
3083
3084#define ADC_SMPR2_SMP13_Pos (9U)
3085#define ADC_SMPR2_SMP13_Msk (0x7UL << ADC_SMPR2_SMP13_Pos) /*!< 0x00000E00 */
3086#define ADC_SMPR2_SMP13 ADC_SMPR2_SMP13_Msk /*!< ADC Channel 13 Sampling time selection */
3087#define ADC_SMPR2_SMP13_0 (0x1UL << ADC_SMPR2_SMP13_Pos) /*!< 0x00000200 */
3088#define ADC_SMPR2_SMP13_1 (0x2UL << ADC_SMPR2_SMP13_Pos) /*!< 0x00000400 */
3089#define ADC_SMPR2_SMP13_2 (0x4UL << ADC_SMPR2_SMP13_Pos) /*!< 0x00000800 */
3090
3091#define ADC_SMPR2_SMP14_Pos (12U)
3092#define ADC_SMPR2_SMP14_Msk (0x7UL << ADC_SMPR2_SMP14_Pos) /*!< 0x00007000 */
3093#define ADC_SMPR2_SMP14 ADC_SMPR2_SMP14_Msk /*!< ADC Channel 14 Sampling time selection */
3094#define ADC_SMPR2_SMP14_0 (0x1UL << ADC_SMPR2_SMP14_Pos) /*!< 0x00001000 */
3095#define ADC_SMPR2_SMP14_1 (0x2UL << ADC_SMPR2_SMP14_Pos) /*!< 0x00002000 */
3096#define ADC_SMPR2_SMP14_2 (0x4UL << ADC_SMPR2_SMP14_Pos) /*!< 0x00004000 */
3097
3098#define ADC_SMPR2_SMP15_Pos (15U)
3099#define ADC_SMPR2_SMP15_Msk (0x7UL << ADC_SMPR2_SMP15_Pos) /*!< 0x00038000 */
3100#define ADC_SMPR2_SMP15 ADC_SMPR2_SMP15_Msk /*!< ADC Channel 15 Sampling time selection */
3101#define ADC_SMPR2_SMP15_0 (0x1UL << ADC_SMPR2_SMP15_Pos) /*!< 0x00008000 */
3102#define ADC_SMPR2_SMP15_1 (0x2UL << ADC_SMPR2_SMP15_Pos) /*!< 0x00010000 */
3103#define ADC_SMPR2_SMP15_2 (0x4UL << ADC_SMPR2_SMP15_Pos) /*!< 0x00020000 */
3104
3105#define ADC_SMPR2_SMP16_Pos (18U)
3106#define ADC_SMPR2_SMP16_Msk (0x7UL << ADC_SMPR2_SMP16_Pos) /*!< 0x001C0000 */
3107#define ADC_SMPR2_SMP16 ADC_SMPR2_SMP16_Msk /*!< ADC Channel 16 Sampling time selection */
3108#define ADC_SMPR2_SMP16_0 (0x1UL << ADC_SMPR2_SMP16_Pos) /*!< 0x00040000 */
3109#define ADC_SMPR2_SMP16_1 (0x2UL << ADC_SMPR2_SMP16_Pos) /*!< 0x00080000 */
3110#define ADC_SMPR2_SMP16_2 (0x4UL << ADC_SMPR2_SMP16_Pos) /*!< 0x00100000 */
3111
3112#define ADC_SMPR2_SMP17_Pos (21U)
3113#define ADC_SMPR2_SMP17_Msk (0x7UL << ADC_SMPR2_SMP17_Pos) /*!< 0x00E00000 */
3114#define ADC_SMPR2_SMP17 ADC_SMPR2_SMP17_Msk /*!< ADC Channel 17 Sampling time selection */
3115#define ADC_SMPR2_SMP17_0 (0x1UL << ADC_SMPR2_SMP17_Pos) /*!< 0x00200000 */
3116#define ADC_SMPR2_SMP17_1 (0x2UL << ADC_SMPR2_SMP17_Pos) /*!< 0x00400000 */
3117#define ADC_SMPR2_SMP17_2 (0x4UL << ADC_SMPR2_SMP17_Pos) /*!< 0x00800000 */
3118
3119#define ADC_SMPR2_SMP18_Pos (24U)
3120#define ADC_SMPR2_SMP18_Msk (0x7UL << ADC_SMPR2_SMP18_Pos) /*!< 0x07000000 */
3121#define ADC_SMPR2_SMP18 ADC_SMPR2_SMP18_Msk /*!< ADC Channel 18 Sampling time selection */
3122#define ADC_SMPR2_SMP18_0 (0x1UL << ADC_SMPR2_SMP18_Pos) /*!< 0x01000000 */
3123#define ADC_SMPR2_SMP18_1 (0x2UL << ADC_SMPR2_SMP18_Pos) /*!< 0x02000000 */
3124#define ADC_SMPR2_SMP18_2 (0x4UL << ADC_SMPR2_SMP18_Pos) /*!< 0x04000000 */
3125
3126#define ADC_SMPR2_SMP19_Pos (27U)
3127#define ADC_SMPR2_SMP19_Msk (0x7UL << ADC_SMPR2_SMP19_Pos) /*!< 0x38000000 */
3128#define ADC_SMPR2_SMP19 ADC_SMPR2_SMP19_Msk /*!< ADC Channel 19 Sampling time selection */
3129#define ADC_SMPR2_SMP19_0 (0x1UL << ADC_SMPR2_SMP19_Pos) /*!< 0x08000000 */
3130#define ADC_SMPR2_SMP19_1 (0x2UL << ADC_SMPR2_SMP19_Pos) /*!< 0x10000000 */
3131#define ADC_SMPR2_SMP19_2 (0x4UL << ADC_SMPR2_SMP19_Pos) /*!< 0x20000000 */
3132
3133/******************** Bit definition for ADC_PCSEL register ********************/
3134#define ADC_PCSEL_PCSEL_Pos (0U)
3135#define ADC_PCSEL_PCSEL_Msk (0xFFFFFUL << ADC_PCSEL_PCSEL_Pos) /*!< 0x000FFFFF */
3136#define ADC_PCSEL_PCSEL ADC_PCSEL_PCSEL_Msk /*!< ADC pre channel selection */
3137#define ADC_PCSEL_PCSEL_0 (0x00001UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00000001 */
3138#define ADC_PCSEL_PCSEL_1 (0x00002UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00000002 */
3139#define ADC_PCSEL_PCSEL_2 (0x00004UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00000004 */
3140#define ADC_PCSEL_PCSEL_3 (0x00008UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00000008 */
3141#define ADC_PCSEL_PCSEL_4 (0x00010UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00000010 */
3142#define ADC_PCSEL_PCSEL_5 (0x00020UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00000020 */
3143#define ADC_PCSEL_PCSEL_6 (0x00040UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00000040 */
3144#define ADC_PCSEL_PCSEL_7 (0x00080UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00000080 */
3145#define ADC_PCSEL_PCSEL_8 (0x00100UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00000100 */
3146#define ADC_PCSEL_PCSEL_9 (0x00200UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00000200 */
3147#define ADC_PCSEL_PCSEL_10 (0x00400UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00000400 */
3148#define ADC_PCSEL_PCSEL_11 (0x00800UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00000800 */
3149#define ADC_PCSEL_PCSEL_12 (0x01000UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00001000 */
3150#define ADC_PCSEL_PCSEL_13 (0x02000UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00002000 */
3151#define ADC_PCSEL_PCSEL_14 (0x04000UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00004000 */
3152#define ADC_PCSEL_PCSEL_15 (0x08000UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00008000 */
3153#define ADC_PCSEL_PCSEL_16 (0x10000UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00010000 */
3154#define ADC_PCSEL_PCSEL_17 (0x20000UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00020000 */
3155#define ADC_PCSEL_PCSEL_18 (0x40000UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00040000 */
3156#define ADC_PCSEL_PCSEL_19 (0x80000UL << ADC_PCSEL_PCSEL_Pos) /*!< 0x00080000 */
3157
3158/***************** Bit definition for ADC_LTR1, 2, 3 registers *****************/
3159#define ADC_LTR_LT_Pos (0U)
3160#define ADC_LTR_LT_Msk (0x3FFFFFFUL << ADC_LTR_LT_Pos) /*!< 0x03FFFFFF */
3161#define ADC_LTR_LT ADC_LTR_LT_Msk /*!< ADC Analog watchdog 1, 2 and 3 lower threshold */
3162
3163/***************** Bit definition for ADC_HTR1, 2, 3 registers ****************/
3164#define ADC_HTR_HT_Pos (0U)
3165#define ADC_HTR_HT_Msk (0x3FFFFFFUL << ADC_HTR_HT_Pos) /*!< 0x03FFFFFF */
3166#define ADC_HTR_HT ADC_HTR_HT_Msk /*!< ADC Analog watchdog 1,2 and 3 higher threshold */
3167
3168
3169/******************** Bit definition for ADC_SQR1 register ********************/
3170#define ADC_SQR1_L_Pos (0U)
3171#define ADC_SQR1_L_Msk (0xFUL << ADC_SQR1_L_Pos) /*!< 0x0000000F */
3172#define ADC_SQR1_L ADC_SQR1_L_Msk /*!< ADC regular channel sequence lenght */
3173#define ADC_SQR1_L_0 (0x1UL << ADC_SQR1_L_Pos) /*!< 0x00000001 */
3174#define ADC_SQR1_L_1 (0x2UL << ADC_SQR1_L_Pos) /*!< 0x00000002 */
3175#define ADC_SQR1_L_2 (0x4UL << ADC_SQR1_L_Pos) /*!< 0x00000004 */
3176#define ADC_SQR1_L_3 (0x8UL << ADC_SQR1_L_Pos) /*!< 0x00000008 */
3177
3178#define ADC_SQR1_SQ1_Pos (6U)
3179#define ADC_SQR1_SQ1_Msk (0x1FUL << ADC_SQR1_SQ1_Pos) /*!< 0x000007C0 */
3180#define ADC_SQR1_SQ1 ADC_SQR1_SQ1_Msk /*!< ADC 1st conversion in regular sequence */
3181#define ADC_SQR1_SQ1_0 (0x01UL << ADC_SQR1_SQ1_Pos) /*!< 0x00000040 */
3182#define ADC_SQR1_SQ1_1 (0x02UL << ADC_SQR1_SQ1_Pos) /*!< 0x00000080 */
3183#define ADC_SQR1_SQ1_2 (0x04UL << ADC_SQR1_SQ1_Pos) /*!< 0x00000100 */
3184#define ADC_SQR1_SQ1_3 (0x08UL << ADC_SQR1_SQ1_Pos) /*!< 0x00000200 */
3185#define ADC_SQR1_SQ1_4 (0x10UL << ADC_SQR1_SQ1_Pos) /*!< 0x00000400 */
3186
3187#define ADC_SQR1_SQ2_Pos (12U)
3188#define ADC_SQR1_SQ2_Msk (0x1FUL << ADC_SQR1_SQ2_Pos) /*!< 0x0001F000 */
3189#define ADC_SQR1_SQ2 ADC_SQR1_SQ2_Msk /*!< ADC 2nd conversion in regular sequence */
3190#define ADC_SQR1_SQ2_0 (0x01UL << ADC_SQR1_SQ2_Pos) /*!< 0x00001000 */
3191#define ADC_SQR1_SQ2_1 (0x02UL << ADC_SQR1_SQ2_Pos) /*!< 0x00002000 */
3192#define ADC_SQR1_SQ2_2 (0x04UL << ADC_SQR1_SQ2_Pos) /*!< 0x00004000 */
3193#define ADC_SQR1_SQ2_3 (0x08UL << ADC_SQR1_SQ2_Pos) /*!< 0x00008000 */
3194#define ADC_SQR1_SQ2_4 (0x10UL << ADC_SQR1_SQ2_Pos) /*!< 0x00010000 */
3195
3196#define ADC_SQR1_SQ3_Pos (18U)
3197#define ADC_SQR1_SQ3_Msk (0x1FUL << ADC_SQR1_SQ3_Pos) /*!< 0x007C0000 */
3198#define ADC_SQR1_SQ3 ADC_SQR1_SQ3_Msk /*!< ADC 3rd conversion in regular sequence */
3199#define ADC_SQR1_SQ3_0 (0x01UL << ADC_SQR1_SQ3_Pos) /*!< 0x00040000 */
3200#define ADC_SQR1_SQ3_1 (0x02UL << ADC_SQR1_SQ3_Pos) /*!< 0x00080000 */
3201#define ADC_SQR1_SQ3_2 (0x04UL << ADC_SQR1_SQ3_Pos) /*!< 0x00100000 */
3202#define ADC_SQR1_SQ3_3 (0x08UL << ADC_SQR1_SQ3_Pos) /*!< 0x00200000 */
3203#define ADC_SQR1_SQ3_4 (0x10UL << ADC_SQR1_SQ3_Pos) /*!< 0x00400000 */
3204
3205#define ADC_SQR1_SQ4_Pos (24U)
3206#define ADC_SQR1_SQ4_Msk (0x1FUL << ADC_SQR1_SQ4_Pos) /*!< 0x1F000000 */
3207#define ADC_SQR1_SQ4 ADC_SQR1_SQ4_Msk /*!< ADC 4th conversion in regular sequence */
3208#define ADC_SQR1_SQ4_0 (0x01UL << ADC_SQR1_SQ4_Pos) /*!< 0x01000000 */
3209#define ADC_SQR1_SQ4_1 (0x02UL << ADC_SQR1_SQ4_Pos) /*!< 0x02000000 */
3210#define ADC_SQR1_SQ4_2 (0x04UL << ADC_SQR1_SQ4_Pos) /*!< 0x04000000 */
3211#define ADC_SQR1_SQ4_3 (0x08UL << ADC_SQR1_SQ4_Pos) /*!< 0x08000000 */
3212#define ADC_SQR1_SQ4_4 (0x10UL << ADC_SQR1_SQ4_Pos) /*!< 0x10000000 */
3213
3214/******************** Bit definition for ADC_SQR2 register ********************/
3215#define ADC_SQR2_SQ5_Pos (0U)
3216#define ADC_SQR2_SQ5_Msk (0x1FUL << ADC_SQR2_SQ5_Pos) /*!< 0x0000001F */
3217#define ADC_SQR2_SQ5 ADC_SQR2_SQ5_Msk /*!< ADC 5th conversion in regular sequence */
3218#define ADC_SQR2_SQ5_0 (0x01UL << ADC_SQR2_SQ5_Pos) /*!< 0x00000001 */
3219#define ADC_SQR2_SQ5_1 (0x02UL << ADC_SQR2_SQ5_Pos) /*!< 0x00000002 */
3220#define ADC_SQR2_SQ5_2 (0x04UL << ADC_SQR2_SQ5_Pos) /*!< 0x00000004 */
3221#define ADC_SQR2_SQ5_3 (0x08UL << ADC_SQR2_SQ5_Pos) /*!< 0x00000008 */
3222#define ADC_SQR2_SQ5_4 (0x10UL << ADC_SQR2_SQ5_Pos) /*!< 0x00000010 */
3223
3224#define ADC_SQR2_SQ6_Pos (6U)
3225#define ADC_SQR2_SQ6_Msk (0x1FUL << ADC_SQR2_SQ6_Pos) /*!< 0x000007C0 */
3226#define ADC_SQR2_SQ6 ADC_SQR2_SQ6_Msk /*!< ADC 6th conversion in regular sequence */
3227#define ADC_SQR2_SQ6_0 (0x01UL << ADC_SQR2_SQ6_Pos) /*!< 0x00000040 */
3228#define ADC_SQR2_SQ6_1 (0x02UL << ADC_SQR2_SQ6_Pos) /*!< 0x00000080 */
3229#define ADC_SQR2_SQ6_2 (0x04UL << ADC_SQR2_SQ6_Pos) /*!< 0x00000100 */
3230#define ADC_SQR2_SQ6_3 (0x08UL << ADC_SQR2_SQ6_Pos) /*!< 0x00000200 */
3231#define ADC_SQR2_SQ6_4 (0x10UL << ADC_SQR2_SQ6_Pos) /*!< 0x00000400 */
3232
3233#define ADC_SQR2_SQ7_Pos (12U)
3234#define ADC_SQR2_SQ7_Msk (0x1FUL << ADC_SQR2_SQ7_Pos) /*!< 0x0001F000 */
3235#define ADC_SQR2_SQ7 ADC_SQR2_SQ7_Msk /*!< ADC 7th conversion in regular sequence */
3236#define ADC_SQR2_SQ7_0 (0x01UL << ADC_SQR2_SQ7_Pos) /*!< 0x00001000 */
3237#define ADC_SQR2_SQ7_1 (0x02UL << ADC_SQR2_SQ7_Pos) /*!< 0x00002000 */
3238#define ADC_SQR2_SQ7_2 (0x04UL << ADC_SQR2_SQ7_Pos) /*!< 0x00004000 */
3239#define ADC_SQR2_SQ7_3 (0x08UL << ADC_SQR2_SQ7_Pos) /*!< 0x00008000 */
3240#define ADC_SQR2_SQ7_4 (0x10UL << ADC_SQR2_SQ7_Pos) /*!< 0x00010000 */
3241
3242#define ADC_SQR2_SQ8_Pos (18U)
3243#define ADC_SQR2_SQ8_Msk (0x1FUL << ADC_SQR2_SQ8_Pos) /*!< 0x007C0000 */
3244#define ADC_SQR2_SQ8 ADC_SQR2_SQ8_Msk /*!< ADC 8th conversion in regular sequence */
3245#define ADC_SQR2_SQ8_0 (0x01UL << ADC_SQR2_SQ8_Pos) /*!< 0x00040000 */
3246#define ADC_SQR2_SQ8_1 (0x02UL << ADC_SQR2_SQ8_Pos) /*!< 0x00080000 */
3247#define ADC_SQR2_SQ8_2 (0x04UL << ADC_SQR2_SQ8_Pos) /*!< 0x00100000 */
3248#define ADC_SQR2_SQ8_3 (0x08UL << ADC_SQR2_SQ8_Pos) /*!< 0x00200000 */
3249#define ADC_SQR2_SQ8_4 (0x10UL << ADC_SQR2_SQ8_Pos) /*!< 0x00400000 */
3250
3251#define ADC_SQR2_SQ9_Pos (24U)
3252#define ADC_SQR2_SQ9_Msk (0x1FUL << ADC_SQR2_SQ9_Pos) /*!< 0x1F000000 */
3253#define ADC_SQR2_SQ9 ADC_SQR2_SQ9_Msk /*!< ADC 9th conversion in regular sequence */
3254#define ADC_SQR2_SQ9_0 (0x01UL << ADC_SQR2_SQ9_Pos) /*!< 0x01000000 */
3255#define ADC_SQR2_SQ9_1 (0x02UL << ADC_SQR2_SQ9_Pos) /*!< 0x02000000 */
3256#define ADC_SQR2_SQ9_2 (0x04UL << ADC_SQR2_SQ9_Pos) /*!< 0x04000000 */
3257#define ADC_SQR2_SQ9_3 (0x08UL << ADC_SQR2_SQ9_Pos) /*!< 0x08000000 */
3258#define ADC_SQR2_SQ9_4 (0x10UL << ADC_SQR2_SQ9_Pos) /*!< 0x10000000 */
3259
3260/******************** Bit definition for ADC_SQR3 register ********************/
3261#define ADC_SQR3_SQ10_Pos (0U)
3262#define ADC_SQR3_SQ10_Msk (0x1FUL << ADC_SQR3_SQ10_Pos) /*!< 0x0000001F */
3263#define ADC_SQR3_SQ10 ADC_SQR3_SQ10_Msk /*!< ADC 10th conversion in regular sequence */
3264#define ADC_SQR3_SQ10_0 (0x01UL << ADC_SQR3_SQ10_Pos) /*!< 0x00000001 */
3265#define ADC_SQR3_SQ10_1 (0x02UL << ADC_SQR3_SQ10_Pos) /*!< 0x00000002 */
3266#define ADC_SQR3_SQ10_2 (0x04UL << ADC_SQR3_SQ10_Pos) /*!< 0x00000004 */
3267#define ADC_SQR3_SQ10_3 (0x08UL << ADC_SQR3_SQ10_Pos) /*!< 0x00000008 */
3268#define ADC_SQR3_SQ10_4 (0x10UL << ADC_SQR3_SQ10_Pos) /*!< 0x00000010 */
3269
3270#define ADC_SQR3_SQ11_Pos (6U)
3271#define ADC_SQR3_SQ11_Msk (0x1FUL << ADC_SQR3_SQ11_Pos) /*!< 0x000007C0 */
3272#define ADC_SQR3_SQ11 ADC_SQR3_SQ11_Msk /*!< ADC 11th conversion in regular sequence */
3273#define ADC_SQR3_SQ11_0 (0x01UL << ADC_SQR3_SQ11_Pos) /*!< 0x00000040 */
3274#define ADC_SQR3_SQ11_1 (0x02UL << ADC_SQR3_SQ11_Pos) /*!< 0x00000080 */
3275#define ADC_SQR3_SQ11_2 (0x04UL << ADC_SQR3_SQ11_Pos) /*!< 0x00000100 */
3276#define ADC_SQR3_SQ11_3 (0x08UL << ADC_SQR3_SQ11_Pos) /*!< 0x00000200 */
3277#define ADC_SQR3_SQ11_4 (0x10UL << ADC_SQR3_SQ11_Pos) /*!< 0x00000400 */
3278
3279#define ADC_SQR3_SQ12_Pos (12U)
3280#define ADC_SQR3_SQ12_Msk (0x1FUL << ADC_SQR3_SQ12_Pos) /*!< 0x0001F000 */
3281#define ADC_SQR3_SQ12 ADC_SQR3_SQ12_Msk /*!< ADC 12th conversion in regular sequence */
3282#define ADC_SQR3_SQ12_0 (0x01UL << ADC_SQR3_SQ12_Pos) /*!< 0x00001000 */
3283#define ADC_SQR3_SQ12_1 (0x02UL << ADC_SQR3_SQ12_Pos) /*!< 0x00002000 */
3284#define ADC_SQR3_SQ12_2 (0x04UL << ADC_SQR3_SQ12_Pos) /*!< 0x00004000 */
3285#define ADC_SQR3_SQ12_3 (0x08UL << ADC_SQR3_SQ12_Pos) /*!< 0x00008000 */
3286#define ADC_SQR3_SQ12_4 (0x10UL << ADC_SQR3_SQ12_Pos) /*!< 0x00010000 */
3287
3288#define ADC_SQR3_SQ13_Pos (18U)
3289#define ADC_SQR3_SQ13_Msk (0x1FUL << ADC_SQR3_SQ13_Pos) /*!< 0x007C0000 */
3290#define ADC_SQR3_SQ13 ADC_SQR3_SQ13_Msk /*!< ADC 13th conversion in regular sequence */
3291#define ADC_SQR3_SQ13_0 (0x01UL << ADC_SQR3_SQ13_Pos) /*!< 0x00040000 */
3292#define ADC_SQR3_SQ13_1 (0x02UL << ADC_SQR3_SQ13_Pos) /*!< 0x00080000 */
3293#define ADC_SQR3_SQ13_2 (0x04UL << ADC_SQR3_SQ13_Pos) /*!< 0x00100000 */
3294#define ADC_SQR3_SQ13_3 (0x08UL << ADC_SQR3_SQ13_Pos) /*!< 0x00200000 */
3295#define ADC_SQR3_SQ13_4 (0x10UL << ADC_SQR3_SQ13_Pos) /*!< 0x00400000 */
3296
3297#define ADC_SQR3_SQ14_Pos (24U)
3298#define ADC_SQR3_SQ14_Msk (0x1FUL << ADC_SQR3_SQ14_Pos) /*!< 0x1F000000 */
3299#define ADC_SQR3_SQ14 ADC_SQR3_SQ14_Msk /*!< ADC 14th conversion in regular sequence */
3300#define ADC_SQR3_SQ14_0 (0x01UL << ADC_SQR3_SQ14_Pos) /*!< 0x01000000 */
3301#define ADC_SQR3_SQ14_1 (0x02UL << ADC_SQR3_SQ14_Pos) /*!< 0x02000000 */
3302#define ADC_SQR3_SQ14_2 (0x04UL << ADC_SQR3_SQ14_Pos) /*!< 0x04000000 */
3303#define ADC_SQR3_SQ14_3 (0x08UL << ADC_SQR3_SQ14_Pos) /*!< 0x08000000 */
3304#define ADC_SQR3_SQ14_4 (0x10UL << ADC_SQR3_SQ14_Pos) /*!< 0x10000000 */
3305
3306/******************** Bit definition for ADC_SQR4 register ********************/
3307#define ADC_SQR4_SQ15_Pos (0U)
3308#define ADC_SQR4_SQ15_Msk (0x1FUL << ADC_SQR4_SQ15_Pos) /*!< 0x0000001F */
3309#define ADC_SQR4_SQ15 ADC_SQR4_SQ15_Msk /*!< ADC 15th conversion in regular sequence */
3310#define ADC_SQR4_SQ15_0 (0x01UL << ADC_SQR4_SQ15_Pos) /*!< 0x00000001 */
3311#define ADC_SQR4_SQ15_1 (0x02UL << ADC_SQR4_SQ15_Pos) /*!< 0x00000002 */
3312#define ADC_SQR4_SQ15_2 (0x04UL << ADC_SQR4_SQ15_Pos) /*!< 0x00000004 */
3313#define ADC_SQR4_SQ15_3 (0x08UL << ADC_SQR4_SQ15_Pos) /*!< 0x00000008 */
3314#define ADC_SQR4_SQ15_4 (0x10UL << ADC_SQR4_SQ15_Pos) /*!< 0x00000010 */
3315
3316#define ADC_SQR4_SQ16_Pos (6U)
3317#define ADC_SQR4_SQ16_Msk (0x1FUL << ADC_SQR4_SQ16_Pos) /*!< 0x000007C0 */
3318#define ADC_SQR4_SQ16 ADC_SQR4_SQ16_Msk /*!< ADC 16th conversion in regular sequence */
3319#define ADC_SQR4_SQ16_0 (0x01UL << ADC_SQR4_SQ16_Pos) /*!< 0x00000040 */
3320#define ADC_SQR4_SQ16_1 (0x02UL << ADC_SQR4_SQ16_Pos) /*!< 0x00000080 */
3321#define ADC_SQR4_SQ16_2 (0x04UL << ADC_SQR4_SQ16_Pos) /*!< 0x00000100 */
3322#define ADC_SQR4_SQ16_3 (0x08UL << ADC_SQR4_SQ16_Pos) /*!< 0x00000200 */
3323#define ADC_SQR4_SQ16_4 (0x10UL << ADC_SQR4_SQ16_Pos) /*!< 0x00000400 */
3324/******************** Bit definition for ADC_DR register ********************/
3325#define ADC_DR_RDATA_Pos (0U)
3326#define ADC_DR_RDATA_Msk (0xFFFFFFFFUL << ADC_DR_RDATA_Pos) /*!< 0xFFFFFFFF */
3327#define ADC_DR_RDATA ADC_DR_RDATA_Msk /*!< ADC regular Data converted */
3328
3329/******************** Bit definition for ADC_JSQR register ********************/
3330#define ADC_JSQR_JL_Pos (0U)
3331#define ADC_JSQR_JL_Msk (0x3UL << ADC_JSQR_JL_Pos) /*!< 0x00000003 */
3332#define ADC_JSQR_JL ADC_JSQR_JL_Msk /*!< ADC injected channel sequence length */
3333#define ADC_JSQR_JL_0 (0x1UL << ADC_JSQR_JL_Pos) /*!< 0x00000001 */
3334#define ADC_JSQR_JL_1 (0x2UL << ADC_JSQR_JL_Pos) /*!< 0x00000002 */
3335
3336#define ADC_JSQR_JEXTSEL_Pos (2U)
3337#define ADC_JSQR_JEXTSEL_Msk (0x1FUL << ADC_JSQR_JEXTSEL_Pos) /*!< 0x0000007C */
3338#define ADC_JSQR_JEXTSEL ADC_JSQR_JEXTSEL_Msk /*!< ADC external trigger selection for injected group */
3339#define ADC_JSQR_JEXTSEL_0 (0x01UL << ADC_JSQR_JEXTSEL_Pos) /*!< 0x00000004 */
3340#define ADC_JSQR_JEXTSEL_1 (0x02UL << ADC_JSQR_JEXTSEL_Pos) /*!< 0x00000008 */
3341#define ADC_JSQR_JEXTSEL_2 (0x04UL << ADC_JSQR_JEXTSEL_Pos) /*!< 0x00000010 */
3342#define ADC_JSQR_JEXTSEL_3 (0x08UL << ADC_JSQR_JEXTSEL_Pos) /*!< 0x00000020 */
3343#define ADC_JSQR_JEXTSEL_4 (0x10UL << ADC_JSQR_JEXTSEL_Pos) /*!< 0x00000040 */
3344
3345#define ADC_JSQR_JEXTEN_Pos (7U)
3346#define ADC_JSQR_JEXTEN_Msk (0x3UL << ADC_JSQR_JEXTEN_Pos) /*!< 0x00000180 */
3347#define ADC_JSQR_JEXTEN ADC_JSQR_JEXTEN_Msk /*!< ADC external trigger enable and polarity selection for injected channels */
3348#define ADC_JSQR_JEXTEN_0 (0x1UL << ADC_JSQR_JEXTEN_Pos) /*!< 0x00000080 */
3349#define ADC_JSQR_JEXTEN_1 (0x2UL << ADC_JSQR_JEXTEN_Pos) /*!< 0x00000100 */
3350
3351#define ADC_JSQR_JSQ1_Pos (9U)
3352#define ADC_JSQR_JSQ1_Msk (0x1FUL << ADC_JSQR_JSQ1_Pos) /*!< 0x00003E00 */
3353#define ADC_JSQR_JSQ1 ADC_JSQR_JSQ1_Msk /*!< ADC 1st conversion in injected sequence */
3354#define ADC_JSQR_JSQ1_0 (0x01UL << ADC_JSQR_JSQ1_Pos) /*!< 0x00000200 */
3355#define ADC_JSQR_JSQ1_1 (0x02UL << ADC_JSQR_JSQ1_Pos) /*!< 0x00000400 */
3356#define ADC_JSQR_JSQ1_2 (0x04UL << ADC_JSQR_JSQ1_Pos) /*!< 0x00000800 */
3357#define ADC_JSQR_JSQ1_3 (0x08UL << ADC_JSQR_JSQ1_Pos) /*!< 0x00001000 */
3358#define ADC_JSQR_JSQ1_4 (0x10UL << ADC_JSQR_JSQ1_Pos) /*!< 0x00002000 */
3359
3360#define ADC_JSQR_JSQ2_Pos (15U)
3361#define ADC_JSQR_JSQ2_Msk (0x1FUL << ADC_JSQR_JSQ2_Pos) /*!< 0x000F8000 */
3362#define ADC_JSQR_JSQ2 ADC_JSQR_JSQ2_Msk /*!< ADC 2nd conversion in injected sequence */
3363#define ADC_JSQR_JSQ2_0 (0x01UL << ADC_JSQR_JSQ2_Pos) /*!< 0x00008000 */
3364#define ADC_JSQR_JSQ2_1 (0x02UL << ADC_JSQR_JSQ2_Pos) /*!< 0x00010000 */
3365#define ADC_JSQR_JSQ2_2 (0x04UL << ADC_JSQR_JSQ2_Pos) /*!< 0x00020000 */
3366#define ADC_JSQR_JSQ2_3 (0x08UL << ADC_JSQR_JSQ2_Pos) /*!< 0x00040000 */
3367#define ADC_JSQR_JSQ2_4 (0x10UL << ADC_JSQR_JSQ2_Pos) /*!< 0x00080000 */
3368
3369#define ADC_JSQR_JSQ3_Pos (21U)
3370#define ADC_JSQR_JSQ3_Msk (0x1FUL << ADC_JSQR_JSQ3_Pos) /*!< 0x03E00000 */
3371#define ADC_JSQR_JSQ3 ADC_JSQR_JSQ3_Msk /*!< ADC 3rd conversion in injected sequence */
3372#define ADC_JSQR_JSQ3_0 (0x01UL << ADC_JSQR_JSQ3_Pos) /*!< 0x00200000 */
3373#define ADC_JSQR_JSQ3_1 (0x02UL << ADC_JSQR_JSQ3_Pos) /*!< 0x00400000 */
3374#define ADC_JSQR_JSQ3_2 (0x04UL << ADC_JSQR_JSQ3_Pos) /*!< 0x00800000 */
3375#define ADC_JSQR_JSQ3_3 (0x08UL << ADC_JSQR_JSQ3_Pos) /*!< 0x01000000 */
3376#define ADC_JSQR_JSQ3_4 (0x10UL << ADC_JSQR_JSQ3_Pos) /*!< 0x02000000 */
3377
3378#define ADC_JSQR_JSQ4_Pos (27U)
3379#define ADC_JSQR_JSQ4_Msk (0x1FUL << ADC_JSQR_JSQ4_Pos) /*!< 0xF8000000 */
3380#define ADC_JSQR_JSQ4 ADC_JSQR_JSQ4_Msk /*!< ADC 4th conversion in injected sequence */
3381#define ADC_JSQR_JSQ4_0 (0x01UL << ADC_JSQR_JSQ4_Pos) /*!< 0x08000000 */
3382#define ADC_JSQR_JSQ4_1 (0x02UL << ADC_JSQR_JSQ4_Pos) /*!< 0x10000000 */
3383#define ADC_JSQR_JSQ4_2 (0x04UL << ADC_JSQR_JSQ4_Pos) /*!< 0x20000000 */
3384#define ADC_JSQR_JSQ4_3 (0x08UL << ADC_JSQR_JSQ4_Pos) /*!< 0x40000000 */
3385#define ADC_JSQR_JSQ4_4 (0x10UL << ADC_JSQR_JSQ4_Pos) /*!< 0x80000000 */
3386
3387/******************** Bit definition for ADC_OFR1 register ********************/
3388#define ADC_OFR1_OFFSET1_Pos (0U)
3389#define ADC_OFR1_OFFSET1_Msk (0x3FFFFFFUL << ADC_OFR1_OFFSET1_Pos) /*!< 0x03FFFFFF */
3390#define ADC_OFR1_OFFSET1 ADC_OFR1_OFFSET1_Msk /*!< ADC data offset 1 for channel programmed into bits OFFSET1_CH[4:0] */
3391#define ADC_OFR1_OFFSET1_0 (0x0000001UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00000001 */
3392#define ADC_OFR1_OFFSET1_1 (0x0000002UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00000002 */
3393#define ADC_OFR1_OFFSET1_2 (0x0000004UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00000004 */
3394#define ADC_OFR1_OFFSET1_3 (0x0000008UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00000008 */
3395#define ADC_OFR1_OFFSET1_4 (0x0000010UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00000010 */
3396#define ADC_OFR1_OFFSET1_5 (0x0000020UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00000020 */
3397#define ADC_OFR1_OFFSET1_6 (0x0000040UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00000040 */
3398#define ADC_OFR1_OFFSET1_7 (0x0000080UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00000080 */
3399#define ADC_OFR1_OFFSET1_8 (0x0000100UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00000100 */
3400#define ADC_OFR1_OFFSET1_9 (0x0000200UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00000200 */
3401#define ADC_OFR1_OFFSET1_10 (0x0000400UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00000400 */
3402#define ADC_OFR1_OFFSET1_11 (0x0000800UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00000800 */
3403#define ADC_OFR1_OFFSET1_12 (0x0001000UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00001000 */
3404#define ADC_OFR1_OFFSET1_13 (0x0002000UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00002000 */
3405#define ADC_OFR1_OFFSET1_14 (0x0004000UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00004000 */
3406#define ADC_OFR1_OFFSET1_15 (0x0008000UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00008000 */
3407#define ADC_OFR1_OFFSET1_16 (0x0010000UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00010000 */
3408#define ADC_OFR1_OFFSET1_17 (0x0020000UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00020000 */
3409#define ADC_OFR1_OFFSET1_18 (0x0040000UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00040000 */
3410#define ADC_OFR1_OFFSET1_19 (0x0080000UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00080000 */
3411#define ADC_OFR1_OFFSET1_20 (0x0100000UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00100000 */
3412#define ADC_OFR1_OFFSET1_21 (0x0200000UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00200000 */
3413#define ADC_OFR1_OFFSET1_22 (0x0400000UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00400000 */
3414#define ADC_OFR1_OFFSET1_23 (0x0800000UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x00800000 */
3415#define ADC_OFR1_OFFSET1_24 (0x1000000UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x01000000 */
3416#define ADC_OFR1_OFFSET1_25 (0x2000000UL << ADC_OFR1_OFFSET1_Pos) /*!< 0x02000000 */
3417
3418#define ADC_OFR1_OFFSET1_CH_Pos (26U)
3419#define ADC_OFR1_OFFSET1_CH_Msk (0x1FUL << ADC_OFR1_OFFSET1_CH_Pos) /*!< 0x7C000000 */
3420#define ADC_OFR1_OFFSET1_CH ADC_OFR1_OFFSET1_CH_Msk /*!< ADC Channel selection for the data offset 1 */
3421#define ADC_OFR1_OFFSET1_CH_0 (0x01UL << ADC_OFR1_OFFSET1_CH_Pos) /*!< 0x04000000 */
3422#define ADC_OFR1_OFFSET1_CH_1 (0x02UL << ADC_OFR1_OFFSET1_CH_Pos) /*!< 0x08000000 */
3423#define ADC_OFR1_OFFSET1_CH_2 (0x04UL << ADC_OFR1_OFFSET1_CH_Pos) /*!< 0x10000000 */
3424#define ADC_OFR1_OFFSET1_CH_3 (0x08UL << ADC_OFR1_OFFSET1_CH_Pos) /*!< 0x20000000 */
3425#define ADC_OFR1_OFFSET1_CH_4 (0x10UL << ADC_OFR1_OFFSET1_CH_Pos) /*!< 0x40000000 */
3426
3427#define ADC_OFR1_SSATE_Pos (31U)
3428#define ADC_OFR1_SSATE_Msk (0x1UL << ADC_OFR1_SSATE_Pos) /*!< 0x80000000 */
3429#define ADC_OFR1_SSATE ADC_OFR1_SSATE_Msk /*!< ADC Signed saturation Enable */
3430
3431
3432/******************** Bit definition for ADC_OFR2 register ********************/
3433#define ADC_OFR2_OFFSET2_Pos (0U)
3434#define ADC_OFR2_OFFSET2_Msk (0x3FFFFFFUL << ADC_OFR2_OFFSET2_Pos) /*!< 0x03FFFFFF */
3435#define ADC_OFR2_OFFSET2 ADC_OFR2_OFFSET2_Msk /*!< ADC data offset 2 for channel programmed into bits OFFSET2_CH[4:0] */
3436#define ADC_OFR2_OFFSET2_0 (0x0000001UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00000001 */
3437#define ADC_OFR2_OFFSET2_1 (0x0000002UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00000002 */
3438#define ADC_OFR2_OFFSET2_2 (0x0000004UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00000004 */
3439#define ADC_OFR2_OFFSET2_3 (0x0000008UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00000008 */
3440#define ADC_OFR2_OFFSET2_4 (0x0000010UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00000010 */
3441#define ADC_OFR2_OFFSET2_5 (0x0000020UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00000020 */
3442#define ADC_OFR2_OFFSET2_6 (0x0000040UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00000040 */
3443#define ADC_OFR2_OFFSET2_7 (0x0000080UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00000080 */
3444#define ADC_OFR2_OFFSET2_8 (0x0000100UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00000100 */
3445#define ADC_OFR2_OFFSET2_9 (0x0000200UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00000200 */
3446#define ADC_OFR2_OFFSET2_10 (0x0000400UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00000400 */
3447#define ADC_OFR2_OFFSET2_11 (0x0000800UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00000800 */
3448#define ADC_OFR2_OFFSET2_12 (0x0001000UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00001000 */
3449#define ADC_OFR2_OFFSET2_13 (0x0002000UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00002000 */
3450#define ADC_OFR2_OFFSET2_14 (0x0004000UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00004000 */
3451#define ADC_OFR2_OFFSET2_15 (0x0008000UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00008000 */
3452#define ADC_OFR2_OFFSET2_16 (0x0010000UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00010000 */
3453#define ADC_OFR2_OFFSET2_17 (0x0020000UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00020000 */
3454#define ADC_OFR2_OFFSET2_18 (0x0040000UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00040000 */
3455#define ADC_OFR2_OFFSET2_19 (0x0080000UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00080000 */
3456#define ADC_OFR2_OFFSET2_20 (0x0100000UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00100000 */
3457#define ADC_OFR2_OFFSET2_21 (0x0200000UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00200000 */
3458#define ADC_OFR2_OFFSET2_22 (0x0400000UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00400000 */
3459#define ADC_OFR2_OFFSET2_23 (0x0800000UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x00800000 */
3460#define ADC_OFR2_OFFSET2_24 (0x1000000UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x01000000 */
3461#define ADC_OFR2_OFFSET2_25 (0x2000000UL << ADC_OFR2_OFFSET2_Pos) /*!< 0x02000000 */
3462
3463#define ADC_OFR2_OFFSET2_CH_Pos (26U)
3464#define ADC_OFR2_OFFSET2_CH_Msk (0x1FUL << ADC_OFR2_OFFSET2_CH_Pos) /*!< 0x7C000000 */
3465#define ADC_OFR2_OFFSET2_CH ADC_OFR2_OFFSET2_CH_Msk /*!< ADC Channel selection for the data offset 2 */
3466#define ADC_OFR2_OFFSET2_CH_0 (0x01UL << ADC_OFR2_OFFSET2_CH_Pos) /*!< 0x04000000 */
3467#define ADC_OFR2_OFFSET2_CH_1 (0x02UL << ADC_OFR2_OFFSET2_CH_Pos) /*!< 0x08000000 */
3468#define ADC_OFR2_OFFSET2_CH_2 (0x04UL << ADC_OFR2_OFFSET2_CH_Pos) /*!< 0x10000000 */
3469#define ADC_OFR2_OFFSET2_CH_3 (0x08UL << ADC_OFR2_OFFSET2_CH_Pos) /*!< 0x20000000 */
3470#define ADC_OFR2_OFFSET2_CH_4 (0x10UL << ADC_OFR2_OFFSET2_CH_Pos) /*!< 0x40000000 */
3471
3472#define ADC_OFR2_SSATE_Pos (31U)
3473#define ADC_OFR2_SSATE_Msk (0x1UL << ADC_OFR2_SSATE_Pos) /*!< 0x80000000 */
3474#define ADC_OFR2_SSATE ADC_OFR2_SSATE_Msk /*!< ADC Signed saturation Enable */
3475
3476
3477/******************** Bit definition for ADC_OFR3 register ********************/
3478#define ADC_OFR3_OFFSET3_Pos (0U)
3479#define ADC_OFR3_OFFSET3_Msk (0x3FFFFFFUL << ADC_OFR3_OFFSET3_Pos) /*!< 0x03FFFFFF */
3480#define ADC_OFR3_OFFSET3 ADC_OFR3_OFFSET3_Msk /*!< ADC data offset 3 for channel programmed into bits OFFSET3_CH[4:0] */
3481#define ADC_OFR3_OFFSET3_0 (0x0000001UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00000001 */
3482#define ADC_OFR3_OFFSET3_1 (0x0000002UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00000002 */
3483#define ADC_OFR3_OFFSET3_2 (0x0000004UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00000004 */
3484#define ADC_OFR3_OFFSET3_3 (0x0000008UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00000008 */
3485#define ADC_OFR3_OFFSET3_4 (0x0000010UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00000010 */
3486#define ADC_OFR3_OFFSET3_5 (0x0000020UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00000020 */
3487#define ADC_OFR3_OFFSET3_6 (0x0000040UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00000040 */
3488#define ADC_OFR3_OFFSET3_7 (0x0000080UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00000080 */
3489#define ADC_OFR3_OFFSET3_8 (0x0000100UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00000100 */
3490#define ADC_OFR3_OFFSET3_9 (0x0000200UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00000200 */
3491#define ADC_OFR3_OFFSET3_10 (0x0000400UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00000400 */
3492#define ADC_OFR3_OFFSET3_11 (0x0000800UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00000800 */
3493#define ADC_OFR3_OFFSET3_12 (0x0001000UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00001000 */
3494#define ADC_OFR3_OFFSET3_13 (0x0002000UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00002000 */
3495#define ADC_OFR3_OFFSET3_14 (0x0004000UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00004000 */
3496#define ADC_OFR3_OFFSET3_15 (0x0008000UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00008000 */
3497#define ADC_OFR3_OFFSET3_16 (0x0010000UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00010000 */
3498#define ADC_OFR3_OFFSET3_17 (0x0020000UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00020000 */
3499#define ADC_OFR3_OFFSET3_18 (0x0040000UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00040000 */
3500#define ADC_OFR3_OFFSET3_19 (0x0080000UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00080000 */
3501#define ADC_OFR3_OFFSET3_20 (0x0100000UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00100000 */
3502#define ADC_OFR3_OFFSET3_21 (0x0200000UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00200000 */
3503#define ADC_OFR3_OFFSET3_22 (0x0400000UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00400000 */
3504#define ADC_OFR3_OFFSET3_23 (0x0800000UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x00800000 */
3505#define ADC_OFR3_OFFSET3_24 (0x1000000UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x01000000 */
3506#define ADC_OFR3_OFFSET3_25 (0x2000000UL << ADC_OFR3_OFFSET3_Pos) /*!< 0x02000000 */
3507
3508#define ADC_OFR3_OFFSET3_CH_Pos (26U)
3509#define ADC_OFR3_OFFSET3_CH_Msk (0x1FUL << ADC_OFR3_OFFSET3_CH_Pos) /*!< 0x7C000000 */
3510#define ADC_OFR3_OFFSET3_CH ADC_OFR3_OFFSET3_CH_Msk /*!< ADC Channel selection for the data offset 3 */
3511#define ADC_OFR3_OFFSET3_CH_0 (0x01UL << ADC_OFR3_OFFSET3_CH_Pos) /*!< 0x04000000 */
3512#define ADC_OFR3_OFFSET3_CH_1 (0x02UL << ADC_OFR3_OFFSET3_CH_Pos) /*!< 0x08000000 */
3513#define ADC_OFR3_OFFSET3_CH_2 (0x04UL << ADC_OFR3_OFFSET3_CH_Pos) /*!< 0x10000000 */
3514#define ADC_OFR3_OFFSET3_CH_3 (0x08UL << ADC_OFR3_OFFSET3_CH_Pos) /*!< 0x20000000 */
3515#define ADC_OFR3_OFFSET3_CH_4 (0x10UL << ADC_OFR3_OFFSET3_CH_Pos) /*!< 0x40000000 */
3516
3517#define ADC_OFR3_SSATE_Pos (31U)
3518#define ADC_OFR3_SSATE_Msk (0x1UL << ADC_OFR3_SSATE_Pos) /*!< 0x80000000 */
3519#define ADC_OFR3_SSATE ADC_OFR3_SSATE_Msk /*!< ADC Signed saturation Enable */
3520
3521
3522/******************** Bit definition for ADC_OFR4 register ********************/
3523#define ADC_OFR4_OFFSET4_Pos (0U)
3524#define ADC_OFR4_OFFSET4_Msk (0x3FFFFFFUL << ADC_OFR4_OFFSET4_Pos) /*!< 0x03FFFFFF */
3525#define ADC_OFR4_OFFSET4 ADC_OFR4_OFFSET4_Msk /*!< ADC data offset 4 for channel programmed into bits OFFSET4_CH[4:0] */
3526#define ADC_OFR4_OFFSET4_0 (0x0000001UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00000001 */
3527#define ADC_OFR4_OFFSET4_1 (0x0000002UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00000002 */
3528#define ADC_OFR4_OFFSET4_2 (0x0000004UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00000004 */
3529#define ADC_OFR4_OFFSET4_3 (0x0000008UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00000008 */
3530#define ADC_OFR4_OFFSET4_4 (0x0000010UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00000010 */
3531#define ADC_OFR4_OFFSET4_5 (0x0000020UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00000020 */
3532#define ADC_OFR4_OFFSET4_6 (0x0000040UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00000040 */
3533#define ADC_OFR4_OFFSET4_7 (0x0000080UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00000080 */
3534#define ADC_OFR4_OFFSET4_8 (0x0000100UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00000100 */
3535#define ADC_OFR4_OFFSET4_9 (0x0000200UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00000200 */
3536#define ADC_OFR4_OFFSET4_10 (0x0000400UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00000400 */
3537#define ADC_OFR4_OFFSET4_11 (0x0000800UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00000800 */
3538#define ADC_OFR4_OFFSET4_12 (0x0001000UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00001000 */
3539#define ADC_OFR4_OFFSET4_13 (0x0002000UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00002000 */
3540#define ADC_OFR4_OFFSET4_14 (0x0004000UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00004000 */
3541#define ADC_OFR4_OFFSET4_15 (0x0008000UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00008000 */
3542#define ADC_OFR4_OFFSET4_16 (0x0010000UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00010000 */
3543#define ADC_OFR4_OFFSET4_17 (0x0020000UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00020000 */
3544#define ADC_OFR4_OFFSET4_18 (0x0040000UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00040000 */
3545#define ADC_OFR4_OFFSET4_19 (0x0080000UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00080000 */
3546#define ADC_OFR4_OFFSET4_20 (0x0100000UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00100000 */
3547#define ADC_OFR4_OFFSET4_21 (0x0200000UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00200000 */
3548#define ADC_OFR4_OFFSET4_22 (0x0400000UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00400000 */
3549#define ADC_OFR4_OFFSET4_23 (0x0800000UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x00800000 */
3550#define ADC_OFR4_OFFSET4_24 (0x1000000UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x01000000 */
3551#define ADC_OFR4_OFFSET4_25 (0x2000000UL << ADC_OFR4_OFFSET4_Pos) /*!< 0x02000000 */
3552
3553#define ADC_OFR4_OFFSET4_CH_Pos (26U)
3554#define ADC_OFR4_OFFSET4_CH_Msk (0x1FUL << ADC_OFR4_OFFSET4_CH_Pos) /*!< 0x7C000000 */
3555#define ADC_OFR4_OFFSET4_CH ADC_OFR4_OFFSET4_CH_Msk /*!< ADC Channel selection for the data offset 4 */
3556#define ADC_OFR4_OFFSET4_CH_0 (0x01UL << ADC_OFR4_OFFSET4_CH_Pos) /*!< 0x04000000 */
3557#define ADC_OFR4_OFFSET4_CH_1 (0x02UL << ADC_OFR4_OFFSET4_CH_Pos) /*!< 0x08000000 */
3558#define ADC_OFR4_OFFSET4_CH_2 (0x04UL << ADC_OFR4_OFFSET4_CH_Pos) /*!< 0x10000000 */
3559#define ADC_OFR4_OFFSET4_CH_3 (0x08UL << ADC_OFR4_OFFSET4_CH_Pos) /*!< 0x20000000 */
3560#define ADC_OFR4_OFFSET4_CH_4 (0x10UL << ADC_OFR4_OFFSET4_CH_Pos) /*!< 0x40000000 */
3561
3562#define ADC_OFR4_SSATE_Pos (31U)
3563#define ADC_OFR4_SSATE_Msk (0x1UL << ADC_OFR4_SSATE_Pos) /*!< 0x80000000 */
3564#define ADC_OFR4_SSATE ADC_OFR4_SSATE_Msk /*!< ADC Signed saturation Enable */
3565
3566
3567/******************** Bit definition for ADC_JDR1 register ********************/
3568#define ADC_JDR1_JDATA_Pos (0U)
3569#define ADC_JDR1_JDATA_Msk (0xFFFFFFFFUL << ADC_JDR1_JDATA_Pos) /*!< 0xFFFFFFFF */
3570#define ADC_JDR1_JDATA ADC_JDR1_JDATA_Msk /*!< ADC Injected DATA */
3571#define ADC_JDR1_JDATA_0 (0x00000001UL << ADC_JDR1_JDATA_Pos) /*!< 0x00000001 */
3572#define ADC_JDR1_JDATA_1 (0x00000002UL << ADC_JDR1_JDATA_Pos) /*!< 0x00000002 */
3573#define ADC_JDR1_JDATA_2 (0x00000004UL << ADC_JDR1_JDATA_Pos) /*!< 0x00000004 */
3574#define ADC_JDR1_JDATA_3 (0x00000008UL << ADC_JDR1_JDATA_Pos) /*!< 0x00000008 */
3575#define ADC_JDR1_JDATA_4 (0x00000010UL << ADC_JDR1_JDATA_Pos) /*!< 0x00000010 */
3576#define ADC_JDR1_JDATA_5 (0x00000020UL << ADC_JDR1_JDATA_Pos) /*!< 0x00000020 */
3577#define ADC_JDR1_JDATA_6 (0x00000040UL << ADC_JDR1_JDATA_Pos) /*!< 0x00000040 */
3578#define ADC_JDR1_JDATA_7 (0x00000080UL << ADC_JDR1_JDATA_Pos) /*!< 0x00000080 */
3579#define ADC_JDR1_JDATA_8 (0x00000100UL << ADC_JDR1_JDATA_Pos) /*!< 0x00000100 */
3580#define ADC_JDR1_JDATA_9 (0x00000200UL << ADC_JDR1_JDATA_Pos) /*!< 0x00000200 */
3581#define ADC_JDR1_JDATA_10 (0x00000400UL << ADC_JDR1_JDATA_Pos) /*!< 0x00000400 */
3582#define ADC_JDR1_JDATA_11 (0x00000800UL << ADC_JDR1_JDATA_Pos) /*!< 0x00000800 */
3583#define ADC_JDR1_JDATA_12 (0x00001000UL << ADC_JDR1_JDATA_Pos) /*!< 0x00001000 */
3584#define ADC_JDR1_JDATA_13 (0x00002000UL << ADC_JDR1_JDATA_Pos) /*!< 0x00002000 */
3585#define ADC_JDR1_JDATA_14 (0x00004000UL << ADC_JDR1_JDATA_Pos) /*!< 0x00004000 */
3586#define ADC_JDR1_JDATA_15 (0x00008000UL << ADC_JDR1_JDATA_Pos) /*!< 0x00008000 */
3587#define ADC_JDR1_JDATA_16 (0x00010000UL << ADC_JDR1_JDATA_Pos) /*!< 0x00010000 */
3588#define ADC_JDR1_JDATA_17 (0x00020000UL << ADC_JDR1_JDATA_Pos) /*!< 0x00020000 */
3589#define ADC_JDR1_JDATA_18 (0x00040000UL << ADC_JDR1_JDATA_Pos) /*!< 0x00040000 */
3590#define ADC_JDR1_JDATA_19 (0x00080000UL << ADC_JDR1_JDATA_Pos) /*!< 0x00080000 */
3591#define ADC_JDR1_JDATA_20 (0x00100000UL << ADC_JDR1_JDATA_Pos) /*!< 0x00100000 */
3592#define ADC_JDR1_JDATA_21 (0x00200000UL << ADC_JDR1_JDATA_Pos) /*!< 0x00200000 */
3593#define ADC_JDR1_JDATA_22 (0x00400000UL << ADC_JDR1_JDATA_Pos) /*!< 0x00400000 */
3594#define ADC_JDR1_JDATA_23 (0x00800000UL << ADC_JDR1_JDATA_Pos) /*!< 0x00800000 */
3595#define ADC_JDR1_JDATA_24 (0x01000000UL << ADC_JDR1_JDATA_Pos) /*!< 0x01000000 */
3596#define ADC_JDR1_JDATA_25 (0x02000000UL << ADC_JDR1_JDATA_Pos) /*!< 0x02000000 */
3597#define ADC_JDR1_JDATA_26 (0x04000000UL << ADC_JDR1_JDATA_Pos) /*!< 0x04000000 */
3598#define ADC_JDR1_JDATA_27 (0x08000000UL << ADC_JDR1_JDATA_Pos) /*!< 0x08000000 */
3599#define ADC_JDR1_JDATA_28 (0x10000000UL << ADC_JDR1_JDATA_Pos) /*!< 0x10000000 */
3600#define ADC_JDR1_JDATA_29 (0x20000000UL << ADC_JDR1_JDATA_Pos) /*!< 0x20000000 */
3601#define ADC_JDR1_JDATA_30 (0x40000000UL << ADC_JDR1_JDATA_Pos) /*!< 0x40000000 */
3602#define ADC_JDR1_JDATA_31 (0x80000000UL << ADC_JDR1_JDATA_Pos) /*!< 0x80000000 */
3603
3604/******************** Bit definition for ADC_JDR2 register ********************/
3605#define ADC_JDR2_JDATA_Pos (0U)
3606#define ADC_JDR2_JDATA_Msk (0xFFFFFFFFUL << ADC_JDR2_JDATA_Pos) /*!< 0xFFFFFFFF */
3607#define ADC_JDR2_JDATA ADC_JDR2_JDATA_Msk /*!< ADC Injected DATA */
3608#define ADC_JDR2_JDATA_0 (0x00000001UL << ADC_JDR2_JDATA_Pos) /*!< 0x00000001 */
3609#define ADC_JDR2_JDATA_1 (0x00000002UL << ADC_JDR2_JDATA_Pos) /*!< 0x00000002 */
3610#define ADC_JDR2_JDATA_2 (0x00000004UL << ADC_JDR2_JDATA_Pos) /*!< 0x00000004 */
3611#define ADC_JDR2_JDATA_3 (0x00000008UL << ADC_JDR2_JDATA_Pos) /*!< 0x00000008 */
3612#define ADC_JDR2_JDATA_4 (0x00000010UL << ADC_JDR2_JDATA_Pos) /*!< 0x00000010 */
3613#define ADC_JDR2_JDATA_5 (0x00000020UL << ADC_JDR2_JDATA_Pos) /*!< 0x00000020 */
3614#define ADC_JDR2_JDATA_6 (0x00000040UL << ADC_JDR2_JDATA_Pos) /*!< 0x00000040 */
3615#define ADC_JDR2_JDATA_7 (0x00000080UL << ADC_JDR2_JDATA_Pos) /*!< 0x00000080 */
3616#define ADC_JDR2_JDATA_8 (0x00000100UL << ADC_JDR2_JDATA_Pos) /*!< 0x00000100 */
3617#define ADC_JDR2_JDATA_9 (0x00000200UL << ADC_JDR2_JDATA_Pos) /*!< 0x00000200 */
3618#define ADC_JDR2_JDATA_10 (0x00000400UL << ADC_JDR2_JDATA_Pos) /*!< 0x00000400 */
3619#define ADC_JDR2_JDATA_11 (0x00000800UL << ADC_JDR2_JDATA_Pos) /*!< 0x00000800 */
3620#define ADC_JDR2_JDATA_12 (0x00001000UL << ADC_JDR2_JDATA_Pos) /*!< 0x00001000 */
3621#define ADC_JDR2_JDATA_13 (0x00002000UL << ADC_JDR2_JDATA_Pos) /*!< 0x00002000 */
3622#define ADC_JDR2_JDATA_14 (0x00004000UL << ADC_JDR2_JDATA_Pos) /*!< 0x00004000 */
3623#define ADC_JDR2_JDATA_15 (0x00008000UL << ADC_JDR2_JDATA_Pos) /*!< 0x00008000 */
3624#define ADC_JDR2_JDATA_16 (0x00010000UL << ADC_JDR2_JDATA_Pos) /*!< 0x00010000 */
3625#define ADC_JDR2_JDATA_17 (0x00020000UL << ADC_JDR2_JDATA_Pos) /*!< 0x00020000 */
3626#define ADC_JDR2_JDATA_18 (0x00040000UL << ADC_JDR2_JDATA_Pos) /*!< 0x00040000 */
3627#define ADC_JDR2_JDATA_19 (0x00080000UL << ADC_JDR2_JDATA_Pos) /*!< 0x00080000 */
3628#define ADC_JDR2_JDATA_20 (0x00100000UL << ADC_JDR2_JDATA_Pos) /*!< 0x00100000 */
3629#define ADC_JDR2_JDATA_21 (0x00200000UL << ADC_JDR2_JDATA_Pos) /*!< 0x00200000 */
3630#define ADC_JDR2_JDATA_22 (0x00400000UL << ADC_JDR2_JDATA_Pos) /*!< 0x00400000 */
3631#define ADC_JDR2_JDATA_23 (0x00800000UL << ADC_JDR2_JDATA_Pos) /*!< 0x00800000 */
3632#define ADC_JDR2_JDATA_24 (0x01000000UL << ADC_JDR2_JDATA_Pos) /*!< 0x01000000 */
3633#define ADC_JDR2_JDATA_25 (0x02000000UL << ADC_JDR2_JDATA_Pos) /*!< 0x02000000 */
3634#define ADC_JDR2_JDATA_26 (0x04000000UL << ADC_JDR2_JDATA_Pos) /*!< 0x04000000 */
3635#define ADC_JDR2_JDATA_27 (0x08000000UL << ADC_JDR2_JDATA_Pos) /*!< 0x08000000 */
3636#define ADC_JDR2_JDATA_28 (0x10000000UL << ADC_JDR2_JDATA_Pos) /*!< 0x10000000 */
3637#define ADC_JDR2_JDATA_29 (0x20000000UL << ADC_JDR2_JDATA_Pos) /*!< 0x20000000 */
3638#define ADC_JDR2_JDATA_30 (0x40000000UL << ADC_JDR2_JDATA_Pos) /*!< 0x40000000 */
3639#define ADC_JDR2_JDATA_31 (0x80000000UL << ADC_JDR2_JDATA_Pos) /*!< 0x80000000 */
3640
3641/******************** Bit definition for ADC_JDR3 register ********************/
3642#define ADC_JDR3_JDATA_Pos (0U)
3643#define ADC_JDR3_JDATA_Msk (0xFFFFFFFFUL << ADC_JDR3_JDATA_Pos) /*!< 0xFFFFFFFF */
3644#define ADC_JDR3_JDATA ADC_JDR3_JDATA_Msk /*!< ADC Injected DATA */
3645#define ADC_JDR3_JDATA_0 (0x00000001UL << ADC_JDR3_JDATA_Pos) /*!< 0x00000001 */
3646#define ADC_JDR3_JDATA_1 (0x00000002UL << ADC_JDR3_JDATA_Pos) /*!< 0x00000002 */
3647#define ADC_JDR3_JDATA_2 (0x00000004UL << ADC_JDR3_JDATA_Pos) /*!< 0x00000004 */
3648#define ADC_JDR3_JDATA_3 (0x00000008UL << ADC_JDR3_JDATA_Pos) /*!< 0x00000008 */
3649#define ADC_JDR3_JDATA_4 (0x00000010UL << ADC_JDR3_JDATA_Pos) /*!< 0x00000010 */
3650#define ADC_JDR3_JDATA_5 (0x00000020UL << ADC_JDR3_JDATA_Pos) /*!< 0x00000020 */
3651#define ADC_JDR3_JDATA_6 (0x00000040UL << ADC_JDR3_JDATA_Pos) /*!< 0x00000040 */
3652#define ADC_JDR3_JDATA_7 (0x00000080UL << ADC_JDR3_JDATA_Pos) /*!< 0x00000080 */
3653#define ADC_JDR3_JDATA_8 (0x00000100UL << ADC_JDR3_JDATA_Pos) /*!< 0x00000100 */
3654#define ADC_JDR3_JDATA_9 (0x00000200UL << ADC_JDR3_JDATA_Pos) /*!< 0x00000200 */
3655#define ADC_JDR3_JDATA_10 (0x00000400UL << ADC_JDR3_JDATA_Pos) /*!< 0x00000400 */
3656#define ADC_JDR3_JDATA_11 (0x00000800UL << ADC_JDR3_JDATA_Pos) /*!< 0x00000800 */
3657#define ADC_JDR3_JDATA_12 (0x00001000UL << ADC_JDR3_JDATA_Pos) /*!< 0x00001000 */
3658#define ADC_JDR3_JDATA_13 (0x00002000UL << ADC_JDR3_JDATA_Pos) /*!< 0x00002000 */
3659#define ADC_JDR3_JDATA_14 (0x00004000UL << ADC_JDR3_JDATA_Pos) /*!< 0x00004000 */
3660#define ADC_JDR3_JDATA_15 (0x00008000UL << ADC_JDR3_JDATA_Pos) /*!< 0x00008000 */
3661#define ADC_JDR3_JDATA_16 (0x00010000UL << ADC_JDR3_JDATA_Pos) /*!< 0x00010000 */
3662#define ADC_JDR3_JDATA_17 (0x00020000UL << ADC_JDR3_JDATA_Pos) /*!< 0x00020000 */
3663#define ADC_JDR3_JDATA_18 (0x00040000UL << ADC_JDR3_JDATA_Pos) /*!< 0x00040000 */
3664#define ADC_JDR3_JDATA_19 (0x00080000UL << ADC_JDR3_JDATA_Pos) /*!< 0x00080000 */
3665#define ADC_JDR3_JDATA_20 (0x00100000UL << ADC_JDR3_JDATA_Pos) /*!< 0x00100000 */
3666#define ADC_JDR3_JDATA_21 (0x00200000UL << ADC_JDR3_JDATA_Pos) /*!< 0x00200000 */
3667#define ADC_JDR3_JDATA_22 (0x00400000UL << ADC_JDR3_JDATA_Pos) /*!< 0x00400000 */
3668#define ADC_JDR3_JDATA_23 (0x00800000UL << ADC_JDR3_JDATA_Pos) /*!< 0x00800000 */
3669#define ADC_JDR3_JDATA_24 (0x01000000UL << ADC_JDR3_JDATA_Pos) /*!< 0x01000000 */
3670#define ADC_JDR3_JDATA_25 (0x02000000UL << ADC_JDR3_JDATA_Pos) /*!< 0x02000000 */
3671#define ADC_JDR3_JDATA_26 (0x04000000UL << ADC_JDR3_JDATA_Pos) /*!< 0x04000000 */
3672#define ADC_JDR3_JDATA_27 (0x08000000UL << ADC_JDR3_JDATA_Pos) /*!< 0x08000000 */
3673#define ADC_JDR3_JDATA_28 (0x10000000UL << ADC_JDR3_JDATA_Pos) /*!< 0x10000000 */
3674#define ADC_JDR3_JDATA_29 (0x20000000UL << ADC_JDR3_JDATA_Pos) /*!< 0x20000000 */
3675#define ADC_JDR3_JDATA_30 (0x40000000UL << ADC_JDR3_JDATA_Pos) /*!< 0x40000000 */
3676#define ADC_JDR3_JDATA_31 (0x80000000UL << ADC_JDR3_JDATA_Pos) /*!< 0x80000000 */
3677
3678/******************** Bit definition for ADC_JDR4 register ********************/
3679#define ADC_JDR4_JDATA_Pos (0U)
3680#define ADC_JDR4_JDATA_Msk (0xFFFFFFFFUL << ADC_JDR4_JDATA_Pos) /*!< 0xFFFFFFFF */
3681#define ADC_JDR4_JDATA ADC_JDR4_JDATA_Msk /*!< ADC Injected DATA */
3682#define ADC_JDR4_JDATA_0 (0x00000001UL << ADC_JDR4_JDATA_Pos) /*!< 0x00000001 */
3683#define ADC_JDR4_JDATA_1 (0x00000002UL << ADC_JDR4_JDATA_Pos) /*!< 0x00000002 */
3684#define ADC_JDR4_JDATA_2 (0x00000004UL << ADC_JDR4_JDATA_Pos) /*!< 0x00000004 */
3685#define ADC_JDR4_JDATA_3 (0x00000008UL << ADC_JDR4_JDATA_Pos) /*!< 0x00000008 */
3686#define ADC_JDR4_JDATA_4 (0x00000010UL << ADC_JDR4_JDATA_Pos) /*!< 0x00000010 */
3687#define ADC_JDR4_JDATA_5 (0x00000020UL << ADC_JDR4_JDATA_Pos) /*!< 0x00000020 */
3688#define ADC_JDR4_JDATA_6 (0x00000040UL << ADC_JDR4_JDATA_Pos) /*!< 0x00000040 */
3689#define ADC_JDR4_JDATA_7 (0x00000080UL << ADC_JDR4_JDATA_Pos) /*!< 0x00000080 */
3690#define ADC_JDR4_JDATA_8 (0x00000100UL << ADC_JDR4_JDATA_Pos) /*!< 0x00000100 */
3691#define ADC_JDR4_JDATA_9 (0x00000200UL << ADC_JDR4_JDATA_Pos) /*!< 0x00000200 */
3692#define ADC_JDR4_JDATA_10 (0x00000400UL << ADC_JDR4_JDATA_Pos) /*!< 0x00000400 */
3693#define ADC_JDR4_JDATA_11 (0x00000800UL << ADC_JDR4_JDATA_Pos) /*!< 0x00000800 */
3694#define ADC_JDR4_JDATA_12 (0x00001000UL << ADC_JDR4_JDATA_Pos) /*!< 0x00001000 */
3695#define ADC_JDR4_JDATA_13 (0x00002000UL << ADC_JDR4_JDATA_Pos) /*!< 0x00002000 */
3696#define ADC_JDR4_JDATA_14 (0x00004000UL << ADC_JDR4_JDATA_Pos) /*!< 0x00004000 */
3697#define ADC_JDR4_JDATA_15 (0x00008000UL << ADC_JDR4_JDATA_Pos) /*!< 0x00008000 */
3698#define ADC_JDR4_JDATA_16 (0x00010000UL << ADC_JDR4_JDATA_Pos) /*!< 0x00010000 */
3699#define ADC_JDR4_JDATA_17 (0x00020000UL << ADC_JDR4_JDATA_Pos) /*!< 0x00020000 */
3700#define ADC_JDR4_JDATA_18 (0x00040000UL << ADC_JDR4_JDATA_Pos) /*!< 0x00040000 */
3701#define ADC_JDR4_JDATA_19 (0x00080000UL << ADC_JDR4_JDATA_Pos) /*!< 0x00080000 */
3702#define ADC_JDR4_JDATA_20 (0x00100000UL << ADC_JDR4_JDATA_Pos) /*!< 0x00100000 */
3703#define ADC_JDR4_JDATA_21 (0x00200000UL << ADC_JDR4_JDATA_Pos) /*!< 0x00200000 */
3704#define ADC_JDR4_JDATA_22 (0x00400000UL << ADC_JDR4_JDATA_Pos) /*!< 0x00400000 */
3705#define ADC_JDR4_JDATA_23 (0x00800000UL << ADC_JDR4_JDATA_Pos) /*!< 0x00800000 */
3706#define ADC_JDR4_JDATA_24 (0x01000000UL << ADC_JDR4_JDATA_Pos) /*!< 0x01000000 */
3707#define ADC_JDR4_JDATA_25 (0x02000000UL << ADC_JDR4_JDATA_Pos) /*!< 0x02000000 */
3708#define ADC_JDR4_JDATA_26 (0x04000000UL << ADC_JDR4_JDATA_Pos) /*!< 0x04000000 */
3709#define ADC_JDR4_JDATA_27 (0x08000000UL << ADC_JDR4_JDATA_Pos) /*!< 0x08000000 */
3710#define ADC_JDR4_JDATA_28 (0x10000000UL << ADC_JDR4_JDATA_Pos) /*!< 0x10000000 */
3711#define ADC_JDR4_JDATA_29 (0x20000000UL << ADC_JDR4_JDATA_Pos) /*!< 0x20000000 */
3712#define ADC_JDR4_JDATA_30 (0x40000000UL << ADC_JDR4_JDATA_Pos) /*!< 0x40000000 */
3713#define ADC_JDR4_JDATA_31 (0x80000000UL << ADC_JDR4_JDATA_Pos) /*!< 0x80000000 */
3714
3715/******************** Bit definition for ADC_AWD2CR register ********************/
3716#define ADC_AWD2CR_AWD2CH_Pos (0U)
3717#define ADC_AWD2CR_AWD2CH_Msk (0xFFFFFUL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x000FFFFF */
3718#define ADC_AWD2CR_AWD2CH ADC_AWD2CR_AWD2CH_Msk /*!< ADC Analog watchdog 2 channel selection */
3719#define ADC_AWD2CR_AWD2CH_0 (0x00001UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000001 */
3720#define ADC_AWD2CR_AWD2CH_1 (0x00002UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000002 */
3721#define ADC_AWD2CR_AWD2CH_2 (0x00004UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000004 */
3722#define ADC_AWD2CR_AWD2CH_3 (0x00008UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000008 */
3723#define ADC_AWD2CR_AWD2CH_4 (0x00010UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000010 */
3724#define ADC_AWD2CR_AWD2CH_5 (0x00020UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000020 */
3725#define ADC_AWD2CR_AWD2CH_6 (0x00040UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000040 */
3726#define ADC_AWD2CR_AWD2CH_7 (0x00080UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000080 */
3727#define ADC_AWD2CR_AWD2CH_8 (0x00100UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000100 */
3728#define ADC_AWD2CR_AWD2CH_9 (0x00200UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000200 */
3729#define ADC_AWD2CR_AWD2CH_10 (0x00400UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000400 */
3730#define ADC_AWD2CR_AWD2CH_11 (0x00800UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00000800 */
3731#define ADC_AWD2CR_AWD2CH_12 (0x01000UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00001000 */
3732#define ADC_AWD2CR_AWD2CH_13 (0x02000UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00002000 */
3733#define ADC_AWD2CR_AWD2CH_14 (0x04000UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00004000 */
3734#define ADC_AWD2CR_AWD2CH_15 (0x08000UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00008000 */
3735#define ADC_AWD2CR_AWD2CH_16 (0x10000UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00010000 */
3736#define ADC_AWD2CR_AWD2CH_17 (0x20000UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00020000 */
3737#define ADC_AWD2CR_AWD2CH_18 (0x40000UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00040000 */
3738#define ADC_AWD2CR_AWD2CH_19 (0x80000UL << ADC_AWD2CR_AWD2CH_Pos) /*!< 0x00080000 */
3739
3740/******************** Bit definition for ADC_AWD3CR register ********************/
3741#define ADC_AWD3CR_AWD3CH_Pos (0U)
3742#define ADC_AWD3CR_AWD3CH_Msk (0xFFFFFUL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x000FFFFF */
3743#define ADC_AWD3CR_AWD3CH ADC_AWD3CR_AWD3CH_Msk /*!< ADC Analog watchdog 2 channel selection */
3744#define ADC_AWD3CR_AWD3CH_0 (0x00001UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000001 */
3745#define ADC_AWD3CR_AWD3CH_1 (0x00002UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000002 */
3746#define ADC_AWD3CR_AWD3CH_2 (0x00004UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000004 */
3747#define ADC_AWD3CR_AWD3CH_3 (0x00008UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000008 */
3748#define ADC_AWD3CR_AWD3CH_4 (0x00010UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000010 */
3749#define ADC_AWD3CR_AWD3CH_5 (0x00020UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000020 */
3750#define ADC_AWD3CR_AWD3CH_6 (0x00040UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000040 */
3751#define ADC_AWD3CR_AWD3CH_7 (0x00080UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000080 */
3752#define ADC_AWD3CR_AWD3CH_8 (0x00100UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000100 */
3753#define ADC_AWD3CR_AWD3CH_9 (0x00200UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000200 */
3754#define ADC_AWD3CR_AWD3CH_10 (0x00400UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000400 */
3755#define ADC_AWD3CR_AWD3CH_11 (0x00800UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00000800 */
3756#define ADC_AWD3CR_AWD3CH_12 (0x01000UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00001000 */
3757#define ADC_AWD3CR_AWD3CH_13 (0x02000UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00002000 */
3758#define ADC_AWD3CR_AWD3CH_14 (0x04000UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00004000 */
3759#define ADC_AWD3CR_AWD3CH_15 (0x08000UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00008000 */
3760#define ADC_AWD3CR_AWD3CH_16 (0x10000UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00010000 */
3761#define ADC_AWD3CR_AWD3CH_17 (0x20000UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00020000 */
3762#define ADC_AWD3CR_AWD3CH_18 (0x40000UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00040000 */
3763#define ADC_AWD3CR_AWD3CH_19 (0x80000UL << ADC_AWD3CR_AWD3CH_Pos) /*!< 0x00080000 */
3764
3765/******************** Bit definition for ADC_DIFSEL register ********************/
3766#define ADC_DIFSEL_DIFSEL_Pos (0U)
3767#define ADC_DIFSEL_DIFSEL_Msk (0xFFFFFUL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x000FFFFF */
3768#define ADC_DIFSEL_DIFSEL ADC_DIFSEL_DIFSEL_Msk /*!< ADC differential modes for channels 1 to 18 */
3769#define ADC_DIFSEL_DIFSEL_0 (0x00001UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00000001 */
3770#define ADC_DIFSEL_DIFSEL_1 (0x00002UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00000002 */
3771#define ADC_DIFSEL_DIFSEL_2 (0x00004UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00000004 */
3772#define ADC_DIFSEL_DIFSEL_3 (0x00008UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00000008 */
3773#define ADC_DIFSEL_DIFSEL_4 (0x00010UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00000010 */
3774#define ADC_DIFSEL_DIFSEL_5 (0x00020UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00000020 */
3775#define ADC_DIFSEL_DIFSEL_6 (0x00040UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00000040 */
3776#define ADC_DIFSEL_DIFSEL_7 (0x00080UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00000080 */
3777#define ADC_DIFSEL_DIFSEL_8 (0x00100UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00000100 */
3778#define ADC_DIFSEL_DIFSEL_9 (0x00200UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00000200 */
3779#define ADC_DIFSEL_DIFSEL_10 (0x00400UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00000400 */
3780#define ADC_DIFSEL_DIFSEL_11 (0x00800UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00000800 */
3781#define ADC_DIFSEL_DIFSEL_12 (0x01000UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00001000 */
3782#define ADC_DIFSEL_DIFSEL_13 (0x02000UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00002000 */
3783#define ADC_DIFSEL_DIFSEL_14 (0x04000UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00004000 */
3784#define ADC_DIFSEL_DIFSEL_15 (0x08000UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00008000 */
3785#define ADC_DIFSEL_DIFSEL_16 (0x10000UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00010000 */
3786#define ADC_DIFSEL_DIFSEL_17 (0x20000UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00020000 */
3787#define ADC_DIFSEL_DIFSEL_18 (0x40000UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00040000 */
3788#define ADC_DIFSEL_DIFSEL_19 (0x80000UL << ADC_DIFSEL_DIFSEL_Pos) /*!< 0x00080000 */
3789
3790/******************** Bit definition for ADC_CALFACT register ********************/
3791#define ADC_CALFACT_CALFACT_S_Pos (0U)
3792#define ADC_CALFACT_CALFACT_S_Msk (0x7FFUL << ADC_CALFACT_CALFACT_S_Pos) /*!< 0x000007FF */
3793#define ADC_CALFACT_CALFACT_S ADC_CALFACT_CALFACT_S_Msk /*!< ADC calibration factors in single-ended mode */
3794#define ADC_CALFACT_CALFACT_S_0 (0x001UL << ADC_CALFACT_CALFACT_S_Pos) /*!< 0x00000001 */
3795#define ADC_CALFACT_CALFACT_S_1 (0x002UL << ADC_CALFACT_CALFACT_S_Pos) /*!< 0x00000002 */
3796#define ADC_CALFACT_CALFACT_S_2 (0x004UL << ADC_CALFACT_CALFACT_S_Pos) /*!< 0x00000004 */
3797#define ADC_CALFACT_CALFACT_S_3 (0x008UL << ADC_CALFACT_CALFACT_S_Pos) /*!< 0x00000008 */
3798#define ADC_CALFACT_CALFACT_S_4 (0x010UL << ADC_CALFACT_CALFACT_S_Pos) /*!< 0x00000010 */
3799#define ADC_CALFACT_CALFACT_S_5 (0x020UL << ADC_CALFACT_CALFACT_S_Pos) /*!< 0x00000020 */
3800#define ADC_CALFACT_CALFACT_S_6 (0x040UL << ADC_CALFACT_CALFACT_S_Pos) /*!< 0x00000040 */
3801#define ADC_CALFACT_CALFACT_S_7 (0x080UL << ADC_CALFACT_CALFACT_S_Pos) /*!< 0x00000080 */
3802#define ADC_CALFACT_CALFACT_S_8 (0x100UL << ADC_CALFACT_CALFACT_S_Pos) /*!< 0x00000100 */
3803#define ADC_CALFACT_CALFACT_S_9 (0x200UL << ADC_CALFACT_CALFACT_S_Pos) /*!< 0x00000200 */
3804#define ADC_CALFACT_CALFACT_S_10 (0x400UL << ADC_CALFACT_CALFACT_S_Pos) /*!< 0x00000400 */
3805#define ADC_CALFACT_CALFACT_D_Pos (16U)
3806#define ADC_CALFACT_CALFACT_D_Msk (0x7FFUL << ADC_CALFACT_CALFACT_D_Pos) /*!< 0x07FF0000 */
3807#define ADC_CALFACT_CALFACT_D ADC_CALFACT_CALFACT_D_Msk /*!< ADC calibration factors in differential mode */
3808#define ADC_CALFACT_CALFACT_D_0 (0x001UL << ADC_CALFACT_CALFACT_D_Pos) /*!< 0x00010000 */
3809#define ADC_CALFACT_CALFACT_D_1 (0x002UL << ADC_CALFACT_CALFACT_D_Pos) /*!< 0x00020000 */
3810#define ADC_CALFACT_CALFACT_D_2 (0x004UL << ADC_CALFACT_CALFACT_D_Pos) /*!< 0x00040000 */
3811#define ADC_CALFACT_CALFACT_D_3 (0x008UL << ADC_CALFACT_CALFACT_D_Pos) /*!< 0x00080000 */
3812#define ADC_CALFACT_CALFACT_D_4 (0x010UL << ADC_CALFACT_CALFACT_D_Pos) /*!< 0x00100000 */
3813#define ADC_CALFACT_CALFACT_D_5 (0x020UL << ADC_CALFACT_CALFACT_D_Pos) /*!< 0x00200000 */
3814#define ADC_CALFACT_CALFACT_D_6 (0x040UL << ADC_CALFACT_CALFACT_D_Pos) /*!< 0x00400000 */
3815#define ADC_CALFACT_CALFACT_D_7 (0x080UL << ADC_CALFACT_CALFACT_D_Pos) /*!< 0x00800000 */
3816#define ADC_CALFACT_CALFACT_D_8 (0x100UL << ADC_CALFACT_CALFACT_D_Pos) /*!< 0x01000000 */
3817#define ADC_CALFACT_CALFACT_D_9 (0x200UL << ADC_CALFACT_CALFACT_D_Pos) /*!< 0x02000000 */
3818#define ADC_CALFACT_CALFACT_D_10 (0x400UL << ADC_CALFACT_CALFACT_D_Pos) /*!< 0x04000000 */
3819
3820/******************** Bit definition for ADC_CALFACT2 register ********************/
3821#define ADC_CALFACT2_LINCALFACT_Pos (0U)
3822#define ADC_CALFACT2_LINCALFACT_Msk (0x3FFFFFFFUL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x3FFFFFFF */
3823#define ADC_CALFACT2_LINCALFACT ADC_CALFACT2_LINCALFACT_Msk /*!< ADC Linearity calibration factors */
3824#define ADC_CALFACT2_LINCALFACT_0 (0x00000001UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00000001 */
3825#define ADC_CALFACT2_LINCALFACT_1 (0x00000002UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00000002 */
3826#define ADC_CALFACT2_LINCALFACT_2 (0x00000004UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00000004 */
3827#define ADC_CALFACT2_LINCALFACT_3 (0x00000008UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00000008 */
3828#define ADC_CALFACT2_LINCALFACT_4 (0x00000010UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00000010 */
3829#define ADC_CALFACT2_LINCALFACT_5 (0x00000020UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00000020 */
3830#define ADC_CALFACT2_LINCALFACT_6 (0x00000040UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00000040 */
3831#define ADC_CALFACT2_LINCALFACT_7 (0x00000080UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00000080 */
3832#define ADC_CALFACT2_LINCALFACT_8 (0x00000100UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00000100 */
3833#define ADC_CALFACT2_LINCALFACT_9 (0x00000200UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00000200 */
3834#define ADC_CALFACT2_LINCALFACT_10 (0x00000400UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00000400 */
3835#define ADC_CALFACT2_LINCALFACT_11 (0x00000800UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00000800 */
3836#define ADC_CALFACT2_LINCALFACT_12 (0x00001000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00001000 */
3837#define ADC_CALFACT2_LINCALFACT_13 (0x00002000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00002000 */
3838#define ADC_CALFACT2_LINCALFACT_14 (0x00004000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00004000 */
3839#define ADC_CALFACT2_LINCALFACT_15 (0x00008000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00008000 */
3840#define ADC_CALFACT2_LINCALFACT_16 (0x00010000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00010000 */
3841#define ADC_CALFACT2_LINCALFACT_17 (0x00020000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00020000 */
3842#define ADC_CALFACT2_LINCALFACT_18 (0x00040000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00040000 */
3843#define ADC_CALFACT2_LINCALFACT_19 (0x00080000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00080000 */
3844#define ADC_CALFACT2_LINCALFACT_20 (0x00100000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00100000 */
3845#define ADC_CALFACT2_LINCALFACT_21 (0x00200000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00200000 */
3846#define ADC_CALFACT2_LINCALFACT_22 (0x00400000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00400000 */
3847#define ADC_CALFACT2_LINCALFACT_23 (0x00800000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x00800000 */
3848#define ADC_CALFACT2_LINCALFACT_24 (0x01000000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x01000000 */
3849#define ADC_CALFACT2_LINCALFACT_25 (0x02000000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x02000000 */
3850#define ADC_CALFACT2_LINCALFACT_26 (0x04000000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x04000000 */
3851#define ADC_CALFACT2_LINCALFACT_27 (0x08000000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x08000000 */
3852#define ADC_CALFACT2_LINCALFACT_28 (0x10000000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x10000000 */
3853#define ADC_CALFACT2_LINCALFACT_29 (0x20000000UL << ADC_CALFACT2_LINCALFACT_Pos) /*!< 0x20000000 */
3854
3855/************************* ADC Common registers *****************************/
3856/******************** Bit definition for ADC_CSR register ********************/
3857#define ADC_CSR_ADRDY_MST_Pos (0U)
3858#define ADC_CSR_ADRDY_MST_Msk (0x1UL << ADC_CSR_ADRDY_MST_Pos) /*!< 0x00000001 */
3859#define ADC_CSR_ADRDY_MST ADC_CSR_ADRDY_MST_Msk /*!< Master ADC ready */
3860#define ADC_CSR_EOSMP_MST_Pos (1U)
3861#define ADC_CSR_EOSMP_MST_Msk (0x1UL << ADC_CSR_EOSMP_MST_Pos) /*!< 0x00000002 */
3862#define ADC_CSR_EOSMP_MST ADC_CSR_EOSMP_MST_Msk /*!< End of sampling phase flag of the master ADC */
3863#define ADC_CSR_EOC_MST_Pos (2U)
3864#define ADC_CSR_EOC_MST_Msk (0x1UL << ADC_CSR_EOC_MST_Pos) /*!< 0x00000004 */
3865#define ADC_CSR_EOC_MST ADC_CSR_EOC_MST_Msk /*!< End of regular conversion of the master ADC */
3866#define ADC_CSR_EOS_MST_Pos (3U)
3867#define ADC_CSR_EOS_MST_Msk (0x1UL << ADC_CSR_EOS_MST_Pos) /*!< 0x00000008 */
3868#define ADC_CSR_EOS_MST ADC_CSR_EOS_MST_Msk /*!< End of regular sequence flag of the master ADC */
3869#define ADC_CSR_OVR_MST_Pos (4U)
3870#define ADC_CSR_OVR_MST_Msk (0x1UL << ADC_CSR_OVR_MST_Pos) /*!< 0x00000010 */
3871#define ADC_CSR_OVR_MST ADC_CSR_OVR_MST_Msk /*!< Overrun flag of the master ADC */
3872#define ADC_CSR_JEOC_MST_Pos (5U)
3873#define ADC_CSR_JEOC_MST_Msk (0x1UL << ADC_CSR_JEOC_MST_Pos) /*!< 0x00000020 */
3874#define ADC_CSR_JEOC_MST ADC_CSR_JEOC_MST_Msk /*!< End of injected conversion of the master ADC */
3875#define ADC_CSR_JEOS_MST_Pos (6U)
3876#define ADC_CSR_JEOS_MST_Msk (0x1UL << ADC_CSR_JEOS_MST_Pos) /*!< 0x00000040 */
3877#define ADC_CSR_JEOS_MST ADC_CSR_JEOS_MST_Msk /*!< End of injected sequence flag of the master ADC */
3878#define ADC_CSR_AWD1_MST_Pos (7U)
3879#define ADC_CSR_AWD1_MST_Msk (0x1UL << ADC_CSR_AWD1_MST_Pos) /*!< 0x00000080 */
3880#define ADC_CSR_AWD1_MST ADC_CSR_AWD1_MST_Msk /*!< Analog watchdog 1 flag of the master ADC */
3881#define ADC_CSR_AWD2_MST_Pos (8U)
3882#define ADC_CSR_AWD2_MST_Msk (0x1UL << ADC_CSR_AWD2_MST_Pos) /*!< 0x00000100 */
3883#define ADC_CSR_AWD2_MST ADC_CSR_AWD2_MST_Msk /*!< Analog watchdog 2 flag of the master ADC */
3884#define ADC_CSR_AWD3_MST_Pos (9U)
3885#define ADC_CSR_AWD3_MST_Msk (0x1UL << ADC_CSR_AWD3_MST_Pos) /*!< 0x00000200 */
3886#define ADC_CSR_AWD3_MST ADC_CSR_AWD3_MST_Msk /*!< Analog watchdog 3 flag of the master ADC */
3887#define ADC_CSR_JQOVF_MST_Pos (10U)
3888#define ADC_CSR_JQOVF_MST_Msk (0x1UL << ADC_CSR_JQOVF_MST_Pos) /*!< 0x00000400 */
3889#define ADC_CSR_JQOVF_MST ADC_CSR_JQOVF_MST_Msk /*!< Injected context queue overflow flag of the master ADC */
3890#define ADC_CSR_ADRDY_SLV_Pos (16U)
3891#define ADC_CSR_ADRDY_SLV_Msk (0x1UL << ADC_CSR_ADRDY_SLV_Pos) /*!< 0x00010000 */
3892#define ADC_CSR_ADRDY_SLV ADC_CSR_ADRDY_SLV_Msk /*!< Slave ADC ready */
3893#define ADC_CSR_EOSMP_SLV_Pos (17U)
3894#define ADC_CSR_EOSMP_SLV_Msk (0x1UL << ADC_CSR_EOSMP_SLV_Pos) /*!< 0x00020000 */
3895#define ADC_CSR_EOSMP_SLV ADC_CSR_EOSMP_SLV_Msk /*!< End of sampling phase flag of the slave ADC */
3896#define ADC_CSR_EOC_SLV_Pos (18U)
3897#define ADC_CSR_EOC_SLV_Msk (0x1UL << ADC_CSR_EOC_SLV_Pos) /*!< 0x00040000 */
3898#define ADC_CSR_EOC_SLV ADC_CSR_EOC_SLV_Msk /*!< End of regular conversion of the slave ADC */
3899#define ADC_CSR_EOS_SLV_Pos (19U)
3900#define ADC_CSR_EOS_SLV_Msk (0x1UL << ADC_CSR_EOS_SLV_Pos) /*!< 0x00080000 */
3901#define ADC_CSR_EOS_SLV ADC_CSR_EOS_SLV_Msk /*!< End of regular sequence flag of the slave ADC */
3902#define ADC_CSR_OVR_SLV_Pos (20U)
3903#define ADC_CSR_OVR_SLV_Msk (0x1UL << ADC_CSR_OVR_SLV_Pos) /*!< 0x00100000 */
3904#define ADC_CSR_OVR_SLV ADC_CSR_OVR_SLV_Msk /*!< Overrun flag of the slave ADC */
3905#define ADC_CSR_JEOC_SLV_Pos (21U)
3906#define ADC_CSR_JEOC_SLV_Msk (0x1UL << ADC_CSR_JEOC_SLV_Pos) /*!< 0x00200000 */
3907#define ADC_CSR_JEOC_SLV ADC_CSR_JEOC_SLV_Msk /*!< End of injected conversion of the slave ADC */
3908#define ADC_CSR_JEOS_SLV_Pos (22U)
3909#define ADC_CSR_JEOS_SLV_Msk (0x1UL << ADC_CSR_JEOS_SLV_Pos) /*!< 0x00400000 */
3910#define ADC_CSR_JEOS_SLV ADC_CSR_JEOS_SLV_Msk /*!< End of injected sequence flag of the slave ADC */
3911#define ADC_CSR_AWD1_SLV_Pos (23U)
3912#define ADC_CSR_AWD1_SLV_Msk (0x1UL << ADC_CSR_AWD1_SLV_Pos) /*!< 0x00800000 */
3913#define ADC_CSR_AWD1_SLV ADC_CSR_AWD1_SLV_Msk /*!< Analog watchdog 1 flag of the slave ADC */
3914#define ADC_CSR_AWD2_SLV_Pos (24U)
3915#define ADC_CSR_AWD2_SLV_Msk (0x1UL << ADC_CSR_AWD2_SLV_Pos) /*!< 0x01000000 */
3916#define ADC_CSR_AWD2_SLV ADC_CSR_AWD2_SLV_Msk /*!< Analog watchdog 2 flag of the slave ADC */
3917#define ADC_CSR_AWD3_SLV_Pos (25U)
3918#define ADC_CSR_AWD3_SLV_Msk (0x1UL << ADC_CSR_AWD3_SLV_Pos) /*!< 0x02000000 */
3919#define ADC_CSR_AWD3_SLV ADC_CSR_AWD3_SLV_Msk /*!< Analog watchdog 3 flag of the slave ADC */
3920#define ADC_CSR_JQOVF_SLV_Pos (26U)
3921#define ADC_CSR_JQOVF_SLV_Msk (0x1UL << ADC_CSR_JQOVF_SLV_Pos) /*!< 0x04000000 */
3922#define ADC_CSR_JQOVF_SLV ADC_CSR_JQOVF_SLV_Msk /*!< Injected context queue overflow flag of the slave ADC */
3923
3924/******************** Bit definition for ADC_CCR register ********************/
3925#define ADC_CCR_DUAL_Pos (0U)
3926#define ADC_CCR_DUAL_Msk (0x1FUL << ADC_CCR_DUAL_Pos) /*!< 0x0000001F */
3927#define ADC_CCR_DUAL ADC_CCR_DUAL_Msk /*!< Dual ADC mode selection */
3928#define ADC_CCR_DUAL_0 (0x01UL << ADC_CCR_DUAL_Pos) /*!< 0x00000001 */
3929#define ADC_CCR_DUAL_1 (0x02UL << ADC_CCR_DUAL_Pos) /*!< 0x00000002 */
3930#define ADC_CCR_DUAL_2 (0x04UL << ADC_CCR_DUAL_Pos) /*!< 0x00000004 */
3931#define ADC_CCR_DUAL_3 (0x08UL << ADC_CCR_DUAL_Pos) /*!< 0x00000008 */
3932#define ADC_CCR_DUAL_4 (0x10UL << ADC_CCR_DUAL_Pos) /*!< 0x00000010 */
3933
3934#define ADC_CCR_DELAY_Pos (8U)
3935#define ADC_CCR_DELAY_Msk (0xFUL << ADC_CCR_DELAY_Pos) /*!< 0x00000F00 */
3936#define ADC_CCR_DELAY ADC_CCR_DELAY_Msk /*!< Delay between 2 sampling phases */
3937#define ADC_CCR_DELAY_0 (0x1UL << ADC_CCR_DELAY_Pos) /*!< 0x00000100 */
3938#define ADC_CCR_DELAY_1 (0x2UL << ADC_CCR_DELAY_Pos) /*!< 0x00000200 */
3939#define ADC_CCR_DELAY_2 (0x4UL << ADC_CCR_DELAY_Pos) /*!< 0x00000400 */
3940#define ADC_CCR_DELAY_3 (0x8UL << ADC_CCR_DELAY_Pos) /*!< 0x00000800 */
3941
3942
3943#define ADC_CCR_DAMDF_Pos (14U)
3944#define ADC_CCR_DAMDF_Msk (0x3UL << ADC_CCR_DAMDF_Pos) /*!< 0x0000C000 */
3945#define ADC_CCR_DAMDF ADC_CCR_DAMDF_Msk /*!< Dual ADC mode Data format */
3946#define ADC_CCR_DAMDF_0 (0x1UL << ADC_CCR_DAMDF_Pos) /*!< 0x00004000 */
3947#define ADC_CCR_DAMDF_1 (0x2UL << ADC_CCR_DAMDF_Pos) /*!< 0x00008000 */
3948
3949#define ADC_CCR_CKMODE_Pos (16U)
3950#define ADC_CCR_CKMODE_Msk (0x3UL << ADC_CCR_CKMODE_Pos) /*!< 0x00030000 */
3951#define ADC_CCR_CKMODE ADC_CCR_CKMODE_Msk /*!< ADC clock mode */
3952#define ADC_CCR_CKMODE_0 (0x1UL << ADC_CCR_CKMODE_Pos) /*!< 0x00010000 */
3953#define ADC_CCR_CKMODE_1 (0x2UL << ADC_CCR_CKMODE_Pos) /*!< 0x00020000 */
3954
3955#define ADC_CCR_PRESC_Pos (18U)
3956#define ADC_CCR_PRESC_Msk (0xFUL << ADC_CCR_PRESC_Pos) /*!< 0x003C0000 */
3957#define ADC_CCR_PRESC ADC_CCR_PRESC_Msk /*!< ADC prescaler */
3958#define ADC_CCR_PRESC_0 (0x1UL << ADC_CCR_PRESC_Pos) /*!< 0x00040000 */
3959#define ADC_CCR_PRESC_1 (0x2UL << ADC_CCR_PRESC_Pos) /*!< 0x00080000 */
3960#define ADC_CCR_PRESC_2 (0x4UL << ADC_CCR_PRESC_Pos) /*!< 0x00100000 */
3961#define ADC_CCR_PRESC_3 (0x8UL << ADC_CCR_PRESC_Pos) /*!< 0x00200000 */
3962
3963#define ADC_CCR_VREFEN_Pos (22U)
3964#define ADC_CCR_VREFEN_Msk (0x1UL << ADC_CCR_VREFEN_Pos) /*!< 0x00400000 */
3965#define ADC_CCR_VREFEN ADC_CCR_VREFEN_Msk /*!< VREFINT enable */
3966#define ADC_CCR_TSEN_Pos (23U)
3967#define ADC_CCR_TSEN_Msk (0x1UL << ADC_CCR_TSEN_Pos) /*!< 0x00800000 */
3968#define ADC_CCR_TSEN ADC_CCR_TSEN_Msk /*!< Temperature sensor enable */
3969#define ADC_CCR_VBATEN_Pos (24U)
3970#define ADC_CCR_VBATEN_Msk (0x1UL << ADC_CCR_VBATEN_Pos) /*!< 0x01000000 */
3971#define ADC_CCR_VBATEN ADC_CCR_VBATEN_Msk /*!< VBAT enable */
3972
3973/******************** Bit definition for ADC_CDR register *******************/
3974#define ADC_CDR_RDATA_MST_Pos (0U)
3975#define ADC_CDR_RDATA_MST_Msk (0xFFFFUL << ADC_CDR_RDATA_MST_Pos) /*!< 0x0000FFFF */
3976#define ADC_CDR_RDATA_MST ADC_CDR_RDATA_MST_Msk /*!< ADC multimode master group regular conversion data */
3977
3978#define ADC_CDR_RDATA_SLV_Pos (16U)
3979#define ADC_CDR_RDATA_SLV_Msk (0xFFFFUL << ADC_CDR_RDATA_SLV_Pos) /*!< 0xFFFF0000 */
3980#define ADC_CDR_RDATA_SLV ADC_CDR_RDATA_SLV_Msk /*!< ADC multimode slave group regular conversion data */
3981
3982/******************** Bit definition for ADC_CDR2 register ******************/
3983#define ADC_CDR2_RDATA_ALT_Pos (0U)
3984#define ADC_CDR2_RDATA_ALT_Msk (0xFFFFFFFFUL << ADC_CDR2_RDATA_ALT_Pos) /*!< 0xFFFFFFFF */
3985#define ADC_CDR2_RDATA_ALT ADC_CDR2_RDATA_ALT_Msk /*!< Regular data of the master/slave alternated ADCs */
3986
3987/******************************************************************************/
3988/* */
3989/* ART accelerator */
3990/* */
3991/******************************************************************************/
3992/******************* Bit definition for ART_CTR register ********************/
3993#define ART_CTR_EN_Pos (0U)
3994#define ART_CTR_EN_Msk (0x1UL << ART_CTR_EN_Pos) /*!< 0x00000001 */
3995#define ART_CTR_EN ART_CTR_EN_Msk /*!< Cache enable*/
3996
3997#define ART_CTR_PCACHEADDR_Pos (8U)
3998#define ART_CTR_PCACHEADDR_Msk (0xFFFUL << ART_CTR_PCACHEADDR_Pos) /*!< 0x000FFF00 */
3999#define ART_CTR_PCACHEADDR ART_CTR_PCACHEADDR_Msk /*!< Cacheable page index */
4000
4001/******************************************************************************/
4002/* */
4003/* VREFBUF */
4004/* */
4005/******************************************************************************/
4006/******************* Bit definition for VREFBUF_CSR register ****************/
4007#define VREFBUF_CSR_ENVR_Pos (0U)
4008#define VREFBUF_CSR_ENVR_Msk (0x1UL << VREFBUF_CSR_ENVR_Pos) /*!< 0x00000001 */
4009#define VREFBUF_CSR_ENVR VREFBUF_CSR_ENVR_Msk /*!<Voltage reference buffer enable */
4010#define VREFBUF_CSR_HIZ_Pos (1U)
4011#define VREFBUF_CSR_HIZ_Msk (0x1UL << VREFBUF_CSR_HIZ_Pos) /*!< 0x00000002 */
4012#define VREFBUF_CSR_HIZ VREFBUF_CSR_HIZ_Msk /*!<High impedance mode */
4013#define VREFBUF_CSR_VRR_Pos (3U)
4014#define VREFBUF_CSR_VRR_Msk (0x1UL << VREFBUF_CSR_VRR_Pos) /*!< 0x00000008 */
4015#define VREFBUF_CSR_VRR VREFBUF_CSR_VRR_Msk /*!<Voltage reference buffer ready */
4016#define VREFBUF_CSR_VRS_Pos (4U)
4017#define VREFBUF_CSR_VRS_Msk (0x7UL << VREFBUF_CSR_VRS_Pos) /*!< 0x00000070 */
4018#define VREFBUF_CSR_VRS VREFBUF_CSR_VRS_Msk /*!<Voltage reference scale */
4019
4020#define VREFBUF_CSR_VRS_OUT1 ((uint32_t)0x00000000) /*!<Voltage reference VREF_OUT1 */
4021#define VREFBUF_CSR_VRS_OUT2_Pos (4U)
4022#define VREFBUF_CSR_VRS_OUT2_Msk (0x1UL << VREFBUF_CSR_VRS_OUT2_Pos) /*!< 0x00000010 */
4023#define VREFBUF_CSR_VRS_OUT2 VREFBUF_CSR_VRS_OUT2_Msk /*!<Voltage reference VREF_OUT2 */
4024#define VREFBUF_CSR_VRS_OUT3_Pos (5U)
4025#define VREFBUF_CSR_VRS_OUT3_Msk (0x1UL << VREFBUF_CSR_VRS_OUT3_Pos) /*!< 0x00000020 */
4026#define VREFBUF_CSR_VRS_OUT3 VREFBUF_CSR_VRS_OUT3_Msk /*!<Voltage reference VREF_OUT3 */
4027#define VREFBUF_CSR_VRS_OUT4_Pos (4U)
4028#define VREFBUF_CSR_VRS_OUT4_Msk (0x3UL << VREFBUF_CSR_VRS_OUT4_Pos) /*!< 0x00000030 */
4029#define VREFBUF_CSR_VRS_OUT4 VREFBUF_CSR_VRS_OUT4_Msk /*!<Voltage reference VREF_OUT4 */
4030
4031/******************* Bit definition for VREFBUF_CCR register ****************/
4032#define VREFBUF_CCR_TRIM_Pos (0U)
4033#define VREFBUF_CCR_TRIM_Msk (0x3FUL << VREFBUF_CCR_TRIM_Pos) /*!< 0x0000003F */
4034#define VREFBUF_CCR_TRIM VREFBUF_CCR_TRIM_Msk /*!<TRIM[5:0] bits (Trimming code) */
4035
4036/******************************************************************************/
4037/* */
4038/* Flexible Datarate Controller Area Network */
4039/* */
4040/******************************************************************************/
4041/*!<FDCAN control and status registers */
4042/***************** Bit definition for FDCAN_CREL register *******************/
4043#define FDCAN_CREL_DAY_Pos (0U)
4044#define FDCAN_CREL_DAY_Msk (0xFFUL << FDCAN_CREL_DAY_Pos) /*!< 0x000000FF */
4045#define FDCAN_CREL_DAY FDCAN_CREL_DAY_Msk /*!<Timestamp Day */
4046#define FDCAN_CREL_MON_Pos (8U)
4047#define FDCAN_CREL_MON_Msk (0xFFUL << FDCAN_CREL_MON_Pos) /*!< 0x0000FF00 */
4048#define FDCAN_CREL_MON FDCAN_CREL_MON_Msk /*!<Timestamp Month */
4049#define FDCAN_CREL_YEAR_Pos (16U)
4050#define FDCAN_CREL_YEAR_Msk (0xFUL << FDCAN_CREL_YEAR_Pos) /*!< 0x000F0000 */
4051#define FDCAN_CREL_YEAR FDCAN_CREL_YEAR_Msk /*!<Timestamp Year */
4052#define FDCAN_CREL_SUBSTEP_Pos (20U)
4053#define FDCAN_CREL_SUBSTEP_Msk (0xFUL << FDCAN_CREL_SUBSTEP_Pos) /*!< 0x00F00000 */
4054#define FDCAN_CREL_SUBSTEP FDCAN_CREL_SUBSTEP_Msk /*!<Sub-step of Core release */
4055#define FDCAN_CREL_STEP_Pos (24U)
4056#define FDCAN_CREL_STEP_Msk (0xFUL << FDCAN_CREL_STEP_Pos) /*!< 0x0F000000 */
4057#define FDCAN_CREL_STEP FDCAN_CREL_STEP_Msk /*!<Step of Core release */
4058#define FDCAN_CREL_REL_Pos (28U)
4059#define FDCAN_CREL_REL_Msk (0xFUL << FDCAN_CREL_REL_Pos) /*!< 0xF0000000 */
4060#define FDCAN_CREL_REL FDCAN_CREL_REL_Msk /*!<Core release */
4061
4062/***************** Bit definition for FDCAN_ENDN register *******************/
4063#define FDCAN_ENDN_ETV_Pos (0U)
4064#define FDCAN_ENDN_ETV_Msk (0xFFFFFFFFUL << FDCAN_ENDN_ETV_Pos) /*!< 0xFFFFFFFF */
4065#define FDCAN_ENDN_ETV FDCAN_ENDN_ETV_Msk /*!<Endiannes Test Value */
4066
4067/***************** Bit definition for FDCAN_DBTP register *******************/
4068#define FDCAN_DBTP_DSJW_Pos (0U)
4069#define FDCAN_DBTP_DSJW_Msk (0xFUL << FDCAN_DBTP_DSJW_Pos) /*!< 0x0000000F */
4070#define FDCAN_DBTP_DSJW FDCAN_DBTP_DSJW_Msk /*!<Synchronization Jump Width */
4071#define FDCAN_DBTP_DTSEG2_Pos (4U)
4072#define FDCAN_DBTP_DTSEG2_Msk (0xFUL << FDCAN_DBTP_DTSEG2_Pos) /*!< 0x000000F0 */
4073#define FDCAN_DBTP_DTSEG2 FDCAN_DBTP_DTSEG2_Msk /*!<Data time segment after sample point */
4074#define FDCAN_DBTP_DTSEG1_Pos (8U)
4075#define FDCAN_DBTP_DTSEG1_Msk (0x1FUL << FDCAN_DBTP_DTSEG1_Pos) /*!< 0x00001F00 */
4076#define FDCAN_DBTP_DTSEG1 FDCAN_DBTP_DTSEG1_Msk /*!<Data time segment before sample point */
4077#define FDCAN_DBTP_DBRP_Pos (16U)
4078#define FDCAN_DBTP_DBRP_Msk (0x1FUL << FDCAN_DBTP_DBRP_Pos) /*!< 0x001F0000 */
4079#define FDCAN_DBTP_DBRP FDCAN_DBTP_DBRP_Msk /*!<Data BIt Rate Prescaler */
4080#define FDCAN_DBTP_TDC_Pos (23U)
4081#define FDCAN_DBTP_TDC_Msk (0x1UL << FDCAN_DBTP_TDC_Pos) /*!< 0x00800000 */
4082#define FDCAN_DBTP_TDC FDCAN_DBTP_TDC_Msk /*!<Transceiver Delay Compensation */
4083
4084/***************** Bit definition for FDCAN_TEST register *******************/
4085#define FDCAN_TEST_LBCK_Pos (4U)
4086#define FDCAN_TEST_LBCK_Msk (0x1UL << FDCAN_TEST_LBCK_Pos) /*!< 0x00000010 */
4087#define FDCAN_TEST_LBCK FDCAN_TEST_LBCK_Msk /*!<Loop Back mode */
4088#define FDCAN_TEST_TX_Pos (5U)
4089#define FDCAN_TEST_TX_Msk (0x3UL << FDCAN_TEST_TX_Pos) /*!< 0x00000060 */
4090#define FDCAN_TEST_TX FDCAN_TEST_TX_Msk /*!<Control of Transmit Pin */
4091#define FDCAN_TEST_RX_Pos (7U)
4092#define FDCAN_TEST_RX_Msk (0x1UL << FDCAN_TEST_RX_Pos) /*!< 0x00000080 */
4093#define FDCAN_TEST_RX FDCAN_TEST_RX_Msk /*!<Receive Pin */
4094
4095/***************** Bit definition for FDCAN_RWD register ********************/
4096#define FDCAN_RWD_WDC_Pos (0U)
4097#define FDCAN_RWD_WDC_Msk (0xFFUL << FDCAN_RWD_WDC_Pos) /*!< 0x000000FF */
4098#define FDCAN_RWD_WDC FDCAN_RWD_WDC_Msk /*!<Watchdog configuration */
4099#define FDCAN_RWD_WDV_Pos (8U)
4100#define FDCAN_RWD_WDV_Msk (0xFFUL << FDCAN_RWD_WDV_Pos) /*!< 0x0000FF00 */
4101#define FDCAN_RWD_WDV FDCAN_RWD_WDV_Msk /*!<Watchdog value */
4102
4103/***************** Bit definition for FDCAN_CCCR register ********************/
4104#define FDCAN_CCCR_INIT_Pos (0U)
4105#define FDCAN_CCCR_INIT_Msk (0x1UL << FDCAN_CCCR_INIT_Pos) /*!< 0x00000001 */
4106#define FDCAN_CCCR_INIT FDCAN_CCCR_INIT_Msk /*!<Initialization */
4107#define FDCAN_CCCR_CCE_Pos (1U)
4108#define FDCAN_CCCR_CCE_Msk (0x1UL << FDCAN_CCCR_CCE_Pos) /*!< 0x00000002 */
4109#define FDCAN_CCCR_CCE FDCAN_CCCR_CCE_Msk /*!<Configuration Change Enable */
4110#define FDCAN_CCCR_ASM_Pos (2U)
4111#define FDCAN_CCCR_ASM_Msk (0x1UL << FDCAN_CCCR_ASM_Pos) /*!< 0x00000004 */
4112#define FDCAN_CCCR_ASM FDCAN_CCCR_ASM_Msk /*!<ASM Restricted Operation Mode */
4113#define FDCAN_CCCR_CSA_Pos (3U)
4114#define FDCAN_CCCR_CSA_Msk (0x1UL << FDCAN_CCCR_CSA_Pos) /*!< 0x00000008 */
4115#define FDCAN_CCCR_CSA FDCAN_CCCR_CSA_Msk /*!<Clock Stop Acknowledge */
4116#define FDCAN_CCCR_CSR_Pos (4U)
4117#define FDCAN_CCCR_CSR_Msk (0x1UL << FDCAN_CCCR_CSR_Pos) /*!< 0x00000010 */
4118#define FDCAN_CCCR_CSR FDCAN_CCCR_CSR_Msk /*!<Clock Stop Request */
4119#define FDCAN_CCCR_MON_Pos (5U)
4120#define FDCAN_CCCR_MON_Msk (0x1UL << FDCAN_CCCR_MON_Pos) /*!< 0x00000020 */
4121#define FDCAN_CCCR_MON FDCAN_CCCR_MON_Msk /*!<Bus Monitoring Mode */
4122#define FDCAN_CCCR_DAR_Pos (6U)
4123#define FDCAN_CCCR_DAR_Msk (0x1UL << FDCAN_CCCR_DAR_Pos) /*!< 0x00000040 */
4124#define FDCAN_CCCR_DAR FDCAN_CCCR_DAR_Msk /*!<Disable Automatic Retransmission */
4125#define FDCAN_CCCR_TEST_Pos (7U)
4126#define FDCAN_CCCR_TEST_Msk (0x1UL << FDCAN_CCCR_TEST_Pos) /*!< 0x00000080 */
4127#define FDCAN_CCCR_TEST FDCAN_CCCR_TEST_Msk /*!<Test Mode Enable */
4128#define FDCAN_CCCR_FDOE_Pos (8U)
4129#define FDCAN_CCCR_FDOE_Msk (0x1UL << FDCAN_CCCR_FDOE_Pos) /*!< 0x00000100 */
4130#define FDCAN_CCCR_FDOE FDCAN_CCCR_FDOE_Msk /*!<FD Operation Enable */
4131#define FDCAN_CCCR_BRSE_Pos (9U)
4132#define FDCAN_CCCR_BRSE_Msk (0x1UL << FDCAN_CCCR_BRSE_Pos) /*!< 0x00000200 */
4133#define FDCAN_CCCR_BRSE FDCAN_CCCR_BRSE_Msk /*!<FDCAN Bit Rate Switching */
4134#define FDCAN_CCCR_PXHD_Pos (12U)
4135#define FDCAN_CCCR_PXHD_Msk (0x1UL << FDCAN_CCCR_PXHD_Pos) /*!< 0x00001000 */
4136#define FDCAN_CCCR_PXHD FDCAN_CCCR_PXHD_Msk /*!<Protocol Exception Handling Disable */
4137#define FDCAN_CCCR_EFBI_Pos (13U)
4138#define FDCAN_CCCR_EFBI_Msk (0x1UL << FDCAN_CCCR_EFBI_Pos) /*!< 0x00002000 */
4139#define FDCAN_CCCR_EFBI FDCAN_CCCR_EFBI_Msk /*!<Edge Filtering during Bus Integration */
4140#define FDCAN_CCCR_TXP_Pos (14U)
4141#define FDCAN_CCCR_TXP_Msk (0x1UL << FDCAN_CCCR_TXP_Pos) /*!< 0x00004000 */
4142#define FDCAN_CCCR_TXP FDCAN_CCCR_TXP_Msk /*!<Two CAN bit times Pause */
4143#define FDCAN_CCCR_NISO_Pos (15U)
4144#define FDCAN_CCCR_NISO_Msk (0x1UL << FDCAN_CCCR_NISO_Pos) /*!< 0x00008000 */
4145#define FDCAN_CCCR_NISO FDCAN_CCCR_NISO_Msk /*!<Non ISO Operation */
4146
4147/***************** Bit definition for FDCAN_NBTP register ********************/
4148#define FDCAN_NBTP_NTSEG2_Pos (0U)
4149#define FDCAN_NBTP_NTSEG2_Msk (0x7FUL << FDCAN_NBTP_NTSEG2_Pos) /*!< 0x0000007F */
4150#define FDCAN_NBTP_NTSEG2 FDCAN_NBTP_NTSEG2_Msk /*!<Nominal Time segment after sample point */
4151#define FDCAN_NBTP_NTSEG1_Pos (8U)
4152#define FDCAN_NBTP_NTSEG1_Msk (0xFFUL << FDCAN_NBTP_NTSEG1_Pos) /*!< 0x0000FF00 */
4153#define FDCAN_NBTP_NTSEG1 FDCAN_NBTP_NTSEG1_Msk /*!<Nominal Time segment before sample point */
4154#define FDCAN_NBTP_NBRP_Pos (16U)
4155#define FDCAN_NBTP_NBRP_Msk (0x1FFUL << FDCAN_NBTP_NBRP_Pos) /*!< 0x01FF0000 */
4156#define FDCAN_NBTP_NBRP FDCAN_NBTP_NBRP_Msk /*!<Bit Rate Prescaler */
4157#define FDCAN_NBTP_NSJW_Pos (25U)
4158#define FDCAN_NBTP_NSJW_Msk (0x7FUL << FDCAN_NBTP_NSJW_Pos) /*!< 0xFE000000 */
4159#define FDCAN_NBTP_NSJW FDCAN_NBTP_NSJW_Msk /*!<Nominal (Re)Synchronization Jump Width */
4160
4161/***************** Bit definition for FDCAN_TSCC register ********************/
4162#define FDCAN_TSCC_TSS_Pos (0U)
4163#define FDCAN_TSCC_TSS_Msk (0x3UL << FDCAN_TSCC_TSS_Pos) /*!< 0x00000003 */
4164#define FDCAN_TSCC_TSS FDCAN_TSCC_TSS_Msk /*!<Timestamp Select */
4165#define FDCAN_TSCC_TCP_Pos (16U)
4166#define FDCAN_TSCC_TCP_Msk (0xFUL << FDCAN_TSCC_TCP_Pos) /*!< 0x000F0000 */
4167#define FDCAN_TSCC_TCP FDCAN_TSCC_TCP_Msk /*!<Timestamp Counter Prescaler */
4168
4169/***************** Bit definition for FDCAN_TSCV register ********************/
4170#define FDCAN_TSCV_TSC_Pos (0U)
4171#define FDCAN_TSCV_TSC_Msk (0xFFFFUL << FDCAN_TSCV_TSC_Pos) /*!< 0x0000FFFF */
4172#define FDCAN_TSCV_TSC FDCAN_TSCV_TSC_Msk /*!<Timestamp Counter */
4173
4174/***************** Bit definition for FDCAN_TOCC register ********************/
4175#define FDCAN_TOCC_ETOC_Pos (0U)
4176#define FDCAN_TOCC_ETOC_Msk (0x1UL << FDCAN_TOCC_ETOC_Pos) /*!< 0x00000001 */
4177#define FDCAN_TOCC_ETOC FDCAN_TOCC_ETOC_Msk /*!<Enable Timeout Counter */
4178#define FDCAN_TOCC_TOS_Pos (1U)
4179#define FDCAN_TOCC_TOS_Msk (0x3UL << FDCAN_TOCC_TOS_Pos) /*!< 0x00000006 */
4180#define FDCAN_TOCC_TOS FDCAN_TOCC_TOS_Msk /*!<Timeout Select */
4181#define FDCAN_TOCC_TOP_Pos (16U)
4182#define FDCAN_TOCC_TOP_Msk (0xFFFFUL << FDCAN_TOCC_TOP_Pos) /*!< 0xFFFF0000 */
4183#define FDCAN_TOCC_TOP FDCAN_TOCC_TOP_Msk /*!<Timeout Period */
4184
4185/***************** Bit definition for FDCAN_TOCV register ********************/
4186#define FDCAN_TOCV_TOC_Pos (0U)
4187#define FDCAN_TOCV_TOC_Msk (0xFFFFUL << FDCAN_TOCV_TOC_Pos) /*!< 0x0000FFFF */
4188#define FDCAN_TOCV_TOC FDCAN_TOCV_TOC_Msk /*!<Timeout Counter */
4189
4190/***************** Bit definition for FDCAN_ECR register *********************/
4191#define FDCAN_ECR_TEC_Pos (0U)
4192#define FDCAN_ECR_TEC_Msk (0xFUL << FDCAN_ECR_TEC_Pos) /*!< 0x0000000F */
4193#define FDCAN_ECR_TEC FDCAN_ECR_TEC_Msk /*!<Transmit Error Counter */
4194#define FDCAN_ECR_REC_Pos (8U)
4195#define FDCAN_ECR_REC_Msk (0x7FUL << FDCAN_ECR_REC_Pos) /*!< 0x00007F00 */
4196#define FDCAN_ECR_REC FDCAN_ECR_REC_Msk /*!<Receive Error Counter */
4197#define FDCAN_ECR_RP_Pos (15U)
4198#define FDCAN_ECR_RP_Msk (0x1UL << FDCAN_ECR_RP_Pos) /*!< 0x00008000 */
4199#define FDCAN_ECR_RP FDCAN_ECR_RP_Msk /*!<Receive Error Passive */
4200#define FDCAN_ECR_CEL_Pos (16U)
4201#define FDCAN_ECR_CEL_Msk (0xFFUL << FDCAN_ECR_CEL_Pos) /*!< 0x00FF0000 */
4202#define FDCAN_ECR_CEL FDCAN_ECR_CEL_Msk /*!<CAN Error Logging */
4203
4204/***************** Bit definition for FDCAN_PSR register *********************/
4205#define FDCAN_PSR_LEC_Pos (0U)
4206#define FDCAN_PSR_LEC_Msk (0x7UL << FDCAN_PSR_LEC_Pos) /*!< 0x00000007 */
4207#define FDCAN_PSR_LEC FDCAN_PSR_LEC_Msk /*!<Last Error Code */
4208#define FDCAN_PSR_ACT_Pos (3U)
4209#define FDCAN_PSR_ACT_Msk (0x3UL << FDCAN_PSR_ACT_Pos) /*!< 0x00000018 */
4210#define FDCAN_PSR_ACT FDCAN_PSR_ACT_Msk /*!<Activity */
4211#define FDCAN_PSR_EP_Pos (5U)
4212#define FDCAN_PSR_EP_Msk (0x1UL << FDCAN_PSR_EP_Pos) /*!< 0x00000020 */
4213#define FDCAN_PSR_EP FDCAN_PSR_EP_Msk /*!<Error Passive */
4214#define FDCAN_PSR_EW_Pos (6U)
4215#define FDCAN_PSR_EW_Msk (0x1UL << FDCAN_PSR_EW_Pos) /*!< 0x00000040 */
4216#define FDCAN_PSR_EW FDCAN_PSR_EW_Msk /*!<Warning Status */
4217#define FDCAN_PSR_BO_Pos (7U)
4218#define FDCAN_PSR_BO_Msk (0x1UL << FDCAN_PSR_BO_Pos) /*!< 0x00000080 */
4219#define FDCAN_PSR_BO FDCAN_PSR_BO_Msk /*!<Bus_Off Status */
4220#define FDCAN_PSR_DLEC_Pos (8U)
4221#define FDCAN_PSR_DLEC_Msk (0x7UL << FDCAN_PSR_DLEC_Pos) /*!< 0x00000700 */
4222#define FDCAN_PSR_DLEC FDCAN_PSR_DLEC_Msk /*!<Data Last Error Code */
4223#define FDCAN_PSR_RESI_Pos (11U)
4224#define FDCAN_PSR_RESI_Msk (0x1UL << FDCAN_PSR_RESI_Pos) /*!< 0x00000800 */
4225#define FDCAN_PSR_RESI FDCAN_PSR_RESI_Msk /*!<ESI flag of last received FDCAN Message */
4226#define FDCAN_PSR_RBRS_Pos (12U)
4227#define FDCAN_PSR_RBRS_Msk (0x1UL << FDCAN_PSR_RBRS_Pos) /*!< 0x00001000 */
4228#define FDCAN_PSR_RBRS FDCAN_PSR_RBRS_Msk /*!<BRS flag of last received FDCAN Message */
4229#define FDCAN_PSR_REDL_Pos (13U)
4230#define FDCAN_PSR_REDL_Msk (0x1UL << FDCAN_PSR_REDL_Pos) /*!< 0x00002000 */
4231#define FDCAN_PSR_REDL FDCAN_PSR_REDL_Msk /*!<Received FDCAN Message */
4232#define FDCAN_PSR_PXE_Pos (14U)
4233#define FDCAN_PSR_PXE_Msk (0x1UL << FDCAN_PSR_PXE_Pos) /*!< 0x00004000 */
4234#define FDCAN_PSR_PXE FDCAN_PSR_PXE_Msk /*!<Protocol Exception Event */
4235#define FDCAN_PSR_TDCV_Pos (16U)
4236#define FDCAN_PSR_TDCV_Msk (0x7FUL << FDCAN_PSR_TDCV_Pos) /*!< 0x007F0000 */
4237#define FDCAN_PSR_TDCV FDCAN_PSR_TDCV_Msk /*!<Transmitter Delay Compensation Value */
4238
4239/***************** Bit definition for FDCAN_TDCR register ********************/
4240#define FDCAN_TDCR_TDCF_Pos (0U)
4241#define FDCAN_TDCR_TDCF_Msk (0x7FUL << FDCAN_TDCR_TDCF_Pos) /*!< 0x0000007F */
4242#define FDCAN_TDCR_TDCF FDCAN_TDCR_TDCF_Msk /*!<Transmitter Delay Compensation Filter */
4243#define FDCAN_TDCR_TDCO_Pos (8U)
4244#define FDCAN_TDCR_TDCO_Msk (0x7FUL << FDCAN_TDCR_TDCO_Pos) /*!< 0x00007F00 */
4245#define FDCAN_TDCR_TDCO FDCAN_TDCR_TDCO_Msk /*!<Transmitter Delay Compensation Offset */
4246
4247/***************** Bit definition for FDCAN_IR register **********************/
4248#define FDCAN_IR_RF0N_Pos (0U)
4249#define FDCAN_IR_RF0N_Msk (0x1UL << FDCAN_IR_RF0N_Pos) /*!< 0x00000001 */
4250#define FDCAN_IR_RF0N FDCAN_IR_RF0N_Msk /*!<Rx FIFO 0 New Message */
4251#define FDCAN_IR_RF0W_Pos (1U)
4252#define FDCAN_IR_RF0W_Msk (0x1UL << FDCAN_IR_RF0W_Pos) /*!< 0x00000002 */
4253#define FDCAN_IR_RF0W FDCAN_IR_RF0W_Msk /*!<Rx FIFO 0 Watermark Reached */
4254#define FDCAN_IR_RF0F_Pos (2U)
4255#define FDCAN_IR_RF0F_Msk (0x1UL << FDCAN_IR_RF0F_Pos) /*!< 0x00000004 */
4256#define FDCAN_IR_RF0F FDCAN_IR_RF0F_Msk /*!<Rx FIFO 0 Full */
4257#define FDCAN_IR_RF0L_Pos (3U)
4258#define FDCAN_IR_RF0L_Msk (0x1UL << FDCAN_IR_RF0L_Pos) /*!< 0x00000008 */
4259#define FDCAN_IR_RF0L FDCAN_IR_RF0L_Msk /*!<Rx FIFO 0 Message Lost */
4260#define FDCAN_IR_RF1N_Pos (4U)
4261#define FDCAN_IR_RF1N_Msk (0x1UL << FDCAN_IR_RF1N_Pos) /*!< 0x00000010 */
4262#define FDCAN_IR_RF1N FDCAN_IR_RF1N_Msk /*!<Rx FIFO 1 New Message */
4263#define FDCAN_IR_RF1W_Pos (5U)
4264#define FDCAN_IR_RF1W_Msk (0x1UL << FDCAN_IR_RF1W_Pos) /*!< 0x00000020 */
4265#define FDCAN_IR_RF1W FDCAN_IR_RF1W_Msk /*!<Rx FIFO 1 Watermark Reached */
4266#define FDCAN_IR_RF1F_Pos (6U)
4267#define FDCAN_IR_RF1F_Msk (0x1UL << FDCAN_IR_RF1F_Pos) /*!< 0x00000040 */
4268#define FDCAN_IR_RF1F FDCAN_IR_RF1F_Msk /*!<Rx FIFO 1 Full */
4269#define FDCAN_IR_RF1L_Pos (7U)
4270#define FDCAN_IR_RF1L_Msk (0x1UL << FDCAN_IR_RF1L_Pos) /*!< 0x00000080 */
4271#define FDCAN_IR_RF1L FDCAN_IR_RF1L_Msk /*!<Rx FIFO 1 Message Lost */
4272#define FDCAN_IR_HPM_Pos (8U)
4273#define FDCAN_IR_HPM_Msk (0x1UL << FDCAN_IR_HPM_Pos) /*!< 0x00000100 */
4274#define FDCAN_IR_HPM FDCAN_IR_HPM_Msk /*!<High Priority Message */
4275#define FDCAN_IR_TC_Pos (9U)
4276#define FDCAN_IR_TC_Msk (0x1UL << FDCAN_IR_TC_Pos) /*!< 0x00000200 */
4277#define FDCAN_IR_TC FDCAN_IR_TC_Msk /*!<Transmission Completed */
4278#define FDCAN_IR_TCF_Pos (10U)
4279#define FDCAN_IR_TCF_Msk (0x1UL << FDCAN_IR_TCF_Pos) /*!< 0x00000400 */
4280#define FDCAN_IR_TCF FDCAN_IR_TCF_Msk /*!<Transmission Cancellation Finished */
4281#define FDCAN_IR_TFE_Pos (11U)
4282#define FDCAN_IR_TFE_Msk (0x1UL << FDCAN_IR_TFE_Pos) /*!< 0x00000800 */
4283#define FDCAN_IR_TFE FDCAN_IR_TFE_Msk /*!<Tx FIFO Empty */
4284#define FDCAN_IR_TEFN_Pos (12U)
4285#define FDCAN_IR_TEFN_Msk (0x1UL << FDCAN_IR_TEFN_Pos) /*!< 0x00001000 */
4286#define FDCAN_IR_TEFN FDCAN_IR_TEFN_Msk /*!<Tx Event FIFO New Entry */
4287#define FDCAN_IR_TEFW_Pos (13U)
4288#define FDCAN_IR_TEFW_Msk (0x1UL << FDCAN_IR_TEFW_Pos) /*!< 0x00002000 */
4289#define FDCAN_IR_TEFW FDCAN_IR_TEFW_Msk /*!<Tx Event FIFO Watermark Reached */
4290#define FDCAN_IR_TEFF_Pos (14U)
4291#define FDCAN_IR_TEFF_Msk (0x1UL << FDCAN_IR_TEFF_Pos) /*!< 0x00004000 */
4292#define FDCAN_IR_TEFF FDCAN_IR_TEFF_Msk /*!<Tx Event FIFO Full */
4293#define FDCAN_IR_TEFL_Pos (15U)
4294#define FDCAN_IR_TEFL_Msk (0x1UL << FDCAN_IR_TEFL_Pos) /*!< 0x00008000 */
4295#define FDCAN_IR_TEFL FDCAN_IR_TEFL_Msk /*!<Tx Event FIFO Element Lost */
4296#define FDCAN_IR_TSW_Pos (16U)
4297#define FDCAN_IR_TSW_Msk (0x1UL << FDCAN_IR_TSW_Pos) /*!< 0x00010000 */
4298#define FDCAN_IR_TSW FDCAN_IR_TSW_Msk /*!<Timestamp Wraparound */
4299#define FDCAN_IR_MRAF_Pos (17U)
4300#define FDCAN_IR_MRAF_Msk (0x1UL << FDCAN_IR_MRAF_Pos) /*!< 0x00020000 */
4301#define FDCAN_IR_MRAF FDCAN_IR_MRAF_Msk /*!<Message RAM Access Failure */
4302#define FDCAN_IR_TOO_Pos (18U)
4303#define FDCAN_IR_TOO_Msk (0x1UL << FDCAN_IR_TOO_Pos) /*!< 0x00040000 */
4304#define FDCAN_IR_TOO FDCAN_IR_TOO_Msk /*!<Timeout Occurred */
4305#define FDCAN_IR_DRX_Pos (19U)
4306#define FDCAN_IR_DRX_Msk (0x1UL << FDCAN_IR_DRX_Pos) /*!< 0x00080000 */
4307#define FDCAN_IR_DRX FDCAN_IR_DRX_Msk /*!<Message stored to Dedicated Rx Buffer */
4308#define FDCAN_IR_ELO_Pos (22U)
4309#define FDCAN_IR_ELO_Msk (0x1UL << FDCAN_IR_ELO_Pos) /*!< 0x00400000 */
4310#define FDCAN_IR_ELO FDCAN_IR_ELO_Msk /*!<Error Logging Overflow */
4311#define FDCAN_IR_EP_Pos (23U)
4312#define FDCAN_IR_EP_Msk (0x1UL << FDCAN_IR_EP_Pos) /*!< 0x00800000 */
4313#define FDCAN_IR_EP FDCAN_IR_EP_Msk /*!<Error Passive */
4314#define FDCAN_IR_EW_Pos (24U)
4315#define FDCAN_IR_EW_Msk (0x1UL << FDCAN_IR_EW_Pos) /*!< 0x01000000 */
4316#define FDCAN_IR_EW FDCAN_IR_EW_Msk /*!<Warning Status */
4317#define FDCAN_IR_BO_Pos (25U)
4318#define FDCAN_IR_BO_Msk (0x1UL << FDCAN_IR_BO_Pos) /*!< 0x02000000 */
4319#define FDCAN_IR_BO FDCAN_IR_BO_Msk /*!<Bus_Off Status */
4320#define FDCAN_IR_WDI_Pos (26U)
4321#define FDCAN_IR_WDI_Msk (0x1UL << FDCAN_IR_WDI_Pos) /*!< 0x04000000 */
4322#define FDCAN_IR_WDI FDCAN_IR_WDI_Msk /*!<Watchdog Interrupt */
4323#define FDCAN_IR_PEA_Pos (27U)
4324#define FDCAN_IR_PEA_Msk (0x1UL << FDCAN_IR_PEA_Pos) /*!< 0x08000000 */
4325#define FDCAN_IR_PEA FDCAN_IR_PEA_Msk /*!<Protocol Error in Arbitration Phase */
4326#define FDCAN_IR_PED_Pos (28U)
4327#define FDCAN_IR_PED_Msk (0x1UL << FDCAN_IR_PED_Pos) /*!< 0x10000000 */
4328#define FDCAN_IR_PED FDCAN_IR_PED_Msk /*!<Protocol Error in Data Phase */
4329#define FDCAN_IR_ARA_Pos (29U)
4330#define FDCAN_IR_ARA_Msk (0x1UL << FDCAN_IR_ARA_Pos) /*!< 0x20000000 */
4331#define FDCAN_IR_ARA FDCAN_IR_ARA_Msk /*!<Access to Reserved Address */
4332
4333/***************** Bit definition for FDCAN_IE register **********************/
4334#define FDCAN_IE_RF0NE_Pos (0U)
4335#define FDCAN_IE_RF0NE_Msk (0x1UL << FDCAN_IE_RF0NE_Pos) /*!< 0x00000001 */
4336#define FDCAN_IE_RF0NE FDCAN_IE_RF0NE_Msk /*!<Rx FIFO 0 New Message Enable */
4337#define FDCAN_IE_RF0WE_Pos (1U)
4338#define FDCAN_IE_RF0WE_Msk (0x1UL << FDCAN_IE_RF0WE_Pos) /*!< 0x00000002 */
4339#define FDCAN_IE_RF0WE FDCAN_IE_RF0WE_Msk /*!<Rx FIFO 0 Watermark Reached Enable */
4340#define FDCAN_IE_RF0FE_Pos (2U)
4341#define FDCAN_IE_RF0FE_Msk (0x1UL << FDCAN_IE_RF0FE_Pos) /*!< 0x00000004 */
4342#define FDCAN_IE_RF0FE FDCAN_IE_RF0FE_Msk /*!<Rx FIFO 0 Full Enable */
4343#define FDCAN_IE_RF0LE_Pos (3U)
4344#define FDCAN_IE_RF0LE_Msk (0x1UL << FDCAN_IE_RF0LE_Pos) /*!< 0x00000008 */
4345#define FDCAN_IE_RF0LE FDCAN_IE_RF0LE_Msk /*!<Rx FIFO 0 Message Lost Enable */
4346#define FDCAN_IE_RF1NE_Pos (4U)
4347#define FDCAN_IE_RF1NE_Msk (0x1UL << FDCAN_IE_RF1NE_Pos) /*!< 0x00000010 */
4348#define FDCAN_IE_RF1NE FDCAN_IE_RF1NE_Msk /*!<Rx FIFO 1 New Message Enable */
4349#define FDCAN_IE_RF1WE_Pos (5U)
4350#define FDCAN_IE_RF1WE_Msk (0x1UL << FDCAN_IE_RF1WE_Pos) /*!< 0x00000020 */
4351#define FDCAN_IE_RF1WE FDCAN_IE_RF1WE_Msk /*!<Rx FIFO 1 Watermark Reached Enable */
4352#define FDCAN_IE_RF1FE_Pos (6U)
4353#define FDCAN_IE_RF1FE_Msk (0x1UL << FDCAN_IE_RF1FE_Pos) /*!< 0x00000040 */
4354#define FDCAN_IE_RF1FE FDCAN_IE_RF1FE_Msk /*!<Rx FIFO 1 Full Enable */
4355#define FDCAN_IE_RF1LE_Pos (7U)
4356#define FDCAN_IE_RF1LE_Msk (0x1UL << FDCAN_IE_RF1LE_Pos) /*!< 0x00000080 */
4357#define FDCAN_IE_RF1LE FDCAN_IE_RF1LE_Msk /*!<Rx FIFO 1 Message Lost Enable */
4358#define FDCAN_IE_HPME_Pos (8U)
4359#define FDCAN_IE_HPME_Msk (0x1UL << FDCAN_IE_HPME_Pos) /*!< 0x00000100 */
4360#define FDCAN_IE_HPME FDCAN_IE_HPME_Msk /*!<High Priority Message Enable */
4361#define FDCAN_IE_TCE_Pos (9U)
4362#define FDCAN_IE_TCE_Msk (0x1UL << FDCAN_IE_TCE_Pos) /*!< 0x00000200 */
4363#define FDCAN_IE_TCE FDCAN_IE_TCE_Msk /*!<Transmission Completed Enable */
4364#define FDCAN_IE_TCFE_Pos (10U)
4365#define FDCAN_IE_TCFE_Msk (0x1UL << FDCAN_IE_TCFE_Pos) /*!< 0x00000400 */
4366#define FDCAN_IE_TCFE FDCAN_IE_TCFE_Msk /*!<Transmission Cancellation Finished Enable */
4367#define FDCAN_IE_TFEE_Pos (11U)
4368#define FDCAN_IE_TFEE_Msk (0x1UL << FDCAN_IE_TFEE_Pos) /*!< 0x00000800 */
4369#define FDCAN_IE_TFEE FDCAN_IE_TFEE_Msk /*!<Tx FIFO Empty Enable */
4370#define FDCAN_IE_TEFNE_Pos (12U)
4371#define FDCAN_IE_TEFNE_Msk (0x1UL << FDCAN_IE_TEFNE_Pos) /*!< 0x00001000 */
4372#define FDCAN_IE_TEFNE FDCAN_IE_TEFNE_Msk /*!<Tx Event FIFO New Entry Enable */
4373#define FDCAN_IE_TEFWE_Pos (13U)
4374#define FDCAN_IE_TEFWE_Msk (0x1UL << FDCAN_IE_TEFWE_Pos) /*!< 0x00002000 */
4375#define FDCAN_IE_TEFWE FDCAN_IE_TEFWE_Msk /*!<Tx Event FIFO Watermark Reached Enable */
4376#define FDCAN_IE_TEFFE_Pos (14U)
4377#define FDCAN_IE_TEFFE_Msk (0x1UL << FDCAN_IE_TEFFE_Pos) /*!< 0x00004000 */
4378#define FDCAN_IE_TEFFE FDCAN_IE_TEFFE_Msk /*!<Tx Event FIFO Full Enable */
4379#define FDCAN_IE_TEFLE_Pos (15U)
4380#define FDCAN_IE_TEFLE_Msk (0x1UL << FDCAN_IE_TEFLE_Pos) /*!< 0x00008000 */
4381#define FDCAN_IE_TEFLE FDCAN_IE_TEFLE_Msk /*!<Tx Event FIFO Element Lost Enable */
4382#define FDCAN_IE_TSWE_Pos (16U)
4383#define FDCAN_IE_TSWE_Msk (0x1UL << FDCAN_IE_TSWE_Pos) /*!< 0x00010000 */
4384#define FDCAN_IE_TSWE FDCAN_IE_TSWE_Msk /*!<Timestamp Wraparound Enable */
4385#define FDCAN_IE_MRAFE_Pos (17U)
4386#define FDCAN_IE_MRAFE_Msk (0x1UL << FDCAN_IE_MRAFE_Pos) /*!< 0x00020000 */
4387#define FDCAN_IE_MRAFE FDCAN_IE_MRAFE_Msk /*!<Message RAM Access Failure Enable */
4388#define FDCAN_IE_TOOE_Pos (18U)
4389#define FDCAN_IE_TOOE_Msk (0x1UL << FDCAN_IE_TOOE_Pos) /*!< 0x00040000 */
4390#define FDCAN_IE_TOOE FDCAN_IE_TOOE_Msk /*!<Timeout Occurred Enable */
4391#define FDCAN_IE_DRXE_Pos (19U)
4392#define FDCAN_IE_DRXE_Msk (0x1UL << FDCAN_IE_DRXE_Pos) /*!< 0x00080000 */
4393#define FDCAN_IE_DRXE FDCAN_IE_DRXE_Msk /*!<Message stored to Dedicated Rx Buffer Enable */
4394#define FDCAN_IE_BECE_Pos (20U)
4395#define FDCAN_IE_BECE_Msk (0x1UL << FDCAN_IE_BECE_Pos) /*!< 0x00100000 */
4396#define FDCAN_IE_BECE FDCAN_IE_BECE_Msk /*!<Bit Error Corrected Interrupt Enable */
4397#define FDCAN_IE_BEUE_Pos (21U)
4398#define FDCAN_IE_BEUE_Msk (0x1UL << FDCAN_IE_BEUE_Pos) /*!< 0x00200000 */
4399#define FDCAN_IE_BEUE FDCAN_IE_BEUE_Msk /*!<Bit Error Uncorrected Interrupt Enable */
4400#define FDCAN_IE_ELOE_Pos (22U)
4401#define FDCAN_IE_ELOE_Msk (0x1UL << FDCAN_IE_ELOE_Pos) /*!< 0x00400000 */
4402#define FDCAN_IE_ELOE FDCAN_IE_ELOE_Msk /*!<Error Logging Overflow Enable */
4403#define FDCAN_IE_EPE_Pos (23U)
4404#define FDCAN_IE_EPE_Msk (0x1UL << FDCAN_IE_EPE_Pos) /*!< 0x00800000 */
4405#define FDCAN_IE_EPE FDCAN_IE_EPE_Msk /*!<Error Passive Enable */
4406#define FDCAN_IE_EWE_Pos (24U)
4407#define FDCAN_IE_EWE_Msk (0x1UL << FDCAN_IE_EWE_Pos) /*!< 0x01000000 */
4408#define FDCAN_IE_EWE FDCAN_IE_EWE_Msk /*!<Warning Status Enable */
4409#define FDCAN_IE_BOE_Pos (25U)
4410#define FDCAN_IE_BOE_Msk (0x1UL << FDCAN_IE_BOE_Pos) /*!< 0x02000000 */
4411#define FDCAN_IE_BOE FDCAN_IE_BOE_Msk /*!<Bus_Off Status Enable */
4412#define FDCAN_IE_WDIE_Pos (26U)
4413#define FDCAN_IE_WDIE_Msk (0x1UL << FDCAN_IE_WDIE_Pos) /*!< 0x04000000 */
4414#define FDCAN_IE_WDIE FDCAN_IE_WDIE_Msk /*!<Watchdog Interrupt Enable */
4415#define FDCAN_IE_PEAE_Pos (27U)
4416#define FDCAN_IE_PEAE_Msk (0x1UL << FDCAN_IE_PEAE_Pos) /*!< 0x08000000 */
4417#define FDCAN_IE_PEAE FDCAN_IE_PEAE_Msk /*!<Protocol Error in Arbitration Phase Enable */
4418#define FDCAN_IE_PEDE_Pos (28U)
4419#define FDCAN_IE_PEDE_Msk (0x1UL << FDCAN_IE_PEDE_Pos) /*!< 0x10000000 */
4420#define FDCAN_IE_PEDE FDCAN_IE_PEDE_Msk /*!<Protocol Error in Data Phase Enable */
4421#define FDCAN_IE_ARAE_Pos (29U)
4422#define FDCAN_IE_ARAE_Msk (0x1UL << FDCAN_IE_ARAE_Pos) /*!< 0x20000000 */
4423#define FDCAN_IE_ARAE FDCAN_IE_ARAE_Msk /*!<Access to Reserved Address Enable */
4424
4425/***************** Bit definition for FDCAN_ILS register **********************/
4426#define FDCAN_ILS_RF0NL_Pos (0U)
4427#define FDCAN_ILS_RF0NL_Msk (0x1UL << FDCAN_ILS_RF0NL_Pos) /*!< 0x00000001 */
4428#define FDCAN_ILS_RF0NL FDCAN_ILS_RF0NL_Msk /*!<Rx FIFO 0 New Message Line */
4429#define FDCAN_ILS_RF0WL_Pos (1U)
4430#define FDCAN_ILS_RF0WL_Msk (0x1UL << FDCAN_ILS_RF0WL_Pos) /*!< 0x00000002 */
4431#define FDCAN_ILS_RF0WL FDCAN_ILS_RF0WL_Msk /*!<Rx FIFO 0 Watermark Reached Line */
4432#define FDCAN_ILS_RF0FL_Pos (2U)
4433#define FDCAN_ILS_RF0FL_Msk (0x1UL << FDCAN_ILS_RF0FL_Pos) /*!< 0x00000004 */
4434#define FDCAN_ILS_RF0FL FDCAN_ILS_RF0FL_Msk /*!<Rx FIFO 0 Full Line */
4435#define FDCAN_ILS_RF0LL_Pos (3U)
4436#define FDCAN_ILS_RF0LL_Msk (0x1UL << FDCAN_ILS_RF0LL_Pos) /*!< 0x00000008 */
4437#define FDCAN_ILS_RF0LL FDCAN_ILS_RF0LL_Msk /*!<Rx FIFO 0 Message Lost Line */
4438#define FDCAN_ILS_RF1NL_Pos (4U)
4439#define FDCAN_ILS_RF1NL_Msk (0x1UL << FDCAN_ILS_RF1NL_Pos) /*!< 0x00000010 */
4440#define FDCAN_ILS_RF1NL FDCAN_ILS_RF1NL_Msk /*!<Rx FIFO 1 New Message Line */
4441#define FDCAN_ILS_RF1WL_Pos (5U)
4442#define FDCAN_ILS_RF1WL_Msk (0x1UL << FDCAN_ILS_RF1WL_Pos) /*!< 0x00000020 */
4443#define FDCAN_ILS_RF1WL FDCAN_ILS_RF1WL_Msk /*!<Rx FIFO 1 Watermark Reached Line */
4444#define FDCAN_ILS_RF1FL_Pos (6U)
4445#define FDCAN_ILS_RF1FL_Msk (0x1UL << FDCAN_ILS_RF1FL_Pos) /*!< 0x00000040 */
4446#define FDCAN_ILS_RF1FL FDCAN_ILS_RF1FL_Msk /*!<Rx FIFO 1 Full Line */
4447#define FDCAN_ILS_RF1LL_Pos (7U)
4448#define FDCAN_ILS_RF1LL_Msk (0x1UL << FDCAN_ILS_RF1LL_Pos) /*!< 0x00000080 */
4449#define FDCAN_ILS_RF1LL FDCAN_ILS_RF1LL_Msk /*!<Rx FIFO 1 Message Lost Line */
4450#define FDCAN_ILS_HPML_Pos (8U)
4451#define FDCAN_ILS_HPML_Msk (0x1UL << FDCAN_ILS_HPML_Pos) /*!< 0x00000100 */
4452#define FDCAN_ILS_HPML FDCAN_ILS_HPML_Msk /*!<High Priority Message Line */
4453#define FDCAN_ILS_TCL_Pos (9U)
4454#define FDCAN_ILS_TCL_Msk (0x1UL << FDCAN_ILS_TCL_Pos) /*!< 0x00000200 */
4455#define FDCAN_ILS_TCL FDCAN_ILS_TCL_Msk /*!<Transmission Completed Line */
4456#define FDCAN_ILS_TCFL_Pos (10U)
4457#define FDCAN_ILS_TCFL_Msk (0x1UL << FDCAN_ILS_TCFL_Pos) /*!< 0x00000400 */
4458#define FDCAN_ILS_TCFL FDCAN_ILS_TCFL_Msk /*!<Transmission Cancellation Finished Line */
4459#define FDCAN_ILS_TFEL_Pos (11U)
4460#define FDCAN_ILS_TFEL_Msk (0x1UL << FDCAN_ILS_TFEL_Pos) /*!< 0x00000800 */
4461#define FDCAN_ILS_TFEL FDCAN_ILS_TFEL_Msk /*!<Tx FIFO Empty Line */
4462#define FDCAN_ILS_TEFNL_Pos (12U)
4463#define FDCAN_ILS_TEFNL_Msk (0x1UL << FDCAN_ILS_TEFNL_Pos) /*!< 0x00001000 */
4464#define FDCAN_ILS_TEFNL FDCAN_ILS_TEFNL_Msk /*!<Tx Event FIFO New Entry Line */
4465#define FDCAN_ILS_TEFWL_Pos (13U)
4466#define FDCAN_ILS_TEFWL_Msk (0x1UL << FDCAN_ILS_TEFWL_Pos) /*!< 0x00002000 */
4467#define FDCAN_ILS_TEFWL FDCAN_ILS_TEFWL_Msk /*!<Tx Event FIFO Watermark Reached Line */
4468#define FDCAN_ILS_TEFFL_Pos (14U)
4469#define FDCAN_ILS_TEFFL_Msk (0x1UL << FDCAN_ILS_TEFFL_Pos) /*!< 0x00004000 */
4470#define FDCAN_ILS_TEFFL FDCAN_ILS_TEFFL_Msk /*!<Tx Event FIFO Full Line */
4471#define FDCAN_ILS_TEFLL_Pos (15U)
4472#define FDCAN_ILS_TEFLL_Msk (0x1UL << FDCAN_ILS_TEFLL_Pos) /*!< 0x00008000 */
4473#define FDCAN_ILS_TEFLL FDCAN_ILS_TEFLL_Msk /*!<Tx Event FIFO Element Lost Line */
4474#define FDCAN_ILS_TSWL_Pos (16U)
4475#define FDCAN_ILS_TSWL_Msk (0x1UL << FDCAN_ILS_TSWL_Pos) /*!< 0x00010000 */
4476#define FDCAN_ILS_TSWL FDCAN_ILS_TSWL_Msk /*!<Timestamp Wraparound Line */
4477#define FDCAN_ILS_MRAFE_Pos (17U)
4478#define FDCAN_ILS_MRAFE_Msk (0x1UL << FDCAN_ILS_MRAFE_Pos) /*!< 0x00020000 */
4479#define FDCAN_ILS_MRAFE FDCAN_ILS_MRAFE_Msk /*!<Message RAM Access Failure Line */
4480#define FDCAN_ILS_TOOE_Pos (18U)
4481#define FDCAN_ILS_TOOE_Msk (0x1UL << FDCAN_ILS_TOOE_Pos) /*!< 0x00040000 */
4482#define FDCAN_ILS_TOOE FDCAN_ILS_TOOE_Msk /*!<Timeout Occurred Line */
4483#define FDCAN_ILS_DRXE_Pos (19U)
4484#define FDCAN_ILS_DRXE_Msk (0x1UL << FDCAN_ILS_DRXE_Pos) /*!< 0x00080000 */
4485#define FDCAN_ILS_DRXE FDCAN_ILS_DRXE_Msk /*!<Message stored to Dedicated Rx Buffer Line */
4486#define FDCAN_ILS_BECE_Pos (20U)
4487#define FDCAN_ILS_BECE_Msk (0x1UL << FDCAN_ILS_BECE_Pos) /*!< 0x00100000 */
4488#define FDCAN_ILS_BECE FDCAN_ILS_BECE_Msk /*!<Bit Error Corrected Interrupt Line */
4489#define FDCAN_ILS_BEUE_Pos (21U)
4490#define FDCAN_ILS_BEUE_Msk (0x1UL << FDCAN_ILS_BEUE_Pos) /*!< 0x00200000 */
4491#define FDCAN_ILS_BEUE FDCAN_ILS_BEUE_Msk /*!<Bit Error Uncorrected Interrupt Line */
4492#define FDCAN_ILS_ELOE_Pos (22U)
4493#define FDCAN_ILS_ELOE_Msk (0x1UL << FDCAN_ILS_ELOE_Pos) /*!< 0x00400000 */
4494#define FDCAN_ILS_ELOE FDCAN_ILS_ELOE_Msk /*!<Error Logging Overflow Line */
4495#define FDCAN_ILS_EPE_Pos (23U)
4496#define FDCAN_ILS_EPE_Msk (0x1UL << FDCAN_ILS_EPE_Pos) /*!< 0x00800000 */
4497#define FDCAN_ILS_EPE FDCAN_ILS_EPE_Msk /*!<Error Passive Line */
4498#define FDCAN_ILS_EWE_Pos (24U)
4499#define FDCAN_ILS_EWE_Msk (0x1UL << FDCAN_ILS_EWE_Pos) /*!< 0x01000000 */
4500#define FDCAN_ILS_EWE FDCAN_ILS_EWE_Msk /*!<Warning Status Line */
4501#define FDCAN_ILS_BOE_Pos (25U)
4502#define FDCAN_ILS_BOE_Msk (0x1UL << FDCAN_ILS_BOE_Pos) /*!< 0x02000000 */
4503#define FDCAN_ILS_BOE FDCAN_ILS_BOE_Msk /*!<Bus_Off Status Line */
4504#define FDCAN_ILS_WDIE_Pos (26U)
4505#define FDCAN_ILS_WDIE_Msk (0x1UL << FDCAN_ILS_WDIE_Pos) /*!< 0x04000000 */
4506#define FDCAN_ILS_WDIE FDCAN_ILS_WDIE_Msk /*!<Watchdog Interrupt Line */
4507#define FDCAN_ILS_PEAE_Pos (27U)
4508#define FDCAN_ILS_PEAE_Msk (0x1UL << FDCAN_ILS_PEAE_Pos) /*!< 0x08000000 */
4509#define FDCAN_ILS_PEAE FDCAN_ILS_PEAE_Msk /*!<Protocol Error in Arbitration Phase Line */
4510#define FDCAN_ILS_PEDE_Pos (28U)
4511#define FDCAN_ILS_PEDE_Msk (0x1UL << FDCAN_ILS_PEDE_Pos) /*!< 0x10000000 */
4512#define FDCAN_ILS_PEDE FDCAN_ILS_PEDE_Msk /*!<Protocol Error in Data Phase Line */
4513#define FDCAN_ILS_ARAE_Pos (29U)
4514#define FDCAN_ILS_ARAE_Msk (0x1UL << FDCAN_ILS_ARAE_Pos) /*!< 0x20000000 */
4515#define FDCAN_ILS_ARAE FDCAN_ILS_ARAE_Msk /*!<Access to Reserved Address Line */
4516
4517/***************** Bit definition for FDCAN_ILE register **********************/
4518#define FDCAN_ILE_EINT0_Pos (0U)
4519#define FDCAN_ILE_EINT0_Msk (0x1UL << FDCAN_ILE_EINT0_Pos) /*!< 0x00000001 */
4520#define FDCAN_ILE_EINT0 FDCAN_ILE_EINT0_Msk /*!<Enable Interrupt Line 0 */
4521#define FDCAN_ILE_EINT1_Pos (1U)
4522#define FDCAN_ILE_EINT1_Msk (0x1UL << FDCAN_ILE_EINT1_Pos) /*!< 0x00000002 */
4523#define FDCAN_ILE_EINT1 FDCAN_ILE_EINT1_Msk /*!<Enable Interrupt Line 1 */
4524
4525/***************** Bit definition for FDCAN_GFC register **********************/
4526#define FDCAN_GFC_RRFE_Pos (0U)
4527#define FDCAN_GFC_RRFE_Msk (0x1UL << FDCAN_GFC_RRFE_Pos) /*!< 0x00000001 */
4528#define FDCAN_GFC_RRFE FDCAN_GFC_RRFE_Msk /*!<Reject Remote Frames Extended */
4529#define FDCAN_GFC_RRFS_Pos (1U)
4530#define FDCAN_GFC_RRFS_Msk (0x1UL << FDCAN_GFC_RRFS_Pos) /*!< 0x00000002 */
4531#define FDCAN_GFC_RRFS FDCAN_GFC_RRFS_Msk /*!<Reject Remote Frames Standard */
4532#define FDCAN_GFC_ANFE_Pos (2U)
4533#define FDCAN_GFC_ANFE_Msk (0x3UL << FDCAN_GFC_ANFE_Pos) /*!< 0x0000000C */
4534#define FDCAN_GFC_ANFE FDCAN_GFC_ANFE_Msk /*!<Accept Non-matching Frames Extended */
4535#define FDCAN_GFC_ANFS_Pos (4U)
4536#define FDCAN_GFC_ANFS_Msk (0x3UL << FDCAN_GFC_ANFS_Pos) /*!< 0x00000030 */
4537#define FDCAN_GFC_ANFS FDCAN_GFC_ANFS_Msk /*!<Accept Non-matching Frames Standard */
4538
4539/***************** Bit definition for FDCAN_SIDFC register ********************/
4540#define FDCAN_SIDFC_FLSSA_Pos (2U)
4541#define FDCAN_SIDFC_FLSSA_Msk (0x3FFFUL << FDCAN_SIDFC_FLSSA_Pos) /*!< 0x0000FFFC */
4542#define FDCAN_SIDFC_FLSSA FDCAN_SIDFC_FLSSA_Msk /*!<Filter List Standard Start Address */
4543#define FDCAN_SIDFC_LSS_Pos (16U)
4544#define FDCAN_SIDFC_LSS_Msk (0xFFUL << FDCAN_SIDFC_LSS_Pos) /*!< 0x00FF0000 */
4545#define FDCAN_SIDFC_LSS FDCAN_SIDFC_LSS_Msk /*!<List Size Standard */
4546
4547/***************** Bit definition for FDCAN_XIDFC register ********************/
4548#define FDCAN_XIDFC_FLESA_Pos (2U)
4549#define FDCAN_XIDFC_FLESA_Msk (0x3FFFUL << FDCAN_XIDFC_FLESA_Pos) /*!< 0x0000FFFC */
4550#define FDCAN_XIDFC_FLESA FDCAN_XIDFC_FLESA_Msk /*!<Filter List Standard Start Address */
4551#define FDCAN_XIDFC_LSE_Pos (16U)
4552#define FDCAN_XIDFC_LSE_Msk (0x7FUL << FDCAN_XIDFC_LSE_Pos) /*!< 0x007F0000 */
4553#define FDCAN_XIDFC_LSE FDCAN_XIDFC_LSE_Msk /*!<List Size Extended */
4554
4555/***************** Bit definition for FDCAN_XIDAM register ********************/
4556#define FDCAN_XIDAM_EIDM_Pos (0U)
4557#define FDCAN_XIDAM_EIDM_Msk (0x1FFFFFFFUL << FDCAN_XIDAM_EIDM_Pos) /*!< 0x1FFFFFFF */
4558#define FDCAN_XIDAM_EIDM FDCAN_XIDAM_EIDM_Msk /*!<Extended ID Mask */
4559
4560/***************** Bit definition for FDCAN_HPMS register *********************/
4561#define FDCAN_HPMS_BIDX_Pos (0U)
4562#define FDCAN_HPMS_BIDX_Msk (0x3FUL << FDCAN_HPMS_BIDX_Pos) /*!< 0x0000003F */
4563#define FDCAN_HPMS_BIDX FDCAN_HPMS_BIDX_Msk /*!<Buffer Index */
4564#define FDCAN_HPMS_MSI_Pos (6U)
4565#define FDCAN_HPMS_MSI_Msk (0x3UL << FDCAN_HPMS_MSI_Pos) /*!< 0x000000C0 */
4566#define FDCAN_HPMS_MSI FDCAN_HPMS_MSI_Msk /*!<Message Storage Indicator */
4567#define FDCAN_HPMS_FIDX_Pos (8U)
4568#define FDCAN_HPMS_FIDX_Msk (0x7FUL << FDCAN_HPMS_FIDX_Pos) /*!< 0x00007F00 */
4569#define FDCAN_HPMS_FIDX FDCAN_HPMS_FIDX_Msk /*!<Filter Index */
4570#define FDCAN_HPMS_FLST_Pos (15U)
4571#define FDCAN_HPMS_FLST_Msk (0x1UL << FDCAN_HPMS_FLST_Pos) /*!< 0x00008000 */
4572#define FDCAN_HPMS_FLST FDCAN_HPMS_FLST_Msk /*!<Filter List */
4573
4574/***************** Bit definition for FDCAN_NDAT1 register ********************/
4575#define FDCAN_NDAT1_ND0_Pos (0U)
4576#define FDCAN_NDAT1_ND0_Msk (0x1UL << FDCAN_NDAT1_ND0_Pos) /*!< 0x00000001 */
4577#define FDCAN_NDAT1_ND0 FDCAN_NDAT1_ND0_Msk /*!<New Data flag of Rx Buffer 0 */
4578#define FDCAN_NDAT1_ND1_Pos (1U)
4579#define FDCAN_NDAT1_ND1_Msk (0x1UL << FDCAN_NDAT1_ND1_Pos) /*!< 0x00000002 */
4580#define FDCAN_NDAT1_ND1 FDCAN_NDAT1_ND1_Msk /*!<New Data flag of Rx Buffer 1 */
4581#define FDCAN_NDAT1_ND2_Pos (2U)
4582#define FDCAN_NDAT1_ND2_Msk (0x1UL << FDCAN_NDAT1_ND2_Pos) /*!< 0x00000004 */
4583#define FDCAN_NDAT1_ND2 FDCAN_NDAT1_ND2_Msk /*!<New Data flag of Rx Buffer 2 */
4584#define FDCAN_NDAT1_ND3_Pos (3U)
4585#define FDCAN_NDAT1_ND3_Msk (0x1UL << FDCAN_NDAT1_ND3_Pos) /*!< 0x00000008 */
4586#define FDCAN_NDAT1_ND3 FDCAN_NDAT1_ND3_Msk /*!<New Data flag of Rx Buffer 3 */
4587#define FDCAN_NDAT1_ND4_Pos (4U)
4588#define FDCAN_NDAT1_ND4_Msk (0x1UL << FDCAN_NDAT1_ND4_Pos) /*!< 0x00000010 */
4589#define FDCAN_NDAT1_ND4 FDCAN_NDAT1_ND4_Msk /*!<New Data flag of Rx Buffer 4 */
4590#define FDCAN_NDAT1_ND5_Pos (5U)
4591#define FDCAN_NDAT1_ND5_Msk (0x1UL << FDCAN_NDAT1_ND5_Pos) /*!< 0x00000020 */
4592#define FDCAN_NDAT1_ND5 FDCAN_NDAT1_ND5_Msk /*!<New Data flag of Rx Buffer 5 */
4593#define FDCAN_NDAT1_ND6_Pos (6U)
4594#define FDCAN_NDAT1_ND6_Msk (0x1UL << FDCAN_NDAT1_ND6_Pos) /*!< 0x00000040 */
4595#define FDCAN_NDAT1_ND6 FDCAN_NDAT1_ND6_Msk /*!<New Data flag of Rx Buffer 6 */
4596#define FDCAN_NDAT1_ND7_Pos (7U)
4597#define FDCAN_NDAT1_ND7_Msk (0x1UL << FDCAN_NDAT1_ND7_Pos) /*!< 0x00000080 */
4598#define FDCAN_NDAT1_ND7 FDCAN_NDAT1_ND7_Msk /*!<New Data flag of Rx Buffer 7 */
4599#define FDCAN_NDAT1_ND8_Pos (8U)
4600#define FDCAN_NDAT1_ND8_Msk (0x1UL << FDCAN_NDAT1_ND8_Pos) /*!< 0x00000100 */
4601#define FDCAN_NDAT1_ND8 FDCAN_NDAT1_ND8_Msk /*!<New Data flag of Rx Buffer 8 */
4602#define FDCAN_NDAT1_ND9_Pos (9U)
4603#define FDCAN_NDAT1_ND9_Msk (0x1UL << FDCAN_NDAT1_ND9_Pos) /*!< 0x00000200 */
4604#define FDCAN_NDAT1_ND9 FDCAN_NDAT1_ND9_Msk /*!<New Data flag of Rx Buffer 9 */
4605#define FDCAN_NDAT1_ND10_Pos (10U)
4606#define FDCAN_NDAT1_ND10_Msk (0x1UL << FDCAN_NDAT1_ND10_Pos) /*!< 0x00000400 */
4607#define FDCAN_NDAT1_ND10 FDCAN_NDAT1_ND10_Msk /*!<New Data flag of Rx Buffer 10 */
4608#define FDCAN_NDAT1_ND11_Pos (11U)
4609#define FDCAN_NDAT1_ND11_Msk (0x1UL << FDCAN_NDAT1_ND11_Pos) /*!< 0x00000800 */
4610#define FDCAN_NDAT1_ND11 FDCAN_NDAT1_ND11_Msk /*!<New Data flag of Rx Buffer 11 */
4611#define FDCAN_NDAT1_ND12_Pos (12U)
4612#define FDCAN_NDAT1_ND12_Msk (0x1UL << FDCAN_NDAT1_ND12_Pos) /*!< 0x00001000 */
4613#define FDCAN_NDAT1_ND12 FDCAN_NDAT1_ND12_Msk /*!<New Data flag of Rx Buffer 12 */
4614#define FDCAN_NDAT1_ND13_Pos (13U)
4615#define FDCAN_NDAT1_ND13_Msk (0x1UL << FDCAN_NDAT1_ND13_Pos) /*!< 0x00002000 */
4616#define FDCAN_NDAT1_ND13 FDCAN_NDAT1_ND13_Msk /*!<New Data flag of Rx Buffer 13 */
4617#define FDCAN_NDAT1_ND14_Pos (14U)
4618#define FDCAN_NDAT1_ND14_Msk (0x1UL << FDCAN_NDAT1_ND14_Pos) /*!< 0x00004000 */
4619#define FDCAN_NDAT1_ND14 FDCAN_NDAT1_ND14_Msk /*!<New Data flag of Rx Buffer 14 */
4620#define FDCAN_NDAT1_ND15_Pos (15U)
4621#define FDCAN_NDAT1_ND15_Msk (0x1UL << FDCAN_NDAT1_ND15_Pos) /*!< 0x00008000 */
4622#define FDCAN_NDAT1_ND15 FDCAN_NDAT1_ND15_Msk /*!<New Data flag of Rx Buffer 15 */
4623#define FDCAN_NDAT1_ND16_Pos (16U)
4624#define FDCAN_NDAT1_ND16_Msk (0x1UL << FDCAN_NDAT1_ND16_Pos) /*!< 0x00010000 */
4625#define FDCAN_NDAT1_ND16 FDCAN_NDAT1_ND16_Msk /*!<New Data flag of Rx Buffer 16 */
4626#define FDCAN_NDAT1_ND17_Pos (17U)
4627#define FDCAN_NDAT1_ND17_Msk (0x1UL << FDCAN_NDAT1_ND17_Pos) /*!< 0x00020000 */
4628#define FDCAN_NDAT1_ND17 FDCAN_NDAT1_ND17_Msk /*!<New Data flag of Rx Buffer 17 */
4629#define FDCAN_NDAT1_ND18_Pos (18U)
4630#define FDCAN_NDAT1_ND18_Msk (0x1UL << FDCAN_NDAT1_ND18_Pos) /*!< 0x00040000 */
4631#define FDCAN_NDAT1_ND18 FDCAN_NDAT1_ND18_Msk /*!<New Data flag of Rx Buffer 18 */
4632#define FDCAN_NDAT1_ND19_Pos (19U)
4633#define FDCAN_NDAT1_ND19_Msk (0x1UL << FDCAN_NDAT1_ND19_Pos) /*!< 0x00080000 */
4634#define FDCAN_NDAT1_ND19 FDCAN_NDAT1_ND19_Msk /*!<New Data flag of Rx Buffer 19 */
4635#define FDCAN_NDAT1_ND20_Pos (20U)
4636#define FDCAN_NDAT1_ND20_Msk (0x1UL << FDCAN_NDAT1_ND20_Pos) /*!< 0x00100000 */
4637#define FDCAN_NDAT1_ND20 FDCAN_NDAT1_ND20_Msk /*!<New Data flag of Rx Buffer 20 */
4638#define FDCAN_NDAT1_ND21_Pos (21U)
4639#define FDCAN_NDAT1_ND21_Msk (0x1UL << FDCAN_NDAT1_ND21_Pos) /*!< 0x00200000 */
4640#define FDCAN_NDAT1_ND21 FDCAN_NDAT1_ND21_Msk /*!<New Data flag of Rx Buffer 21 */
4641#define FDCAN_NDAT1_ND22_Pos (22U)
4642#define FDCAN_NDAT1_ND22_Msk (0x1UL << FDCAN_NDAT1_ND22_Pos) /*!< 0x00400000 */
4643#define FDCAN_NDAT1_ND22 FDCAN_NDAT1_ND22_Msk /*!<New Data flag of Rx Buffer 22 */
4644#define FDCAN_NDAT1_ND23_Pos (23U)
4645#define FDCAN_NDAT1_ND23_Msk (0x1UL << FDCAN_NDAT1_ND23_Pos) /*!< 0x00800000 */
4646#define FDCAN_NDAT1_ND23 FDCAN_NDAT1_ND23_Msk /*!<New Data flag of Rx Buffer 23 */
4647#define FDCAN_NDAT1_ND24_Pos (24U)
4648#define FDCAN_NDAT1_ND24_Msk (0x1UL << FDCAN_NDAT1_ND24_Pos) /*!< 0x01000000 */
4649#define FDCAN_NDAT1_ND24 FDCAN_NDAT1_ND24_Msk /*!<New Data flag of Rx Buffer 24 */
4650#define FDCAN_NDAT1_ND25_Pos (25U)
4651#define FDCAN_NDAT1_ND25_Msk (0x1UL << FDCAN_NDAT1_ND25_Pos) /*!< 0x02000000 */
4652#define FDCAN_NDAT1_ND25 FDCAN_NDAT1_ND25_Msk /*!<New Data flag of Rx Buffer 25 */
4653#define FDCAN_NDAT1_ND26_Pos (26U)
4654#define FDCAN_NDAT1_ND26_Msk (0x1UL << FDCAN_NDAT1_ND26_Pos) /*!< 0x04000000 */
4655#define FDCAN_NDAT1_ND26 FDCAN_NDAT1_ND26_Msk /*!<New Data flag of Rx Buffer 26 */
4656#define FDCAN_NDAT1_ND27_Pos (27U)
4657#define FDCAN_NDAT1_ND27_Msk (0x1UL << FDCAN_NDAT1_ND27_Pos) /*!< 0x08000000 */
4658#define FDCAN_NDAT1_ND27 FDCAN_NDAT1_ND27_Msk /*!<New Data flag of Rx Buffer 27 */
4659#define FDCAN_NDAT1_ND28_Pos (28U)
4660#define FDCAN_NDAT1_ND28_Msk (0x1UL << FDCAN_NDAT1_ND28_Pos) /*!< 0x10000000 */
4661#define FDCAN_NDAT1_ND28 FDCAN_NDAT1_ND28_Msk /*!<New Data flag of Rx Buffer 28 */
4662#define FDCAN_NDAT1_ND29_Pos (29U)
4663#define FDCAN_NDAT1_ND29_Msk (0x1UL << FDCAN_NDAT1_ND29_Pos) /*!< 0x20000000 */
4664#define FDCAN_NDAT1_ND29 FDCAN_NDAT1_ND29_Msk /*!<New Data flag of Rx Buffer 29 */
4665#define FDCAN_NDAT1_ND30_Pos (30U)
4666#define FDCAN_NDAT1_ND30_Msk (0x1UL << FDCAN_NDAT1_ND30_Pos) /*!< 0x40000000 */
4667#define FDCAN_NDAT1_ND30 FDCAN_NDAT1_ND30_Msk /*!<New Data flag of Rx Buffer 30 */
4668#define FDCAN_NDAT1_ND31_Pos (31U)
4669#define FDCAN_NDAT1_ND31_Msk (0x1UL << FDCAN_NDAT1_ND31_Pos) /*!< 0x80000000 */
4670#define FDCAN_NDAT1_ND31 FDCAN_NDAT1_ND31_Msk /*!<New Data flag of Rx Buffer 31 */
4671
4672/***************** Bit definition for FDCAN_NDAT2 register ********************/
4673#define FDCAN_NDAT2_ND32_Pos (0U)
4674#define FDCAN_NDAT2_ND32_Msk (0x1UL << FDCAN_NDAT2_ND32_Pos) /*!< 0x00000001 */
4675#define FDCAN_NDAT2_ND32 FDCAN_NDAT2_ND32_Msk /*!<New Data flag of Rx Buffer 32 */
4676#define FDCAN_NDAT2_ND33_Pos (1U)
4677#define FDCAN_NDAT2_ND33_Msk (0x1UL << FDCAN_NDAT2_ND33_Pos) /*!< 0x00000002 */
4678#define FDCAN_NDAT2_ND33 FDCAN_NDAT2_ND33_Msk /*!<New Data flag of Rx Buffer 33 */
4679#define FDCAN_NDAT2_ND34_Pos (2U)
4680#define FDCAN_NDAT2_ND34_Msk (0x1UL << FDCAN_NDAT2_ND34_Pos) /*!< 0x00000004 */
4681#define FDCAN_NDAT2_ND34 FDCAN_NDAT2_ND34_Msk /*!<New Data flag of Rx Buffer 34 */
4682#define FDCAN_NDAT2_ND35_Pos (3U)
4683#define FDCAN_NDAT2_ND35_Msk (0x1UL << FDCAN_NDAT2_ND35_Pos) /*!< 0x00000008 */
4684#define FDCAN_NDAT2_ND35 FDCAN_NDAT2_ND35_Msk /*!<New Data flag of Rx Buffer 35 */
4685#define FDCAN_NDAT2_ND36_Pos (4U)
4686#define FDCAN_NDAT2_ND36_Msk (0x1UL << FDCAN_NDAT2_ND36_Pos) /*!< 0x00000010 */
4687#define FDCAN_NDAT2_ND36 FDCAN_NDAT2_ND36_Msk /*!<New Data flag of Rx Buffer 36 */
4688#define FDCAN_NDAT2_ND37_Pos (5U)
4689#define FDCAN_NDAT2_ND37_Msk (0x1UL << FDCAN_NDAT2_ND37_Pos) /*!< 0x00000020 */
4690#define FDCAN_NDAT2_ND37 FDCAN_NDAT2_ND37_Msk /*!<New Data flag of Rx Buffer 37 */
4691#define FDCAN_NDAT2_ND38_Pos (6U)
4692#define FDCAN_NDAT2_ND38_Msk (0x1UL << FDCAN_NDAT2_ND38_Pos) /*!< 0x00000040 */
4693#define FDCAN_NDAT2_ND38 FDCAN_NDAT2_ND38_Msk /*!<New Data flag of Rx Buffer 38 */
4694#define FDCAN_NDAT2_ND39_Pos (7U)
4695#define FDCAN_NDAT2_ND39_Msk (0x1UL << FDCAN_NDAT2_ND39_Pos) /*!< 0x00000080 */
4696#define FDCAN_NDAT2_ND39 FDCAN_NDAT2_ND39_Msk /*!<New Data flag of Rx Buffer 39 */
4697#define FDCAN_NDAT2_ND40_Pos (8U)
4698#define FDCAN_NDAT2_ND40_Msk (0x1UL << FDCAN_NDAT2_ND40_Pos) /*!< 0x00000100 */
4699#define FDCAN_NDAT2_ND40 FDCAN_NDAT2_ND40_Msk /*!<New Data flag of Rx Buffer 40 */
4700#define FDCAN_NDAT2_ND41_Pos (9U)
4701#define FDCAN_NDAT2_ND41_Msk (0x1UL << FDCAN_NDAT2_ND41_Pos) /*!< 0x00000200 */
4702#define FDCAN_NDAT2_ND41 FDCAN_NDAT2_ND41_Msk /*!<New Data flag of Rx Buffer 41 */
4703#define FDCAN_NDAT2_ND42_Pos (10U)
4704#define FDCAN_NDAT2_ND42_Msk (0x1UL << FDCAN_NDAT2_ND42_Pos) /*!< 0x00000400 */
4705#define FDCAN_NDAT2_ND42 FDCAN_NDAT2_ND42_Msk /*!<New Data flag of Rx Buffer 42 */
4706#define FDCAN_NDAT2_ND43_Pos (11U)
4707#define FDCAN_NDAT2_ND43_Msk (0x1UL << FDCAN_NDAT2_ND43_Pos) /*!< 0x00000800 */
4708#define FDCAN_NDAT2_ND43 FDCAN_NDAT2_ND43_Msk /*!<New Data flag of Rx Buffer 43 */
4709#define FDCAN_NDAT2_ND44_Pos (12U)
4710#define FDCAN_NDAT2_ND44_Msk (0x1UL << FDCAN_NDAT2_ND44_Pos) /*!< 0x00001000 */
4711#define FDCAN_NDAT2_ND44 FDCAN_NDAT2_ND44_Msk /*!<New Data flag of Rx Buffer 44 */
4712#define FDCAN_NDAT2_ND45_Pos (13U)
4713#define FDCAN_NDAT2_ND45_Msk (0x1UL << FDCAN_NDAT2_ND45_Pos) /*!< 0x00002000 */
4714#define FDCAN_NDAT2_ND45 FDCAN_NDAT2_ND45_Msk /*!<New Data flag of Rx Buffer 45 */
4715#define FDCAN_NDAT2_ND46_Pos (14U)
4716#define FDCAN_NDAT2_ND46_Msk (0x1UL << FDCAN_NDAT2_ND46_Pos) /*!< 0x00004000 */
4717#define FDCAN_NDAT2_ND46 FDCAN_NDAT2_ND46_Msk /*!<New Data flag of Rx Buffer 46 */
4718#define FDCAN_NDAT2_ND47_Pos (15U)
4719#define FDCAN_NDAT2_ND47_Msk (0x1UL << FDCAN_NDAT2_ND47_Pos) /*!< 0x00008000 */
4720#define FDCAN_NDAT2_ND47 FDCAN_NDAT2_ND47_Msk /*!<New Data flag of Rx Buffer 47 */
4721#define FDCAN_NDAT2_ND48_Pos (16U)
4722#define FDCAN_NDAT2_ND48_Msk (0x1UL << FDCAN_NDAT2_ND48_Pos) /*!< 0x00010000 */
4723#define FDCAN_NDAT2_ND48 FDCAN_NDAT2_ND48_Msk /*!<New Data flag of Rx Buffer 48 */
4724#define FDCAN_NDAT2_ND49_Pos (17U)
4725#define FDCAN_NDAT2_ND49_Msk (0x1UL << FDCAN_NDAT2_ND49_Pos) /*!< 0x00020000 */
4726#define FDCAN_NDAT2_ND49 FDCAN_NDAT2_ND49_Msk /*!<New Data flag of Rx Buffer 49 */
4727#define FDCAN_NDAT2_ND50_Pos (18U)
4728#define FDCAN_NDAT2_ND50_Msk (0x1UL << FDCAN_NDAT2_ND50_Pos) /*!< 0x00040000 */
4729#define FDCAN_NDAT2_ND50 FDCAN_NDAT2_ND50_Msk /*!<New Data flag of Rx Buffer 50 */
4730#define FDCAN_NDAT2_ND51_Pos (19U)
4731#define FDCAN_NDAT2_ND51_Msk (0x1UL << FDCAN_NDAT2_ND51_Pos) /*!< 0x00080000 */
4732#define FDCAN_NDAT2_ND51 FDCAN_NDAT2_ND51_Msk /*!<New Data flag of Rx Buffer 51 */
4733#define FDCAN_NDAT2_ND52_Pos (20U)
4734#define FDCAN_NDAT2_ND52_Msk (0x1UL << FDCAN_NDAT2_ND52_Pos) /*!< 0x00100000 */
4735#define FDCAN_NDAT2_ND52 FDCAN_NDAT2_ND52_Msk /*!<New Data flag of Rx Buffer 52 */
4736#define FDCAN_NDAT2_ND53_Pos (21U)
4737#define FDCAN_NDAT2_ND53_Msk (0x1UL << FDCAN_NDAT2_ND53_Pos) /*!< 0x00200000 */
4738#define FDCAN_NDAT2_ND53 FDCAN_NDAT2_ND53_Msk /*!<New Data flag of Rx Buffer 53 */
4739#define FDCAN_NDAT2_ND54_Pos (22U)
4740#define FDCAN_NDAT2_ND54_Msk (0x1UL << FDCAN_NDAT2_ND54_Pos) /*!< 0x00400000 */
4741#define FDCAN_NDAT2_ND54 FDCAN_NDAT2_ND54_Msk /*!<New Data flag of Rx Buffer 54 */
4742#define FDCAN_NDAT2_ND55_Pos (23U)
4743#define FDCAN_NDAT2_ND55_Msk (0x1UL << FDCAN_NDAT2_ND55_Pos) /*!< 0x00800000 */
4744#define FDCAN_NDAT2_ND55 FDCAN_NDAT2_ND55_Msk /*!<New Data flag of Rx Buffer 55 */
4745#define FDCAN_NDAT2_ND56_Pos (24U)
4746#define FDCAN_NDAT2_ND56_Msk (0x1UL << FDCAN_NDAT2_ND56_Pos) /*!< 0x01000000 */
4747#define FDCAN_NDAT2_ND56 FDCAN_NDAT2_ND56_Msk /*!<New Data flag of Rx Buffer 56 */
4748#define FDCAN_NDAT2_ND57_Pos (25U)
4749#define FDCAN_NDAT2_ND57_Msk (0x1UL << FDCAN_NDAT2_ND57_Pos) /*!< 0x02000000 */
4750#define FDCAN_NDAT2_ND57 FDCAN_NDAT2_ND57_Msk /*!<New Data flag of Rx Buffer 57 */
4751#define FDCAN_NDAT2_ND58_Pos (26U)
4752#define FDCAN_NDAT2_ND58_Msk (0x1UL << FDCAN_NDAT2_ND58_Pos) /*!< 0x04000000 */
4753#define FDCAN_NDAT2_ND58 FDCAN_NDAT2_ND58_Msk /*!<New Data flag of Rx Buffer 58 */
4754#define FDCAN_NDAT2_ND59_Pos (27U)
4755#define FDCAN_NDAT2_ND59_Msk (0x1UL << FDCAN_NDAT2_ND59_Pos) /*!< 0x08000000 */
4756#define FDCAN_NDAT2_ND59 FDCAN_NDAT2_ND59_Msk /*!<New Data flag of Rx Buffer 59 */
4757#define FDCAN_NDAT2_ND60_Pos (28U)
4758#define FDCAN_NDAT2_ND60_Msk (0x1UL << FDCAN_NDAT2_ND60_Pos) /*!< 0x10000000 */
4759#define FDCAN_NDAT2_ND60 FDCAN_NDAT2_ND60_Msk /*!<New Data flag of Rx Buffer 60 */
4760#define FDCAN_NDAT2_ND61_Pos (29U)
4761#define FDCAN_NDAT2_ND61_Msk (0x1UL << FDCAN_NDAT2_ND61_Pos) /*!< 0x20000000 */
4762#define FDCAN_NDAT2_ND61 FDCAN_NDAT2_ND61_Msk /*!<New Data flag of Rx Buffer 61 */
4763#define FDCAN_NDAT2_ND62_Pos (30U)
4764#define FDCAN_NDAT2_ND62_Msk (0x1UL << FDCAN_NDAT2_ND62_Pos) /*!< 0x40000000 */
4765#define FDCAN_NDAT2_ND62 FDCAN_NDAT2_ND62_Msk /*!<New Data flag of Rx Buffer 62 */
4766#define FDCAN_NDAT2_ND63_Pos (31U)
4767#define FDCAN_NDAT2_ND63_Msk (0x1UL << FDCAN_NDAT2_ND63_Pos) /*!< 0x80000000 */
4768#define FDCAN_NDAT2_ND63 FDCAN_NDAT2_ND63_Msk /*!<New Data flag of Rx Buffer 63 */
4769
4770/***************** Bit definition for FDCAN_RXF0C register ********************/
4771#define FDCAN_RXF0C_F0SA_Pos (2U)
4772#define FDCAN_RXF0C_F0SA_Msk (0x3FFFUL << FDCAN_RXF0C_F0SA_Pos) /*!< 0x0000FFFC */
4773#define FDCAN_RXF0C_F0SA FDCAN_RXF0C_F0SA_Msk /*!<Rx FIFO 0 Start Address */
4774#define FDCAN_RXF0C_F0S_Pos (16U)
4775#define FDCAN_RXF0C_F0S_Msk (0x7FUL << FDCAN_RXF0C_F0S_Pos) /*!< 0x007F0000 */
4776#define FDCAN_RXF0C_F0S FDCAN_RXF0C_F0S_Msk /*!<Number of Rx FIFO 0 elements */
4777#define FDCAN_RXF0C_F0WM_Pos (24U)
4778#define FDCAN_RXF0C_F0WM_Msk (0x7FUL << FDCAN_RXF0C_F0WM_Pos) /*!< 0x7F000000 */
4779#define FDCAN_RXF0C_F0WM FDCAN_RXF0C_F0WM_Msk /*!<FIFO 0 Watermark */
4780#define FDCAN_RXF0C_F0OM_Pos (31U)
4781#define FDCAN_RXF0C_F0OM_Msk (0x1UL << FDCAN_RXF0C_F0OM_Pos) /*!< 0x80000000 */
4782#define FDCAN_RXF0C_F0OM FDCAN_RXF0C_F0OM_Msk /*!<FIFO 0 Operation Mode */
4783
4784/***************** Bit definition for FDCAN_RXF0S register ********************/
4785#define FDCAN_RXF0S_F0FL_Pos (0U)
4786#define FDCAN_RXF0S_F0FL_Msk (0x7FUL << FDCAN_RXF0S_F0FL_Pos) /*!< 0x0000007F */
4787#define FDCAN_RXF0S_F0FL FDCAN_RXF0S_F0FL_Msk /*!<Rx FIFO 0 Fill Level */
4788#define FDCAN_RXF0S_F0GI_Pos (8U)
4789#define FDCAN_RXF0S_F0GI_Msk (0x3FUL << FDCAN_RXF0S_F0GI_Pos) /*!< 0x00003F00 */
4790#define FDCAN_RXF0S_F0GI FDCAN_RXF0S_F0GI_Msk /*!<Rx FIFO 0 Get Index */
4791#define FDCAN_RXF0S_F0PI_Pos (16U)
4792#define FDCAN_RXF0S_F0PI_Msk (0x3FUL << FDCAN_RXF0S_F0PI_Pos) /*!< 0x003F0000 */
4793#define FDCAN_RXF0S_F0PI FDCAN_RXF0S_F0PI_Msk /*!<Rx FIFO 0 Put Index */
4794#define FDCAN_RXF0S_F0F_Pos (24U)
4795#define FDCAN_RXF0S_F0F_Msk (0x1UL << FDCAN_RXF0S_F0F_Pos) /*!< 0x01000000 */
4796#define FDCAN_RXF0S_F0F FDCAN_RXF0S_F0F_Msk /*!<Rx FIFO 0 Full */
4797#define FDCAN_RXF0S_RF0L_Pos (25U)
4798#define FDCAN_RXF0S_RF0L_Msk (0x1UL << FDCAN_RXF0S_RF0L_Pos) /*!< 0x02000000 */
4799#define FDCAN_RXF0S_RF0L FDCAN_RXF0S_RF0L_Msk /*!<Rx FIFO 0 Message Lost */
4800
4801/***************** Bit definition for FDCAN_RXF0A register ********************/
4802#define FDCAN_RXF0A_F0AI_Pos (0U)
4803#define FDCAN_RXF0A_F0AI_Msk (0x3FUL << FDCAN_RXF0A_F0AI_Pos) /*!< 0x0000003F */
4804#define FDCAN_RXF0A_F0AI FDCAN_RXF0A_F0AI_Msk /*!<Rx FIFO 0 Acknowledge Index */
4805
4806/***************** Bit definition for FDCAN_RXBC register ********************/
4807#define FDCAN_RXBC_RBSA_Pos (2U)
4808#define FDCAN_RXBC_RBSA_Msk (0x3FFFUL << FDCAN_RXBC_RBSA_Pos) /*!< 0x0000FFFC */
4809#define FDCAN_RXBC_RBSA FDCAN_RXBC_RBSA_Msk /*!<Rx Buffer Start Address */
4810
4811/***************** Bit definition for FDCAN_RXF1C register ********************/
4812#define FDCAN_RXF1C_F1SA_Pos (2U)
4813#define FDCAN_RXF1C_F1SA_Msk (0x3FFFUL << FDCAN_RXF1C_F1SA_Pos) /*!< 0x0000FFFC */
4814#define FDCAN_RXF1C_F1SA FDCAN_RXF1C_F1SA_Msk /*!<Rx FIFO 1 Start Address */
4815#define FDCAN_RXF1C_F1S_Pos (16U)
4816#define FDCAN_RXF1C_F1S_Msk (0x7FUL << FDCAN_RXF1C_F1S_Pos) /*!< 0x007F0000 */
4817#define FDCAN_RXF1C_F1S FDCAN_RXF1C_F1S_Msk /*!<Number of Rx FIFO 1 elements */
4818#define FDCAN_RXF1C_F1WM_Pos (24U)
4819#define FDCAN_RXF1C_F1WM_Msk (0x7FUL << FDCAN_RXF1C_F1WM_Pos) /*!< 0x7F000000 */
4820#define FDCAN_RXF1C_F1WM FDCAN_RXF1C_F1WM_Msk /*!<Rx FIFO 1 Watermark */
4821#define FDCAN_RXF1C_F1OM_Pos (31U)
4822#define FDCAN_RXF1C_F1OM_Msk (0x1UL << FDCAN_RXF1C_F1OM_Pos) /*!< 0x80000000 */
4823#define FDCAN_RXF1C_F1OM FDCAN_RXF1C_F1OM_Msk /*!<FIFO 1 Operation Mode */
4824
4825/***************** Bit definition for FDCAN_RXF1S register ********************/
4826#define FDCAN_RXF1S_F1FL_Pos (0U)
4827#define FDCAN_RXF1S_F1FL_Msk (0x7FUL << FDCAN_RXF1S_F1FL_Pos) /*!< 0x0000007F */
4828#define FDCAN_RXF1S_F1FL FDCAN_RXF1S_F1FL_Msk /*!<Rx FIFO 1 Fill Level */
4829#define FDCAN_RXF1S_F1GI_Pos (8U)
4830#define FDCAN_RXF1S_F1GI_Msk (0x3FUL << FDCAN_RXF1S_F1GI_Pos) /*!< 0x00003F00 */
4831#define FDCAN_RXF1S_F1GI FDCAN_RXF1S_F1GI_Msk /*!<Rx FIFO 1 Get Index */
4832#define FDCAN_RXF1S_F1PI_Pos (16U)
4833#define FDCAN_RXF1S_F1PI_Msk (0x3FUL << FDCAN_RXF1S_F1PI_Pos) /*!< 0x003F0000 */
4834#define FDCAN_RXF1S_F1PI FDCAN_RXF1S_F1PI_Msk /*!<Rx FIFO 1 Put Index */
4835#define FDCAN_RXF1S_F1F_Pos (24U)
4836#define FDCAN_RXF1S_F1F_Msk (0x1UL << FDCAN_RXF1S_F1F_Pos) /*!< 0x01000000 */
4837#define FDCAN_RXF1S_F1F FDCAN_RXF1S_F1F_Msk /*!<Rx FIFO 1 Full */
4838#define FDCAN_RXF1S_RF1L_Pos (25U)
4839#define FDCAN_RXF1S_RF1L_Msk (0x1UL << FDCAN_RXF1S_RF1L_Pos) /*!< 0x02000000 */
4840#define FDCAN_RXF1S_RF1L FDCAN_RXF1S_RF1L_Msk /*!<Rx FIFO 1 Message Lost */
4841
4842/***************** Bit definition for FDCAN_RXF1A register ********************/
4843#define FDCAN_RXF1A_F1AI_Pos (0U)
4844#define FDCAN_RXF1A_F1AI_Msk (0x3FUL << FDCAN_RXF1A_F1AI_Pos) /*!< 0x0000003F */
4845#define FDCAN_RXF1A_F1AI FDCAN_RXF1A_F1AI_Msk /*!<Rx FIFO 1 Acknowledge Index */
4846
4847/***************** Bit definition for FDCAN_RXESC register ********************/
4848#define FDCAN_RXESC_F0DS_Pos (0U)
4849#define FDCAN_RXESC_F0DS_Msk (0x7UL << FDCAN_RXESC_F0DS_Pos) /*!< 0x00000007 */
4850#define FDCAN_RXESC_F0DS FDCAN_RXESC_F0DS_Msk /*!<Rx FIFO 1 Data Field Size */
4851#define FDCAN_RXESC_F1DS_Pos (4U)
4852#define FDCAN_RXESC_F1DS_Msk (0x7UL << FDCAN_RXESC_F1DS_Pos) /*!< 0x00000070 */
4853#define FDCAN_RXESC_F1DS FDCAN_RXESC_F1DS_Msk /*!<Rx FIFO 0 Data Field Size */
4854#define FDCAN_RXESC_RBDS_Pos (8U)
4855#define FDCAN_RXESC_RBDS_Msk (0x7UL << FDCAN_RXESC_RBDS_Pos) /*!< 0x00000700 */
4856#define FDCAN_RXESC_RBDS FDCAN_RXESC_RBDS_Msk /*!<Rx Buffer Data Field Size */
4857
4858/***************** Bit definition for FDCAN_TXBC register *********************/
4859#define FDCAN_TXBC_TBSA_Pos (2U)
4860#define FDCAN_TXBC_TBSA_Msk (0x3FFFUL << FDCAN_TXBC_TBSA_Pos) /*!< 0x0000FFFC */
4861#define FDCAN_TXBC_TBSA FDCAN_TXBC_TBSA_Msk /*!<Tx Buffers Start Address */
4862#define FDCAN_TXBC_NDTB_Pos (16U)
4863#define FDCAN_TXBC_NDTB_Msk (0x3FUL << FDCAN_TXBC_NDTB_Pos) /*!< 0x003F0000 */
4864#define FDCAN_TXBC_NDTB FDCAN_TXBC_NDTB_Msk /*!<Number of Dedicated Transmit Buffers */
4865#define FDCAN_TXBC_TFQS_Pos (24U)
4866#define FDCAN_TXBC_TFQS_Msk (0x3FUL << FDCAN_TXBC_TFQS_Pos) /*!< 0x3F000000 */
4867#define FDCAN_TXBC_TFQS FDCAN_TXBC_TFQS_Msk /*!<Transmit FIFO/Queue Size */
4868#define FDCAN_TXBC_TFQM_Pos (30U)
4869#define FDCAN_TXBC_TFQM_Msk (0x1UL << FDCAN_TXBC_TFQM_Pos) /*!< 0x40000000 */
4870#define FDCAN_TXBC_TFQM FDCAN_TXBC_TFQM_Msk /*!<Tx FIFO/Queue Mode */
4871
4872/***************** Bit definition for FDCAN_TXFQS register *********************/
4873#define FDCAN_TXFQS_TFFL_Pos (0U)
4874#define FDCAN_TXFQS_TFFL_Msk (0x3FUL << FDCAN_TXFQS_TFFL_Pos) /*!< 0x0000003F */
4875#define FDCAN_TXFQS_TFFL FDCAN_TXFQS_TFFL_Msk /*!<Tx FIFO Free Level */
4876#define FDCAN_TXFQS_TFGI_Pos (8U)
4877#define FDCAN_TXFQS_TFGI_Msk (0x1FUL << FDCAN_TXFQS_TFGI_Pos) /*!< 0x00001F00 */
4878#define FDCAN_TXFQS_TFGI FDCAN_TXFQS_TFGI_Msk /*!<Tx FIFO Get Index */
4879#define FDCAN_TXFQS_TFQPI_Pos (16U)
4880#define FDCAN_TXFQS_TFQPI_Msk (0x1FUL << FDCAN_TXFQS_TFQPI_Pos) /*!< 0x001F0000 */
4881#define FDCAN_TXFQS_TFQPI FDCAN_TXFQS_TFQPI_Msk /*!<Tx FIFO/Queue Put Index */
4882#define FDCAN_TXFQS_TFQF_Pos (21U)
4883#define FDCAN_TXFQS_TFQF_Msk (0x1UL << FDCAN_TXFQS_TFQF_Pos) /*!< 0x00200000 */
4884#define FDCAN_TXFQS_TFQF FDCAN_TXFQS_TFQF_Msk /*!<Tx FIFO/Queue Full */
4885
4886/***************** Bit definition for FDCAN_TXESC register *********************/
4887#define FDCAN_TXESC_TBDS_Pos (0U)
4888#define FDCAN_TXESC_TBDS_Msk (0x7UL << FDCAN_TXESC_TBDS_Pos) /*!< 0x00000007 */
4889#define FDCAN_TXESC_TBDS FDCAN_TXESC_TBDS_Msk /*!<Tx Buffer Data Field Size */
4890
4891/***************** Bit definition for FDCAN_TXBRP register *********************/
4892#define FDCAN_TXBRP_TRP_Pos (0U)
4893#define FDCAN_TXBRP_TRP_Msk (0xFFFFFFFFUL << FDCAN_TXBRP_TRP_Pos) /*!< 0xFFFFFFFF */
4894#define FDCAN_TXBRP_TRP FDCAN_TXBRP_TRP_Msk /*!<Transmission Request Pending */
4895
4896/***************** Bit definition for FDCAN_TXBAR register *********************/
4897#define FDCAN_TXBAR_AR_Pos (0U)
4898#define FDCAN_TXBAR_AR_Msk (0xFFFFFFFFUL << FDCAN_TXBAR_AR_Pos) /*!< 0xFFFFFFFF */
4899#define FDCAN_TXBAR_AR FDCAN_TXBAR_AR_Msk /*!<Add Request */
4900
4901/***************** Bit definition for FDCAN_TXBCR register *********************/
4902#define FDCAN_TXBCR_CR_Pos (0U)
4903#define FDCAN_TXBCR_CR_Msk (0xFFFFFFFFUL << FDCAN_TXBCR_CR_Pos) /*!< 0xFFFFFFFF */
4904#define FDCAN_TXBCR_CR FDCAN_TXBCR_CR_Msk /*!<Cancellation Request */
4905
4906/***************** Bit definition for FDCAN_TXBTO register *********************/
4907#define FDCAN_TXBTO_TO_Pos (0U)
4908#define FDCAN_TXBTO_TO_Msk (0xFFFFFFFFUL << FDCAN_TXBTO_TO_Pos) /*!< 0xFFFFFFFF */
4909#define FDCAN_TXBTO_TO FDCAN_TXBTO_TO_Msk /*!<Transmission Occurred */
4910
4911/***************** Bit definition for FDCAN_TXBCF register *********************/
4912#define FDCAN_TXBCF_CF_Pos (0U)
4913#define FDCAN_TXBCF_CF_Msk (0xFFFFFFFFUL << FDCAN_TXBCF_CF_Pos) /*!< 0xFFFFFFFF */
4914#define FDCAN_TXBCF_CF FDCAN_TXBCF_CF_Msk /*!<Cancellation Finished */
4915
4916/***************** Bit definition for FDCAN_TXBTIE register ********************/
4917#define FDCAN_TXBTIE_TIE_Pos (0U)
4918#define FDCAN_TXBTIE_TIE_Msk (0xFFFFFFFFUL << FDCAN_TXBTIE_TIE_Pos) /*!< 0xFFFFFFFF */
4919#define FDCAN_TXBTIE_TIE FDCAN_TXBTIE_TIE_Msk /*!<Transmission Interrupt Enable */
4920
4921/***************** Bit definition for FDCAN_ TXBCIE register *******************/
4922#define FDCAN_TXBCIE_CFIE_Pos (0U)
4923#define FDCAN_TXBCIE_CFIE_Msk (0xFFFFFFFFUL << FDCAN_TXBCIE_CFIE_Pos) /*!< 0xFFFFFFFF */
4924#define FDCAN_TXBCIE_CFIE FDCAN_TXBCIE_CFIE_Msk /*!<Cancellation Finished Interrupt Enable */
4925
4926/***************** Bit definition for FDCAN_TXEFC register *********************/
4927#define FDCAN_TXEFC_EFSA_Pos (2U)
4928#define FDCAN_TXEFC_EFSA_Msk (0x3FFFUL << FDCAN_TXEFC_EFSA_Pos) /*!< 0x0000FFFC */
4929#define FDCAN_TXEFC_EFSA FDCAN_TXEFC_EFSA_Msk /*!<Event FIFO Start Address */
4930#define FDCAN_TXEFC_EFS_Pos (16U)
4931#define FDCAN_TXEFC_EFS_Msk (0x3FUL << FDCAN_TXEFC_EFS_Pos) /*!< 0x003F0000 */
4932#define FDCAN_TXEFC_EFS FDCAN_TXEFC_EFS_Msk /*!<Event FIFO Size */
4933#define FDCAN_TXEFC_EFWM_Pos (24U)
4934#define FDCAN_TXEFC_EFWM_Msk (0x3FUL << FDCAN_TXEFC_EFWM_Pos) /*!< 0x3F000000 */
4935#define FDCAN_TXEFC_EFWM FDCAN_TXEFC_EFWM_Msk /*!<Event FIFO Watermark */
4936
4937/***************** Bit definition for FDCAN_TXEFS register *********************/
4938#define FDCAN_TXEFS_EFFL_Pos (0U)
4939#define FDCAN_TXEFS_EFFL_Msk (0x3FUL << FDCAN_TXEFS_EFFL_Pos) /*!< 0x0000003F */
4940#define FDCAN_TXEFS_EFFL FDCAN_TXEFS_EFFL_Msk /*!<Event FIFO Fill Level */
4941#define FDCAN_TXEFS_EFGI_Pos (8U)
4942#define FDCAN_TXEFS_EFGI_Msk (0x1FUL << FDCAN_TXEFS_EFGI_Pos) /*!< 0x00001F00 */
4943#define FDCAN_TXEFS_EFGI FDCAN_TXEFS_EFGI_Msk /*!<Event FIFO Get Index */
4944#define FDCAN_TXEFS_EFPI_Pos (16U)
4945#define FDCAN_TXEFS_EFPI_Msk (0x1FUL << FDCAN_TXEFS_EFPI_Pos) /*!< 0x001F0000 */
4946#define FDCAN_TXEFS_EFPI FDCAN_TXEFS_EFPI_Msk /*!<Event FIFO Put Index */
4947#define FDCAN_TXEFS_EFF_Pos (24U)
4948#define FDCAN_TXEFS_EFF_Msk (0x1UL << FDCAN_TXEFS_EFF_Pos) /*!< 0x01000000 */
4949#define FDCAN_TXEFS_EFF FDCAN_TXEFS_EFF_Msk /*!<Event FIFO Full */
4950#define FDCAN_TXEFS_TEFL_Pos (25U)
4951#define FDCAN_TXEFS_TEFL_Msk (0x1UL << FDCAN_TXEFS_TEFL_Pos) /*!< 0x02000000 */
4952#define FDCAN_TXEFS_TEFL FDCAN_TXEFS_TEFL_Msk /*!<Tx Event FIFO Element Lost */
4953
4954/***************** Bit definition for FDCAN_TXEFA register *********************/
4955#define FDCAN_TXEFA_EFAI_Pos (0U)
4956#define FDCAN_TXEFA_EFAI_Msk (0x1FUL << FDCAN_TXEFA_EFAI_Pos) /*!< 0x0000001F */
4957#define FDCAN_TXEFA_EFAI FDCAN_TXEFA_EFAI_Msk /*!<Event FIFO Acknowledge Index */
4958
4959/***************** Bit definition for FDCAN_TTTMC register *********************/
4960#define FDCAN_TTTMC_TMSA_Pos (2U)
4961#define FDCAN_TTTMC_TMSA_Msk (0x3FFFUL << FDCAN_TTTMC_TMSA_Pos) /*!< 0x0000FFFC */
4962#define FDCAN_TTTMC_TMSA FDCAN_TTTMC_TMSA_Msk /*!<Trigger Memory Start Address */
4963#define FDCAN_TTTMC_TME_Pos (16U)
4964#define FDCAN_TTTMC_TME_Msk (0x7FUL << FDCAN_TTTMC_TME_Pos) /*!< 0x007F0000 */
4965#define FDCAN_TTTMC_TME FDCAN_TTTMC_TME_Msk /*!<Trigger Memory Elements */
4966
4967/***************** Bit definition for FDCAN_TTRMC register *********************/
4968#define FDCAN_TTRMC_RID_Pos (0U)
4969#define FDCAN_TTRMC_RID_Msk (0x1FFFFFFFUL << FDCAN_TTRMC_RID_Pos) /*!< 0x1FFFFFFF */
4970#define FDCAN_TTRMC_RID FDCAN_TTRMC_RID_Msk /*!<Reference Identifier */
4971#define FDCAN_TTRMC_XTD_Pos (30U)
4972#define FDCAN_TTRMC_XTD_Msk (0x1UL << FDCAN_TTRMC_XTD_Pos) /*!< 0x40000000 */
4973#define FDCAN_TTRMC_XTD FDCAN_TTRMC_XTD_Msk /*!< Extended Identifier */
4974#define FDCAN_TTRMC_RMPS_Pos (31U)
4975#define FDCAN_TTRMC_RMPS_Msk (0x1UL << FDCAN_TTRMC_RMPS_Pos) /*!< 0x80000000 */
4976#define FDCAN_TTRMC_RMPS FDCAN_TTRMC_RMPS_Msk /*!<Reference Message Payload Select */
4977
4978/***************** Bit definition for FDCAN_TTOCF register *********************/
4979#define FDCAN_TTOCF_OM_Pos (0U)
4980#define FDCAN_TTOCF_OM_Msk (0x3UL << FDCAN_TTOCF_OM_Pos) /*!< 0x00000003 */
4981#define FDCAN_TTOCF_OM FDCAN_TTOCF_OM_Msk /*!<Operation Mode */
4982#define FDCAN_TTOCF_GEN_Pos (3U)
4983#define FDCAN_TTOCF_GEN_Msk (0x1UL << FDCAN_TTOCF_GEN_Pos) /*!< 0x00000008 */
4984#define FDCAN_TTOCF_GEN FDCAN_TTOCF_GEN_Msk /*!<Gap Enable */
4985#define FDCAN_TTOCF_TM_Pos (4U)
4986#define FDCAN_TTOCF_TM_Msk (0x1UL << FDCAN_TTOCF_TM_Pos) /*!< 0x00000010 */
4987#define FDCAN_TTOCF_TM FDCAN_TTOCF_TM_Msk /*!<Time Master */
4988#define FDCAN_TTOCF_LDSDL_Pos (5U)
4989#define FDCAN_TTOCF_LDSDL_Msk (0x7UL << FDCAN_TTOCF_LDSDL_Pos) /*!< 0x000000E0 */
4990#define FDCAN_TTOCF_LDSDL FDCAN_TTOCF_LDSDL_Msk /*!<LD of Synchronization Deviation Limit */
4991#define FDCAN_TTOCF_IRTO_Pos (8U)
4992#define FDCAN_TTOCF_IRTO_Msk (0x7FUL << FDCAN_TTOCF_IRTO_Pos) /*!< 0x00007F00 */
4993#define FDCAN_TTOCF_IRTO FDCAN_TTOCF_IRTO_Msk /*!<Initial Reference Trigger Offset */
4994#define FDCAN_TTOCF_EECS_Pos (15U)
4995#define FDCAN_TTOCF_EECS_Msk (0x1UL << FDCAN_TTOCF_EECS_Pos) /*!< 0x00008000 */
4996#define FDCAN_TTOCF_EECS FDCAN_TTOCF_EECS_Msk /*!<Enable External Clock Synchronization */
4997#define FDCAN_TTOCF_AWL_Pos (16U)
4998#define FDCAN_TTOCF_AWL_Msk (0xFFUL << FDCAN_TTOCF_AWL_Pos) /*!< 0x00FF0000 */
4999#define FDCAN_TTOCF_AWL FDCAN_TTOCF_AWL_Msk /*!<Application Watchdog Limit */
5000#define FDCAN_TTOCF_EGTF_Pos (24U)
5001#define FDCAN_TTOCF_EGTF_Msk (0x1UL << FDCAN_TTOCF_EGTF_Pos) /*!< 0x01000000 */
5002#define FDCAN_TTOCF_EGTF FDCAN_TTOCF_EGTF_Msk /*!<Enable Global Time Filtering */
5003#define FDCAN_TTOCF_ECC_Pos (25U)
5004#define FDCAN_TTOCF_ECC_Msk (0x1UL << FDCAN_TTOCF_ECC_Pos) /*!< 0x02000000 */
5005#define FDCAN_TTOCF_ECC FDCAN_TTOCF_ECC_Msk /*!<Enable Clock Calibration */
5006#define FDCAN_TTOCF_EVTP_Pos (26U)
5007#define FDCAN_TTOCF_EVTP_Msk (0x1UL << FDCAN_TTOCF_EVTP_Pos) /*!< 0x04000000 */
5008#define FDCAN_TTOCF_EVTP FDCAN_TTOCF_EVTP_Msk /*!<Event Trigger Polarity */
5009
5010/***************** Bit definition for FDCAN_TTMLM register *********************/
5011#define FDCAN_TTMLM_CCM_Pos (0U)
5012#define FDCAN_TTMLM_CCM_Msk (0x3FUL << FDCAN_TTMLM_CCM_Pos) /*!< 0x0000003F */
5013#define FDCAN_TTMLM_CCM FDCAN_TTMLM_CCM_Msk /*!<Cycle Count Max */
5014#define FDCAN_TTMLM_CSS_Pos (6U)
5015#define FDCAN_TTMLM_CSS_Msk (0x3UL << FDCAN_TTMLM_CSS_Pos) /*!< 0x000000C0 */
5016#define FDCAN_TTMLM_CSS FDCAN_TTMLM_CSS_Msk /*!<Cycle Start Synchronization */
5017#define FDCAN_TTMLM_TXEW_Pos (8U)
5018#define FDCAN_TTMLM_TXEW_Msk (0xFUL << FDCAN_TTMLM_TXEW_Pos) /*!< 0x00000F00 */
5019#define FDCAN_TTMLM_TXEW FDCAN_TTMLM_TXEW_Msk /*!<Tx Enable Window */
5020#define FDCAN_TTMLM_ENTT_Pos (16U)
5021#define FDCAN_TTMLM_ENTT_Msk (0xFFFUL << FDCAN_TTMLM_ENTT_Pos) /*!< 0x0FFF0000 */
5022#define FDCAN_TTMLM_ENTT FDCAN_TTMLM_ENTT_Msk /*!<Expected Number of Tx Triggers */
5023
5024/***************** Bit definition for FDCAN_TURCF register *********************/
5025#define FDCAN_TURCF_NCL_Pos (0U)
5026#define FDCAN_TURCF_NCL_Msk (0xFFFFUL << FDCAN_TURCF_NCL_Pos) /*!< 0x0000FFFF */
5027#define FDCAN_TURCF_NCL FDCAN_TURCF_NCL_Msk /*!<Numerator Configuration Low */
5028#define FDCAN_TURCF_DC_Pos (16U)
5029#define FDCAN_TURCF_DC_Msk (0x3FFFUL << FDCAN_TURCF_DC_Pos) /*!< 0x3FFF0000 */
5030#define FDCAN_TURCF_DC FDCAN_TURCF_DC_Msk /*!<Denominator Configuration */
5031#define FDCAN_TURCF_ELT_Pos (31U)
5032#define FDCAN_TURCF_ELT_Msk (0x1UL << FDCAN_TURCF_ELT_Pos) /*!< 0x80000000 */
5033#define FDCAN_TURCF_ELT FDCAN_TURCF_ELT_Msk /*!<Enable Local Time */
5034
5035/***************** Bit definition for FDCAN_TTOCN register ********************/
5036#define FDCAN_TTOCN_SGT_Pos (0U)
5037#define FDCAN_TTOCN_SGT_Msk (0x1UL << FDCAN_TTOCN_SGT_Pos) /*!< 0x00000001 */
5038#define FDCAN_TTOCN_SGT FDCAN_TTOCN_SGT_Msk /*!<Set Global time */
5039#define FDCAN_TTOCN_ECS_Pos (1U)
5040#define FDCAN_TTOCN_ECS_Msk (0x1UL << FDCAN_TTOCN_ECS_Pos) /*!< 0x00000002 */
5041#define FDCAN_TTOCN_ECS FDCAN_TTOCN_ECS_Msk /*!<External Clock Synchronization */
5042#define FDCAN_TTOCN_SWP_Pos (2U)
5043#define FDCAN_TTOCN_SWP_Msk (0x1UL << FDCAN_TTOCN_SWP_Pos) /*!< 0x00000004 */
5044#define FDCAN_TTOCN_SWP FDCAN_TTOCN_SWP_Msk /*!<Stop Watch Polarity */
5045#define FDCAN_TTOCN_SWS_Pos (3U)
5046#define FDCAN_TTOCN_SWS_Msk (0x3UL << FDCAN_TTOCN_SWS_Pos) /*!< 0x00000018 */
5047#define FDCAN_TTOCN_SWS FDCAN_TTOCN_SWS_Msk /*!<Stop Watch Source */
5048#define FDCAN_TTOCN_RTIE_Pos (5U)
5049#define FDCAN_TTOCN_RTIE_Msk (0x1UL << FDCAN_TTOCN_RTIE_Pos) /*!< 0x00000020 */
5050#define FDCAN_TTOCN_RTIE FDCAN_TTOCN_RTIE_Msk /*!<Register Time Mark Interrupt Pulse Enable */
5051#define FDCAN_TTOCN_TMC_Pos (6U)
5052#define FDCAN_TTOCN_TMC_Msk (0x3UL << FDCAN_TTOCN_TMC_Pos) /*!< 0x000000C0 */
5053#define FDCAN_TTOCN_TMC FDCAN_TTOCN_TMC_Msk /*!<Register Time Mark Compare */
5054#define FDCAN_TTOCN_TTIE_Pos (8U)
5055#define FDCAN_TTOCN_TTIE_Msk (0x1UL << FDCAN_TTOCN_TTIE_Pos) /*!< 0x00000100 */
5056#define FDCAN_TTOCN_TTIE FDCAN_TTOCN_TTIE_Msk /*!<Trigger Time Mark Interrupt Pulse Enable */
5057#define FDCAN_TTOCN_GCS_Pos (9U)
5058#define FDCAN_TTOCN_GCS_Msk (0x1UL << FDCAN_TTOCN_GCS_Pos) /*!< 0x00000200 */
5059#define FDCAN_TTOCN_GCS FDCAN_TTOCN_GCS_Msk /*!<Gap Control Select */
5060#define FDCAN_TTOCN_FGP_Pos (10U)
5061#define FDCAN_TTOCN_FGP_Msk (0x1UL << FDCAN_TTOCN_FGP_Pos) /*!< 0x00000400 */
5062#define FDCAN_TTOCN_FGP FDCAN_TTOCN_FGP_Msk /*!<Finish Gap */
5063#define FDCAN_TTOCN_TM