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