1 /**
2   ******************************************************************************
3   * @file    stm32c071xx.h
4   * @author  MCD Application Team
5   * @brief   CMSIS Cortex-M0+ Device Peripheral Access Layer Header File.
6   *          This file contains all the peripheral register's definitions, bits
7   *          definitions and memory mapping for stm32c071xx devices.
8   *
9   *          This file contains:
10   *           - Data structures and the address mapping for all peripherals
11   *           - Peripheral's registers declarations and bits definition
12   *           - Macros to access peripheral's registers hardware
13   *
14   ******************************************************************************
15   * @attention
16   *
17   * Copyright (c) 2022 STMicroelectronics.
18   * All rights reserved.
19   *
20   * This software is licensed under terms that can be found in the LICENSE file
21   * in the root directory of this software component.
22   * If no LICENSE file comes with this software, it is provided AS-IS.
23   *
24   ******************************************************************************
25   */
26 
27 /** @addtogroup CMSIS_Device
28   * @{
29   */
30 
31 /** @addtogroup stm32c071xx
32   * @{
33   */
34 
35 #ifndef STM32C071xx_H
36 #define STM32C071xx_H
37 
38 #ifdef __cplusplus
39  extern "C" {
40 #endif /* __cplusplus */
41 
42 /** @addtogroup Configuration_section_for_CMSIS
43   * @{
44   */
45 
46 /**
47   * @brief Configuration of the Cortex-M0+ Processor and Core Peripherals
48    */
49 #define __CM0PLUS_REV             0 /*!< Core Revision r0p0                            */
50 #define __MPU_PRESENT             1 /*!< STM32C0xx  provides an MPU                    */
51 #define __VTOR_PRESENT            1 /*!< Vector  Table  Register supported             */
52 #define __NVIC_PRIO_BITS          2 /*!< STM32C0xx uses 2 Bits for the Priority Levels */
53 #define __Vendor_SysTickConfig    0 /*!< Set to 1 if different SysTick Config is used  */
54 
55 /**
56   * @}
57   */
58 
59 /** @addtogroup Peripheral_interrupt_number_definition
60   * @{
61   */
62 
63 /**
64  * @brief stm32c071xx Interrupt Number Definition, according to the selected device
65  *        in @ref Library_configuration_section
66  */
67 
68 /*!< Interrupt Number Definition */
69 typedef enum
70 {
71 /******  Cortex-M0+ Processor Exceptions Numbers ***************************************************************/
72   NonMaskableInt_IRQn         = -14,    /*!< 2 Non Maskable Interrupt                                          */
73   HardFault_IRQn              = -13,    /*!< 3 Cortex-M Hard Fault Interrupt                                   */
74   SVCall_IRQn                 = -5,     /*!< 11 Cortex-M SV Call Interrupt                                     */
75   PendSV_IRQn                 = -2,     /*!< 14 Cortex-M Pend SV Interrupt                                     */
76   SysTick_IRQn                = -1,     /*!< 15 Cortex-M System Tick Interrupt                                 */
77 /******  STM32C0xxxx specific Interrupt Numbers ****************************************************************/
78   WWDG_IRQn                   = 0,      /*!< Window WatchDog Interrupt                                         */
79   PVM_VDDIO2_IRQn             = 1,      /*!< VDDIO2 monitor interrupt (EXTI line 34)                           */
80   RTC_IRQn                    = 2,      /*!< RTC interrupt through the EXTI line 19 & 21                       */
81   FLASH_IRQn                  = 3,      /*!< FLASH global Interrupt                                            */
82   RCC_CRS_IRQn                = 4,      /*!< RCC global Interrupt + CRS global interrupt                       */
83   EXTI0_1_IRQn                = 5,      /*!< EXTI 0 and 1 Interrupts                                           */
84   EXTI2_3_IRQn                = 6,      /*!< EXTI Line 2 and 3 Interrupts                                      */
85   EXTI4_15_IRQn               = 7,      /*!< EXTI Line 4 to 15 Interrupts                                      */
86   USB_DRD_FS_IRQn             = 8,      /*!< USB Dual Role global interrupt (combined with EXTI 33)            */
87   DMA1_Channel1_IRQn          = 9,      /*!< DMA1 Channel 1 Interrupt                                          */
88   DMA1_Channel2_3_IRQn        = 10,     /*!< DMA1 Channel 2 and Channel 3 Interrupts                           */
89   DMAMUX1_DMA1_CH4_5_IRQn     = 11,     /*!< DMAMUX and DMA1 Channel 4 to Channel 5 Interrupts                 */
90   ADC1_IRQn                   = 12,     /*!< ADC1 Interrupts                                                   */
91   TIM1_BRK_UP_TRG_COM_IRQn    = 13,     /*!< TIM1 Break, Update, Trigger and Commutation Interrupts            */
92   TIM1_CC_IRQn                = 14,     /*!< TIM1 Capture Compare Interrupt                                    */
93   TIM2_IRQn                   = 15,     /*!< TIM2 global Interrupt                                             */
94   TIM3_IRQn                   = 16,     /*!< TIM3 global Interrupt                                             */
95   TIM14_IRQn                  = 19,     /*!< TIM14 global Interrupt                                            */
96   TIM16_IRQn                  = 21,     /*!< TIM16 global Interrupt                                            */
97   TIM17_IRQn                  = 22,     /*!< TIM17 global Interrupt                                            */
98   I2C1_IRQn                   = 23,     /*!< I2C1 Interrupt  (combined with EXTI 23)                           */
99   I2C2_IRQn                   = 24,     /*!< I2C2 Interrupt                                                    */
100   SPI1_IRQn                   = 25,     /*!< SPI1 Interrupt                                                    */
101   SPI2_IRQn                   = 26,     /*!< SPI2 Interrupt                                                    */
102   USART1_IRQn                 = 27,     /*!< USART1 Interrupt                                                  */
103   USART2_IRQn                 = 28,     /*!< USART2 Interrupt                                                  */
104 } IRQn_Type;
105 
106 /**
107   * @}
108   */
109 
110 #include "core_cm0plus.h"               /* Cortex-M0+ processor and core peripherals */
111 #include "system_stm32c0xx.h"
112 #include <stdint.h>
113 
114 /** @addtogroup Peripheral_registers_structures
115   * @{
116   */
117 
118 /**
119   * @brief Analog to Digital Converter
120   */
121 typedef struct
122 {
123   __IO uint32_t ISR;          /*!< ADC interrupt and status register,             Address offset: 0x00 */
124   __IO uint32_t IER;          /*!< ADC interrupt enable register,                 Address offset: 0x04 */
125   __IO uint32_t CR;           /*!< ADC control register,                          Address offset: 0x08 */
126   __IO uint32_t CFGR1;        /*!< ADC configuration register 1,                  Address offset: 0x0C */
127   __IO uint32_t CFGR2;        /*!< ADC configuration register 2,                  Address offset: 0x10 */
128   __IO uint32_t SMPR;         /*!< ADC sampling time register,                    Address offset: 0x14 */
129        uint32_t RESERVED1;    /*!< Reserved,                                                      0x18 */
130        uint32_t RESERVED2;    /*!< Reserved,                                                      0x1C */
131   __IO uint32_t AWD1TR;       /*!< ADC analog watchdog 1 threshold register,      Address offset: 0x20 */
132   __IO uint32_t AWD2TR;       /*!< ADC analog watchdog 2 threshold register,      Address offset: 0x24 */
133   __IO uint32_t CHSELR;       /*!< ADC group regular sequencer register,          Address offset: 0x28 */
134   __IO uint32_t AWD3TR;       /*!< ADC analog watchdog 3 threshold register,      Address offset: 0x2C */
135        uint32_t RESERVED3[4]; /*!< Reserved,                                               0x30 - 0x3C */
136   __IO uint32_t DR;           /*!< ADC group regular data register,               Address offset: 0x40 */
137        uint32_t RESERVED4[23];/*!< Reserved,                                               0x44 - 0x9C */
138   __IO uint32_t AWD2CR;       /*!< ADC analog watchdog 2 configuration register,  Address offset: 0xA0 */
139   __IO uint32_t AWD3CR;       /*!< ADC analog watchdog 3 configuration register,  Address offset: 0xA4 */
140        uint32_t RESERVED5[3]; /*!< Reserved,                                               0xA8 - 0xB0 */
141   __IO uint32_t CALFACT;      /*!< ADC Calibration factor register,               Address offset: 0xB4 */
142 } ADC_TypeDef;
143 
144 typedef struct
145 {
146   __IO uint32_t CCR;          /*!< ADC common configuration register,             Address offset: ADC1 base address + 0x308 */
147 } ADC_Common_TypeDef;
148 
149 /* Legacy registers naming */
150 #define TR1     AWD1TR
151 #define TR2     AWD2TR
152 #define TR3     AWD3TR
153 
154 /**
155   * @brief CRC calculation unit
156   */
157 typedef struct
158 {
159   __IO uint32_t DR;             /*!< CRC Data register,                         Address offset: 0x00 */
160   __IO uint32_t IDR;            /*!< CRC Independent data register,             Address offset: 0x04 */
161   __IO uint32_t CR;             /*!< CRC Control register,                      Address offset: 0x08 */
162        uint32_t RESERVED1;      /*!< Reserved,                                                  0x0C */
163   __IO uint32_t INIT;           /*!< Initial CRC value register,                Address offset: 0x10 */
164   __IO uint32_t POL;            /*!< CRC polynomial register,                   Address offset: 0x14 */
165 } CRC_TypeDef;
166 
167 /**
168   * @brief Clock Recovery System
169   */
170 typedef struct
171 {
172   __IO uint32_t CR;            /*!< CRS control register,               Address offset: 0x00 */
173   __IO uint32_t CFGR;          /*!< CRS configuration register,         Address offset: 0x04 */
174   __IO uint32_t ISR;           /*!< CRS interrupt and status register,  Address offset: 0x08 */
175   __IO uint32_t ICR;           /*!< CRS interrupt flag clear register,  Address offset: 0x0C */
176 } CRS_TypeDef;
177 
178 /**
179   * @brief Debug MCU
180   */
181 typedef struct
182 {
183   __IO uint32_t IDCODE;      /*!< MCU device ID code,              Address offset: 0x00 */
184   __IO uint32_t CR;          /*!< Debug configuration register,    Address offset: 0x04 */
185   __IO uint32_t APBFZ1;      /*!< Debug APB freeze register 1,     Address offset: 0x08 */
186   __IO uint32_t APBFZ2;      /*!< Debug APB freeze register 2,     Address offset: 0x0C */
187 } DBG_TypeDef;
188 
189 /**
190   * @brief DMA Controller
191   */
192 typedef struct
193 {
194   __IO uint32_t CCR;         /*!< DMA channel x configuration register        */
195   __IO uint32_t CNDTR;       /*!< DMA channel x number of data register       */
196   __IO uint32_t CPAR;        /*!< DMA channel x peripheral address register   */
197   __IO uint32_t CMAR;        /*!< DMA channel x memory address register       */
198 } DMA_Channel_TypeDef;
199 
200 typedef struct
201 {
202   __IO uint32_t ISR;         /*!< DMA interrupt status register,                 Address offset: 0x00 */
203   __IO uint32_t IFCR;        /*!< DMA interrupt flag clear register,             Address offset: 0x04 */
204 } DMA_TypeDef;
205 
206 /**
207   * @brief DMA Multiplexer
208   */
209 typedef struct
210 {
211   __IO uint32_t   CCR;       /*!< DMA Multiplexer Channel x Control Register    Address offset: 0x0004 * (channel x) */
212 }DMAMUX_Channel_TypeDef;
213 
214 typedef struct
215 {
216   __IO uint32_t   CSR;       /*!< DMA Channel Status Register                    Address offset: 0x0080   */
217   __IO uint32_t   CFR;       /*!< DMA Channel Clear Flag Register                Address offset: 0x0084   */
218 }DMAMUX_ChannelStatus_TypeDef;
219 
220 typedef struct
221 {
222   __IO uint32_t   RGCR;        /*!< DMA Request Generator x Control Register     Address offset: 0x0100 + 0x0004 * (Req Gen x) */
223 }DMAMUX_RequestGen_TypeDef;
224 
225 typedef struct
226 {
227   __IO uint32_t   RGSR;        /*!< DMA Request Generator Status Register        Address offset: 0x0140   */
228   __IO uint32_t   RGCFR;       /*!< DMA Request Generator Clear Flag Register    Address offset: 0x0144   */
229 }DMAMUX_RequestGenStatus_TypeDef;
230 
231 /**
232   * @brief Asynch Interrupt/Event Controller (EXTI)
233   */
234 typedef struct
235 {
236   __IO uint32_t RTSR1;          /*!< EXTI Rising Trigger Selection Register 1,        Address offset:   0x00 */
237   __IO uint32_t FTSR1;          /*!< EXTI Falling Trigger Selection Register 1,       Address offset:   0x04 */
238   __IO uint32_t SWIER1;         /*!< EXTI Software Interrupt event Register 1,        Address offset:   0x08 */
239   __IO uint32_t RPR1;           /*!< EXTI Rising Pending Register 1,                  Address offset:   0x0C */
240   __IO uint32_t FPR1;           /*!< EXTI Falling Pending Register 1,                 Address offset:   0x10 */
241        uint32_t RESERVED1[3];   /*!< Reserved 1,                                                0x14 -- 0x1C */
242   __IO uint32_t RTSR2;          /*!< EXTI Rising Trigger Selection Register 2,        Address offset:   0x28 */
243   __IO uint32_t FTSR2;          /*!< EXTI Falling Trigger Selection Register 2,       Address offset:   0x2C */
244   __IO uint32_t SWIER2;         /*!< EXTI Software Interrupt event Register 2,        Address offset:   0x30 */
245   __IO uint32_t RPR2;           /*!< EXTI Rising Pending Register 2,                  Address offset:   0x34 */
246   __IO uint32_t FPR2;           /*!< EXTI Falling Pending Register 2,                 Address offset:   0x38 */
247        uint32_t RESERVED3[11];  /*!< Reserved 3,                                                0x3C -- 0x5F */
248   __IO uint32_t EXTICR[4];      /*!< EXTI External Interrupt Configuration Register,            0x60 -- 0x6C */
249        uint32_t RESERVED4[4];   /*!< Reserved 4,                                                0x70 -- 0x7C */
250   __IO uint32_t IMR1;           /*!< EXTI Interrupt Mask Register 1,                  Address offset:   0x80 */
251   __IO uint32_t EMR1;           /*!< EXTI Event Mask Register 1,                      Address offset:   0x84 */
252        uint32_t RESERVED5[2];   /*!< Reserved 5,                                                0x88 -- 0x8C */
253   __IO uint32_t IMR2;           /*!< EXTI Interrupt Mask Register 2,                  Address offset:   0x90 */
254   __IO uint32_t EMR2;           /*!< EXTI Event Mask Register 2,                      Address offset:   0x94 */
255 } EXTI_TypeDef;
256 
257 /**
258   * @brief FLASH Registers
259   */
260 typedef struct
261 {
262   __IO uint32_t ACR;          /*!< FLASH Access Control register,                     Address offset: 0x00 */
263        uint32_t RESERVED1;    /*!< Reserved1,                                         Address offset: 0x04 */
264   __IO uint32_t KEYR;         /*!< FLASH Key register,                                Address offset: 0x08 */
265   __IO uint32_t OPTKEYR;      /*!< FLASH Option Key register,                         Address offset: 0x0C */
266   __IO uint32_t SR;           /*!< FLASH Status register,                             Address offset: 0x10 */
267   __IO uint32_t CR;           /*!< FLASH Control register,                            Address offset: 0x14 */
268        uint32_t RESERVED2[2]; /*!< Reserved2,                                         Address offset: 0x18 */
269   __IO uint32_t OPTR;         /*!< FLASH Option register,                             Address offset: 0x20 */
270   __IO uint32_t PCROP1ASR;    /*!< FLASH Bank PCROP area A Start address register,    Address offset: 0x24 */
271   __IO uint32_t PCROP1AER;    /*!< FLASH Bank PCROP area A End address register,      Address offset: 0x28 */
272   __IO uint32_t WRP1AR;       /*!< FLASH Bank WRP area A address register,            Address offset: 0x2C */
273   __IO uint32_t WRP1BR;       /*!< FLASH Bank WRP area B address register,            Address offset: 0x30 */
274   __IO uint32_t PCROP1BSR;    /*!< FLASH Bank PCROP area B Start address register,    Address offset: 0x34 */
275   __IO uint32_t PCROP1BER;    /*!< FLASH Bank PCROP area B End address register,      Address offset: 0x38 */
276        uint32_t RESERVED3[17];/*!< Reserved3,                                         Address offset: 0x3C */
277   __IO uint32_t SECR;         /*!< FLASH security register ,                          Address offset: 0x80 */
278 } FLASH_TypeDef;
279 
280 /**
281   * @brief General Purpose I/O
282   */
283 typedef struct
284 {
285   __IO uint32_t MODER;       /*!< GPIO port mode register,               Address offset: 0x00      */
286   __IO uint32_t OTYPER;      /*!< GPIO port output type register,        Address offset: 0x04      */
287   __IO uint32_t OSPEEDR;     /*!< GPIO port output speed register,       Address offset: 0x08      */
288   __IO uint32_t PUPDR;       /*!< GPIO port pull-up/pull-down register,  Address offset: 0x0C      */
289   __IO uint32_t IDR;         /*!< GPIO port input data register,         Address offset: 0x10      */
290   __IO uint32_t ODR;         /*!< GPIO port output data register,        Address offset: 0x14      */
291   __IO uint32_t BSRR;        /*!< GPIO port bit set/reset  register,     Address offset: 0x18      */
292   __IO uint32_t LCKR;        /*!< GPIO port configuration lock register, Address offset: 0x1C      */
293   __IO uint32_t AFR[2];      /*!< GPIO alternate function registers,     Address offset: 0x20-0x24 */
294   __IO uint32_t BRR;         /*!< GPIO Bit Reset register,               Address offset: 0x28      */
295 } GPIO_TypeDef;
296 
297 
298 /**
299   * @brief Inter-integrated Circuit Interface
300   */
301 typedef struct
302 {
303   __IO uint32_t CR1;         /*!< I2C Control register 1,            Address offset: 0x00 */
304   __IO uint32_t CR2;         /*!< I2C Control register 2,            Address offset: 0x04 */
305   __IO uint32_t OAR1;        /*!< I2C Own address 1 register,        Address offset: 0x08 */
306   __IO uint32_t OAR2;        /*!< I2C Own address 2 register,        Address offset: 0x0C */
307   __IO uint32_t TIMINGR;     /*!< I2C Timing register,               Address offset: 0x10 */
308   __IO uint32_t TIMEOUTR;    /*!< I2C Timeout register,              Address offset: 0x14 */
309   __IO uint32_t ISR;         /*!< I2C Interrupt and status register, Address offset: 0x18 */
310   __IO uint32_t ICR;         /*!< I2C Interrupt clear register,      Address offset: 0x1C */
311   __IO uint32_t PECR;        /*!< I2C PEC register,                  Address offset: 0x20 */
312   __IO uint32_t RXDR;        /*!< I2C Receive data register,         Address offset: 0x24 */
313   __IO uint32_t TXDR;        /*!< I2C Transmit data register,        Address offset: 0x28 */
314 } I2C_TypeDef;
315 
316 /**
317   * @brief Independent WATCHDOG
318   */
319 typedef struct
320 {
321   __IO uint32_t KR;          /*!< IWDG Key register,       Address offset: 0x00 */
322   __IO uint32_t PR;          /*!< IWDG Prescaler register, Address offset: 0x04 */
323   __IO uint32_t RLR;         /*!< IWDG Reload register,    Address offset: 0x08 */
324   __IO uint32_t SR;          /*!< IWDG Status register,    Address offset: 0x0C */
325   __IO uint32_t WINR;        /*!< IWDG Window register,    Address offset: 0x10 */
326 } IWDG_TypeDef;
327 
328 
329 /**
330   * @brief Power Control
331   */
332 typedef struct
333 {
334   __IO uint32_t CR1;            /*!< PWR Power Control Register 1,                     Address offset: 0x00 */
335   __IO uint32_t CR2;            /*!< PWR Power Control Register 2,                     Address offset: 0x04 */
336   __IO uint32_t CR3;            /*!< PWR Power Control Register 3,                     Address offset: 0x08 */
337   __IO uint32_t CR4;            /*!< PWR Power Control Register 4,                     Address offset: 0x0C */
338   __IO uint32_t SR1;            /*!< PWR Power Status Register 1,                      Address offset: 0x10 */
339   __IO uint32_t SR2;            /*!< PWR Power Status Register 2,                      Address offset: 0x14 */
340   __IO uint32_t SCR;            /*!< PWR Power Status Clear Register,                  Address offset: 0x18 */
341        uint32_t RESERVED2;      /*!< Reserved,                                         Address offset: 0x1C */
342   __IO uint32_t PUCRA;          /*!< PWR Pull-Up Control Register of port A,           Address offset: 0x20 */
343   __IO uint32_t PDCRA;          /*!< PWR Pull-Down Control Register of port A,         Address offset: 0x24 */
344   __IO uint32_t PUCRB;          /*!< PWR Pull-Up Control Register of port B,           Address offset: 0x28 */
345   __IO uint32_t PDCRB;          /*!< PWR Pull-Down Control Register of port B,         Address offset: 0x2C */
346   __IO uint32_t PUCRC;          /*!< PWR Pull-Up Control Register of port C,           Address offset: 0x30 */
347   __IO uint32_t PDCRC;          /*!< PWR Pull-Down Control Register of port C,         Address offset: 0x34 */
348   __IO uint32_t PUCRD;          /*!< PWR Pull-Up Control Register of port D,           Address offset: 0x38 */
349   __IO uint32_t PDCRD;          /*!< PWR Pull-Down Control Register of port D,         Address offset: 0x3C */
350        uint32_t RESERVED5;      /*!< Reserved,                                         Address offset: 0x40 */
351        uint32_t RESERVED6;      /*!< Reserved,                                         Address offset: 0x44 */
352   __IO uint32_t PUCRF;          /*!< PWR Pull-Up Control Register of port F,           Address offset: 0x48 */
353   __IO uint32_t PDCRF;          /*!< PWR Pull-Down Control Register of port F,         Address offset: 0x4C */
354        uint32_t RESERVED7[8];   /*!< Reserved,                                         Address offset: 0x50 */
355   __IO uint32_t BKP0R;          /*!< Backup register 0,                                Address offset: 0x70 */
356   __IO uint32_t BKP1R;          /*!< Backup register 1,                                Address offset: 0x74 */
357   __IO uint32_t BKP2R;          /*!< Backup register 2,                                Address offset: 0x78 */
358   __IO uint32_t BKP3R;          /*!< Backup register 3,                                Address offset: 0x7C */
359 } PWR_TypeDef;
360 
361 /**
362   * @brief Reset and Clock Control
363   */
364 typedef struct
365 {
366   __IO uint32_t CR;             /*!< RCC Clock Sources Control Register,                                     Address offset: 0x00 */
367   __IO uint32_t ICSCR;          /*!< RCC Internal Clock Sources Calibration Register,                        Address offset: 0x04 */
368   __IO uint32_t CFGR;           /*!< RCC Regulated Domain Clocks Configuration Register,                     Address offset: 0x08 */
369        uint32_t RESERVED0[2];   /*!< Reserved,                                                               Address offset: 0x0C -- 0x10 */
370   __IO uint32_t CRRCR;          /*!< RCC Clock Configuration Register,                                       Address offset: 0x14 */
371   __IO uint32_t CIER;           /*!< RCC Clock Interrupt Enable Register,                                    Address offset: 0x18 */
372   __IO uint32_t CIFR;           /*!< RCC Clock Interrupt Flag Register,                                      Address offset: 0x1C */
373   __IO uint32_t CICR;           /*!< RCC Clock Interrupt Clear Register,                                     Address offset: 0x20 */
374   __IO uint32_t IOPRSTR;        /*!< RCC IO port reset register,                                             Address offset: 0x24 */
375   __IO uint32_t AHBRSTR;        /*!< RCC AHB peripherals reset register,                                     Address offset: 0x28 */
376   __IO uint32_t APBRSTR1;       /*!< RCC APB peripherals reset register 1,                                   Address offset: 0x2C */
377   __IO uint32_t APBRSTR2;       /*!< RCC APB peripherals reset register 2,                                   Address offset: 0x30 */
378   __IO uint32_t IOPENR;         /*!< RCC IO port enable register,                                            Address offset: 0x34 */
379   __IO uint32_t AHBENR;         /*!< RCC AHB peripherals clock enable register,                              Address offset: 0x38 */
380   __IO uint32_t APBENR1;        /*!< RCC APB peripherals clock enable register1,                             Address offset: 0x3C */
381   __IO uint32_t APBENR2;        /*!< RCC APB peripherals clock enable register2,                             Address offset: 0x40 */
382   __IO uint32_t IOPSMENR;       /*!< RCC IO port clocks enable in sleep mode register,                       Address offset: 0x44 */
383   __IO uint32_t AHBSMENR;       /*!< RCC AHB peripheral clocks enable in sleep mode register,                Address offset: 0x48 */
384   __IO uint32_t APBSMENR1;      /*!< RCC APB peripheral clocks enable in sleep mode register1,               Address offset: 0x4C */
385   __IO uint32_t APBSMENR2;      /*!< RCC APB peripheral clocks enable in sleep mode register2,               Address offset: 0x50 */
386   __IO uint32_t CCIPR;          /*!< RCC Peripherals Independent Clocks Configuration Register,              Address offset: 0x54 */
387   __IO uint32_t CCIPR2;         /*!< RCC Peripherals Independent Clocks Configuration Register2,             Address offset: 0x58 */
388   __IO uint32_t CSR1;           /*!< RCC Control and status Register 1,                                      Address offset: 0x5C */
389   __IO uint32_t CSR2;           /*!< RCC Control and status Register 2,                                      Address offset: 0x60 */
390 } RCC_TypeDef;
391 
392 /**
393   * @brief Real-Time Clock
394   */
395 typedef struct
396 {
397   __IO uint32_t TR;          /*!< RTC time register,                                         Address offset: 0x00 */
398   __IO uint32_t DR;          /*!< RTC date register,                                         Address offset: 0x04 */
399   __IO uint32_t SSR;         /*!< RTC sub second register,                                   Address offset: 0x08 */
400   __IO uint32_t ICSR;        /*!< RTC initialization control and status register,            Address offset: 0x0C */
401   __IO uint32_t PRER;        /*!< RTC prescaler register,                                    Address offset: 0x10 */
402        uint32_t RESERVED0;   /*!< Reserved                                                   Address offset: 0x14 */
403   __IO uint32_t CR;          /*!< RTC control register,                                      Address offset: 0x18 */
404        uint32_t RESERVED1;   /*!< Reserved                                                   Address offset: 0x1C */
405        uint32_t RESERVED2;   /*!< Reserved                                                   Address offset: 0x20 */
406   __IO uint32_t WPR;         /*!< RTC write protection register,                             Address offset: 0x24 */
407   __IO uint32_t CALR;        /*!< RTC calibration register,                                  Address offset: 0x28 */
408   __IO uint32_t SHIFTR;      /*!< RTC shift control register,                                Address offset: 0x2C */
409   __IO uint32_t TSTR;        /*!< RTC time stamp time register,                              Address offset: 0x30 */
410   __IO uint32_t TSDR;        /*!< RTC time stamp date register,                              Address offset: 0x34 */
411   __IO uint32_t TSSSR;       /*!< RTC time-stamp sub second register,                        Address offset: 0x38 */
412        uint32_t RESERVED3;   /*!< Reserved                                                   Address offset: 0x1C */
413   __IO uint32_t ALRMAR;      /*!< RTC alarm A register,                                      Address offset: 0x40 */
414   __IO uint32_t ALRMASSR;    /*!< RTC alarm A sub second register,                           Address offset: 0x44 */
415        uint32_t RESERVED4;   /*!< Reserved                                                   Address offset: 0x48 */
416        uint32_t RESERVED5;   /*!< Reserved                                                   Address offset: 0x4C */
417   __IO uint32_t SR;          /*!< RTC Status register,                                       Address offset: 0x50 */
418   __IO uint32_t MISR;        /*!< RTC Masked Interrupt Status register,                      Address offset: 0x54 */
419        uint32_t RESERVED6;   /*!< Reserved                                                   Address offset: 0x58 */
420   __IO uint32_t SCR;         /*!< RTC Status Clear register,                                 Address offset: 0x5C */
421 } RTC_TypeDef;
422 
423   /**
424   * @brief Serial Peripheral Interface
425   */
426 typedef struct
427 {
428   __IO uint32_t CR1;      /*!< SPI Control register 1 (not used in I2S mode),       Address offset: 0x00 */
429   __IO uint32_t CR2;      /*!< SPI Control register 2,                              Address offset: 0x04 */
430   __IO uint32_t SR;       /*!< SPI Status register,                                 Address offset: 0x08 */
431   __IO uint32_t DR;       /*!< SPI data register,                                   Address offset: 0x0C */
432   __IO uint32_t CRCPR;    /*!< SPI CRC polynomial register (not used in I2S mode),  Address offset: 0x10 */
433   __IO uint32_t RXCRCR;   /*!< SPI Rx CRC register (not used in I2S mode),          Address offset: 0x14 */
434   __IO uint32_t TXCRCR;   /*!< SPI Tx CRC register (not used in I2S mode),          Address offset: 0x18 */
435   __IO uint32_t I2SCFGR;  /*!< SPI_I2S configuration register,                      Address offset: 0x1C */
436   __IO uint32_t I2SPR;    /*!< SPI_I2S prescaler register,                          Address offset: 0x20 */
437 } SPI_TypeDef;
438 
439 /**
440   * @brief System configuration controller
441   */
442 typedef struct
443 {
444   __IO uint32_t CFGR1;          /*!< SYSCFG configuration register 1,                   Address offset: 0x00 */
445        uint32_t RESERVED0[5];   /*!< Reserved,                                                   0x04 --0x14 */
446   __IO uint32_t CFGR2;          /*!< SYSCFG configuration register 2,                   Address offset: 0x18 */
447        uint32_t RESERVED1[8];   /*!< Reserved                                                    0x1C --0x38 */
448   __IO uint32_t CFGR3;          /*!< SYSCFG configuration register 3,                   Address offset: 0x3C */
449        uint32_t RESERVED2[16];  /*!< Reserved                                                    0x40 --0x7C */
450   __IO uint32_t IT_LINE_SR[32]; /*!< SYSCFG configuration IT_LINE register,             Address offset: 0x80 */
451 } SYSCFG_TypeDef;
452 
453 /**
454   * @brief TIM
455   */
456 typedef struct
457 {
458   __IO uint32_t CR1;         /*!< TIM control register 1,                   Address offset: 0x00 */
459   __IO uint32_t CR2;         /*!< TIM control register 2,                   Address offset: 0x04 */
460   __IO uint32_t SMCR;        /*!< TIM slave mode control register,          Address offset: 0x08 */
461   __IO uint32_t DIER;        /*!< TIM DMA/interrupt enable register,        Address offset: 0x0C */
462   __IO uint32_t SR;          /*!< TIM status register,                      Address offset: 0x10 */
463   __IO uint32_t EGR;         /*!< TIM event generation register,            Address offset: 0x14 */
464   __IO uint32_t CCMR1;       /*!< TIM capture/compare mode register 1,      Address offset: 0x18 */
465   __IO uint32_t CCMR2;       /*!< TIM capture/compare mode register 2,      Address offset: 0x1C */
466   __IO uint32_t CCER;        /*!< TIM capture/compare enable register,      Address offset: 0x20 */
467   __IO uint32_t CNT;         /*!< TIM counter register,                     Address offset: 0x24 */
468   __IO uint32_t PSC;         /*!< TIM prescaler register,                   Address offset: 0x28 */
469   __IO uint32_t ARR;         /*!< TIM auto-reload register,                 Address offset: 0x2C */
470   __IO uint32_t RCR;         /*!< TIM repetition counter register,          Address offset: 0x30 */
471   __IO uint32_t CCR1;        /*!< TIM capture/compare register 1,           Address offset: 0x34 */
472   __IO uint32_t CCR2;        /*!< TIM capture/compare register 2,           Address offset: 0x38 */
473   __IO uint32_t CCR3;        /*!< TIM capture/compare register 3,           Address offset: 0x3C */
474   __IO uint32_t CCR4;        /*!< TIM capture/compare register 4,           Address offset: 0x40 */
475   __IO uint32_t BDTR;        /*!< TIM break and dead-time register,         Address offset: 0x44 */
476   __IO uint32_t DCR;         /*!< TIM DMA control register,                 Address offset: 0x48 */
477   __IO uint32_t DMAR;        /*!< TIM DMA address for full transfer,        Address offset: 0x4C */
478   __IO uint32_t RESERVED;    /*!< Reserved,                                 Address offset: 0x50 */
479   __IO uint32_t CCMR3;       /*!< TIM capture/compare mode register 3,      Address offset: 0x54 */
480   __IO uint32_t CCR5;        /*!< TIM capture/compare register5,            Address offset: 0x58 */
481   __IO uint32_t CCR6;        /*!< TIM capture/compare register6,            Address offset: 0x5C */
482   __IO uint32_t AF1;         /*!< TIM alternate function register 1,        Address offset: 0x60 */
483   __IO uint32_t AF2;         /*!< TIM alternate function register 2,        Address offset: 0x64 */
484   __IO uint32_t TISEL;       /*!< TIM Input Selection register,             Address offset: 0x68 */
485 } TIM_TypeDef;
486 
487 /**
488   * @brief Universal Synchronous Asynchronous Receiver Transmitter
489   */
490 typedef struct
491 {
492   __IO uint32_t CR1;         /*!< USART Control register 1,                 Address offset: 0x00  */
493   __IO uint32_t CR2;         /*!< USART Control register 2,                 Address offset: 0x04  */
494   __IO uint32_t CR3;         /*!< USART Control register 3,                 Address offset: 0x08  */
495   __IO uint32_t BRR;         /*!< USART Baud rate register,                 Address offset: 0x0C  */
496   __IO uint32_t GTPR;        /*!< USART Guard time and prescaler register,  Address offset: 0x10  */
497   __IO uint32_t RTOR;        /*!< USART Receiver Time Out register,         Address offset: 0x14  */
498   __IO uint32_t RQR;         /*!< USART Request register,                   Address offset: 0x18  */
499   __IO uint32_t ISR;         /*!< USART Interrupt and status register,      Address offset: 0x1C  */
500   __IO uint32_t ICR;         /*!< USART Interrupt flag Clear register,      Address offset: 0x20  */
501   __IO uint32_t RDR;         /*!< USART Receive Data register,              Address offset: 0x24  */
502   __IO uint32_t TDR;         /*!< USART Transmit Data register,             Address offset: 0x28  */
503   __IO uint32_t PRESC;       /*!< USART Prescaler register,                 Address offset: 0x2C  */
504 
505 } USART_TypeDef;
506 
507 /**
508   * @brief Window WATCHDOG
509   */
510 typedef struct
511 {
512   __IO uint32_t CR;          /*!< WWDG Control register,       Address offset: 0x00 */
513   __IO uint32_t CFR;         /*!< WWDG Configuration register, Address offset: 0x04 */
514   __IO uint32_t SR;          /*!< WWDG Status register,        Address offset: 0x08 */
515 } WWDG_TypeDef;
516 
517 /**
518   * @brief Universal Serial Bus Full Speed Dual Role Device
519   */
520 
521 typedef struct
522 {
523   __IO uint32_t CHEP0R;          /*!< USB Channel/Endpoint 0 register,      Address offset: 0x00 */
524   __IO uint32_t CHEP1R;          /*!< USB Channel/Endpoint 1 register,      Address offset: 0x04 */
525   __IO uint32_t CHEP2R;          /*!< USB Channel/Endpoint 2 register,      Address offset: 0x08 */
526   __IO uint32_t CHEP3R;          /*!< USB Channel/Endpoint 3 register,      Address offset: 0x0C */
527   __IO uint32_t CHEP4R;          /*!< USB Channel/Endpoint 4 register,      Address offset: 0x10 */
528   __IO uint32_t CHEP5R;          /*!< USB Channel/Endpoint 5 register,      Address offset: 0x14 */
529   __IO uint32_t CHEP6R;          /*!< USB Channel/Endpoint 6 register,      Address offset: 0x18 */
530   __IO uint32_t CHEP7R;          /*!< USB Channel/Endpoint 7 register,      Address offset: 0x1C */
531   __IO uint32_t RESERVED0[8];    /*!< Reserved,                                                  */
532   __IO uint32_t CNTR;            /*!< Control register,                     Address offset: 0x40 */
533   __IO uint32_t ISTR;            /*!< Interrupt status register,            Address offset: 0x44 */
534   __IO uint32_t FNR;             /*!< Frame number register,                Address offset: 0x48 */
535   __IO uint32_t DADDR;           /*!< Device address register,              Address offset: 0x4C */
536   __IO uint32_t RESERVED1;       /*!< Reserved */
537   __IO uint32_t LPMCSR;          /*!< LPM Control and Status register,      Address offset: 0x54 */
538   __IO uint32_t BCDR;            /*!< Battery Charging detector register,   Address offset: 0x58 */
539 } USB_DRD_TypeDef;
540 
541 /**
542   * @brief Universal Serial Bus PacketMemoryArea Buffer Descriptor Table
543   */
544 typedef struct
545 {
546   __IO uint32_t TXBD;             /*!<Transmission buffer address*/
547   __IO uint32_t RXBD;             /*!<Reception buffer address */
548 } USB_DRD_PMABuffDescTypeDef;
549 
550 
551 /** @addtogroup Peripheral_memory_map
552   * @{
553   */
554 #define FLASH_BASE            (0x08000000UL)  /*!< FLASH base address */
555 #define SRAM_BASE             (0x20000000UL)  /*!< SRAM base address */
556 #define PERIPH_BASE           (0x40000000UL)  /*!< Peripheral base address */
557 #define IOPORT_BASE           (0x50000000UL)  /*!< IOPORT base address */
558 
559 #define SRAM_SIZE_MAX         (0x00006000UL)  /*!< maximum SRAM size (up to 24 KBytes) */
560 
561 #define FLASH_SIZE_DEFAULT    0x20000U                    /*!< Flash memory default size */
562 
563 #define FLASH_SIZE            ((((*((uint16_t *)FLASHSIZE_BASE)) == 0xFFFFU)) ? FLASH_SIZE_DEFAULT : \
564                                ((((*((uint16_t *)FLASHSIZE_BASE)) == 0x0000U)) ? FLASH_SIZE_DEFAULT : \
565                                 (((uint32_t)(*((uint16_t *)FLASHSIZE_BASE)) & (0xFFFFU)) << 10U)))
566 
567 /*!< Peripheral memory map */
568 #define APBPERIPH_BASE        (PERIPH_BASE)
569 #define AHBPERIPH_BASE        (PERIPH_BASE + 0x00020000UL)
570 
571 /*!< APB peripherals */
572 
573 #define TIM2_BASE             (APBPERIPH_BASE)
574 #define TIM3_BASE             (APBPERIPH_BASE + 0x00000400UL)
575 #define TIM14_BASE            (APBPERIPH_BASE + 0x00002000UL)
576 #define RTC_BASE              (APBPERIPH_BASE + 0x00002800UL)
577 #define WWDG_BASE             (APBPERIPH_BASE + 0x00002C00UL)
578 #define IWDG_BASE             (APBPERIPH_BASE + 0x00003000UL)
579 #define SPI2_BASE             (APBPERIPH_BASE + 0x00003800UL)
580 #define USART2_BASE           (APBPERIPH_BASE + 0x00004400UL)
581 #define I2C1_BASE             (APBPERIPH_BASE + 0x00005400UL)
582 #define I2C2_BASE             (APBPERIPH_BASE + 0x00005800UL)
583 #define USB_BASE              (APBPERIPH_BASE + 0x00005C00UL)
584 #define CRS_BASE              (APBPERIPH_BASE + 0x00006C00UL)
585 #define PWR_BASE              (APBPERIPH_BASE + 0x00007000UL)
586 #define USB_DRD_BASE          (USB_BASE)
587 #define USB_DRD_PMAADDR       (APBPERIPH_BASE + 0x00009800UL)
588 #define SYSCFG_BASE           (APBPERIPH_BASE + 0x00010000UL)
589 #define ADC1_BASE             (APBPERIPH_BASE + 0x00012400UL)
590 #define ADC1_COMMON_BASE      (APBPERIPH_BASE + 0x00012708UL)
591 #define ADC_BASE              (ADC1_COMMON_BASE) /* Kept for legacy purpose */
592 #define TIM1_BASE             (APBPERIPH_BASE + 0x00012C00UL)
593 #define SPI1_BASE             (APBPERIPH_BASE + 0x00013000UL)
594 #define USART1_BASE           (APBPERIPH_BASE + 0x00013800UL)
595 #define TIM16_BASE            (APBPERIPH_BASE + 0x00014400UL)
596 #define TIM17_BASE            (APBPERIPH_BASE + 0x00014800UL)
597 #define DBG_BASE              (APBPERIPH_BASE + 0x00015800UL)
598 
599 
600 /*!< AHB peripherals */
601 #define DMA1_BASE             (AHBPERIPH_BASE)
602 #define DMAMUX1_BASE          (AHBPERIPH_BASE + 0x00000800UL)
603 #define RCC_BASE              (AHBPERIPH_BASE + 0x00001000UL)
604 #define EXTI_BASE             (AHBPERIPH_BASE + 0x00001800UL)
605 #define FLASH_R_BASE          (AHBPERIPH_BASE + 0x00002000UL)
606 #define CRC_BASE              (AHBPERIPH_BASE + 0x00003000UL)
607 
608 
609 #define DMA1_Channel1_BASE    (DMA1_BASE + 0x00000008UL)
610 #define DMA1_Channel2_BASE    (DMA1_BASE + 0x0000001CUL)
611 #define DMA1_Channel3_BASE    (DMA1_BASE + 0x00000030UL)
612 #define DMA1_Channel4_BASE    (DMA1_BASE + 0x00000044UL)
613 #define DMA1_Channel5_BASE    (DMA1_BASE + 0x00000058UL)
614 
615 
616 #define DMAMUX1_Channel0_BASE    (DMAMUX1_BASE)
617 #define DMAMUX1_Channel1_BASE    (DMAMUX1_BASE + 0x00000004UL)
618 #define DMAMUX1_Channel2_BASE    (DMAMUX1_BASE + 0x00000008UL)
619 #define DMAMUX1_Channel3_BASE    (DMAMUX1_BASE + 0x0000000CUL)
620 #define DMAMUX1_Channel4_BASE    (DMAMUX1_BASE + 0x00000010UL)
621 
622 #define DMAMUX1_RequestGenerator0_BASE  (DMAMUX1_BASE + 0x00000100UL)
623 #define DMAMUX1_RequestGenerator1_BASE  (DMAMUX1_BASE + 0x00000104UL)
624 #define DMAMUX1_RequestGenerator2_BASE  (DMAMUX1_BASE + 0x00000108UL)
625 #define DMAMUX1_RequestGenerator3_BASE  (DMAMUX1_BASE + 0x0000010CUL)
626 
627 #define DMAMUX1_ChannelStatus_BASE      (DMAMUX1_BASE + 0x00000080UL)
628 #define DMAMUX1_RequestGenStatus_BASE   (DMAMUX1_BASE + 0x00000140UL)
629 #define DMAMUX1_IdRegisters_BASE        (DMAMUX1_BASE + 0x000003EC)
630 
631 /*!< IOPORT */
632 #define GPIOA_BASE            (IOPORT_BASE + 0x00000000UL)
633 #define GPIOB_BASE            (IOPORT_BASE + 0x00000400UL)
634 #define GPIOC_BASE            (IOPORT_BASE + 0x00000800UL)
635 #define GPIOD_BASE            (IOPORT_BASE + 0x00000C00UL)
636 #define GPIOF_BASE            (IOPORT_BASE + 0x00001400UL)
637 
638 /*!< Device Electronic Signature */
639 #define PACKAGE_BASE          (0x1FFF7500UL)        /*!< Package data register base address     */
640 #define UID_BASE              (0x1FFF7550UL)        /*!< Unique device ID register base address */
641 #define FLASHSIZE_BASE        (0x1FFF75A0UL)        /*!< Flash size data register base address  */
642 
643 /**
644   * @}
645   */
646 
647 /** @addtogroup Peripheral_declaration
648   * @{
649   */
650 #define TIM2                ((TIM_TypeDef *) TIM2_BASE)
651 #define TIM3                ((TIM_TypeDef *) TIM3_BASE)
652 #define TIM14               ((TIM_TypeDef *) TIM14_BASE)
653 #define RTC                 ((RTC_TypeDef *) RTC_BASE)
654 #define WWDG                ((WWDG_TypeDef *) WWDG_BASE)
655 #define IWDG                ((IWDG_TypeDef *) IWDG_BASE)
656 #define SPI2                ((SPI_TypeDef *) SPI2_BASE)
657 #define USART2              ((USART_TypeDef *) USART2_BASE)
658 #define I2C1                ((I2C_TypeDef *) I2C1_BASE)
659 #define I2C2                ((I2C_TypeDef *) I2C2_BASE)
660 #define PWR                 ((PWR_TypeDef *) PWR_BASE)
661 #define RCC                 ((RCC_TypeDef *) RCC_BASE)
662 #define EXTI                ((EXTI_TypeDef *) EXTI_BASE)
663 #define SYSCFG              ((SYSCFG_TypeDef *) SYSCFG_BASE)
664 #define TIM1                ((TIM_TypeDef *) TIM1_BASE)
665 #define SPI1                ((SPI_TypeDef *) SPI1_BASE)
666 #define USART1              ((USART_TypeDef *) USART1_BASE)
667 #define TIM16               ((TIM_TypeDef *) TIM16_BASE)
668 #define TIM17               ((TIM_TypeDef *) TIM17_BASE)
669 #define DMA1                ((DMA_TypeDef *) DMA1_BASE)
670 #define FLASH               ((FLASH_TypeDef *) FLASH_R_BASE)
671 #define CRC                 ((CRC_TypeDef *) CRC_BASE)
672 #define CRS                 ((CRS_TypeDef *) CRS_BASE)
673 #define GPIOA               ((GPIO_TypeDef *) GPIOA_BASE)
674 #define GPIOB               ((GPIO_TypeDef *) GPIOB_BASE)
675 #define GPIOC               ((GPIO_TypeDef *) GPIOC_BASE)
676 #define GPIOD               ((GPIO_TypeDef *) GPIOD_BASE)
677 #define GPIOF               ((GPIO_TypeDef *) GPIOF_BASE)
678 #define ADC1                ((ADC_TypeDef *) ADC1_BASE)
679 #define ADC1_COMMON         ((ADC_Common_TypeDef *) ADC1_COMMON_BASE)
680 #define ADC                 (ADC1_COMMON) /* Kept for legacy purpose */
681 
682 
683 #define DMA1_Channel1       ((DMA_Channel_TypeDef *) DMA1_Channel1_BASE)
684 #define DMA1_Channel2       ((DMA_Channel_TypeDef *) DMA1_Channel2_BASE)
685 #define DMA1_Channel3       ((DMA_Channel_TypeDef *) DMA1_Channel3_BASE)
686 #define DMA1_Channel4       ((DMA_Channel_TypeDef *) DMA1_Channel4_BASE)
687 #define DMA1_Channel5       ((DMA_Channel_TypeDef *) DMA1_Channel5_BASE)
688 
689 #define DMAMUX1                ((DMAMUX_Channel_TypeDef *) DMAMUX1_BASE)
690 #define DMAMUX1_Channel0       ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel0_BASE)
691 #define DMAMUX1_Channel1       ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel1_BASE)
692 #define DMAMUX1_Channel2       ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel2_BASE)
693 #define DMAMUX1_Channel3       ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel3_BASE)
694 #define DMAMUX1_Channel4       ((DMAMUX_Channel_TypeDef *) DMAMUX1_Channel4_BASE)
695 
696 #define DMAMUX1_RequestGenerator0  ((DMAMUX_RequestGen_TypeDef *) DMAMUX1_RequestGenerator0_BASE)
697 #define DMAMUX1_RequestGenerator1  ((DMAMUX_RequestGen_TypeDef *) DMAMUX1_RequestGenerator1_BASE)
698 #define DMAMUX1_RequestGenerator2  ((DMAMUX_RequestGen_TypeDef *) DMAMUX1_RequestGenerator2_BASE)
699 #define DMAMUX1_RequestGenerator3  ((DMAMUX_RequestGen_TypeDef *) DMAMUX1_RequestGenerator3_BASE)
700 
701 #define DMAMUX1_ChannelStatus      ((DMAMUX_ChannelStatus_TypeDef *) DMAMUX1_ChannelStatus_BASE)
702 #define DMAMUX1_RequestGenStatus   ((DMAMUX_RequestGenStatus_TypeDef *) DMAMUX1_RequestGenStatus_BASE)
703 #define DMAMUX1_IdRegisters        ((DMAMUX_IdRegisters_TypeDef *) DMAMUX1_IdRegisters_BASE)
704 
705 #define DBG              ((DBG_TypeDef *) DBG_BASE)
706 #define USB_DRD_FS          ((USB_DRD_TypeDef *) USB_DRD_BASE)
707 #define USB_DRD_PMA_BUFF    ((USB_DRD_PMABuffDescTypeDef *) USB_DRD_PMAADDR)
708 
709 /**
710   * @}
711   */
712 
713 /** @addtogroup Exported_constants
714   * @{
715   */
716 
717   /** @addtogroup Peripheral_Registers_Bits_Definition
718   * @{
719   */
720 
721 /******************************************************************************/
722 /*                         Peripheral Registers Bits Definition               */
723 /******************************************************************************/
724 
725 /******************************************************************************/
726 /*                                                                            */
727 /*                      Analog to Digital Converter (ADC)                     */
728 /*                                                                            */
729 /******************************************************************************/
730 /********************  Bit definition for ADC_ISR register  *******************/
731 #define ADC_ISR_ADRDY_Pos              (0U)
732 #define ADC_ISR_ADRDY_Msk              (0x1UL << ADC_ISR_ADRDY_Pos)            /*!< 0x00000001 */
733 #define ADC_ISR_ADRDY                  ADC_ISR_ADRDY_Msk                       /*!< ADC ready flag */
734 #define ADC_ISR_EOSMP_Pos              (1U)
735 #define ADC_ISR_EOSMP_Msk              (0x1UL << ADC_ISR_EOSMP_Pos)            /*!< 0x00000002 */
736 #define ADC_ISR_EOSMP                  ADC_ISR_EOSMP_Msk                       /*!< ADC group regular end of sampling flag */
737 #define ADC_ISR_EOC_Pos                (2U)
738 #define ADC_ISR_EOC_Msk                (0x1UL << ADC_ISR_EOC_Pos)              /*!< 0x00000004 */
739 #define ADC_ISR_EOC                    ADC_ISR_EOC_Msk                         /*!< ADC group regular end of unitary conversion flag */
740 #define ADC_ISR_EOS_Pos                (3U)
741 #define ADC_ISR_EOS_Msk                (0x1UL << ADC_ISR_EOS_Pos)              /*!< 0x00000008 */
742 #define ADC_ISR_EOS                    ADC_ISR_EOS_Msk                         /*!< ADC group regular end of sequence conversions flag */
743 #define ADC_ISR_OVR_Pos                (4U)
744 #define ADC_ISR_OVR_Msk                (0x1UL << ADC_ISR_OVR_Pos)              /*!< 0x00000010 */
745 #define ADC_ISR_OVR                    ADC_ISR_OVR_Msk                         /*!< ADC group regular overrun flag */
746 #define ADC_ISR_AWD1_Pos               (7U)
747 #define ADC_ISR_AWD1_Msk               (0x1UL << ADC_ISR_AWD1_Pos)             /*!< 0x00000080 */
748 #define ADC_ISR_AWD1                   ADC_ISR_AWD1_Msk                        /*!< ADC analog watchdog 1 flag */
749 #define ADC_ISR_AWD2_Pos               (8U)
750 #define ADC_ISR_AWD2_Msk               (0x1UL << ADC_ISR_AWD2_Pos)             /*!< 0x00000100 */
751 #define ADC_ISR_AWD2                   ADC_ISR_AWD2_Msk                        /*!< ADC analog watchdog 2 flag */
752 #define ADC_ISR_AWD3_Pos               (9U)
753 #define ADC_ISR_AWD3_Msk               (0x1UL << ADC_ISR_AWD3_Pos)             /*!< 0x00000200 */
754 #define ADC_ISR_AWD3                   ADC_ISR_AWD3_Msk                        /*!< ADC analog watchdog 3 flag */
755 #define ADC_ISR_EOCAL_Pos              (11U)
756 #define ADC_ISR_EOCAL_Msk              (0x1UL << ADC_ISR_EOCAL_Pos)            /*!< 0x00000800 */
757 #define ADC_ISR_EOCAL                  ADC_ISR_EOCAL_Msk                       /*!< ADC end of calibration flag */
758 #define ADC_ISR_CCRDY_Pos              (13U)
759 #define ADC_ISR_CCRDY_Msk              (0x1UL << ADC_ISR_CCRDY_Pos)            /*!< 0x00002000 */
760 #define ADC_ISR_CCRDY                  ADC_ISR_CCRDY_Msk                       /*!< ADC channel configuration ready flag */
761 
762 /* Legacy defines */
763 #define ADC_ISR_EOSEQ           (ADC_ISR_EOS)
764 
765 /********************  Bit definition for ADC_IER register  *******************/
766 #define ADC_IER_ADRDYIE_Pos            (0U)
767 #define ADC_IER_ADRDYIE_Msk            (0x1UL << ADC_IER_ADRDYIE_Pos)          /*!< 0x00000001 */
768 #define ADC_IER_ADRDYIE                ADC_IER_ADRDYIE_Msk                     /*!< ADC ready interrupt */
769 #define ADC_IER_EOSMPIE_Pos            (1U)
770 #define ADC_IER_EOSMPIE_Msk            (0x1UL << ADC_IER_EOSMPIE_Pos)          /*!< 0x00000002 */
771 #define ADC_IER_EOSMPIE                ADC_IER_EOSMPIE_Msk                     /*!< ADC group regular end of sampling interrupt */
772 #define ADC_IER_EOCIE_Pos              (2U)
773 #define ADC_IER_EOCIE_Msk              (0x1UL << ADC_IER_EOCIE_Pos)            /*!< 0x00000004 */
774 #define ADC_IER_EOCIE                  ADC_IER_EOCIE_Msk                       /*!< ADC group regular end of unitary conversion interrupt */
775 #define ADC_IER_EOSIE_Pos              (3U)
776 #define ADC_IER_EOSIE_Msk              (0x1UL << ADC_IER_EOSIE_Pos)            /*!< 0x00000008 */
777 #define ADC_IER_EOSIE                  ADC_IER_EOSIE_Msk                       /*!< ADC group regular end of sequence conversions interrupt */
778 #define ADC_IER_OVRIE_Pos              (4U)
779 #define ADC_IER_OVRIE_Msk              (0x1UL << ADC_IER_OVRIE_Pos)            /*!< 0x00000010 */
780 #define ADC_IER_OVRIE                  ADC_IER_OVRIE_Msk                       /*!< ADC group regular overrun interrupt */
781 #define ADC_IER_AWD1IE_Pos             (7U)
782 #define ADC_IER_AWD1IE_Msk             (0x1UL << ADC_IER_AWD1IE_Pos)           /*!< 0x00000080 */
783 #define ADC_IER_AWD1IE                 ADC_IER_AWD1IE_Msk                      /*!< ADC analog watchdog 1 interrupt */
784 #define ADC_IER_AWD2IE_Pos             (8U)
785 #define ADC_IER_AWD2IE_Msk             (0x1UL << ADC_IER_AWD2IE_Pos)           /*!< 0x00000100 */
786 #define ADC_IER_AWD2IE                 ADC_IER_AWD2IE_Msk                      /*!< ADC analog watchdog 2 interrupt */
787 #define ADC_IER_AWD3IE_Pos             (9U)
788 #define ADC_IER_AWD3IE_Msk             (0x1UL << ADC_IER_AWD3IE_Pos)           /*!< 0x00000200 */
789 #define ADC_IER_AWD3IE                 ADC_IER_AWD3IE_Msk                      /*!< ADC analog watchdog 3 interrupt */
790 #define ADC_IER_EOCALIE_Pos            (11U)
791 #define ADC_IER_EOCALIE_Msk            (0x1UL << ADC_IER_EOCALIE_Pos)          /*!< 0x00000800 */
792 #define ADC_IER_EOCALIE                ADC_IER_EOCALIE_Msk                     /*!< ADC end of calibration interrupt */
793 #define ADC_IER_CCRDYIE_Pos            (13U)
794 #define ADC_IER_CCRDYIE_Msk            (0x1UL << ADC_IER_CCRDYIE_Pos)          /*!< 0x00002000 */
795 #define ADC_IER_CCRDYIE                ADC_IER_CCRDYIE_Msk                     /*!< ADC channel configuration ready interrupt */
796 
797 /* Legacy defines */
798 #define ADC_IER_EOSEQIE           (ADC_IER_EOSIE)
799 
800 /********************  Bit definition for ADC_CR register  ********************/
801 #define ADC_CR_ADEN_Pos                (0U)
802 #define ADC_CR_ADEN_Msk                (0x1UL << ADC_CR_ADEN_Pos)              /*!< 0x00000001 */
803 #define ADC_CR_ADEN                    ADC_CR_ADEN_Msk                         /*!< ADC enable */
804 #define ADC_CR_ADDIS_Pos               (1U)
805 #define ADC_CR_ADDIS_Msk               (0x1UL << ADC_CR_ADDIS_Pos)             /*!< 0x00000002 */
806 #define ADC_CR_ADDIS                   ADC_CR_ADDIS_Msk                        /*!< ADC disable */
807 #define ADC_CR_ADSTART_Pos             (2U)
808 #define ADC_CR_ADSTART_Msk             (0x1UL << ADC_CR_ADSTART_Pos)           /*!< 0x00000004 */
809 #define ADC_CR_ADSTART                 ADC_CR_ADSTART_Msk                      /*!< ADC group regular conversion start */
810 #define ADC_CR_ADSTP_Pos               (4U)
811 #define ADC_CR_ADSTP_Msk               (0x1UL << ADC_CR_ADSTP_Pos)             /*!< 0x00000010 */
812 #define ADC_CR_ADSTP                   ADC_CR_ADSTP_Msk                        /*!< ADC group regular conversion stop */
813 #define ADC_CR_ADVREGEN_Pos            (28U)
814 #define ADC_CR_ADVREGEN_Msk            (0x1UL << ADC_CR_ADVREGEN_Pos)          /*!< 0x10000000 */
815 #define ADC_CR_ADVREGEN                ADC_CR_ADVREGEN_Msk                     /*!< ADC voltage regulator enable */
816 #define ADC_CR_ADCAL_Pos               (31U)
817 #define ADC_CR_ADCAL_Msk               (0x1UL << ADC_CR_ADCAL_Pos)             /*!< 0x80000000 */
818 #define ADC_CR_ADCAL                   ADC_CR_ADCAL_Msk                        /*!< ADC calibration */
819 
820 /********************  Bit definition for ADC_CFGR1 register  *****************/
821 #define ADC_CFGR1_DMAEN_Pos            (0U)
822 #define ADC_CFGR1_DMAEN_Msk            (0x1UL << ADC_CFGR1_DMAEN_Pos)          /*!< 0x00000001 */
823 #define ADC_CFGR1_DMAEN                ADC_CFGR1_DMAEN_Msk                     /*!< ADC DMA transfer enable */
824 #define ADC_CFGR1_DMACFG_Pos           (1U)
825 #define ADC_CFGR1_DMACFG_Msk           (0x1UL << ADC_CFGR1_DMACFG_Pos)         /*!< 0x00000002 */
826 #define ADC_CFGR1_DMACFG               ADC_CFGR1_DMACFG_Msk                    /*!< ADC DMA transfer configuration */
827 
828 #define ADC_CFGR1_SCANDIR_Pos          (2U)
829 #define ADC_CFGR1_SCANDIR_Msk          (0x1UL << ADC_CFGR1_SCANDIR_Pos)        /*!< 0x00000004 */
830 #define ADC_CFGR1_SCANDIR              ADC_CFGR1_SCANDIR_Msk                   /*!< ADC group regular sequencer scan direction */
831 
832 #define ADC_CFGR1_RES_Pos              (3U)
833 #define ADC_CFGR1_RES_Msk              (0x3UL << ADC_CFGR1_RES_Pos)            /*!< 0x00000018 */
834 #define ADC_CFGR1_RES                  ADC_CFGR1_RES_Msk                       /*!< ADC data resolution */
835 #define ADC_CFGR1_RES_0                (0x1U << ADC_CFGR1_RES_Pos)             /*!< 0x00000008 */
836 #define ADC_CFGR1_RES_1                (0x2U << ADC_CFGR1_RES_Pos)             /*!< 0x00000010 */
837 
838 #define ADC_CFGR1_ALIGN_Pos            (5U)
839 #define ADC_CFGR1_ALIGN_Msk            (0x1UL << ADC_CFGR1_ALIGN_Pos)          /*!< 0x00000020 */
840 #define ADC_CFGR1_ALIGN                ADC_CFGR1_ALIGN_Msk                     /*!< ADC data alignment */
841 
842 #define ADC_CFGR1_EXTSEL_Pos           (6U)
843 #define ADC_CFGR1_EXTSEL_Msk           (0x7UL << ADC_CFGR1_EXTSEL_Pos)         /*!< 0x000001C0 */
844 #define ADC_CFGR1_EXTSEL               ADC_CFGR1_EXTSEL_Msk                    /*!< ADC group regular external trigger source */
845 #define ADC_CFGR1_EXTSEL_0             (0x1UL << ADC_CFGR1_EXTSEL_Pos)         /*!< 0x00000040 */
846 #define ADC_CFGR1_EXTSEL_1             (0x2UL << ADC_CFGR1_EXTSEL_Pos)         /*!< 0x00000080 */
847 #define ADC_CFGR1_EXTSEL_2             (0x4UL << ADC_CFGR1_EXTSEL_Pos)         /*!< 0x00000100 */
848 
849 #define ADC_CFGR1_EXTEN_Pos            (10U)
850 #define ADC_CFGR1_EXTEN_Msk            (0x3UL << ADC_CFGR1_EXTEN_Pos)          /*!< 0x00000C00 */
851 #define ADC_CFGR1_EXTEN                ADC_CFGR1_EXTEN_Msk                     /*!< ADC group regular external trigger polarity */
852 #define ADC_CFGR1_EXTEN_0              (0x1UL << ADC_CFGR1_EXTEN_Pos)          /*!< 0x00000400 */
853 #define ADC_CFGR1_EXTEN_1              (0x2UL << ADC_CFGR1_EXTEN_Pos)          /*!< 0x00000800 */
854 
855 #define ADC_CFGR1_OVRMOD_Pos           (12U)
856 #define ADC_CFGR1_OVRMOD_Msk           (0x1UL << ADC_CFGR1_OVRMOD_Pos)         /*!< 0x00001000 */
857 #define ADC_CFGR1_OVRMOD               ADC_CFGR1_OVRMOD_Msk                    /*!< ADC group regular overrun configuration */
858 #define ADC_CFGR1_CONT_Pos             (13U)
859 #define ADC_CFGR1_CONT_Msk             (0x1UL << ADC_CFGR1_CONT_Pos)           /*!< 0x00002000 */
860 #define ADC_CFGR1_CONT                 ADC_CFGR1_CONT_Msk                      /*!< ADC group regular continuous conversion mode */
861 #define ADC_CFGR1_WAIT_Pos             (14U)
862 #define ADC_CFGR1_WAIT_Msk             (0x1UL << ADC_CFGR1_WAIT_Pos)           /*!< 0x00004000 */
863 #define ADC_CFGR1_WAIT                 ADC_CFGR1_WAIT_Msk                      /*!< ADC low power auto wait */
864 #define ADC_CFGR1_AUTOFF_Pos           (15U)
865 #define ADC_CFGR1_AUTOFF_Msk           (0x1UL << ADC_CFGR1_AUTOFF_Pos)         /*!< 0x00008000 */
866 #define ADC_CFGR1_AUTOFF               ADC_CFGR1_AUTOFF_Msk                    /*!< ADC low power auto power off */
867 #define ADC_CFGR1_DISCEN_Pos           (16U)
868 #define ADC_CFGR1_DISCEN_Msk           (0x1UL << ADC_CFGR1_DISCEN_Pos)         /*!< 0x00010000 */
869 #define ADC_CFGR1_DISCEN               ADC_CFGR1_DISCEN_Msk                    /*!< ADC group regular sequencer discontinuous mode */
870 #define ADC_CFGR1_CHSELRMOD_Pos        (21U)
871 #define ADC_CFGR1_CHSELRMOD_Msk        (0x1UL << ADC_CFGR1_CHSELRMOD_Pos)      /*!< 0x00200000 */
872 #define ADC_CFGR1_CHSELRMOD            ADC_CFGR1_CHSELRMOD_Msk                 /*!< ADC group regular sequencer mode */
873 
874 #define ADC_CFGR1_AWD1SGL_Pos          (22U)
875 #define ADC_CFGR1_AWD1SGL_Msk          (0x1UL << ADC_CFGR1_AWD1SGL_Pos)        /*!< 0x00400000 */
876 #define ADC_CFGR1_AWD1SGL              ADC_CFGR1_AWD1SGL_Msk                   /*!< ADC analog watchdog 1 monitoring a single channel or all channels */
877 #define ADC_CFGR1_AWD1EN_Pos           (23U)
878 #define ADC_CFGR1_AWD1EN_Msk           (0x1UL << ADC_CFGR1_AWD1EN_Pos)         /*!< 0x00800000 */
879 #define ADC_CFGR1_AWD1EN               ADC_CFGR1_AWD1EN_Msk                    /*!< ADC analog watchdog 1 enable on scope ADC group regular */
880 
881 #define ADC_CFGR1_AWD1CH_Pos           (26U)
882 #define ADC_CFGR1_AWD1CH_Msk           (0x1FUL << ADC_CFGR1_AWD1CH_Pos)        /*!< 0x7C000000 */
883 #define ADC_CFGR1_AWD1CH               ADC_CFGR1_AWD1CH_Msk                    /*!< ADC analog watchdog 1 monitored channel selection */
884 #define ADC_CFGR1_AWD1CH_0             (0x01UL << ADC_CFGR1_AWD1CH_Pos)        /*!< 0x04000000 */
885 #define ADC_CFGR1_AWD1CH_1             (0x02UL << ADC_CFGR1_AWD1CH_Pos)        /*!< 0x08000000 */
886 #define ADC_CFGR1_AWD1CH_2             (0x04UL << ADC_CFGR1_AWD1CH_Pos)        /*!< 0x10000000 */
887 #define ADC_CFGR1_AWD1CH_3             (0x08UL << ADC_CFGR1_AWD1CH_Pos)        /*!< 0x20000000 */
888 #define ADC_CFGR1_AWD1CH_4             (0x10UL << ADC_CFGR1_AWD1CH_Pos)        /*!< 0x40000000 */
889 
890 /* Legacy defines */
891 #define ADC_CFGR1_AUTDLY          (ADC_CFGR1_WAIT)
892 
893 /********************  Bit definition for ADC_CFGR2 register  *****************/
894 #define ADC_CFGR2_OVSE_Pos             (0U)
895 #define ADC_CFGR2_OVSE_Msk             (0x1UL << ADC_CFGR2_OVSE_Pos)           /*!< 0x00000001 */
896 #define ADC_CFGR2_OVSE                 ADC_CFGR2_OVSE_Msk                      /*!< ADC oversampler enable on scope ADC group regular */
897 
898 #define ADC_CFGR2_OVSR_Pos             (2U)
899 #define ADC_CFGR2_OVSR_Msk             (0x7UL << ADC_CFGR2_OVSR_Pos)           /*!< 0x0000001C */
900 #define ADC_CFGR2_OVSR                 ADC_CFGR2_OVSR_Msk                      /*!< ADC oversampling ratio */
901 #define ADC_CFGR2_OVSR_0               (0x1UL << ADC_CFGR2_OVSR_Pos)           /*!< 0x00000004 */
902 #define ADC_CFGR2_OVSR_1               (0x2UL << ADC_CFGR2_OVSR_Pos)           /*!< 0x00000008 */
903 #define ADC_CFGR2_OVSR_2               (0x4UL << ADC_CFGR2_OVSR_Pos)           /*!< 0x00000010 */
904 
905 #define ADC_CFGR2_OVSS_Pos             (5U)
906 #define ADC_CFGR2_OVSS_Msk             (0xFUL << ADC_CFGR2_OVSS_Pos)           /*!< 0x000001E0 */
907 #define ADC_CFGR2_OVSS                 ADC_CFGR2_OVSS_Msk                      /*!< ADC oversampling shift */
908 #define ADC_CFGR2_OVSS_0               (0x1UL << ADC_CFGR2_OVSS_Pos)           /*!< 0x00000020 */
909 #define ADC_CFGR2_OVSS_1               (0x2UL << ADC_CFGR2_OVSS_Pos)           /*!< 0x00000040 */
910 #define ADC_CFGR2_OVSS_2               (0x4UL << ADC_CFGR2_OVSS_Pos)           /*!< 0x00000080 */
911 #define ADC_CFGR2_OVSS_3               (0x8UL << ADC_CFGR2_OVSS_Pos)           /*!< 0x00000100 */
912 
913 #define ADC_CFGR2_TOVS_Pos             (9U)
914 #define ADC_CFGR2_TOVS_Msk             (0x1UL << ADC_CFGR2_TOVS_Pos)           /*!< 0x00000200 */
915 #define ADC_CFGR2_TOVS                 ADC_CFGR2_TOVS_Msk                      /*!< ADC oversampling discontinuous mode (triggered mode) for ADC group regular */
916 
917 #define ADC_CFGR2_LFTRIG_Pos           (29U)
918 #define ADC_CFGR2_LFTRIG_Msk           (0x1UL << ADC_CFGR2_LFTRIG_Pos)         /*!< 0x20000000 */
919 #define ADC_CFGR2_LFTRIG               ADC_CFGR2_LFTRIG_Msk                    /*!< ADC low frequency trigger mode */
920 
921 #define ADC_CFGR2_CKMODE_Pos           (30U)
922 #define ADC_CFGR2_CKMODE_Msk           (0x3UL << ADC_CFGR2_CKMODE_Pos)         /*!< 0xC0000000 */
923 #define ADC_CFGR2_CKMODE               ADC_CFGR2_CKMODE_Msk                    /*!< ADC clock source and prescaler (prescaler only for clock source synchronous) */
924 #define ADC_CFGR2_CKMODE_1             (0x2UL << ADC_CFGR2_CKMODE_Pos)         /*!< 0x80000000 */
925 #define ADC_CFGR2_CKMODE_0             (0x1UL << ADC_CFGR2_CKMODE_Pos)         /*!< 0x40000000 */
926 
927 /********************  Bit definition for ADC_SMPR register  ******************/
928 #define ADC_SMPR_SMP1_Pos              (0U)
929 #define ADC_SMPR_SMP1_Msk              (0x7UL << ADC_SMPR_SMP1_Pos)            /*!< 0x00000007 */
930 #define ADC_SMPR_SMP1                  ADC_SMPR_SMP1_Msk                       /*!< ADC group of channels sampling time 1 */
931 #define ADC_SMPR_SMP1_0                (0x1UL << ADC_SMPR_SMP1_Pos)            /*!< 0x00000001 */
932 #define ADC_SMPR_SMP1_1                (0x2UL << ADC_SMPR_SMP1_Pos)            /*!< 0x00000002 */
933 #define ADC_SMPR_SMP1_2                (0x4UL << ADC_SMPR_SMP1_Pos)            /*!< 0x00000004 */
934 
935 #define ADC_SMPR_SMP2_Pos              (4U)
936 #define ADC_SMPR_SMP2_Msk              (0x7UL << ADC_SMPR_SMP2_Pos)            /*!< 0x00000070 */
937 #define ADC_SMPR_SMP2                  ADC_SMPR_SMP2_Msk                       /*!< ADC group of channels sampling time 2 */
938 #define ADC_SMPR_SMP2_0                (0x1UL << ADC_SMPR_SMP2_Pos)            /*!< 0x00000010 */
939 #define ADC_SMPR_SMP2_1                (0x2UL << ADC_SMPR_SMP2_Pos)            /*!< 0x00000020 */
940 #define ADC_SMPR_SMP2_2                (0x4UL << ADC_SMPR_SMP2_Pos)            /*!< 0x00000040 */
941 
942 #define ADC_SMPR_SMPSEL_Pos            (8U)
943 #define ADC_SMPR_SMPSEL_Msk            (0x7FFFFUL << ADC_SMPR_SMPSEL_Pos)      /*!< 0x07FFFF00 */
944 #define ADC_SMPR_SMPSEL                ADC_SMPR_SMPSEL_Msk                     /*!< ADC all channels sampling time selection */
945 #define ADC_SMPR_SMPSEL0_Pos           (8U)
946 #define ADC_SMPR_SMPSEL0_Msk           (0x1UL << ADC_SMPR_SMPSEL0_Pos)         /*!< 0x00000100 */
947 #define ADC_SMPR_SMPSEL0               ADC_SMPR_SMPSEL0_Msk                    /*!< ADC channel 0 sampling time selection */
948 #define ADC_SMPR_SMPSEL1_Pos           (9U)
949 #define ADC_SMPR_SMPSEL1_Msk           (0x1UL << ADC_SMPR_SMPSEL1_Pos)         /*!< 0x00000200 */
950 #define ADC_SMPR_SMPSEL1               ADC_SMPR_SMPSEL1_Msk                    /*!< ADC channel 1 sampling time selection */
951 #define ADC_SMPR_SMPSEL2_Pos           (10U)
952 #define ADC_SMPR_SMPSEL2_Msk           (0x1UL << ADC_SMPR_SMPSEL2_Pos)         /*!< 0x00000400 */
953 #define ADC_SMPR_SMPSEL2               ADC_SMPR_SMPSEL2_Msk                    /*!< ADC channel 2 sampling time selection */
954 #define ADC_SMPR_SMPSEL3_Pos           (11U)
955 #define ADC_SMPR_SMPSEL3_Msk           (0x1UL << ADC_SMPR_SMPSEL3_Pos)         /*!< 0x00000800 */
956 #define ADC_SMPR_SMPSEL3               ADC_SMPR_SMPSEL3_Msk                    /*!< ADC channel 3 sampling time selection */
957 #define ADC_SMPR_SMPSEL4_Pos           (12U)
958 #define ADC_SMPR_SMPSEL4_Msk           (0x1UL << ADC_SMPR_SMPSEL4_Pos)         /*!< 0x00001000 */
959 #define ADC_SMPR_SMPSEL4               ADC_SMPR_SMPSEL4_Msk                    /*!< ADC channel 4 sampling time selection */
960 #define ADC_SMPR_SMPSEL5_Pos           (13U)
961 #define ADC_SMPR_SMPSEL5_Msk           (0x1UL << ADC_SMPR_SMPSEL5_Pos)         /*!< 0x00002000 */
962 #define ADC_SMPR_SMPSEL5               ADC_SMPR_SMPSEL5_Msk                    /*!< ADC channel 5 sampling time selection */
963 #define ADC_SMPR_SMPSEL6_Pos           (14U)
964 #define ADC_SMPR_SMPSEL6_Msk           (0x1UL << ADC_SMPR_SMPSEL6_Pos)         /*!< 0x00004000 */
965 #define ADC_SMPR_SMPSEL6               ADC_SMPR_SMPSEL6_Msk                    /*!< ADC channel 6 sampling time selection */
966 #define ADC_SMPR_SMPSEL7_Pos           (15U)
967 #define ADC_SMPR_SMPSEL7_Msk           (0x1UL << ADC_SMPR_SMPSEL7_Pos)         /*!< 0x00008000 */
968 #define ADC_SMPR_SMPSEL7               ADC_SMPR_SMPSEL7_Msk                    /*!< ADC channel 7 sampling time selection */
969 #define ADC_SMPR_SMPSEL8_Pos           (16U)
970 #define ADC_SMPR_SMPSEL8_Msk           (0x1UL << ADC_SMPR_SMPSEL8_Pos)         /*!< 0x00010000 */
971 #define ADC_SMPR_SMPSEL8               ADC_SMPR_SMPSEL8_Msk                    /*!< ADC channel 8 sampling time selection */
972 #define ADC_SMPR_SMPSEL9_Pos           (17U)
973 #define ADC_SMPR_SMPSEL9_Msk           (0x1UL << ADC_SMPR_SMPSEL9_Pos)         /*!< 0x00020000 */
974 #define ADC_SMPR_SMPSEL9               ADC_SMPR_SMPSEL9_Msk                    /*!< ADC channel 9 sampling time selection */
975 #define ADC_SMPR_SMPSEL10_Pos          (18U)
976 #define ADC_SMPR_SMPSEL10_Msk          (0x1UL << ADC_SMPR_SMPSEL10_Pos)        /*!< 0x00040000 */
977 #define ADC_SMPR_SMPSEL10              ADC_SMPR_SMPSEL10_Msk                   /*!< ADC channel 10 sampling time selection */
978 #define ADC_SMPR_SMPSEL11_Pos          (19U)
979 #define ADC_SMPR_SMPSEL11_Msk          (0x1UL << ADC_SMPR_SMPSEL11_Pos)        /*!< 0x00080000 */
980 #define ADC_SMPR_SMPSEL11              ADC_SMPR_SMPSEL11_Msk                   /*!< ADC channel 11 sampling time selection */
981 #define ADC_SMPR_SMPSEL12_Pos          (20U)
982 #define ADC_SMPR_SMPSEL12_Msk          (0x1UL << ADC_SMPR_SMPSEL12_Pos)        /*!< 0x00100000 */
983 #define ADC_SMPR_SMPSEL12              ADC_SMPR_SMPSEL12_Msk                   /*!< ADC channel 12 sampling time selection */
984 #define ADC_SMPR_SMPSEL13_Pos          (21U)
985 #define ADC_SMPR_SMPSEL13_Msk          (0x1UL << ADC_SMPR_SMPSEL13_Pos)        /*!< 0x00200000 */
986 #define ADC_SMPR_SMPSEL13              ADC_SMPR_SMPSEL13_Msk                   /*!< ADC channel 13 sampling time selection */
987 #define ADC_SMPR_SMPSEL14_Pos          (22U)
988 #define ADC_SMPR_SMPSEL14_Msk          (0x1UL << ADC_SMPR_SMPSEL14_Pos)        /*!< 0x00400000 */
989 #define ADC_SMPR_SMPSEL14              ADC_SMPR_SMPSEL14_Msk                   /*!< ADC channel 14 sampling time selection */
990 #define ADC_SMPR_SMPSEL15_Pos          (23U)
991 #define ADC_SMPR_SMPSEL15_Msk          (0x1UL << ADC_SMPR_SMPSEL15_Pos)        /*!< 0x00800000 */
992 #define ADC_SMPR_SMPSEL15              ADC_SMPR_SMPSEL15_Msk                   /*!< ADC channel 15 sampling time selection */
993 #define ADC_SMPR_SMPSEL16_Pos          (24U)
994 #define ADC_SMPR_SMPSEL16_Msk          (0x1UL << ADC_SMPR_SMPSEL16_Pos)        /*!< 0x01000000 */
995 #define ADC_SMPR_SMPSEL16              ADC_SMPR_SMPSEL16_Msk                   /*!< ADC channel 16 sampling time selection */
996 #define ADC_SMPR_SMPSEL17_Pos          (25U)
997 #define ADC_SMPR_SMPSEL17_Msk          (0x1UL << ADC_SMPR_SMPSEL17_Pos)        /*!< 0x02000000 */
998 #define ADC_SMPR_SMPSEL17              ADC_SMPR_SMPSEL17_Msk                   /*!< ADC channel 17 sampling time selection */
999 #define ADC_SMPR_SMPSEL18_Pos          (26U)
1000 #define ADC_SMPR_SMPSEL18_Msk          (0x1UL << ADC_SMPR_SMPSEL18_Pos)        /*!< 0x04000000 */
1001 #define ADC_SMPR_SMPSEL18              ADC_SMPR_SMPSEL18_Msk                   /*!< ADC channel 18 sampling time selection */
1002 
1003 /********************  Bit definition for ADC_AWD1TR register  *******************/
1004 #define ADC_AWD1TR_LT1_Pos                (0U)
1005 #define ADC_AWD1TR_LT1_Msk             (0xFFFUL << ADC_AWD1TR_LT1_Pos)         /*!< 0x00000FFF */
1006 #define ADC_AWD1TR_LT1                 ADC_AWD1TR_LT1_Msk                      /*!< ADC analog watchdog 1 threshold low */
1007 #define ADC_AWD1TR_LT1_0               (0x001UL << ADC_AWD1TR_LT1_Pos)         /*!< 0x00000001 */
1008 #define ADC_AWD1TR_LT1_1               (0x002UL << ADC_AWD1TR_LT1_Pos)         /*!< 0x00000002 */
1009 #define ADC_AWD1TR_LT1_2               (0x004UL << ADC_AWD1TR_LT1_Pos)         /*!< 0x00000004 */
1010 #define ADC_AWD1TR_LT1_3               (0x008UL << ADC_AWD1TR_LT1_Pos)         /*!< 0x00000008 */
1011 #define ADC_AWD1TR_LT1_4               (0x010UL << ADC_AWD1TR_LT1_Pos)         /*!< 0x00000010 */
1012 #define ADC_AWD1TR_LT1_5               (0x020UL << ADC_AWD1TR_LT1_Pos)         /*!< 0x00000020 */
1013 #define ADC_AWD1TR_LT1_6               (0x040UL << ADC_AWD1TR_LT1_Pos)         /*!< 0x00000040 */
1014 #define ADC_AWD1TR_LT1_7               (0x080UL << ADC_AWD1TR_LT1_Pos)         /*!< 0x00000080 */
1015 #define ADC_AWD1TR_LT1_8               (0x100UL << ADC_AWD1TR_LT1_Pos)         /*!< 0x00000100 */
1016 #define ADC_AWD1TR_LT1_9               (0x200UL << ADC_AWD1TR_LT1_Pos)         /*!< 0x00000200 */
1017 #define ADC_AWD1TR_LT1_10              (0x400UL << ADC_AWD1TR_LT1_Pos)         /*!< 0x00000400 */
1018 #define ADC_AWD1TR_LT1_11              (0x800UL << ADC_AWD1TR_LT1_Pos)         /*!< 0x00000800 */
1019 
1020 #define ADC_AWD1TR_HT1_Pos             (16U)
1021 #define ADC_AWD1TR_HT1_Msk             (0xFFFUL << ADC_AWD1TR_HT1_Pos)         /*!< 0x0FFF0000 */
1022 #define ADC_AWD1TR_HT1                 ADC_AWD1TR_HT1_Msk                      /*!< ADC Analog watchdog 1 threshold high */
1023 #define ADC_AWD1TR_HT1_0               (0x001UL << ADC_AWD1TR_HT1_Pos)         /*!< 0x00010000 */
1024 #define ADC_AWD1TR_HT1_1               (0x002UL << ADC_AWD1TR_HT1_Pos)         /*!< 0x00020000 */
1025 #define ADC_AWD1TR_HT1_2               (0x004UL << ADC_AWD1TR_HT1_Pos)         /*!< 0x00040000 */
1026 #define ADC_AWD1TR_HT1_3               (0x008UL << ADC_AWD1TR_HT1_Pos)         /*!< 0x00080000 */
1027 #define ADC_AWD1TR_HT1_4               (0x010UL << ADC_AWD1TR_HT1_Pos)         /*!< 0x00100000 */
1028 #define ADC_AWD1TR_HT1_5               (0x020UL << ADC_AWD1TR_HT1_Pos)         /*!< 0x00200000 */
1029 #define ADC_AWD1TR_HT1_6               (0x040UL << ADC_AWD1TR_HT1_Pos)         /*!< 0x00400000 */
1030 #define ADC_AWD1TR_HT1_7               (0x080UL << ADC_AWD1TR_HT1_Pos)         /*!< 0x00800000 */
1031 #define ADC_AWD1TR_HT1_8               (0x100UL << ADC_AWD1TR_HT1_Pos)         /*!< 0x01000000 */
1032 #define ADC_AWD1TR_HT1_9               (0x200UL << ADC_AWD1TR_HT1_Pos)         /*!< 0x02000000 */
1033 #define ADC_AWD1TR_HT1_10              (0x400UL << ADC_AWD1TR_HT1_Pos)         /*!< 0x04000000 */
1034 #define ADC_AWD1TR_HT1_11              (0x800UL << ADC_AWD1TR_HT1_Pos)         /*!< 0x08000000 */
1035 
1036 /* Legacy definitions */
1037 #define ADC_TR1_LT1             ADC_AWD1TR_LT1
1038 #define ADC_TR1_LT1_0           ADC_AWD1TR_LT1_0
1039 #define ADC_TR1_LT1_1           ADC_AWD1TR_LT1_1
1040 #define ADC_TR1_LT1_2           ADC_AWD1TR_LT1_2
1041 #define ADC_TR1_LT1_3           ADC_AWD1TR_LT1_3
1042 #define ADC_TR1_LT1_4           ADC_AWD1TR_LT1_4
1043 #define ADC_TR1_LT1_5           ADC_AWD1TR_LT1_5
1044 #define ADC_TR1_LT1_6           ADC_AWD1TR_LT1_6
1045 #define ADC_TR1_LT1_7           ADC_AWD1TR_LT1_7
1046 #define ADC_TR1_LT1_8           ADC_AWD1TR_LT1_8
1047 #define ADC_TR1_LT1_9           ADC_AWD1TR_LT1_9
1048 #define ADC_TR1_LT1_10          ADC_AWD1TR_LT1_10
1049 #define ADC_TR1_LT1_11          ADC_AWD1TR_LT1_11
1050 
1051 #define ADC_TR1_HT1             ADC_AWD1TR_HT1
1052 #define ADC_TR1_HT1_0           ADC_AWD1TR_HT1_0
1053 #define ADC_TR1_HT1_1           ADC_AWD1TR_HT1_1
1054 #define ADC_TR1_HT1_2           ADC_AWD1TR_HT1_2
1055 #define ADC_TR1_HT1_3           ADC_AWD1TR_HT1_3
1056 #define ADC_TR1_HT1_4           ADC_AWD1TR_HT1_4
1057 #define ADC_TR1_HT1_5           ADC_AWD1TR_HT1_5
1058 #define ADC_TR1_HT1_6           ADC_AWD1TR_HT1_6
1059 #define ADC_TR1_HT1_7           ADC_AWD1TR_HT1_7
1060 #define ADC_TR1_HT1_8           ADC_AWD1TR_HT1_8
1061 #define ADC_TR1_HT1_9           ADC_AWD1TR_HT1_9
1062 #define ADC_TR1_HT1_10          ADC_AWD1TR_HT1_10
1063 #define ADC_TR1_HT1_11          ADC_AWD1TR_HT1_11
1064 
1065 /********************  Bit definition for ADC_AWD2TR register  *******************/
1066 #define ADC_AWD2TR_LT2_Pos             (0U)
1067 #define ADC_AWD2TR_LT2_Msk             (0xFFFUL << ADC_AWD2TR_LT2_Pos)         /*!< 0x00000FFF */
1068 #define ADC_AWD2TR_LT2                 ADC_AWD2TR_LT2_Msk                      /*!< ADC analog watchdog 2 threshold low */
1069 #define ADC_AWD2TR_LT2_0               (0x001UL << ADC_AWD2TR_LT2_Pos)         /*!< 0x00000001 */
1070 #define ADC_AWD2TR_LT2_1               (0x002UL << ADC_AWD2TR_LT2_Pos)         /*!< 0x00000002 */
1071 #define ADC_AWD2TR_LT2_2               (0x004UL << ADC_AWD2TR_LT2_Pos)         /*!< 0x00000004 */
1072 #define ADC_AWD2TR_LT2_3               (0x008UL << ADC_AWD2TR_LT2_Pos)         /*!< 0x00000008 */
1073 #define ADC_AWD2TR_LT2_4               (0x010UL << ADC_AWD2TR_LT2_Pos)         /*!< 0x00000010 */
1074 #define ADC_AWD2TR_LT2_5               (0x020UL << ADC_AWD2TR_LT2_Pos)         /*!< 0x00000020 */
1075 #define ADC_AWD2TR_LT2_6               (0x040UL << ADC_AWD2TR_LT2_Pos)         /*!< 0x00000040 */
1076 #define ADC_AWD2TR_LT2_7               (0x080UL << ADC_AWD2TR_LT2_Pos)         /*!< 0x00000080 */
1077 #define ADC_AWD2TR_LT2_8               (0x100UL << ADC_AWD2TR_LT2_Pos)         /*!< 0x00000100 */
1078 #define ADC_AWD2TR_LT2_9               (0x200UL << ADC_AWD2TR_LT2_Pos)         /*!< 0x00000200 */
1079 #define ADC_AWD2TR_LT2_10              (0x400UL << ADC_AWD2TR_LT2_Pos)         /*!< 0x00000400 */
1080 #define ADC_AWD2TR_LT2_11              (0x800UL << ADC_AWD2TR_LT2_Pos)         /*!< 0x00000800 */
1081 
1082 #define ADC_AWD2TR_HT2_Pos             (16U)
1083 #define ADC_AWD2TR_HT2_Msk             (0xFFFUL << ADC_AWD2TR_HT2_Pos)         /*!< 0x0FFF0000 */
1084 #define ADC_AWD2TR_HT2                 ADC_AWD2TR_HT2_Msk                      /*!< ADC analog watchdog 2 threshold high */
1085 #define ADC_AWD2TR_HT2_0               (0x001UL << ADC_AWD2TR_HT2_Pos)         /*!< 0x00010000 */
1086 #define ADC_AWD2TR_HT2_1               (0x002UL << ADC_AWD2TR_HT2_Pos)         /*!< 0x00020000 */
1087 #define ADC_AWD2TR_HT2_2               (0x004UL << ADC_AWD2TR_HT2_Pos)         /*!< 0x00040000 */
1088 #define ADC_AWD2TR_HT2_3               (0x008UL << ADC_AWD2TR_HT2_Pos)         /*!< 0x00080000 */
1089 #define ADC_AWD2TR_HT2_4               (0x010UL << ADC_AWD2TR_HT2_Pos)         /*!< 0x00100000 */
1090 #define ADC_AWD2TR_HT2_5               (0x020UL << ADC_AWD2TR_HT2_Pos)         /*!< 0x00200000 */
1091 #define ADC_AWD2TR_HT2_6               (0x040UL << ADC_AWD2TR_HT2_Pos)         /*!< 0x00400000 */
1092 #define ADC_AWD2TR_HT2_7               (0x080UL << ADC_AWD2TR_HT2_Pos)         /*!< 0x00800000 */
1093 #define ADC_AWD2TR_HT2_8               (0x100UL << ADC_AWD2TR_HT2_Pos)         /*!< 0x01000000 */
1094 #define ADC_AWD2TR_HT2_9               (0x200UL << ADC_AWD2TR_HT2_Pos)         /*!< 0x02000000 */
1095 #define ADC_AWD2TR_HT2_10              (0x400UL << ADC_AWD2TR_HT2_Pos)         /*!< 0x04000000 */
1096 #define ADC_AWD2TR_HT2_11              (0x800UL << ADC_AWD2TR_HT2_Pos)         /*!< 0x08000000 */
1097 
1098 /* Legacy definitions */
1099 #define ADC_TR2_LT2             ADC_AWD2TR_LT2
1100 #define ADC_TR2_LT2_0           ADC_AWD2TR_LT2_0
1101 #define ADC_TR2_LT2_1           ADC_AWD2TR_LT2_1
1102 #define ADC_TR2_LT2_2           ADC_AWD2TR_LT2_2
1103 #define ADC_TR2_LT2_3           ADC_AWD2TR_LT2_3
1104 #define ADC_TR2_LT2_4           ADC_AWD2TR_LT2_4
1105 #define ADC_TR2_LT2_5           ADC_AWD2TR_LT2_5
1106 #define ADC_TR2_LT2_6           ADC_AWD2TR_LT2_6
1107 #define ADC_TR2_LT2_7           ADC_AWD2TR_LT2_7
1108 #define ADC_TR2_LT2_8           ADC_AWD2TR_LT2_8
1109 #define ADC_TR2_LT2_9           ADC_AWD2TR_LT2_9
1110 #define ADC_TR2_LT2_10          ADC_AWD2TR_LT2_10
1111 #define ADC_TR2_LT2_11          ADC_AWD2TR_LT2_11
1112 
1113 #define ADC_TR2_HT2             ADC_AWD2TR_HT2
1114 #define ADC_TR2_HT2_0           ADC_AWD2TR_HT2_0
1115 #define ADC_TR2_HT2_1           ADC_AWD2TR_HT2_1
1116 #define ADC_TR2_HT2_2           ADC_AWD2TR_HT2_2
1117 #define ADC_TR2_HT2_3           ADC_AWD2TR_HT2_3
1118 #define ADC_TR2_HT2_4           ADC_AWD2TR_HT2_4
1119 #define ADC_TR2_HT2_5           ADC_AWD2TR_HT2_5
1120 #define ADC_TR2_HT2_6           ADC_AWD2TR_HT2_6
1121 #define ADC_TR2_HT2_7           ADC_AWD2TR_HT2_7
1122 #define ADC_TR2_HT2_8           ADC_AWD2TR_HT2_8
1123 #define ADC_TR2_HT2_9           ADC_AWD2TR_HT2_9
1124 #define ADC_TR2_HT2_10          ADC_AWD2TR_HT2_10
1125 #define ADC_TR2_HT2_11          ADC_AWD2TR_HT2_11
1126 
1127 /********************  Bit definition for ADC_CHSELR register  ****************/
1128 #define ADC_CHSELR_CHSEL_Pos           (0U)
1129 #define ADC_CHSELR_CHSEL_Msk           (0x7FFFFFUL << ADC_CHSELR_CHSEL_Pos)    /*!< 0x0007FFFFF */
1130 #define ADC_CHSELR_CHSEL               ADC_CHSELR_CHSEL_Msk                    /*!< ADC group regular sequencer channels, available when ADC_CFGR1_CHSELRMOD is reset */
1131 #define ADC_CHSELR_CHSEL22_Pos         (22U)
1132 #define ADC_CHSELR_CHSEL22_Msk         (0x1UL << ADC_CHSELR_CHSEL22_Pos)       /*!< 0x00400000 */
1133 #define ADC_CHSELR_CHSEL22             ADC_CHSELR_CHSEL22_Msk                  /*!< ADC group regular sequencer channel 22, available when ADC_CFGR1_CHSELRMOD is reset */
1134 #define ADC_CHSELR_CHSEL21_Pos         (21U)
1135 #define ADC_CHSELR_CHSEL21_Msk         (0x1UL << ADC_CHSELR_CHSEL21_Pos)       /*!< 0x00200000 */
1136 #define ADC_CHSELR_CHSEL21             ADC_CHSELR_CHSEL21_Msk                  /*!< ADC group regular sequencer channel 21, available when ADC_CFGR1_CHSELRMOD is reset */
1137 #define ADC_CHSELR_CHSEL20_Pos         (20U)
1138 #define ADC_CHSELR_CHSEL20_Msk         (0x1UL << ADC_CHSELR_CHSEL20_Pos)       /*!< 0x00100000 */
1139 #define ADC_CHSELR_CHSEL20             ADC_CHSELR_CHSEL20_Msk                  /*!< ADC group regular sequencer channel 20, available when ADC_CFGR1_CHSELRMOD is reset */
1140 #define ADC_CHSELR_CHSEL19_Pos         (19U)
1141 #define ADC_CHSELR_CHSEL19_Msk         (0x1UL << ADC_CHSELR_CHSEL19_Pos)       /*!< 0x00080000 */
1142 #define ADC_CHSELR_CHSEL19             ADC_CHSELR_CHSEL19_Msk                  /*!< ADC group regular sequencer channel 19, available when ADC_CFGR1_CHSELRMOD is reset */
1143 #define ADC_CHSELR_CHSEL18_Pos         (18U)
1144 #define ADC_CHSELR_CHSEL18_Msk         (0x1UL << ADC_CHSELR_CHSEL18_Pos)       /*!< 0x00040000 */
1145 #define ADC_CHSELR_CHSEL18             ADC_CHSELR_CHSEL18_Msk                  /*!< ADC group regular sequencer channel 18, available when ADC_CFGR1_CHSELRMOD is reset */
1146 #define ADC_CHSELR_CHSEL17_Pos         (17U)
1147 #define ADC_CHSELR_CHSEL17_Msk         (0x1UL << ADC_CHSELR_CHSEL17_Pos)       /*!< 0x00020000 */
1148 #define ADC_CHSELR_CHSEL17             ADC_CHSELR_CHSEL17_Msk                  /*!< ADC group regular sequencer channel 17, available when ADC_CFGR1_CHSELRMOD is reset */
1149 #define ADC_CHSELR_CHSEL16_Pos         (16U)
1150 #define ADC_CHSELR_CHSEL16_Msk         (0x1UL << ADC_CHSELR_CHSEL16_Pos)       /*!< 0x00010000 */
1151 #define ADC_CHSELR_CHSEL16             ADC_CHSELR_CHSEL16_Msk                  /*!< ADC group regular sequencer channel 16, available when ADC_CFGR1_CHSELRMOD is reset */
1152 #define ADC_CHSELR_CHSEL15_Pos         (15U)
1153 #define ADC_CHSELR_CHSEL15_Msk         (0x1UL << ADC_CHSELR_CHSEL15_Pos)       /*!< 0x00008000 */
1154 #define ADC_CHSELR_CHSEL15             ADC_CHSELR_CHSEL15_Msk                  /*!< ADC group regular sequencer channel 15, available when ADC_CFGR1_CHSELRMOD is reset */
1155 #define ADC_CHSELR_CHSEL14_Pos         (14U)
1156 #define ADC_CHSELR_CHSEL14_Msk         (0x1UL << ADC_CHSELR_CHSEL14_Pos)       /*!< 0x00004000 */
1157 #define ADC_CHSELR_CHSEL14             ADC_CHSELR_CHSEL14_Msk                  /*!< ADC group regular sequencer channel 14, available when ADC_CFGR1_CHSELRMOD is reset */
1158 #define ADC_CHSELR_CHSEL13_Pos         (13U)
1159 #define ADC_CHSELR_CHSEL13_Msk         (0x1UL << ADC_CHSELR_CHSEL13_Pos)       /*!< 0x00002000 */
1160 #define ADC_CHSELR_CHSEL13             ADC_CHSELR_CHSEL13_Msk                  /*!< ADC group regular sequencer channel 13, available when ADC_CFGR1_CHSELRMOD is reset */
1161 #define ADC_CHSELR_CHSEL12_Pos         (12U)
1162 #define ADC_CHSELR_CHSEL12_Msk         (0x1UL << ADC_CHSELR_CHSEL12_Pos)       /*!< 0x00001000 */
1163 #define ADC_CHSELR_CHSEL12             ADC_CHSELR_CHSEL12_Msk                  /*!< ADC group regular sequencer channel 12, available when ADC_CFGR1_CHSELRMOD is reset */
1164 #define ADC_CHSELR_CHSEL11_Pos         (11U)
1165 #define ADC_CHSELR_CHSEL11_Msk         (0x1UL << ADC_CHSELR_CHSEL11_Pos)       /*!< 0x00000800 */
1166 #define ADC_CHSELR_CHSEL11             ADC_CHSELR_CHSEL11_Msk                  /*!< ADC group regular sequencer channel 11, available when ADC_CFGR1_CHSELRMOD is reset */
1167 #define ADC_CHSELR_CHSEL10_Pos         (10U)
1168 #define ADC_CHSELR_CHSEL10_Msk         (0x1UL << ADC_CHSELR_CHSEL10_Pos)       /*!< 0x00000400 */
1169 #define ADC_CHSELR_CHSEL10             ADC_CHSELR_CHSEL10_Msk                  /*!< ADC group regular sequencer channel 10, available when ADC_CFGR1_CHSELRMOD is reset */
1170 #define ADC_CHSELR_CHSEL9_Pos          (9U)
1171 #define ADC_CHSELR_CHSEL9_Msk          (0x1UL << ADC_CHSELR_CHSEL9_Pos)        /*!< 0x00000200 */
1172 #define ADC_CHSELR_CHSEL9              ADC_CHSELR_CHSEL9_Msk                   /*!< ADC group regular sequencer channel 9, available when ADC_CFGR1_CHSELRMOD is reset */
1173 #define ADC_CHSELR_CHSEL8_Pos          (8U)
1174 #define ADC_CHSELR_CHSEL8_Msk          (0x1UL << ADC_CHSELR_CHSEL8_Pos)        /*!< 0x00000100 */
1175 #define ADC_CHSELR_CHSEL8              ADC_CHSELR_CHSEL8_Msk                   /*!< ADC group regular sequencer channel 8, available when ADC_CFGR1_CHSELRMOD is reset */
1176 #define ADC_CHSELR_CHSEL7_Pos          (7U)
1177 #define ADC_CHSELR_CHSEL7_Msk          (0x1UL << ADC_CHSELR_CHSEL7_Pos)        /*!< 0x00000080 */
1178 #define ADC_CHSELR_CHSEL7              ADC_CHSELR_CHSEL7_Msk                   /*!< ADC group regular sequencer channel 7, available when ADC_CFGR1_CHSELRMOD is reset */
1179 #define ADC_CHSELR_CHSEL6_Pos          (6U)
1180 #define ADC_CHSELR_CHSEL6_Msk          (0x1UL << ADC_CHSELR_CHSEL6_Pos)        /*!< 0x00000040 */
1181 #define ADC_CHSELR_CHSEL6              ADC_CHSELR_CHSEL6_Msk                   /*!< ADC group regular sequencer channel 6, available when ADC_CFGR1_CHSELRMOD is reset */
1182 #define ADC_CHSELR_CHSEL5_Pos          (5U)
1183 #define ADC_CHSELR_CHSEL5_Msk          (0x1UL << ADC_CHSELR_CHSEL5_Pos)        /*!< 0x00000020 */
1184 #define ADC_CHSELR_CHSEL5              ADC_CHSELR_CHSEL5_Msk                   /*!< ADC group regular sequencer channel 5, available when ADC_CFGR1_CHSELRMOD is reset */
1185 #define ADC_CHSELR_CHSEL4_Pos          (4U)
1186 #define ADC_CHSELR_CHSEL4_Msk          (0x1UL << ADC_CHSELR_CHSEL4_Pos)        /*!< 0x00000010 */
1187 #define ADC_CHSELR_CHSEL4              ADC_CHSELR_CHSEL4_Msk                   /*!< ADC group regular sequencer channel 4, available when ADC_CFGR1_CHSELRMOD is reset */
1188 #define ADC_CHSELR_CHSEL3_Pos          (3U)
1189 #define ADC_CHSELR_CHSEL3_Msk          (0x1UL << ADC_CHSELR_CHSEL3_Pos)        /*!< 0x00000008 */
1190 #define ADC_CHSELR_CHSEL3              ADC_CHSELR_CHSEL3_Msk                   /*!< ADC group regular sequencer channel 3, available when ADC_CFGR1_CHSELRMOD is reset */
1191 #define ADC_CHSELR_CHSEL2_Pos          (2U)
1192 #define ADC_CHSELR_CHSEL2_Msk          (0x1UL << ADC_CHSELR_CHSEL2_Pos)        /*!< 0x00000004 */
1193 #define ADC_CHSELR_CHSEL2              ADC_CHSELR_CHSEL2_Msk                   /*!< ADC group regular sequencer channel 2, available when ADC_CFGR1_CHSELRMOD is reset */
1194 #define ADC_CHSELR_CHSEL1_Pos          (1U)
1195 #define ADC_CHSELR_CHSEL1_Msk          (0x1UL << ADC_CHSELR_CHSEL1_Pos)        /*!< 0x00000002 */
1196 #define ADC_CHSELR_CHSEL1              ADC_CHSELR_CHSEL1_Msk                   /*!< ADC group regular sequencer channel 1, available when ADC_CFGR1_CHSELRMOD is reset */
1197 #define ADC_CHSELR_CHSEL0_Pos          (0U)
1198 #define ADC_CHSELR_CHSEL0_Msk          (0x1UL << ADC_CHSELR_CHSEL0_Pos)        /*!< 0x00000001 */
1199 #define ADC_CHSELR_CHSEL0              ADC_CHSELR_CHSEL0_Msk                   /*!< ADC group regular sequencer channel 0, available when ADC_CFGR1_CHSELRMOD is reset */
1200 
1201 #define ADC_CHSELR_SQ_ALL_Pos          (0U)
1202 #define ADC_CHSELR_SQ_ALL_Msk          (0xFFFFFFFFUL << ADC_CHSELR_SQ_ALL_Pos) /*!< 0xFFFFFFFF */
1203 #define ADC_CHSELR_SQ_ALL              ADC_CHSELR_SQ_ALL_Msk                   /*!< ADC group regular sequencer all ranks, available when ADC_CFGR1_CHSELRMOD is set */
1204 
1205 #define ADC_CHSELR_SQ8_Pos             (28U)
1206 #define ADC_CHSELR_SQ8_Msk             (0xFUL << ADC_CHSELR_SQ8_Pos)           /*!< 0xF0000000 */
1207 #define ADC_CHSELR_SQ8                 ADC_CHSELR_SQ8_Msk                      /*!< ADC group regular sequencer rank 8, available when ADC_CFGR1_CHSELRMOD is set */
1208 #define ADC_CHSELR_SQ8_0               (0x1UL << ADC_CHSELR_SQ8_Pos)           /*!< 0x10000000 */
1209 #define ADC_CHSELR_SQ8_1               (0x2UL << ADC_CHSELR_SQ8_Pos)           /*!< 0x20000000 */
1210 #define ADC_CHSELR_SQ8_2               (0x4UL << ADC_CHSELR_SQ8_Pos)           /*!< 0x40000000 */
1211 #define ADC_CHSELR_SQ8_3               (0x8UL << ADC_CHSELR_SQ8_Pos)           /*!< 0x80000000 */
1212 
1213 #define ADC_CHSELR_SQ7_Pos             (24U)
1214 #define ADC_CHSELR_SQ7_Msk             (0xFUL << ADC_CHSELR_SQ7_Pos)           /*!< 0x0F000000 */
1215 #define ADC_CHSELR_SQ7                 ADC_CHSELR_SQ7_Msk                      /*!< ADC group regular sequencer rank 7, available when ADC_CFGR1_CHSELRMOD is set */
1216 #define ADC_CHSELR_SQ7_0               (0x1UL << ADC_CHSELR_SQ7_Pos)           /*!< 0x01000000 */
1217 #define ADC_CHSELR_SQ7_1               (0x2UL << ADC_CHSELR_SQ7_Pos)           /*!< 0x02000000 */
1218 #define ADC_CHSELR_SQ7_2               (0x4UL << ADC_CHSELR_SQ7_Pos)           /*!< 0x04000000 */
1219 #define ADC_CHSELR_SQ7_3               (0x8UL << ADC_CHSELR_SQ7_Pos)           /*!< 0x08000000 */
1220 
1221 #define ADC_CHSELR_SQ6_Pos             (20U)
1222 #define ADC_CHSELR_SQ6_Msk             (0xFUL << ADC_CHSELR_SQ6_Pos)           /*!< 0x00F00000 */
1223 #define ADC_CHSELR_SQ6                 ADC_CHSELR_SQ6_Msk                      /*!< ADC group regular sequencer rank 6, available when ADC_CFGR1_CHSELRMOD is set */
1224 #define ADC_CHSELR_SQ6_0               (0x1UL << ADC_CHSELR_SQ6_Pos)           /*!< 0x00100000 */
1225 #define ADC_CHSELR_SQ6_1               (0x2UL << ADC_CHSELR_SQ6_Pos)           /*!< 0x00200000 */
1226 #define ADC_CHSELR_SQ6_2               (0x4UL << ADC_CHSELR_SQ6_Pos)           /*!< 0x00400000 */
1227 #define ADC_CHSELR_SQ6_3               (0x8UL << ADC_CHSELR_SQ6_Pos)           /*!< 0x00800000 */
1228 
1229 #define ADC_CHSELR_SQ5_Pos             (16U)
1230 #define ADC_CHSELR_SQ5_Msk             (0xFUL << ADC_CHSELR_SQ5_Pos)           /*!< 0x000F0000 */
1231 #define ADC_CHSELR_SQ5                 ADC_CHSELR_SQ5_Msk                      /*!< ADC group regular sequencer rank 5, available when ADC_CFGR1_CHSELRMOD is set */
1232 #define ADC_CHSELR_SQ5_0               (0x1UL << ADC_CHSELR_SQ5_Pos)           /*!< 0x00010000 */
1233 #define ADC_CHSELR_SQ5_1               (0x2UL << ADC_CHSELR_SQ5_Pos)           /*!< 0x00020000 */
1234 #define ADC_CHSELR_SQ5_2               (0x4UL << ADC_CHSELR_SQ5_Pos)           /*!< 0x00040000 */
1235 #define ADC_CHSELR_SQ5_3               (0x8UL << ADC_CHSELR_SQ5_Pos)           /*!< 0x00080000 */
1236 
1237 #define ADC_CHSELR_SQ4_Pos             (12U)
1238 #define ADC_CHSELR_SQ4_Msk             (0xFUL << ADC_CHSELR_SQ4_Pos)           /*!< 0x0000F000 */
1239 #define ADC_CHSELR_SQ4                 ADC_CHSELR_SQ4_Msk                      /*!< ADC group regular sequencer rank 4, available when ADC_CFGR1_CHSELRMOD is set */
1240 #define ADC_CHSELR_SQ4_0               (0x1UL << ADC_CHSELR_SQ4_Pos)           /*!< 0x00001000 */
1241 #define ADC_CHSELR_SQ4_1               (0x2UL << ADC_CHSELR_SQ4_Pos)           /*!< 0x00002000 */
1242 #define ADC_CHSELR_SQ4_2               (0x4UL << ADC_CHSELR_SQ4_Pos)           /*!< 0x00004000 */
1243 #define ADC_CHSELR_SQ4_3               (0x8UL << ADC_CHSELR_SQ4_Pos)           /*!< 0x00008000 */
1244 
1245 #define ADC_CHSELR_SQ3_Pos             (8U)
1246 #define ADC_CHSELR_SQ3_Msk             (0xFUL << ADC_CHSELR_SQ3_Pos)           /*!< 0x00000F00 */
1247 #define ADC_CHSELR_SQ3                 ADC_CHSELR_SQ3_Msk                      /*!< ADC group regular sequencer rank 3, available when ADC_CFGR1_CHSELRMOD is set */
1248 #define ADC_CHSELR_SQ3_0               (0x1UL << ADC_CHSELR_SQ3_Pos)           /*!< 0x00000100 */
1249 #define ADC_CHSELR_SQ3_1               (0x2UL << ADC_CHSELR_SQ3_Pos)           /*!< 0x00000200 */
1250 #define ADC_CHSELR_SQ3_2               (0x4UL << ADC_CHSELR_SQ3_Pos)           /*!< 0x00000400 */
1251 #define ADC_CHSELR_SQ3_3               (0x8UL << ADC_CHSELR_SQ3_Pos)           /*!< 0x00000800 */
1252 
1253 #define ADC_CHSELR_SQ2_Pos             (4U)
1254 #define ADC_CHSELR_SQ2_Msk             (0xFUL << ADC_CHSELR_SQ2_Pos)           /*!< 0x000000F0 */
1255 #define ADC_CHSELR_SQ2                 ADC_CHSELR_SQ2_Msk                      /*!< ADC group regular sequencer rank 2, available when ADC_CFGR1_CHSELRMOD is set */
1256 #define ADC_CHSELR_SQ2_0               (0x1UL << ADC_CHSELR_SQ2_Pos)           /*!< 0x00000010 */
1257 #define ADC_CHSELR_SQ2_1               (0x2UL << ADC_CHSELR_SQ2_Pos)           /*!< 0x00000020 */
1258 #define ADC_CHSELR_SQ2_2               (0x4UL << ADC_CHSELR_SQ2_Pos)           /*!< 0x00000040 */
1259 #define ADC_CHSELR_SQ2_3               (0x8UL << ADC_CHSELR_SQ2_Pos)           /*!< 0x00000080 */
1260 
1261 #define ADC_CHSELR_SQ1_Pos             (0U)
1262 #define ADC_CHSELR_SQ1_Msk             (0xFUL << ADC_CHSELR_SQ1_Pos)           /*!< 0x0000000F */
1263 #define ADC_CHSELR_SQ1                 ADC_CHSELR_SQ1_Msk                      /*!< ADC group regular sequencer rank 1, available when ADC_CFGR1_CHSELRMOD is set */
1264 #define ADC_CHSELR_SQ1_0               (0x1UL << ADC_CHSELR_SQ1_Pos)           /*!< 0x00000001 */
1265 #define ADC_CHSELR_SQ1_1               (0x2UL << ADC_CHSELR_SQ1_Pos)           /*!< 0x00000002 */
1266 #define ADC_CHSELR_SQ1_2               (0x4UL << ADC_CHSELR_SQ1_Pos)           /*!< 0x00000004 */
1267 #define ADC_CHSELR_SQ1_3               (0x8UL << ADC_CHSELR_SQ1_Pos)           /*!< 0x00000008 */
1268 
1269 /********************  Bit definition for ADC_AWD3TR register  *******************/
1270 #define ADC_AWD3TR_LT3_Pos             (0U)
1271 #define ADC_AWD3TR_LT3_Msk             (0xFFFUL << ADC_AWD3TR_LT3_Pos)         /*!< 0x00000FFF */
1272 #define ADC_AWD3TR_LT3                 ADC_AWD3TR_LT3_Msk                      /*!< ADC analog watchdog 3 threshold low */
1273 #define ADC_AWD3TR_LT3_0               (0x001UL << ADC_AWD3TR_LT3_Pos)         /*!< 0x00000001 */
1274 #define ADC_AWD3TR_LT3_1               (0x002UL << ADC_AWD3TR_LT3_Pos)         /*!< 0x00000002 */
1275 #define ADC_AWD3TR_LT3_2               (0x004UL << ADC_AWD3TR_LT3_Pos)         /*!< 0x00000004 */
1276 #define ADC_AWD3TR_LT3_3               (0x008UL << ADC_AWD3TR_LT3_Pos)         /*!< 0x00000008 */
1277 #define ADC_AWD3TR_LT3_4               (0x010UL << ADC_AWD3TR_LT3_Pos)         /*!< 0x00000010 */
1278 #define ADC_AWD3TR_LT3_5               (0x020UL << ADC_AWD3TR_LT3_Pos)         /*!< 0x00000020 */
1279 #define ADC_AWD3TR_LT3_6               (0x040UL << ADC_AWD3TR_LT3_Pos)         /*!< 0x00000040 */
1280 #define ADC_AWD3TR_LT3_7               (0x080UL << ADC_AWD3TR_LT3_Pos)         /*!< 0x00000080 */
1281 #define ADC_AWD3TR_LT3_8               (0x100UL << ADC_AWD3TR_LT3_Pos)         /*!< 0x00000100 */
1282 #define ADC_AWD3TR_LT3_9               (0x200UL << ADC_AWD3TR_LT3_Pos)         /*!< 0x00000200 */
1283 #define ADC_AWD3TR_LT3_10              (0x400UL << ADC_AWD3TR_LT3_Pos)         /*!< 0x00000400 */
1284 #define ADC_AWD3TR_LT3_11              (0x800UL << ADC_AWD3TR_LT3_Pos)         /*!< 0x00000800 */
1285 
1286 #define ADC_AWD3TR_HT3_Pos             (16U)
1287 #define ADC_AWD3TR_HT3_Msk             (0xFFFUL << ADC_AWD3TR_HT3_Pos)         /*!< 0x0FFF0000 */
1288 #define ADC_AWD3TR_HT3                 ADC_AWD3TR_HT3_Msk                      /*!< ADC analog watchdog 3 threshold high */
1289 #define ADC_AWD3TR_HT3_0               (0x001UL << ADC_AWD3TR_HT3_Pos)         /*!< 0x00010000 */
1290 #define ADC_AWD3TR_HT3_1               (0x002UL << ADC_AWD3TR_HT3_Pos)         /*!< 0x00020000 */
1291 #define ADC_AWD3TR_HT3_2               (0x004UL << ADC_AWD3TR_HT3_Pos)         /*!< 0x00040000 */
1292 #define ADC_AWD3TR_HT3_3               (0x008UL << ADC_AWD3TR_HT3_Pos)         /*!< 0x00080000 */
1293 #define ADC_AWD3TR_HT3_4               (0x010UL << ADC_AWD3TR_HT3_Pos)         /*!< 0x00100000 */
1294 #define ADC_AWD3TR_HT3_5               (0x020UL << ADC_AWD3TR_HT3_Pos)         /*!< 0x00200000 */
1295 #define ADC_AWD3TR_HT3_6               (0x040UL << ADC_AWD3TR_HT3_Pos)         /*!< 0x00400000 */
1296 #define ADC_AWD3TR_HT3_7               (0x080UL << ADC_AWD3TR_HT3_Pos)         /*!< 0x00800000 */
1297 #define ADC_AWD3TR_HT3_8               (0x100UL << ADC_AWD3TR_HT3_Pos)         /*!< 0x01000000 */
1298 #define ADC_AWD3TR_HT3_9               (0x200UL << ADC_AWD3TR_HT3_Pos)         /*!< 0x02000000 */
1299 #define ADC_AWD3TR_HT3_10              (0x400UL << ADC_AWD3TR_HT3_Pos)         /*!< 0x04000000 */
1300 #define ADC_AWD3TR_HT3_11              (0x800UL << ADC_AWD3TR_HT3_Pos)         /*!< 0x08000000 */
1301 
1302 /* Legacy definitions */
1303 #define ADC_TR3_LT3             ADC_AWD3TR_LT3
1304 #define ADC_TR3_LT3_0           ADC_AWD3TR_LT3_0
1305 #define ADC_TR3_LT3_1           ADC_AWD3TR_LT3_1
1306 #define ADC_TR3_LT3_2           ADC_AWD3TR_LT3_2
1307 #define ADC_TR3_LT3_3           ADC_AWD3TR_LT3_3
1308 #define ADC_TR3_LT3_4           ADC_AWD3TR_LT3_4
1309 #define ADC_TR3_LT3_5           ADC_AWD3TR_LT3_5
1310 #define ADC_TR3_LT3_6           ADC_AWD3TR_LT3_6
1311 #define ADC_TR3_LT3_7           ADC_AWD3TR_LT3_7
1312 #define ADC_TR3_LT3_8           ADC_AWD3TR_LT3_8
1313 #define ADC_TR3_LT3_9           ADC_AWD3TR_LT3_9
1314 #define ADC_TR3_LT3_10          ADC_AWD3TR_LT3_10
1315 #define ADC_TR3_LT3_11          ADC_AWD3TR_LT3_11
1316 
1317 #define ADC_TR3_HT3             ADC_AWD3TR_HT3
1318 #define ADC_TR3_HT3_0           ADC_AWD3TR_HT3_0
1319 #define ADC_TR3_HT3_1           ADC_AWD3TR_HT3_1
1320 #define ADC_TR3_HT3_2           ADC_AWD3TR_HT3_2
1321 #define ADC_TR3_HT3_3           ADC_AWD3TR_HT3_3
1322 #define ADC_TR3_HT3_4           ADC_AWD3TR_HT3_4
1323 #define ADC_TR3_HT3_5           ADC_AWD3TR_HT3_5
1324 #define ADC_TR3_HT3_6           ADC_AWD3TR_HT3_6
1325 #define ADC_TR3_HT3_7           ADC_AWD3TR_HT3_7
1326 #define ADC_TR3_HT3_8           ADC_AWD3TR_HT3_8
1327 #define ADC_TR3_HT3_9           ADC_AWD3TR_HT3_9
1328 #define ADC_TR3_HT3_10          ADC_AWD3TR_HT3_10
1329 #define ADC_TR3_HT3_11          ADC_AWD3TR_HT3_11
1330 
1331 /********************  Bit definition for ADC_DR register  ********************/
1332 #define ADC_DR_DATA_Pos                (0U)
1333 #define ADC_DR_DATA_Msk                (0xFFFFUL << ADC_DR_DATA_Pos)           /*!< 0x0000FFFF */
1334 #define ADC_DR_DATA                    ADC_DR_DATA_Msk                         /*!< ADC group regular conversion data */
1335 #define ADC_DR_DATA_0                  (0x0001UL << ADC_DR_DATA_Pos)           /*!< 0x00000001 */
1336 #define ADC_DR_DATA_1                  (0x0002UL << ADC_DR_DATA_Pos)           /*!< 0x00000002 */
1337 #define ADC_DR_DATA_2                  (0x0004UL << ADC_DR_DATA_Pos)           /*!< 0x00000004 */
1338 #define ADC_DR_DATA_3                  (0x0008UL << ADC_DR_DATA_Pos)           /*!< 0x00000008 */
1339 #define ADC_DR_DATA_4                  (0x0010UL << ADC_DR_DATA_Pos)           /*!< 0x00000010 */
1340 #define ADC_DR_DATA_5                  (0x0020UL << ADC_DR_DATA_Pos)           /*!< 0x00000020 */
1341 #define ADC_DR_DATA_6                  (0x0040UL << ADC_DR_DATA_Pos)           /*!< 0x00000040 */
1342 #define ADC_DR_DATA_7                  (0x0080UL << ADC_DR_DATA_Pos)           /*!< 0x00000080 */
1343 #define ADC_DR_DATA_8                  (0x0100UL << ADC_DR_DATA_Pos)           /*!< 0x00000100 */
1344 #define ADC_DR_DATA_9                  (0x0200UL << ADC_DR_DATA_Pos)           /*!< 0x00000200 */
1345 #define ADC_DR_DATA_10                 (0x0400UL << ADC_DR_DATA_Pos)           /*!< 0x00000400 */
1346 #define ADC_DR_DATA_11                 (0x0800UL << ADC_DR_DATA_Pos)           /*!< 0x00000800 */
1347 #define ADC_DR_DATA_12                 (0x1000UL << ADC_DR_DATA_Pos)           /*!< 0x00001000 */
1348 #define ADC_DR_DATA_13                 (0x2000UL << ADC_DR_DATA_Pos)           /*!< 0x00002000 */
1349 #define ADC_DR_DATA_14                 (0x4000UL << ADC_DR_DATA_Pos)           /*!< 0x00004000 */
1350 #define ADC_DR_DATA_15                 (0x8000UL << ADC_DR_DATA_Pos)           /*!< 0x00008000 */
1351 
1352 /********************  Bit definition for ADC_AWD2CR register  ****************/
1353 #define ADC_AWD2CR_AWD2CH_Pos          (0U)
1354 #define ADC_AWD2CR_AWD2CH_Msk          (0x7FFFFUL << ADC_AWD2CR_AWD2CH_Pos)    /*!< 0x0007FFFF */
1355 #define ADC_AWD2CR_AWD2CH              ADC_AWD2CR_AWD2CH_Msk                   /*!< ADC analog watchdog 2 monitored channel selection */
1356 #define ADC_AWD2CR_AWD2CH_0            (0x00001UL << ADC_AWD2CR_AWD2CH_Pos)    /*!< 0x00000001 */
1357 #define ADC_AWD2CR_AWD2CH_1            (0x00002UL << ADC_AWD2CR_AWD2CH_Pos)    /*!< 0x00000002 */
1358 #define ADC_AWD2CR_AWD2CH_2            (0x00004UL << ADC_AWD2CR_AWD2CH_Pos)    /*!< 0x00000004 */
1359 #define ADC_AWD2CR_AWD2CH_3            (0x00008UL << ADC_AWD2CR_AWD2CH_Pos)    /*!< 0x00000008 */
1360 #define ADC_AWD2CR_AWD2CH_4            (0x00010UL << ADC_AWD2CR_AWD2CH_Pos)    /*!< 0x00000010 */
1361 #define ADC_AWD2CR_AWD2CH_5            (0x00020UL << ADC_AWD2CR_AWD2CH_Pos)    /*!< 0x00000020 */
1362 #define ADC_AWD2CR_AWD2CH_6            (0x00040UL << ADC_AWD2CR_AWD2CH_Pos)    /*!< 0x00000040 */
1363 #define ADC_AWD2CR_AWD2CH_7            (0x00080UL << ADC_AWD2CR_AWD2CH_Pos)    /*!< 0x00000080 */
1364 #define ADC_AWD2CR_AWD2CH_8            (0x00100UL << ADC_AWD2CR_AWD2CH_Pos)    /*!< 0x00000100 */
1365 #define ADC_AWD2CR_AWD2CH_9            (0x00200UL << ADC_AWD2CR_AWD2CH_Pos)    /*!< 0x00000200 */
1366 #define ADC_AWD2CR_AWD2CH_10           (0x00400UL << ADC_AWD2CR_AWD2CH_Pos)    /*!< 0x00000400 */
1367 #define ADC_AWD2CR_AWD2CH_11           (0x00800UL << ADC_AWD2CR_AWD2CH_Pos)    /*!< 0x00000800 */
1368 #define ADC_AWD2CR_AWD2CH_12           (0x01000UL << ADC_AWD2CR_AWD2CH_Pos)    /*!< 0x00001000 */
1369 #define ADC_AWD2CR_AWD2CH_13           (0x02000UL << ADC_AWD2CR_AWD2CH_Pos)    /*!< 0x00002000 */
1370 #define ADC_AWD2CR_AWD2CH_14           (0x04000UL << ADC_AWD2CR_AWD2CH_Pos)    /*!< 0x00004000 */
1371 #define ADC_AWD2CR_AWD2CH_15           (0x08000UL << ADC_AWD2CR_AWD2CH_Pos)    /*!< 0x00008000 */
1372 #define ADC_AWD2CR_AWD2CH_16           (0x10000UL << ADC_AWD2CR_AWD2CH_Pos)    /*!< 0x00010000 */
1373 #define ADC_AWD2CR_AWD2CH_17           (0x20000UL << ADC_AWD2CR_AWD2CH_Pos)    /*!< 0x00020000 */
1374 #define ADC_AWD2CR_AWD2CH_18           (0x40000UL << ADC_AWD2CR_AWD2CH_Pos)    /*!< 0x00040000 */
1375 #define ADC_AWD2CR_AWD2CH_19           (0x80000UL << ADC_AWD2CR_AWD2CH_Pos)    /*!< 0x00080000 */
1376 #define ADC_AWD2CR_AWD2CH_20           (0x100000UL << ADC_AWD2CR_AWD2CH_Pos)   /*!< 0x00100000 */
1377 #define ADC_AWD2CR_AWD2CH_21           (0x20000UL << ADC_AWD2CR_AWD2CH_Pos)    /*!< 0x00200000 */
1378 #define ADC_AWD2CR_AWD2CH_22           (0x40000UL << ADC_AWD2CR_AWD2CH_Pos)    /*!< 0x00400000 */
1379 
1380 /********************  Bit definition for ADC_AWD3CR register  ****************/
1381 #define ADC_AWD3CR_AWD3CH_Pos          (0U)
1382 #define ADC_AWD3CR_AWD3CH_Msk          (0x7FFFFUL << ADC_AWD3CR_AWD3CH_Pos)    /*!< 0x0007FFFF */
1383 #define ADC_AWD3CR_AWD3CH              ADC_AWD3CR_AWD3CH_Msk                   /*!< ADC analog watchdog 3 monitored channel selection */
1384 #define ADC_AWD3CR_AWD3CH_0            (0x00001UL << ADC_AWD3CR_AWD3CH_Pos)    /*!< 0x00000001 */
1385 #define ADC_AWD3CR_AWD3CH_1            (0x00002UL << ADC_AWD3CR_AWD3CH_Pos)    /*!< 0x00000002 */
1386 #define ADC_AWD3CR_AWD3CH_2            (0x00004UL << ADC_AWD3CR_AWD3CH_Pos)    /*!< 0x00000004 */
1387 #define ADC_AWD3CR_AWD3CH_3            (0x00008UL << ADC_AWD3CR_AWD3CH_Pos)    /*!< 0x00000008 */
1388 #define ADC_AWD3CR_AWD3CH_4            (0x00010UL << ADC_AWD3CR_AWD3CH_Pos)    /*!< 0x00000010 */
1389 #define ADC_AWD3CR_AWD3CH_5            (0x00020UL << ADC_AWD3CR_AWD3CH_Pos)    /*!< 0x00000020 */
1390 #define ADC_AWD3CR_AWD3CH_6            (0x00040UL << ADC_AWD3CR_AWD3CH_Pos)    /*!< 0x00000040 */
1391 #define ADC_AWD3CR_AWD3CH_7            (0x00080UL << ADC_AWD3CR_AWD3CH_Pos)    /*!< 0x00000080 */
1392 #define ADC_AWD3CR_AWD3CH_8            (0x00100UL << ADC_AWD3CR_AWD3CH_Pos)    /*!< 0x00000100 */
1393 #define ADC_AWD3CR_AWD3CH_9            (0x00200UL << ADC_AWD3CR_AWD3CH_Pos)    /*!< 0x00000200 */
1394 #define ADC_AWD3CR_AWD3CH_10           (0x00400UL << ADC_AWD3CR_AWD3CH_Pos)    /*!< 0x00000400 */
1395 #define ADC_AWD3CR_AWD3CH_11           (0x00800UL << ADC_AWD3CR_AWD3CH_Pos)    /*!< 0x00000800 */
1396 #define ADC_AWD3CR_AWD3CH_12           (0x01000UL << ADC_AWD3CR_AWD3CH_Pos)    /*!< 0x00001000 */
1397 #define ADC_AWD3CR_AWD3CH_13           (0x02000UL << ADC_AWD3CR_AWD3CH_Pos)    /*!< 0x00002000 */
1398 #define ADC_AWD3CR_AWD3CH_14           (0x04000UL << ADC_AWD3CR_AWD3CH_Pos)    /*!< 0x00004000 */
1399 #define ADC_AWD3CR_AWD3CH_15           (0x08000UL << ADC_AWD3CR_AWD3CH_Pos)    /*!< 0x00008000 */
1400 #define ADC_AWD3CR_AWD3CH_16           (0x10000UL << ADC_AWD3CR_AWD3CH_Pos)    /*!< 0x00010000 */
1401 #define ADC_AWD3CR_AWD3CH_17           (0x20000UL << ADC_AWD3CR_AWD3CH_Pos)    /*!< 0x00020000 */
1402 #define ADC_AWD3CR_AWD3CH_18           (0x40000UL << ADC_AWD3CR_AWD3CH_Pos)    /*!< 0x00040000 */
1403 #define ADC_AWD3CR_AWD3CH_19           (0x80000UL << ADC_AWD3CR_AWD3CH_Pos)    /*!< 0x00080000 */
1404 #define ADC_AWD3CR_AWD3CH_20           (0x100000UL << ADC_AWD3CR_AWD3CH_Pos)   /*!< 0x00100000 */
1405 #define ADC_AWD3CR_AWD3CH_21           (0x200000UL << ADC_AWD3CR_AWD3CH_Pos)   /*!< 0x00200000 */
1406 #define ADC_AWD3CR_AWD3CH_22           (0x400000UL << ADC_AWD3CR_AWD3CH_Pos)   /*!< 0x00400000 */
1407 
1408 /********************  Bit definition for ADC_CALFACT register  ***************/
1409 #define ADC_CALFACT_CALFACT_Pos        (0U)
1410 #define ADC_CALFACT_CALFACT_Msk        (0x7FUL << ADC_CALFACT_CALFACT_Pos)     /*!< 0x0000007F */
1411 #define ADC_CALFACT_CALFACT            ADC_CALFACT_CALFACT_Msk                 /*!< ADC calibration factor in single-ended mode */
1412 #define ADC_CALFACT_CALFACT_0          (0x01UL << ADC_CALFACT_CALFACT_Pos)     /*!< 0x00000001 */
1413 #define ADC_CALFACT_CALFACT_1          (0x02UL << ADC_CALFACT_CALFACT_Pos)     /*!< 0x00000002 */
1414 #define ADC_CALFACT_CALFACT_2          (0x04UL << ADC_CALFACT_CALFACT_Pos)     /*!< 0x00000004 */
1415 #define ADC_CALFACT_CALFACT_3          (0x08UL << ADC_CALFACT_CALFACT_Pos)     /*!< 0x00000008 */
1416 #define ADC_CALFACT_CALFACT_4          (0x10UL << ADC_CALFACT_CALFACT_Pos)     /*!< 0x00000010 */
1417 #define ADC_CALFACT_CALFACT_5          (0x20UL << ADC_CALFACT_CALFACT_Pos)     /*!< 0x00000020 */
1418 #define ADC_CALFACT_CALFACT_6          (0x40UL << ADC_CALFACT_CALFACT_Pos)     /*!< 0x00000040 */
1419 
1420 /*************************  ADC Common registers  *****************************/
1421 /********************  Bit definition for ADC_CCR register  *******************/
1422 #define ADC_CCR_PRESC_Pos              (18U)
1423 #define ADC_CCR_PRESC_Msk              (0xFUL << ADC_CCR_PRESC_Pos)            /*!< 0x003C0000 */
1424 #define ADC_CCR_PRESC                  ADC_CCR_PRESC_Msk                       /*!< ADC common clock prescaler, only for clock source asynchronous */
1425 #define ADC_CCR_PRESC_0                (0x1UL << ADC_CCR_PRESC_Pos)            /*!< 0x00040000 */
1426 #define ADC_CCR_PRESC_1                (0x2UL << ADC_CCR_PRESC_Pos)            /*!< 0x00080000 */
1427 #define ADC_CCR_PRESC_2                (0x4UL << ADC_CCR_PRESC_Pos)            /*!< 0x00100000 */
1428 #define ADC_CCR_PRESC_3                (0x8UL << ADC_CCR_PRESC_Pos)            /*!< 0x00200000 */
1429 
1430 #define ADC_CCR_VREFEN_Pos             (22U)
1431 #define ADC_CCR_VREFEN_Msk             (0x1UL << ADC_CCR_VREFEN_Pos)           /*!< 0x00400000 */
1432 #define ADC_CCR_VREFEN                 ADC_CCR_VREFEN_Msk                      /*!< ADC internal path to VrefInt enable */
1433 #define ADC_CCR_TSEN_Pos               (23U)
1434 #define ADC_CCR_TSEN_Msk               (0x1UL << ADC_CCR_TSEN_Pos)             /*!< 0x00800000 */
1435 #define ADC_CCR_TSEN                   ADC_CCR_TSEN_Msk                        /*!< ADC internal path to temperature sensor enable */
1436 
1437 /* Legacy */
1438 #define ADC_CCR_LFMEN_Pos              (25U)
1439 #define ADC_CCR_LFMEN_Msk              (0x1UL << ADC_CCR_LFMEN_Pos)            /*!< 0x02000000 */
1440 #define ADC_CCR_LFMEN                  ADC_CCR_LFMEN_Msk                       /*!< Legacy feature, useless on STM32C0 (ADC common clock low frequency mode is automatically managed by ADC peripheral on STM32C0) */
1441 
1442 
1443 /******************************************************************************/
1444 /*                                                                            */
1445 /*                          CRC calculation unit                              */
1446 /*                                                                            */
1447 /******************************************************************************/
1448 /*******************  Bit definition for CRC_DR register  *********************/
1449 #define CRC_DR_DR_Pos            (0U)
1450 #define CRC_DR_DR_Msk            (0xFFFFFFFFUL << CRC_DR_DR_Pos)                /*!< 0xFFFFFFFF */
1451 #define CRC_DR_DR                CRC_DR_DR_Msk                                  /*!< Data register bits */
1452 
1453 /*******************  Bit definition for CRC_IDR register  ********************/
1454 #define CRC_IDR_IDR_Pos          (0U)
1455 #define CRC_IDR_IDR_Msk          (0xFFFFFFFFUL << CRC_IDR_IDR_Pos)              /*!< 0xFFFFFFFF */
1456 #define CRC_IDR_IDR              CRC_IDR_IDR_Msk                                /*!< General-purpose 32-bits data register bits */
1457 
1458 /********************  Bit definition for CRC_CR register  ********************/
1459 #define CRC_CR_RESET_Pos         (0U)
1460 #define CRC_CR_RESET_Msk         (0x1UL << CRC_CR_RESET_Pos)                    /*!< 0x00000001 */
1461 #define CRC_CR_RESET             CRC_CR_RESET_Msk                               /*!< RESET the CRC computation unit bit */
1462 #define CRC_CR_POLYSIZE_Pos      (3U)
1463 #define CRC_CR_POLYSIZE_Msk      (0x3UL << CRC_CR_POLYSIZE_Pos)                 /*!< 0x00000018 */
1464 #define CRC_CR_POLYSIZE          CRC_CR_POLYSIZE_Msk                            /*!< Polynomial size bits */
1465 #define CRC_CR_POLYSIZE_0        (0x1UL << CRC_CR_POLYSIZE_Pos)                 /*!< 0x00000008 */
1466 #define CRC_CR_POLYSIZE_1        (0x2UL << CRC_CR_POLYSIZE_Pos)                 /*!< 0x00000010 */
1467 #define CRC_CR_REV_IN_Pos        (5U)
1468 #define CRC_CR_REV_IN_Msk        (0x3UL << CRC_CR_REV_IN_Pos)                   /*!< 0x00000060 */
1469 #define CRC_CR_REV_IN            CRC_CR_REV_IN_Msk                              /*!< REV_IN Reverse Input Data bits */
1470 #define CRC_CR_REV_IN_0          (0x1UL << CRC_CR_REV_IN_Pos)                   /*!< 0x00000020 */
1471 #define CRC_CR_REV_IN_1          (0x2UL << CRC_CR_REV_IN_Pos)                   /*!< 0x00000040 */
1472 #define CRC_CR_REV_OUT_Pos       (7U)
1473 #define CRC_CR_REV_OUT_Msk       (0x1UL << CRC_CR_REV_OUT_Pos)                  /*!< 0x00000080 */
1474 #define CRC_CR_REV_OUT           CRC_CR_REV_OUT_Msk                             /*!< REV_OUT Reverse Output Data bits */
1475 
1476 /*******************  Bit definition for CRC_INIT register  *******************/
1477 #define CRC_INIT_INIT_Pos        (0U)
1478 #define CRC_INIT_INIT_Msk        (0xFFFFFFFFUL << CRC_INIT_INIT_Pos)            /*!< 0xFFFFFFFF */
1479 #define CRC_INIT_INIT            CRC_INIT_INIT_Msk                              /*!< Initial CRC value bits */
1480 
1481 /*******************  Bit definition for CRC_POL register  ********************/
1482 #define CRC_POL_POL_Pos          (0U)
1483 #define CRC_POL_POL_Msk          (0xFFFFFFFFUL << CRC_POL_POL_Pos)              /*!< 0xFFFFFFFF */
1484 #define CRC_POL_POL              CRC_POL_POL_Msk                                /*!< Coefficients of the polynomial */
1485 
1486 /******************************************************************************/
1487 /*                                                                            */
1488 /*                          CRS Clock Recovery System                         */
1489 /******************************************************************************/
1490 
1491 /*******************  Bit definition for CRS_CR register  *********************/
1492 #define CRS_CR_SYNCOKIE_Pos       (0U)
1493 #define CRS_CR_SYNCOKIE_Msk       (0x1UL << CRS_CR_SYNCOKIE_Pos)               /*!< 0x00000001 */
1494 #define CRS_CR_SYNCOKIE           CRS_CR_SYNCOKIE_Msk                          /*!< SYNC event OK interrupt enable */
1495 #define CRS_CR_SYNCWARNIE_Pos     (1U)
1496 #define CRS_CR_SYNCWARNIE_Msk     (0x1UL << CRS_CR_SYNCWARNIE_Pos)             /*!< 0x00000002 */
1497 #define CRS_CR_SYNCWARNIE         CRS_CR_SYNCWARNIE_Msk                        /*!< SYNC warning interrupt enable */
1498 #define CRS_CR_ERRIE_Pos          (2U)
1499 #define CRS_CR_ERRIE_Msk          (0x1UL << CRS_CR_ERRIE_Pos)                  /*!< 0x00000004 */
1500 #define CRS_CR_ERRIE              CRS_CR_ERRIE_Msk                             /*!< SYNC error or trimming error interrupt enable */
1501 #define CRS_CR_ESYNCIE_Pos        (3U)
1502 #define CRS_CR_ESYNCIE_Msk        (0x1UL << CRS_CR_ESYNCIE_Pos)                /*!< 0x00000008 */
1503 #define CRS_CR_ESYNCIE            CRS_CR_ESYNCIE_Msk                           /*!< Expected SYNC interrupt enable */
1504 #define CRS_CR_CEN_Pos            (5U)
1505 #define CRS_CR_CEN_Msk            (0x1UL << CRS_CR_CEN_Pos)                    /*!< 0x00000020 */
1506 #define CRS_CR_CEN                CRS_CR_CEN_Msk                               /*!< Frequency error counter enable */
1507 #define CRS_CR_AUTOTRIMEN_Pos     (6U)
1508 #define CRS_CR_AUTOTRIMEN_Msk     (0x1UL << CRS_CR_AUTOTRIMEN_Pos)             /*!< 0x00000040 */
1509 #define CRS_CR_AUTOTRIMEN         CRS_CR_AUTOTRIMEN_Msk                        /*!< Automatic trimming enable */
1510 #define CRS_CR_SWSYNC_Pos         (7U)
1511 #define CRS_CR_SWSYNC_Msk         (0x1UL << CRS_CR_SWSYNC_Pos)                 /*!< 0x00000080 */
1512 #define CRS_CR_SWSYNC             CRS_CR_SWSYNC_Msk                            /*!< Generate software SYNC event */
1513 #define CRS_CR_TRIM_Pos           (8U)
1514 #define CRS_CR_TRIM_Msk           (0x7FUL << CRS_CR_TRIM_Pos)                  /*!< 0x00007F00 */
1515 #define CRS_CR_TRIM               CRS_CR_TRIM_Msk                              /*!< HSI48 oscillator smooth trimming */
1516 
1517 /*******************  Bit definition for CRS_CFGR register  *********************/
1518 #define CRS_CFGR_RELOAD_Pos       (0U)
1519 #define CRS_CFGR_RELOAD_Msk       (0xFFFFUL << CRS_CFGR_RELOAD_Pos)            /*!< 0x0000FFFF */
1520 #define CRS_CFGR_RELOAD           CRS_CFGR_RELOAD_Msk                          /*!< Counter reload value */
1521 #define CRS_CFGR_FELIM_Pos        (16U)
1522 #define CRS_CFGR_FELIM_Msk        (0xFFUL << CRS_CFGR_FELIM_Pos)               /*!< 0x00FF0000 */
1523 #define CRS_CFGR_FELIM            CRS_CFGR_FELIM_Msk                           /*!< Frequency error limit */
1524 
1525 #define CRS_CFGR_SYNCDIV_Pos      (24U)
1526 #define CRS_CFGR_SYNCDIV_Msk      (0x7UL << CRS_CFGR_SYNCDIV_Pos)              /*!< 0x07000000 */
1527 #define CRS_CFGR_SYNCDIV          CRS_CFGR_SYNCDIV_Msk                         /*!< SYNC divider */
1528 #define CRS_CFGR_SYNCDIV_0        (0x1UL << CRS_CFGR_SYNCDIV_Pos)               /*!< 0x01000000 */
1529 #define CRS_CFGR_SYNCDIV_1        (0x2UL << CRS_CFGR_SYNCDIV_Pos)               /*!< 0x02000000 */
1530 #define CRS_CFGR_SYNCDIV_2        (0x4UL << CRS_CFGR_SYNCDIV_Pos)               /*!< 0x04000000 */
1531 
1532 #define CRS_CFGR_SYNCSRC_Pos      (28U)
1533 #define CRS_CFGR_SYNCSRC_Msk      (0x3UL << CRS_CFGR_SYNCSRC_Pos)              /*!< 0x30000000 */
1534 #define CRS_CFGR_SYNCSRC          CRS_CFGR_SYNCSRC_Msk                         /*!< SYNC signal source selection */
1535 #define CRS_CFGR_SYNCSRC_0        (0x1UL << CRS_CFGR_SYNCSRC_Pos)               /*!< 0x10000000 */
1536 #define CRS_CFGR_SYNCSRC_1        (0x2UL << CRS_CFGR_SYNCSRC_Pos)               /*!< 0x20000000 */
1537 
1538 #define CRS_CFGR_SYNCPOL_Pos      (31U)
1539 #define CRS_CFGR_SYNCPOL_Msk      (0x1UL << CRS_CFGR_SYNCPOL_Pos)              /*!< 0x80000000 */
1540 #define CRS_CFGR_SYNCPOL          CRS_CFGR_SYNCPOL_Msk                         /*!< SYNC polarity selection */
1541 
1542 /*******************  Bit definition for CRS_ISR register  *********************/
1543 #define CRS_ISR_SYNCOKF_Pos       (0U)
1544 #define CRS_ISR_SYNCOKF_Msk       (0x1UL << CRS_ISR_SYNCOKF_Pos)               /*!< 0x00000001 */
1545 #define CRS_ISR_SYNCOKF           CRS_ISR_SYNCOKF_Msk                          /*!< SYNC event OK flag */
1546 #define CRS_ISR_SYNCWARNF_Pos     (1U)
1547 #define CRS_ISR_SYNCWARNF_Msk     (0x1UL << CRS_ISR_SYNCWARNF_Pos)             /*!< 0x00000002 */
1548 #define CRS_ISR_SYNCWARNF         CRS_ISR_SYNCWARNF_Msk                        /*!< SYNC warning flag */
1549 #define CRS_ISR_ERRF_Pos          (2U)
1550 #define CRS_ISR_ERRF_Msk          (0x1UL << CRS_ISR_ERRF_Pos)                  /*!< 0x00000004 */
1551 #define CRS_ISR_ERRF              CRS_ISR_ERRF_Msk                             /*!< Error flag */
1552 #define CRS_ISR_ESYNCF_Pos        (3U)
1553 #define CRS_ISR_ESYNCF_Msk        (0x1UL << CRS_ISR_ESYNCF_Pos)                /*!< 0x00000008 */
1554 #define CRS_ISR_ESYNCF            CRS_ISR_ESYNCF_Msk                           /*!< Expected SYNC flag */
1555 #define CRS_ISR_SYNCERR_Pos       (8U)
1556 #define CRS_ISR_SYNCERR_Msk       (0x1UL << CRS_ISR_SYNCERR_Pos)               /*!< 0x00000100 */
1557 #define CRS_ISR_SYNCERR           CRS_ISR_SYNCERR_Msk                          /*!< SYNC error */
1558 #define CRS_ISR_SYNCMISS_Pos      (9U)
1559 #define CRS_ISR_SYNCMISS_Msk      (0x1UL << CRS_ISR_SYNCMISS_Pos)              /*!< 0x00000200 */
1560 #define CRS_ISR_SYNCMISS          CRS_ISR_SYNCMISS_Msk                         /*!< SYNC missed */
1561 #define CRS_ISR_TRIMOVF_Pos       (10U)
1562 #define CRS_ISR_TRIMOVF_Msk       (0x1UL << CRS_ISR_TRIMOVF_Pos)               /*!< 0x00000400 */
1563 #define CRS_ISR_TRIMOVF           CRS_ISR_TRIMOVF_Msk                          /*!< Trimming overflow or underflow */
1564 #define CRS_ISR_FEDIR_Pos         (15U)
1565 #define CRS_ISR_FEDIR_Msk         (0x1UL << CRS_ISR_FEDIR_Pos)                 /*!< 0x00008000 */
1566 #define CRS_ISR_FEDIR             CRS_ISR_FEDIR_Msk                            /*!< Frequency error direction */
1567 #define CRS_ISR_FECAP_Pos         (16U)
1568 #define CRS_ISR_FECAP_Msk         (0xFFFFUL << CRS_ISR_FECAP_Pos)              /*!< 0xFFFF0000 */
1569 #define CRS_ISR_FECAP             CRS_ISR_FECAP_Msk                            /*!< Frequency error capture */
1570 
1571 /*******************  Bit definition for CRS_ICR register  *********************/
1572 #define CRS_ICR_SYNCOKC_Pos       (0U)
1573 #define CRS_ICR_SYNCOKC_Msk       (0x1UL << CRS_ICR_SYNCOKC_Pos)               /*!< 0x00000001 */
1574 #define CRS_ICR_SYNCOKC           CRS_ICR_SYNCOKC_Msk                          /*!< SYNC event OK clear flag */
1575 #define CRS_ICR_SYNCWARNC_Pos     (1U)
1576 #define CRS_ICR_SYNCWARNC_Msk     (0x1UL << CRS_ICR_SYNCWARNC_Pos)             /*!< 0x00000002 */
1577 #define CRS_ICR_SYNCWARNC         CRS_ICR_SYNCWARNC_Msk                        /*!< SYNC warning clear flag */
1578 #define CRS_ICR_ERRC_Pos          (2U)
1579 #define CRS_ICR_ERRC_Msk          (0x1UL << CRS_ICR_ERRC_Pos)                  /*!< 0x00000004 */
1580 #define CRS_ICR_ERRC              CRS_ICR_ERRC_Msk                             /*!< Error clear flag */
1581 #define CRS_ICR_ESYNCC_Pos        (3U)
1582 #define CRS_ICR_ESYNCC_Msk        (0x1UL << CRS_ICR_ESYNCC_Pos)                /*!< 0x00000008 */
1583 #define CRS_ICR_ESYNCC            CRS_ICR_ESYNCC_Msk                           /*!< Expected SYNC clear flag */
1584 
1585 /******************************************************************************/
1586 /*                                                                            */
1587 /*                                Debug MCU                                   */
1588 /*                                                                            */
1589 /******************************************************************************/
1590 
1591 /********************************* DEVICE ID ********************************/
1592 #define DEV_ID 0x493UL
1593 
1594 /********************  Bit definition for DBG_IDCODE register  *************/
1595 #define DBG_IDCODE_DEV_ID_Pos                          (0U)
1596 #define DBG_IDCODE_DEV_ID_Msk                          (0xFFFUL << DBG_IDCODE_DEV_ID_Pos)  /*!< 0x00000FFF */
1597 #define DBG_IDCODE_DEV_ID                              DBG_IDCODE_DEV_ID_Msk
1598 #define DBG_IDCODE_REV_ID_Pos                          (16U)
1599 #define DBG_IDCODE_REV_ID_Msk                          (0xFFFFUL << DBG_IDCODE_REV_ID_Pos) /*!< 0xFFFF0000 */
1600 #define DBG_IDCODE_REV_ID                              DBG_IDCODE_REV_ID_Msk
1601 
1602 /********************  Bit definition for DBG_CR register  *****************/
1603 #define DBG_CR_DBG_STOP_Pos                            (1U)
1604 #define DBG_CR_DBG_STOP_Msk                            (0x1UL << DBG_CR_DBG_STOP_Pos)      /*!< 0x00000002 */
1605 #define DBG_CR_DBG_STOP                                DBG_CR_DBG_STOP_Msk
1606 #define DBG_CR_DBG_STANDBY_Pos                         (2U)
1607 #define DBG_CR_DBG_STANDBY_Msk                         (0x1UL << DBG_CR_DBG_STANDBY_Pos)   /*!< 0x00000004 */
1608 #define DBG_CR_DBG_STANDBY                             DBG_CR_DBG_STANDBY_Msk
1609 
1610 /********************  Bit definition for DBG_APB_FZ1 register  ***********/
1611 #define DBG_APB_FZ1_DBG_TIM2_STOP_Pos                  (0U)
1612 #define DBG_APB_FZ1_DBG_TIM2_STOP_Msk                  (0x1UL << DBG_APB_FZ1_DBG_TIM2_STOP_Pos) /*!< 0x00000001 */
1613 #define DBG_APB_FZ1_DBG_TIM2_STOP                      DBG_APB_FZ1_DBG_TIM2_STOP_Msk
1614 #define DBG_APB_FZ1_DBG_TIM3_STOP_Pos                  (1U)
1615 #define DBG_APB_FZ1_DBG_TIM3_STOP_Msk                  (0x1UL << DBG_APB_FZ1_DBG_TIM3_STOP_Pos) /*!< 0x00000002 */
1616 #define DBG_APB_FZ1_DBG_TIM3_STOP                      DBG_APB_FZ1_DBG_TIM3_STOP_Msk
1617 #define DBG_APB_FZ1_DBG_RTC_STOP_Pos                   (10U)
1618 #define DBG_APB_FZ1_DBG_RTC_STOP_Msk                   (0x1UL << DBG_APB_FZ1_DBG_RTC_STOP_Pos)  /*!< 0x00000400 */
1619 #define DBG_APB_FZ1_DBG_RTC_STOP                       DBG_APB_FZ1_DBG_RTC_STOP_Msk
1620 #define DBG_APB_FZ1_DBG_WWDG_STOP_Pos                  (11U)
1621 #define DBG_APB_FZ1_DBG_WWDG_STOP_Msk                  (0x1UL << DBG_APB_FZ1_DBG_WWDG_STOP_Pos) /*!< 0x00000800 */
1622 #define DBG_APB_FZ1_DBG_WWDG_STOP                      DBG_APB_FZ1_DBG_WWDG_STOP_Msk
1623 #define DBG_APB_FZ1_DBG_IWDG_STOP_Pos                  (12U)
1624 #define DBG_APB_FZ1_DBG_IWDG_STOP_Msk                  (0x1UL << DBG_APB_FZ1_DBG_IWDG_STOP_Pos) /*!< 0x00001000 */
1625 #define DBG_APB_FZ1_DBG_IWDG_STOP                      DBG_APB_FZ1_DBG_IWDG_STOP_Msk
1626 #define DBG_APB_FZ1_DBG_I2C1_SMBUS_TIMEOUT_STOP_Pos    (21U)
1627 #define DBG_APB_FZ1_DBG_I2C1_SMBUS_TIMEOUT_STOP_Msk    (0x1UL << DBG_APB_FZ1_DBG_I2C1_SMBUS_TIMEOUT_STOP_Pos) /*!< 0x00200000 */
1628 #define DBG_APB_FZ1_DBG_I2C1_SMBUS_TIMEOUT_STOP        DBG_APB_FZ1_DBG_I2C1_SMBUS_TIMEOUT_STOP_Msk
1629 
1630 /********************  Bit definition for DBG_APB_FZ2 register  ************/
1631 #define DBG_APB_FZ2_DBG_TIM1_STOP_Pos                  (11U)
1632 #define DBG_APB_FZ2_DBG_TIM1_STOP_Msk                  (0x1UL << DBG_APB_FZ2_DBG_TIM1_STOP_Pos)  /*!< 0x00000800 */
1633 #define DBG_APB_FZ2_DBG_TIM1_STOP                      DBG_APB_FZ2_DBG_TIM1_STOP_Msk
1634 #define DBG_APB_FZ2_DBG_TIM14_STOP_Pos                 (15U)
1635 #define DBG_APB_FZ2_DBG_TIM14_STOP_Msk                 (0x1UL << DBG_APB_FZ2_DBG_TIM14_STOP_Pos) /*!< 0x00008000 */
1636 #define DBG_APB_FZ2_DBG_TIM14_STOP                     DBG_APB_FZ2_DBG_TIM14_STOP_Msk
1637 #define DBG_APB_FZ2_DBG_TIM16_STOP_Pos                 (17U)
1638 #define DBG_APB_FZ2_DBG_TIM16_STOP_Msk                 (0x1UL << DBG_APB_FZ2_DBG_TIM16_STOP_Pos) /*!< 0x00020000 */
1639 #define DBG_APB_FZ2_DBG_TIM16_STOP                     DBG_APB_FZ2_DBG_TIM16_STOP_Msk
1640 #define DBG_APB_FZ2_DBG_TIM17_STOP_Pos                 (18U)
1641 #define DBG_APB_FZ2_DBG_TIM17_STOP_Msk                 (0x1UL << DBG_APB_FZ2_DBG_TIM17_STOP_Pos) /*!< 0x00040000 */
1642 #define DBG_APB_FZ2_DBG_TIM17_STOP                     DBG_APB_FZ2_DBG_TIM17_STOP_Msk
1643 
1644 /******************************************************************************/
1645 /*                                                                            */
1646 /*                           DMA Controller (DMA)                             */
1647 /*                                                                            */
1648 /******************************************************************************/
1649 
1650 /*******************  Bit definition for DMA_ISR register  ********************/
1651 #define DMA_ISR_GIF1_Pos       (0U)
1652 #define DMA_ISR_GIF1_Msk       (0x1UL << DMA_ISR_GIF1_Pos)                     /*!< 0x00000001 */
1653 #define DMA_ISR_GIF1           DMA_ISR_GIF1_Msk                                /*!< Channel 1 Global interrupt flag */
1654 #define DMA_ISR_TCIF1_Pos      (1U)
1655 #define DMA_ISR_TCIF1_Msk      (0x1UL << DMA_ISR_TCIF1_Pos)                    /*!< 0x00000002 */
1656 #define DMA_ISR_TCIF1          DMA_ISR_TCIF1_Msk                               /*!< Channel 1 Transfer Complete flag */
1657 #define DMA_ISR_HTIF1_Pos      (2U)
1658 #define DMA_ISR_HTIF1_Msk      (0x1UL << DMA_ISR_HTIF1_Pos)                    /*!< 0x00000004 */
1659 #define DMA_ISR_HTIF1          DMA_ISR_HTIF1_Msk                               /*!< Channel 1 Half Transfer flag */
1660 #define DMA_ISR_TEIF1_Pos      (3U)
1661 #define DMA_ISR_TEIF1_Msk      (0x1UL << DMA_ISR_TEIF1_Pos)                    /*!< 0x00000008 */
1662 #define DMA_ISR_TEIF1          DMA_ISR_TEIF1_Msk                               /*!< Channel 1 Transfer Error flag */
1663 #define DMA_ISR_GIF2_Pos       (4U)
1664 #define DMA_ISR_GIF2_Msk       (0x1UL << DMA_ISR_GIF2_Pos)                     /*!< 0x00000010 */
1665 #define DMA_ISR_GIF2           DMA_ISR_GIF2_Msk                                /*!< Channel 2 Global interrupt flag */
1666 #define DMA_ISR_TCIF2_Pos      (5U)
1667 #define DMA_ISR_TCIF2_Msk      (0x1UL << DMA_ISR_TCIF2_Pos)                    /*!< 0x00000020 */
1668 #define DMA_ISR_TCIF2          DMA_ISR_TCIF2_Msk                               /*!< Channel 2 Transfer Complete flag */
1669 #define DMA_ISR_HTIF2_Pos      (6U)
1670 #define DMA_ISR_HTIF2_Msk      (0x1UL << DMA_ISR_HTIF2_Pos)                    /*!< 0x00000040 */
1671 #define DMA_ISR_HTIF2          DMA_ISR_HTIF2_Msk                               /*!< Channel 2 Half Transfer flag */
1672 #define DMA_ISR_TEIF2_Pos      (7U)
1673 #define DMA_ISR_TEIF2_Msk      (0x1UL << DMA_ISR_TEIF2_Pos)                    /*!< 0x00000080 */
1674 #define DMA_ISR_TEIF2          DMA_ISR_TEIF2_Msk                               /*!< Channel 2 Transfer Error flag */
1675 #define DMA_ISR_GIF3_Pos       (8U)
1676 #define DMA_ISR_GIF3_Msk       (0x1UL << DMA_ISR_GIF3_Pos)                     /*!< 0x00000100 */
1677 #define DMA_ISR_GIF3           DMA_ISR_GIF3_Msk                                /*!< Channel 3 Global interrupt flag */
1678 #define DMA_ISR_TCIF3_Pos      (9U)
1679 #define DMA_ISR_TCIF3_Msk      (0x1UL << DMA_ISR_TCIF3_Pos)                    /*!< 0x00000200 */
1680 #define DMA_ISR_TCIF3          DMA_ISR_TCIF3_Msk                               /*!< Channel 3 Transfer Complete flag */
1681 #define DMA_ISR_HTIF3_Pos      (10U)
1682 #define DMA_ISR_HTIF3_Msk      (0x1UL << DMA_ISR_HTIF3_Pos)                    /*!< 0x00000400 */
1683 #define DMA_ISR_HTIF3          DMA_ISR_HTIF3_Msk                               /*!< Channel 3 Half Transfer flag */
1684 #define DMA_ISR_TEIF3_Pos      (11U)
1685 #define DMA_ISR_TEIF3_Msk      (0x1UL << DMA_ISR_TEIF3_Pos)                    /*!< 0x00000800 */
1686 #define DMA_ISR_TEIF3          DMA_ISR_TEIF3_Msk                               /*!< Channel 3 Transfer Error flag */
1687 #define DMA_ISR_GIF4_Pos       (12U)
1688 #define DMA_ISR_GIF4_Msk       (0x1UL << DMA_ISR_GIF4_Pos)                     /*!< 0x00001000 */
1689 #define DMA_ISR_GIF4           DMA_ISR_GIF4_Msk                                /*!< Channel 4 Global interrupt flag */
1690 #define DMA_ISR_TCIF4_Pos      (13U)
1691 #define DMA_ISR_TCIF4_Msk      (0x1UL << DMA_ISR_TCIF4_Pos)                    /*!< 0x00002000 */
1692 #define DMA_ISR_TCIF4          DMA_ISR_TCIF4_Msk                               /*!< Channel 4 Transfer Complete flag */
1693 #define DMA_ISR_HTIF4_Pos      (14U)
1694 #define DMA_ISR_HTIF4_Msk      (0x1UL << DMA_ISR_HTIF4_Pos)                    /*!< 0x00004000 */
1695 #define DMA_ISR_HTIF4          DMA_ISR_HTIF4_Msk                               /*!< Channel 4 Half Transfer flag */
1696 #define DMA_ISR_TEIF4_Pos      (15U)
1697 #define DMA_ISR_TEIF4_Msk      (0x1UL << DMA_ISR_TEIF4_Pos)                    /*!< 0x00008000 */
1698 #define DMA_ISR_TEIF4          DMA_ISR_TEIF4_Msk                               /*!< Channel 4 Transfer Error flag */
1699 #define DMA_ISR_GIF5_Pos       (16U)
1700 #define DMA_ISR_GIF5_Msk       (0x1UL << DMA_ISR_GIF5_Pos)                     /*!< 0x00010000 */
1701 #define DMA_ISR_GIF5           DMA_ISR_GIF5_Msk                                /*!< Channel 5 Global interrupt flag */
1702 #define DMA_ISR_TCIF5_Pos      (17U)
1703 #define DMA_ISR_TCIF5_Msk      (0x1UL << DMA_ISR_TCIF5_Pos)                    /*!< 0x00020000 */
1704 #define DMA_ISR_TCIF5          DMA_ISR_TCIF5_Msk                               /*!< Channel 5 Transfer Complete flag */
1705 #define DMA_ISR_HTIF5_Pos      (18U)
1706 #define DMA_ISR_HTIF5_Msk      (0x1UL << DMA_ISR_HTIF5_Pos)                    /*!< 0x00040000 */
1707 #define DMA_ISR_HTIF5          DMA_ISR_HTIF5_Msk                               /*!< Channel 5 Half Transfer flag */
1708 #define DMA_ISR_TEIF5_Pos      (19U)
1709 #define DMA_ISR_TEIF5_Msk      (0x1UL << DMA_ISR_TEIF5_Pos)                    /*!< 0x00080000 */
1710 #define DMA_ISR_TEIF5          DMA_ISR_TEIF5_Msk                               /*!< Channel 5 Transfer Error flag */
1711 
1712 /*******************  Bit definition for DMA_IFCR register  *******************/
1713 #define DMA_IFCR_CGIF1_Pos     (0U)
1714 #define DMA_IFCR_CGIF1_Msk     (0x1UL << DMA_IFCR_CGIF1_Pos)                   /*!< 0x00000001 */
1715 #define DMA_IFCR_CGIF1         DMA_IFCR_CGIF1_Msk                              /*!< Channel 1 Global interrupt clearr */
1716 #define DMA_IFCR_CTCIF1_Pos    (1U)
1717 #define DMA_IFCR_CTCIF1_Msk    (0x1UL << DMA_IFCR_CTCIF1_Pos)                  /*!< 0x00000002 */
1718 #define DMA_IFCR_CTCIF1        DMA_IFCR_CTCIF1_Msk                             /*!< Channel 1 Transfer Complete clear */
1719 #define DMA_IFCR_CHTIF1_Pos    (2U)
1720 #define DMA_IFCR_CHTIF1_Msk    (0x1UL << DMA_IFCR_CHTIF1_Pos)                  /*!< 0x00000004 */
1721 #define DMA_IFCR_CHTIF1        DMA_IFCR_CHTIF1_Msk                             /*!< Channel 1 Half Transfer clear */
1722 #define DMA_IFCR_CTEIF1_Pos    (3U)
1723 #define DMA_IFCR_CTEIF1_Msk    (0x1UL << DMA_IFCR_CTEIF1_Pos)                  /*!< 0x00000008 */
1724 #define DMA_IFCR_CTEIF1        DMA_IFCR_CTEIF1_Msk                             /*!< Channel 1 Transfer Error clear */
1725 #define DMA_IFCR_CGIF2_Pos     (4U)
1726 #define DMA_IFCR_CGIF2_Msk     (0x1UL << DMA_IFCR_CGIF2_Pos)                   /*!< 0x00000010 */
1727 #define DMA_IFCR_CGIF2         DMA_IFCR_CGIF2_Msk                              /*!< Channel 2 Global interrupt clear */
1728 #define DMA_IFCR_CTCIF2_Pos    (5U)
1729 #define DMA_IFCR_CTCIF2_Msk    (0x1UL << DMA_IFCR_CTCIF2_Pos)                  /*!< 0x00000020 */
1730 #define DMA_IFCR_CTCIF2        DMA_IFCR_CTCIF2_Msk                             /*!< Channel 2 Transfer Complete clear */
1731 #define DMA_IFCR_CHTIF2_Pos    (6U)
1732 #define DMA_IFCR_CHTIF2_Msk    (0x1UL << DMA_IFCR_CHTIF2_Pos)                  /*!< 0x00000040 */
1733 #define DMA_IFCR_CHTIF2        DMA_IFCR_CHTIF2_Msk                             /*!< Channel 2 Half Transfer clear */
1734 #define DMA_IFCR_CTEIF2_Pos    (7U)
1735 #define DMA_IFCR_CTEIF2_Msk    (0x1UL << DMA_IFCR_CTEIF2_Pos)                  /*!< 0x00000080 */
1736 #define DMA_IFCR_CTEIF2        DMA_IFCR_CTEIF2_Msk                             /*!< Channel 2 Transfer Error clear */
1737 #define DMA_IFCR_CGIF3_Pos     (8U)
1738 #define DMA_IFCR_CGIF3_Msk     (0x1UL << DMA_IFCR_CGIF3_Pos)                   /*!< 0x00000100 */
1739 #define DMA_IFCR_CGIF3         DMA_IFCR_CGIF3_Msk                              /*!< Channel 3 Global interrupt clear */
1740 #define DMA_IFCR_CTCIF3_Pos    (9U)
1741 #define DMA_IFCR_CTCIF3_Msk    (0x1UL << DMA_IFCR_CTCIF3_Pos)                  /*!< 0x00000200 */
1742 #define DMA_IFCR_CTCIF3        DMA_IFCR_CTCIF3_Msk                             /*!< Channel 3 Transfer Complete clear */
1743 #define DMA_IFCR_CHTIF3_Pos    (10U)
1744 #define DMA_IFCR_CHTIF3_Msk    (0x1UL << DMA_IFCR_CHTIF3_Pos)                  /*!< 0x00000400 */
1745 #define DMA_IFCR_CHTIF3        DMA_IFCR_CHTIF3_Msk                             /*!< Channel 3 Half Transfer clear */
1746 #define DMA_IFCR_CTEIF3_Pos    (11U)
1747 #define DMA_IFCR_CTEIF3_Msk    (0x1UL << DMA_IFCR_CTEIF3_Pos)                  /*!< 0x00000800 */
1748 #define DMA_IFCR_CTEIF3        DMA_IFCR_CTEIF3_Msk                             /*!< Channel 3 Transfer Error clear */
1749 #define DMA_IFCR_CGIF4_Pos     (12U)
1750 #define DMA_IFCR_CGIF4_Msk     (0x1UL << DMA_IFCR_CGIF4_Pos)                   /*!< 0x00001000 */
1751 #define DMA_IFCR_CGIF4         DMA_IFCR_CGIF4_Msk                              /*!< Channel 4 Global interrupt clear */
1752 #define DMA_IFCR_CTCIF4_Pos    (13U)
1753 #define DMA_IFCR_CTCIF4_Msk    (0x1UL << DMA_IFCR_CTCIF4_Pos)                  /*!< 0x00002000 */
1754 #define DMA_IFCR_CTCIF4        DMA_IFCR_CTCIF4_Msk                             /*!< Channel 4 Transfer Complete clear */
1755 #define DMA_IFCR_CHTIF4_Pos    (14U)
1756 #define DMA_IFCR_CHTIF4_Msk    (0x1UL << DMA_IFCR_CHTIF4_Pos)                  /*!< 0x00004000 */
1757 #define DMA_IFCR_CHTIF4        DMA_IFCR_CHTIF4_Msk                             /*!< Channel 4 Half Transfer clear */
1758 #define DMA_IFCR_CTEIF4_Pos    (15U)
1759 #define DMA_IFCR_CTEIF4_Msk    (0x1UL << DMA_IFCR_CTEIF4_Pos)                  /*!< 0x00008000 */
1760 #define DMA_IFCR_CTEIF4        DMA_IFCR_CTEIF4_Msk                             /*!< Channel 4 Transfer Error clear */
1761 #define DMA_IFCR_CGIF5_Pos     (16U)
1762 #define DMA_IFCR_CGIF5_Msk     (0x1UL << DMA_IFCR_CGIF5_Pos)                   /*!< 0x00010000 */
1763 #define DMA_IFCR_CGIF5         DMA_IFCR_CGIF5_Msk                              /*!< Channel 5 Global interrupt clear */
1764 #define DMA_IFCR_CTCIF5_Pos    (17U)
1765 #define DMA_IFCR_CTCIF5_Msk    (0x1UL << DMA_IFCR_CTCIF5_Pos)                  /*!< 0x00020000 */
1766 #define DMA_IFCR_CTCIF5        DMA_IFCR_CTCIF5_Msk                             /*!< Channel 5 Transfer Complete clear */
1767 #define DMA_IFCR_CHTIF5_Pos    (18U)
1768 #define DMA_IFCR_CHTIF5_Msk    (0x1UL << DMA_IFCR_CHTIF5_Pos)                  /*!< 0x00040000 */
1769 #define DMA_IFCR_CHTIF5        DMA_IFCR_CHTIF5_Msk                             /*!< Channel 5 Half Transfer clear */
1770 #define DMA_IFCR_CTEIF5_Pos    (19U)
1771 #define DMA_IFCR_CTEIF5_Msk    (0x1UL << DMA_IFCR_CTEIF5_Pos)                  /*!< 0x00080000 */
1772 #define DMA_IFCR_CTEIF5        DMA_IFCR_CTEIF5_Msk                             /*!< Channel 5 Transfer Error clear */
1773 
1774 /*******************  Bit definition for DMA_CCR register  ********************/
1775 #define DMA_CCR_EN_Pos         (0U)
1776 #define DMA_CCR_EN_Msk         (0x1UL << DMA_CCR_EN_Pos)                       /*!< 0x00000001 */
1777 #define DMA_CCR_EN             DMA_CCR_EN_Msk                                  /*!< Channel enable                      */
1778 #define DMA_CCR_TCIE_Pos       (1U)
1779 #define DMA_CCR_TCIE_Msk       (0x1UL << DMA_CCR_TCIE_Pos)                     /*!< 0x00000002 */
1780 #define DMA_CCR_TCIE           DMA_CCR_TCIE_Msk                                /*!< Transfer complete interrupt enable  */
1781 #define DMA_CCR_HTIE_Pos       (2U)
1782 #define DMA_CCR_HTIE_Msk       (0x1UL << DMA_CCR_HTIE_Pos)                     /*!< 0x00000004 */
1783 #define DMA_CCR_HTIE           DMA_CCR_HTIE_Msk                                /*!< Half Transfer interrupt enable      */
1784 #define DMA_CCR_TEIE_Pos       (3U)
1785 #define DMA_CCR_TEIE_Msk       (0x1UL << DMA_CCR_TEIE_Pos)                     /*!< 0x00000008 */
1786 #define DMA_CCR_TEIE           DMA_CCR_TEIE_Msk                                /*!< Transfer error interrupt enable     */
1787 #define DMA_CCR_DIR_Pos        (4U)
1788 #define DMA_CCR_DIR_Msk        (0x1UL << DMA_CCR_DIR_Pos)                      /*!< 0x00000010 */
1789 #define DMA_CCR_DIR            DMA_CCR_DIR_Msk                                 /*!< Data transfer direction             */
1790 #define DMA_CCR_CIRC_Pos       (5U)
1791 #define DMA_CCR_CIRC_Msk       (0x1UL << DMA_CCR_CIRC_Pos)                     /*!< 0x00000020 */
1792 #define DMA_CCR_CIRC           DMA_CCR_CIRC_Msk                                /*!< Circular mode                       */
1793 #define DMA_CCR_PINC_Pos       (6U)
1794 #define DMA_CCR_PINC_Msk       (0x1UL << DMA_CCR_PINC_Pos)                     /*!< 0x00000040 */
1795 #define DMA_CCR_PINC           DMA_CCR_PINC_Msk                                /*!< Peripheral increment mode           */
1796 #define DMA_CCR_MINC_Pos       (7U)
1797 #define DMA_CCR_MINC_Msk       (0x1UL << DMA_CCR_MINC_Pos)                     /*!< 0x00000080 */
1798 #define DMA_CCR_MINC           DMA_CCR_MINC_Msk                                /*!< Memory increment mode               */
1799 
1800 #define DMA_CCR_PSIZE_Pos      (8U)
1801 #define DMA_CCR_PSIZE_Msk      (0x3UL << DMA_CCR_PSIZE_Pos)                    /*!< 0x00000300 */
1802 #define DMA_CCR_PSIZE          DMA_CCR_PSIZE_Msk                               /*!< PSIZE[1:0] bits (Peripheral size)   */
1803 #define DMA_CCR_PSIZE_0        (0x1UL << DMA_CCR_PSIZE_Pos)                    /*!< 0x00000100 */
1804 #define DMA_CCR_PSIZE_1        (0x2UL << DMA_CCR_PSIZE_Pos)                    /*!< 0x00000200 */
1805 
1806 #define DMA_CCR_MSIZE_Pos      (10U)
1807 #define DMA_CCR_MSIZE_Msk      (0x3UL << DMA_CCR_MSIZE_Pos)                    /*!< 0x00000C00 */
1808 #define DMA_CCR_MSIZE          DMA_CCR_MSIZE_Msk                               /*!< MSIZE[1:0] bits (Memory size)       */
1809 #define DMA_CCR_MSIZE_0        (0x1UL << DMA_CCR_MSIZE_Pos)                    /*!< 0x00000400 */
1810 #define DMA_CCR_MSIZE_1        (0x2UL << DMA_CCR_MSIZE_Pos)                    /*!< 0x00000800 */
1811 
1812 #define DMA_CCR_PL_Pos         (12U)
1813 #define DMA_CCR_PL_Msk         (0x3UL << DMA_CCR_PL_Pos)                       /*!< 0x00003000 */
1814 #define DMA_CCR_PL             DMA_CCR_PL_Msk                                  /*!< PL[1:0] bits(Channel Priority level)*/
1815 #define DMA_CCR_PL_0           (0x1UL << DMA_CCR_PL_Pos)                       /*!< 0x00001000 */
1816 #define DMA_CCR_PL_1           (0x2UL << DMA_CCR_PL_Pos)                        /*!< 0x00002000 */
1817 
1818 #define DMA_CCR_MEM2MEM_Pos    (14U)
1819 #define DMA_CCR_MEM2MEM_Msk    (0x1UL << DMA_CCR_MEM2MEM_Pos)                  /*!< 0x00004000 */
1820 #define DMA_CCR_MEM2MEM        DMA_CCR_MEM2MEM_Msk                             /*!< Memory to memory mode               */
1821 
1822 /******************  Bit definition for DMA_CNDTR register  *******************/
1823 #define DMA_CNDTR_NDT_Pos      (0U)
1824 #define DMA_CNDTR_NDT_Msk      (0xFFFFUL << DMA_CNDTR_NDT_Pos)                 /*!< 0x0000FFFF */
1825 #define DMA_CNDTR_NDT          DMA_CNDTR_NDT_Msk                               /*!< Number of data to Transfer          */
1826 
1827 /******************  Bit definition for DMA_CPAR register  ********************/
1828 #define DMA_CPAR_PA_Pos        (0U)
1829 #define DMA_CPAR_PA_Msk        (0xFFFFFFFFUL << DMA_CPAR_PA_Pos)               /*!< 0xFFFFFFFF */
1830 #define DMA_CPAR_PA            DMA_CPAR_PA_Msk                                 /*!< Peripheral Address                  */
1831 
1832 /******************  Bit definition for DMA_CMAR register  ********************/
1833 #define DMA_CMAR_MA_Pos        (0U)
1834 #define DMA_CMAR_MA_Msk        (0xFFFFFFFFUL << DMA_CMAR_MA_Pos)               /*!< 0xFFFFFFFF */
1835 #define DMA_CMAR_MA            DMA_CMAR_MA_Msk                                 /*!< Memory Address                      */
1836 
1837 /******************************************************************************/
1838 /*                                                                            */
1839 /*                             DMAMUX Controller                              */
1840 /*                                                                            */
1841 /******************************************************************************/
1842 /********************  Bits definition for DMAMUX_CxCR register  **************/
1843 #define DMAMUX_CxCR_DMAREQ_ID_Pos              (0U)
1844 #define DMAMUX_CxCR_DMAREQ_ID_Msk              (0xFFUL << DMAMUX_CxCR_DMAREQ_ID_Pos) /*!< 0x000000FF */
1845 #define DMAMUX_CxCR_DMAREQ_ID                  DMAMUX_CxCR_DMAREQ_ID_Msk             /*!< DMA Request ID   */
1846 #define DMAMUX_CxCR_DMAREQ_ID_0                (0x01UL << DMAMUX_CxCR_DMAREQ_ID_Pos) /*!< 0x00000001 */
1847 #define DMAMUX_CxCR_DMAREQ_ID_1                (0x02UL << DMAMUX_CxCR_DMAREQ_ID_Pos) /*!< 0x00000002 */
1848 #define DMAMUX_CxCR_DMAREQ_ID_2                (0x04UL << DMAMUX_CxCR_DMAREQ_ID_Pos) /*!< 0x00000004 */
1849 #define DMAMUX_CxCR_DMAREQ_ID_3                (0x08UL << DMAMUX_CxCR_DMAREQ_ID_Pos) /*!< 0x00000008 */
1850 #define DMAMUX_CxCR_DMAREQ_ID_4                (0x10UL << DMAMUX_CxCR_DMAREQ_ID_Pos) /*!< 0x00000010 */
1851 #define DMAMUX_CxCR_DMAREQ_ID_5                (0x20UL << DMAMUX_CxCR_DMAREQ_ID_Pos) /*!< 0x00000020 */
1852 #define DMAMUX_CxCR_DMAREQ_ID_6                (0x40UL << DMAMUX_CxCR_DMAREQ_ID_Pos) /*!< 0x00000040 */
1853 #define DMAMUX_CxCR_DMAREQ_ID_7                (0x80UL << DMAMUX_CxCR_DMAREQ_ID_Pos) /*!< 0x00000080 */
1854 #define DMAMUX_CxCR_SOIE_Pos                   (8U)
1855 #define DMAMUX_CxCR_SOIE_Msk                   (0x1UL << DMAMUX_CxCR_SOIE_Pos)  /*!< 0x00000100 */
1856 #define DMAMUX_CxCR_SOIE                       DMAMUX_CxCR_SOIE_Msk             /*!< Synchro overrun interrupt enable     */
1857 #define DMAMUX_CxCR_EGE_Pos                    (9U)
1858 #define DMAMUX_CxCR_EGE_Msk                    (0x1UL << DMAMUX_CxCR_EGE_Pos)   /*!< 0x00000200 */
1859 #define DMAMUX_CxCR_EGE                        DMAMUX_CxCR_EGE_Msk              /*!< Event generation interrupt enable    */
1860 #define DMAMUX_CxCR_SE_Pos                     (16U)
1861 #define DMAMUX_CxCR_SE_Msk                     (0x1UL << DMAMUX_CxCR_SE_Pos)    /*!< 0x00010000 */
1862 #define DMAMUX_CxCR_SE                         DMAMUX_CxCR_SE_Msk               /*!< Synchronization enable               */
1863 #define DMAMUX_CxCR_SPOL_Pos                   (17U)
1864 #define DMAMUX_CxCR_SPOL_Msk                   (0x3UL << DMAMUX_CxCR_SPOL_Pos)  /*!< 0x00060000 */
1865 #define DMAMUX_CxCR_SPOL                       DMAMUX_CxCR_SPOL_Msk             /*!< Synchronization polarity             */
1866 #define DMAMUX_CxCR_SPOL_0                     (0x1UL << DMAMUX_CxCR_SPOL_Pos)  /*!< 0x00020000 */
1867 #define DMAMUX_CxCR_SPOL_1                     (0x2UL << DMAMUX_CxCR_SPOL_Pos)  /*!< 0x00040000 */
1868 #define DMAMUX_CxCR_NBREQ_Pos                  (19U)
1869 #define DMAMUX_CxCR_NBREQ_Msk                  (0x1FUL << DMAMUX_CxCR_NBREQ_Pos) /*!< 0x00F80000 */
1870 #define DMAMUX_CxCR_NBREQ                      DMAMUX_CxCR_NBREQ_Msk             /*!< Number of request                    */
1871 #define DMAMUX_CxCR_NBREQ_0                    (0x01UL << DMAMUX_CxCR_NBREQ_Pos) /*!< 0x00080000 */
1872 #define DMAMUX_CxCR_NBREQ_1                    (0x02UL << DMAMUX_CxCR_NBREQ_Pos) /*!< 0x00100000 */
1873 #define DMAMUX_CxCR_NBREQ_2                    (0x04UL << DMAMUX_CxCR_NBREQ_Pos) /*!< 0x00200000 */
1874 #define DMAMUX_CxCR_NBREQ_3                    (0x08UL << DMAMUX_CxCR_NBREQ_Pos) /*!< 0x00400000 */
1875 #define DMAMUX_CxCR_NBREQ_4                    (0x10UL << DMAMUX_CxCR_NBREQ_Pos) /*!< 0x00800000 */
1876 #define DMAMUX_CxCR_SYNC_ID_Pos                (24U)
1877 #define DMAMUX_CxCR_SYNC_ID_Msk                (0x1FUL << DMAMUX_CxCR_SYNC_ID_Pos) /*!< 0x1F000000 */
1878 #define DMAMUX_CxCR_SYNC_ID                    DMAMUX_CxCR_SYNC_ID_Msk             /*!< Synchronization ID                   */
1879 #define DMAMUX_CxCR_SYNC_ID_0                  (0x01UL << DMAMUX_CxCR_SYNC_ID_Pos) /*!< 0x01000000 */
1880 #define DMAMUX_CxCR_SYNC_ID_1                  (0x02UL << DMAMUX_CxCR_SYNC_ID_Pos) /*!< 0x02000000 */
1881 #define DMAMUX_CxCR_SYNC_ID_2                  (0x04UL << DMAMUX_CxCR_SYNC_ID_Pos) /*!< 0x04000000 */
1882 #define DMAMUX_CxCR_SYNC_ID_3                  (0x08UL << DMAMUX_CxCR_SYNC_ID_Pos) /*!< 0x08000000 */
1883 #define DMAMUX_CxCR_SYNC_ID_4                  (0x10UL << DMAMUX_CxCR_SYNC_ID_Pos) /*!< 0x10000000 */
1884 
1885 /*******************  Bits definition for DMAMUX_CSR register  **************/
1886 #define DMAMUX_CSR_SOF0_Pos                    (0U)
1887 #define DMAMUX_CSR_SOF0_Msk                    (0x1UL << DMAMUX_CSR_SOF0_Pos)  /*!< 0x00000001 */
1888 #define DMAMUX_CSR_SOF0                        DMAMUX_CSR_SOF0_Msk             /*!< Synchronization Overrun Flag 0       */
1889 #define DMAMUX_CSR_SOF1_Pos                    (1U)
1890 #define DMAMUX_CSR_SOF1_Msk                    (0x1UL << DMAMUX_CSR_SOF1_Pos)  /*!< 0x00000002 */
1891 #define DMAMUX_CSR_SOF1                        DMAMUX_CSR_SOF1_Msk             /*!< Synchronization Overrun Flag 1       */
1892 #define DMAMUX_CSR_SOF2_Pos                    (2U)
1893 #define DMAMUX_CSR_SOF2_Msk                    (0x1UL << DMAMUX_CSR_SOF2_Pos)  /*!< 0x00000004 */
1894 #define DMAMUX_CSR_SOF2                        DMAMUX_CSR_SOF2_Msk             /*!< Synchronization Overrun Flag 2       */
1895 #define DMAMUX_CSR_SOF3_Pos                    (3U)
1896 #define DMAMUX_CSR_SOF3_Msk                    (0x1UL << DMAMUX_CSR_SOF3_Pos)  /*!< 0x00000008 */
1897 #define DMAMUX_CSR_SOF3                        DMAMUX_CSR_SOF3_Msk             /*!< Synchronization Overrun Flag 3       */
1898 #define DMAMUX_CSR_SOF4_Pos                    (4U)
1899 #define DMAMUX_CSR_SOF4_Msk                    (0x1UL << DMAMUX_CSR_SOF4_Pos)  /*!< 0x00000010 */
1900 #define DMAMUX_CSR_SOF4                        DMAMUX_CSR_SOF4_Msk             /*!< Synchronization Overrun Flag 4       */
1901 
1902 /********************  Bits definition for DMAMUX_CFR register  **************/
1903 #define DMAMUX_CFR_CSOF0_Pos                   (0U)
1904 #define DMAMUX_CFR_CSOF0_Msk                   (0x1UL << DMAMUX_CFR_CSOF0_Pos)  /*!< 0x00000001 */
1905 #define DMAMUX_CFR_CSOF0                       DMAMUX_CFR_CSOF0_Msk             /*!< Clear Overrun Flag 0                 */
1906 #define DMAMUX_CFR_CSOF1_Pos                   (1U)
1907 #define DMAMUX_CFR_CSOF1_Msk                   (0x1UL << DMAMUX_CFR_CSOF1_Pos)  /*!< 0x00000002 */
1908 #define DMAMUX_CFR_CSOF1                       DMAMUX_CFR_CSOF1_Msk             /*!< Clear Overrun Flag 1                 */
1909 #define DMAMUX_CFR_CSOF2_Pos                   (2U)
1910 #define DMAMUX_CFR_CSOF2_Msk                   (0x1UL << DMAMUX_CFR_CSOF2_Pos)  /*!< 0x00000004 */
1911 #define DMAMUX_CFR_CSOF2                       DMAMUX_CFR_CSOF2_Msk             /*!< Clear Overrun Flag 2                 */
1912 #define DMAMUX_CFR_CSOF3_Pos                   (3U)
1913 #define DMAMUX_CFR_CSOF3_Msk                   (0x1UL << DMAMUX_CFR_CSOF3_Pos)  /*!< 0x00000008 */
1914 #define DMAMUX_CFR_CSOF3                       DMAMUX_CFR_CSOF3_Msk             /*!< Clear Overrun Flag 3                 */
1915 #define DMAMUX_CFR_CSOF4_Pos                   (4U)
1916 #define DMAMUX_CFR_CSOF4_Msk                   (0x1UL << DMAMUX_CFR_CSOF4_Pos)  /*!< 0x00000010 */
1917 #define DMAMUX_CFR_CSOF4                       DMAMUX_CFR_CSOF4_Msk             /*!< Clear Overrun Flag 4                 */
1918 
1919 /********************  Bits definition for DMAMUX_RGxCR register  ************/
1920 #define DMAMUX_RGxCR_SIG_ID_Pos                (0U)
1921 #define DMAMUX_RGxCR_SIG_ID_Msk                (0x1FUL << DMAMUX_RGxCR_SIG_ID_Pos) /*!< 0x0000001F */
1922 #define DMAMUX_RGxCR_SIG_ID                    DMAMUX_RGxCR_SIG_ID_Msk             /*!< Signal ID                         */
1923 #define DMAMUX_RGxCR_SIG_ID_0                  (0x01UL << DMAMUX_RGxCR_SIG_ID_Pos) /*!< 0x00000001 */
1924 #define DMAMUX_RGxCR_SIG_ID_1                  (0x02UL << DMAMUX_RGxCR_SIG_ID_Pos) /*!< 0x00000002 */
1925 #define DMAMUX_RGxCR_SIG_ID_2                  (0x04UL << DMAMUX_RGxCR_SIG_ID_Pos) /*!< 0x00000004 */
1926 #define DMAMUX_RGxCR_SIG_ID_3                  (0x08UL << DMAMUX_RGxCR_SIG_ID_Pos) /*!< 0x00000008 */
1927 #define DMAMUX_RGxCR_SIG_ID_4                  (0x10UL << DMAMUX_RGxCR_SIG_ID_Pos) /*!< 0x00000010 */
1928 #define DMAMUX_RGxCR_OIE_Pos                   (8U)
1929 #define DMAMUX_RGxCR_OIE_Msk                   (0x1UL << DMAMUX_RGxCR_OIE_Pos)  /*!< 0x00000100 */
1930 #define DMAMUX_RGxCR_OIE                       DMAMUX_RGxCR_OIE_Msk             /*!< Overrun interrupt enable             */
1931 #define DMAMUX_RGxCR_GE_Pos                    (16U)
1932 #define DMAMUX_RGxCR_GE_Msk                    (0x1UL << DMAMUX_RGxCR_GE_Pos)   /*!< 0x00010000 */
1933 #define DMAMUX_RGxCR_GE                        DMAMUX_RGxCR_GE_Msk              /*!< Generation enable                    */
1934 #define DMAMUX_RGxCR_GPOL_Pos                  (17U)
1935 #define DMAMUX_RGxCR_GPOL_Msk                  (0x3UL << DMAMUX_RGxCR_GPOL_Pos) /*!< 0x00060000 */
1936 #define DMAMUX_RGxCR_GPOL                      DMAMUX_RGxCR_GPOL_Msk            /*!< Generation polarity                  */
1937 #define DMAMUX_RGxCR_GPOL_0                    (0x1UL << DMAMUX_RGxCR_GPOL_Pos) /*!< 0x00020000 */
1938 #define DMAMUX_RGxCR_GPOL_1                    (0x2UL << DMAMUX_RGxCR_GPOL_Pos) /*!< 0x00040000 */
1939 #define DMAMUX_RGxCR_GNBREQ_Pos                (19U)
1940 #define DMAMUX_RGxCR_GNBREQ_Msk                (0x1FUL << DMAMUX_RGxCR_GNBREQ_Pos) /*!< 0x00F80000 */
1941 #define DMAMUX_RGxCR_GNBREQ                    DMAMUX_RGxCR_GNBREQ_Msk             /*!< Number of request                 */
1942 #define DMAMUX_RGxCR_GNBREQ_0                  (0x01UL << DMAMUX_RGxCR_GNBREQ_Pos) /*!< 0x00080000 */
1943 #define DMAMUX_RGxCR_GNBREQ_1                  (0x02UL << DMAMUX_RGxCR_GNBREQ_Pos) /*!< 0x00100000 */
1944 #define DMAMUX_RGxCR_GNBREQ_2                  (0x04UL << DMAMUX_RGxCR_GNBREQ_Pos) /*!< 0x00200000 */
1945 #define DMAMUX_RGxCR_GNBREQ_3                  (0x08UL << DMAMUX_RGxCR_GNBREQ_Pos) /*!< 0x00400000 */
1946 #define DMAMUX_RGxCR_GNBREQ_4                  (0x10UL << DMAMUX_RGxCR_GNBREQ_Pos) /*!< 0x00800000 */
1947 
1948 /********************  Bits definition for DMAMUX_RGSR register  **************/
1949 #define DMAMUX_RGSR_OF0_Pos                    (0U)
1950 #define DMAMUX_RGSR_OF0_Msk                    (0x1UL << DMAMUX_RGSR_OF0_Pos)   /*!< 0x00000001 */
1951 #define DMAMUX_RGSR_OF0                        DMAMUX_RGSR_OF0_Msk              /*!< Overrun flag 0                       */
1952 #define DMAMUX_RGSR_OF1_Pos                    (1U)
1953 #define DMAMUX_RGSR_OF1_Msk                    (0x1UL << DMAMUX_RGSR_OF1_Pos)   /*!< 0x00000002 */
1954 #define DMAMUX_RGSR_OF1                        DMAMUX_RGSR_OF1_Msk              /*!< Overrun flag 1                       */
1955 #define DMAMUX_RGSR_OF2_Pos                    (2U)
1956 #define DMAMUX_RGSR_OF2_Msk                    (0x1UL << DMAMUX_RGSR_OF2_Pos)   /*!< 0x00000004 */
1957 #define DMAMUX_RGSR_OF2                        DMAMUX_RGSR_OF2_Msk              /*!< Overrun flag 2                       */
1958 #define DMAMUX_RGSR_OF3_Pos                    (3U)
1959 #define DMAMUX_RGSR_OF3_Msk                    (0x1UL << DMAMUX_RGSR_OF3_Pos)   /*!< 0x00000008 */
1960 #define DMAMUX_RGSR_OF3                        DMAMUX_RGSR_OF3_Msk              /*!< Overrun flag 3                       */
1961 
1962 /********************  Bits definition for DMAMUX_RGCFR register  **************/
1963 #define DMAMUX_RGCFR_COF0_Pos                  (0U)
1964 #define DMAMUX_RGCFR_COF0_Msk                  (0x1UL << DMAMUX_RGCFR_COF0_Pos) /*!< 0x00000001 */
1965 #define DMAMUX_RGCFR_COF0                      DMAMUX_RGCFR_COF0_Msk            /*!< Clear Overrun flag 0                 */
1966 #define DMAMUX_RGCFR_COF1_Pos                  (1U)
1967 #define DMAMUX_RGCFR_COF1_Msk                  (0x1UL << DMAMUX_RGCFR_COF1_Pos) /*!< 0x00000002 */
1968 #define DMAMUX_RGCFR_COF1                      DMAMUX_RGCFR_COF1_Msk            /*!< Clear Overrun flag 1                 */
1969 #define DMAMUX_RGCFR_COF2_Pos                  (2U)
1970 #define DMAMUX_RGCFR_COF2_Msk                  (0x1UL << DMAMUX_RGCFR_COF2_Pos) /*!< 0x00000004 */
1971 #define DMAMUX_RGCFR_COF2                      DMAMUX_RGCFR_COF2_Msk            /*!< Clear Overrun flag 2                 */
1972 #define DMAMUX_RGCFR_COF3_Pos                  (3U)
1973 #define DMAMUX_RGCFR_COF3_Msk                  (0x1UL << DMAMUX_RGCFR_COF3_Pos) /*!< 0x00000008 */
1974 #define DMAMUX_RGCFR_COF3                      DMAMUX_RGCFR_COF3_Msk            /*!< Clear Overrun flag 3                 */
1975 
1976 /*****************  Bits definition for DMAMUX_IPHW_CFGR2 register  ************/
1977 #define DMAMUX_IPHW_CFGR2_NB_EXT_REQ_Pos       (0U)
1978 #define DMAMUX_IPHW_CFGR2_NB_EXT_REQ_Msk       (0xFFUL << DMAMUX_IPHW_CFGR2_NB_EXT_REQ_Pos) /*!< 0x000000FF */
1979 #define DMAMUX_IPHW_CFGR2_NB_EXT_REQ           DMAMUX_IPHW_CFGR2_NB_EXT_REQ_Msk /*!< Number of external request sources   */
1980 
1981 /*****************  Bits definition for DMAMUX_IPHW_CFGR1 register  ************/
1982 #define DMAMUX_IPHW_CFGR1_NB_STREAMS_Pos       (0U)
1983 #define DMAMUX_IPHW_CFGR1_NB_STREAMS_Msk       (0xFFUL << DMAMUX_IPHW_CFGR1_NB_STREAMS_Pos) /*!< 0x000000FF */
1984 #define DMAMUX_IPHW_CFGR1_NB_STREAMS           DMAMUX_IPHW_CFGR1_NB_STREAMS_Msk /*!< Number of DMA streams                */
1985 
1986 #define DMAMUX_IPHW_CFGR1_NB_PERIPH_REQ_Pos    (8U)
1987 #define DMAMUX_IPHW_CFGR1_NB_PERIPH_REQ_Msk    (0xFFUL << DMAMUX_IPHW_CFGR1_NB_PERIPH_REQ_Pos) /*!< 0x0000FF00 */
1988 #define DMAMUX_IPHW_CFGR1_NB_PERIPH_REQ        DMAMUX_IPHW_CFGR1_NB_PERIPH_REQ_Msk /*!< Number of peripheral requests     */
1989 
1990 #define DMAMUX_IPHW_CFGR1_NB_SYNC_TRIG_Pos     (16U)
1991 #define DMAMUX_IPHW_CFGR1_NB_SYNC_TRIG_Msk     (0xFFUL << DMAMUX_IPHW_CFGR1_NB_SYNC_TRIG_Pos) /*!< 0x00FF0000 */
1992 #define DMAMUX_IPHW_CFGR1_NB_SYNC_TRIG         DMAMUX_IPHW_CFGR1_NB_SYNC_TRIG_Msk /*!< Number of synchronization triggers */
1993 
1994 #define DMAMUX_IPHW_CFGR1_NB_REQ_GEN_Pos       (24U)
1995 #define DMAMUX_IPHW_CFGR1_NB_REQ_GEN_Msk       (0xFFUL << DMAMUX_IPHW_CFGR1_NB_REQ_GEN_Pos) /*!< 0xFF000000 */
1996 #define DMAMUX_IPHW_CFGR1_NB_REQ_GEN           DMAMUX_IPHW_CFGR1_NB_REQ_GEN_Msk /*!< Number of request generation blocks  */
1997 
1998 /******************************************************************************/
1999 /*                                                                            */
2000 /*                    External Interrupt/Event Controller                     */
2001 /*                                                                            */
2002 /******************************************************************************/
2003 /******************  Bit definition for EXTI_RTSR1 register  ******************/
2004 #define EXTI_RTSR1_RT0_Pos           (0U)
2005 #define EXTI_RTSR1_RT0_Msk           (0x1UL << EXTI_RTSR1_RT0_Pos)             /*!< 0x00000001 */
2006 #define EXTI_RTSR1_RT0               EXTI_RTSR1_RT0_Msk                        /*!< Rising trigger configuration for input line 0 */
2007 #define EXTI_RTSR1_RT1_Pos           (1U)
2008 #define EXTI_RTSR1_RT1_Msk           (0x1UL << EXTI_RTSR1_RT1_Pos)             /*!< 0x00000002 */
2009 #define EXTI_RTSR1_RT1               EXTI_RTSR1_RT1_Msk                        /*!< Rising trigger configuration for input line 1 */
2010 #define EXTI_RTSR1_RT2_Pos           (2U)
2011 #define EXTI_RTSR1_RT2_Msk           (0x1UL << EXTI_RTSR1_RT2_Pos)             /*!< 0x00000004 */
2012 #define EXTI_RTSR1_RT2               EXTI_RTSR1_RT2_Msk                        /*!< Rising trigger configuration for input line 2 */
2013 #define EXTI_RTSR1_RT3_Pos           (3U)
2014 #define EXTI_RTSR1_RT3_Msk           (0x1UL << EXTI_RTSR1_RT3_Pos)             /*!< 0x00000008 */
2015 #define EXTI_RTSR1_RT3               EXTI_RTSR1_RT3_Msk                        /*!< Rising trigger configuration for input line 3 */
2016 #define EXTI_RTSR1_RT4_Pos           (4U)
2017 #define EXTI_RTSR1_RT4_Msk           (0x1UL << EXTI_RTSR1_RT4_Pos)             /*!< 0x00000010 */
2018 #define EXTI_RTSR1_RT4               EXTI_RTSR1_RT4_Msk                        /*!< Rising trigger configuration for input line 4 */
2019 #define EXTI_RTSR1_RT5_Pos           (5U)
2020 #define EXTI_RTSR1_RT5_Msk           (0x1UL << EXTI_RTSR1_RT5_Pos)             /*!< 0x00000020 */
2021 #define EXTI_RTSR1_RT5               EXTI_RTSR1_RT5_Msk                        /*!< Rising trigger configuration for input line 5 */
2022 #define EXTI_RTSR1_RT6_Pos           (6U)
2023 #define EXTI_RTSR1_RT6_Msk           (0x1UL << EXTI_RTSR1_RT6_Pos)             /*!< 0x00000040 */
2024 #define EXTI_RTSR1_RT6               EXTI_RTSR1_RT6_Msk                        /*!< Rising trigger configuration for input line 6 */
2025 #define EXTI_RTSR1_RT7_Pos           (7U)
2026 #define EXTI_RTSR1_RT7_Msk           (0x1UL << EXTI_RTSR1_RT7_Pos)             /*!< 0x00000080 */
2027 #define EXTI_RTSR1_RT7               EXTI_RTSR1_RT7_Msk                        /*!< Rising trigger configuration for input line 7 */
2028 #define EXTI_RTSR1_RT8_Pos           (8U)
2029 #define EXTI_RTSR1_RT8_Msk           (0x1UL << EXTI_RTSR1_RT8_Pos)             /*!< 0x00000100 */
2030 #define EXTI_RTSR1_RT8               EXTI_RTSR1_RT8_Msk                        /*!< Rising trigger configuration for input line 8 */
2031 #define EXTI_RTSR1_RT9_Pos           (9U)
2032 #define EXTI_RTSR1_RT9_Msk           (0x1UL << EXTI_RTSR1_RT9_Pos)             /*!< 0x00000200 */
2033 #define EXTI_RTSR1_RT9               EXTI_RTSR1_RT9_Msk                        /*!< Rising trigger configuration for input line 9 */
2034 #define EXTI_RTSR1_RT10_Pos          (10U)
2035 #define EXTI_RTSR1_RT10_Msk          (0x1UL << EXTI_RTSR1_RT10_Pos)            /*!< 0x00000400 */
2036 #define EXTI_RTSR1_RT10              EXTI_RTSR1_RT10_Msk                       /*!< Rising trigger configuration for input line 10 */
2037 #define EXTI_RTSR1_RT11_Pos          (11U)
2038 #define EXTI_RTSR1_RT11_Msk          (0x1UL << EXTI_RTSR1_RT11_Pos)            /*!< 0x00000800 */
2039 #define EXTI_RTSR1_RT11              EXTI_RTSR1_RT11_Msk                       /*!< Rising trigger configuration for input line 11 */
2040 #define EXTI_RTSR1_RT12_Pos          (12U)
2041 #define EXTI_RTSR1_RT12_Msk          (0x1UL << EXTI_RTSR1_RT12_Pos)            /*!< 0x00001000 */
2042 #define EXTI_RTSR1_RT12              EXTI_RTSR1_RT12_Msk                       /*!< Rising trigger configuration for input line 12 */
2043 #define EXTI_RTSR1_RT13_Pos          (13U)
2044 #define EXTI_RTSR1_RT13_Msk          (0x1UL << EXTI_RTSR1_RT13_Pos)            /*!< 0x00002000 */
2045 #define EXTI_RTSR1_RT13              EXTI_RTSR1_RT13_Msk                       /*!< Rising trigger configuration for input line 13 */
2046 #define EXTI_RTSR1_RT14_Pos          (14U)
2047 #define EXTI_RTSR1_RT14_Msk          (0x1UL << EXTI_RTSR1_RT14_Pos)            /*!< 0x00004000 */
2048 #define EXTI_RTSR1_RT14              EXTI_RTSR1_RT14_Msk                       /*!< Rising trigger configuration for input line 14 */
2049 #define EXTI_RTSR1_RT15_Pos          (15U)
2050 #define EXTI_RTSR1_RT15_Msk          (0x1UL << EXTI_RTSR1_RT15_Pos)            /*!< 0x00008000 */
2051 #define EXTI_RTSR1_RT15              EXTI_RTSR1_RT15_Msk                       /*!< Rising trigger configuration for input line 15 */
2052 
2053 /******************  Bit definition for EXTI_FTSR1 register  ******************/
2054 #define EXTI_FTSR1_FT0_Pos           (0U)
2055 #define EXTI_FTSR1_FT0_Msk           (0x1UL << EXTI_FTSR1_FT0_Pos)             /*!< 0x00000001 */
2056 #define EXTI_FTSR1_FT0               EXTI_FTSR1_FT0_Msk                        /*!< Falling trigger configuration for input line 0 */
2057 #define EXTI_FTSR1_FT1_Pos           (1U)
2058 #define EXTI_FTSR1_FT1_Msk           (0x1UL << EXTI_FTSR1_FT1_Pos)             /*!< 0x00000002 */
2059 #define EXTI_FTSR1_FT1               EXTI_FTSR1_FT1_Msk                        /*!< Falling trigger configuration for input line 1 */
2060 #define EXTI_FTSR1_FT2_Pos           (2U)
2061 #define EXTI_FTSR1_FT2_Msk           (0x1UL << EXTI_FTSR1_FT2_Pos)             /*!< 0x00000004 */
2062 #define EXTI_FTSR1_FT2               EXTI_FTSR1_FT2_Msk                        /*!< Falling trigger configuration for input line 2 */
2063 #define EXTI_FTSR1_FT3_Pos           (3U)
2064 #define EXTI_FTSR1_FT3_Msk           (0x1UL << EXTI_FTSR1_FT3_Pos)             /*!< 0x00000008 */
2065 #define EXTI_FTSR1_FT3               EXTI_FTSR1_FT3_Msk                        /*!< Falling trigger configuration for input line 3 */
2066 #define EXTI_FTSR1_FT4_Pos           (4U)
2067 #define EXTI_FTSR1_FT4_Msk           (0x1UL << EXTI_FTSR1_FT4_Pos)             /*!< 0x00000010 */
2068 #define EXTI_FTSR1_FT4               EXTI_FTSR1_FT4_Msk                        /*!< Falling trigger configuration for input line 4 */
2069 #define EXTI_FTSR1_FT5_Pos           (5U)
2070 #define EXTI_FTSR1_FT5_Msk           (0x1UL << EXTI_FTSR1_FT5_Pos)             /*!< 0x00000020 */
2071 #define EXTI_FTSR1_FT5               EXTI_FTSR1_FT5_Msk                        /*!< Falling trigger configuration for input line 5 */
2072 #define EXTI_FTSR1_FT6_Pos           (6U)
2073 #define EXTI_FTSR1_FT6_Msk           (0x1UL << EXTI_FTSR1_FT6_Pos)             /*!< 0x00000040 */
2074 #define EXTI_FTSR1_FT6               EXTI_FTSR1_FT6_Msk                        /*!< Falling trigger configuration for input line 6 */
2075 #define EXTI_FTSR1_FT7_Pos           (7U)
2076 #define EXTI_FTSR1_FT7_Msk           (0x1UL << EXTI_FTSR1_FT7_Pos)             /*!< 0x00000080 */
2077 #define EXTI_FTSR1_FT7               EXTI_FTSR1_FT7_Msk                        /*!< Falling trigger configuration for input line 7 */
2078 #define EXTI_FTSR1_FT8_Pos           (8U)
2079 #define EXTI_FTSR1_FT8_Msk           (0x1UL << EXTI_FTSR1_FT8_Pos)             /*!< 0x00000100 */
2080 #define EXTI_FTSR1_FT8               EXTI_FTSR1_FT8_Msk                        /*!< Falling trigger configuration for input line 8 */
2081 #define EXTI_FTSR1_FT9_Pos           (9U)
2082 #define EXTI_FTSR1_FT9_Msk           (0x1UL << EXTI_FTSR1_FT9_Pos)             /*!< 0x00000200 */
2083 #define EXTI_FTSR1_FT9               EXTI_FTSR1_FT9_Msk                        /*!< Falling trigger configuration for input line 9 */
2084 #define EXTI_FTSR1_FT10_Pos          (10U)
2085 #define EXTI_FTSR1_FT10_Msk          (0x1UL << EXTI_FTSR1_FT10_Pos)            /*!< 0x00000400 */
2086 #define EXTI_FTSR1_FT10              EXTI_FTSR1_FT10_Msk                       /*!< Falling trigger configuration for input line 10 */
2087 #define EXTI_FTSR1_FT11_Pos          (11U)
2088 #define EXTI_FTSR1_FT11_Msk          (0x1UL << EXTI_FTSR1_FT11_Pos)            /*!< 0x00000800 */
2089 #define EXTI_FTSR1_FT11              EXTI_FTSR1_FT11_Msk                       /*!< Falling trigger configuration for input line 11 */
2090 #define EXTI_FTSR1_FT12_Pos          (12U)
2091 #define EXTI_FTSR1_FT12_Msk          (0x1UL << EXTI_FTSR1_FT12_Pos)            /*!< 0x00001000 */
2092 #define EXTI_FTSR1_FT12              EXTI_FTSR1_FT12_Msk                       /*!< Falling trigger configuration for input line 12 */
2093 #define EXTI_FTSR1_FT13_Pos          (13U)
2094 #define EXTI_FTSR1_FT13_Msk          (0x1UL << EXTI_FTSR1_FT13_Pos)            /*!< 0x00002000 */
2095 #define EXTI_FTSR1_FT13              EXTI_FTSR1_FT13_Msk                       /*!< Falling trigger configuration for input line 13 */
2096 #define EXTI_FTSR1_FT14_Pos          (14U)
2097 #define EXTI_FTSR1_FT14_Msk          (0x1UL << EXTI_FTSR1_FT14_Pos)            /*!< 0x00004000 */
2098 #define EXTI_FTSR1_FT14              EXTI_FTSR1_FT14_Msk                       /*!< Falling trigger configuration for input line 14 */
2099 #define EXTI_FTSR1_FT15_Pos          (15U)
2100 #define EXTI_FTSR1_FT15_Msk          (0x1UL << EXTI_FTSR1_FT15_Pos)            /*!< 0x00008000 */
2101 #define EXTI_FTSR1_FT15              EXTI_FTSR1_FT15_Msk                       /*!< Falling trigger configuration for input line 15 */
2102 
2103 /******************  Bit definition for EXTI_SWIER1 register  *****************/
2104 #define EXTI_SWIER1_SWI0_Pos         (0U)
2105 #define EXTI_SWIER1_SWI0_Msk         (0x1UL << EXTI_SWIER1_SWI0_Pos)           /*!< 0x00000001 */
2106 #define EXTI_SWIER1_SWI0             EXTI_SWIER1_SWI0_Msk                      /*!< Software Interrupt on line 0 */
2107 #define EXTI_SWIER1_SWI1_Pos         (1U)
2108 #define EXTI_SWIER1_SWI1_Msk         (0x1UL << EXTI_SWIER1_SWI1_Pos)           /*!< 0x00000002 */
2109 #define EXTI_SWIER1_SWI1             EXTI_SWIER1_SWI1_Msk                      /*!< Software Interrupt on line 1 */
2110 #define EXTI_SWIER1_SWI2_Pos         (2U)
2111 #define EXTI_SWIER1_SWI2_Msk         (0x1UL << EXTI_SWIER1_SWI2_Pos)           /*!< 0x00000004 */
2112 #define EXTI_SWIER1_SWI2             EXTI_SWIER1_SWI2_Msk                      /*!< Software Interrupt on line 2 */
2113 #define EXTI_SWIER1_SWI3_Pos         (3U)
2114 #define EXTI_SWIER1_SWI3_Msk         (0x1UL << EXTI_SWIER1_SWI3_Pos)           /*!< 0x00000008 */
2115 #define EXTI_SWIER1_SWI3             EXTI_SWIER1_SWI3_Msk                      /*!< Software Interrupt on line 3 */
2116 #define EXTI_SWIER1_SWI4_Pos         (4U)
2117 #define EXTI_SWIER1_SWI4_Msk         (0x1UL << EXTI_SWIER1_SWI4_Pos)           /*!< 0x00000010 */
2118 #define EXTI_SWIER1_SWI4             EXTI_SWIER1_SWI4_Msk                      /*!< Software Interrupt on line 4 */
2119 #define EXTI_SWIER1_SWI5_Pos         (5U)
2120 #define EXTI_SWIER1_SWI5_Msk         (0x1UL << EXTI_SWIER1_SWI5_Pos)           /*!< 0x00000020 */
2121 #define EXTI_SWIER1_SWI5             EXTI_SWIER1_SWI5_Msk                      /*!< Software Interrupt on line 5 */
2122 #define EXTI_SWIER1_SWI6_Pos         (6U)
2123 #define EXTI_SWIER1_SWI6_Msk         (0x1UL << EXTI_SWIER1_SWI6_Pos)           /*!< 0x00000040 */
2124 #define EXTI_SWIER1_SWI6             EXTI_SWIER1_SWI6_Msk                      /*!< Software Interrupt on line 6 */
2125 #define EXTI_SWIER1_SWI7_Pos         (7U)
2126 #define EXTI_SWIER1_SWI7_Msk         (0x1UL << EXTI_SWIER1_SWI7_Pos)           /*!< 0x00000080 */
2127 #define EXTI_SWIER1_SWI7             EXTI_SWIER1_SWI7_Msk                      /*!< Software Interrupt on line 7 */
2128 #define EXTI_SWIER1_SWI8_Pos         (8U)
2129 #define EXTI_SWIER1_SWI8_Msk         (0x1UL << EXTI_SWIER1_SWI8_Pos)           /*!< 0x00000100 */
2130 #define EXTI_SWIER1_SWI8             EXTI_SWIER1_SWI8_Msk                      /*!< Software Interrupt on line 8 */
2131 #define EXTI_SWIER1_SWI9_Pos         (9U)
2132 #define EXTI_SWIER1_SWI9_Msk         (0x1UL << EXTI_SWIER1_SWI9_Pos)           /*!< 0x00000200 */
2133 #define EXTI_SWIER1_SWI9             EXTI_SWIER1_SWI9_Msk                      /*!< Software Interrupt on line 9 */
2134 #define EXTI_SWIER1_SWI10_Pos        (10U)
2135 #define EXTI_SWIER1_SWI10_Msk        (0x1UL << EXTI_SWIER1_SWI10_Pos)          /*!< 0x00000400 */
2136 #define EXTI_SWIER1_SWI10            EXTI_SWIER1_SWI10_Msk                     /*!< Software Interrupt on line 10 */
2137 #define EXTI_SWIER1_SWI11_Pos        (11U)
2138 #define EXTI_SWIER1_SWI11_Msk        (0x1UL << EXTI_SWIER1_SWI11_Pos)          /*!< 0x00000800 */
2139 #define EXTI_SWIER1_SWI11            EXTI_SWIER1_SWI11_Msk                     /*!< Software Interrupt on line 11 */
2140 #define EXTI_SWIER1_SWI12_Pos        (12U)
2141 #define EXTI_SWIER1_SWI12_Msk        (0x1UL << EXTI_SWIER1_SWI12_Pos)          /*!< 0x00001000 */
2142 #define EXTI_SWIER1_SWI12            EXTI_SWIER1_SWI12_Msk                     /*!< Software Interrupt on line 12 */
2143 #define EXTI_SWIER1_SWI13_Pos        (13U)
2144 #define EXTI_SWIER1_SWI13_Msk        (0x1UL << EXTI_SWIER1_SWI13_Pos)          /*!< 0x00002000 */
2145 #define EXTI_SWIER1_SWI13            EXTI_SWIER1_SWI13_Msk                     /*!< Software Interrupt on line 13 */
2146 #define EXTI_SWIER1_SWI14_Pos        (14U)
2147 #define EXTI_SWIER1_SWI14_Msk        (0x1UL << EXTI_SWIER1_SWI14_Pos)          /*!< 0x00004000 */
2148 #define EXTI_SWIER1_SWI14            EXTI_SWIER1_SWI14_Msk                     /*!< Software Interrupt on line 14 */
2149 #define EXTI_SWIER1_SWI15_Pos        (15U)
2150 #define EXTI_SWIER1_SWI15_Msk        (0x1UL << EXTI_SWIER1_SWI15_Pos)          /*!< 0x00008000 */
2151 #define EXTI_SWIER1_SWI15            EXTI_SWIER1_SWI15_Msk                     /*!< Software Interrupt on line 15 */
2152 
2153 /*******************  Bit definition for EXTI_RPR1 register  ******************/
2154 #define EXTI_RPR1_RPIF0_Pos          (0U)
2155 #define EXTI_RPR1_RPIF0_Msk          (0x1UL << EXTI_RPR1_RPIF0_Pos)            /*!< 0x00000001 */
2156 #define EXTI_RPR1_RPIF0              EXTI_RPR1_RPIF0_Msk                       /*!< Rising Pending Interrupt Flag on line 0 */
2157 #define EXTI_RPR1_RPIF1_Pos          (1U)
2158 #define EXTI_RPR1_RPIF1_Msk          (0x1UL << EXTI_RPR1_RPIF1_Pos)            /*!< 0x00000002 */
2159 #define EXTI_RPR1_RPIF1              EXTI_RPR1_RPIF1_Msk                       /*!< Rising Pending Interrupt Flag on line 1 */
2160 #define EXTI_RPR1_RPIF2_Pos          (2U)
2161 #define EXTI_RPR1_RPIF2_Msk          (0x1UL << EXTI_RPR1_RPIF2_Pos)            /*!< 0x00000004 */
2162 #define EXTI_RPR1_RPIF2              EXTI_RPR1_RPIF2_Msk                       /*!< Rising Pending Interrupt Flag on line 2 */
2163 #define EXTI_RPR1_RPIF3_Pos          (3U)
2164 #define EXTI_RPR1_RPIF3_Msk          (0x1UL << EXTI_RPR1_RPIF3_Pos)            /*!< 0x00000008 */
2165 #define EXTI_RPR1_RPIF3              EXTI_RPR1_RPIF3_Msk                       /*!< Rising Pending Interrupt Flag on line 3 */
2166 #define EXTI_RPR1_RPIF4_Pos          (4U)
2167 #define EXTI_RPR1_RPIF4_Msk          (0x1UL << EXTI_RPR1_RPIF4_Pos)            /*!< 0x00000010 */
2168 #define EXTI_RPR1_RPIF4              EXTI_RPR1_RPIF4_Msk                       /*!< Rising Pending Interrupt Flag on line 4 */
2169 #define EXTI_RPR1_RPIF5_Pos          (5U)
2170 #define EXTI_RPR1_RPIF5_Msk          (0x1UL << EXTI_RPR1_RPIF5_Pos)            /*!< 0x00000020 */
2171 #define EXTI_RPR1_RPIF5              EXTI_RPR1_RPIF5_Msk                       /*!< Rising Pending Interrupt Flag on line 5 */
2172 #define EXTI_RPR1_RPIF6_Pos          (6U)
2173 #define EXTI_RPR1_RPIF6_Msk          (0x1UL << EXTI_RPR1_RPIF6_Pos)            /*!< 0x00000040 */
2174 #define EXTI_RPR1_RPIF6              EXTI_RPR1_RPIF6_Msk                       /*!< Rising Pending Interrupt Flag on line 6 */
2175 #define EXTI_RPR1_RPIF7_Pos          (7U)
2176 #define EXTI_RPR1_RPIF7_Msk          (0x1UL << EXTI_RPR1_RPIF7_Pos)            /*!< 0x00000080 */
2177 #define EXTI_RPR1_RPIF7              EXTI_RPR1_RPIF7_Msk                       /*!< Rising Pending Interrupt Flag on line 7 */
2178 #define EXTI_RPR1_RPIF8_Pos          (8U)
2179 #define EXTI_RPR1_RPIF8_Msk          (0x1UL << EXTI_RPR1_RPIF8_Pos)            /*!< 0x00000100 */
2180 #define EXTI_RPR1_RPIF8              EXTI_RPR1_RPIF8_Msk                       /*!< Rising Pending Interrupt Flag on line 8 */
2181 #define EXTI_RPR1_RPIF9_Pos          (9U)
2182 #define EXTI_RPR1_RPIF9_Msk          (0x1UL << EXTI_RPR1_RPIF9_Pos)            /*!< 0x00000200 */
2183 #define EXTI_RPR1_RPIF9              EXTI_RPR1_RPIF9_Msk                       /*!< Rising Pending Interrupt Flag on line 9 */
2184 #define EXTI_RPR1_RPIF10_Pos         (10U)
2185 #define EXTI_RPR1_RPIF10_Msk         (0x1UL << EXTI_RPR1_RPIF10_Pos)           /*!< 0x00000400 */
2186 #define EXTI_RPR1_RPIF10             EXTI_RPR1_RPIF10_Msk                      /*!< Rising Pending Interrupt Flag on line 10 */
2187 #define EXTI_RPR1_RPIF11_Pos         (11U)
2188 #define EXTI_RPR1_RPIF11_Msk         (0x1UL << EXTI_RPR1_RPIF11_Pos)           /*!< 0x00000800 */
2189 #define EXTI_RPR1_RPIF11             EXTI_RPR1_RPIF11_Msk                      /*!< Rising Pending Interrupt Flag on line 11 */
2190 #define EXTI_RPR1_RPIF12_Pos         (12U)
2191 #define EXTI_RPR1_RPIF12_Msk         (0x1UL << EXTI_RPR1_RPIF12_Pos)           /*!< 0x00001000 */
2192 #define EXTI_RPR1_RPIF12             EXTI_RPR1_RPIF12_Msk                      /*!< Rising Pending Interrupt Flag on line 12 */
2193 #define EXTI_RPR1_RPIF13_Pos         (13U)
2194 #define EXTI_RPR1_RPIF13_Msk         (0x1UL << EXTI_RPR1_RPIF13_Pos)           /*!< 0x00002000 */
2195 #define EXTI_RPR1_RPIF13             EXTI_RPR1_RPIF13_Msk                      /*!< Rising Pending Interrupt Flag on line 13 */
2196 #define EXTI_RPR1_RPIF14_Pos         (14U)
2197 #define EXTI_RPR1_RPIF14_Msk         (0x1UL << EXTI_RPR1_RPIF14_Pos)           /*!< 0x00004000 */
2198 #define EXTI_RPR1_RPIF14             EXTI_RPR1_RPIF14_Msk                      /*!< Rising Pending Interrupt Flag on line 14 */
2199 #define EXTI_RPR1_RPIF15_Pos         (15U)
2200 #define EXTI_RPR1_RPIF15_Msk         (0x1UL << EXTI_RPR1_RPIF15_Pos)           /*!< 0x00008000 */
2201 #define EXTI_RPR1_RPIF15             EXTI_RPR1_RPIF15_Msk                      /*!< Rising Pending Interrupt Flag on line 15 */
2202 
2203 /*******************  Bit definition for EXTI_FPR1 register  ******************/
2204 #define EXTI_FPR1_FPIF0_Pos          (0U)
2205 #define EXTI_FPR1_FPIF0_Msk          (0x1UL << EXTI_FPR1_FPIF0_Pos)            /*!< 0x00000001 */
2206 #define EXTI_FPR1_FPIF0              EXTI_FPR1_FPIF0_Msk                       /*!< Falling Pending Interrupt Flag on line 0 */
2207 #define EXTI_FPR1_FPIF1_Pos          (1U)
2208 #define EXTI_FPR1_FPIF1_Msk          (0x1UL << EXTI_FPR1_FPIF1_Pos)            /*!< 0x00000002 */
2209 #define EXTI_FPR1_FPIF1              EXTI_FPR1_FPIF1_Msk                       /*!< Falling Pending Interrupt Flag on line 1 */
2210 #define EXTI_FPR1_FPIF2_Pos          (2U)
2211 #define EXTI_FPR1_FPIF2_Msk          (0x1UL << EXTI_FPR1_FPIF2_Pos)            /*!< 0x00000004 */
2212 #define EXTI_FPR1_FPIF2              EXTI_FPR1_FPIF2_Msk                       /*!< Falling Pending Interrupt Flag on line 2 */
2213 #define EXTI_FPR1_FPIF3_Pos          (3U)
2214 #define EXTI_FPR1_FPIF3_Msk          (0x1UL << EXTI_FPR1_FPIF3_Pos)            /*!< 0x00000008 */
2215 #define EXTI_FPR1_FPIF3              EXTI_FPR1_FPIF3_Msk                       /*!< Falling Pending Interrupt Flag on line 3 */
2216 #define EXTI_FPR1_FPIF4_Pos          (4U)
2217 #define EXTI_FPR1_FPIF4_Msk          (0x1UL << EXTI_FPR1_FPIF4_Pos)            /*!< 0x00000010 */
2218 #define EXTI_FPR1_FPIF4              EXTI_FPR1_FPIF4_Msk                       /*!< Falling Pending Interrupt Flag on line 4 */
2219 #define EXTI_FPR1_FPIF5_Pos          (5U)
2220 #define EXTI_FPR1_FPIF5_Msk          (0x1UL << EXTI_FPR1_FPIF5_Pos)            /*!< 0x00000020 */
2221 #define EXTI_FPR1_FPIF5              EXTI_FPR1_FPIF5_Msk                       /*!< Falling Pending Interrupt Flag on line 5 */
2222 #define EXTI_FPR1_FPIF6_Pos          (6U)
2223 #define EXTI_FPR1_FPIF6_Msk          (0x1UL << EXTI_FPR1_FPIF6_Pos)            /*!< 0x00000040 */
2224 #define EXTI_FPR1_FPIF6              EXTI_FPR1_FPIF6_Msk                       /*!< Falling Pending Interrupt Flag on line 6 */
2225 #define EXTI_FPR1_FPIF7_Pos          (7U)
2226 #define EXTI_FPR1_FPIF7_Msk          (0x1UL << EXTI_FPR1_FPIF7_Pos)            /*!< 0x00000080 */
2227 #define EXTI_FPR1_FPIF7              EXTI_FPR1_FPIF7_Msk                       /*!< Falling Pending Interrupt Flag on line 7 */
2228 #define EXTI_FPR1_FPIF8_Pos          (8U)
2229 #define EXTI_FPR1_FPIF8_Msk          (0x1UL << EXTI_FPR1_FPIF8_Pos)            /*!< 0x00000100 */
2230 #define EXTI_FPR1_FPIF8              EXTI_FPR1_FPIF8_Msk                       /*!< Falling Pending Interrupt Flag on line 8 */
2231 #define EXTI_FPR1_FPIF9_Pos          (9U)
2232 #define EXTI_FPR1_FPIF9_Msk          (0x1UL << EXTI_FPR1_FPIF9_Pos)            /*!< 0x00000200 */
2233 #define EXTI_FPR1_FPIF9              EXTI_FPR1_FPIF9_Msk                       /*!< Falling Pending Interrupt Flag on line 9 */
2234 #define EXTI_FPR1_FPIF10_Pos         (10U)
2235 #define EXTI_FPR1_FPIF10_Msk         (0x1UL << EXTI_FPR1_FPIF10_Pos)           /*!< 0x00000400 */
2236 #define EXTI_FPR1_FPIF10             EXTI_FPR1_FPIF10_Msk                      /*!< Falling Pending Interrupt Flag on line 10 */
2237 #define EXTI_FPR1_FPIF11_Pos         (11U)
2238 #define EXTI_FPR1_FPIF11_Msk         (0x1UL << EXTI_FPR1_FPIF11_Pos)           /*!< 0x00000800 */
2239 #define EXTI_FPR1_FPIF11             EXTI_FPR1_FPIF11_Msk                      /*!< Falling Pending Interrupt Flag on line 11 */
2240 #define EXTI_FPR1_FPIF12_Pos         (12U)
2241 #define EXTI_FPR1_FPIF12_Msk         (0x1UL << EXTI_FPR1_FPIF12_Pos)           /*!< 0x00001000 */
2242 #define EXTI_FPR1_FPIF12             EXTI_FPR1_FPIF12_Msk                      /*!< Falling Pending Interrupt Flag on line 12 */
2243 #define EXTI_FPR1_FPIF13_Pos         (13U)
2244 #define EXTI_FPR1_FPIF13_Msk         (0x1UL << EXTI_FPR1_FPIF13_Pos)           /*!< 0x00002000 */
2245 #define EXTI_FPR1_FPIF13             EXTI_FPR1_FPIF13_Msk                      /*!< Falling Pending Interrupt Flag on line 13 */
2246 #define EXTI_FPR1_FPIF14_Pos         (14U)
2247 #define EXTI_FPR1_FPIF14_Msk         (0x1UL << EXTI_FPR1_FPIF14_Pos)           /*!< 0x00004000 */
2248 #define EXTI_FPR1_FPIF14             EXTI_FPR1_FPIF14_Msk                      /*!< Falling Pending Interrupt Flag on line 14 */
2249 #define EXTI_FPR1_FPIF15_Pos         (15U)
2250 #define EXTI_FPR1_FPIF15_Msk         (0x1UL << EXTI_FPR1_FPIF15_Pos)           /*!< 0x00008000 */
2251 #define EXTI_FPR1_FPIF15             EXTI_FPR1_FPIF15_Msk                      /*!< Falling Pending Interrupt Flag on line 15 */
2252 
2253 /******************  Bit definition for EXTI_RTSR2 register  ******************/
2254 #define EXTI_RTSR2_RT34_Pos           (2U)
2255 #define EXTI_RTSR2_RT34_Msk           (0x1UL << EXTI_RTSR2_RT34_Pos)             /*!< 0x00000004 */
2256 #define EXTI_RTSR2_RT34               EXTI_RTSR2_RT34_Msk                        /*!< Rising trigger configuration for input line 34 */
2257 
2258 /******************  Bit definition for EXTI_FTSR2 register  ******************/
2259 #define EXTI_FTSR2_FT34_Pos           (2U)
2260 #define EXTI_FTSR2_FT34_Msk           (0x1UL << EXTI_FTSR2_FT34_Pos)             /*!< 0x00000004 */
2261 #define EXTI_FTSR2_FT34               EXTI_FTSR2_FT34_Msk                        /*!< Falling trigger configuration for input line 34 */
2262 
2263 /******************  Bit definition for EXTI_SWIER2 register  *****************/
2264 #define EXTI_SWIER2_SWI34_Pos         (2U)
2265 #define EXTI_SWIER2_SWI34_Msk         (0x1UL << EXTI_SWIER2_SWI34_Pos)           /*!< 0x00000004 */
2266 #define EXTI_SWIER2_SWI34             EXTI_SWIER2_SWI34_Msk                      /*!< Software Interrupt on line 34 */
2267 
2268 /*******************  Bit definition for EXTI_RPR2 register  ******************/
2269 #define EXTI_RPR2_RPIF34_Pos         (2U)
2270 #define EXTI_RPR2_RPIF34_Msk         (0x1UL << EXTI_RPR2_RPIF34_Pos)            /*!< 0x00000004 */
2271 #define EXTI_RPR2_RPIF34             EXTI_RPR2_RPIF34_Msk                       /*!< Rising Pending Interrupt Flag on line 34 */
2272 
2273 /*******************  Bit definition for EXTI_FPR2 register  ******************/
2274 #define EXTI_FPR2_RPIF34_Pos         (2U)
2275 #define EXTI_FPR2_RPIF34_Msk         (0x1UL << EXTI_FPR2_RPIF34_Pos)            /*!< 0x00000004 */
2276 #define EXTI_FPR2_RPIF34             EXTI_FPR2_RPIF34_Msk                       /*!< Rising Pending Interrupt Flag on line 34 */
2277 
2278 /*****************  Bit definition for EXTI_EXTICR1 register  **************/
2279 #define EXTI_EXTICR1_EXTI0_Pos       (0U)
2280 #define EXTI_EXTICR1_EXTI0_Msk       (0x7UL << EXTI_EXTICR1_EXTI0_Pos)         /*!< 0x00000007 */
2281 #define EXTI_EXTICR1_EXTI0           EXTI_EXTICR1_EXTI0_Msk                    /*!< EXTI 0 configuration */
2282 #define EXTI_EXTICR1_EXTI0_0         (0x1UL << EXTI_EXTICR1_EXTI0_Pos)         /*!< 0x00000001 */
2283 #define EXTI_EXTICR1_EXTI0_1         (0x2UL << EXTI_EXTICR1_EXTI0_Pos)         /*!< 0x00000002 */
2284 #define EXTI_EXTICR1_EXTI0_2         (0x4UL << EXTI_EXTICR1_EXTI0_Pos)         /*!< 0x00000004 */
2285 #define EXTI_EXTICR1_EXTI1_Pos       (8U)
2286 #define EXTI_EXTICR1_EXTI1_Msk       (0x7UL << EXTI_EXTICR1_EXTI1_Pos)         /*!< 0x00000700 */
2287 #define EXTI_EXTICR1_EXTI1           EXTI_EXTICR1_EXTI1_Msk                    /*!< EXTI 1 configuration */
2288 #define EXTI_EXTICR1_EXTI1_0         (0x1UL << EXTI_EXTICR1_EXTI1_Pos)         /*!< 0x00000100 */
2289 #define EXTI_EXTICR1_EXTI1_1         (0x2UL << EXTI_EXTICR1_EXTI1_Pos)         /*!< 0x00000200 */
2290 #define EXTI_EXTICR1_EXTI1_2         (0x4UL << EXTI_EXTICR1_EXTI1_Pos)         /*!< 0x00000400 */
2291 #define EXTI_EXTICR1_EXTI2_Pos       (16U)
2292 #define EXTI_EXTICR1_EXTI2_Msk       (0x7UL << EXTI_EXTICR1_EXTI2_Pos)         /*!< 0x00070000 */
2293 #define EXTI_EXTICR1_EXTI2           EXTI_EXTICR1_EXTI2_Msk                    /*!< EXTI 2 configuration */
2294 #define EXTI_EXTICR1_EXTI2_0         (0x1UL << EXTI_EXTICR1_EXTI2_Pos)         /*!< 0x00010000 */
2295 #define EXTI_EXTICR1_EXTI2_1         (0x2UL << EXTI_EXTICR1_EXTI2_Pos)         /*!< 0x00020000 */
2296 #define EXTI_EXTICR1_EXTI2_2         (0x4UL << EXTI_EXTICR1_EXTI2_Pos)         /*!< 0x00040000 */
2297 #define EXTI_EXTICR1_EXTI3_Pos       (24U)
2298 #define EXTI_EXTICR1_EXTI3_Msk       (0x7UL << EXTI_EXTICR1_EXTI3_Pos)         /*!< 0x07000000 */
2299 #define EXTI_EXTICR1_EXTI3           EXTI_EXTICR1_EXTI3_Msk                    /*!< EXTI 3 configuration */
2300 #define EXTI_EXTICR1_EXTI3_0         (0x1UL << EXTI_EXTICR1_EXTI3_Pos)         /*!< 0x01000000 */
2301 #define EXTI_EXTICR1_EXTI3_1         (0x2UL << EXTI_EXTICR1_EXTI3_Pos)         /*!< 0x02000000 */
2302 #define EXTI_EXTICR1_EXTI3_2         (0x4UL << EXTI_EXTICR1_EXTI3_Pos)         /*!< 0x04000000 */
2303 
2304 /*****************  Bit definition for EXTI_EXTICR2 register  **************/
2305 #define EXTI_EXTICR2_EXTI4_Pos       (0U)
2306 #define EXTI_EXTICR2_EXTI4_Msk       (0x7UL << EXTI_EXTICR2_EXTI4_Pos)         /*!< 0x00000007 */
2307 #define EXTI_EXTICR2_EXTI4           EXTI_EXTICR2_EXTI4_Msk                    /*!< EXTI 4 configuration */
2308 #define EXTI_EXTICR2_EXTI4_0         (0x1UL << EXTI_EXTICR2_EXTI4_Pos)         /*!< 0x00000001 */
2309 #define EXTI_EXTICR2_EXTI4_1         (0x2UL << EXTI_EXTICR2_EXTI4_Pos)         /*!< 0x00000002 */
2310 #define EXTI_EXTICR2_EXTI4_2         (0x4UL << EXTI_EXTICR2_EXTI4_Pos)         /*!< 0x00000004 */
2311 #define EXTI_EXTICR2_EXTI5_Pos       (8U)
2312 #define EXTI_EXTICR2_EXTI5_Msk       (0x7UL << EXTI_EXTICR2_EXTI5_Pos)         /*!< 0x00000700 */
2313 #define EXTI_EXTICR2_EXTI5           EXTI_EXTICR2_EXTI5_Msk                    /*!< EXTI 5 configuration */
2314 #define EXTI_EXTICR2_EXTI5_0         (0x1UL << EXTI_EXTICR2_EXTI5_Pos)         /*!< 0x00000100 */
2315 #define EXTI_EXTICR2_EXTI5_1         (0x2UL << EXTI_EXTICR2_EXTI5_Pos)         /*!< 0x00000200 */
2316 #define EXTI_EXTICR2_EXTI5_2         (0x4UL << EXTI_EXTICR2_EXTI5_Pos)         /*!< 0x00000400 */
2317 #define EXTI_EXTICR2_EXTI6_Pos       (16U)
2318 #define EXTI_EXTICR2_EXTI6_Msk       (0x7UL << EXTI_EXTICR2_EXTI6_Pos)         /*!< 0x00070000 */
2319 #define EXTI_EXTICR2_EXTI6           EXTI_EXTICR2_EXTI6_Msk                    /*!< EXTI 6 configuration */
2320 #define EXTI_EXTICR2_EXTI6_0         (0x1UL << EXTI_EXTICR2_EXTI6_Pos)         /*!< 0x00010000 */
2321 #define EXTI_EXTICR2_EXTI6_1         (0x2UL << EXTI_EXTICR2_EXTI6_Pos)         /*!< 0x00020000 */
2322 #define EXTI_EXTICR2_EXTI6_2         (0x4UL << EXTI_EXTICR2_EXTI6_Pos)         /*!< 0x00040000 */
2323 #define EXTI_EXTICR2_EXTI7_Pos       (24U)
2324 #define EXTI_EXTICR2_EXTI7_Msk       (0x7UL << EXTI_EXTICR2_EXTI7_Pos)         /*!< 0x07000000 */
2325 #define EXTI_EXTICR2_EXTI7           EXTI_EXTICR2_EXTI7_Msk                    /*!< EXTI 7 configuration */
2326 #define EXTI_EXTICR2_EXTI7_0         (0x1UL << EXTI_EXTICR2_EXTI7_Pos)         /*!< 0x01000000 */
2327 #define EXTI_EXTICR2_EXTI7_1         (0x2UL << EXTI_EXTICR2_EXTI7_Pos)         /*!< 0x02000000 */
2328 #define EXTI_EXTICR2_EXTI7_2         (0x4UL << EXTI_EXTICR2_EXTI7_Pos)         /*!< 0x04000000 */
2329 
2330 /*****************  Bit definition for EXTI_EXTICR3 register  **************/
2331 #define EXTI_EXTICR3_EXTI8_Pos       (0U)
2332 #define EXTI_EXTICR3_EXTI8_Msk       (0x7UL << EXTI_EXTICR3_EXTI8_Pos)         /*!< 0x00000007 */
2333 #define EXTI_EXTICR3_EXTI8           EXTI_EXTICR3_EXTI8_Msk                    /*!< EXTI 8 configuration */
2334 #define EXTI_EXTICR3_EXTI8_0         (0x1UL << EXTI_EXTICR3_EXTI8_Pos)         /*!< 0x00000001 */
2335 #define EXTI_EXTICR3_EXTI8_1         (0x2UL << EXTI_EXTICR3_EXTI8_Pos)         /*!< 0x00000002 */
2336 #define EXTI_EXTICR3_EXTI8_2         (0x4UL << EXTI_EXTICR3_EXTI8_Pos)         /*!< 0x00000004 */
2337 #define EXTI_EXTICR3_EXTI9_Pos       (8U)
2338 #define EXTI_EXTICR3_EXTI9_Msk       (0x7UL << EXTI_EXTICR3_EXTI9_Pos)         /*!< 0x00000700 */
2339 #define EXTI_EXTICR3_EXTI9           EXTI_EXTICR3_EXTI9_Msk                    /*!< EXTI 9 configuration */
2340 #define EXTI_EXTICR3_EXTI9_0         (0x1UL << EXTI_EXTICR3_EXTI9_Pos)         /*!< 0x00000100 */
2341 #define EXTI_EXTICR3_EXTI9_1         (0x2UL << EXTI_EXTICR3_EXTI9_Pos)         /*!< 0x00000200 */
2342 #define EXTI_EXTICR3_EXTI9_2         (0x4UL << EXTI_EXTICR3_EXTI9_Pos)         /*!< 0x00000400 */
2343 #define EXTI_EXTICR3_EXTI10_Pos      (16U)
2344 #define EXTI_EXTICR3_EXTI10_Msk      (0x7UL << EXTI_EXTICR3_EXTI10_Pos)        /*!< 0x00070000 */
2345 #define EXTI_EXTICR3_EXTI10          EXTI_EXTICR3_EXTI10_Msk                   /*!< EXTI 10 configuration */
2346 #define EXTI_EXTICR3_EXTI10_0        (0x1UL << EXTI_EXTICR3_EXTI10_Pos)        /*!< 0x00010000 */
2347 #define EXTI_EXTICR3_EXTI10_1        (0x2UL << EXTI_EXTICR3_EXTI10_Pos)        /*!< 0x00020000 */
2348 #define EXTI_EXTICR3_EXTI10_2        (0x4UL << EXTI_EXTICR3_EXTI10_Pos)        /*!< 0x00040000 */
2349 #define EXTI_EXTICR3_EXTI11_Pos      (24U)
2350 #define EXTI_EXTICR3_EXTI11_Msk      (0x7UL << EXTI_EXTICR3_EXTI11_Pos)        /*!< 0x07000000 */
2351 #define EXTI_EXTICR3_EXTI11          EXTI_EXTICR3_EXTI11_Msk                   /*!< EXTI 11 configuration */
2352 #define EXTI_EXTICR3_EXTI11_0        (0x1UL << EXTI_EXTICR3_EXTI11_Pos)        /*!< 0x01000000 */
2353 #define EXTI_EXTICR3_EXTI11_1        (0x2UL << EXTI_EXTICR3_EXTI11_Pos)        /*!< 0x02000000 */
2354 #define EXTI_EXTICR3_EXTI11_2        (0x4UL << EXTI_EXTICR3_EXTI11_Pos)        /*!< 0x04000000 */
2355 
2356 /*****************  Bit definition for EXTI_EXTICR4 register  **************/
2357 #define EXTI_EXTICR4_EXTI12_Pos      (0U)
2358 #define EXTI_EXTICR4_EXTI12_Msk      (0x7UL << EXTI_EXTICR4_EXTI12_Pos)        /*!< 0x00000007 */
2359 #define EXTI_EXTICR4_EXTI12          EXTI_EXTICR4_EXTI12_Msk                   /*!< EXTI 12 configuration */
2360 #define EXTI_EXTICR4_EXTI12_0        (0x1UL << EXTI_EXTICR4_EXTI12_Pos)        /*!< 0x00000001 */
2361 #define EXTI_EXTICR4_EXTI12_1        (0x2UL << EXTI_EXTICR4_EXTI12_Pos)        /*!< 0x00000002 */
2362 #define EXTI_EXTICR4_EXTI12_2        (0x4UL << EXTI_EXTICR4_EXTI12_Pos)        /*!< 0x00000004 */
2363 #define EXTI_EXTICR4_EXTI13_Pos      (8U)
2364 #define EXTI_EXTICR4_EXTI13_Msk      (0x7UL << EXTI_EXTICR4_EXTI13_Pos)        /*!< 0x00000700 */
2365 #define EXTI_EXTICR4_EXTI13          EXTI_EXTICR4_EXTI13_Msk                   /*!< EXTI 13 configuration */
2366 #define EXTI_EXTICR4_EXTI13_0        (0x1UL << EXTI_EXTICR4_EXTI13_Pos)        /*!< 0x00000100 */
2367 #define EXTI_EXTICR4_EXTI13_1        (0x2UL << EXTI_EXTICR4_EXTI13_Pos)        /*!< 0x00000200 */
2368 #define EXTI_EXTICR4_EXTI13_2        (0x4UL << EXTI_EXTICR4_EXTI13_Pos)        /*!< 0x00000400 */
2369 #define EXTI_EXTICR4_EXTI14_Pos      (16U)
2370 #define EXTI_EXTICR4_EXTI14_Msk      (0x7UL << EXTI_EXTICR4_EXTI14_Pos)        /*!< 0x00070000 */
2371 #define EXTI_EXTICR4_EXTI14          EXTI_EXTICR4_EXTI14_Msk                   /*!< EXTI 14 configuration */
2372 #define EXTI_EXTICR4_EXTI14_0        (0x1UL << EXTI_EXTICR4_EXTI14_Pos)        /*!< 0x00010000 */
2373 #define EXTI_EXTICR4_EXTI14_1        (0x2UL << EXTI_EXTICR4_EXTI14_Pos)        /*!< 0x00020000 */
2374 #define EXTI_EXTICR4_EXTI14_2        (0x4UL << EXTI_EXTICR4_EXTI14_Pos)        /*!< 0x00040000 */
2375 #define EXTI_EXTICR4_EXTI15_Pos      (24U)
2376 #define EXTI_EXTICR4_EXTI15_Msk      (0x7UL << EXTI_EXTICR4_EXTI15_Pos)        /*!< 0x07000000 */
2377 #define EXTI_EXTICR4_EXTI15          EXTI_EXTICR4_EXTI15_Msk                   /*!< EXTI 15 configuration */
2378 #define EXTI_EXTICR4_EXTI15_0        (0x1UL << EXTI_EXTICR4_EXTI15_Pos)        /*!< 0x01000000 */
2379 #define EXTI_EXTICR4_EXTI15_1        (0x2UL << EXTI_EXTICR4_EXTI15_Pos)        /*!< 0x02000000 */
2380 #define EXTI_EXTICR4_EXTI15_2        (0x4UL << EXTI_EXTICR4_EXTI15_Pos)        /*!< 0x04000000 */
2381 
2382 /*******************  Bit definition for EXTI_IMR1 register  ******************/
2383 #define EXTI_IMR1_IM0_Pos            (0U)
2384 #define EXTI_IMR1_IM0_Msk            (0x1UL << EXTI_IMR1_IM0_Pos)              /*!< 0x00000001 */
2385 #define EXTI_IMR1_IM0                EXTI_IMR1_IM0_Msk                         /*!< Interrupt Mask on line 0 */
2386 #define EXTI_IMR1_IM1_Pos            (1U)
2387 #define EXTI_IMR1_IM1_Msk            (0x1UL << EXTI_IMR1_IM1_Pos)              /*!< 0x00000002 */
2388 #define EXTI_IMR1_IM1                EXTI_IMR1_IM1_Msk                         /*!< Interrupt Mask on line 1 */
2389 #define EXTI_IMR1_IM2_Pos            (2U)
2390 #define EXTI_IMR1_IM2_Msk            (0x1UL << EXTI_IMR1_IM2_Pos)              /*!< 0x00000004 */
2391 #define EXTI_IMR1_IM2                EXTI_IMR1_IM2_Msk                         /*!< Interrupt Mask on line 2 */
2392 #define EXTI_IMR1_IM3_Pos            (3U)
2393 #define EXTI_IMR1_IM3_Msk            (0x1UL << EXTI_IMR1_IM3_Pos)              /*!< 0x00000008 */
2394 #define EXTI_IMR1_IM3                EXTI_IMR1_IM3_Msk                         /*!< Interrupt Mask on line 3 */
2395 #define EXTI_IMR1_IM4_Pos            (4U)
2396 #define EXTI_IMR1_IM4_Msk            (0x1UL << EXTI_IMR1_IM4_Pos)              /*!< 0x00000010 */
2397 #define EXTI_IMR1_IM4                EXTI_IMR1_IM4_Msk                         /*!< Interrupt Mask on line 4 */
2398 #define EXTI_IMR1_IM5_Pos            (5U)
2399 #define EXTI_IMR1_IM5_Msk            (0x1UL << EXTI_IMR1_IM5_Pos)              /*!< 0x00000020 */
2400 #define EXTI_IMR1_IM5                EXTI_IMR1_IM5_Msk                         /*!< Interrupt Mask on line 5 */
2401 #define EXTI_IMR1_IM6_Pos            (6U)
2402 #define EXTI_IMR1_IM6_Msk            (0x1UL << EXTI_IMR1_IM6_Pos)              /*!< 0x00000040 */
2403 #define EXTI_IMR1_IM6                EXTI_IMR1_IM6_Msk                         /*!< Interrupt Mask on line 6 */
2404 #define EXTI_IMR1_IM7_Pos            (7U)
2405 #define EXTI_IMR1_IM7_Msk            (0x1UL << EXTI_IMR1_IM7_Pos)              /*!< 0x00000080 */
2406 #define EXTI_IMR1_IM7                EXTI_IMR1_IM7_Msk                         /*!< Interrupt Mask on line 7 */
2407 #define EXTI_IMR1_IM8_Pos            (8U)
2408 #define EXTI_IMR1_IM8_Msk            (0x1UL << EXTI_IMR1_IM8_Pos)              /*!< 0x00000100 */
2409 #define EXTI_IMR1_IM8                EXTI_IMR1_IM8_Msk                         /*!< Interrupt Mask on line 8 */
2410 #define EXTI_IMR1_IM9_Pos            (9U)
2411 #define EXTI_IMR1_IM9_Msk            (0x1UL << EXTI_IMR1_IM9_Pos)              /*!< 0x00000200 */
2412 #define EXTI_IMR1_IM9                EXTI_IMR1_IM9_Msk                         /*!< Interrupt Mask on line 9 */
2413 #define EXTI_IMR1_IM10_Pos           (10U)
2414 #define EXTI_IMR1_IM10_Msk           (0x1UL << EXTI_IMR1_IM10_Pos)             /*!< 0x00000400 */
2415 #define EXTI_IMR1_IM10               EXTI_IMR1_IM10_Msk                        /*!< Interrupt Mask on line 10 */
2416 #define EXTI_IMR1_IM11_Pos           (11U)
2417 #define EXTI_IMR1_IM11_Msk           (0x1UL << EXTI_IMR1_IM11_Pos)             /*!< 0x00000800 */
2418 #define EXTI_IMR1_IM11               EXTI_IMR1_IM11_Msk                        /*!< Interrupt Mask on line 11 */
2419 #define EXTI_IMR1_IM12_Pos           (12U)
2420 #define EXTI_IMR1_IM12_Msk           (0x1UL << EXTI_IMR1_IM12_Pos)             /*!< 0x00001000 */
2421 #define EXTI_IMR1_IM12               EXTI_IMR1_IM12_Msk                        /*!< Interrupt Mask on line 12 */
2422 #define EXTI_IMR1_IM13_Pos           (13U)
2423 #define EXTI_IMR1_IM13_Msk           (0x1UL << EXTI_IMR1_IM13_Pos)             /*!< 0x00002000 */
2424 #define EXTI_IMR1_IM13               EXTI_IMR1_IM13_Msk                        /*!< Interrupt Mask on line 13 */
2425 #define EXTI_IMR1_IM14_Pos           (14U)
2426 #define EXTI_IMR1_IM14_Msk           (0x1UL << EXTI_IMR1_IM14_Pos)             /*!< 0x00004000 */
2427 #define EXTI_IMR1_IM14               EXTI_IMR1_IM14_Msk                        /*!< Interrupt Mask on line 14 */
2428 #define EXTI_IMR1_IM15_Pos           (15U)
2429 #define EXTI_IMR1_IM15_Msk           (0x1UL << EXTI_IMR1_IM15_Pos)             /*!< 0x00008000 */
2430 #define EXTI_IMR1_IM15               EXTI_IMR1_IM15_Msk                        /*!< Interrupt Mask on line 15 */
2431 #define EXTI_IMR1_IM19_Pos           (19U)
2432 #define EXTI_IMR1_IM19_Msk           (0x1UL << EXTI_IMR1_IM19_Pos)             /*!< 0x00080000 */
2433 #define EXTI_IMR1_IM19               EXTI_IMR1_IM19_Msk                        /*!< Interrupt Mask on line 19 */
2434 #define EXTI_IMR1_IM23_Pos           (23U)
2435 #define EXTI_IMR1_IM23_Msk           (0x1UL << EXTI_IMR1_IM23_Pos)             /*!< 0x00800000 */
2436 #define EXTI_IMR1_IM23               EXTI_IMR1_IM23_Msk                        /*!< Interrupt Mask on line 23 */
2437 #define EXTI_IMR1_IM25_Pos           (25U)
2438 #define EXTI_IMR1_IM25_Msk           (0x1UL << EXTI_IMR1_IM25_Pos)             /*!< 0x02000000 */
2439 #define EXTI_IMR1_IM25               EXTI_IMR1_IM25_Msk                        /*!< Interrupt Mask on line 25 */
2440 #define EXTI_IMR1_IM31_Pos           (31U)
2441 #define EXTI_IMR1_IM31_Msk           (0x1UL << EXTI_IMR1_IM31_Pos)             /*!< 0x80000000 */
2442 #define EXTI_IMR1_IM31               EXTI_IMR1_IM31_Msk                        /*!< Interrupt Mask on line 31 */
2443 
2444 #define EXTI_IMR1_IM_Pos             (0U)
2445 #define EXTI_IMR1_IM_Msk             (0x0288FFFFUL << EXTI_IMR1_IM_Pos)        /*!< 0x288FFFF */
2446 #define EXTI_IMR1_IM                 EXTI_IMR1_IM_Msk                          /*!< Interrupt Mask All */
2447 
2448 /*******************  Bit definition for EXTI_EMR1 register  ******************/
2449 #define EXTI_EMR1_EM0_Pos            (0U)
2450 #define EXTI_EMR1_EM0_Msk            (0x1UL << EXTI_EMR1_EM0_Pos)              /*!< 0x00000001 */
2451 #define EXTI_EMR1_EM0                EXTI_EMR1_EM0_Msk                         /*!< Event Mask on line 0 */
2452 #define EXTI_EMR1_EM1_Pos            (1U)
2453 #define EXTI_EMR1_EM1_Msk            (0x1UL << EXTI_EMR1_EM1_Pos)              /*!< 0x00000002 */
2454 #define EXTI_EMR1_EM1                EXTI_EMR1_EM1_Msk                         /*!< Event Mask on line 1 */
2455 #define EXTI_EMR1_EM2_Pos            (2U)
2456 #define EXTI_EMR1_EM2_Msk            (0x1UL << EXTI_EMR1_EM2_Pos)              /*!< 0x00000004 */
2457 #define EXTI_EMR1_EM2                EXTI_EMR1_EM2_Msk                         /*!< Event Mask on line 2 */
2458 #define EXTI_EMR1_EM3_Pos            (3U)
2459 #define EXTI_EMR1_EM3_Msk            (0x1UL << EXTI_EMR1_EM3_Pos)              /*!< 0x00000008 */
2460 #define EXTI_EMR1_EM3                EXTI_EMR1_EM3_Msk                         /*!< Event Mask on line 3 */
2461 #define EXTI_EMR1_EM4_Pos            (4U)
2462 #define EXTI_EMR1_EM4_Msk            (0x1UL << EXTI_EMR1_EM4_Pos)              /*!< 0x00000010 */
2463 #define EXTI_EMR1_EM4                EXTI_EMR1_EM4_Msk                         /*!< Event Mask on line 4 */
2464 #define EXTI_EMR1_EM5_Pos            (5U)
2465 #define EXTI_EMR1_EM5_Msk            (0x1UL << EXTI_EMR1_EM5_Pos)              /*!< 0x00000020 */
2466 #define EXTI_EMR1_EM5                EXTI_EMR1_EM5_Msk                         /*!< Event Mask on line 5 */
2467 #define EXTI_EMR1_EM6_Pos            (6U)
2468 #define EXTI_EMR1_EM6_Msk            (0x1UL << EXTI_EMR1_EM6_Pos)              /*!< 0x00000040 */
2469 #define EXTI_EMR1_EM6                EXTI_EMR1_EM6_Msk                         /*!< Event Mask on line 6 */
2470 #define EXTI_EMR1_EM7_Pos            (7U)
2471 #define EXTI_EMR1_EM7_Msk            (0x1UL << EXTI_EMR1_EM7_Pos)              /*!< 0x00000080 */
2472 #define EXTI_EMR1_EM7                EXTI_EMR1_EM7_Msk                         /*!< Event Mask on line 7 */
2473 #define EXTI_EMR1_EM8_Pos            (8U)
2474 #define EXTI_EMR1_EM8_Msk            (0x1UL << EXTI_EMR1_EM8_Pos)              /*!< 0x00000100 */
2475 #define EXTI_EMR1_EM8                EXTI_EMR1_EM8_Msk                         /*!< Event Mask on line 8 */
2476 #define EXTI_EMR1_EM9_Pos            (9U)
2477 #define EXTI_EMR1_EM9_Msk            (0x1UL << EXTI_EMR1_EM9_Pos)              /*!< 0x00000200 */
2478 #define EXTI_EMR1_EM9                EXTI_EMR1_EM9_Msk                         /*!< Event Mask on line 9 */
2479 #define EXTI_EMR1_EM10_Pos           (10U)
2480 #define EXTI_EMR1_EM10_Msk           (0x1UL << EXTI_EMR1_EM10_Pos)             /*!< 0x00000400 */
2481 #define EXTI_EMR1_EM10               EXTI_EMR1_EM10_Msk                        /*!< Event Mask on line 10 */
2482 #define EXTI_EMR1_EM11_Pos           (11U)
2483 #define EXTI_EMR1_EM11_Msk           (0x1UL << EXTI_EMR1_EM11_Pos)             /*!< 0x00000800 */
2484 #define EXTI_EMR1_EM11               EXTI_EMR1_EM11_Msk                        /*!< Event Mask on line 11 */
2485 #define EXTI_EMR1_EM12_Pos           (12U)
2486 #define EXTI_EMR1_EM12_Msk           (0x1UL << EXTI_EMR1_EM12_Pos)             /*!< 0x00001000 */
2487 #define EXTI_EMR1_EM12               EXTI_EMR1_EM12_Msk                        /*!< Event Mask on line 12 */
2488 #define EXTI_EMR1_EM13_Pos           (13U)
2489 #define EXTI_EMR1_EM13_Msk           (0x1UL << EXTI_EMR1_EM13_Pos)             /*!< 0x00002000 */
2490 #define EXTI_EMR1_EM13               EXTI_EMR1_EM13_Msk                        /*!< Event Mask on line 13 */
2491 #define EXTI_EMR1_EM14_Pos           (14U)
2492 #define EXTI_EMR1_EM14_Msk           (0x1UL << EXTI_EMR1_EM14_Pos)             /*!< 0x00004000 */
2493 #define EXTI_EMR1_EM14               EXTI_EMR1_EM14_Msk                        /*!< Event Mask on line 14 */
2494 #define EXTI_EMR1_EM15_Pos           (15U)
2495 #define EXTI_EMR1_EM15_Msk           (0x1UL << EXTI_EMR1_EM15_Pos)             /*!< 0x00008000 */
2496 #define EXTI_EMR1_EM15               EXTI_EMR1_EM15_Msk                        /*!< Event Mask on line 15 */
2497 
2498 #define EXTI_EMR1_EM16_Pos           (16U)
2499 #define EXTI_EMR1_EM16_Msk           (0x1UL << EXTI_EMR1_EM16_Pos)             /*!< 0x00010000 */
2500 #define EXTI_EMR1_EM16               EXTI_EMR1_EM16_Msk                        /*!< Event Mask on line 16 */
2501 #define EXTI_EMR1_EM17_Pos           (17U)
2502 #define EXTI_EMR1_EM17_Msk           (0x1UL << EXTI_EMR1_EM17_Pos)             /*!< 0x00020000 */
2503 #define EXTI_EMR1_EM17               EXTI_EMR1_EM17_Msk                        /*!< Event Mask on line 17 */
2504 #define EXTI_EMR1_EM18_Pos           (18U)
2505 #define EXTI_EMR1_EM18_Msk           (0x1UL << EXTI_EMR1_EM18_Pos)             /*!< 0x00040000 */
2506 #define EXTI_EMR1_EM18               EXTI_EMR1_EM18_Msk                        /*!< Event Mask on line 18 */
2507 #define EXTI_EMR1_EM19_Pos           (19U)
2508 #define EXTI_EMR1_EM19_Msk           (0x1UL << EXTI_EMR1_EM19_Pos)             /*!< 0x00080000 */
2509 #define EXTI_EMR1_EM19               EXTI_EMR1_EM19_Msk                        /*!< Event Mask on line 19 */
2510 #define EXTI_EMR1_EM23_Pos           (23U)
2511 #define EXTI_EMR1_EM23_Msk           (0x1UL << EXTI_EMR1_EM23_Pos)             /*!< 0x00800000 */
2512 #define EXTI_EMR1_EM23               EXTI_EMR1_EM23_Msk                        /*!< Event Mask on line 23 */
2513 #define EXTI_EMR1_EM25_Pos           (25U)
2514 #define EXTI_EMR1_EM25_Msk           (0x1UL << EXTI_EMR1_EM25_Pos)             /*!< 0x02000000 */
2515 #define EXTI_EMR1_EM25               EXTI_EMR1_EM25_Msk                        /*!< Event Mask on line 25 */
2516 #define EXTI_EMR1_EM31_Pos           (31U)
2517 #define EXTI_EMR1_EM31_Msk           (0x1UL << EXTI_EMR1_EM31_Pos)             /*!< 0x80000000 */
2518 #define EXTI_EMR1_EM31               EXTI_EMR1_EM31_Msk                        /*!< Event Mask on line 31 */
2519 
2520 /*******************  Bit definition for EXTI_IMR2 register  ******************/
2521 #define EXTI_IMR2_IM34_Pos           (2U)
2522 #define EXTI_IMR2_IM34_Msk           (0x1UL << EXTI_IMR2_IM34_Pos)             /*!< 0x00000004 */
2523 #define EXTI_IMR2_IM34               EXTI_IMR2_IM34_Msk                        /*!< Interrupt Mask on line 34 */
2524 #define EXTI_IMR2_IM36_Pos           (4U)
2525 #define EXTI_IMR2_IM36_Msk           (0x1UL << EXTI_IMR2_IM36_Pos)             /*!< 0x00000010 */
2526 #define EXTI_IMR2_IM36               EXTI_IMR2_IM36_Msk                        /*!< Interrupt Mask on line 36 */
2527 
2528 /*******************  Bit definition for EXTI_EMR2 register  ******************/
2529 #define EXTI_EMR2_EM34_Pos           (2U)
2530 #define EXTI_EMR2_EM34_Msk           (0x1UL << EXTI_EMR2_EM34_Pos)             /*!< 0x00000004 */
2531 #define EXTI_EMR2_EM34               EXTI_EMR2_EM34_Msk                        /*!< Event Mask on line 34 */
2532 #define EXTI_EMR2_EM36_Pos           (4U)
2533 #define EXTI_EMR2_EM36_Msk           (0x1UL << EXTI_EMR2_EM36_Pos)             /*!< 0x00000010 */
2534 #define EXTI_EMR2_EM36               EXTI_EMR2_EM36_Msk                        /*!< Event Mask on line 36 */
2535 
2536 /******************************************************************************/
2537 /*                                                                            */
2538 /*                                    FLASH                                   */
2539 /*                                                                            */
2540 /******************************************************************************/
2541 
2542 #define GPIO_NRST_CONFIG_SUPPORT         /*!< GPIO feature available only on specific devices: Configure NRST pin */
2543 #define FLASH_SECURABLE_MEMORY_SUPPORT   /*!< Flash feature available only on specific devices: allow to secure memory */
2544 #define FLASH_PCROP_SUPPORT              /*!< Flash feature available only on specific devices: proprietary code read protection areas selected by option */
2545 
2546 /*******************  Bits definition for FLASH_ACR register  *****************/
2547 #define FLASH_ACR_LATENCY_Pos                  (0U)
2548 #define FLASH_ACR_LATENCY_Msk                  (0x7UL << FLASH_ACR_LATENCY_Pos)    /*!< 0x00000007 */
2549 #define FLASH_ACR_LATENCY                      FLASH_ACR_LATENCY_Msk
2550 #define FLASH_ACR_LATENCY_0                    (0x1UL << FLASH_ACR_LATENCY_Pos)    /*!< 0x00000001 */
2551 #define FLASH_ACR_LATENCY_1                    (0x2UL << FLASH_ACR_LATENCY_Pos)    /*!< 0x00000002 */
2552 #define FLASH_ACR_PRFTEN_Pos                   (8U)
2553 #define FLASH_ACR_PRFTEN_Msk                   (0x1UL << FLASH_ACR_PRFTEN_Pos)     /*!< 0x00000100 */
2554 #define FLASH_ACR_PRFTEN                       FLASH_ACR_PRFTEN_Msk
2555 #define FLASH_ACR_ICEN_Pos                     (9U)
2556 #define FLASH_ACR_ICEN_Msk                     (0x1UL << FLASH_ACR_ICEN_Pos)       /*!< 0x00000200 */
2557 #define FLASH_ACR_ICEN                         FLASH_ACR_ICEN_Msk
2558 #define FLASH_ACR_ICRST_Pos                    (11U)
2559 #define FLASH_ACR_ICRST_Msk                    (0x1UL << FLASH_ACR_ICRST_Pos)      /*!< 0x00000800 */
2560 #define FLASH_ACR_ICRST                        FLASH_ACR_ICRST_Msk
2561 #define FLASH_ACR_PROGEMPTY_Pos                (16U)
2562 #define FLASH_ACR_PROGEMPTY_Msk                (0x1UL << FLASH_ACR_PROGEMPTY_Pos)  /*!< 0x00010000 */
2563 #define FLASH_ACR_PROGEMPTY                    FLASH_ACR_PROGEMPTY_Msk
2564 #define FLASH_ACR_DBG_SWEN_Pos                 (18U)
2565 #define FLASH_ACR_DBG_SWEN_Msk                 (0x1UL << FLASH_ACR_DBG_SWEN_Pos)   /*!< 0x00040000 */
2566 #define FLASH_ACR_DBG_SWEN                     FLASH_ACR_DBG_SWEN_Msk
2567 
2568 /*******************  Bits definition for FLASH_SR register  ******************/
2569 #define FLASH_SR_EOP_Pos                       (0U)
2570 #define FLASH_SR_EOP_Msk                       (0x1UL << FLASH_SR_EOP_Pos)         /*!< 0x00000001 */
2571 #define FLASH_SR_EOP                           FLASH_SR_EOP_Msk
2572 #define FLASH_SR_OPERR_Pos                     (1U)
2573 #define FLASH_SR_OPERR_Msk                     (0x1UL << FLASH_SR_OPERR_Pos)       /*!< 0x00000002 */
2574 #define FLASH_SR_OPERR                         FLASH_SR_OPERR_Msk
2575 #define FLASH_SR_PROGERR_Pos                   (3U)
2576 #define FLASH_SR_PROGERR_Msk                   (0x1UL << FLASH_SR_PROGERR_Pos)     /*!< 0x00000008 */
2577 #define FLASH_SR_PROGERR                       FLASH_SR_PROGERR_Msk
2578 #define FLASH_SR_WRPERR_Pos                    (4U)
2579 #define FLASH_SR_WRPERR_Msk                    (0x1UL << FLASH_SR_WRPERR_Pos)      /*!< 0x00000010 */
2580 #define FLASH_SR_WRPERR                        FLASH_SR_WRPERR_Msk
2581 #define FLASH_SR_PGAERR_Pos                    (5U)
2582 #define FLASH_SR_PGAERR_Msk                    (0x1UL << FLASH_SR_PGAERR_Pos)      /*!< 0x00000020 */
2583 #define FLASH_SR_PGAERR                        FLASH_SR_PGAERR_Msk
2584 #define FLASH_SR_SIZERR_Pos                    (6U)
2585 #define FLASH_SR_SIZERR_Msk                    (0x1UL << FLASH_SR_SIZERR_Pos)      /*!< 0x00000040 */
2586 #define FLASH_SR_SIZERR                        FLASH_SR_SIZERR_Msk
2587 #define FLASH_SR_PGSERR_Pos                    (7U)
2588 #define FLASH_SR_PGSERR_Msk                    (0x1UL << FLASH_SR_PGSERR_Pos)      /*!< 0x00000080 */
2589 #define FLASH_SR_PGSERR                        FLASH_SR_PGSERR_Msk
2590 #define FLASH_SR_MISERR_Pos                    (8U)
2591 #define FLASH_SR_MISERR_Msk                    (0x1UL << FLASH_SR_MISERR_Pos)      /*!< 0x00000100 */
2592 #define FLASH_SR_MISERR                        FLASH_SR_MISERR_Msk
2593 #define FLASH_SR_FASTERR_Pos                   (9U)
2594 #define FLASH_SR_FASTERR_Msk                   (0x1UL << FLASH_SR_FASTERR_Pos)     /*!< 0x00000200 */
2595 #define FLASH_SR_FASTERR                       FLASH_SR_FASTERR_Msk
2596 #define FLASH_SR_RDERR_Pos                     (14U)
2597 #define FLASH_SR_RDERR_Msk                     (0x1UL << FLASH_SR_RDERR_Pos)       /*!< 0x00004000 */
2598 #define FLASH_SR_RDERR                         FLASH_SR_RDERR_Msk
2599 #define FLASH_SR_OPTVERR_Pos                   (15U)
2600 #define FLASH_SR_OPTVERR_Msk                   (0x1UL << FLASH_SR_OPTVERR_Pos)     /*!< 0x00008000 */
2601 #define FLASH_SR_OPTVERR                       FLASH_SR_OPTVERR_Msk
2602 #define FLASH_SR_BSY1_Pos                      (16U)
2603 #define FLASH_SR_BSY1_Msk                      (0x1UL << FLASH_SR_BSY1_Pos)        /*!< 0x00010000 */
2604 #define FLASH_SR_BSY1                          FLASH_SR_BSY1_Msk
2605 #define FLASH_SR_CFGBSY_Pos                    (18U)
2606 #define FLASH_SR_CFGBSY_Msk                    (0x1UL << FLASH_SR_CFGBSY_Pos)      /*!< 0x00040000 */
2607 #define FLASH_SR_CFGBSY                        FLASH_SR_CFGBSY_Msk
2608 
2609 /*******************  Bits definition for FLASH_CR register  ******************/
2610 #define FLASH_CR_PG_Pos                        (0U)
2611 #define FLASH_CR_PG_Msk                        (0x1UL << FLASH_CR_PG_Pos)          /*!< 0x00000001 */
2612 #define FLASH_CR_PG                            FLASH_CR_PG_Msk
2613 #define FLASH_CR_PER_Pos                       (1U)
2614 #define FLASH_CR_PER_Msk                       (0x1UL << FLASH_CR_PER_Pos)         /*!< 0x00000002 */
2615 #define FLASH_CR_PER                           FLASH_CR_PER_Msk
2616 #define FLASH_CR_MER1_Pos                      (2U)
2617 #define FLASH_CR_MER1_Msk                      (0x1UL << FLASH_CR_MER1_Pos)        /*!< 0x00000004 */
2618 #define FLASH_CR_MER1                          FLASH_CR_MER1_Msk
2619 #define FLASH_CR_PNB_Pos                       (3U)
2620 #define FLASH_CR_PNB_Msk                       (0x3FUL << FLASH_CR_PNB_Pos)       /*!< 0x000001F8 */
2621 #define FLASH_CR_PNB                           FLASH_CR_PNB_Msk
2622 #define FLASH_CR_STRT_Pos                      (16U)
2623 #define FLASH_CR_STRT_Msk                      (0x1UL << FLASH_CR_STRT_Pos)        /*!< 0x00010000 */
2624 #define FLASH_CR_STRT                          FLASH_CR_STRT_Msk
2625 #define FLASH_CR_OPTSTRT_Pos                   (17U)
2626 #define FLASH_CR_OPTSTRT_Msk                   (0x1UL << FLASH_CR_OPTSTRT_Pos)     /*!< 0x00020000 */
2627 #define FLASH_CR_OPTSTRT                       FLASH_CR_OPTSTRT_Msk
2628 #define FLASH_CR_FSTPG_Pos                     (18U)
2629 #define FLASH_CR_FSTPG_Msk                     (0x1UL << FLASH_CR_FSTPG_Pos)       /*!< 0x00040000 */
2630 #define FLASH_CR_FSTPG                         FLASH_CR_FSTPG_Msk
2631 #define FLASH_CR_EOPIE_Pos                     (24U)
2632 #define FLASH_CR_EOPIE_Msk                     (0x1UL << FLASH_CR_EOPIE_Pos)       /*!< 0x01000000 */
2633 #define FLASH_CR_EOPIE                         FLASH_CR_EOPIE_Msk
2634 #define FLASH_CR_ERRIE_Pos                     (25U)
2635 #define FLASH_CR_ERRIE_Msk                     (0x1UL << FLASH_CR_ERRIE_Pos)       /*!< 0x02000000 */
2636 #define FLASH_CR_ERRIE                         FLASH_CR_ERRIE_Msk
2637 #define FLASH_CR_RDERRIE_Pos                   (26U)
2638 #define FLASH_CR_RDERRIE_Msk                   (0x1UL << FLASH_CR_RDERRIE_Pos)     /*!< 0x04000000 */
2639 #define FLASH_CR_RDERRIE                       FLASH_CR_RDERRIE_Msk
2640 #define FLASH_CR_OBL_LAUNCH_Pos                (27U)
2641 #define FLASH_CR_OBL_LAUNCH_Msk                (0x1UL << FLASH_CR_OBL_LAUNCH_Pos)  /*!< 0x08000000 */
2642 #define FLASH_CR_OBL_LAUNCH                    FLASH_CR_OBL_LAUNCH_Msk
2643 #define FLASH_CR_SEC_PROT_Pos                  (28U)
2644 #define FLASH_CR_SEC_PROT_Msk                  (0x1UL << FLASH_CR_SEC_PROT_Pos)    /*!< 0x10000000 */
2645 #define FLASH_CR_SEC_PROT                      FLASH_CR_SEC_PROT_Msk
2646 #define FLASH_CR_OPTLOCK_Pos                   (30U)
2647 #define FLASH_CR_OPTLOCK_Msk                   (0x1UL << FLASH_CR_OPTLOCK_Pos)     /*!< 0x40000000 */
2648 #define FLASH_CR_OPTLOCK                       FLASH_CR_OPTLOCK_Msk
2649 #define FLASH_CR_LOCK_Pos                      (31U)
2650 #define FLASH_CR_LOCK_Msk                      (0x1UL << FLASH_CR_LOCK_Pos)        /*!< 0x80000000 */
2651 #define FLASH_CR_LOCK                          FLASH_CR_LOCK_Msk
2652 
2653 /*******************  Bits definition for FLASH_OPTR register  ****************/
2654 #define FLASH_OPTR_RDP_Pos                     (0U)
2655 #define FLASH_OPTR_RDP_Msk                     (0xFFUL << FLASH_OPTR_RDP_Pos)        /*!< 0x000000FF */
2656 #define FLASH_OPTR_RDP                         FLASH_OPTR_RDP_Msk
2657 #define FLASH_OPTR_BOR_EN_Pos                  (8U)
2658 #define FLASH_OPTR_BOR_EN_Msk                  (0x1UL << FLASH_OPTR_BOR_EN_Pos)      /*!< 0x00000100 */
2659 #define FLASH_OPTR_BOR_EN                      FLASH_OPTR_BOR_EN_Msk
2660 #define FLASH_OPTR_BORR_LEV_Pos                (9U)
2661 #define FLASH_OPTR_BORR_LEV_Msk                (0x3UL << FLASH_OPTR_BORR_LEV_Pos)    /*!< 0x00000600 */
2662 #define FLASH_OPTR_BORR_LEV                    FLASH_OPTR_BORR_LEV_Msk
2663 #define FLASH_OPTR_BORR_LEV_0                  (0x1UL << FLASH_OPTR_BORR_LEV_Pos)    /*!< 0x00000200 */
2664 #define FLASH_OPTR_BORR_LEV_1                  (0x2UL << FLASH_OPTR_BORR_LEV_Pos)    /*!< 0x00000400 */
2665 #define FLASH_OPTR_BORF_LEV_Pos                (11U)
2666 #define FLASH_OPTR_BORF_LEV_Msk                (0x3UL << FLASH_OPTR_BORF_LEV_Pos)    /*!< 0x00001800 */
2667 #define FLASH_OPTR_BORF_LEV                    FLASH_OPTR_BORF_LEV_Msk
2668 #define FLASH_OPTR_BORF_LEV_0                  (0x1UL << FLASH_OPTR_BORF_LEV_Pos)    /*!< 0x00000800 */
2669 #define FLASH_OPTR_BORF_LEV_1                  (0x2UL << FLASH_OPTR_BORF_LEV_Pos)    /*!< 0x00001000 */
2670 #define FLASH_OPTR_nRST_STOP_Pos               (13U)
2671 #define FLASH_OPTR_nRST_STOP_Msk               (0x1UL << FLASH_OPTR_nRST_STOP_Pos)   /*!< 0x00002000 */
2672 #define FLASH_OPTR_nRST_STOP                   FLASH_OPTR_nRST_STOP_Msk
2673 #define FLASH_OPTR_nRST_STDBY_Pos              (14U)
2674 #define FLASH_OPTR_nRST_STDBY_Msk              (0x1UL << FLASH_OPTR_nRST_STDBY_Pos)  /*!< 0x00004000 */
2675 #define FLASH_OPTR_nRST_STDBY                  FLASH_OPTR_nRST_STDBY_Msk
2676 #define FLASH_OPTR_nRST_SHDW_Pos               (15U)
2677 #define FLASH_OPTR_nRST_SHDW_Msk               (0x1UL << FLASH_OPTR_nRST_SHDW_Pos)   /*!< 0x00008000 */
2678 #define FLASH_OPTR_nRST_SHDW                   FLASH_OPTR_nRST_SHDW_Msk
2679 #define FLASH_OPTR_IWDG_SW_Pos                 (16U)
2680 #define FLASH_OPTR_IWDG_SW_Msk                 (0x1UL << FLASH_OPTR_IWDG_SW_Pos)     /*!< 0x00010000 */
2681 #define FLASH_OPTR_IWDG_SW                     FLASH_OPTR_IWDG_SW_Msk
2682 #define FLASH_OPTR_IWDG_STOP_Pos               (17U)
2683 #define FLASH_OPTR_IWDG_STOP_Msk               (0x1UL << FLASH_OPTR_IWDG_STOP_Pos)   /*!< 0x00020000 */
2684 #define FLASH_OPTR_IWDG_STOP                   FLASH_OPTR_IWDG_STOP_Msk
2685 #define FLASH_OPTR_IWDG_STDBY_Pos              (18U)
2686 #define FLASH_OPTR_IWDG_STDBY_Msk              (0x1UL << FLASH_OPTR_IWDG_STDBY_Pos)  /*!< 0x00040000 */
2687 #define FLASH_OPTR_IWDG_STDBY                  FLASH_OPTR_IWDG_STDBY_Msk
2688 #define FLASH_OPTR_WWDG_SW_Pos                 (19U)
2689 #define FLASH_OPTR_WWDG_SW_Msk                 (0x1UL << FLASH_OPTR_WWDG_SW_Pos)     /*!< 0x00080000 */
2690 #define FLASH_OPTR_WWDG_SW                     FLASH_OPTR_WWDG_SW_Msk
2691 #define FLASH_OPTR_HSE_NOT_REMAPPED_Pos        (21U)
2692 #define FLASH_OPTR_HSE_NOT_REMAPPED_Msk        (0x1UL << FLASH_OPTR_HSE_NOT_REMAPPED_Pos) /*!< 0x00200000 */
2693 #define FLASH_OPTR_HSE_NOT_REMAPPED            FLASH_OPTR_HSE_NOT_REMAPPED_Msk
2694 #define FLASH_OPTR_RAM_PARITY_CHECK_Pos        (22U)
2695 #define FLASH_OPTR_RAM_PARITY_CHECK_Msk        (0x1UL << FLASH_OPTR_RAM_PARITY_CHECK_Pos) /*!< 0x00400000 */
2696 #define FLASH_OPTR_RAM_PARITY_CHECK            FLASH_OPTR_RAM_PARITY_CHECK_Msk
2697 #define FLASH_OPTR_SECURE_MUXING_EN_Pos        (23U)
2698 #define FLASH_OPTR_SECURE_MUXING_EN_Msk        (0x1UL << FLASH_OPTR_SECURE_MUXING_EN_Pos) /*!< 0x00800000 */
2699 #define FLASH_OPTR_SECURE_MUXING_EN            FLASH_OPTR_SECURE_MUXING_EN_Msk
2700 #define FLASH_OPTR_nBOOT_SEL_Pos               (24U)
2701 #define FLASH_OPTR_nBOOT_SEL_Msk               (0x1UL << FLASH_OPTR_nBOOT_SEL_Pos)  /*!< 0x01000000 */
2702 #define FLASH_OPTR_nBOOT_SEL                   FLASH_OPTR_nBOOT_SEL_Msk
2703 #define FLASH_OPTR_nBOOT1_Pos                  (25U)
2704 #define FLASH_OPTR_nBOOT1_Msk                  (0x1UL << FLASH_OPTR_nBOOT1_Pos)     /*!< 0x02000000 */
2705 #define FLASH_OPTR_nBOOT1                      FLASH_OPTR_nBOOT1_Msk
2706 #define FLASH_OPTR_nBOOT0_Pos                  (26U)
2707 #define FLASH_OPTR_nBOOT0_Msk                  (0x1UL << FLASH_OPTR_nBOOT0_Pos)     /*!< 0x04000000 */
2708 #define FLASH_OPTR_nBOOT0                      FLASH_OPTR_nBOOT0_Msk
2709 #define FLASH_OPTR_NRST_MODE_Pos               (27U)
2710 #define FLASH_OPTR_NRST_MODE_Msk               (0x3UL << FLASH_OPTR_NRST_MODE_Pos)  /*!< 0x18000000 */
2711 #define FLASH_OPTR_NRST_MODE                   FLASH_OPTR_NRST_MODE_Msk
2712 #define FLASH_OPTR_NRST_MODE_0                 (0x1UL << FLASH_OPTR_NRST_MODE_Pos)  /*!< 0x08000000 */
2713 #define FLASH_OPTR_NRST_MODE_1                 (0x2UL << FLASH_OPTR_NRST_MODE_Pos)  /*!< 0x10000000 */
2714 #define FLASH_OPTR_IRHEN_Pos                   (29U)
2715 #define FLASH_OPTR_IRHEN_Msk                   (0x1UL << FLASH_OPTR_IRHEN_Pos)      /*!< 0x20000000 */
2716 #define FLASH_OPTR_IRHEN                       FLASH_OPTR_IRHEN_Msk
2717 
2718 /******************  Bits definition for FLASH_PCROP1ASR register  ************/
2719 #define FLASH_PCROP1ASR_PCROP1A_STRT_Pos       (0U)
2720 #define FLASH_PCROP1ASR_PCROP1A_STRT_Msk       (0xFFUL << FLASH_PCROP1ASR_PCROP1A_STRT_Pos)   /*!< 0x000000FF */
2721 #define FLASH_PCROP1ASR_PCROP1A_STRT           FLASH_PCROP1ASR_PCROP1A_STRT_Msk
2722 
2723 /******************  Bits definition for FLASH_PCROP1AER register  ************/
2724 #define FLASH_PCROP1AER_PCROP1A_END_Pos        (0U)
2725 #define FLASH_PCROP1AER_PCROP1A_END_Msk        (0xFFUL << FLASH_PCROP1AER_PCROP1A_END_Pos)    /*!< 0x000000FF */
2726 #define FLASH_PCROP1AER_PCROP1A_END            FLASH_PCROP1AER_PCROP1A_END_Msk
2727 #define FLASH_PCROP1AER_PCROP_RDP_Pos          (31U)
2728 #define FLASH_PCROP1AER_PCROP_RDP_Msk          (0x1UL << FLASH_PCROP1AER_PCROP_RDP_Pos)       /*!< 0x80000000 */
2729 #define FLASH_PCROP1AER_PCROP_RDP              FLASH_PCROP1AER_PCROP_RDP_Msk
2730 
2731 /******************  Bits definition for FLASH_WRP1AR register  ***************/
2732 #define FLASH_WRP1AR_WRP1A_STRT_Pos            (0U)
2733 #define FLASH_WRP1AR_WRP1A_STRT_Msk            (0x3FUL << FLASH_WRP1AR_WRP1A_STRT_Pos) /*!< 0x0000003F */
2734 #define FLASH_WRP1AR_WRP1A_STRT                FLASH_WRP1AR_WRP1A_STRT_Msk
2735 #define FLASH_WRP1AR_WRP1A_END_Pos             (16U)
2736 #define FLASH_WRP1AR_WRP1A_END_Msk             (0x3FUL << FLASH_WRP1AR_WRP1A_END_Pos) /*!< 0x003F0000 */
2737 #define FLASH_WRP1AR_WRP1A_END                 FLASH_WRP1AR_WRP1A_END_Msk
2738 
2739 /******************  Bits definition for FLASH_WRP1BR register  ***************/
2740 #define FLASH_WRP1BR_WRP1B_STRT_Pos            (0U)
2741 #define FLASH_WRP1BR_WRP1B_STRT_Msk            (0x3FUL << FLASH_WRP1BR_WRP1B_STRT_Pos) /*!< 0x0000003F */
2742 #define FLASH_WRP1BR_WRP1B_STRT                FLASH_WRP1BR_WRP1B_STRT_Msk
2743 #define FLASH_WRP1BR_WRP1B_END_Pos             (16U)
2744 #define FLASH_WRP1BR_WRP1B_END_Msk             (0x3FUL << FLASH_WRP1BR_WRP1B_END_Pos) /*!< 0x003F0000 */
2745 #define FLASH_WRP1BR_WRP1B_END                 FLASH_WRP1BR_WRP1B_END_Msk
2746 
2747 /******************  Bits definition for FLASH_PCROP1BSR register  ************/
2748 #define FLASH_PCROP1BSR_PCROP1B_STRT_Pos       (0U)
2749 #define FLASH_PCROP1BSR_PCROP1B_STRT_Msk       (0xFFUL << FLASH_PCROP1BSR_PCROP1B_STRT_Pos)   /*!< 0x000000FF */
2750 #define FLASH_PCROP1BSR_PCROP1B_STRT           FLASH_PCROP1BSR_PCROP1B_STRT_Msk
2751 
2752 /******************  Bits definition for FLASH_PCROP1BER register  ************/
2753 #define FLASH_PCROP1BER_PCROP1B_END_Pos        (0U)
2754 #define FLASH_PCROP1BER_PCROP1B_END_Msk        (0xFFUL << FLASH_PCROP1BER_PCROP1B_END_Pos)    /*!< 0x000000FF */
2755 #define FLASH_PCROP1BER_PCROP1B_END            FLASH_PCROP1BER_PCROP1B_END_Msk
2756 
2757 
2758 /******************  Bits definition for FLASH_SECR register  *****************/
2759 #define FLASH_SECR_SEC_SIZE_Pos                (0U)
2760 #define FLASH_SECR_SEC_SIZE_Msk                (0x3FUL << FLASH_SECR_SEC_SIZE_Pos) /*!< 0x0000003F */
2761 #define FLASH_SECR_SEC_SIZE                    FLASH_SECR_SEC_SIZE_Msk
2762 #define FLASH_SECR_BOOT_LOCK_Pos               (16U)
2763 #define FLASH_SECR_BOOT_LOCK_Msk               (0x1UL << FLASH_SECR_BOOT_LOCK_Pos) /*!< 0x00010000 */
2764 #define FLASH_SECR_BOOT_LOCK                   FLASH_SECR_BOOT_LOCK_Msk
2765 
2766 /******************************************************************************/
2767 /*                                                                            */
2768 /*                            General Purpose I/O                             */
2769 /*                                                                            */
2770 /******************************************************************************/
2771 /******************  Bits definition for GPIO_MODER register  *****************/
2772 #define GPIO_MODER_MODE0_Pos           (0U)
2773 #define GPIO_MODER_MODE0_Msk           (0x3UL << GPIO_MODER_MODE0_Pos)          /*!< 0x00000003 */
2774 #define GPIO_MODER_MODE0               GPIO_MODER_MODE0_Msk
2775 #define GPIO_MODER_MODE0_0             (0x1UL << GPIO_MODER_MODE0_Pos)          /*!< 0x00000001 */
2776 #define GPIO_MODER_MODE0_1             (0x2UL << GPIO_MODER_MODE0_Pos)          /*!< 0x00000002 */
2777 #define GPIO_MODER_MODE1_Pos           (2U)
2778 #define GPIO_MODER_MODE1_Msk           (0x3UL << GPIO_MODER_MODE1_Pos)          /*!< 0x0000000C */
2779 #define GPIO_MODER_MODE1               GPIO_MODER_MODE1_Msk
2780 #define GPIO_MODER_MODE1_0             (0x1UL << GPIO_MODER_MODE1_Pos)          /*!< 0x00000004 */
2781 #define GPIO_MODER_MODE1_1             (0x2UL << GPIO_MODER_MODE1_Pos)          /*!< 0x00000008 */
2782 #define GPIO_MODER_MODE2_Pos           (4U)
2783 #define GPIO_MODER_MODE2_Msk           (0x3UL << GPIO_MODER_MODE2_Pos)          /*!< 0x00000030 */
2784 #define GPIO_MODER_MODE2               GPIO_MODER_MODE2_Msk
2785 #define GPIO_MODER_MODE2_0             (0x1UL << GPIO_MODER_MODE2_Pos)          /*!< 0x00000010 */
2786 #define GPIO_MODER_MODE2_1             (0x2UL << GPIO_MODER_MODE2_Pos)          /*!< 0x00000020 */
2787 #define GPIO_MODER_MODE3_Pos           (6U)
2788 #define GPIO_MODER_MODE3_Msk           (0x3UL << GPIO_MODER_MODE3_Pos)          /*!< 0x000000C0 */
2789 #define GPIO_MODER_MODE3               GPIO_MODER_MODE3_Msk
2790 #define GPIO_MODER_MODE3_0             (0x1UL << GPIO_MODER_MODE3_Pos)          /*!< 0x00000040 */
2791 #define GPIO_MODER_MODE3_1             (0x2UL << GPIO_MODER_MODE3_Pos)          /*!< 0x00000080 */
2792 #define GPIO_MODER_MODE4_Pos           (8U)
2793 #define GPIO_MODER_MODE4_Msk           (0x3UL << GPIO_MODER_MODE4_Pos)          /*!< 0x00000300 */
2794 #define GPIO_MODER_MODE4               GPIO_MODER_MODE4_Msk
2795 #define GPIO_MODER_MODE4_0             (0x1UL << GPIO_MODER_MODE4_Pos)          /*!< 0x00000100 */
2796 #define GPIO_MODER_MODE4_1             (0x2UL << GPIO_MODER_MODE4_Pos)          /*!< 0x00000200 */
2797 #define GPIO_MODER_MODE5_Pos           (10U)
2798 #define GPIO_MODER_MODE5_Msk           (0x3UL << GPIO_MODER_MODE5_Pos)          /*!< 0x00000C00 */
2799 #define GPIO_MODER_MODE5               GPIO_MODER_MODE5_Msk
2800 #define GPIO_MODER_MODE5_0             (0x1UL << GPIO_MODER_MODE5_Pos)          /*!< 0x00000400 */
2801 #define GPIO_MODER_MODE5_1             (0x2UL << GPIO_MODER_MODE5_Pos)          /*!< 0x00000800 */
2802 #define GPIO_MODER_MODE6_Pos           (12U)
2803 #define GPIO_MODER_MODE6_Msk           (0x3UL << GPIO_MODER_MODE6_Pos)          /*!< 0x00003000 */
2804 #define GPIO_MODER_MODE6               GPIO_MODER_MODE6_Msk
2805 #define GPIO_MODER_MODE6_0             (0x1UL << GPIO_MODER_MODE6_Pos)          /*!< 0x00001000 */
2806 #define GPIO_MODER_MODE6_1             (0x2UL << GPIO_MODER_MODE6_Pos)          /*!< 0x00002000 */
2807 #define GPIO_MODER_MODE7_Pos           (14U)
2808 #define GPIO_MODER_MODE7_Msk           (0x3UL << GPIO_MODER_MODE7_Pos)          /*!< 0x0000C000 */
2809 #define GPIO_MODER_MODE7               GPIO_MODER_MODE7_Msk
2810 #define GPIO_MODER_MODE7_0             (0x1UL << GPIO_MODER_MODE7_Pos)          /*!< 0x00004000 */
2811 #define GPIO_MODER_MODE7_1             (0x2UL << GPIO_MODER_MODE7_Pos)          /*!< 0x00008000 */
2812 #define GPIO_MODER_MODE8_Pos           (16U)
2813 #define GPIO_MODER_MODE8_Msk           (0x3UL << GPIO_MODER_MODE8_Pos)          /*!< 0x00030000 */
2814 #define GPIO_MODER_MODE8               GPIO_MODER_MODE8_Msk
2815 #define GPIO_MODER_MODE8_0             (0x1UL << GPIO_MODER_MODE8_Pos)          /*!< 0x00010000 */
2816 #define GPIO_MODER_MODE8_1             (0x2UL << GPIO_MODER_MODE8_Pos)          /*!< 0x00020000 */
2817 #define GPIO_MODER_MODE9_Pos           (18U)
2818 #define GPIO_MODER_MODE9_Msk           (0x3UL << GPIO_MODER_MODE9_Pos)          /*!< 0x000C0000 */
2819 #define GPIO_MODER_MODE9               GPIO_MODER_MODE9_Msk
2820 #define GPIO_MODER_MODE9_0             (0x1UL << GPIO_MODER_MODE9_Pos)          /*!< 0x00040000 */
2821 #define GPIO_MODER_MODE9_1             (0x2UL << GPIO_MODER_MODE9_Pos)          /*!< 0x00080000 */
2822 #define GPIO_MODER_MODE10_Pos          (20U)
2823 #define GPIO_MODER_MODE10_Msk          (0x3UL << GPIO_MODER_MODE10_Pos)         /*!< 0x00300000 */
2824 #define GPIO_MODER_MODE10              GPIO_MODER_MODE10_Msk
2825 #define GPIO_MODER_MODE10_0            (0x1UL << GPIO_MODER_MODE10_Pos)         /*!< 0x00100000 */
2826 #define GPIO_MODER_MODE10_1            (0x2UL << GPIO_MODER_MODE10_Pos)         /*!< 0x00200000 */
2827 #define GPIO_MODER_MODE11_Pos          (22U)
2828 #define GPIO_MODER_MODE11_Msk          (0x3UL << GPIO_MODER_MODE11_Pos)         /*!< 0x00C00000 */
2829 #define GPIO_MODER_MODE11              GPIO_MODER_MODE11_Msk
2830 #define GPIO_MODER_MODE11_0            (0x1UL << GPIO_MODER_MODE11_Pos)         /*!< 0x00400000 */
2831 #define GPIO_MODER_MODE11_1            (0x2UL << GPIO_MODER_MODE11_Pos)         /*!< 0x00800000 */
2832 #define GPIO_MODER_MODE12_Pos          (24U)
2833 #define GPIO_MODER_MODE12_Msk          (0x3UL << GPIO_MODER_MODE12_Pos)         /*!< 0x03000000 */
2834 #define GPIO_MODER_MODE12              GPIO_MODER_MODE12_Msk
2835 #define GPIO_MODER_MODE12_0            (0x1UL << GPIO_MODER_MODE12_Pos)         /*!< 0x01000000 */
2836 #define GPIO_MODER_MODE12_1            (0x2UL << GPIO_MODER_MODE12_Pos)         /*!< 0x02000000 */
2837 #define GPIO_MODER_MODE13_Pos          (26U)
2838 #define GPIO_MODER_MODE13_Msk          (0x3UL << GPIO_MODER_MODE13_Pos)         /*!< 0x0C000000 */
2839 #define GPIO_MODER_MODE13              GPIO_MODER_MODE13_Msk
2840 #define GPIO_MODER_MODE13_0            (0x1UL << GPIO_MODER_MODE13_Pos)         /*!< 0x04000000 */
2841 #define GPIO_MODER_MODE13_1            (0x2UL << GPIO_MODER_MODE13_Pos)         /*!< 0x08000000 */
2842 #define GPIO_MODER_MODE14_Pos          (28U)
2843 #define GPIO_MODER_MODE14_Msk          (0x3UL << GPIO_MODER_MODE14_Pos)         /*!< 0x30000000 */
2844 #define GPIO_MODER_MODE14              GPIO_MODER_MODE14_Msk
2845 #define GPIO_MODER_MODE14_0            (0x1UL << GPIO_MODER_MODE14_Pos)         /*!< 0x10000000 */
2846 #define GPIO_MODER_MODE14_1            (0x2UL << GPIO_MODER_MODE14_Pos)         /*!< 0x20000000 */
2847 #define GPIO_MODER_MODE15_Pos          (30U)
2848 #define GPIO_MODER_MODE15_Msk          (0x3UL << GPIO_MODER_MODE15_Pos)         /*!< 0xC0000000 */
2849 #define GPIO_MODER_MODE15              GPIO_MODER_MODE15_Msk
2850 #define GPIO_MODER_MODE15_0            (0x1UL << GPIO_MODER_MODE15_Pos)         /*!< 0x40000000 */
2851 #define GPIO_MODER_MODE15_1            (0x2UL << GPIO_MODER_MODE15_Pos)         /*!< 0x80000000 */
2852 
2853 /******************  Bits definition for GPIO_OTYPER register  ****************/
2854 #define GPIO_OTYPER_OT0_Pos            (0U)
2855 #define GPIO_OTYPER_OT0_Msk            (0x1UL << GPIO_OTYPER_OT0_Pos)           /*!< 0x00000001 */
2856 #define GPIO_OTYPER_OT0                GPIO_OTYPER_OT0_Msk
2857 #define GPIO_OTYPER_OT1_Pos            (1U)
2858 #define GPIO_OTYPER_OT1_Msk            (0x1UL << GPIO_OTYPER_OT1_Pos)           /*!< 0x00000002 */
2859 #define GPIO_OTYPER_OT1                GPIO_OTYPER_OT1_Msk
2860 #define GPIO_OTYPER_OT2_Pos            (2U)
2861 #define GPIO_OTYPER_OT2_Msk            (0x1UL << GPIO_OTYPER_OT2_Pos)           /*!< 0x00000004 */
2862 #define GPIO_OTYPER_OT2                GPIO_OTYPER_OT2_Msk
2863 #define GPIO_OTYPER_OT3_Pos            (3U)
2864 #define GPIO_OTYPER_OT3_Msk            (0x1UL << GPIO_OTYPER_OT3_Pos)           /*!< 0x00000008 */
2865 #define GPIO_OTYPER_OT3                GPIO_OTYPER_OT3_Msk
2866 #define GPIO_OTYPER_OT4_Pos            (4U)
2867 #define GPIO_OTYPER_OT4_Msk            (0x1UL << GPIO_OTYPER_OT4_Pos)           /*!< 0x00000010 */
2868 #define GPIO_OTYPER_OT4                GPIO_OTYPER_OT4_Msk
2869 #define GPIO_OTYPER_OT5_Pos            (5U)
2870 #define GPIO_OTYPER_OT5_Msk            (0x1UL << GPIO_OTYPER_OT5_Pos)           /*!< 0x00000020 */
2871 #define GPIO_OTYPER_OT5                GPIO_OTYPER_OT5_Msk
2872 #define GPIO_OTYPER_OT6_Pos            (6U)
2873 #define GPIO_OTYPER_OT6_Msk            (0x1UL << GPIO_OTYPER_OT6_Pos)           /*!< 0x00000040 */
2874 #define GPIO_OTYPER_OT6                GPIO_OTYPER_OT6_Msk
2875 #define GPIO_OTYPER_OT7_Pos            (7U)
2876 #define GPIO_OTYPER_OT7_Msk            (0x1UL << GPIO_OTYPER_OT7_Pos)           /*!< 0x00000080 */
2877 #define GPIO_OTYPER_OT7                GPIO_OTYPER_OT7_Msk
2878 #define GPIO_OTYPER_OT8_Pos            (8U)
2879 #define GPIO_OTYPER_OT8_Msk            (0x1UL << GPIO_OTYPER_OT8_Pos)           /*!< 0x00000100 */
2880 #define GPIO_OTYPER_OT8                GPIO_OTYPER_OT8_Msk
2881 #define GPIO_OTYPER_OT9_Pos            (9U)
2882 #define GPIO_OTYPER_OT9_Msk            (0x1UL << GPIO_OTYPER_OT9_Pos)           /*!< 0x00000200 */
2883 #define GPIO_OTYPER_OT9                GPIO_OTYPER_OT9_Msk
2884 #define GPIO_OTYPER_OT10_Pos           (10U)
2885 #define GPIO_OTYPER_OT10_Msk           (0x1UL << GPIO_OTYPER_OT10_Pos)          /*!< 0x00000400 */
2886 #define GPIO_OTYPER_OT10               GPIO_OTYPER_OT10_Msk
2887 #define GPIO_OTYPER_OT11_Pos           (11U)
2888 #define GPIO_OTYPER_OT11_Msk           (0x1UL << GPIO_OTYPER_OT11_Pos)          /*!< 0x00000800 */
2889 #define GPIO_OTYPER_OT11               GPIO_OTYPER_OT11_Msk
2890 #define GPIO_OTYPER_OT12_Pos           (12U)
2891 #define GPIO_OTYPER_OT12_Msk           (0x1UL << GPIO_OTYPER_OT12_Pos)          /*!< 0x00001000 */
2892 #define GPIO_OTYPER_OT12               GPIO_OTYPER_OT12_Msk
2893 #define GPIO_OTYPER_OT13_Pos           (13U)
2894 #define GPIO_OTYPER_OT13_Msk           (0x1UL << GPIO_OTYPER_OT13_Pos)          /*!< 0x00002000 */
2895 #define GPIO_OTYPER_OT13               GPIO_OTYPER_OT13_Msk
2896 #define GPIO_OTYPER_OT14_Pos           (14U)
2897 #define GPIO_OTYPER_OT14_Msk           (0x1UL << GPIO_OTYPER_OT14_Pos)          /*!< 0x00004000 */
2898 #define GPIO_OTYPER_OT14               GPIO_OTYPER_OT14_Msk
2899 #define GPIO_OTYPER_OT15_Pos           (15U)
2900 #define GPIO_OTYPER_OT15_Msk           (0x1UL << GPIO_OTYPER_OT15_Pos)          /*!< 0x00008000 */
2901 #define GPIO_OTYPER_OT15               GPIO_OTYPER_OT15_Msk
2902 
2903 /******************  Bits definition for GPIO_OSPEEDR register  ***************/
2904 #define GPIO_OSPEEDR_OSPEED0_Pos       (0U)
2905 #define GPIO_OSPEEDR_OSPEED0_Msk       (0x3UL << GPIO_OSPEEDR_OSPEED0_Pos)      /*!< 0x00000003 */
2906 #define GPIO_OSPEEDR_OSPEED0           GPIO_OSPEEDR_OSPEED0_Msk
2907 #define GPIO_OSPEEDR_OSPEED0_0         (0x1UL << GPIO_OSPEEDR_OSPEED0_Pos)      /*!< 0x00000001 */
2908 #define GPIO_OSPEEDR_OSPEED0_1         (0x2UL << GPIO_OSPEEDR_OSPEED0_Pos)      /*!< 0x00000002 */
2909 #define GPIO_OSPEEDR_OSPEED1_Pos       (2U)
2910 #define GPIO_OSPEEDR_OSPEED1_Msk       (0x3UL << GPIO_OSPEEDR_OSPEED1_Pos)      /*!< 0x0000000C */
2911 #define GPIO_OSPEEDR_OSPEED1           GPIO_OSPEEDR_OSPEED1_Msk
2912 #define GPIO_OSPEEDR_OSPEED1_0         (0x1UL << GPIO_OSPEEDR_OSPEED1_Pos)      /*!< 0x00000004 */
2913 #define GPIO_OSPEEDR_OSPEED1_1         (0x2UL << GPIO_OSPEEDR_OSPEED1_Pos)      /*!< 0x00000008 */
2914 #define GPIO_OSPEEDR_OSPEED2_Pos       (4U)
2915 #define GPIO_OSPEEDR_OSPEED2_Msk       (0x3UL << GPIO_OSPEEDR_OSPEED2_Pos)      /*!< 0x00000030 */
2916 #define GPIO_OSPEEDR_OSPEED2           GPIO_OSPEEDR_OSPEED2_Msk
2917 #define GPIO_OSPEEDR_OSPEED2_0         (0x1UL << GPIO_OSPEEDR_OSPEED2_Pos)      /*!< 0x00000010 */
2918 #define GPIO_OSPEEDR_OSPEED2_1         (0x2UL << GPIO_OSPEEDR_OSPEED2_Pos)      /*!< 0x00000020 */
2919 #define GPIO_OSPEEDR_OSPEED3_Pos       (6U)
2920 #define GPIO_OSPEEDR_OSPEED3_Msk       (0x3UL << GPIO_OSPEEDR_OSPEED3_Pos)      /*!< 0x000000C0 */
2921 #define GPIO_OSPEEDR_OSPEED3           GPIO_OSPEEDR_OSPEED3_Msk
2922 #define GPIO_OSPEEDR_OSPEED3_0         (0x1UL << GPIO_OSPEEDR_OSPEED3_Pos)      /*!< 0x00000040 */
2923 #define GPIO_OSPEEDR_OSPEED3_1         (0x2UL << GPIO_OSPEEDR_OSPEED3_Pos)      /*!< 0x00000080 */
2924 #define GPIO_OSPEEDR_OSPEED4_Pos       (8U)
2925 #define GPIO_OSPEEDR_OSPEED4_Msk       (0x3UL << GPIO_OSPEEDR_OSPEED4_Pos)      /*!< 0x00000300 */
2926 #define GPIO_OSPEEDR_OSPEED4           GPIO_OSPEEDR_OSPEED4_Msk
2927 #define GPIO_OSPEEDR_OSPEED4_0         (0x1UL << GPIO_OSPEEDR_OSPEED4_Pos)      /*!< 0x00000100 */
2928 #define GPIO_OSPEEDR_OSPEED4_1         (0x2UL << GPIO_OSPEEDR_OSPEED4_Pos)      /*!< 0x00000200 */
2929 #define GPIO_OSPEEDR_OSPEED5_Pos       (10U)
2930 #define GPIO_OSPEEDR_OSPEED5_Msk       (0x3UL << GPIO_OSPEEDR_OSPEED5_Pos)      /*!< 0x00000C00 */
2931 #define GPIO_OSPEEDR_OSPEED5           GPIO_OSPEEDR_OSPEED5_Msk
2932 #define GPIO_OSPEEDR_OSPEED5_0         (0x1UL << GPIO_OSPEEDR_OSPEED5_Pos)      /*!< 0x00000400 */
2933 #define GPIO_OSPEEDR_OSPEED5_1         (0x2UL << GPIO_OSPEEDR_OSPEED5_Pos)      /*!< 0x00000800 */
2934 #define GPIO_OSPEEDR_OSPEED6_Pos       (12U)
2935 #define GPIO_OSPEEDR_OSPEED6_Msk       (0x3UL << GPIO_OSPEEDR_OSPEED6_Pos)      /*!< 0x00003000 */
2936 #define GPIO_OSPEEDR_OSPEED6           GPIO_OSPEEDR_OSPEED6_Msk
2937 #define GPIO_OSPEEDR_OSPEED6_0         (0x1UL << GPIO_OSPEEDR_OSPEED6_Pos)      /*!< 0x00001000 */
2938 #define GPIO_OSPEEDR_OSPEED6_1         (0x2UL << GPIO_OSPEEDR_OSPEED6_Pos)      /*!< 0x00002000 */
2939 #define GPIO_OSPEEDR_OSPEED7_Pos       (14U)
2940 #define GPIO_OSPEEDR_OSPEED7_Msk       (0x3UL << GPIO_OSPEEDR_OSPEED7_Pos)      /*!< 0x0000C000 */
2941 #define GPIO_OSPEEDR_OSPEED7           GPIO_OSPEEDR_OSPEED7_Msk
2942 #define GPIO_OSPEEDR_OSPEED7_0         (0x1UL << GPIO_OSPEEDR_OSPEED7_Pos)      /*!< 0x00004000 */
2943 #define GPIO_OSPEEDR_OSPEED7_1         (0x2UL << GPIO_OSPEEDR_OSPEED7_Pos)      /*!< 0x00008000 */
2944 #define GPIO_OSPEEDR_OSPEED8_Pos       (16U)
2945 #define GPIO_OSPEEDR_OSPEED8_Msk       (0x3UL << GPIO_OSPEEDR_OSPEED8_Pos)      /*!< 0x00030000 */
2946 #define GPIO_OSPEEDR_OSPEED8           GPIO_OSPEEDR_OSPEED8_Msk
2947 #define GPIO_OSPEEDR_OSPEED8_0         (0x1UL << GPIO_OSPEEDR_OSPEED8_Pos)      /*!< 0x00010000 */
2948 #define GPIO_OSPEEDR_OSPEED8_1         (0x2UL << GPIO_OSPEEDR_OSPEED8_Pos)      /*!< 0x00020000 */
2949 #define GPIO_OSPEEDR_OSPEED9_Pos       (18U)
2950 #define GPIO_OSPEEDR_OSPEED9_Msk       (0x3UL << GPIO_OSPEEDR_OSPEED9_Pos)      /*!< 0x000C0000 */
2951 #define GPIO_OSPEEDR_OSPEED9           GPIO_OSPEEDR_OSPEED9_Msk
2952 #define GPIO_OSPEEDR_OSPEED9_0         (0x1UL << GPIO_OSPEEDR_OSPEED9_Pos)      /*!< 0x00040000 */
2953 #define GPIO_OSPEEDR_OSPEED9_1         (0x2UL << GPIO_OSPEEDR_OSPEED9_Pos)      /*!< 0x00080000 */
2954 #define GPIO_OSPEEDR_OSPEED10_Pos      (20U)
2955 #define GPIO_OSPEEDR_OSPEED10_Msk      (0x3UL << GPIO_OSPEEDR_OSPEED10_Pos)     /*!< 0x00300000 */
2956 #define GPIO_OSPEEDR_OSPEED10          GPIO_OSPEEDR_OSPEED10_Msk
2957 #define GPIO_OSPEEDR_OSPEED10_0        (0x1UL << GPIO_OSPEEDR_OSPEED10_Pos)     /*!< 0x00100000 */
2958 #define GPIO_OSPEEDR_OSPEED10_1        (0x2UL << GPIO_OSPEEDR_OSPEED10_Pos)     /*!< 0x00200000 */
2959 #define GPIO_OSPEEDR_OSPEED11_Pos      (22U)
2960 #define GPIO_OSPEEDR_OSPEED11_Msk      (0x3UL << GPIO_OSPEEDR_OSPEED11_Pos)     /*!< 0x00C00000 */
2961 #define GPIO_OSPEEDR_OSPEED11          GPIO_OSPEEDR_OSPEED11_Msk
2962 #define GPIO_OSPEEDR_OSPEED11_0        (0x1UL << GPIO_OSPEEDR_OSPEED11_Pos)     /*!< 0x00400000 */
2963 #define GPIO_OSPEEDR_OSPEED11_1        (0x2UL << GPIO_OSPEEDR_OSPEED11_Pos)     /*!< 0x00800000 */
2964 #define GPIO_OSPEEDR_OSPEED12_Pos      (24U)
2965 #define GPIO_OSPEEDR_OSPEED12_Msk      (0x3UL << GPIO_OSPEEDR_OSPEED12_Pos)     /*!< 0x03000000 */
2966 #define GPIO_OSPEEDR_OSPEED12          GPIO_OSPEEDR_OSPEED12_Msk
2967 #define GPIO_OSPEEDR_OSPEED12_0        (0x1UL << GPIO_OSPEEDR_OSPEED12_Pos)     /*!< 0x01000000 */
2968 #define GPIO_OSPEEDR_OSPEED12_1        (0x2UL << GPIO_OSPEEDR_OSPEED12_Pos)     /*!< 0x02000000 */
2969 #define GPIO_OSPEEDR_OSPEED13_Pos      (26U)
2970 #define GPIO_OSPEEDR_OSPEED13_Msk      (0x3UL << GPIO_OSPEEDR_OSPEED13_Pos)     /*!< 0x0C000000 */
2971 #define GPIO_OSPEEDR_OSPEED13          GPIO_OSPEEDR_OSPEED13_Msk
2972 #define GPIO_OSPEEDR_OSPEED13_0        (0x1UL << GPIO_OSPEEDR_OSPEED13_Pos)     /*!< 0x04000000 */
2973 #define GPIO_OSPEEDR_OSPEED13_1        (0x2UL << GPIO_OSPEEDR_OSPEED13_Pos)     /*!< 0x08000000 */
2974 #define GPIO_OSPEEDR_OSPEED14_Pos      (28U)
2975 #define GPIO_OSPEEDR_OSPEED14_Msk      (0x3UL << GPIO_OSPEEDR_OSPEED14_Pos)     /*!< 0x30000000 */
2976 #define GPIO_OSPEEDR_OSPEED14          GPIO_OSPEEDR_OSPEED14_Msk
2977 #define GPIO_OSPEEDR_OSPEED14_0        (0x1UL << GPIO_OSPEEDR_OSPEED14_Pos)     /*!< 0x10000000 */
2978 #define GPIO_OSPEEDR_OSPEED14_1        (0x2UL << GPIO_OSPEEDR_OSPEED14_Pos)     /*!< 0x20000000 */
2979 #define GPIO_OSPEEDR_OSPEED15_Pos      (30U)
2980 #define GPIO_OSPEEDR_OSPEED15_Msk      (0x3UL << GPIO_OSPEEDR_OSPEED15_Pos)     /*!< 0xC0000000 */
2981 #define GPIO_OSPEEDR_OSPEED15          GPIO_OSPEEDR_OSPEED15_Msk
2982 #define GPIO_OSPEEDR_OSPEED15_0        (0x1UL << GPIO_OSPEEDR_OSPEED15_Pos)     /*!< 0x40000000 */
2983 #define GPIO_OSPEEDR_OSPEED15_1        (0x2UL << GPIO_OSPEEDR_OSPEED15_Pos)     /*!< 0x80000000 */
2984 
2985 /******************  Bits definition for GPIO_PUPDR register  *****************/
2986 #define GPIO_PUPDR_PUPD0_Pos           (0U)
2987 #define GPIO_PUPDR_PUPD0_Msk           (0x3UL << GPIO_PUPDR_PUPD0_Pos)          /*!< 0x00000003 */
2988 #define GPIO_PUPDR_PUPD0               GPIO_PUPDR_PUPD0_Msk
2989 #define GPIO_PUPDR_PUPD0_0             (0x1UL << GPIO_PUPDR_PUPD0_Pos)          /*!< 0x00000001 */
2990 #define GPIO_PUPDR_PUPD0_1             (0x2UL << GPIO_PUPDR_PUPD0_Pos)          /*!< 0x00000002 */
2991 #define GPIO_PUPDR_PUPD1_Pos           (2U)
2992 #define GPIO_PUPDR_PUPD1_Msk           (0x3UL << GPIO_PUPDR_PUPD1_Pos)          /*!< 0x0000000C */
2993 #define GPIO_PUPDR_PUPD1               GPIO_PUPDR_PUPD1_Msk
2994 #define GPIO_PUPDR_PUPD1_0             (0x1UL << GPIO_PUPDR_PUPD1_Pos)          /*!< 0x00000004 */
2995 #define GPIO_PUPDR_PUPD1_1             (0x2UL << GPIO_PUPDR_PUPD1_Pos)          /*!< 0x00000008 */
2996 #define GPIO_PUPDR_PUPD2_Pos           (4U)
2997 #define GPIO_PUPDR_PUPD2_Msk           (0x3UL << GPIO_PUPDR_PUPD2_Pos)          /*!< 0x00000030 */
2998 #define GPIO_PUPDR_PUPD2               GPIO_PUPDR_PUPD2_Msk
2999 #define GPIO_PUPDR_PUPD2_0             (0x1UL << GPIO_PUPDR_PUPD2_Pos)          /*!< 0x00000010 */
3000 #define GPIO_PUPDR_PUPD2_1             (0x2UL << GPIO_PUPDR_PUPD2_Pos)          /*!< 0x00000020 */
3001 #define GPIO_PUPDR_PUPD3_Pos           (6U)
3002 #define GPIO_PUPDR_PUPD3_Msk           (0x3UL << GPIO_PUPDR_PUPD3_Pos)          /*!< 0x000000C0 */
3003 #define GPIO_PUPDR_PUPD3               GPIO_PUPDR_PUPD3_Msk
3004 #define GPIO_PUPDR_PUPD3_0             (0x1UL << GPIO_PUPDR_PUPD3_Pos)          /*!< 0x00000040 */
3005 #define GPIO_PUPDR_PUPD3_1             (0x2UL << GPIO_PUPDR_PUPD3_Pos)          /*!< 0x00000080 */
3006 #define GPIO_PUPDR_PUPD4_Pos           (8U)
3007 #define GPIO_PUPDR_PUPD4_Msk           (0x3UL << GPIO_PUPDR_PUPD4_Pos)          /*!< 0x00000300 */
3008 #define GPIO_PUPDR_PUPD4               GPIO_PUPDR_PUPD4_Msk
3009 #define GPIO_PUPDR_PUPD4_0             (0x1UL << GPIO_PUPDR_PUPD4_Pos)          /*!< 0x00000100 */
3010 #define GPIO_PUPDR_PUPD4_1             (0x2UL << GPIO_PUPDR_PUPD4_Pos)          /*!< 0x00000200 */
3011 #define GPIO_PUPDR_PUPD5_Pos           (10U)
3012 #define GPIO_PUPDR_PUPD5_Msk           (0x3UL << GPIO_PUPDR_PUPD5_Pos)          /*!< 0x00000C00 */
3013 #define GPIO_PUPDR_PUPD5               GPIO_PUPDR_PUPD5_Msk
3014 #define GPIO_PUPDR_PUPD5_0             (0x1UL << GPIO_PUPDR_PUPD5_Pos)          /*!< 0x00000400 */
3015 #define GPIO_PUPDR_PUPD5_1             (0x2UL << GPIO_PUPDR_PUPD5_Pos)          /*!< 0x00000800 */
3016 #define GPIO_PUPDR_PUPD6_Pos           (12U)
3017 #define GPIO_PUPDR_PUPD6_Msk           (0x3UL << GPIO_PUPDR_PUPD6_Pos)          /*!< 0x00003000 */
3018 #define GPIO_PUPDR_PUPD6               GPIO_PUPDR_PUPD6_Msk
3019 #define GPIO_PUPDR_PUPD6_0             (0x1UL << GPIO_PUPDR_PUPD6_Pos)          /*!< 0x00001000 */
3020 #define GPIO_PUPDR_PUPD6_1             (0x2UL << GPIO_PUPDR_PUPD6_Pos)          /*!< 0x00002000 */
3021 #define GPIO_PUPDR_PUPD7_Pos           (14U)
3022 #define GPIO_PUPDR_PUPD7_Msk           (0x3UL << GPIO_PUPDR_PUPD7_Pos)          /*!< 0x0000C000 */
3023 #define GPIO_PUPDR_PUPD7               GPIO_PUPDR_PUPD7_Msk
3024 #define GPIO_PUPDR_PUPD7_0             (0x1UL << GPIO_PUPDR_PUPD7_Pos)          /*!< 0x00004000 */
3025 #define GPIO_PUPDR_PUPD7_1             (0x2UL << GPIO_PUPDR_PUPD7_Pos)          /*!< 0x00008000 */
3026 #define GPIO_PUPDR_PUPD8_Pos           (16U)
3027 #define GPIO_PUPDR_PUPD8_Msk           (0x3UL << GPIO_PUPDR_PUPD8_Pos)          /*!< 0x00030000 */
3028 #define GPIO_PUPDR_PUPD8               GPIO_PUPDR_PUPD8_Msk
3029 #define GPIO_PUPDR_PUPD8_0             (0x1UL << GPIO_PUPDR_PUPD8_Pos)          /*!< 0x00010000 */
3030 #define GPIO_PUPDR_PUPD8_1             (0x2UL << GPIO_PUPDR_PUPD8_Pos)          /*!< 0x00020000 */
3031 #define GPIO_PUPDR_PUPD9_Pos           (18U)
3032 #define GPIO_PUPDR_PUPD9_Msk           (0x3UL << GPIO_PUPDR_PUPD9_Pos)          /*!< 0x000C0000 */
3033 #define GPIO_PUPDR_PUPD9               GPIO_PUPDR_PUPD9_Msk
3034 #define GPIO_PUPDR_PUPD9_0             (0x1UL << GPIO_PUPDR_PUPD9_Pos)          /*!< 0x00040000 */
3035 #define GPIO_PUPDR_PUPD9_1             (0x2UL << GPIO_PUPDR_PUPD9_Pos)          /*!< 0x00080000 */
3036 #define GPIO_PUPDR_PUPD10_Pos          (20U)
3037 #define GPIO_PUPDR_PUPD10_Msk          (0x3UL << GPIO_PUPDR_PUPD10_Pos)         /*!< 0x00300000 */
3038 #define GPIO_PUPDR_PUPD10              GPIO_PUPDR_PUPD10_Msk
3039 #define GPIO_PUPDR_PUPD10_0            (0x1UL << GPIO_PUPDR_PUPD10_Pos)         /*!< 0x00100000 */
3040 #define GPIO_PUPDR_PUPD10_1            (0x2UL << GPIO_PUPDR_PUPD10_Pos)         /*!< 0x00200000 */
3041 #define GPIO_PUPDR_PUPD11_Pos          (22U)
3042 #define GPIO_PUPDR_PUPD11_Msk          (0x3UL << GPIO_PUPDR_PUPD11_Pos)         /*!< 0x00C00000 */
3043 #define GPIO_PUPDR_PUPD11              GPIO_PUPDR_PUPD11_Msk
3044 #define GPIO_PUPDR_PUPD11_0            (0x1UL << GPIO_PUPDR_PUPD11_Pos)         /*!< 0x00400000 */
3045 #define GPIO_PUPDR_PUPD11_1            (0x2UL << GPIO_PUPDR_PUPD11_Pos)         /*!< 0x00800000 */
3046 #define GPIO_PUPDR_PUPD12_Pos          (24U)
3047 #define GPIO_PUPDR_PUPD12_Msk          (0x3UL << GPIO_PUPDR_PUPD12_Pos)         /*!< 0x03000000 */
3048 #define GPIO_PUPDR_PUPD12              GPIO_PUPDR_PUPD12_Msk
3049 #define GPIO_PUPDR_PUPD12_0            (0x1UL << GPIO_PUPDR_PUPD12_Pos)         /*!< 0x01000000 */
3050 #define GPIO_PUPDR_PUPD12_1            (0x2UL << GPIO_PUPDR_PUPD12_Pos)         /*!< 0x02000000 */
3051 #define GPIO_PUPDR_PUPD13_Pos          (26U)
3052 #define GPIO_PUPDR_PUPD13_Msk          (0x3UL << GPIO_PUPDR_PUPD13_Pos)         /*!< 0x0C000000 */
3053 #define GPIO_PUPDR_PUPD13              GPIO_PUPDR_PUPD13_Msk
3054 #define GPIO_PUPDR_PUPD13_0            (0x1UL << GPIO_PUPDR_PUPD13_Pos)         /*!< 0x04000000 */
3055 #define GPIO_PUPDR_PUPD13_1            (0x2UL << GPIO_PUPDR_PUPD13_Pos)         /*!< 0x08000000 */
3056 #define GPIO_PUPDR_PUPD14_Pos          (28U)
3057 #define GPIO_PUPDR_PUPD14_Msk          (0x3UL << GPIO_PUPDR_PUPD14_Pos)         /*!< 0x30000000 */
3058 #define GPIO_PUPDR_PUPD14              GPIO_PUPDR_PUPD14_Msk
3059 #define GPIO_PUPDR_PUPD14_0            (0x1UL << GPIO_PUPDR_PUPD14_Pos)         /*!< 0x10000000 */
3060 #define GPIO_PUPDR_PUPD14_1            (0x2UL << GPIO_PUPDR_PUPD14_Pos)         /*!< 0x20000000 */
3061 #define GPIO_PUPDR_PUPD15_Pos          (30U)
3062 #define GPIO_PUPDR_PUPD15_Msk          (0x3UL << GPIO_PUPDR_PUPD15_Pos)         /*!< 0xC0000000 */
3063 #define GPIO_PUPDR_PUPD15              GPIO_PUPDR_PUPD15_Msk
3064 #define GPIO_PUPDR_PUPD15_0            (0x1UL << GPIO_PUPDR_PUPD15_Pos)         /*!< 0x40000000 */
3065 #define GPIO_PUPDR_PUPD15_1            (0x2UL << GPIO_PUPDR_PUPD15_Pos)         /*!< 0x80000000 */
3066 
3067 /******************  Bits definition for GPIO_IDR register  *******************/
3068 #define GPIO_IDR_ID0_Pos               (0U)
3069 #define GPIO_IDR_ID0_Msk               (0x1UL << GPIO_IDR_ID0_Pos)              /*!< 0x00000001 */
3070 #define GPIO_IDR_ID0                   GPIO_IDR_ID0_Msk
3071 #define GPIO_IDR_ID1_Pos               (1U)
3072 #define GPIO_IDR_ID1_Msk               (0x1UL << GPIO_IDR_ID1_Pos)              /*!< 0x00000002 */
3073 #define GPIO_IDR_ID1                   GPIO_IDR_ID1_Msk
3074 #define GPIO_IDR_ID2_Pos               (2U)
3075 #define GPIO_IDR_ID2_Msk               (0x1UL << GPIO_IDR_ID2_Pos)              /*!< 0x00000004 */
3076 #define GPIO_IDR_ID2                   GPIO_IDR_ID2_Msk
3077 #define GPIO_IDR_ID3_Pos               (3U)
3078 #define GPIO_IDR_ID3_Msk               (0x1UL << GPIO_IDR_ID3_Pos)              /*!< 0x00000008 */
3079 #define GPIO_IDR_ID3                   GPIO_IDR_ID3_Msk
3080 #define GPIO_IDR_ID4_Pos               (4U)
3081 #define GPIO_IDR_ID4_Msk               (0x1UL << GPIO_IDR_ID4_Pos)              /*!< 0x00000010 */
3082 #define GPIO_IDR_ID4                   GPIO_IDR_ID4_Msk
3083 #define GPIO_IDR_ID5_Pos               (5U)
3084 #define GPIO_IDR_ID5_Msk               (0x1UL << GPIO_IDR_ID5_Pos)              /*!< 0x00000020 */
3085 #define GPIO_IDR_ID5                   GPIO_IDR_ID5_Msk
3086 #define GPIO_IDR_ID6_Pos               (6U)
3087 #define GPIO_IDR_ID6_Msk               (0x1UL << GPIO_IDR_ID6_Pos)              /*!< 0x00000040 */
3088 #define GPIO_IDR_ID6                   GPIO_IDR_ID6_Msk
3089 #define GPIO_IDR_ID7_Pos               (7U)
3090 #define GPIO_IDR_ID7_Msk               (0x1UL << GPIO_IDR_ID7_Pos)              /*!< 0x00000080 */
3091 #define GPIO_IDR_ID7                   GPIO_IDR_ID7_Msk
3092 #define GPIO_IDR_ID8_Pos               (8U)
3093 #define GPIO_IDR_ID8_Msk               (0x1UL << GPIO_IDR_ID8_Pos)              /*!< 0x00000100 */
3094 #define GPIO_IDR_ID8                   GPIO_IDR_ID8_Msk
3095 #define GPIO_IDR_ID9_Pos               (9U)
3096 #define GPIO_IDR_ID9_Msk               (0x1UL << GPIO_IDR_ID9_Pos)              /*!< 0x00000200 */
3097 #define GPIO_IDR_ID9                   GPIO_IDR_ID9_Msk
3098 #define GPIO_IDR_ID10_Pos              (10U)
3099 #define GPIO_IDR_ID10_Msk              (0x1UL << GPIO_IDR_ID10_Pos)             /*!< 0x00000400 */
3100 #define GPIO_IDR_ID10                  GPIO_IDR_ID10_Msk
3101 #define GPIO_IDR_ID11_Pos              (11U)
3102 #define GPIO_IDR_ID11_Msk              (0x1UL << GPIO_IDR_ID11_Pos)             /*!< 0x00000800 */
3103 #define GPIO_IDR_ID11                  GPIO_IDR_ID11_Msk
3104 #define GPIO_IDR_ID12_Pos              (12U)
3105 #define GPIO_IDR_ID12_Msk              (0x1UL << GPIO_IDR_ID12_Pos)             /*!< 0x00001000 */
3106 #define GPIO_IDR_ID12                  GPIO_IDR_ID12_Msk
3107 #define GPIO_IDR_ID13_Pos              (13U)
3108 #define GPIO_IDR_ID13_Msk              (0x1UL << GPIO_IDR_ID13_Pos)             /*!< 0x00002000 */
3109 #define GPIO_IDR_ID13                  GPIO_IDR_ID13_Msk
3110 #define GPIO_IDR_ID14_Pos              (14U)
3111 #define GPIO_IDR_ID14_Msk              (0x1UL << GPIO_IDR_ID14_Pos)             /*!< 0x00004000 */
3112 #define GPIO_IDR_ID14                  GPIO_IDR_ID14_Msk
3113 #define GPIO_IDR_ID15_Pos              (15U)
3114 #define GPIO_IDR_ID15_Msk              (0x1UL << GPIO_IDR_ID15_Pos)             /*!< 0x00008000 */
3115 #define GPIO_IDR_ID15                  GPIO_IDR_ID15_Msk
3116 
3117 /******************  Bits definition for GPIO_ODR register  *******************/
3118 #define GPIO_ODR_OD0_Pos               (0U)
3119 #define GPIO_ODR_OD0_Msk               (0x1UL << GPIO_ODR_OD0_Pos)              /*!< 0x00000001 */
3120 #define GPIO_ODR_OD0                   GPIO_ODR_OD0_Msk
3121 #define GPIO_ODR_OD1_Pos               (1U)
3122 #define GPIO_ODR_OD1_Msk               (0x1UL << GPIO_ODR_OD1_Pos)              /*!< 0x00000002 */
3123 #define GPIO_ODR_OD1                   GPIO_ODR_OD1_Msk
3124 #define GPIO_ODR_OD2_Pos               (2U)
3125 #define GPIO_ODR_OD2_Msk               (0x1UL << GPIO_ODR_OD2_Pos)              /*!< 0x00000004 */
3126 #define GPIO_ODR_OD2                   GPIO_ODR_OD2_Msk
3127 #define GPIO_ODR_OD3_Pos               (3U)
3128 #define GPIO_ODR_OD3_Msk               (0x1UL << GPIO_ODR_OD3_Pos)              /*!< 0x00000008 */
3129 #define GPIO_ODR_OD3                   GPIO_ODR_OD3_Msk
3130 #define GPIO_ODR_OD4_Pos               (4U)
3131 #define GPIO_ODR_OD4_Msk               (0x1UL << GPIO_ODR_OD4_Pos)              /*!< 0x00000010 */
3132 #define GPIO_ODR_OD4                   GPIO_ODR_OD4_Msk
3133 #define GPIO_ODR_OD5_Pos               (5U)
3134 #define GPIO_ODR_OD5_Msk               (0x1UL << GPIO_ODR_OD5_Pos)              /*!< 0x00000020 */
3135 #define GPIO_ODR_OD5                   GPIO_ODR_OD5_Msk
3136 #define GPIO_ODR_OD6_Pos               (6U)
3137 #define GPIO_ODR_OD6_Msk               (0x1UL << GPIO_ODR_OD6_Pos)              /*!< 0x00000040 */
3138 #define GPIO_ODR_OD6                   GPIO_ODR_OD6_Msk
3139 #define GPIO_ODR_OD7_Pos               (7U)
3140 #define GPIO_ODR_OD7_Msk               (0x1UL << GPIO_ODR_OD7_Pos)              /*!< 0x00000080 */
3141 #define GPIO_ODR_OD7                   GPIO_ODR_OD7_Msk
3142 #define GPIO_ODR_OD8_Pos               (8U)
3143 #define GPIO_ODR_OD8_Msk               (0x1UL << GPIO_ODR_OD8_Pos)              /*!< 0x00000100 */
3144 #define GPIO_ODR_OD8                   GPIO_ODR_OD8_Msk
3145 #define GPIO_ODR_OD9_Pos               (9U)
3146 #define GPIO_ODR_OD9_Msk               (0x1UL << GPIO_ODR_OD9_Pos)              /*!< 0x00000200 */
3147 #define GPIO_ODR_OD9                   GPIO_ODR_OD9_Msk
3148 #define GPIO_ODR_OD10_Pos              (10U)
3149 #define GPIO_ODR_OD10_Msk              (0x1UL << GPIO_ODR_OD10_Pos)             /*!< 0x00000400 */
3150 #define GPIO_ODR_OD10                  GPIO_ODR_OD10_Msk
3151 #define GPIO_ODR_OD11_Pos              (11U)
3152 #define GPIO_ODR_OD11_Msk              (0x1UL << GPIO_ODR_OD11_Pos)             /*!< 0x00000800 */
3153 #define GPIO_ODR_OD11                  GPIO_ODR_OD11_Msk
3154 #define GPIO_ODR_OD12_Pos              (12U)
3155 #define GPIO_ODR_OD12_Msk              (0x1UL << GPIO_ODR_OD12_Pos)             /*!< 0x00001000 */
3156 #define GPIO_ODR_OD12                  GPIO_ODR_OD12_Msk
3157 #define GPIO_ODR_OD13_Pos              (13U)
3158 #define GPIO_ODR_OD13_Msk              (0x1UL << GPIO_ODR_OD13_Pos)             /*!< 0x00002000 */
3159 #define GPIO_ODR_OD13                  GPIO_ODR_OD13_Msk
3160 #define GPIO_ODR_OD14_Pos              (14U)
3161 #define GPIO_ODR_OD14_Msk              (0x1UL << GPIO_ODR_OD14_Pos)             /*!< 0x00004000 */
3162 #define GPIO_ODR_OD14                  GPIO_ODR_OD14_Msk
3163 #define GPIO_ODR_OD15_Pos              (15U)
3164 #define GPIO_ODR_OD15_Msk              (0x1UL << GPIO_ODR_OD15_Pos)             /*!< 0x00008000 */
3165 #define GPIO_ODR_OD15                  GPIO_ODR_OD15_Msk
3166 
3167 /******************  Bits definition for GPIO_BSRR register  ******************/
3168 #define GPIO_BSRR_BS0_Pos              (0U)
3169 #define GPIO_BSRR_BS0_Msk              (0x1UL << GPIO_BSRR_BS0_Pos)             /*!< 0x00000001 */
3170 #define GPIO_BSRR_BS0                  GPIO_BSRR_BS0_Msk
3171 #define GPIO_BSRR_BS1_Pos              (1U)
3172 #define GPIO_BSRR_BS1_Msk              (0x1UL << GPIO_BSRR_BS1_Pos)             /*!< 0x00000002 */
3173 #define GPIO_BSRR_BS1                  GPIO_BSRR_BS1_Msk
3174 #define GPIO_BSRR_BS2_Pos              (2U)
3175 #define GPIO_BSRR_BS2_Msk              (0x1UL << GPIO_BSRR_BS2_Pos)             /*!< 0x00000004 */
3176 #define GPIO_BSRR_BS2                  GPIO_BSRR_BS2_Msk
3177 #define GPIO_BSRR_BS3_Pos              (3U)
3178 #define GPIO_BSRR_BS3_Msk              (0x1UL << GPIO_BSRR_BS3_Pos)             /*!< 0x00000008 */
3179 #define GPIO_BSRR_BS3                  GPIO_BSRR_BS3_Msk
3180 #define GPIO_BSRR_BS4_Pos              (4U)
3181 #define GPIO_BSRR_BS4_Msk              (0x1UL << GPIO_BSRR_BS4_Pos)             /*!< 0x00000010 */
3182 #define GPIO_BSRR_BS4                  GPIO_BSRR_BS4_Msk
3183 #define GPIO_BSRR_BS5_Pos              (5U)
3184 #define GPIO_BSRR_BS5_Msk              (0x1UL << GPIO_BSRR_BS5_Pos)             /*!< 0x00000020 */
3185 #define GPIO_BSRR_BS5                  GPIO_BSRR_BS5_Msk
3186 #define GPIO_BSRR_BS6_Pos              (6U)
3187 #define GPIO_BSRR_BS6_Msk              (0x1UL << GPIO_BSRR_BS6_Pos)             /*!< 0x00000040 */
3188 #define GPIO_BSRR_BS6                  GPIO_BSRR_BS6_Msk
3189 #define GPIO_BSRR_BS7_Pos              (7U)
3190 #define GPIO_BSRR_BS7_Msk              (0x1UL << GPIO_BSRR_BS7_Pos)             /*!< 0x00000080 */
3191 #define GPIO_BSRR_BS7                  GPIO_BSRR_BS7_Msk
3192 #define GPIO_BSRR_BS8_Pos              (8U)
3193 #define GPIO_BSRR_BS8_Msk              (0x1UL << GPIO_BSRR_BS8_Pos)             /*!< 0x00000100 */
3194 #define GPIO_BSRR_BS8                  GPIO_BSRR_BS8_Msk
3195 #define GPIO_BSRR_BS9_Pos              (9U)
3196 #define GPIO_BSRR_BS9_Msk              (0x1UL << GPIO_BSRR_BS9_Pos)             /*!< 0x00000200 */
3197 #define GPIO_BSRR_BS9                  GPIO_BSRR_BS9_Msk
3198 #define GPIO_BSRR_BS10_Pos             (10U)
3199 #define GPIO_BSRR_BS10_Msk             (0x1UL << GPIO_BSRR_BS10_Pos)            /*!< 0x00000400 */
3200 #define GPIO_BSRR_BS10                 GPIO_BSRR_BS10_Msk
3201 #define GPIO_BSRR_BS11_Pos             (11U)
3202 #define GPIO_BSRR_BS11_Msk             (0x1UL << GPIO_BSRR_BS11_Pos)            /*!< 0x00000800 */
3203 #define GPIO_BSRR_BS11                 GPIO_BSRR_BS11_Msk
3204 #define GPIO_BSRR_BS12_Pos             (12U)
3205 #define GPIO_BSRR_BS12_Msk             (0x1UL << GPIO_BSRR_BS12_Pos)            /*!< 0x00001000 */
3206 #define GPIO_BSRR_BS12                 GPIO_BSRR_BS12_Msk
3207 #define GPIO_BSRR_BS13_Pos             (13U)
3208 #define GPIO_BSRR_BS13_Msk             (0x1UL << GPIO_BSRR_BS13_Pos)            /*!< 0x00002000 */
3209 #define GPIO_BSRR_BS13                 GPIO_BSRR_BS13_Msk
3210 #define GPIO_BSRR_BS14_Pos             (14U)
3211 #define GPIO_BSRR_BS14_Msk             (0x1UL << GPIO_BSRR_BS14_Pos)            /*!< 0x00004000 */
3212 #define GPIO_BSRR_BS14                 GPIO_BSRR_BS14_Msk
3213 #define GPIO_BSRR_BS15_Pos             (15U)
3214 #define GPIO_BSRR_BS15_Msk             (0x1UL << GPIO_BSRR_BS15_Pos)            /*!< 0x00008000 */
3215 #define GPIO_BSRR_BS15                 GPIO_BSRR_BS15_Msk
3216 #define GPIO_BSRR_BR0_Pos              (16U)
3217 #define GPIO_BSRR_BR0_Msk              (0x1UL << GPIO_BSRR_BR0_Pos)             /*!< 0x00010000 */
3218 #define GPIO_BSRR_BR0                  GPIO_BSRR_BR0_Msk
3219 #define GPIO_BSRR_BR1_Pos              (17U)
3220 #define GPIO_BSRR_BR1_Msk              (0x1UL << GPIO_BSRR_BR1_Pos)             /*!< 0x00020000 */
3221 #define GPIO_BSRR_BR1                  GPIO_BSRR_BR1_Msk
3222 #define GPIO_BSRR_BR2_Pos              (18U)
3223 #define GPIO_BSRR_BR2_Msk              (0x1UL << GPIO_BSRR_BR2_Pos)             /*!< 0x00040000 */
3224 #define GPIO_BSRR_BR2                  GPIO_BSRR_BR2_Msk
3225 #define GPIO_BSRR_BR3_Pos              (19U)
3226 #define GPIO_BSRR_BR3_Msk              (0x1UL << GPIO_BSRR_BR3_Pos)             /*!< 0x00080000 */
3227 #define GPIO_BSRR_BR3                  GPIO_BSRR_BR3_Msk
3228 #define GPIO_BSRR_BR4_Pos              (20U)
3229 #define GPIO_BSRR_BR4_Msk              (0x1UL << GPIO_BSRR_BR4_Pos)             /*!< 0x00100000 */
3230 #define GPIO_BSRR_BR4                  GPIO_BSRR_BR4_Msk
3231 #define GPIO_BSRR_BR5_Pos              (21U)
3232 #define GPIO_BSRR_BR5_Msk              (0x1UL << GPIO_BSRR_BR5_Pos)             /*!< 0x00200000 */
3233 #define GPIO_BSRR_BR5                  GPIO_BSRR_BR5_Msk
3234 #define GPIO_BSRR_BR6_Pos              (22U)
3235 #define GPIO_BSRR_BR6_Msk              (0x1UL << GPIO_BSRR_BR6_Pos)             /*!< 0x00400000 */
3236 #define GPIO_BSRR_BR6                  GPIO_BSRR_BR6_Msk
3237 #define GPIO_BSRR_BR7_Pos              (23U)
3238 #define GPIO_BSRR_BR7_Msk              (0x1UL << GPIO_BSRR_BR7_Pos)             /*!< 0x00800000 */
3239 #define GPIO_BSRR_BR7                  GPIO_BSRR_BR7_Msk
3240 #define GPIO_BSRR_BR8_Pos              (24U)
3241 #define GPIO_BSRR_BR8_Msk              (0x1UL << GPIO_BSRR_BR8_Pos)             /*!< 0x01000000 */
3242 #define GPIO_BSRR_BR8                  GPIO_BSRR_BR8_Msk
3243 #define GPIO_BSRR_BR9_Pos              (25U)
3244 #define GPIO_BSRR_BR9_Msk              (0x1UL << GPIO_BSRR_BR9_Pos)             /*!< 0x02000000 */
3245 #define GPIO_BSRR_BR9                  GPIO_BSRR_BR9_Msk
3246 #define GPIO_BSRR_BR10_Pos             (26U)
3247 #define GPIO_BSRR_BR10_Msk             (0x1UL << GPIO_BSRR_BR10_Pos)            /*!< 0x04000000 */
3248 #define GPIO_BSRR_BR10                 GPIO_BSRR_BR10_Msk
3249 #define GPIO_BSRR_BR11_Pos             (27U)
3250 #define GPIO_BSRR_BR11_Msk             (0x1UL << GPIO_BSRR_BR11_Pos)            /*!< 0x08000000 */
3251 #define GPIO_BSRR_BR11                 GPIO_BSRR_BR11_Msk
3252 #define GPIO_BSRR_BR12_Pos             (28U)
3253 #define GPIO_BSRR_BR12_Msk             (0x1UL << GPIO_BSRR_BR12_Pos)            /*!< 0x10000000 */
3254 #define GPIO_BSRR_BR12                 GPIO_BSRR_BR12_Msk
3255 #define GPIO_BSRR_BR13_Pos             (29U)
3256 #define GPIO_BSRR_BR13_Msk             (0x1UL << GPIO_BSRR_BR13_Pos)            /*!< 0x20000000 */
3257 #define GPIO_BSRR_BR13                 GPIO_BSRR_BR13_Msk
3258 #define GPIO_BSRR_BR14_Pos             (30U)
3259 #define GPIO_BSRR_BR14_Msk             (0x1UL << GPIO_BSRR_BR14_Pos)            /*!< 0x40000000 */
3260 #define GPIO_BSRR_BR14                 GPIO_BSRR_BR14_Msk
3261 #define GPIO_BSRR_BR15_Pos             (31U)
3262 #define GPIO_BSRR_BR15_Msk             (0x1UL << GPIO_BSRR_BR15_Pos)            /*!< 0x80000000 */
3263 #define GPIO_BSRR_BR15                 GPIO_BSRR_BR15_Msk
3264 
3265 /****************** Bit definition for GPIO_LCKR register *********************/
3266 #define GPIO_LCKR_LCK0_Pos             (0U)
3267 #define GPIO_LCKR_LCK0_Msk             (0x1UL << GPIO_LCKR_LCK0_Pos)            /*!< 0x00000001 */
3268 #define GPIO_LCKR_LCK0                 GPIO_LCKR_LCK0_Msk
3269 #define GPIO_LCKR_LCK1_Pos             (1U)
3270 #define GPIO_LCKR_LCK1_Msk             (0x1UL << GPIO_LCKR_LCK1_Pos)            /*!< 0x00000002 */
3271 #define GPIO_LCKR_LCK1                 GPIO_LCKR_LCK1_Msk
3272 #define GPIO_LCKR_LCK2_Pos             (2U)
3273 #define GPIO_LCKR_LCK2_Msk             (0x1UL << GPIO_LCKR_LCK2_Pos)            /*!< 0x00000004 */
3274 #define GPIO_LCKR_LCK2                 GPIO_LCKR_LCK2_Msk
3275 #define GPIO_LCKR_LCK3_Pos             (3U)
3276 #define GPIO_LCKR_LCK3_Msk             (0x1UL << GPIO_LCKR_LCK3_Pos)            /*!< 0x00000008 */
3277 #define GPIO_LCKR_LCK3                 GPIO_LCKR_LCK3_Msk
3278 #define GPIO_LCKR_LCK4_Pos             (4U)
3279 #define GPIO_LCKR_LCK4_Msk             (0x1UL << GPIO_LCKR_LCK4_Pos)            /*!< 0x00000010 */
3280 #define GPIO_LCKR_LCK4                 GPIO_LCKR_LCK4_Msk
3281 #define GPIO_LCKR_LCK5_Pos             (5U)
3282 #define GPIO_LCKR_LCK5_Msk             (0x1UL << GPIO_LCKR_LCK5_Pos)            /*!< 0x00000020 */
3283 #define GPIO_LCKR_LCK5                 GPIO_LCKR_LCK5_Msk
3284 #define GPIO_LCKR_LCK6_Pos             (6U)
3285 #define GPIO_LCKR_LCK6_Msk             (0x1UL << GPIO_LCKR_LCK6_Pos)            /*!< 0x00000040 */
3286 #define GPIO_LCKR_LCK6                 GPIO_LCKR_LCK6_Msk
3287 #define GPIO_LCKR_LCK7_Pos             (7U)
3288 #define GPIO_LCKR_LCK7_Msk             (0x1UL << GPIO_LCKR_LCK7_Pos)            /*!< 0x00000080 */
3289 #define GPIO_LCKR_LCK7                 GPIO_LCKR_LCK7_Msk
3290 #define GPIO_LCKR_LCK8_Pos             (8U)
3291 #define GPIO_LCKR_LCK8_Msk             (0x1UL << GPIO_LCKR_LCK8_Pos)            /*!< 0x00000100 */
3292 #define GPIO_LCKR_LCK8                 GPIO_LCKR_LCK8_Msk
3293 #define GPIO_LCKR_LCK9_Pos             (9U)
3294 #define GPIO_LCKR_LCK9_Msk             (0x1UL << GPIO_LCKR_LCK9_Pos)            /*!< 0x00000200 */
3295 #define GPIO_LCKR_LCK9                 GPIO_LCKR_LCK9_Msk
3296 #define GPIO_LCKR_LCK10_Pos            (10U)
3297 #define GPIO_LCKR_LCK10_Msk            (0x1UL << GPIO_LCKR_LCK10_Pos)           /*!< 0x00000400 */
3298 #define GPIO_LCKR_LCK10                GPIO_LCKR_LCK10_Msk
3299 #define GPIO_LCKR_LCK11_Pos            (11U)
3300 #define GPIO_LCKR_LCK11_Msk            (0x1UL << GPIO_LCKR_LCK11_Pos)           /*!< 0x00000800 */
3301 #define GPIO_LCKR_LCK11                GPIO_LCKR_LCK11_Msk
3302 #define GPIO_LCKR_LCK12_Pos            (12U)
3303 #define GPIO_LCKR_LCK12_Msk            (0x1UL << GPIO_LCKR_LCK12_Pos)           /*!< 0x00001000 */
3304 #define GPIO_LCKR_LCK12                GPIO_LCKR_LCK12_Msk
3305 #define GPIO_LCKR_LCK13_Pos            (13U)
3306 #define GPIO_LCKR_LCK13_Msk            (0x1UL << GPIO_LCKR_LCK13_Pos)           /*!< 0x00002000 */
3307 #define GPIO_LCKR_LCK13                GPIO_LCKR_LCK13_Msk
3308 #define GPIO_LCKR_LCK14_Pos            (14U)
3309 #define GPIO_LCKR_LCK14_Msk            (0x1UL << GPIO_LCKR_LCK14_Pos)           /*!< 0x00004000 */
3310 #define GPIO_LCKR_LCK14                GPIO_LCKR_LCK14_Msk
3311 #define GPIO_LCKR_LCK15_Pos            (15U)
3312 #define GPIO_LCKR_LCK15_Msk            (0x1UL << GPIO_LCKR_LCK15_Pos)           /*!< 0x00008000 */
3313 #define GPIO_LCKR_LCK15                GPIO_LCKR_LCK15_Msk
3314 #define GPIO_LCKR_LCKK_Pos             (16U)
3315 #define GPIO_LCKR_LCKK_Msk             (0x1UL << GPIO_LCKR_LCKK_Pos)            /*!< 0x00010000 */
3316 #define GPIO_LCKR_LCKK                 GPIO_LCKR_LCKK_Msk
3317 
3318 /****************** Bit definition for GPIO_AFRL register *********************/
3319 #define GPIO_AFRL_AFSEL0_Pos           (0U)
3320 #define GPIO_AFRL_AFSEL0_Msk           (0xFUL << GPIO_AFRL_AFSEL0_Pos)          /*!< 0x0000000F */
3321 #define GPIO_AFRL_AFSEL0               GPIO_AFRL_AFSEL0_Msk
3322 #define GPIO_AFRL_AFSEL0_0             (0x1UL << GPIO_AFRL_AFSEL0_Pos)          /*!< 0x00000001 */
3323 #define GPIO_AFRL_AFSEL0_1             (0x2UL << GPIO_AFRL_AFSEL0_Pos)          /*!< 0x00000002 */
3324 #define GPIO_AFRL_AFSEL0_2             (0x4UL << GPIO_AFRL_AFSEL0_Pos)          /*!< 0x00000004 */
3325 #define GPIO_AFRL_AFSEL0_3             (0x8UL << GPIO_AFRL_AFSEL0_Pos)          /*!< 0x00000008 */
3326 #define GPIO_AFRL_AFSEL1_Pos           (4U)
3327 #define GPIO_AFRL_AFSEL1_Msk           (0xFUL << GPIO_AFRL_AFSEL1_Pos)          /*!< 0x000000F0 */
3328 #define GPIO_AFRL_AFSEL1               GPIO_AFRL_AFSEL1_Msk
3329 #define GPIO_AFRL_AFSEL1_0             (0x1UL << GPIO_AFRL_AFSEL1_Pos)          /*!< 0x00000010 */
3330 #define GPIO_AFRL_AFSEL1_1             (0x2UL << GPIO_AFRL_AFSEL1_Pos)          /*!< 0x00000020 */
3331 #define GPIO_AFRL_AFSEL1_2             (0x4UL << GPIO_AFRL_AFSEL1_Pos)          /*!< 0x00000040 */
3332 #define GPIO_AFRL_AFSEL1_3             (0x8UL << GPIO_AFRL_AFSEL1_Pos)          /*!< 0x00000080 */
3333 #define GPIO_AFRL_AFSEL2_Pos           (8U)
3334 #define GPIO_AFRL_AFSEL2_Msk           (0xFUL << GPIO_AFRL_AFSEL2_Pos)          /*!< 0x00000F00 */
3335 #define GPIO_AFRL_AFSEL2               GPIO_AFRL_AFSEL2_Msk
3336 #define GPIO_AFRL_AFSEL2_0             (0x1UL << GPIO_AFRL_AFSEL2_Pos)          /*!< 0x00000100 */
3337 #define GPIO_AFRL_AFSEL2_1             (0x2UL << GPIO_AFRL_AFSEL2_Pos)          /*!< 0x00000200 */
3338 #define GPIO_AFRL_AFSEL2_2             (0x4UL << GPIO_AFRL_AFSEL2_Pos)          /*!< 0x00000400 */
3339 #define GPIO_AFRL_AFSEL2_3             (0x8UL << GPIO_AFRL_AFSEL2_Pos)          /*!< 0x00000800 */
3340 #define GPIO_AFRL_AFSEL3_Pos           (12U)
3341 #define GPIO_AFRL_AFSEL3_Msk           (0xFUL << GPIO_AFRL_AFSEL3_Pos)          /*!< 0x0000F000 */
3342 #define GPIO_AFRL_AFSEL3               GPIO_AFRL_AFSEL3_Msk
3343 #define GPIO_AFRL_AFSEL3_0             (0x1UL << GPIO_AFRL_AFSEL3_Pos)          /*!< 0x00001000 */
3344 #define GPIO_AFRL_AFSEL3_1             (0x2UL << GPIO_AFRL_AFSEL3_Pos)          /*!< 0x00002000 */
3345 #define GPIO_AFRL_AFSEL3_2             (0x4UL << GPIO_AFRL_AFSEL3_Pos)          /*!< 0x00004000 */
3346 #define GPIO_AFRL_AFSEL3_3             (0x8UL << GPIO_AFRL_AFSEL3_Pos)          /*!< 0x00008000 */
3347 #define GPIO_AFRL_AFSEL4_Pos           (16U)
3348 #define GPIO_AFRL_AFSEL4_Msk           (0xFUL << GPIO_AFRL_AFSEL4_Pos)          /*!< 0x000F0000 */
3349 #define GPIO_AFRL_AFSEL4               GPIO_AFRL_AFSEL4_Msk
3350 #define GPIO_AFRL_AFSEL4_0             (0x1UL << GPIO_AFRL_AFSEL4_Pos)          /*!< 0x00010000 */
3351 #define GPIO_AFRL_AFSEL4_1             (0x2UL << GPIO_AFRL_AFSEL4_Pos)          /*!< 0x00020000 */
3352 #define GPIO_AFRL_AFSEL4_2             (0x4UL << GPIO_AFRL_AFSEL4_Pos)          /*!< 0x00040000 */
3353 #define GPIO_AFRL_AFSEL4_3             (0x8UL << GPIO_AFRL_AFSEL4_Pos)          /*!< 0x00080000 */
3354 #define GPIO_AFRL_AFSEL5_Pos           (20U)
3355 #define GPIO_AFRL_AFSEL5_Msk           (0xFUL << GPIO_AFRL_AFSEL5_Pos)          /*!< 0x00F00000 */
3356 #define GPIO_AFRL_AFSEL5               GPIO_AFRL_AFSEL5_Msk
3357 #define GPIO_AFRL_AFSEL5_0             (0x1UL << GPIO_AFRL_AFSEL5_Pos)          /*!< 0x00100000 */
3358 #define GPIO_AFRL_AFSEL5_1             (0x2UL << GPIO_AFRL_AFSEL5_Pos)          /*!< 0x00200000 */
3359 #define GPIO_AFRL_AFSEL5_2             (0x4UL << GPIO_AFRL_AFSEL5_Pos)          /*!< 0x00400000 */
3360 #define GPIO_AFRL_AFSEL5_3             (0x8UL << GPIO_AFRL_AFSEL5_Pos)          /*!< 0x00800000 */
3361 #define GPIO_AFRL_AFSEL6_Pos           (24U)
3362 #define GPIO_AFRL_AFSEL6_Msk           (0xFUL << GPIO_AFRL_AFSEL6_Pos)          /*!< 0x0F000000 */
3363 #define GPIO_AFRL_AFSEL6               GPIO_AFRL_AFSEL6_Msk
3364 #define GPIO_AFRL_AFSEL6_0             (0x1UL << GPIO_AFRL_AFSEL6_Pos)          /*!< 0x01000000 */
3365 #define GPIO_AFRL_AFSEL6_1             (0x2UL << GPIO_AFRL_AFSEL6_Pos)          /*!< 0x02000000 */
3366 #define GPIO_AFRL_AFSEL6_2             (0x4UL << GPIO_AFRL_AFSEL6_Pos)          /*!< 0x04000000 */
3367 #define GPIO_AFRL_AFSEL6_3             (0x8UL << GPIO_AFRL_AFSEL6_Pos)          /*!< 0x08000000 */
3368 #define GPIO_AFRL_AFSEL7_Pos           (28U)
3369 #define GPIO_AFRL_AFSEL7_Msk           (0xFUL << GPIO_AFRL_AFSEL7_Pos)          /*!< 0xF0000000 */
3370 #define GPIO_AFRL_AFSEL7               GPIO_AFRL_AFSEL7_Msk
3371 #define GPIO_AFRL_AFSEL7_0             (0x1UL << GPIO_AFRL_AFSEL7_Pos)          /*!< 0x10000000 */
3372 #define GPIO_AFRL_AFSEL7_1             (0x2UL << GPIO_AFRL_AFSEL7_Pos)          /*!< 0x20000000 */
3373 #define GPIO_AFRL_AFSEL7_2             (0x4UL << GPIO_AFRL_AFSEL7_Pos)          /*!< 0x40000000 */
3374 #define GPIO_AFRL_AFSEL7_3             (0x8UL << GPIO_AFRL_AFSEL7_Pos)          /*!< 0x80000000 */
3375 
3376 /****************** Bit definition for GPIO_AFRH register *********************/
3377 #define GPIO_AFRH_AFSEL8_Pos           (0U)
3378 #define GPIO_AFRH_AFSEL8_Msk           (0xFUL << GPIO_AFRH_AFSEL8_Pos)          /*!< 0x0000000F */
3379 #define GPIO_AFRH_AFSEL8               GPIO_AFRH_AFSEL8_Msk
3380 #define GPIO_AFRH_AFSEL8_0             (0x1UL << GPIO_AFRH_AFSEL8_Pos)          /*!< 0x00000001 */
3381 #define GPIO_AFRH_AFSEL8_1             (0x2UL << GPIO_AFRH_AFSEL8_Pos)          /*!< 0x00000002 */
3382 #define GPIO_AFRH_AFSEL8_2             (0x4UL << GPIO_AFRH_AFSEL8_Pos)          /*!< 0x00000004 */
3383 #define GPIO_AFRH_AFSEL8_3             (0x8UL << GPIO_AFRH_AFSEL8_Pos)          /*!< 0x00000008 */
3384 #define GPIO_AFRH_AFSEL9_Pos           (4U)
3385 #define GPIO_AFRH_AFSEL9_Msk           (0xFUL << GPIO_AFRH_AFSEL9_Pos)          /*!< 0x000000F0 */
3386 #define GPIO_AFRH_AFSEL9               GPIO_AFRH_AFSEL9_Msk
3387 #define GPIO_AFRH_AFSEL9_0             (0x1UL << GPIO_AFRH_AFSEL9_Pos)          /*!< 0x00000010 */
3388 #define GPIO_AFRH_AFSEL9_1             (0x2UL << GPIO_AFRH_AFSEL9_Pos)          /*!< 0x00000020 */
3389 #define GPIO_AFRH_AFSEL9_2             (0x4UL << GPIO_AFRH_AFSEL9_Pos)          /*!< 0x00000040 */
3390 #define GPIO_AFRH_AFSEL9_3             (0x8UL << GPIO_AFRH_AFSEL9_Pos)          /*!< 0x00000080 */
3391 #define GPIO_AFRH_AFSEL10_Pos          (8U)
3392 #define GPIO_AFRH_AFSEL10_Msk          (0xFUL << GPIO_AFRH_AFSEL10_Pos)         /*!< 0x00000F00 */
3393 #define GPIO_AFRH_AFSEL10              GPIO_AFRH_AFSEL10_Msk
3394 #define GPIO_AFRH_AFSEL10_0            (0x1UL << GPIO_AFRH_AFSEL10_Pos)         /*!< 0x00000100 */
3395 #define GPIO_AFRH_AFSEL10_1            (0x2UL << GPIO_AFRH_AFSEL10_Pos)         /*!< 0x00000200 */
3396 #define GPIO_AFRH_AFSEL10_2            (0x4UL << GPIO_AFRH_AFSEL10_Pos)         /*!< 0x00000400 */
3397 #define GPIO_AFRH_AFSEL10_3            (0x8UL << GPIO_AFRH_AFSEL10_Pos)         /*!< 0x00000800 */
3398 #define GPIO_AFRH_AFSEL11_Pos          (12U)
3399 #define GPIO_AFRH_AFSEL11_Msk          (0xFUL << GPIO_AFRH_AFSEL11_Pos)         /*!< 0x0000F000 */
3400 #define GPIO_AFRH_AFSEL11              GPIO_AFRH_AFSEL11_Msk
3401 #define GPIO_AFRH_AFSEL11_0            (0x1UL << GPIO_AFRH_AFSEL11_Pos)         /*!< 0x00001000 */
3402 #define GPIO_AFRH_AFSEL11_1            (0x2UL << GPIO_AFRH_AFSEL11_Pos)         /*!< 0x00002000 */
3403 #define GPIO_AFRH_AFSEL11_2            (0x4UL << GPIO_AFRH_AFSEL11_Pos)         /*!< 0x00004000 */
3404 #define GPIO_AFRH_AFSEL11_3            (0x8UL << GPIO_AFRH_AFSEL11_Pos)         /*!< 0x00008000 */
3405 #define GPIO_AFRH_AFSEL12_Pos          (16U)
3406 #define GPIO_AFRH_AFSEL12_Msk          (0xFUL << GPIO_AFRH_AFSEL12_Pos)         /*!< 0x000F0000 */
3407 #define GPIO_AFRH_AFSEL12              GPIO_AFRH_AFSEL12_Msk
3408 #define GPIO_AFRH_AFSEL12_0            (0x1UL << GPIO_AFRH_AFSEL12_Pos)         /*!< 0x00010000 */
3409 #define GPIO_AFRH_AFSEL12_1            (0x2UL << GPIO_AFRH_AFSEL12_Pos)         /*!< 0x00020000 */
3410 #define GPIO_AFRH_AFSEL12_2            (0x4UL << GPIO_AFRH_AFSEL12_Pos)         /*!< 0x00040000 */
3411 #define GPIO_AFRH_AFSEL12_3            (0x8UL << GPIO_AFRH_AFSEL12_Pos)         /*!< 0x00080000 */
3412 #define GPIO_AFRH_AFSEL13_Pos          (20U)
3413 #define GPIO_AFRH_AFSEL13_Msk          (0xFUL << GPIO_AFRH_AFSEL13_Pos)         /*!< 0x00F00000 */
3414 #define GPIO_AFRH_AFSEL13              GPIO_AFRH_AFSEL13_Msk
3415 #define GPIO_AFRH_AFSEL13_0            (0x1UL << GPIO_AFRH_AFSEL13_Pos)         /*!< 0x00100000 */
3416 #define GPIO_AFRH_AFSEL13_1            (0x2UL << GPIO_AFRH_AFSEL13_Pos)         /*!< 0x00200000 */
3417 #define GPIO_AFRH_AFSEL13_2            (0x4UL << GPIO_AFRH_AFSEL13_Pos)         /*!< 0x00400000 */
3418 #define GPIO_AFRH_AFSEL13_3            (0x8UL << GPIO_AFRH_AFSEL13_Pos)         /*!< 0x00800000 */
3419 #define GPIO_AFRH_AFSEL14_Pos          (24U)
3420 #define GPIO_AFRH_AFSEL14_Msk          (0xFUL << GPIO_AFRH_AFSEL14_Pos)         /*!< 0x0F000000 */
3421 #define GPIO_AFRH_AFSEL14              GPIO_AFRH_AFSEL14_Msk
3422 #define GPIO_AFRH_AFSEL14_0            (0x1UL << GPIO_AFRH_AFSEL14_Pos)         /*!< 0x01000000 */
3423 #define GPIO_AFRH_AFSEL14_1            (0x2UL << GPIO_AFRH_AFSEL14_Pos)         /*!< 0x02000000 */
3424 #define GPIO_AFRH_AFSEL14_2            (0x4UL << GPIO_AFRH_AFSEL14_Pos)         /*!< 0x04000000 */
3425 #define GPIO_AFRH_AFSEL14_3            (0x8UL << GPIO_AFRH_AFSEL14_Pos)         /*!< 0x08000000 */
3426 #define GPIO_AFRH_AFSEL15_Pos          (28U)
3427 #define GPIO_AFRH_AFSEL15_Msk          (0xFUL << GPIO_AFRH_AFSEL15_Pos)         /*!< 0xF0000000 */
3428 #define GPIO_AFRH_AFSEL15              GPIO_AFRH_AFSEL15_Msk
3429 #define GPIO_AFRH_AFSEL15_0            (0x1UL << GPIO_AFRH_AFSEL15_Pos)         /*!< 0x10000000 */
3430 #define GPIO_AFRH_AFSEL15_1            (0x2UL << GPIO_AFRH_AFSEL15_Pos)         /*!< 0x20000000 */
3431 #define GPIO_AFRH_AFSEL15_2            (0x4UL << GPIO_AFRH_AFSEL15_Pos)         /*!< 0x40000000 */
3432 #define GPIO_AFRH_AFSEL15_3            (0x8UL << GPIO_AFRH_AFSEL15_Pos)         /*!< 0x80000000 */
3433 
3434 /******************  Bits definition for GPIO_BRR register  ******************/
3435 #define GPIO_BRR_BR0_Pos               (0U)
3436 #define GPIO_BRR_BR0_Msk               (0x1UL << GPIO_BRR_BR0_Pos)              /*!< 0x00000001 */
3437 #define GPIO_BRR_BR0                   GPIO_BRR_BR0_Msk
3438 #define GPIO_BRR_BR1_Pos               (1U)
3439 #define GPIO_BRR_BR1_Msk               (0x1UL << GPIO_BRR_BR1_Pos)              /*!< 0x00000002 */
3440 #define GPIO_BRR_BR1                   GPIO_BRR_BR1_Msk
3441 #define GPIO_BRR_BR2_Pos               (2U)
3442 #define GPIO_BRR_BR2_Msk               (0x1UL << GPIO_BRR_BR2_Pos)              /*!< 0x00000004 */
3443 #define GPIO_BRR_BR2                   GPIO_BRR_BR2_Msk
3444 #define GPIO_BRR_BR3_Pos               (3U)
3445 #define GPIO_BRR_BR3_Msk               (0x1UL << GPIO_BRR_BR3_Pos)              /*!< 0x00000008 */
3446 #define GPIO_BRR_BR3                   GPIO_BRR_BR3_Msk
3447 #define GPIO_BRR_BR4_Pos               (4U)
3448 #define GPIO_BRR_BR4_Msk               (0x1UL << GPIO_BRR_BR4_Pos)              /*!< 0x00000010 */
3449 #define GPIO_BRR_BR4                   GPIO_BRR_BR4_Msk
3450 #define GPIO_BRR_BR5_Pos               (5U)
3451 #define GPIO_BRR_BR5_Msk               (0x1UL << GPIO_BRR_BR5_Pos)              /*!< 0x00000020 */
3452 #define GPIO_BRR_BR5                   GPIO_BRR_BR5_Msk
3453 #define GPIO_BRR_BR6_Pos               (6U)
3454 #define GPIO_BRR_BR6_Msk               (0x1UL << GPIO_BRR_BR6_Pos)              /*!< 0x00000040 */
3455 #define GPIO_BRR_BR6                   GPIO_BRR_BR6_Msk
3456 #define GPIO_BRR_BR7_Pos               (7U)
3457 #define GPIO_BRR_BR7_Msk               (0x1UL << GPIO_BRR_BR7_Pos)              /*!< 0x00000080 */
3458 #define GPIO_BRR_BR7                   GPIO_BRR_BR7_Msk
3459 #define GPIO_BRR_BR8_Pos               (8U)
3460 #define GPIO_BRR_BR8_Msk               (0x1UL << GPIO_BRR_BR8_Pos)              /*!< 0x00000100 */
3461 #define GPIO_BRR_BR8                   GPIO_BRR_BR8_Msk
3462 #define GPIO_BRR_BR9_Pos               (9U)
3463 #define GPIO_BRR_BR9_Msk               (0x1UL << GPIO_BRR_BR9_Pos)              /*!< 0x00000200 */
3464 #define GPIO_BRR_BR9                   GPIO_BRR_BR9_Msk
3465 #define GPIO_BRR_BR10_Pos              (10U)
3466 #define GPIO_BRR_BR10_Msk              (0x1UL << GPIO_BRR_BR10_Pos)             /*!< 0x00000400 */
3467 #define GPIO_BRR_BR10                  GPIO_BRR_BR10_Msk
3468 #define GPIO_BRR_BR11_Pos              (11U)
3469 #define GPIO_BRR_BR11_Msk              (0x1UL << GPIO_BRR_BR11_Pos)             /*!< 0x00000800 */
3470 #define GPIO_BRR_BR11                  GPIO_BRR_BR11_Msk
3471 #define GPIO_BRR_BR12_Pos              (12U)
3472 #define GPIO_BRR_BR12_Msk              (0x1UL << GPIO_BRR_BR12_Pos)             /*!< 0x00001000 */
3473 #define GPIO_BRR_BR12                  GPIO_BRR_BR12_Msk
3474 #define GPIO_BRR_BR13_Pos              (13U)
3475 #define GPIO_BRR_BR13_Msk              (0x1UL << GPIO_BRR_BR13_Pos)             /*!< 0x00002000 */
3476 #define GPIO_BRR_BR13                  GPIO_BRR_BR13_Msk
3477 #define GPIO_BRR_BR14_Pos              (14U)
3478 #define GPIO_BRR_BR14_Msk              (0x1UL << GPIO_BRR_BR14_Pos)             /*!< 0x00004000 */
3479 #define GPIO_BRR_BR14                  GPIO_BRR_BR14_Msk
3480 #define GPIO_BRR_BR15_Pos              (15U)
3481 #define GPIO_BRR_BR15_Msk              (0x1UL << GPIO_BRR_BR15_Pos)             /*!< 0x00008000 */
3482 #define GPIO_BRR_BR15                  GPIO_BRR_BR15_Msk
3483 
3484 
3485 /******************************************************************************/
3486 /*                                                                            */
3487 /*                      Inter-integrated Circuit Interface (I2C)              */
3488 /*                                                                            */
3489 /******************************************************************************/
3490 /*******************  Bit definition for I2C_CR1 register  *******************/
3491 #define I2C_CR1_PE_Pos               (0U)
3492 #define I2C_CR1_PE_Msk               (0x1UL << I2C_CR1_PE_Pos)                 /*!< 0x00000001 */
3493 #define I2C_CR1_PE                   I2C_CR1_PE_Msk                            /*!< Peripheral enable */
3494 #define I2C_CR1_TXIE_Pos             (1U)
3495 #define I2C_CR1_TXIE_Msk             (0x1UL << I2C_CR1_TXIE_Pos)               /*!< 0x00000002 */
3496 #define I2C_CR1_TXIE                 I2C_CR1_TXIE_Msk                          /*!< TX interrupt enable */
3497 #define I2C_CR1_RXIE_Pos             (2U)
3498 #define I2C_CR1_RXIE_Msk             (0x1UL << I2C_CR1_RXIE_Pos)               /*!< 0x00000004 */
3499 #define I2C_CR1_RXIE                 I2C_CR1_RXIE_Msk                          /*!< RX interrupt enable */
3500 #define I2C_CR1_ADDRIE_Pos           (3U)
3501 #define I2C_CR1_ADDRIE_Msk           (0x1UL << I2C_CR1_ADDRIE_Pos)             /*!< 0x00000008 */
3502 #define I2C_CR1_ADDRIE               I2C_CR1_ADDRIE_Msk                        /*!< Address match interrupt enable */
3503 #define I2C_CR1_NACKIE_Pos           (4U)
3504 #define I2C_CR1_NACKIE_Msk           (0x1UL << I2C_CR1_NACKIE_Pos)             /*!< 0x00000010 */
3505 #define I2C_CR1_NACKIE               I2C_CR1_NACKIE_Msk                        /*!< NACK received interrupt enable */
3506 #define I2C_CR1_STOPIE_Pos           (5U)
3507 #define I2C_CR1_STOPIE_Msk           (0x1UL << I2C_CR1_STOPIE_Pos)             /*!< 0x00000020 */
3508 #define I2C_CR1_STOPIE               I2C_CR1_STOPIE_Msk                        /*!< STOP detection interrupt enable */
3509 #define I2C_CR1_TCIE_Pos             (6U)
3510 #define I2C_CR1_TCIE_Msk             (0x1UL << I2C_CR1_TCIE_Pos)               /*!< 0x00000040 */
3511 #define I2C_CR1_TCIE                 I2C_CR1_TCIE_Msk                          /*!< Transfer complete interrupt enable */
3512 #define I2C_CR1_ERRIE_Pos            (7U)
3513 #define I2C_CR1_ERRIE_Msk            (0x1UL << I2C_CR1_ERRIE_Pos)              /*!< 0x00000080 */
3514 #define I2C_CR1_ERRIE                I2C_CR1_ERRIE_Msk                         /*!< Errors interrupt enable */
3515 #define I2C_CR1_DNF_Pos              (8U)
3516 #define I2C_CR1_DNF_Msk              (0xFUL << I2C_CR1_DNF_Pos)                /*!< 0x00000F00 */
3517 #define I2C_CR1_DNF                  I2C_CR1_DNF_Msk                           /*!< Digital noise filter */
3518 #define I2C_CR1_ANFOFF_Pos           (12U)
3519 #define I2C_CR1_ANFOFF_Msk           (0x1UL << I2C_CR1_ANFOFF_Pos)             /*!< 0x00001000 */
3520 #define I2C_CR1_ANFOFF               I2C_CR1_ANFOFF_Msk                        /*!< Analog noise filter OFF */
3521 #define I2C_CR1_SWRST_Pos            (13U)
3522 #define I2C_CR1_SWRST_Msk            (0x1UL << I2C_CR1_SWRST_Pos)              /*!< 0x00002000 */
3523 #define I2C_CR1_SWRST                I2C_CR1_SWRST_Msk                         /*!< Software reset */
3524 #define I2C_CR1_TXDMAEN_Pos          (14U)
3525 #define I2C_CR1_TXDMAEN_Msk          (0x1UL << I2C_CR1_TXDMAEN_Pos)            /*!< 0x00004000 */
3526 #define I2C_CR1_TXDMAEN              I2C_CR1_TXDMAEN_Msk                       /*!< DMA transmission requests enable */
3527 #define I2C_CR1_RXDMAEN_Pos          (15U)
3528 #define I2C_CR1_RXDMAEN_Msk          (0x1UL << I2C_CR1_RXDMAEN_Pos)            /*!< 0x00008000 */
3529 #define I2C_CR1_RXDMAEN              I2C_CR1_RXDMAEN_Msk                       /*!< DMA reception requests enable */
3530 #define I2C_CR1_SBC_Pos              (16U)
3531 #define I2C_CR1_SBC_Msk              (0x1UL << I2C_CR1_SBC_Pos)                /*!< 0x00010000 */
3532 #define I2C_CR1_SBC                  I2C_CR1_SBC_Msk                           /*!< Slave byte control */
3533 #define I2C_CR1_NOSTRETCH_Pos        (17U)
3534 #define I2C_CR1_NOSTRETCH_Msk        (0x1UL << I2C_CR1_NOSTRETCH_Pos)          /*!< 0x00020000 */
3535 #define I2C_CR1_NOSTRETCH            I2C_CR1_NOSTRETCH_Msk                     /*!< Clock stretching disable */
3536 #define I2C_CR1_WUPEN_Pos            (18U)
3537 #define I2C_CR1_WUPEN_Msk            (0x1UL << I2C_CR1_WUPEN_Pos)              /*!< 0x00040000 */
3538 #define I2C_CR1_WUPEN                I2C_CR1_WUPEN_Msk                         /*!< Wakeup from STOP enable */
3539 #define I2C_CR1_GCEN_Pos             (19U)
3540 #define I2C_CR1_GCEN_Msk             (0x1UL << I2C_CR1_GCEN_Pos)               /*!< 0x00080000 */
3541 #define I2C_CR1_GCEN                 I2C_CR1_GCEN_Msk                          /*!< General call enable */
3542 #define I2C_CR1_SMBHEN_Pos           (20U)
3543 #define I2C_CR1_SMBHEN_Msk           (0x1UL << I2C_CR1_SMBHEN_Pos)             /*!< 0x00100000 */
3544 #define I2C_CR1_SMBHEN               I2C_CR1_SMBHEN_Msk                        /*!< SMBus host address enable */
3545 #define I2C_CR1_SMBDEN_Pos           (21U)
3546 #define I2C_CR1_SMBDEN_Msk           (0x1UL << I2C_CR1_SMBDEN_Pos)             /*!< 0x00200000 */
3547 #define I2C_CR1_SMBDEN               I2C_CR1_SMBDEN_Msk                        /*!< SMBus device default address enable */
3548 #define I2C_CR1_ALERTEN_Pos          (22U)
3549 #define I2C_CR1_ALERTEN_Msk          (0x1UL << I2C_CR1_ALERTEN_Pos)            /*!< 0x00400000 */
3550 #define I2C_CR1_ALERTEN              I2C_CR1_ALERTEN_Msk                       /*!< SMBus alert enable */
3551 #define I2C_CR1_PECEN_Pos            (23U)
3552 #define I2C_CR1_PECEN_Msk            (0x1UL << I2C_CR1_PECEN_Pos)              /*!< 0x00800000 */
3553 #define I2C_CR1_PECEN                I2C_CR1_PECEN_Msk                         /*!< PEC enable */
3554 
3555 /******************  Bit definition for I2C_CR2 register  ********************/
3556 #define I2C_CR2_SADD_Pos             (0U)
3557 #define I2C_CR2_SADD_Msk             (0x3FFUL << I2C_CR2_SADD_Pos)             /*!< 0x000003FF */
3558 #define I2C_CR2_SADD                 I2C_CR2_SADD_Msk                          /*!< Slave address (master mode) */
3559 #define I2C_CR2_RD_WRN_Pos           (10U)
3560 #define I2C_CR2_RD_WRN_Msk           (0x1UL << I2C_CR2_RD_WRN_Pos)             /*!< 0x00000400 */
3561 #define I2C_CR2_RD_WRN               I2C_CR2_RD_WRN_Msk                        /*!< Transfer direction (master mode) */
3562 #define I2C_CR2_ADD10_Pos            (11U)
3563 #define I2C_CR2_ADD10_Msk            (0x1UL << I2C_CR2_ADD10_Pos)              /*!< 0x00000800 */
3564 #define I2C_CR2_ADD10                I2C_CR2_ADD10_Msk                         /*!< 10-bit addressing mode (master mode) */
3565 #define I2C_CR2_HEAD10R_Pos          (12U)
3566 #define I2C_CR2_HEAD10R_Msk          (0x1UL << I2C_CR2_HEAD10R_Pos)            /*!< 0x00001000 */
3567 #define I2C_CR2_HEAD10R              I2C_CR2_HEAD10R_Msk                       /*!< 10-bit address header only read direction (master mode) */
3568 #define I2C_CR2_START_Pos            (13U)
3569 #define I2C_CR2_START_Msk            (0x1UL << I2C_CR2_START_Pos)              /*!< 0x00002000 */
3570 #define I2C_CR2_START                I2C_CR2_START_Msk                         /*!< START generation */
3571 #define I2C_CR2_STOP_Pos             (14U)
3572 #define I2C_CR2_STOP_Msk             (0x1UL << I2C_CR2_STOP_Pos)               /*!< 0x00004000 */
3573 #define I2C_CR2_STOP                 I2C_CR2_STOP_Msk                          /*!< STOP generation (master mode) */
3574 #define I2C_CR2_NACK_Pos             (15U)
3575 #define I2C_CR2_NACK_Msk             (0x1UL << I2C_CR2_NACK_Pos)               /*!< 0x00008000 */
3576 #define I2C_CR2_NACK                 I2C_CR2_NACK_Msk                          /*!< NACK generation (slave mode) */
3577 #define I2C_CR2_NBYTES_Pos           (16U)
3578 #define I2C_CR2_NBYTES_Msk           (0xFFUL << I2C_CR2_NBYTES_Pos)            /*!< 0x00FF0000 */
3579 #define I2C_CR2_NBYTES               I2C_CR2_NBYTES_Msk                        /*!< Number of bytes */
3580 #define I2C_CR2_RELOAD_Pos           (24U)
3581 #define I2C_CR2_RELOAD_Msk           (0x1UL << I2C_CR2_RELOAD_Pos)             /*!< 0x01000000 */
3582 #define I2C_CR2_RELOAD               I2C_CR2_RELOAD_Msk                        /*!< NBYTES reload mode */
3583 #define I2C_CR2_AUTOEND_Pos          (25U)
3584 #define I2C_CR2_AUTOEND_Msk          (0x1UL << I2C_CR2_AUTOEND_Pos)            /*!< 0x02000000 */
3585 #define I2C_CR2_AUTOEND              I2C_CR2_AUTOEND_Msk                       /*!< Automatic end mode (master mode) */
3586 #define I2C_CR2_PECBYTE_Pos          (26U)
3587 #define I2C_CR2_PECBYTE_Msk          (0x1UL << I2C_CR2_PECBYTE_Pos)            /*!< 0x04000000 */
3588 #define I2C_CR2_PECBYTE              I2C_CR2_PECBYTE_Msk                       /*!< Packet error checking byte */
3589 
3590 /*******************  Bit definition for I2C_OAR1 register  ******************/
3591 #define I2C_OAR1_OA1_Pos             (0U)
3592 #define I2C_OAR1_OA1_Msk             (0x3FFUL << I2C_OAR1_OA1_Pos)             /*!< 0x000003FF */
3593 #define I2C_OAR1_OA1                 I2C_OAR1_OA1_Msk                          /*!< Interface own address 1 */
3594 #define I2C_OAR1_OA1MODE_Pos         (10U)
3595 #define I2C_OAR1_OA1MODE_Msk         (0x1UL << I2C_OAR1_OA1MODE_Pos)           /*!< 0x00000400 */
3596 #define I2C_OAR1_OA1MODE             I2C_OAR1_OA1MODE_Msk                      /*!< Own address 1 10-bit mode */
3597 #define I2C_OAR1_OA1EN_Pos           (15U)
3598 #define I2C_OAR1_OA1EN_Msk           (0x1UL << I2C_OAR1_OA1EN_Pos)             /*!< 0x00008000 */
3599 #define I2C_OAR1_OA1EN               I2C_OAR1_OA1EN_Msk                        /*!< Own address 1 enable */
3600 
3601 /*******************  Bit definition for I2C_OAR2 register  ******************/
3602 #define I2C_OAR2_OA2_Pos             (1U)
3603 #define I2C_OAR2_OA2_Msk             (0x7FUL << I2C_OAR2_OA2_Pos)              /*!< 0x000000FE */
3604 #define I2C_OAR2_OA2                 I2C_OAR2_OA2_Msk                          /*!< Interface own address 2 */
3605 #define I2C_OAR2_OA2MSK_Pos          (8U)
3606 #define I2C_OAR2_OA2MSK_Msk          (0x7UL << I2C_OAR2_OA2MSK_Pos)            /*!< 0x00000700 */
3607 #define I2C_OAR2_OA2MSK              I2C_OAR2_OA2MSK_Msk                       /*!< Own address 2 masks */
3608 #define I2C_OAR2_OA2NOMASK           (0U)                                      /*!< No mask                                        */
3609 #define I2C_OAR2_OA2MASK01_Pos       (8U)
3610 #define I2C_OAR2_OA2MASK01_Msk       (0x1UL << I2C_OAR2_OA2MASK01_Pos)         /*!< 0x00000100 */
3611 #define I2C_OAR2_OA2MASK01           I2C_OAR2_OA2MASK01_Msk                    /*!< OA2[1] is masked, Only OA2[7:2] are compared   */
3612 #define I2C_OAR2_OA2MASK02_Pos       (9U)
3613 #define I2C_OAR2_OA2MASK02_Msk       (0x1UL << I2C_OAR2_OA2MASK02_Pos)         /*!< 0x00000200 */
3614 #define I2C_OAR2_OA2MASK02           I2C_OAR2_OA2MASK02_Msk                    /*!< OA2[2:1] is masked, Only OA2[7:3] are compared */
3615 #define I2C_OAR2_OA2MASK03_Pos       (8U)
3616 #define I2C_OAR2_OA2MASK03_Msk       (0x3UL << I2C_OAR2_OA2MASK03_Pos)         /*!< 0x00000300 */
3617 #define I2C_OAR2_OA2MASK03           I2C_OAR2_OA2MASK03_Msk                    /*!< OA2[3:1] is masked, Only OA2[7:4] are compared */
3618 #define I2C_OAR2_OA2MASK04_Pos       (10U)
3619 #define I2C_OAR2_OA2MASK04_Msk       (0x1UL << I2C_OAR2_OA2MASK04_Pos)         /*!< 0x00000400 */
3620 #define I2C_OAR2_OA2MASK04           I2C_OAR2_OA2MASK04_Msk                    /*!< OA2[4:1] is masked, Only OA2[7:5] are compared */
3621 #define I2C_OAR2_OA2MASK05_Pos       (8U)
3622 #define I2C_OAR2_OA2MASK05_Msk       (0x5UL << I2C_OAR2_OA2MASK05_Pos)         /*!< 0x00000500 */
3623 #define I2C_OAR2_OA2MASK05           I2C_OAR2_OA2MASK05_Msk                    /*!< OA2[5:1] is masked, Only OA2[7:6] are compared */
3624 #define I2C_OAR2_OA2MASK06_Pos       (9U)
3625 #define I2C_OAR2_OA2MASK06_Msk       (0x3UL << I2C_OAR2_OA2MASK06_Pos)         /*!< 0x00000600 */
3626 #define I2C_OAR2_OA2MASK06           I2C_OAR2_OA2MASK06_Msk                    /*!< OA2[6:1] is masked, Only OA2[7] are compared   */
3627 #define I2C_OAR2_OA2MASK07_Pos       (8U)
3628 #define I2C_OAR2_OA2MASK07_Msk       (0x7UL << I2C_OAR2_OA2MASK07_Pos)         /*!< 0x00000700 */
3629 #define I2C_OAR2_OA2MASK07           I2C_OAR2_OA2MASK07_Msk                    /*!< OA2[7:1] is masked, No comparison is done      */
3630 #define I2C_OAR2_OA2EN_Pos           (15U)
3631 #define I2C_OAR2_OA2EN_Msk           (0x1UL << I2C_OAR2_OA2EN_Pos)             /*!< 0x00008000 */
3632 #define I2C_OAR2_OA2EN               I2C_OAR2_OA2EN_Msk                        /*!< Own address 2 enable */
3633 
3634 /*******************  Bit definition for I2C_TIMINGR register *******************/
3635 #define I2C_TIMINGR_SCLL_Pos         (0U)
3636 #define I2C_TIMINGR_SCLL_Msk         (0xFFUL << I2C_TIMINGR_SCLL_Pos)          /*!< 0x000000FF */
3637 #define I2C_TIMINGR_SCLL             I2C_TIMINGR_SCLL_Msk                      /*!< SCL low period (master mode) */
3638 #define I2C_TIMINGR_SCLH_Pos         (8U)
3639 #define I2C_TIMINGR_SCLH_Msk         (0xFFUL << I2C_TIMINGR_SCLH_Pos)          /*!< 0x0000FF00 */
3640 #define I2C_TIMINGR_SCLH             I2C_TIMINGR_SCLH_Msk                      /*!< SCL high period (master mode) */
3641 #define I2C_TIMINGR_SDADEL_Pos       (16U)
3642 #define I2C_TIMINGR_SDADEL_Msk       (0xFUL << I2C_TIMINGR_SDADEL_Pos)         /*!< 0x000F0000 */
3643 #define I2C_TIMINGR_SDADEL           I2C_TIMINGR_SDADEL_Msk                    /*!< Data hold time */
3644 #define I2C_TIMINGR_SCLDEL_Pos       (20U)
3645 #define I2C_TIMINGR_SCLDEL_Msk       (0xFUL << I2C_TIMINGR_SCLDEL_Pos)         /*!< 0x00F00000 */
3646 #define I2C_TIMINGR_SCLDEL           I2C_TIMINGR_SCLDEL_Msk                    /*!< Data setup time */
3647 #define I2C_TIMINGR_PRESC_Pos        (28U)
3648 #define I2C_TIMINGR_PRESC_Msk        (0xFUL << I2C_TIMINGR_PRESC_Pos)          /*!< 0xF0000000 */
3649 #define I2C_TIMINGR_PRESC            I2C_TIMINGR_PRESC_Msk                     /*!< Timings prescaler */
3650 
3651 /******************* Bit definition for I2C_TIMEOUTR register *******************/
3652 #define I2C_TIMEOUTR_TIMEOUTA_Pos    (0U)
3653 #define I2C_TIMEOUTR_TIMEOUTA_Msk    (0xFFFUL << I2C_TIMEOUTR_TIMEOUTA_Pos)    /*!< 0x00000FFF */
3654 #define I2C_TIMEOUTR_TIMEOUTA        I2C_TIMEOUTR_TIMEOUTA_Msk                 /*!< Bus timeout A */
3655 #define I2C_TIMEOUTR_TIDLE_Pos       (12U)
3656 #define I2C_TIMEOUTR_TIDLE_Msk       (0x1UL << I2C_TIMEOUTR_TIDLE_Pos)         /*!< 0x00001000 */
3657 #define I2C_TIMEOUTR_TIDLE           I2C_TIMEOUTR_TIDLE_Msk                    /*!< Idle clock timeout detection */
3658 #define I2C_TIMEOUTR_TIMOUTEN_Pos    (15U)
3659 #define I2C_TIMEOUTR_TIMOUTEN_Msk    (0x1UL << I2C_TIMEOUTR_TIMOUTEN_Pos)      /*!< 0x00008000 */
3660 #define I2C_TIMEOUTR_TIMOUTEN        I2C_TIMEOUTR_TIMOUTEN_Msk                 /*!< Clock timeout enable */
3661 #define I2C_TIMEOUTR_TIMEOUTB_Pos    (16U)
3662 #define I2C_TIMEOUTR_TIMEOUTB_Msk    (0xFFFUL << I2C_TIMEOUTR_TIMEOUTB_Pos)    /*!< 0x0FFF0000 */
3663 #define I2C_TIMEOUTR_TIMEOUTB        I2C_TIMEOUTR_TIMEOUTB_Msk                 /*!< Bus timeout B*/
3664 #define I2C_TIMEOUTR_TEXTEN_Pos      (31U)
3665 #define I2C_TIMEOUTR_TEXTEN_Msk      (0x1UL << I2C_TIMEOUTR_TEXTEN_Pos)        /*!< 0x80000000 */
3666 #define I2C_TIMEOUTR_TEXTEN          I2C_TIMEOUTR_TEXTEN_Msk                   /*!< Extended clock timeout enable */
3667 
3668 /******************  Bit definition for I2C_ISR register  *********************/
3669 #define I2C_ISR_TXE_Pos              (0U)
3670 #define I2C_ISR_TXE_Msk              (0x1UL << I2C_ISR_TXE_Pos)                /*!< 0x00000001 */
3671 #define I2C_ISR_TXE                  I2C_ISR_TXE_Msk                           /*!< Transmit data register empty */
3672 #define I2C_ISR_TXIS_Pos             (1U)
3673 #define I2C_ISR_TXIS_Msk             (0x1UL << I2C_ISR_TXIS_Pos)               /*!< 0x00000002 */
3674 #define I2C_ISR_TXIS                 I2C_ISR_TXIS_Msk                          /*!< Transmit interrupt status */
3675 #define I2C_ISR_RXNE_Pos             (2U)
3676 #define I2C_ISR_RXNE_Msk             (0x1UL << I2C_ISR_RXNE_Pos)               /*!< 0x00000004 */
3677 #define I2C_ISR_RXNE                 I2C_ISR_RXNE_Msk                          /*!< Receive data register not empty */
3678 #define I2C_ISR_ADDR_Pos             (3U)
3679 #define I2C_ISR_ADDR_Msk             (0x1UL << I2C_ISR_ADDR_Pos)               /*!< 0x00000008 */
3680 #define I2C_ISR_ADDR                 I2C_ISR_ADDR_Msk                          /*!< Address matched (slave mode)*/
3681 #define I2C_ISR_NACKF_Pos            (4U)
3682 #define I2C_ISR_NACKF_Msk            (0x1UL << I2C_ISR_NACKF_Pos)              /*!< 0x00000010 */
3683 #define I2C_ISR_NACKF                I2C_ISR_NACKF_Msk                         /*!< NACK received flag */
3684 #define I2C_ISR_STOPF_Pos            (5U)
3685 #define I2C_ISR_STOPF_Msk            (0x1UL << I2C_ISR_STOPF_Pos)              /*!< 0x00000020 */
3686 #define I2C_ISR_STOPF                I2C_ISR_STOPF_Msk                         /*!< STOP detection flag */
3687 #define I2C_ISR_TC_Pos               (6U)
3688 #define I2C_ISR_TC_Msk               (0x1UL << I2C_ISR_TC_Pos)                 /*!< 0x00000040 */
3689 #define I2C_ISR_TC                   I2C_ISR_TC_Msk                            /*!< Transfer complete (master mode) */
3690 #define I2C_ISR_TCR_Pos              (7U)
3691 #define I2C_ISR_TCR_Msk              (0x1UL << I2C_ISR_TCR_Pos)                /*!< 0x00000080 */
3692 #define I2C_ISR_TCR                  I2C_ISR_TCR_Msk                           /*!< Transfer complete reload */
3693 #define I2C_ISR_BERR_Pos             (8U)
3694 #define I2C_ISR_BERR_Msk             (0x1UL << I2C_ISR_BERR_Pos)               /*!< 0x00000100 */
3695 #define I2C_ISR_BERR                 I2C_ISR_BERR_Msk                          /*!< Bus error */
3696 #define I2C_ISR_ARLO_Pos             (9U)
3697 #define I2C_ISR_ARLO_Msk             (0x1UL << I2C_ISR_ARLO_Pos)               /*!< 0x00000200 */
3698 #define I2C_ISR_ARLO                 I2C_ISR_ARLO_Msk                          /*!< Arbitration lost */
3699 #define I2C_ISR_OVR_Pos              (10U)
3700 #define I2C_ISR_OVR_Msk              (0x1UL << I2C_ISR_OVR_Pos)                /*!< 0x00000400 */
3701 #define I2C_ISR_OVR                  I2C_ISR_OVR_Msk                           /*!< Overrun/Underrun */
3702 #define I2C_ISR_PECERR_Pos           (11U)
3703 #define I2C_ISR_PECERR_Msk           (0x1UL << I2C_ISR_PECERR_Pos)             /*!< 0x00000800 */
3704 #define I2C_ISR_PECERR               I2C_ISR_PECERR_Msk                        /*!< PEC error in reception */
3705 #define I2C_ISR_TIMEOUT_Pos          (12U)
3706 #define I2C_ISR_TIMEOUT_Msk          (0x1UL << I2C_ISR_TIMEOUT_Pos)            /*!< 0x00001000 */
3707 #define I2C_ISR_TIMEOUT              I2C_ISR_TIMEOUT_Msk                       /*!< Timeout or Tlow detection flag */
3708 #define I2C_ISR_ALERT_Pos            (13U)
3709 #define I2C_ISR_ALERT_Msk            (0x1UL << I2C_ISR_ALERT_Pos)              /*!< 0x00002000 */
3710 #define I2C_ISR_ALERT                I2C_ISR_ALERT_Msk                         /*!< SMBus alert */
3711 #define I2C_ISR_BUSY_Pos             (15U)
3712 #define I2C_ISR_BUSY_Msk             (0x1UL << I2C_ISR_BUSY_Pos)               /*!< 0x00008000 */
3713 #define I2C_ISR_BUSY                 I2C_ISR_BUSY_Msk                          /*!< Bus busy */
3714 #define I2C_ISR_DIR_Pos              (16U)
3715 #define I2C_ISR_DIR_Msk              (0x1UL << I2C_ISR_DIR_Pos)                /*!< 0x00010000 */
3716 #define I2C_ISR_DIR                  I2C_ISR_DIR_Msk                           /*!< Transfer direction (slave mode) */
3717 #define I2C_ISR_ADDCODE_Pos          (17U)
3718 #define I2C_ISR_ADDCODE_Msk          (0x7FUL << I2C_ISR_ADDCODE_Pos)           /*!< 0x00FE0000 */
3719 #define I2C_ISR_ADDCODE              I2C_ISR_ADDCODE_Msk                       /*!< Address match code (slave mode) */
3720 
3721 /******************  Bit definition for I2C_ICR register  *********************/
3722 #define I2C_ICR_ADDRCF_Pos           (3U)
3723 #define I2C_ICR_ADDRCF_Msk           (0x1UL << I2C_ICR_ADDRCF_Pos)             /*!< 0x00000008 */
3724 #define I2C_ICR_ADDRCF               I2C_ICR_ADDRCF_Msk                        /*!< Address matched clear flag */
3725 #define I2C_ICR_NACKCF_Pos           (4U)
3726 #define I2C_ICR_NACKCF_Msk           (0x1UL << I2C_ICR_NACKCF_Pos)             /*!< 0x00000010 */
3727 #define I2C_ICR_NACKCF               I2C_ICR_NACKCF_Msk                        /*!< NACK clear flag */
3728 #define I2C_ICR_STOPCF_Pos           (5U)
3729 #define I2C_ICR_STOPCF_Msk           (0x1UL << I2C_ICR_STOPCF_Pos)             /*!< 0x00000020 */
3730 #define I2C_ICR_STOPCF               I2C_ICR_STOPCF_Msk                        /*!< STOP detection clear flag */
3731 #define I2C_ICR_BERRCF_Pos           (8U)
3732 #define I2C_ICR_BERRCF_Msk           (0x1UL << I2C_ICR_BERRCF_Pos)             /*!< 0x00000100 */
3733 #define I2C_ICR_BERRCF               I2C_ICR_BERRCF_Msk                        /*!< Bus error clear flag */
3734 #define I2C_ICR_ARLOCF_Pos           (9U)
3735 #define I2C_ICR_ARLOCF_Msk           (0x1UL << I2C_ICR_ARLOCF_Pos)             /*!< 0x00000200 */
3736 #define I2C_ICR_ARLOCF               I2C_ICR_ARLOCF_Msk                        /*!< Arbitration lost clear flag */
3737 #define I2C_ICR_OVRCF_Pos            (10U)
3738 #define I2C_ICR_OVRCF_Msk            (0x1UL << I2C_ICR_OVRCF_Pos)              /*!< 0x00000400 */
3739 #define I2C_ICR_OVRCF                I2C_ICR_OVRCF_Msk                         /*!< Overrun/Underrun clear flag */
3740 #define I2C_ICR_PECCF_Pos            (11U)
3741 #define I2C_ICR_PECCF_Msk            (0x1UL << I2C_ICR_PECCF_Pos)              /*!< 0x00000800 */
3742 #define I2C_ICR_PECCF                I2C_ICR_PECCF_Msk                         /*!< PAC error clear flag */
3743 #define I2C_ICR_TIMOUTCF_Pos         (12U)
3744 #define I2C_ICR_TIMOUTCF_Msk         (0x1UL << I2C_ICR_TIMOUTCF_Pos)           /*!< 0x00001000 */
3745 #define I2C_ICR_TIMOUTCF             I2C_ICR_TIMOUTCF_Msk                      /*!< Timeout clear flag */
3746 #define I2C_ICR_ALERTCF_Pos          (13U)
3747 #define I2C_ICR_ALERTCF_Msk          (0x1UL << I2C_ICR_ALERTCF_Pos)            /*!< 0x00002000 */
3748 #define I2C_ICR_ALERTCF              I2C_ICR_ALERTCF_Msk                       /*!< Alert clear flag */
3749 
3750 /******************  Bit definition for I2C_PECR register  *********************/
3751 #define I2C_PECR_PEC_Pos             (0U)
3752 #define I2C_PECR_PEC_Msk             (0xFFUL << I2C_PECR_PEC_Pos)              /*!< 0x000000FF */
3753 #define I2C_PECR_PEC                 I2C_PECR_PEC_Msk                          /*!< PEC register */
3754 
3755 /******************  Bit definition for I2C_RXDR register  *********************/
3756 #define I2C_RXDR_RXDATA_Pos          (0U)
3757 #define I2C_RXDR_RXDATA_Msk          (0xFFUL << I2C_RXDR_RXDATA_Pos)           /*!< 0x000000FF */
3758 #define I2C_RXDR_RXDATA              I2C_RXDR_RXDATA_Msk                       /*!< 8-bit receive data */
3759 
3760 /******************  Bit definition for I2C_TXDR register  *********************/
3761 #define I2C_TXDR_TXDATA_Pos          (0U)
3762 #define I2C_TXDR_TXDATA_Msk          (0xFFUL << I2C_TXDR_TXDATA_Pos)           /*!< 0x000000FF */
3763 #define I2C_TXDR_TXDATA              I2C_TXDR_TXDATA_Msk                       /*!< 8-bit transmit data */
3764 
3765 
3766 /******************************************************************************/
3767 /*                                                                            */
3768 /*                        Independent WATCHDOG (IWDG)                         */
3769 /*                                                                            */
3770 /******************************************************************************/
3771 /*******************  Bit definition for IWDG_KR register  ********************/
3772 #define IWDG_KR_KEY_Pos      (0U)
3773 #define IWDG_KR_KEY_Msk      (0xFFFFUL << IWDG_KR_KEY_Pos)                     /*!< 0x0000FFFF */
3774 #define IWDG_KR_KEY          IWDG_KR_KEY_Msk                                   /*!<Key value (write only, read 0000h)  */
3775 
3776 /*******************  Bit definition for IWDG_PR register  ********************/
3777 #define IWDG_PR_PR_Pos       (0U)
3778 #define IWDG_PR_PR_Msk       (0x7UL << IWDG_PR_PR_Pos)                         /*!< 0x00000007 */
3779 #define IWDG_PR_PR           IWDG_PR_PR_Msk                                    /*!<PR[2:0] (Prescaler divider)         */
3780 #define IWDG_PR_PR_0         (0x1UL << IWDG_PR_PR_Pos)                         /*!< 0x00000001 */
3781 #define IWDG_PR_PR_1         (0x2UL << IWDG_PR_PR_Pos)                         /*!< 0x00000002 */
3782 #define IWDG_PR_PR_2         (0x4UL << IWDG_PR_PR_Pos)                         /*!< 0x00000004 */
3783 
3784 /*******************  Bit definition for IWDG_RLR register  *******************/
3785 #define IWDG_RLR_RL_Pos      (0U)
3786 #define IWDG_RLR_RL_Msk      (0xFFFUL << IWDG_RLR_RL_Pos)                      /*!< 0x00000FFF */
3787 #define IWDG_RLR_RL          IWDG_RLR_RL_Msk                                   /*!<Watchdog counter reload value        */
3788 
3789 /*******************  Bit definition for IWDG_SR register  ********************/
3790 #define IWDG_SR_PVU_Pos      (0U)
3791 #define IWDG_SR_PVU_Msk      (0x1UL << IWDG_SR_PVU_Pos)                        /*!< 0x00000001 */
3792 #define IWDG_SR_PVU          IWDG_SR_PVU_Msk                                   /*!< Watchdog prescaler value update */
3793 #define IWDG_SR_RVU_Pos      (1U)
3794 #define IWDG_SR_RVU_Msk      (0x1UL << IWDG_SR_RVU_Pos)                        /*!< 0x00000002 */
3795 #define IWDG_SR_RVU          IWDG_SR_RVU_Msk                                   /*!< Watchdog counter reload value update */
3796 #define IWDG_SR_WVU_Pos      (2U)
3797 #define IWDG_SR_WVU_Msk      (0x1UL << IWDG_SR_WVU_Pos)                        /*!< 0x00000004 */
3798 #define IWDG_SR_WVU          IWDG_SR_WVU_Msk                                   /*!< Watchdog counter window value update */
3799 
3800 /*******************  Bit definition for IWDG_KR register  ********************/
3801 #define IWDG_WINR_WIN_Pos    (0U)
3802 #define IWDG_WINR_WIN_Msk    (0xFFFUL << IWDG_WINR_WIN_Pos)                    /*!< 0x00000FFF */
3803 #define IWDG_WINR_WIN        IWDG_WINR_WIN_Msk                                 /*!< Watchdog counter window value */
3804 
3805 
3806 /******************************************************************************/
3807 /*                                                                            */
3808 /*                        Power Control                                       */
3809 /*                                                                            */
3810 /******************************************************************************/
3811 #define PWR_BOR_SUPPORT                       /*!< PWR feature available only on specific devices: Brown-Out Reset feature         */
3812 #define PWR_SHDW_SUPPORT                      /*!< PWR feature available only on specific devices: Shutdown mode */
3813 #define PWR_PVM_SUPPORT                       /*!< PWR feature available only on specific devices: Power Voltage Monitoring feature */
3814 
3815 /********************  Bit definition for PWR_CR1 register  ********************/
3816 #define PWR_CR1_LPMS_Pos          (0U)
3817 #define PWR_CR1_LPMS_Msk          (0x7UL << PWR_CR1_LPMS_Pos)                  /*!< 0x00000007 */
3818 #define PWR_CR1_LPMS              PWR_CR1_LPMS_Msk                             /*!< Low Power Mode Selection */
3819 #define PWR_CR1_LPMS_0            (0x1UL << PWR_CR1_LPMS_Pos)                  /*!< 0x00000001 */
3820 #define PWR_CR1_LPMS_1            (0x2UL << PWR_CR1_LPMS_Pos)                  /*!< 0x00000002 */
3821 #define PWR_CR1_LPMS_2            (0x4UL << PWR_CR1_LPMS_Pos)                  /*!< 0x00000004 */
3822 #define PWR_CR1_FPD_STOP_Pos      (3U)
3823 #define PWR_CR1_FPD_STOP_Msk      (0x1UL << PWR_CR1_FPD_STOP_Pos)              /*!< 0x00000008 */
3824 #define PWR_CR1_FPD_STOP          PWR_CR1_FPD_STOP_Msk                         /*!< Flash power down mode during stop */
3825 #define PWR_CR1_FPD_SLP_Pos       (5U)
3826 #define PWR_CR1_FPD_SLP_Msk       (0x1UL << PWR_CR1_FPD_SLP_Pos)               /*!< 0x00000020 */
3827 #define PWR_CR1_FPD_SLP           PWR_CR1_FPD_SLP_Msk                          /*!< Flash power down mode during sleep */
3828 
3829 /********************  Bit definition for PWR_CR2 register  ********************/
3830 #define PWR_CR2_PVM_VDDIO2_Pos    (8U)
3831 #define PWR_CR2_PVM_VDDIO2_Msk    (0x3UL << PWR_CR2_PVM_VDDIO2_Pos)              /*!< 0x00000300 */
3832 #define PWR_CR2_PVM_VDDIO2        PWR_CR2_PVM_VDDIO2_Msk                         /*!< VDDIO2 Voltage Monitor Enable */
3833 #define PWR_CR2_PVM_VDDIO2_0      (0x1UL << PWR_CR2_PVM_VDDIO2_Pos)
3834 #define PWR_CR2_PVM_VDDIO2_1      (0x2UL << PWR_CR2_PVM_VDDIO2_Pos)
3835 /********************  Bit definition for PWR_CR3 register  ********************/
3836 #define PWR_CR3_EWUP_Pos          (0U)
3837 #define PWR_CR3_EWUP_Msk          (0x3FUL << PWR_CR3_EWUP_Pos)                 /*!< 0x0000003F */
3838 #define PWR_CR3_EWUP              PWR_CR3_EWUP_Msk                             /*!< Enable all external Wake-Up Lines  */
3839 #define PWR_CR3_EWUP1_Pos         (0U)
3840 #define PWR_CR3_EWUP1_Msk         (0x1UL << PWR_CR3_EWUP1_Pos)                 /*!< 0x00000001 */
3841 #define PWR_CR3_EWUP1             PWR_CR3_EWUP1_Msk                            /*!< Enable external WKUP Line 1 */
3842 #define PWR_CR3_EWUP2_Pos         (1U)
3843 #define PWR_CR3_EWUP2_Msk         (0x1UL << PWR_CR3_EWUP2_Pos)                 /*!< 0x00000002 */
3844 #define PWR_CR3_EWUP2             PWR_CR3_EWUP2_Msk                            /*!< Enable external WKUP pin 2 */
3845 #define PWR_CR3_EWUP3_Pos         (2U)
3846 #define PWR_CR3_EWUP3_Msk         (0x1UL << PWR_CR3_EWUP3_Pos)                 /*!< 0x00000004 */
3847 #define PWR_CR3_EWUP3             PWR_CR3_EWUP3_Msk                            /*!< Enable external WKUP pin 3 */
3848 #define PWR_CR3_EWUP4_Pos         (3U)
3849 #define PWR_CR3_EWUP4_Msk         (0x1UL << PWR_CR3_EWUP4_Pos)                 /*!< 0x00000008 */
3850 #define PWR_CR3_EWUP4             PWR_CR3_EWUP4_Msk                            /*!< Enable external WKUP pin 4 */
3851 #define PWR_CR3_EWUP5_Pos         (4U)
3852 #define PWR_CR3_EWUP5_Msk         (0x1UL << PWR_CR3_EWUP5_Pos)                 /*!< 0x00000010 */
3853 #define PWR_CR3_EWUP5             PWR_CR3_EWUP5_Msk                            /*!< Enable WKUP pin 5 */
3854 #define PWR_CR3_EWUP6_Pos         (5U)
3855 #define PWR_CR3_EWUP6_Msk         (0x1UL << PWR_CR3_EWUP6_Pos)                 /*!< 0x00000020 */
3856 #define PWR_CR3_EWUP6             PWR_CR3_EWUP6_Msk                            /*!< Enable external WKUP pin 6 */
3857 #define PWR_CR3_APC_Pos           (10U)
3858 #define PWR_CR3_APC_Msk           (0x1UL << PWR_CR3_APC_Pos)                   /*!< 0x00000400 */
3859 #define PWR_CR3_APC               PWR_CR3_APC_Msk                              /*!< Apply pull-up and pull-down configuration */
3860 #define PWR_CR3_EIWUL_Pos         (15U)
3861 #define PWR_CR3_EIWUL_Msk         (0x1UL << PWR_CR3_EIWUL_Pos)                 /*!< 0x00008000 */
3862 #define PWR_CR3_EIWUL             PWR_CR3_EIWUL_Msk                            /*!< Enable Internal Wake-up line */
3863 
3864 /********************  Bit definition for PWR_CR4 register  ********************/
3865 #define PWR_CR4_WP_Pos            (0U)
3866 #define PWR_CR4_WP_Msk            (0x3FUL << PWR_CR4_WP_Pos)                   /*!< 0x0000003F */
3867 #define PWR_CR4_WP                PWR_CR4_WP_Msk                               /*!< all Wake-Up Line polarity */
3868 #define PWR_CR4_WP1_Pos           (0U)
3869 #define PWR_CR4_WP1_Msk           (0x1UL << PWR_CR4_WP1_Pos)                   /*!< 0x00000001 */
3870 #define PWR_CR4_WP1               PWR_CR4_WP1_Msk                              /*!< Wake-Up Line 1 polarity */
3871 #define PWR_CR4_WP2_Pos           (1U)
3872 #define PWR_CR4_WP2_Msk           (0x1UL << PWR_CR4_WP2_Pos)                   /*!< 0x00000002 */
3873 #define PWR_CR4_WP2               PWR_CR4_WP2_Msk                              /*!< Wake-Up Line 2 polarity */
3874 #define PWR_CR4_WP3_Pos           (2U)
3875 #define PWR_CR4_WP3_Msk           (0x1UL << PWR_CR4_WP3_Pos)                   /*!< 0x00000004 */
3876 #define PWR_CR4_WP3               PWR_CR4_WP3_Msk                              /*!< Wake-Up Line 3 polarity */
3877 #define PWR_CR4_WP4_Pos           (3U)
3878 #define PWR_CR4_WP4_Msk           (0x1UL << PWR_CR4_WP4_Pos)                   /*!< 0x00000008 */
3879 #define PWR_CR4_WP4               PWR_CR4_WP4_Msk                              /*!< Wake-Up Line 4 polarity */
3880 #define PWR_CR4_WP5_Pos           (4U)
3881 #define PWR_CR4_WP5_Msk           (0x1UL << PWR_CR4_WP5_Pos)                   /*!< 0x00000010 */
3882 #define PWR_CR4_WP5               PWR_CR4_WP5_Msk                              /*!< Wake-Up Pin 5 polarity */
3883 #define PWR_CR4_WP6_Pos           (5U)
3884 #define PWR_CR4_WP6_Msk           (0x1UL << PWR_CR4_WP6_Pos)                   /*!< 0x00000020 */
3885 #define PWR_CR4_WP6               PWR_CR4_WP6_Msk                              /*!< Wake-Up Line 6 polarity */
3886 
3887 /********************  Bit definition for PWR_SR1 register  ********************/
3888 #define PWR_SR1_WUF_Pos           (0U)
3889 #define PWR_SR1_WUF_Msk           (0x3FUL << PWR_SR1_WUF_Pos)                  /*!< 0x0000003F */
3890 #define PWR_SR1_WUF               PWR_SR1_WUF_Msk                              /*!< Wakeup Flags  */
3891 #define PWR_SR1_WUF1_Pos          (0U)
3892 #define PWR_SR1_WUF1_Msk          (0x1UL << PWR_SR1_WUF1_Pos)                  /*!< 0x00000001 */
3893 #define PWR_SR1_WUF1              PWR_SR1_WUF1_Msk                             /*!< Wakeup Flag 1 */
3894 #define PWR_SR1_WUF2_Pos          (1U)
3895 #define PWR_SR1_WUF2_Msk          (0x1UL << PWR_SR1_WUF2_Pos)                  /*!< 0x00000002 */
3896 #define PWR_SR1_WUF2              PWR_SR1_WUF2_Msk                             /*!< Wakeup Flag 2 */
3897 #define PWR_SR1_WUF3_Pos          (2U)
3898 #define PWR_SR1_WUF3_Msk          (0x1UL << PWR_SR1_WUF3_Pos)                  /*!< 0x00000004 */
3899 #define PWR_SR1_WUF3              PWR_SR1_WUF3_Msk                             /*!< Wakeup Flag 3 */
3900 #define PWR_SR1_WUF4_Pos          (3U)
3901 #define PWR_SR1_WUF4_Msk          (0x1UL << PWR_SR1_WUF4_Pos)                  /*!< 0x00000008 */
3902 #define PWR_SR1_WUF4              PWR_SR1_WUF4_Msk                             /*!< Wakeup Flag 4 */
3903 #define PWR_SR1_WUF5_Pos          (4U)
3904 #define PWR_SR1_WUF5_Msk          (0x1UL << PWR_SR1_WUF5_Pos)                  /*!< 0x00000010 */
3905 #define PWR_SR1_WUF5              PWR_SR1_WUF5_Msk                             /*!< Wakeup Flag 5 */
3906 #define PWR_SR1_WUF6_Pos          (5U)
3907 #define PWR_SR1_WUF6_Msk          (0x1UL << PWR_SR1_WUF6_Pos)                  /*!< 0x00000020 */
3908 #define PWR_SR1_WUF6              PWR_SR1_WUF6_Msk                             /*!< Wakeup Flag 6 */
3909 #define PWR_SR1_SBF_Pos           (8U)
3910 #define PWR_SR1_SBF_Msk           (0x1UL << PWR_SR1_SBF_Pos)                   /*!< 0x00000100 */
3911 #define PWR_SR1_SBF               PWR_SR1_SBF_Msk                              /*!< Standby Flag  */
3912 #define PWR_SR1_WUFI_Pos          (15U)
3913 #define PWR_SR1_WUFI_Msk          (0x1UL << PWR_SR1_WUFI_Pos)                  /*!< 0x00008000 */
3914 #define PWR_SR1_WUFI              PWR_SR1_WUFI_Msk                             /*!< Wakeup Flag Internal */
3915 
3916 /********************  Bit definition for PWR_SR2 register  ********************/
3917 #define PWR_SR2_FLASH_RDY_Pos     (7U)
3918 #define PWR_SR2_FLASH_RDY_Msk     (0x1UL << PWR_SR2_FLASH_RDY_Pos)             /*!< 0x00000080 */
3919 #define PWR_SR2_FLASH_RDY         PWR_SR2_FLASH_RDY_Msk                        /*!< Flash Ready */
3920 #define PWR_SR2_PVMO_VDDIO2_Pos   (13U)
3921 #define PWR_SR2_PVMO_VDDIO2_Msk   (0x1UL << PWR_SR2_PVMO_VDDIO2_Pos)           /*!< 0x00002000 */
3922 #define PWR_SR2_PVMO_VDDIO2       PWR_SR2_PVMO_VDDIO2_Msk                      /*!< PVM Voltage Monitoring Output */
3923 
3924 /********************  Bit definition for PWR_SCR register  ********************/
3925 #define PWR_SCR_CWUF_Pos          (0U)
3926 #define PWR_SCR_CWUF_Msk          (0x3FUL << PWR_SCR_CWUF_Pos)                 /*!< 0x0000003F */
3927 #define PWR_SCR_CWUF              PWR_SCR_CWUF_Msk                             /*!< Clear Wake-up Flags  */
3928 #define PWR_SCR_CWUF1_Pos         (0U)
3929 #define PWR_SCR_CWUF1_Msk         (0x1UL << PWR_SCR_CWUF1_Pos)                 /*!< 0x00000001 */
3930 #define PWR_SCR_CWUF1             PWR_SCR_CWUF1_Msk                            /*!< Clear Wake-up Flag 1 */
3931 #define PWR_SCR_CWUF2_Pos         (1U)
3932 #define PWR_SCR_CWUF2_Msk         (0x1UL << PWR_SCR_CWUF2_Pos)                 /*!< 0x00000002 */
3933 #define PWR_SCR_CWUF2             PWR_SCR_CWUF2_Msk                            /*!< Clear Wake-up Flag 2 */
3934 #define PWR_SCR_CWUF3_Pos         (2U)
3935 #define PWR_SCR_CWUF3_Msk         (0x1UL << PWR_SCR_CWUF3_Pos)                 /*!< 0x00000004 */
3936 #define PWR_SCR_CWUF3             PWR_SCR_CWUF3_Msk                            /*!< Clear Wake-up Flag 3 */
3937 #define PWR_SCR_CWUF4_Pos         (3U)
3938 #define PWR_SCR_CWUF4_Msk         (0x1UL << PWR_SCR_CWUF4_Pos)                 /*!< 0x00000008 */
3939 #define PWR_SCR_CWUF4             PWR_SCR_CWUF4_Msk                            /*!< Clear Wake-up Flag 4 */
3940 #define PWR_SCR_CWUF5_Pos         (4U)
3941 #define PWR_SCR_CWUF5_Msk         (0x1UL << PWR_SCR_CWUF5_Pos)                 /*!< 0x00000010 */
3942 #define PWR_SCR_CWUF5             PWR_SCR_CWUF5_Msk                            /*!< Clear Wake-up Flag 5 */
3943 #define PWR_SCR_CWUF6_Pos         (5U)
3944 #define PWR_SCR_CWUF6_Msk         (0x1UL << PWR_SCR_CWUF6_Pos)                 /*!< 0x00000020 */
3945 #define PWR_SCR_CWUF6             PWR_SCR_CWUF6_Msk                            /*!< Clear Wake-up Flag 6 */
3946 #define PWR_SCR_CSBF_Pos          (8U)
3947 #define PWR_SCR_CSBF_Msk          (0x1UL << PWR_SCR_CSBF_Pos)                  /*!< 0x00000100 */
3948 #define PWR_SCR_CSBF              PWR_SCR_CSBF_Msk                             /*!< Clear Standby Flag  */
3949 
3950 /********************  Bit definition for PWR_PUCRA register  *****************/
3951 #define PWR_PUCRA_PU0_Pos         (0U)
3952 #define PWR_PUCRA_PU0_Msk         (0x1UL << PWR_PUCRA_PU0_Pos)                 /*!< 0x00000001 */
3953 #define PWR_PUCRA_PU0             PWR_PUCRA_PU0_Msk                            /*!< Pin PA0 Pull-Up set */
3954 #define PWR_PUCRA_PU1_Pos         (1U)
3955 #define PWR_PUCRA_PU1_Msk         (0x1UL << PWR_PUCRA_PU1_Pos)                 /*!< 0x00000002 */
3956 #define PWR_PUCRA_PU1             PWR_PUCRA_PU1_Msk                            /*!< Pin PA1 Pull-Up set */
3957 #define PWR_PUCRA_PU2_Pos         (2U)
3958 #define PWR_PUCRA_PU2_Msk         (0x1UL << PWR_PUCRA_PU2_Pos)                 /*!< 0x00000004 */
3959 #define PWR_PUCRA_PU2             PWR_PUCRA_PU2_Msk                            /*!< Pin PA2 Pull-Up set */
3960 #define PWR_PUCRA_PU3_Pos         (3U)
3961 #define PWR_PUCRA_PU3_Msk         (0x1UL << PWR_PUCRA_PU3_Pos)                 /*!< 0x00000008 */
3962 #define PWR_PUCRA_PU3             PWR_PUCRA_PU3_Msk                            /*!< Pin PA3 Pull-Up set */
3963 #define PWR_PUCRA_PU4_Pos         (4U)
3964 #define PWR_PUCRA_PU4_Msk         (0x1UL << PWR_PUCRA_PU4_Pos)                 /*!< 0x00000010 */
3965 #define PWR_PUCRA_PU4             PWR_PUCRA_PU4_Msk                            /*!< Pin PA4 Pull-Up set */
3966 #define PWR_PUCRA_PU5_Pos         (5U)
3967 #define PWR_PUCRA_PU5_Msk         (0x1UL << PWR_PUCRA_PU5_Pos)                 /*!< 0x00000020 */
3968 #define PWR_PUCRA_PU5             PWR_PUCRA_PU5_Msk                            /*!< Pin PA5 Pull-Up set */
3969 #define PWR_PUCRA_PU6_Pos         (6U)
3970 #define PWR_PUCRA_PU6_Msk         (0x1UL << PWR_PUCRA_PU6_Pos)                 /*!< 0x00000040 */
3971 #define PWR_PUCRA_PU6             PWR_PUCRA_PU6_Msk                            /*!< Pin PA6 Pull-Up set */
3972 #define PWR_PUCRA_PU7_Pos         (7U)
3973 #define PWR_PUCRA_PU7_Msk         (0x1UL << PWR_PUCRA_PU7_Pos)                 /*!< 0x00000080 */
3974 #define PWR_PUCRA_PU7             PWR_PUCRA_PU7_Msk                            /*!< Pin PA7 Pull-Up set */
3975 #define PWR_PUCRA_PU8_Pos         (8U)
3976 #define PWR_PUCRA_PU8_Msk         (0x1UL << PWR_PUCRA_PU8_Pos)                 /*!< 0x00000100 */
3977 #define PWR_PUCRA_PU8             PWR_PUCRA_PU8_Msk                            /*!< Pin PA8 Pull-Up set */
3978 #define PWR_PUCRA_PU9_Pos         (9U)
3979 #define PWR_PUCRA_PU9_Msk         (0x1UL << PWR_PUCRA_PU9_Pos)                 /*!< 0x00000200 */
3980 #define PWR_PUCRA_PU9             PWR_PUCRA_PU9_Msk                            /*!< Pin PA9 Pull-Up set */
3981 #define PWR_PUCRA_PU10_Pos        (10U)
3982 #define PWR_PUCRA_PU10_Msk        (0x1UL << PWR_PUCRA_PU10_Pos)                /*!< 0x00000400 */
3983 #define PWR_PUCRA_PU10            PWR_PUCRA_PU10_Msk                           /*!< Pin PA10 Pull-Up set */
3984 #define PWR_PUCRA_PU11_Pos        (11U)
3985 #define PWR_PUCRA_PU11_Msk        (0x1UL << PWR_PUCRA_PU11_Pos)                /*!< 0x00000800 */
3986 #define PWR_PUCRA_PU11            PWR_PUCRA_PU11_Msk                           /*!< Pin PA11 Pull-Up set */
3987 #define PWR_PUCRA_PU12_Pos        (12U)
3988 #define PWR_PUCRA_PU12_Msk        (0x1UL << PWR_PUCRA_PU12_Pos)                /*!< 0x00001000 */
3989 #define PWR_PUCRA_PU12            PWR_PUCRA_PU12_Msk                           /*!< Pin PA12 Pull-Up set */
3990 #define PWR_PUCRA_PU13_Pos        (13U)
3991 #define PWR_PUCRA_PU13_Msk        (0x1UL << PWR_PUCRA_PU13_Pos)                /*!< 0x00002000 */
3992 #define PWR_PUCRA_PU13            PWR_PUCRA_PU13_Msk                           /*!< Pin PA13 Pull-Up set */
3993 #define PWR_PUCRA_PU14_Pos        (14U)
3994 #define PWR_PUCRA_PU14_Msk        (0x1UL << PWR_PUCRA_PU14_Pos)                /*!< 0x00004000 */
3995 #define PWR_PUCRA_PU14            PWR_PUCRA_PU14_Msk                           /*!< Pin PA14 Pull-Up set */
3996 #define PWR_PUCRA_PU15_Pos        (15U)
3997 #define PWR_PUCRA_PU15_Msk        (0x1UL << PWR_PUCRA_PU15_Pos)                /*!< 0x00008000 */
3998 #define PWR_PUCRA_PU15            PWR_PUCRA_PU15_Msk                           /*!< Pin PA15 Pull-Up set */
3999 /********************  Bit definition for PWR_PDCRA register  *****************/
4000 #define PWR_PDCRA_PD0_Pos         (0U)
4001 #define PWR_PDCRA_PD0_Msk         (0x1UL << PWR_PDCRA_PD0_Pos)                 /*!< 0x00000001 */
4002 #define PWR_PDCRA_PD0             PWR_PDCRA_PD0_Msk                            /*!< Pin PA0 Pull-Down set */
4003 #define PWR_PDCRA_PD1_Pos         (1U)
4004 #define PWR_PDCRA_PD1_Msk         (0x1UL << PWR_PDCRA_PD1_Pos)                 /*!< 0x00000002 */
4005 #define PWR_PDCRA_PD1             PWR_PDCRA_PD1_Msk                            /*!< Pin PA1 Pull-Down set */
4006 #define PWR_PDCRA_PD2_Pos         (2U)
4007 #define PWR_PDCRA_PD2_Msk         (0x1UL << PWR_PDCRA_PD2_Pos)                 /*!< 0x00000004 */
4008 #define PWR_PDCRA_PD2             PWR_PDCRA_PD2_Msk                            /*!< Pin PA2 Pull-Down set */
4009 #define PWR_PDCRA_PD3_Pos         (3U)
4010 #define PWR_PDCRA_PD3_Msk         (0x1UL << PWR_PDCRA_PD3_Pos)                 /*!< 0x00000008 */
4011 #define PWR_PDCRA_PD3             PWR_PDCRA_PD3_Msk                            /*!< Pin PA3 Pull-Down set */
4012 #define PWR_PDCRA_PD4_Pos         (4U)
4013 #define PWR_PDCRA_PD4_Msk         (0x1UL << PWR_PDCRA_PD4_Pos)                 /*!< 0x00000010 */
4014 #define PWR_PDCRA_PD4             PWR_PDCRA_PD4_Msk                            /*!< Pin PA4 Pull-Down set */
4015 #define PWR_PDCRA_PD5_Pos         (5U)
4016 #define PWR_PDCRA_PD5_Msk         (0x1UL << PWR_PDCRA_PD5_Pos)                 /*!< 0x00000020 */
4017 #define PWR_PDCRA_PD5             PWR_PDCRA_PD5_Msk                            /*!< Pin PA5 Pull-Down set */
4018 #define PWR_PDCRA_PD6_Pos         (6U)
4019 #define PWR_PDCRA_PD6_Msk         (0x1UL << PWR_PDCRA_PD6_Pos)                 /*!< 0x00000040 */
4020 #define PWR_PDCRA_PD6             PWR_PDCRA_PD6_Msk                            /*!< Pin PA6 Pull-Down set */
4021 #define PWR_PDCRA_PD7_Pos         (7U)
4022 #define PWR_PDCRA_PD7_Msk         (0x1UL << PWR_PDCRA_PD7_Pos)                 /*!< 0x00000080 */
4023 #define PWR_PDCRA_PD7             PWR_PDCRA_PD7_Msk                            /*!< Pin PA7 Pull-Down set */
4024 #define PWR_PDCRA_PD8_Pos         (8U)
4025 #define PWR_PDCRA_PD8_Msk         (0x1UL << PWR_PDCRA_PD8_Pos)                 /*!< 0x00000100 */
4026 #define PWR_PDCRA_PD8             PWR_PDCRA_PD8_Msk                            /*!< Pin PA8 Pull-Down set */
4027 #define PWR_PDCRA_PD9_Pos         (9U)
4028 #define PWR_PDCRA_PD9_Msk         (0x1UL << PWR_PDCRA_PD9_Pos)                 /*!< 0x00000200 */
4029 #define PWR_PDCRA_PD9             PWR_PDCRA_PD9_Msk                            /*!< Pin PA9 Pull-Down set */
4030 #define PWR_PDCRA_PD10_Pos        (10U)
4031 #define PWR_PDCRA_PD10_Msk        (0x1UL << PWR_PDCRA_PD10_Pos)                /*!< 0x00000400 */
4032 #define PWR_PDCRA_PD10            PWR_PDCRA_PD10_Msk                           /*!< Pin PA10 Pull-Down set */
4033 #define PWR_PDCRA_PD11_Pos        (11U)
4034 #define PWR_PDCRA_PD11_Msk        (0x1UL << PWR_PDCRA_PD11_Pos)                /*!< 0x00000800 */
4035 #define PWR_PDCRA_PD11            PWR_PDCRA_PD11_Msk                           /*!< Pin PA11 Pull-Down set */
4036 #define PWR_PDCRA_PD12_Pos        (12U)
4037 #define PWR_PDCRA_PD12_Msk        (0x1UL << PWR_PDCRA_PD12_Pos)                /*!< 0x00001000 */
4038 #define PWR_PDCRA_PD12            PWR_PDCRA_PD12_Msk                           /*!< Pin PA12 Pull-Down set */
4039 #define PWR_PDCRA_PD13_Pos        (13U)
4040 #define PWR_PDCRA_PD13_Msk        (0x1UL << PWR_PDCRA_PD13_Pos)                /*!< 0x00002000 */
4041 #define PWR_PDCRA_PD13            PWR_PDCRA_PD13_Msk                           /*!< Pin PA13 Pull-Down set */
4042 #define PWR_PDCRA_PD14_Pos        (14U)
4043 #define PWR_PDCRA_PD14_Msk        (0x1UL << PWR_PDCRA_PD14_Pos)                /*!< 0x00004000 */
4044 #define PWR_PDCRA_PD14            PWR_PDCRA_PD14_Msk                           /*!< Pin PA14 Pull-Down set */
4045 #define PWR_PDCRA_PD15_Pos        (15U)
4046 #define PWR_PDCRA_PD15_Msk        (0x1UL << PWR_PDCRA_PD15_Pos)                /*!< 0x00008000 */
4047 #define PWR_PDCRA_PD15            PWR_PDCRA_PD15_Msk                           /*!< Pin PA15 Pull-Down set */
4048 /********************  Bit definition for PWR_PUCRB register  *****************/
4049 #define PWR_PUCRB_PU0_Pos         (0U)
4050 #define PWR_PUCRB_PU0_Msk         (0x1UL << PWR_PUCRB_PU0_Pos)                 /*!< 0x00000001 */
4051 #define PWR_PUCRB_PU0             PWR_PUCRB_PU0_Msk                            /*!< Pin PB0 Pull-Up set */
4052 #define PWR_PUCRB_PU1_Pos         (1U)
4053 #define PWR_PUCRB_PU1_Msk         (0x1UL << PWR_PUCRB_PU1_Pos)                 /*!< 0x00000002 */
4054 #define PWR_PUCRB_PU1             PWR_PUCRB_PU1_Msk                            /*!< Pin PB1 Pull-Up set */
4055 #define PWR_PUCRB_PU2_Pos         (2U)
4056 #define PWR_PUCRB_PU2_Msk         (0x1UL << PWR_PUCRB_PU2_Pos)                 /*!< 0x00000004 */
4057 #define PWR_PUCRB_PU2             PWR_PUCRB_PU2_Msk                            /*!< Pin PB2 Pull-Up set */
4058 #define PWR_PUCRB_PU3_Pos         (3U)
4059 #define PWR_PUCRB_PU3_Msk         (0x1UL << PWR_PUCRB_PU3_Pos)                 /*!< 0x00000008 */
4060 #define PWR_PUCRB_PU3             PWR_PUCRB_PU3_Msk                            /*!< Pin PB3 Pull-Up set */
4061 #define PWR_PUCRB_PU4_Pos         (4U)
4062 #define PWR_PUCRB_PU4_Msk         (0x1UL << PWR_PUCRB_PU4_Pos)                 /*!< 0x00000010 */
4063 #define PWR_PUCRB_PU4             PWR_PUCRB_PU4_Msk                            /*!< Pin PB4 Pull-Up set */
4064 #define PWR_PUCRB_PU5_Pos         (5U)
4065 #define PWR_PUCRB_PU5_Msk         (0x1UL << PWR_PUCRB_PU5_Pos)                 /*!< 0x00000020 */
4066 #define PWR_PUCRB_PU5             PWR_PUCRB_PU5_Msk                            /*!< Pin PB5 Pull-Up set */
4067 #define PWR_PUCRB_PU6_Pos         (6U)
4068 #define PWR_PUCRB_PU6_Msk         (0x1UL << PWR_PUCRB_PU6_Pos)                 /*!< 0x00000040 */
4069 #define PWR_PUCRB_PU6             PWR_PUCRB_PU6_Msk                            /*!< Pin PB6 Pull-Up set */
4070 #define PWR_PUCRB_PU7_Pos         (7U)
4071 #define PWR_PUCRB_PU7_Msk         (0x1UL << PWR_PUCRB_PU7_Pos)                 /*!< 0x00000080 */
4072 #define PWR_PUCRB_PU7             PWR_PUCRB_PU7_Msk                            /*!< Pin PB7 Pull-Up set */
4073 #define PWR_PUCRB_PU8_Pos         (8U)
4074 #define PWR_PUCRB_PU8_Msk         (0x1UL << PWR_PUCRB_PU8_Pos)                 /*!< 0x00000100 */
4075 #define PWR_PUCRB_PU8             PWR_PUCRB_PU8_Msk                            /*!< Pin PB8 Pull-Up set */
4076 #define PWR_PUCRB_PU9_Pos         (9U)
4077 #define PWR_PUCRB_PU9_Msk         (0x1UL << PWR_PUCRB_PU9_Pos)                 /*!< 0x00000200 */
4078 #define PWR_PUCRB_PU9             PWR_PUCRB_PU9_Msk                            /*!< Pin PB9 Pull-Up set */
4079 #define PWR_PUCRB_PU10_Pos        (10U)
4080 #define PWR_PUCRB_PU10_Msk        (0x1UL << PWR_PUCRB_PU10_Pos)                /*!< 0x00000400 */
4081 #define PWR_PUCRB_PU10            PWR_PUCRB_PU10_Msk                           /*!< Pin PB10 Pull-Up set */
4082 #define PWR_PUCRB_PU11_Pos        (11U)
4083 #define PWR_PUCRB_PU11_Msk        (0x1UL << PWR_PUCRB_PU11_Pos)                /*!< 0x00000800 */
4084 #define PWR_PUCRB_PU11            PWR_PUCRB_PU11_Msk                           /*!< Pin PB11 Pull-Up set */
4085 #define PWR_PUCRB_PU12_Pos        (12U)
4086 #define PWR_PUCRB_PU12_Msk        (0x1UL << PWR_PUCRB_PU12_Pos)                /*!< 0x00001000 */
4087 #define PWR_PUCRB_PU12            PWR_PUCRB_PU12_Msk                           /*!< Pin PB12 Pull-Up set */
4088 #define PWR_PUCRB_PU13_Pos        (13U)
4089 #define PWR_PUCRB_PU13_Msk        (0x1UL << PWR_PUCRB_PU13_Pos)                /*!< 0x00002000 */
4090 #define PWR_PUCRB_PU13            PWR_PUCRB_PU13_Msk                           /*!< Pin PB13 Pull-Up set */
4091 #define PWR_PUCRB_PU14_Pos        (14U)
4092 #define PWR_PUCRB_PU14_Msk        (0x1UL << PWR_PUCRB_PU14_Pos)                /*!< 0x00004000 */
4093 #define PWR_PUCRB_PU14            PWR_PUCRB_PU14_Msk                           /*!< Pin PB14 Pull-Up set */
4094 #define PWR_PUCRB_PU15_Pos        (15U)
4095 #define PWR_PUCRB_PU15_Msk        (0x1UL << PWR_PUCRB_PU15_Pos)                /*!< 0x00008000 */
4096 #define PWR_PUCRB_PU15            PWR_PUCRB_PU15_Msk                           /*!< Pin PB15 Pull-Up set */
4097 /********************  Bit definition for PWR_PDCRB register  *****************/
4098 #define PWR_PDCRB_PD0_Pos         (0U)
4099 #define PWR_PDCRB_PD0_Msk         (0x1UL << PWR_PDCRB_PD0_Pos)                 /*!< 0x00000001 */
4100 #define PWR_PDCRB_PD0             PWR_PDCRB_PD0_Msk                            /*!< Pin PB0 Pull-Down set */
4101 #define PWR_PDCRB_PD1_Pos         (1U)
4102 #define PWR_PDCRB_PD1_Msk         (0x1UL << PWR_PDCRB_PD1_Pos)                 /*!< 0x00000002 */
4103 #define PWR_PDCRB_PD1             PWR_PDCRB_PD1_Msk                            /*!< Pin PB1 Pull-Down set */
4104 #define PWR_PDCRB_PD2_Pos         (2U)
4105 #define PWR_PDCRB_PD2_Msk         (0x1UL << PWR_PDCRB_PD2_Pos)                 /*!< 0x00000004 */
4106 #define PWR_PDCRB_PD2             PWR_PDCRB_PD2_Msk                            /*!< Pin PB2 Pull-Down set */
4107 #define PWR_PDCRB_PD3_Pos         (3U)
4108 #define PWR_PDCRB_PD3_Msk         (0x1UL << PWR_PDCRB_PD3_Pos)                 /*!< 0x00000008 */
4109 #define PWR_PDCRB_PD3             PWR_PDCRB_PD3_Msk                            /*!< Pin PB3 Pull-Down set */
4110 #define PWR_PDCRB_PD4_Pos         (4U)
4111 #define PWR_PDCRB_PD4_Msk         (0x1UL << PWR_PDCRB_PD4_Pos)                 /*!< 0x00000010 */
4112 #define PWR_PDCRB_PD4             PWR_PDCRB_PD4_Msk                            /*!< Pin PB4 Pull-Down set */
4113 #define PWR_PDCRB_PD5_Pos         (5U)
4114 #define PWR_PDCRB_PD5_Msk         (0x1UL << PWR_PDCRB_PD5_Pos)                 /*!< 0x00000020 */
4115 #define PWR_PDCRB_PD5             PWR_PDCRB_PD5_Msk                            /*!< Pin PB5 Pull-Down set */
4116 #define PWR_PDCRB_PD6_Pos         (6U)
4117 #define PWR_PDCRB_PD6_Msk         (0x1UL << PWR_PDCRB_PD6_Pos)                 /*!< 0x00000040 */
4118 #define PWR_PDCRB_PD6             PWR_PDCRB_PD6_Msk                            /*!< Pin PB6 Pull-Down set */
4119 #define PWR_PDCRB_PD7_Pos         (7U)
4120 #define PWR_PDCRB_PD7_Msk         (0x1UL << PWR_PDCRB_PD7_Pos)                 /*!< 0x00000080 */
4121 #define PWR_PDCRB_PD7             PWR_PDCRB_PD7_Msk                            /*!< Pin PB7 Pull-Down set */
4122 #define PWR_PDCRB_PD8_Pos         (8U)
4123 #define PWR_PDCRB_PD8_Msk         (0x1UL << PWR_PDCRB_PD8_Pos)                 /*!< 0x00000100 */
4124 #define PWR_PDCRB_PD8             PWR_PDCRB_PD8_Msk                            /*!< Pin PB8 Pull-Down set */
4125 #define PWR_PDCRB_PD9_Pos         (9U)
4126 #define PWR_PDCRB_PD9_Msk         (0x1UL << PWR_PDCRB_PD9_Pos)                 /*!< 0x00000200 */
4127 #define PWR_PDCRB_PD9             PWR_PDCRB_PD9_Msk                            /*!< Pin PB9 Pull-Down set */
4128 #define PWR_PDCRB_PD10_Pos        (10U)
4129 #define PWR_PDCRB_PD10_Msk        (0x1UL << PWR_PDCRB_PD10_Pos)                /*!< 0x00000400 */
4130 #define PWR_PDCRB_PD10            PWR_PDCRB_PD10_Msk                           /*!< Pin PB10 Pull-Down set */
4131 #define PWR_PDCRB_PD11_Pos        (11U)
4132 #define PWR_PDCRB_PD11_Msk        (0x1UL << PWR_PDCRB_PD11_Pos)                /*!< 0x00000800 */
4133 #define PWR_PDCRB_PD11            PWR_PDCRB_PD11_Msk                           /*!< Pin PB11 Pull-Down set */
4134 #define PWR_PDCRB_PD12_Pos        (12U)
4135 #define PWR_PDCRB_PD12_Msk        (0x1UL << PWR_PDCRB_PD12_Pos)                /*!< 0x00001000 */
4136 #define PWR_PDCRB_PD12            PWR_PDCRB_PD12_Msk                           /*!< Pin PB12 Pull-Down set */
4137 #define PWR_PDCRB_PD13_Pos        (13U)
4138 #define PWR_PDCRB_PD13_Msk        (0x1UL << PWR_PDCRB_PD13_Pos)                /*!< 0x00002000 */
4139 #define PWR_PDCRB_PD13            PWR_PDCRB_PD13_Msk                           /*!< Pin PB13 Pull-Down set */
4140 #define PWR_PDCRB_PD14_Pos        (14U)
4141 #define PWR_PDCRB_PD14_Msk        (0x1UL << PWR_PDCRB_PD14_Pos)                /*!< 0x00004000 */
4142 #define PWR_PDCRB_PD14            PWR_PDCRB_PD14_Msk                           /*!< Pin PB14 Pull-Down set */
4143 #define PWR_PDCRB_PD15_Pos        (15U)
4144 #define PWR_PDCRB_PD15_Msk        (0x1UL << PWR_PDCRB_PD15_Pos)                /*!< 0x00008000 */
4145 #define PWR_PDCRB_PD15            PWR_PDCRB_PD15_Msk                           /*!< Pin PB15 Pull-Down set */
4146 /********************  Bit definition for PWR_PUCRC register  *****************/
4147 #define PWR_PUCRC_PU0_Pos         (0U)
4148 #define PWR_PUCRC_PU0_Msk         (0x1UL << PWR_PUCRC_PU0_Pos)                 /*!< 0x00000001 */
4149 #define PWR_PUCRC_PU0             PWR_PUCRC_PU0_Msk                            /*!< Pin PC0 Pull-Up set */
4150 #define PWR_PUCRC_PU1_Pos         (1U)
4151 #define PWR_PUCRC_PU1_Msk         (0x1UL << PWR_PUCRC_PU1_Pos)                 /*!< 0x00000002 */
4152 #define PWR_PUCRC_PU1             PWR_PUCRC_PU1_Msk                            /*!< Pin PC1 Pull-Up set */
4153 #define PWR_PUCRC_PU2_Pos         (2U)
4154 #define PWR_PUCRC_PU2_Msk         (0x1UL << PWR_PUCRC_PU2_Pos)                 /*!< 0x00000004 */
4155 #define PWR_PUCRC_PU2             PWR_PUCRC_PU2_Msk                            /*!< Pin PC2 Pull-Up set */
4156 #define PWR_PUCRC_PU3_Pos         (3U)
4157 #define PWR_PUCRC_PU3_Msk         (0x1UL << PWR_PUCRC_PU3_Pos)                 /*!< 0x00000008 */
4158 #define PWR_PUCRC_PU3             PWR_PUCRC_PU3_Msk                            /*!< Pin PC3 Pull-Up set */
4159 #define PWR_PUCRC_PU4_Pos         (4U)
4160 #define PWR_PUCRC_PU4_Msk         (0x1UL << PWR_PUCRC_PU4_Pos)                 /*!< 0x00000010 */
4161 #define PWR_PUCRC_PU4             PWR_PUCRC_PU4_Msk                            /*!< Pin PC4 Pull-Up set */
4162 #define PWR_PUCRC_PU5_Pos         (5U)
4163 #define PWR_PUCRC_PU5_Msk         (0x1UL << PWR_PUCRC_PU5_Pos)                 /*!< 0x00000020 */
4164 #define PWR_PUCRC_PU5             PWR_PUCRC_PU5_Msk                            /*!< Pin PC5 Pull-Up set */
4165 #define PWR_PUCRC_PU6_Pos         (6U)
4166 #define PWR_PUCRC_PU6_Msk         (0x1UL << PWR_PUCRC_PU6_Pos)                 /*!< 0x00000040 */
4167 #define PWR_PUCRC_PU6             PWR_PUCRC_PU6_Msk                            /*!< Pin PC6 Pull-Up set */
4168 #define PWR_PUCRC_PU7_Pos         (7U)
4169 #define PWR_PUCRC_PU7_Msk         (0x1UL << PWR_PUCRC_PU7_Pos)                 /*!< 0x00000080 */
4170 #define PWR_PUCRC_PU7             PWR_PUCRC_PU7_Msk                            /*!< Pin PC7 Pull-Up set */
4171 #define PWR_PUCRC_PU8_Pos         (8U)
4172 #define PWR_PUCRC_PU8_Msk         (0x1UL << PWR_PUCRC_PU8_Pos)                 /*!< 0x00000100 */
4173 #define PWR_PUCRC_PU8             PWR_PUCRC_PU8_Msk                            /*!< Pin PC8 Pull-Up set */
4174 #define PWR_PUCRC_PU9_Pos         (9U)
4175 #define PWR_PUCRC_PU9_Msk         (0x1UL << PWR_PUCRC_PU9_Pos)                 /*!< 0x00000200 */
4176 #define PWR_PUCRC_PU9             PWR_PUCRC_PU9_Msk                            /*!< Pin PC9 Pull-Up set */
4177 #define PWR_PUCRC_PU10_Pos        (10U)
4178 #define PWR_PUCRC_PU10_Msk        (0x1UL << PWR_PUCRC_PU10_Pos)                /*!< 0x00000400 */
4179 #define PWR_PUCRC_PU10            PWR_PUCRC_PU10_Msk                           /*!< Pin PC10 Pull-Up set */
4180 #define PWR_PUCRC_PU11_Pos        (11U)
4181 #define PWR_PUCRC_PU11_Msk        (0x1UL << PWR_PUCRC_PU11_Pos)                /*!< 0x00000800 */
4182 #define PWR_PUCRC_PU11            PWR_PUCRC_PU11_Msk                           /*!< Pin PC11 Pull-Up set */
4183 #define PWR_PUCRC_PU12_Pos        (12U)
4184 #define PWR_PUCRC_PU12_Msk        (0x1UL << PWR_PUCRC_PU12_Pos)                 /*!< 0x00001000 */
4185 #define PWR_PUCRC_PU12            PWR_PUCRC_PU12_Msk                            /*!< Pin PC12 Pull-Up set */
4186 #define PWR_PUCRC_PU13_Pos        (13U)
4187 #define PWR_PUCRC_PU13_Msk        (0x1UL << PWR_PUCRC_PU13_Pos)                /*!< 0x00002000 */
4188 #define PWR_PUCRC_PU13            PWR_PUCRC_PU13_Msk                           /*!< Pin PC13 Pull-Up set */
4189 #define PWR_PUCRC_PU14_Pos        (14U)
4190 #define PWR_PUCRC_PU14_Msk        (0x1UL << PWR_PUCRC_PU14_Pos)                /*!< 0x00004000 */
4191 #define PWR_PUCRC_PU14            PWR_PUCRC_PU14_Msk                           /*!< Pin PC14 Pull-Up set */
4192 #define PWR_PUCRC_PU15_Pos        (15U)
4193 #define PWR_PUCRC_PU15_Msk        (0x1UL << PWR_PUCRC_PU15_Pos)                /*!< 0x00008000 */
4194 #define PWR_PUCRC_PU15            PWR_PUCRC_PU15_Msk                           /*!< Pin PC15 Pull-Up set */
4195 
4196 /********************  Bit definition for PWR_PDCRC register  *****************/
4197 #define PWR_PDCRC_PD0_Pos         (0U)
4198 #define PWR_PDCRC_PD0_Msk         (0x1UL << PWR_PDCRC_PD0_Pos)                 /*!< 0x00000001 */
4199 #define PWR_PDCRC_PD0             PWR_PDCRC_PD0_Msk                            /*!< Pin PC0 Pull-Down set */
4200 #define PWR_PDCRC_PD1_Pos         (1U)
4201 #define PWR_PDCRC_PD1_Msk         (0x1UL << PWR_PDCRC_PD1_Pos)                 /*!< 0x00000002 */
4202 #define PWR_PDCRC_PD1             PWR_PDCRC_PD1_Msk                            /*!< Pin PC1 Pull-Down set */
4203 #define PWR_PDCRC_PD2_Pos         (2U)
4204 #define PWR_PDCRC_PD2_Msk         (0x1UL << PWR_PDCRC_PD2_Pos)                 /*!< 0x00000004 */
4205 #define PWR_PDCRC_PD2             PWR_PDCRC_PD2_Msk                            /*!< Pin PC2 Pull-Down set */
4206 #define PWR_PDCRC_PD3_Pos         (3U)
4207 #define PWR_PDCRC_PD3_Msk         (0x1UL << PWR_PDCRC_PD3_Pos)                 /*!< 0x00000008 */
4208 #define PWR_PDCRC_PD3             PWR_PDCRC_PD3_Msk                            /*!< Pin PC3 Pull-Down set */
4209 #define PWR_PDCRC_PD4_Pos         (4U)
4210 #define PWR_PDCRC_PD4_Msk         (0x1UL << PWR_PDCRC_PD7_Pos)                 /*!< 0x00000010 */
4211 #define PWR_PDCRC_PD4             PWR_PDCRC_PD4_Msk                            /*!< Pin PC4 Pull-Down set */
4212 #define PWR_PDCRC_PD5_Pos         (5U)
4213 #define PWR_PDCRC_PD5_Msk         (0x1UL << PWR_PDCRC_PD5_Pos)                 /*!< 0x00000020 */
4214 #define PWR_PDCRC_PD5             PWR_PDCRC_PD5_Msk                            /*!< Pin PC5 Pull-Down set */
4215 #define PWR_PDCRC_PD6_Pos         (6U)
4216 #define PWR_PDCRC_PD6_Msk         (0x1UL << PWR_PDCRC_PD6_Pos)                 /*!< 0x00000040 */
4217 #define PWR_PDCRC_PD6             PWR_PDCRC_PD6_Msk                            /*!< Pin PC6 Pull-Down set */
4218 #define PWR_PDCRC_PD7_Pos         (7U)
4219 #define PWR_PDCRC_PD7_Msk         (0x1UL << PWR_PDCRC_PD7_Pos)                 /*!< 0x00000080 */
4220 #define PWR_PDCRC_PD7             PWR_PDCRC_PD7_Msk                            /*!< Pin PC7 Pull-Down set */
4221 #define PWR_PDCRC_PD8_Pos         (8U)
4222 #define PWR_PDCRC_PD8_Msk         (0x1UL << PWR_PDCRC_PD8_Pos)                 /*!< 0x00000100 */
4223 #define PWR_PDCRC_PD8             PWR_PDCRC_PD8_Msk                            /*!< Pin PC8 Pull-Down set */
4224 #define PWR_PDCRC_PD9_Pos         (9U)
4225 #define PWR_PDCRC_PD9_Msk         (0x1UL << PWR_PDCRC_PD9_Pos)                 /*!< 0x00000200 */
4226 #define PWR_PDCRC_PD9             PWR_PDCRC_PD9_Msk                            /*!< Pin PC9 Pull-Down set */
4227 #define PWR_PDCRC_PD10_Pos        (10U)
4228 #define PWR_PDCRC_PD10_Msk        (0x1UL << PWR_PDCRC_PD10_Pos)                 /*!< 0x00000400 */
4229 #define PWR_PDCRC_PD10            PWR_PDCRC_PD10_Msk                            /*!< Pin PC10 Pull-Down set */
4230 #define PWR_PDCRC_PD11_Pos        (11U)
4231 #define PWR_PDCRC_PD11_Msk        (0x1UL << PWR_PDCRC_PD11_Pos)                 /*!< 0x00000800 */
4232 #define PWR_PDCRC_PD11            PWR_PDCRC_PD11_Msk                            /*!< Pin PC11 Pull-Down set */
4233 #define PWR_PDCRC_PD12_Pos        (12U)
4234 #define PWR_PDCRC_PD12_Msk        (0x1UL << PWR_PDCRC_PD12_Pos)                 /*!< 0x00001000 */
4235 #define PWR_PDCRC_PD12            PWR_PDCRC_PD12_Msk                            /*!< Pin PC12 Pull-Down set */
4236 #define PWR_PDCRC_PD13_Pos        (13U)
4237 #define PWR_PDCRC_PD13_Msk        (0x1UL << PWR_PDCRC_PD13_Pos)                /*!< 0x00002000 */
4238 #define PWR_PDCRC_PD13            PWR_PDCRC_PD13_Msk                           /*!< Pin PC13 Pull-Down set */
4239 #define PWR_PDCRC_PD14_Pos        (14U)
4240 #define PWR_PDCRC_PD14_Msk        (0x1UL << PWR_PDCRC_PD14_Pos)                /*!< 0x00004000 */
4241 #define PWR_PDCRC_PD14            PWR_PDCRC_PD14_Msk                           /*!< Pin PC14 Pull-Down set */
4242 #define PWR_PDCRC_PD15_Pos        (15U)
4243 #define PWR_PDCRC_PD15_Msk        (0x1UL << PWR_PDCRC_PD15_Pos)                /*!< 0x00008000 */
4244 #define PWR_PDCRC_PD15            PWR_PDCRC_PD15_Msk                           /*!< Pin PC15 Pull-Down set */
4245 
4246 /********************  Bit definition for PWR_PUCRD register  *****************/
4247 #define PWR_PUCRD_PU0_Pos         (0U)
4248 #define PWR_PUCRD_PU0_Msk         (0x1UL << PWR_PUCRD_PU0_Pos)                 /*!< 0x00000001 */
4249 #define PWR_PUCRD_PU0             PWR_PUCRD_PU0_Msk                            /*!< Pin PD0 Pull-Up set */
4250 #define PWR_PUCRD_PU1_Pos         (1U)
4251 #define PWR_PUCRD_PU1_Msk         (0x1UL << PWR_PUCRD_PU1_Pos)                 /*!< 0x00000002 */
4252 #define PWR_PUCRD_PU1             PWR_PUCRD_PU1_Msk                            /*!< Pin PD1 Pull-Up set */
4253 #define PWR_PUCRD_PU2_Pos         (2U)
4254 #define PWR_PUCRD_PU2_Msk         (0x1UL << PWR_PUCRD_PU2_Pos)                 /*!< 0x00000004 */
4255 #define PWR_PUCRD_PU2             PWR_PUCRD_PU2_Msk                            /*!< Pin PD2 Pull-Up set */
4256 #define PWR_PUCRD_PU3_Pos         (3U)
4257 #define PWR_PUCRD_PU3_Msk         (0x1UL << PWR_PUCRD_PU3_Pos)                 /*!< 0x00000008 */
4258 #define PWR_PUCRD_PU3             PWR_PUCRD_PU3_Msk                            /*!< Pin PD3 Pull-Up set */
4259 #define PWR_PUCRD_PU4_Pos         (4U)
4260 #define PWR_PUCRD_PU4_Msk         (0x1UL << PWR_PUCRD_PU4_Pos)                 /*!< 0x00000010 */
4261 #define PWR_PUCRD_PU4             PWR_PUCRD_PU4_Msk                            /*!< Pin PD4 Pull-Up set */
4262 #define PWR_PUCRD_PU5_Pos         (5U)
4263 #define PWR_PUCRD_PU5_Msk         (0x1UL << PWR_PUCRD_PU5_Pos)                 /*!< 0x00000020 */
4264 #define PWR_PUCRD_PU5             PWR_PUCRD_PU5_Msk                            /*!< Pin PD5 Pull-Up set */
4265 #define PWR_PUCRD_PU6_Pos         (6U)
4266 #define PWR_PUCRD_PU6_Msk         (0x1UL << PWR_PUCRD_PU6_Pos)                 /*!< 0x00000040 */
4267 #define PWR_PUCRD_PU6             PWR_PUCRD_PU6_Msk                            /*!< Pin PD6 Pull-Up set */
4268 #define PWR_PUCRD_PU8_Pos         (8U)
4269 #define PWR_PUCRD_PU8_Msk         (0x1UL << PWR_PUCRD_PU8_Pos)                 /*!< 0x00000100 */
4270 #define PWR_PUCRD_PU8             PWR_PUCRD_PU8_Msk                            /*!< Pin PD8 Pull-Up set */
4271 #define PWR_PUCRD_PU9_Pos         (9U)
4272 #define PWR_PUCRD_PU9_Msk         (0x1UL << PWR_PUCRD_PU9_Pos)                 /*!< 0x00000200 */
4273 #define PWR_PUCRD_PU9             PWR_PUCRD_PU9_Msk                            /*!< Pin PD9 Pull-Up set */
4274 
4275 /********************  Bit definition for PWR_PDCRD register  *****************/
4276 #define PWR_PDCRD_PD0_Pos         (0U)
4277 #define PWR_PDCRD_PD0_Msk         (0x1UL << PWR_PDCRD_PD0_Pos)                 /*!< 0x00000001 */
4278 #define PWR_PDCRD_PD0             PWR_PDCRD_PD0_Msk                            /*!< Pin PD0 Pull-Down set */
4279 #define PWR_PDCRD_PD1_Pos         (1U)
4280 #define PWR_PDCRD_PD1_Msk         (0x1UL << PWR_PDCRD_PD1_Pos)                 /*!< 0x00000002 */
4281 #define PWR_PDCRD_PD1             PWR_PDCRD_PD1_Msk                            /*!< Pin PD1 Pull-Down set */
4282 #define PWR_PDCRD_PD2_Pos         (2U)
4283 #define PWR_PDCRD_PD2_Msk         (0x1UL << PWR_PDCRD_PD2_Pos)                 /*!< 0x00000004 */
4284 #define PWR_PDCRD_PD2             PWR_PDCRD_PD2_Msk                            /*!< Pin PD2 Pull-Down set */
4285 #define PWR_PDCRD_PD3_Pos         (3U)
4286 #define PWR_PDCRD_PD3_Msk         (0x1UL << PWR_PDCRD_PD3_Pos)                 /*!< 0x00000008 */
4287 #define PWR_PDCRD_PD3             PWR_PDCRD_PD3_Msk                            /*!< Pin PD3 Pull-Down set */
4288 #define PWR_PDCRD_PD4_Pos         (4U)
4289 #define PWR_PDCRD_PD4_Msk         (0x1UL << PWR_PDCRD_PD4_Pos)                 /*!< 0x00000010 */
4290 #define PWR_PDCRD_PD4             PWR_PDCRD_PD4_Msk                            /*!< Pin PD4 Pull-Down set */
4291 #define PWR_PDCRD_PD5_Pos         (5U)
4292 #define PWR_PDCRD_PD5_Msk         (0x1UL << PWR_PDCRD_PD5_Pos)                 /*!< 0x00000020 */
4293 #define PWR_PDCRD_PD5             PWR_PDCRD_PD5_Msk                            /*!< Pin PD5 Pull-Down set */
4294 #define PWR_PDCRD_PD6_Pos         (6U)
4295 #define PWR_PDCRD_PD6_Msk         (0x1UL << PWR_PDCRD_PD6_Pos)                 /*!< 0x00000040 */
4296 #define PWR_PDCRD_PD6             PWR_PDCRD_PD6_Msk                            /*!< Pin PD6 Pull-Down set */
4297 #define PWR_PDCRD_PD8_Pos         (8U)
4298 #define PWR_PDCRD_PD8_Msk         (0x1UL << PWR_PDCRD_PD8_Pos)                 /*!< 0x00000100 */
4299 #define PWR_PDCRD_PD8             PWR_PDCRD_PD8_Msk                            /*!< Pin PD8 Pull-Down set */
4300 #define PWR_PDCRD_PD9_Pos         (9U)
4301 #define PWR_PDCRD_PD9_Msk         (0x1UL << PWR_PDCRD_PD9_Pos)                 /*!< 0x00000200 */
4302 #define PWR_PDCRD_PD9             PWR_PDCRD_PD9_Msk                            /*!< Pin PD9 Pull-Down set */
4303 /********************  Bit definition for PWR_PUCRF register  *****************/
4304 #define PWR_PUCRF_PU0_Pos         (0U)
4305 #define PWR_PUCRF_PU0_Msk         (0x1UL << PWR_PUCRF_PU0_Pos)                 /*!< 0x00000001 */
4306 #define PWR_PUCRF_PU0             PWR_PUCRF_PU0_Msk                            /*!< Pin PF0 Pull-Up set */
4307 #define PWR_PUCRF_PU1_Pos         (1U)
4308 #define PWR_PUCRF_PU1_Msk         (0x1UL << PWR_PUCRF_PU1_Pos)                 /*!< 0x00000002 */
4309 #define PWR_PUCRF_PU1             PWR_PUCRF_PU1_Msk                            /*!< Pin PF1 Pull-Up set */
4310 #define PWR_PUCRF_PU2_Pos         (2U)
4311 #define PWR_PUCRF_PU2_Msk         (0x1UL << PWR_PUCRF_PU2_Pos)                 /*!< 0x00000004 */
4312 #define PWR_PUCRF_PU2             PWR_PUCRF_PU2_Msk                            /*!< Pin PF2 Pull-Up set */
4313 #define PWR_PUCRF_PU3_Pos         (3U)
4314 #define PWR_PUCRF_PU3_Msk         (0x1UL << PWR_PUCRF_PU3_Pos)                 /*!< 0x00000008 */
4315 #define PWR_PUCRF_PU3             PWR_PUCRF_PU3_Msk                            /*!< Pin PF3 Pull-Up set */
4316 
4317 /********************  Bit definition for PWR_PDCRF register  *****************/
4318 #define PWR_PDCRF_PD0_Pos         (0U)
4319 #define PWR_PDCRF_PD0_Msk         (0x1UL << PWR_PDCRF_PD0_Pos)                 /*!< 0x00000001 */
4320 #define PWR_PDCRF_PD0             PWR_PDCRF_PD0_Msk                            /*!< Pin PF0 Pull-Down set */
4321 #define PWR_PDCRF_PD1_Pos         (1U)
4322 #define PWR_PDCRF_PD1_Msk         (0x1UL << PWR_PDCRF_PD1_Pos)                 /*!< 0x00000002 */
4323 #define PWR_PDCRF_PD1             PWR_PDCRF_PD1_Msk                            /*!< Pin PF1 Pull-Down set */
4324 #define PWR_PDCRF_PD2_Pos         (2U)
4325 #define PWR_PDCRF_PD2_Msk         (0x1UL << PWR_PDCRF_PD2_Pos)                 /*!< 0x00000004 */
4326 #define PWR_PDCRF_PD2             PWR_PDCRF_PD2_Msk                            /*!< Pin PF2 Pull-Down set */
4327 #define PWR_PDCRF_PD3_Pos         (3U)
4328 #define PWR_PDCRF_PD3_Msk         (0x1UL << PWR_PDCRF_PD3_Pos)                 /*!< 0x00000008 */
4329 #define PWR_PDCRF_PD3             PWR_PDCRF_PD3_Msk                            /*!< Pin PF3 Pull-Down set */
4330 
4331 /********************  Bits definition for PWR_BKP0R register  ***************/
4332 #define PWR_BKP0R_Pos               (0U)
4333 #define PWR_BKP0R_Msk               (0xFFFFFFFFUL << PWR_BKP0R_Pos)           /*!< 0xFFFFFFFF */
4334 #define PWR_BKP0R                   PWR_BKP0R_Msk
4335 
4336 /********************  Bits definition for PWR_BKP1R register  ***************/
4337 #define PWR_BKP1R_Pos               (0U)
4338 #define PWR_BKP1R_Msk               (0xFFFFFFFFUL << PWR_BKP1R_Pos)           /*!< 0xFFFFFFFF */
4339 #define PWR_BKP1R                   PWR_BKP1R_Msk
4340 
4341 /********************  Bits definition for PWR_BKP2R register  ***************/
4342 #define PWR_BKP2R_Pos               (0U)
4343 #define PWR_BKP2R_Msk               (0xFFFFFFFFUL << PWR_BKP2R_Pos)           /*!< 0xFFFFFFFF */
4344 #define PWR_BKP2R                   PWR_BKP2R_Msk
4345 
4346 /********************  Bits definition for PWR_BKP3R register  ***************/
4347 #define PWR_BKP3R_Pos               (0U)
4348 #define PWR_BKP3R_Msk               (0xFFFFFFFFUL << PWR_BKP3R_Pos)           /*!< 0xFFFFFFFF */
4349 #define PWR_BKP3R                   PWR_BKP3R_Msk
4350 /******************************************************************************/
4351 /*                                                                            */
4352 /*                           Reset and Clock Control                          */
4353 /*                                                                            */
4354 /******************************************************************************/
4355 
4356 #define RCC_HSI48_SUPPORT
4357 /********************  Bit definition for RCC_CR register  *****************/
4358 #define RCC_CR_SYSDIV_Pos                (2U)
4359 #define RCC_CR_SYSDIV_Msk                (0x7UL << RCC_CR_SYSDIV_Pos)          /*!< 0x0000001C */
4360 #define RCC_CR_SYSDIV                    RCC_CR_SYSDIV_Msk                     /*!< Clock division factor for system clock */
4361 #define RCC_CR_SYSDIV_0                  (0x1UL << RCC_CR_SYSDIV_Pos)          /*!< 0x00000004 */
4362 #define RCC_CR_SYSDIV_1                  (0x2UL << RCC_CR_SYSDIV_Pos)          /*!< 0x00000008 */
4363 #define RCC_CR_SYSDIV_2                  (0x4UL << RCC_CR_SYSDIV_Pos)          /*!< 0x00000010 */
4364 #define RCC_CR_HSIKERDIV_Pos             (5U)
4365 #define RCC_CR_HSIKERDIV_Msk             (0x7UL << RCC_CR_HSIKERDIV_Pos)       /*!< 0x000000E0 */
4366 #define RCC_CR_HSIKERDIV                 RCC_CR_HSIKERDIV_Msk                  /*!< HSI48 clock division factor for HSI kernel clocks inputs */
4367 #define RCC_CR_HSIKERDIV_0               (0x1UL << RCC_CR_HSIKERDIV_Pos)       /*!< 0x00000020 */
4368 #define RCC_CR_HSIKERDIV_1               (0x2UL << RCC_CR_HSIKERDIV_Pos)       /*!< 0x00000040 */
4369 #define RCC_CR_HSIKERDIV_2               (0x4UL << RCC_CR_HSIKERDIV_Pos)       /*!< 0x00000080 */
4370 #define RCC_CR_HSION_Pos                 (8U)
4371 #define RCC_CR_HSION_Msk                 (0x1UL << RCC_CR_HSION_Pos)           /*!< 0x00000100 */
4372 #define RCC_CR_HSION                     RCC_CR_HSION_Msk                      /*!< Internal High Speed clock enable */
4373 #define RCC_CR_HSIKERON_Pos              (9U)
4374 #define RCC_CR_HSIKERON_Msk              (0x1UL << RCC_CR_HSIKERON_Pos)        /*!< 0x00000200 */
4375 #define RCC_CR_HSIKERON                  RCC_CR_HSIKERON_Msk                   /*!< Internal High Speed clock enable for some IPs Kernel */
4376 #define RCC_CR_HSIRDY_Pos                (10U)
4377 #define RCC_CR_HSIRDY_Msk                (0x1UL << RCC_CR_HSIRDY_Pos)          /*!< 0x00000400 */
4378 #define RCC_CR_HSIRDY                    RCC_CR_HSIRDY_Msk                     /*!< Internal High Speed clock ready flag */
4379 #define RCC_CR_HSIDIV_Pos                (11U)
4380 #define RCC_CR_HSIDIV_Msk                (0x7UL << RCC_CR_HSIDIV_Pos)          /*!< 0x00003800 */
4381 #define RCC_CR_HSIDIV                    RCC_CR_HSIDIV_Msk                     /*!< HSIDIV[13:11] Internal High Speed clock division factor */
4382 #define RCC_CR_HSIDIV_0                  (0x1UL << RCC_CR_HSIDIV_Pos)          /*!< 0x00000800 */
4383 #define RCC_CR_HSIDIV_1                  (0x2UL << RCC_CR_HSIDIV_Pos)          /*!< 0x00001000 */
4384 #define RCC_CR_HSIDIV_2                  (0x4UL << RCC_CR_HSIDIV_Pos)          /*!< 0x00002000 */
4385 #define RCC_CR_HSEON_Pos                 (16U)
4386 #define RCC_CR_HSEON_Msk                 (0x1UL << RCC_CR_HSEON_Pos)           /*!< 0x00010000 */
4387 #define RCC_CR_HSEON                     RCC_CR_HSEON_Msk                      /*!< External High Speed clock enable */
4388 #define RCC_CR_HSERDY_Pos                (17U)
4389 #define RCC_CR_HSERDY_Msk                (0x1UL << RCC_CR_HSERDY_Pos)          /*!< 0x00020000 */
4390 #define RCC_CR_HSERDY                    RCC_CR_HSERDY_Msk                     /*!< External High Speed clock ready */
4391 #define RCC_CR_HSEBYP_Pos                (18U)
4392 #define RCC_CR_HSEBYP_Msk                (0x1UL << RCC_CR_HSEBYP_Pos)          /*!< 0x00040000 */
4393 #define RCC_CR_HSEBYP                    RCC_CR_HSEBYP_Msk                     /*!< External High Speed clock Bypass */
4394 #define RCC_CR_CSSON_Pos                 (19U)
4395 #define RCC_CR_CSSON_Msk                 (0x1UL << RCC_CR_CSSON_Pos)           /*!< 0x00080000 */
4396 #define RCC_CR_CSSON                     RCC_CR_CSSON_Msk                      /*!< HSE Clock Security System enable */
4397 #define RCC_CR_HSIUSB48ON_Pos            (22U)
4398 #define RCC_CR_HSIUSB48ON_Msk            (0x1UL << RCC_CR_HSIUSB48ON_Pos)      /*!< 0x004000000 */
4399 #define RCC_CR_HSIUSB48ON                RCC_CR_HSIUSB48ON_Msk                 /*!< HSI USB 48 clock enable */
4400 #define RCC_CR_HSIUSB48RDY_Pos           (23U)
4401 #define RCC_CR_HSIUSB48RDY_Msk           (0x1UL << RCC_CR_HSIUSB48RDY_Pos)     /*!< 0x00800000 */
4402 #define RCC_CR_HSIUSB48RDY               RCC_CR_HSIUSB48RDY_Msk                /*!< HSI USB 48 clock ready */
4403 
4404 /********************  Bit definition for RCC_ICSCR register  ***************/
4405 /*!< HSICAL configuration */
4406 #define RCC_ICSCR_HSICAL_Pos             (0U)
4407 #define RCC_ICSCR_HSICAL_Msk             (0xFFUL << RCC_ICSCR_HSICAL_Pos)      /*!< 0x000000FF */
4408 #define RCC_ICSCR_HSICAL                 RCC_ICSCR_HSICAL_Msk                  /*!< HSICAL[7:0] bits */
4409 #define RCC_ICSCR_HSICAL_0               (0x01UL << RCC_ICSCR_HSICAL_Pos)      /*!< 0x00000001 */
4410 #define RCC_ICSCR_HSICAL_1               (0x02UL << RCC_ICSCR_HSICAL_Pos)      /*!< 0x00000002 */
4411 #define RCC_ICSCR_HSICAL_2               (0x04UL << RCC_ICSCR_HSICAL_Pos)      /*!< 0x00000004 */
4412 #define RCC_ICSCR_HSICAL_3               (0x08UL << RCC_ICSCR_HSICAL_Pos)      /*!< 0x00000008 */
4413 #define RCC_ICSCR_HSICAL_4               (0x10UL << RCC_ICSCR_HSICAL_Pos)      /*!< 0x00000010 */
4414 #define RCC_ICSCR_HSICAL_5               (0x20UL << RCC_ICSCR_HSICAL_Pos)      /*!< 0x00000020 */
4415 #define RCC_ICSCR_HSICAL_6               (0x40UL << RCC_ICSCR_HSICAL_Pos)      /*!< 0x00000040 */
4416 #define RCC_ICSCR_HSICAL_7               (0x80UL << RCC_ICSCR_HSICAL_Pos)      /*!< 0x00000080 */
4417 
4418 /*!< HSITRIM configuration */
4419 #define RCC_ICSCR_HSITRIM_Pos            (8U)
4420 #define RCC_ICSCR_HSITRIM_Msk            (0x7FUL << RCC_ICSCR_HSITRIM_Pos)     /*!< 0x00007F00 */
4421 #define RCC_ICSCR_HSITRIM                RCC_ICSCR_HSITRIM_Msk                 /*!< HSITRIM[14:8] bits */
4422 #define RCC_ICSCR_HSITRIM_0              (0x01UL << RCC_ICSCR_HSITRIM_Pos)     /*!< 0x00000100 */
4423 #define RCC_ICSCR_HSITRIM_1              (0x02UL << RCC_ICSCR_HSITRIM_Pos)     /*!< 0x00000200 */
4424 #define RCC_ICSCR_HSITRIM_2              (0x04UL << RCC_ICSCR_HSITRIM_Pos)     /*!< 0x00000400 */
4425 #define RCC_ICSCR_HSITRIM_3              (0x08UL << RCC_ICSCR_HSITRIM_Pos)     /*!< 0x00000800 */
4426 #define RCC_ICSCR_HSITRIM_4              (0x10UL << RCC_ICSCR_HSITRIM_Pos)     /*!< 0x00001000 */
4427 #define RCC_ICSCR_HSITRIM_5              (0x20UL << RCC_ICSCR_HSITRIM_Pos)     /*!< 0x00002000 */
4428 #define RCC_ICSCR_HSITRIM_6              (0x40UL << RCC_ICSCR_HSITRIM_Pos)     /*!< 0x00004000 */
4429 
4430 /********************  Bit definition for RCC_CFGR register  ***************/
4431 /*!< SW configuration */
4432 #define RCC_CFGR_SW_Pos                (0U)
4433 #define RCC_CFGR_SW_Msk                (0x7UL << RCC_CFGR_SW_Pos)              /*!< 0x00000007 */
4434 #define RCC_CFGR_SW                    RCC_CFGR_SW_Msk                         /*!< SW[2:0] bits (System clock Switch) */
4435 #define RCC_CFGR_SW_0                  (0x1UL << RCC_CFGR_SW_Pos)              /*!< 0x00000001 */
4436 #define RCC_CFGR_SW_1                  (0x2UL << RCC_CFGR_SW_Pos)              /*!< 0x00000002 */
4437 #define RCC_CFGR_SW_2                  (0x4UL << RCC_CFGR_SW_Pos)              /*!< 0x00000004 */
4438 
4439 /*!< SWS configuration */
4440 #define RCC_CFGR_SWS_Pos               (3U)
4441 #define RCC_CFGR_SWS_Msk               (0x7UL << RCC_CFGR_SWS_Pos)             /*!< 0x00000038 */
4442 #define RCC_CFGR_SWS                   RCC_CFGR_SWS_Msk                        /*!< SWS[2:0] bits (System Clock Switch Status) */
4443 #define RCC_CFGR_SWS_0                 (0x1UL << RCC_CFGR_SWS_Pos)             /*!< 0x00000008 */
4444 #define RCC_CFGR_SWS_1                 (0x2UL << RCC_CFGR_SWS_Pos)             /*!< 0x00000010 */
4445 #define RCC_CFGR_SWS_2                 (0x4UL << RCC_CFGR_SWS_Pos)             /*!< 0x00000020 */
4446 
4447 #define RCC_CFGR_SWS_HSI               (0UL)                                   /*!< HSI used as system clock */
4448 #define RCC_CFGR_SWS_HSE               (0x00000008UL)                          /*!< HSE used as system clock */
4449 #define RCC_CFGR_SWS_HSI48             (0x00000010UL)                          /*!< HSI48 used as system clock */
4450 #define RCC_CFGR_SWS_LSI               (0x00000018UL)                          /*!< LSI used as system clock */
4451 #define RCC_CFGR_SWS_LSE               (0x00000020UL)                          /*!< LSE used as system clock */
4452 
4453 /*!< HPRE configuration */
4454 #define RCC_CFGR_HPRE_Pos              (8U)
4455 #define RCC_CFGR_HPRE_Msk              (0xFUL << RCC_CFGR_HPRE_Pos)            /*!< 0x00000F00 */
4456 #define RCC_CFGR_HPRE                  RCC_CFGR_HPRE_Msk                       /*!< HPRE[3:0] bits (AHB prescaler) */
4457 #define RCC_CFGR_HPRE_0                (0x1UL << RCC_CFGR_HPRE_Pos)            /*!< 0x00000100 */
4458 #define RCC_CFGR_HPRE_1                (0x2UL << RCC_CFGR_HPRE_Pos)            /*!< 0x00000200 */
4459 #define RCC_CFGR_HPRE_2                (0x4UL << RCC_CFGR_HPRE_Pos)            /*!< 0x00000400 */
4460 #define RCC_CFGR_HPRE_3                (0x8UL << RCC_CFGR_HPRE_Pos)            /*!< 0x00000800 */
4461 
4462 /*!< PPRE configuration */
4463 #define RCC_CFGR_PPRE_Pos              (12U)
4464 #define RCC_CFGR_PPRE_Msk              (0x7UL << RCC_CFGR_PPRE_Pos)            /*!< 0x00007000 */
4465 #define RCC_CFGR_PPRE                  RCC_CFGR_PPRE_Msk                       /*!< PRE1[2:0] bits (APB prescaler) */
4466 #define RCC_CFGR_PPRE_0                (0x1UL << RCC_CFGR_PPRE_Pos)            /*!< 0x00001000 */
4467 #define RCC_CFGR_PPRE_1                (0x2UL << RCC_CFGR_PPRE_Pos)            /*!< 0x00002000 */
4468 #define RCC_CFGR_PPRE_2                (0x4UL << RCC_CFGR_PPRE_Pos)            /*!< 0x00004000 */
4469 
4470 /*!< MCO2SEL configuration */
4471 #define RCC_CFGR_MCO2SEL_Pos           (16U)
4472 #define RCC_CFGR_MCO2SEL_Msk           (0xFUL << RCC_CFGR_MCO2SEL_Pos)         /*!< 0x000F0000 */
4473 #define RCC_CFGR_MCO2SEL               RCC_CFGR_MCO2SEL_Msk                    /*!< MCO2SEL [3:0] bits (Clock output selection) */
4474 #define RCC_CFGR_MCO2SEL_0             (0x1UL << RCC_CFGR_MCO2SEL_Pos)         /*!< 0x00010000 */
4475 #define RCC_CFGR_MCO2SEL_1             (0x2UL << RCC_CFGR_MCO2SEL_Pos)         /*!< 0x00020000 */
4476 #define RCC_CFGR_MCO2SEL_2             (0x4UL << RCC_CFGR_MCO2SEL_Pos)         /*!< 0x00040000 */
4477 #define RCC_CFGR_MCO2SEL_3             (0x8UL << RCC_CFGR_MCO2SEL_Pos)         /*!< 0x00080000 */
4478 
4479 /*!< MCO2 Prescaler configuration */
4480 #define RCC_CFGR_MCO2PRE_Pos           (20U)
4481 #define RCC_CFGR_MCO2PRE_Msk           (0xFUL << RCC_CFGR_MCO2PRE_Pos)         /*!< 0x00800000 */
4482 #define RCC_CFGR_MCO2PRE               RCC_CFGR_MCO2PRE_Msk                    /*!< MCO prescaler [3:0] */
4483 #define RCC_CFGR_MCO2PRE_0             (0x1UL << RCC_CFGR_MCO2PRE_Pos)         /*!< 0x00100000 */
4484 #define RCC_CFGR_MCO2PRE_1             (0x2UL << RCC_CFGR_MCO2PRE_Pos)         /*!< 0x00200000 */
4485 #define RCC_CFGR_MCO2PRE_2             (0x4UL << RCC_CFGR_MCO2PRE_Pos)         /*!< 0x00400000 */
4486 #define RCC_CFGR_MCO2PRE_3             (0x8UL << RCC_CFGR_MCO2PRE_Pos)         /*!< 0x80000000 */
4487 
4488 /*!< MCOSEL configuration */
4489 #define RCC_CFGR_MCOSEL_Pos            (24U)
4490 #define RCC_CFGR_MCOSEL_Msk            (0xFUL << RCC_CFGR_MCOSEL_Pos)          /*!< 0x0F000000 */
4491 #define RCC_CFGR_MCOSEL                RCC_CFGR_MCOSEL_Msk                     /*!< MCOSEL [3:0] bits (Clock output selection) */
4492 #define RCC_CFGR_MCOSEL_0              (0x1UL << RCC_CFGR_MCOSEL_Pos)          /*!< 0x01000000 */
4493 #define RCC_CFGR_MCOSEL_1              (0x2UL << RCC_CFGR_MCOSEL_Pos)          /*!< 0x02000000 */
4494 #define RCC_CFGR_MCOSEL_2              (0x4UL << RCC_CFGR_MCOSEL_Pos)          /*!< 0x04000000 */
4495 #define RCC_CFGR_MCOSEL_3              (0x8UL << RCC_CFGR_MCOSEL_Pos)          /*!< 0x08000000 */
4496 
4497 /*!< MCO Prescaler configuration */
4498 #define RCC_CFGR_MCOPRE_Pos            (28U)
4499 #define RCC_CFGR_MCOPRE_Msk            (0xFUL << RCC_CFGR_MCOPRE_Pos)          /*!< 0x80000000 */
4500 #define RCC_CFGR_MCOPRE                RCC_CFGR_MCOPRE_Msk                     /*!< MCO prescaler [3:0] */
4501 #define RCC_CFGR_MCOPRE_0              (0x1UL << RCC_CFGR_MCOPRE_Pos)          /*!< 0x10000000 */
4502 #define RCC_CFGR_MCOPRE_1              (0x2UL << RCC_CFGR_MCOPRE_Pos)          /*!< 0x20000000 */
4503 #define RCC_CFGR_MCOPRE_2              (0x4UL << RCC_CFGR_MCOPRE_Pos)          /*!< 0x40000000 */
4504 #define RCC_CFGR_MCOPRE_3              (0x8UL << RCC_CFGR_MCOPRE_Pos)          /*!< 0x80000000 */
4505 
4506 /********************  Bit definition for RCC_CRRCR register  ******************/
4507 /*!< RC48CAL configuration */
4508 #define RCC_CRRCR_HSIUSB48CAL_Pos      (0U)
4509 #define RCC_CRRCR_HSIUSB48CAL_Msk      (0x1FFUL << RCC_CRRCR_HSIUSB48CAL_Pos)  /*!< 0x000001FF */
4510 #define RCC_CRRCR_HSIUSB48CAL          RCC_CRRCR_HSIUSB48CAL_Msk               /*!< HSIUSB48CAL[8:0] bits */
4511 #define RCC_CRRCR_HSIUSB48CAL_0        (0x01UL << RCC_CRRCR_HSIUSB48CAL_Pos)   /*!< 0x00000001 */
4512 #define RCC_CRRCR_HSIUSB48CAL_1        (0x02UL << RCC_CRRCR_HSIUSB48CAL_Pos)   /*!< 0x00000002 */
4513 #define RCC_CRRCR_HSIUSB48CAL_2        (0x04UL << RCC_CRRCR_HSIUSB48CAL_Pos)   /*!< 0x00000004 */
4514 #define RCC_CRRCR_HSIUSB48CAL_3        (0x08UL << RCC_CRRCR_HSIUSB48CAL_Pos)   /*!< 0x00000008 */
4515 #define RCC_CRRCR_HSIUSB48CAL_4        (0x10UL << RCC_CRRCR_HSIUSB48CAL_Pos)   /*!< 0x00000010 */
4516 #define RCC_CRRCR_HSIUSB48CAL_5        (0x20UL << RCC_CRRCR_HSIUSB48CAL_Pos)   /*!< 0x00000020 */
4517 #define RCC_CRRCR_HSIUSB48CAL_6        (0x40UL << RCC_CRRCR_HSIUSB48CAL_Pos)   /*!< 0x00000040 */
4518 #define RCC_CRRCR_HSIUSB48CAL_7        (0x80UL << RCC_CRRCR_HSIUSB48CAL_Pos)   /*!< 0x00000080 */
4519 #define RCC_CRRCR_HSIUSB48CAL_8        (0x100UL << RCC_CRRCR_HSIUSB48CAL_Pos)  /*!< 0x00000100 */
4520 /********************  Bit definition for RCC_CIER register  ******************/
4521 #define RCC_CIER_LSIRDYIE_Pos            (0U)
4522 #define RCC_CIER_LSIRDYIE_Msk            (0x1UL << RCC_CIER_LSIRDYIE_Pos)      /*!< 0x00000001 */
4523 #define RCC_CIER_LSIRDYIE                RCC_CIER_LSIRDYIE_Msk
4524 #define RCC_CIER_LSERDYIE_Pos            (1U)
4525 #define RCC_CIER_LSERDYIE_Msk            (0x1UL << RCC_CIER_LSERDYIE_Pos)      /*!< 0x00000002 */
4526 #define RCC_CIER_LSERDYIE                RCC_CIER_LSERDYIE_Msk
4527 #define RCC_CIER_HSIUSB48RDYIE_Pos       (2U)
4528 #define RCC_CIER_HSIUSB48RDYIE_Msk       (0x1UL << RCC_CIER_HSIUSB48RDYIE_Pos) /*!< 0x00000004 */
4529 #define RCC_CIER_HSIUSB48RDYIE           RCC_CIER_HSIUSB48RDYIE_Msk
4530 #define RCC_CIER_HSIRDYIE_Pos            (3U)
4531 #define RCC_CIER_HSIRDYIE_Msk            (0x1UL << RCC_CIER_HSIRDYIE_Pos)      /*!< 0x00000008 */
4532 #define RCC_CIER_HSIRDYIE                RCC_CIER_HSIRDYIE_Msk
4533 #define RCC_CIER_HSERDYIE_Pos            (4U)
4534 #define RCC_CIER_HSERDYIE_Msk            (0x1UL << RCC_CIER_HSERDYIE_Pos)      /*!< 0x00000010 */
4535 #define RCC_CIER_HSERDYIE                RCC_CIER_HSERDYIE_Msk
4536 
4537 /********************  Bit definition for RCC_CIFR register  ******************/
4538 #define RCC_CIFR_LSIRDYF_Pos             (0U)
4539 #define RCC_CIFR_LSIRDYF_Msk             (0x1UL << RCC_CIFR_LSIRDYF_Pos)       /*!< 0x00000001 */
4540 #define RCC_CIFR_LSIRDYF                 RCC_CIFR_LSIRDYF_Msk
4541 #define RCC_CIFR_LSERDYF_Pos             (1U)
4542 #define RCC_CIFR_LSERDYF_Msk             (0x1UL << RCC_CIFR_LSERDYF_Pos)       /*!< 0x00000002 */
4543 #define RCC_CIFR_LSERDYF                 RCC_CIFR_LSERDYF_Msk
4544 #define RCC_CIFR_HSIUSB48RDYF_Pos        (2U)
4545 #define RCC_CIFR_HSIUSB48RDYF_Msk        (0x1UL << RCC_CIFR_HSIUSB48RDYF_Pos)  /*!< 0x00000004 */
4546 #define RCC_CIFR_HSIUSB48RDYF            RCC_CIFR_HSIUSB48RDYF_Msk
4547 #define RCC_CIFR_HSIRDYF_Pos             (3U)
4548 #define RCC_CIFR_HSIRDYF_Msk             (0x1UL << RCC_CIFR_HSIRDYF_Pos)       /*!< 0x00000008 */
4549 #define RCC_CIFR_HSIRDYF                 RCC_CIFR_HSIRDYF_Msk
4550 #define RCC_CIFR_HSERDYF_Pos             (4U)
4551 #define RCC_CIFR_HSERDYF_Msk             (0x1UL << RCC_CIFR_HSERDYF_Pos)       /*!< 0x00000010 */
4552 #define RCC_CIFR_HSERDYF                 RCC_CIFR_HSERDYF_Msk
4553 #define RCC_CIFR_CSSF_Pos                (8U)
4554 #define RCC_CIFR_CSSF_Msk                (0x1UL << RCC_CIFR_CSSF_Pos)          /*!< 0x00000100 */
4555 #define RCC_CIFR_CSSF                    RCC_CIFR_CSSF_Msk
4556 #define RCC_CIFR_LSECSSF_Pos             (9U)
4557 #define RCC_CIFR_LSECSSF_Msk             (0x1UL << RCC_CIFR_LSECSSF_Pos)       /*!< 0x00000200 */
4558 #define RCC_CIFR_LSECSSF                 RCC_CIFR_LSECSSF_Msk
4559 
4560 /********************  Bit definition for RCC_CICR register  ******************/
4561 #define RCC_CICR_LSIRDYC_Pos             (0U)
4562 #define RCC_CICR_LSIRDYC_Msk             (0x1UL << RCC_CICR_LSIRDYC_Pos)       /*!< 0x00000001 */
4563 #define RCC_CICR_LSIRDYC                 RCC_CICR_LSIRDYC_Msk
4564 #define RCC_CICR_LSERDYC_Pos             (1U)
4565 #define RCC_CICR_LSERDYC_Msk             (0x1UL << RCC_CICR_LSERDYC_Pos)       /*!< 0x00000002 */
4566 #define RCC_CICR_LSERDYC                 RCC_CICR_LSERDYC_Msk
4567 #define RCC_CICR_HSIUSB48RDYC_Pos        (2U)
4568 #define RCC_CICR_HSIUSB48RDYC_Msk        (0x1UL << RCC_CICR_HSIUSB48RDYC_Pos)  /*!< 0x00000004 */
4569 #define RCC_CICR_HSIUSB48RDYC            RCC_CICR_HSIUSB48RDYC_Msk
4570 #define RCC_CICR_HSIRDYC_Pos             (3U)
4571 #define RCC_CICR_HSIRDYC_Msk             (0x1UL << RCC_CICR_HSIRDYC_Pos)       /*!< 0x00000008 */
4572 #define RCC_CICR_HSIRDYC                 RCC_CICR_HSIRDYC_Msk
4573 #define RCC_CICR_HSERDYC_Pos             (4U)
4574 #define RCC_CICR_HSERDYC_Msk             (0x1UL << RCC_CICR_HSERDYC_Pos)       /*!< 0x00000010 */
4575 #define RCC_CICR_HSERDYC                 RCC_CICR_HSERDYC_Msk
4576 #define RCC_CICR_CSSC_Pos                (8U)
4577 #define RCC_CICR_CSSC_Msk                (0x1UL << RCC_CICR_CSSC_Pos)          /*!< 0x00000100 */
4578 #define RCC_CICR_CSSC                    RCC_CICR_CSSC_Msk
4579 #define RCC_CICR_LSECSSC_Pos             (9U)
4580 #define RCC_CICR_LSECSSC_Msk             (0x1UL << RCC_CICR_LSECSSC_Pos)       /*!< 0x00000200 */
4581 #define RCC_CICR_LSECSSC                 RCC_CICR_LSECSSC_Msk
4582 
4583 /********************  Bit definition for RCC_IOPRSTR register  ****************/
4584 #define RCC_IOPRSTR_GPIOARST_Pos         (0U)
4585 #define RCC_IOPRSTR_GPIOARST_Msk         (0x1UL << RCC_IOPRSTR_GPIOARST_Pos)   /*!< 0x00000001 */
4586 #define RCC_IOPRSTR_GPIOARST             RCC_IOPRSTR_GPIOARST_Msk
4587 #define RCC_IOPRSTR_GPIOBRST_Pos         (1U)
4588 #define RCC_IOPRSTR_GPIOBRST_Msk         (0x1UL << RCC_IOPRSTR_GPIOBRST_Pos)   /*!< 0x00000002 */
4589 #define RCC_IOPRSTR_GPIOBRST             RCC_IOPRSTR_GPIOBRST_Msk
4590 #define RCC_IOPRSTR_GPIOCRST_Pos         (2U)
4591 #define RCC_IOPRSTR_GPIOCRST_Msk         (0x1UL << RCC_IOPRSTR_GPIOCRST_Pos)   /*!< 0x00000004 */
4592 #define RCC_IOPRSTR_GPIOCRST             RCC_IOPRSTR_GPIOCRST_Msk
4593 #define RCC_IOPRSTR_GPIODRST_Pos         (3U)
4594 #define RCC_IOPRSTR_GPIODRST_Msk         (0x1UL << RCC_IOPRSTR_GPIODRST_Pos)   /*!< 0x00000008 */
4595 #define RCC_IOPRSTR_GPIODRST             RCC_IOPRSTR_GPIODRST_Msk
4596 #define RCC_IOPRSTR_GPIOFRST_Pos         (5U)
4597 #define RCC_IOPRSTR_GPIOFRST_Msk         (0x1UL << RCC_IOPRSTR_GPIOFRST_Pos)   /*!< 0x00000020 */
4598 #define RCC_IOPRSTR_GPIOFRST             RCC_IOPRSTR_GPIOFRST_Msk
4599 
4600 /********************  Bit definition for RCC_AHBRSTR register  ***************/
4601 #define RCC_AHBRSTR_DMA1RST_Pos          (0U)
4602 #define RCC_AHBRSTR_DMA1RST_Msk          (0x1UL << RCC_AHBRSTR_DMA1RST_Pos)    /*!< 0x00000001 */
4603 #define RCC_AHBRSTR_DMA1RST              RCC_AHBRSTR_DMA1RST_Msk
4604 #define RCC_AHBRSTR_FLASHRST_Pos         (8U)
4605 #define RCC_AHBRSTR_FLASHRST_Msk         (0x1UL << RCC_AHBRSTR_FLASHRST_Pos)   /*!< 0x00000100 */
4606 #define RCC_AHBRSTR_FLASHRST             RCC_AHBRSTR_FLASHRST_Msk
4607 #define RCC_AHBRSTR_CRCRST_Pos           (12U)
4608 #define RCC_AHBRSTR_CRCRST_Msk           (0x1UL << RCC_AHBRSTR_CRCRST_Pos)     /*!< 0x00001000 */
4609 #define RCC_AHBRSTR_CRCRST               RCC_AHBRSTR_CRCRST_Msk
4610 
4611 /********************  Bit definition for RCC_APBRSTR1 register  **************/
4612 #define RCC_APBRSTR1_TIM2RST_Pos         (0U)
4613 #define RCC_APBRSTR1_TIM2RST_Msk         (0x1UL << RCC_APBRSTR1_TIM2RST_Pos)     /*!< 0x00000001 */
4614 #define RCC_APBRSTR1_TIM2RST             RCC_APBRSTR1_TIM2RST_Msk
4615 #define RCC_APBRSTR1_TIM3RST_Pos         (1U)
4616 #define RCC_APBRSTR1_TIM3RST_Msk         (0x1UL << RCC_APBRSTR1_TIM3RST_Pos)   /*!< 0x00000002 */
4617 #define RCC_APBRSTR1_TIM3RST             RCC_APBRSTR1_TIM3RST_Msk
4618 #define RCC_APBRSTR1_USBRST_Pos          (13U)
4619 #define RCC_APBRSTR1_USBRST_Msk          (0x1UL << RCC_APBRSTR1_USBRST_Pos)      /*!< 0x00000200 */
4620 #define RCC_APBRSTR1_USBRST              RCC_APBRSTR1_USBRST_Msk
4621 #define RCC_APBRSTR1_SPI2RST_Pos         (14U)
4622 #define RCC_APBRSTR1_SPI2RST_Msk         (0x1UL << RCC_APBRSTR1_SPI2RST_Pos)     /*!< 0x00004000 */
4623 #define RCC_APBRSTR1_SPI2RST             RCC_APBRSTR1_SPI2RST_Msk
4624 #define RCC_APBRSTR1_CRSRST_Pos          (16U)
4625 #define RCC_APBRSTR1_CRSRST_Msk          (0x1UL << RCC_APBRSTR1_CRSRST_Pos)      /*!< 0x00008000 */
4626 #define RCC_APBRSTR1_CRSRST              RCC_APBRSTR1_CRSRST_Msk
4627 #define RCC_APBRSTR1_USART2RST_Pos       (17U)
4628 #define RCC_APBRSTR1_USART2RST_Msk       (0x1UL << RCC_APBRSTR1_USART2RST_Pos) /*!< 0x00010000 */
4629 #define RCC_APBRSTR1_USART2RST           RCC_APBRSTR1_USART2RST_Msk
4630 #define RCC_APBRSTR1_I2C1RST_Pos         (21U)
4631 #define RCC_APBRSTR1_I2C1RST_Msk         (0x1UL << RCC_APBRSTR1_I2C1RST_Pos)    /*!< 0x00200000 */
4632 #define RCC_APBRSTR1_I2C1RST             RCC_APBRSTR1_I2C1RST_Msk
4633 #define RCC_APBRSTR1_I2C2RST_Pos         (22U)
4634 #define RCC_APBRSTR1_I2C2RST_Msk         (0x1UL << RCC_APBRSTR1_I2C2RST_Pos)     /*!< 0x00400000 */
4635 #define RCC_APBRSTR1_I2C2RST             RCC_APBRSTR1_I2C2RST_Msk
4636 #define RCC_APBRSTR1_DBGRST_Pos          (27U)
4637 #define RCC_APBRSTR1_DBGRST_Msk          (0x1UL << RCC_APBRSTR1_DBGRST_Pos)     /*!< 0x08000000 */
4638 #define RCC_APBRSTR1_DBGRST              RCC_APBRSTR1_DBGRST_Msk
4639 #define RCC_APBRSTR1_PWRRST_Pos          (28U)
4640 #define RCC_APBRSTR1_PWRRST_Msk          (0x1UL << RCC_APBRSTR1_PWRRST_Pos)     /*!< 0x10000000 */
4641 #define RCC_APBRSTR1_PWRRST              RCC_APBRSTR1_PWRRST_Msk
4642 
4643 /********************  Bit definition for RCC_APBRSTR2 register  **************/
4644 #define RCC_APBRSTR2_SYSCFGRST_Pos       (0U)
4645 #define RCC_APBRSTR2_SYSCFGRST_Msk       (0x1UL << RCC_APBRSTR2_SYSCFGRST_Pos)  /*!< 0x00000001 */
4646 #define RCC_APBRSTR2_SYSCFGRST           RCC_APBRSTR2_SYSCFGRST_Msk
4647 #define RCC_APBRSTR2_TIM1RST_Pos         (11U)
4648 #define RCC_APBRSTR2_TIM1RST_Msk         (0x1UL << RCC_APBRSTR2_TIM1RST_Pos)    /*!< 0x00000800 */
4649 #define RCC_APBRSTR2_TIM1RST             RCC_APBRSTR2_TIM1RST_Msk
4650 #define RCC_APBRSTR2_SPI1RST_Pos         (12U)
4651 #define RCC_APBRSTR2_SPI1RST_Msk         (0x1UL << RCC_APBRSTR2_SPI1RST_Pos)    /*!< 0x00001000 */
4652 #define RCC_APBRSTR2_SPI1RST             RCC_APBRSTR2_SPI1RST_Msk
4653 #define RCC_APBRSTR2_USART1RST_Pos       (14U)
4654 #define RCC_APBRSTR2_USART1RST_Msk       (0x1UL << RCC_APBRSTR2_USART1RST_Pos)  /*!< 0x00004000 */
4655 #define RCC_APBRSTR2_USART1RST           RCC_APBRSTR2_USART1RST_Msk
4656 #define RCC_APBRSTR2_TIM14RST_Pos        (15U)
4657 #define RCC_APBRSTR2_TIM14RST_Msk        (0x1UL << RCC_APBRSTR2_TIM14RST_Pos)   /*!< 0x00008000 */
4658 #define RCC_APBRSTR2_TIM14RST            RCC_APBRSTR2_TIM14RST_Msk
4659 #define RCC_APBRSTR2_TIM16RST_Pos        (17U)
4660 #define RCC_APBRSTR2_TIM16RST_Msk        (0x1UL << RCC_APBRSTR2_TIM16RST_Pos)   /*!< 0x00020000 */
4661 #define RCC_APBRSTR2_TIM16RST            RCC_APBRSTR2_TIM16RST_Msk
4662 #define RCC_APBRSTR2_TIM17RST_Pos        (18U)
4663 #define RCC_APBRSTR2_TIM17RST_Msk        (0x1UL << RCC_APBRSTR2_TIM17RST_Pos)   /*!< 0x00040000 */
4664 #define RCC_APBRSTR2_TIM17RST            RCC_APBRSTR2_TIM17RST_Msk
4665 #define RCC_APBRSTR2_ADCRST_Pos          (20U)
4666 #define RCC_APBRSTR2_ADCRST_Msk          (0x1UL << RCC_APBRSTR2_ADCRST_Pos)     /*!< 0x00100000 */
4667 #define RCC_APBRSTR2_ADCRST              RCC_APBRSTR2_ADCRST_Msk
4668 
4669 /********************  Bit definition for RCC_IOPENR register  ****************/
4670 #define RCC_IOPENR_GPIOAEN_Pos           (0U)
4671 #define RCC_IOPENR_GPIOAEN_Msk           (0x1UL << RCC_IOPENR_GPIOAEN_Pos)      /*!< 0x00000001 */
4672 #define RCC_IOPENR_GPIOAEN               RCC_IOPENR_GPIOAEN_Msk
4673 #define RCC_IOPENR_GPIOBEN_Pos           (1U)
4674 #define RCC_IOPENR_GPIOBEN_Msk           (0x1UL << RCC_IOPENR_GPIOBEN_Pos)      /*!< 0x00000002 */
4675 #define RCC_IOPENR_GPIOBEN               RCC_IOPENR_GPIOBEN_Msk
4676 #define RCC_IOPENR_GPIOCEN_Pos           (2U)
4677 #define RCC_IOPENR_GPIOCEN_Msk           (0x1UL << RCC_IOPENR_GPIOCEN_Pos)      /*!< 0x00000004 */
4678 #define RCC_IOPENR_GPIOCEN               RCC_IOPENR_GPIOCEN_Msk
4679 #define RCC_IOPENR_GPIODEN_Pos           (3U)
4680 #define RCC_IOPENR_GPIODEN_Msk           (0x1UL << RCC_IOPENR_GPIODEN_Pos)      /*!< 0x00000008 */
4681 #define RCC_IOPENR_GPIODEN               RCC_IOPENR_GPIODEN_Msk
4682 #define RCC_IOPENR_GPIOFEN_Pos           (5U)
4683 #define RCC_IOPENR_GPIOFEN_Msk           (0x1UL << RCC_IOPENR_GPIOFEN_Pos)      /*!< 0x00000020 */
4684 #define RCC_IOPENR_GPIOFEN               RCC_IOPENR_GPIOFEN_Msk
4685 
4686 /********************  Bit definition for RCC_AHBENR register  ****************/
4687 #define RCC_AHBENR_DMA1EN_Pos            (0U)
4688 #define RCC_AHBENR_DMA1EN_Msk            (0x1UL << RCC_AHBENR_DMA1EN_Pos)       /*!< 0x00000001 */
4689 #define RCC_AHBENR_DMA1EN                RCC_AHBENR_DMA1EN_Msk
4690 #define RCC_AHBENR_FLASHEN_Pos           (8U)
4691 #define RCC_AHBENR_FLASHEN_Msk           (0x1UL << RCC_AHBENR_FLASHEN_Pos)      /*!< 0x00000100 */
4692 #define RCC_AHBENR_FLASHEN               RCC_AHBENR_FLASHEN_Msk
4693 #define RCC_AHBENR_CRCEN_Pos             (12U)
4694 #define RCC_AHBENR_CRCEN_Msk             (0x1UL << RCC_AHBENR_CRCEN_Pos)        /*!< 0x00001000 */
4695 #define RCC_AHBENR_CRCEN                 RCC_AHBENR_CRCEN_Msk
4696 
4697 /********************  Bit definition for RCC_APBENR1 register  ***************/
4698 #define RCC_APBENR1_TIM2EN_Pos           (0U)
4699 #define RCC_APBENR1_TIM2EN_Msk           (0x1UL << RCC_APBENR1_TIM2EN_Pos)       /*!< 0x00000001 */
4700 #define RCC_APBENR1_TIM2EN               RCC_APBENR1_TIM2EN_Msk
4701 #define RCC_APBENR1_TIM3EN_Pos           (1U)
4702 #define RCC_APBENR1_TIM3EN_Msk           (0x1UL << RCC_APBENR1_TIM3EN_Pos)      /*!< 0x00000002 */
4703 #define RCC_APBENR1_TIM3EN               RCC_APBENR1_TIM3EN_Msk
4704 #define RCC_APBENR1_RTCAPBEN_Pos         (10U)
4705 #define RCC_APBENR1_RTCAPBEN_Msk         (0x1UL << RCC_APBENR1_RTCAPBEN_Pos)    /*!< 0x00000400 */
4706 #define RCC_APBENR1_RTCAPBEN             RCC_APBENR1_RTCAPBEN_Msk
4707 #define RCC_APBENR1_WWDGEN_Pos           (11U)
4708 #define RCC_APBENR1_WWDGEN_Msk           (0x1UL << RCC_APBENR1_WWDGEN_Pos)      /*!< 0x00000800 */
4709 #define RCC_APBENR1_WWDGEN               RCC_APBENR1_WWDGEN_Msk
4710 #define RCC_APBENR1_USBEN_Pos            (13U)
4711 #define RCC_APBENR1_USBEN_Msk            (0x1UL << RCC_APBENR1_USBEN_Pos)        /*!< 0x00002000 */
4712 #define RCC_APBENR1_USBEN                RCC_APBENR1_USBEN_Msk
4713 #define RCC_APBENR1_SPI2EN_Pos           (14U)
4714 #define RCC_APBENR1_SPI2EN_Msk           (0x1UL << RCC_APBENR1_SPI2EN_Pos)       /*!< 0x00004000 */
4715 #define RCC_APBENR1_SPI2EN               RCC_APBENR1_SPI2EN_Msk
4716 #define RCC_APBENR1_CRSEN_Pos            (16U)
4717 #define RCC_APBENR1_CRSEN_Msk            (0x1UL << RCC_APBENR1_CRSEN_Pos)        /*!< 0x00008000 */
4718 #define RCC_APBENR1_CRSEN                RCC_APBENR1_CRSEN_Msk
4719 #define RCC_APBENR1_USART2EN_Pos         (17U)
4720 #define RCC_APBENR1_USART2EN_Msk         (0x1UL << RCC_APBENR1_USART2EN_Pos)    /*!< 0x00010000 */
4721 #define RCC_APBENR1_USART2EN             RCC_APBENR1_USART2EN_Msk
4722 #define RCC_APBENR1_I2C1EN_Pos           (21U)
4723 #define RCC_APBENR1_I2C1EN_Msk           (0x1UL << RCC_APBENR1_I2C1EN_Pos)      /*!< 0x00200000 */
4724 #define RCC_APBENR1_I2C1EN               RCC_APBENR1_I2C1EN_Msk
4725 #define RCC_APBENR1_I2C2EN_Pos           (22U)
4726 #define RCC_APBENR1_I2C2EN_Msk           (0x1UL << RCC_APBENR1_I2C2EN_Pos)       /*!< 0x00400000 */
4727 #define RCC_APBENR1_I2C2EN               RCC_APBENR1_I2C2EN_Msk
4728 #define RCC_APBENR1_DBGEN_Pos            (27U)
4729 #define RCC_APBENR1_DBGEN_Msk            (0x1UL << RCC_APBENR1_DBGEN_Pos)       /*!< 0x08000000 */
4730 #define RCC_APBENR1_DBGEN                RCC_APBENR1_DBGEN_Msk
4731 #define RCC_APBENR1_PWREN_Pos            (28U)
4732 #define RCC_APBENR1_PWREN_Msk            (0x1UL << RCC_APBENR1_PWREN_Pos)       /*!< 0x10000000 */
4733 #define RCC_APBENR1_PWREN                RCC_APBENR1_PWREN_Msk
4734 
4735 /********************  Bit definition for RCC_APBENR2 register  **************/
4736 #define RCC_APBENR2_SYSCFGEN_Pos         (0U)
4737 #define RCC_APBENR2_SYSCFGEN_Msk         (0x1UL << RCC_APBENR2_SYSCFGEN_Pos)    /*!< 0x00000001 */
4738 #define RCC_APBENR2_SYSCFGEN             RCC_APBENR2_SYSCFGEN_Msk
4739 #define RCC_APBENR2_TIM1EN_Pos           (11U)
4740 #define RCC_APBENR2_TIM1EN_Msk           (0x1UL << RCC_APBENR2_TIM1EN_Pos)      /*!< 0x00000800 */
4741 #define RCC_APBENR2_TIM1EN               RCC_APBENR2_TIM1EN_Msk
4742 #define RCC_APBENR2_SPI1EN_Pos           (12U)
4743 #define RCC_APBENR2_SPI1EN_Msk           (0x1UL << RCC_APBENR2_SPI1EN_Pos)      /*!< 0x00001000 */
4744 #define RCC_APBENR2_SPI1EN               RCC_APBENR2_SPI1EN_Msk
4745 #define RCC_APBENR2_USART1EN_Pos         (14U)
4746 #define RCC_APBENR2_USART1EN_Msk         (0x1UL << RCC_APBENR2_USART1EN_Pos)    /*!< 0x00004000 */
4747 #define RCC_APBENR2_USART1EN             RCC_APBENR2_USART1EN_Msk
4748 #define RCC_APBENR2_TIM14EN_Pos          (15U)
4749 #define RCC_APBENR2_TIM14EN_Msk          (0x1UL << RCC_APBENR2_TIM14EN_Pos)     /*!< 0x00008000 */
4750 #define RCC_APBENR2_TIM14EN              RCC_APBENR2_TIM14EN_Msk
4751 #define RCC_APBENR2_TIM16EN_Pos          (17U)
4752 #define RCC_APBENR2_TIM16EN_Msk          (0x1UL << RCC_APBENR2_TIM16EN_Pos)     /*!< 0x00020000 */
4753 #define RCC_APBENR2_TIM16EN              RCC_APBENR2_TIM16EN_Msk
4754 #define RCC_APBENR2_TIM17EN_Pos          (18U)
4755 #define RCC_APBENR2_TIM17EN_Msk          (0x1UL << RCC_APBENR2_TIM17EN_Pos)     /*!< 0x00040000 */
4756 #define RCC_APBENR2_TIM17EN              RCC_APBENR2_TIM17EN_Msk
4757 #define RCC_APBENR2_ADCEN_Pos            (20U)
4758 #define RCC_APBENR2_ADCEN_Msk            (0x1UL << RCC_APBENR2_ADCEN_Pos)       /*!< 0x00100000 */
4759 #define RCC_APBENR2_ADCEN                RCC_APBENR2_ADCEN_Msk
4760 
4761 /********************  Bit definition for RCC_IOPSMENR register  *************/
4762 #define RCC_IOPSMENR_GPIOASMEN_Pos       (0U)
4763 #define RCC_IOPSMENR_GPIOASMEN_Msk       (0x1UL << RCC_IOPSMENR_GPIOASMEN_Pos)  /*!< 0x00000001 */
4764 #define RCC_IOPSMENR_GPIOASMEN           RCC_IOPSMENR_GPIOASMEN_Msk
4765 #define RCC_IOPSMENR_GPIOBSMEN_Pos       (1U)
4766 #define RCC_IOPSMENR_GPIOBSMEN_Msk       (0x1UL << RCC_IOPSMENR_GPIOBSMEN_Pos)  /*!< 0x00000002 */
4767 #define RCC_IOPSMENR_GPIOBSMEN           RCC_IOPSMENR_GPIOBSMEN_Msk
4768 #define RCC_IOPSMENR_GPIOCSMEN_Pos       (2U)
4769 #define RCC_IOPSMENR_GPIOCSMEN_Msk       (0x1UL << RCC_IOPSMENR_GPIOCSMEN_Pos)  /*!< 0x00000004 */
4770 #define RCC_IOPSMENR_GPIOCSMEN           RCC_IOPSMENR_GPIOCSMEN_Msk
4771 #define RCC_IOPSMENR_GPIODSMEN_Pos       (3U)
4772 #define RCC_IOPSMENR_GPIODSMEN_Msk       (0x1UL << RCC_IOPSMENR_GPIODSMEN_Pos)  /*!< 0x00000008 */
4773 #define RCC_IOPSMENR_GPIODSMEN           RCC_IOPSMENR_GPIODSMEN_Msk
4774 #define RCC_IOPSMENR_GPIOFSMEN_Pos       (5U)
4775 #define RCC_IOPSMENR_GPIOFSMEN_Msk       (0x1UL << RCC_IOPSMENR_GPIOFSMEN_Pos)  /*!< 0x00000020 */
4776 #define RCC_IOPSMENR_GPIOFSMEN           RCC_IOPSMENR_GPIOFSMEN_Msk
4777 
4778 /********************  Bit definition for RCC_AHBSMENR register  *************/
4779 #define RCC_AHBSMENR_DMA1SMEN_Pos        (0U)
4780 #define RCC_AHBSMENR_DMA1SMEN_Msk        (0x1UL << RCC_AHBSMENR_DMA1SMEN_Pos)   /*!< 0x00000001 */
4781 #define RCC_AHBSMENR_DMA1SMEN            RCC_AHBSMENR_DMA1SMEN_Msk
4782 #define RCC_AHBSMENR_FLASHSMEN_Pos       (8U)
4783 #define RCC_AHBSMENR_FLASHSMEN_Msk       (0x1UL << RCC_AHBSMENR_FLASHSMEN_Pos)  /*!< 0x00000100 */
4784 #define RCC_AHBSMENR_FLASHSMEN           RCC_AHBSMENR_FLASHSMEN_Msk
4785 #define RCC_AHBSMENR_SRAMSMEN_Pos        (9U)
4786 #define RCC_AHBSMENR_SRAMSMEN_Msk        (0x1UL << RCC_AHBSMENR_SRAMSMEN_Pos)   /*!< 0x00000200 */
4787 #define RCC_AHBSMENR_SRAMSMEN            RCC_AHBSMENR_SRAMSMEN_Msk
4788 #define RCC_AHBSMENR_CRCSMEN_Pos         (12U)
4789 #define RCC_AHBSMENR_CRCSMEN_Msk         (0x1UL << RCC_AHBSMENR_CRCSMEN_Pos)    /*!< 0x00001000 */
4790 #define RCC_AHBSMENR_CRCSMEN             RCC_AHBSMENR_CRCSMEN_Msk
4791 
4792 /********************  Bit definition for RCC_APBSMENR1 register  *************/
4793 #define RCC_APBSMENR1_TIM2SMEN_Pos       (0U)
4794 #define RCC_APBSMENR1_TIM2SMEN_Msk       (0x1UL << RCC_APBSMENR1_TIM2SMEN_Pos)   /*!< 0x00000001 */
4795 #define RCC_APBSMENR1_TIM2SMEN           RCC_APBSMENR1_TIM2SMEN_Msk
4796 #define RCC_APBSMENR1_TIM3SMEN_Pos       (1U)
4797 #define RCC_APBSMENR1_TIM3SMEN_Msk       (0x1UL << RCC_APBSMENR1_TIM3SMEN_Pos)  /*!< 0x00000002 */
4798 #define RCC_APBSMENR1_TIM3SMEN           RCC_APBSMENR1_TIM3SMEN_Msk
4799 #define RCC_APBSMENR1_RTCAPBSMEN_Pos     (10U)
4800 #define RCC_APBSMENR1_RTCAPBSMEN_Msk     (0x1UL << RCC_APBSMENR1_RTCAPBSMEN_Pos) /*!< 0x00000400 */
4801 #define RCC_APBSMENR1_RTCAPBSMEN         RCC_APBSMENR1_RTCAPBSMEN_Msk
4802 #define RCC_APBSMENR1_WWDGSMEN_Pos       (11U)
4803 #define RCC_APBSMENR1_WWDGSMEN_Msk       (0x1UL << RCC_APBSMENR1_WWDGSMEN_Pos)  /*!< 0x00000800 */
4804 #define RCC_APBSMENR1_WWDGSMEN           RCC_APBSMENR1_WWDGSMEN_Msk
4805 #define RCC_APBSMENR1_USBSMEN_Pos        (13U)
4806 #define RCC_APBSMENR1_USBSMEN_Msk        (0x1UL << RCC_APBSMENR1_USBSMEN_Pos)    /*!< 0x00000200 */
4807 #define RCC_APBSMENR1_USBSMEN            RCC_APBSMENR1_USBSMEN_Msk
4808 #define RCC_APBSMENR1_SPI2SMEN_Pos       (14U)
4809 #define RCC_APBSMENR1_SPI2SMEN_Msk       (0x1UL << RCC_APBSMENR1_SPI2SMEN_Pos)   /*!< 0x00004000 */
4810 #define RCC_APBSMENR1_SPI2SMEN           RCC_APBSMENR1_SPI2SMEN_Msk
4811 #define RCC_APBSMENR1_CRSSMEN_Pos        (16U)
4812 #define RCC_APBSMENR1_CRSSMEN_Msk        (0x1UL << RCC_APBSMENR1_CRSSMEN_Pos)    /*!< 0x00008000 */
4813 #define RCC_APBSMENR1_CRSSMEN            RCC_APBSMENR1_CRSSMEN_Msk
4814 #define RCC_APBSMENR1_USART2SMEN_Pos     (17U)
4815 #define RCC_APBSMENR1_USART2SMEN_Msk     (0x1UL << RCC_APBSMENR1_USART2SMEN_Pos) /*!< 0x00010000 */
4816 #define RCC_APBSMENR1_USART2SMEN         RCC_APBSMENR1_USART2SMEN_Msk
4817 #define RCC_APBSMENR1_I2C1SMEN_Pos       (21U)
4818 #define RCC_APBSMENR1_I2C1SMEN_Msk       (0x1UL << RCC_APBSMENR1_I2C1SMEN_Pos)   /*!< 0x00200000 */
4819 #define RCC_APBSMENR1_I2C1SMEN           RCC_APBSMENR1_I2C1SMEN_Msk
4820 #define RCC_APBSMENR1_I2C2SMEN_Pos       (22U)
4821 #define RCC_APBSMENR1_I2C2SMEN_Msk       (0x1UL << RCC_APBSMENR1_I2C2SMEN_Pos)   /*!< 0x00400000 */
4822 #define RCC_APBSMENR1_I2C2SMEN           RCC_APBSMENR1_I2C2SMEN_Msk
4823 #define RCC_APBSMENR1_DBGSMEN_Pos        (27U)
4824 #define RCC_APBSMENR1_DBGSMEN_Msk        (0x1UL << RCC_APBSMENR1_DBGSMEN_Pos)    /*!< 0x08000000 */
4825 #define RCC_APBSMENR1_DBGSMEN            RCC_APBSMENR1_DBGSMEN_Msk
4826 #define RCC_APBSMENR1_PWRSMEN_Pos        (28U)
4827 #define RCC_APBSMENR1_PWRSMEN_Msk        (0x1UL << RCC_APBSMENR1_PWRSMEN_Pos)    /*!< 0x10000000 */
4828 #define RCC_APBSMENR1_PWRSMEN            RCC_APBSMENR1_PWRSMEN_Msk
4829 
4830 /********************  Bit definition for RCC_APBSMENR2 register  *************/
4831 #define RCC_APBSMENR2_SYSCFGSMEN_Pos     (0U)
4832 #define RCC_APBSMENR2_SYSCFGSMEN_Msk     (0x1UL << RCC_APBSMENR2_SYSCFGSMEN_Pos) /*!< 0x00000001 */
4833 #define RCC_APBSMENR2_SYSCFGSMEN         RCC_APBSMENR2_SYSCFGSMEN_Msk
4834 #define RCC_APBSMENR2_TIM1SMEN_Pos       (11U)
4835 #define RCC_APBSMENR2_TIM1SMEN_Msk       (0x1UL << RCC_APBSMENR2_TIM1SMEN_Pos)  /*!< 0x00000800 */
4836 #define RCC_APBSMENR2_TIM1SMEN           RCC_APBSMENR2_TIM1SMEN_Msk
4837 #define RCC_APBSMENR2_SPI1SMEN_Pos       (12U)
4838 #define RCC_APBSMENR2_SPI1SMEN_Msk       (0x1UL << RCC_APBSMENR2_SPI1SMEN_Pos)  /*!< 0x00001000 */
4839 #define RCC_APBSMENR2_SPI1SMEN           RCC_APBSMENR2_SPI1SMEN_Msk
4840 #define RCC_APBSMENR2_USART1SMEN_Pos     (14U)
4841 #define RCC_APBSMENR2_USART1SMEN_Msk     (0x1UL << RCC_APBSMENR2_USART1SMEN_Pos) /*!< 0x00004000 */
4842 #define RCC_APBSMENR2_USART1SMEN         RCC_APBSMENR2_USART1SMEN_Msk
4843 #define RCC_APBSMENR2_TIM14SMEN_Pos      (15U)
4844 #define RCC_APBSMENR2_TIM14SMEN_Msk      (0x1UL << RCC_APBSMENR2_TIM14SMEN_Pos) /*!< 0x00008000 */
4845 #define RCC_APBSMENR2_TIM14SMEN          RCC_APBSMENR2_TIM14SMEN_Msk
4846 #define RCC_APBSMENR2_TIM16SMEN_Pos      (17U)
4847 #define RCC_APBSMENR2_TIM16SMEN_Msk      (0x1UL << RCC_APBSMENR2_TIM16SMEN_Pos) /*!< 0x00020000 */
4848 #define RCC_APBSMENR2_TIM16SMEN          RCC_APBSMENR2_TIM16SMEN_Msk
4849 #define RCC_APBSMENR2_TIM17SMEN_Pos      (18U)
4850 #define RCC_APBSMENR2_TIM17SMEN_Msk      (0x1UL << RCC_APBSMENR2_TIM17SMEN_Pos) /*!< 0x00040000 */
4851 #define RCC_APBSMENR2_TIM17SMEN          RCC_APBSMENR2_TIM17SMEN_Msk
4852 #define RCC_APBSMENR2_ADCSMEN_Pos        (20U)
4853 #define RCC_APBSMENR2_ADCSMEN_Msk        (0x1UL << RCC_APBSMENR2_ADCSMEN_Pos)   /*!< 0x00100000 */
4854 #define RCC_APBSMENR2_ADCSMEN            RCC_APBSMENR2_ADCSMEN_Msk
4855 
4856 /********************  Bit definition for RCC_CCIPR register  ******************/
4857 #define RCC_CCIPR_USART1SEL_Pos          (0U)
4858 #define RCC_CCIPR_USART1SEL_Msk          (0x3UL << RCC_CCIPR_USART1SEL_Pos)     /*!< 0x00000003 */
4859 #define RCC_CCIPR_USART1SEL              RCC_CCIPR_USART1SEL_Msk
4860 #define RCC_CCIPR_USART1SEL_0            (0x1UL << RCC_CCIPR_USART1SEL_Pos)     /*!< 0x00000001 */
4861 #define RCC_CCIPR_USART1SEL_1            (0x2UL << RCC_CCIPR_USART1SEL_Pos)     /*!< 0x00000002 */
4862 #define RCC_CCIPR_I2C1SEL_Pos            (12U)
4863 #define RCC_CCIPR_I2C1SEL_Msk            (0x3UL << RCC_CCIPR_I2C1SEL_Pos)       /*!< 0x00003000 */
4864 #define RCC_CCIPR_I2C1SEL                RCC_CCIPR_I2C1SEL_Msk
4865 #define RCC_CCIPR_I2C1SEL_0              (0x1UL << RCC_CCIPR_I2C1SEL_Pos)       /*!< 0x00001000 */
4866 #define RCC_CCIPR_I2C1SEL_1              (0x2UL << RCC_CCIPR_I2C1SEL_Pos)       /*!< 0x00002000 */
4867 #define RCC_CCIPR_I2S1SEL_Pos            (14U)
4868 #define RCC_CCIPR_I2S1SEL_Msk            (0x3UL << RCC_CCIPR_I2S1SEL_Pos)       /*!< 0x0000C000 */
4869 #define RCC_CCIPR_I2S1SEL                RCC_CCIPR_I2S1SEL_Msk
4870 #define RCC_CCIPR_I2S1SEL_0              (0x1UL << RCC_CCIPR_I2S1SEL_Pos)       /*!< 0x00004000 */
4871 #define RCC_CCIPR_I2S1SEL_1              (0x2UL << RCC_CCIPR_I2S1SEL_Pos)       /*!< 0x00008000 */
4872 #define RCC_CCIPR_ADCSEL_Pos             (30U)
4873 #define RCC_CCIPR_ADCSEL_Msk             (0x3UL << RCC_CCIPR_ADCSEL_Pos)        /*!< 0xC0000000 */
4874 #define RCC_CCIPR_ADCSEL                 RCC_CCIPR_ADCSEL_Msk
4875 #define RCC_CCIPR_ADCSEL_0               (0x1UL << RCC_CCIPR_ADCSEL_Pos)        /*!< 0x40000000 */
4876 #define RCC_CCIPR_ADCSEL_1               (0x2UL << RCC_CCIPR_ADCSEL_Pos)        /*!< 0x80000000 */
4877 
4878 /********************  Bit definition for RCC_CCIPR2 register  ******************/
4879 #define RCC_CCIPR2_USBSEL_Pos            (12U)
4880 #define RCC_CCIPR2_USBSEL_Msk            (0x1UL << RCC_CCIPR2_USBSEL_Pos)     /*!< 0x00001000 */
4881 #define RCC_CCIPR2_USBSEL                RCC_CCIPR2_USBSEL_Msk
4882 /********************  Bit definition for RCC_CSR1 register  ******************/
4883 #define RCC_CSR1_LSEON_Pos               (0U)
4884 #define RCC_CSR1_LSEON_Msk               (0x1UL << RCC_CSR1_LSEON_Pos)          /*!< 0x00000001 */
4885 #define RCC_CSR1_LSEON                   RCC_CSR1_LSEON_Msk
4886 #define RCC_CSR1_LSERDY_Pos              (1U)
4887 #define RCC_CSR1_LSERDY_Msk              (0x1UL << RCC_CSR1_LSERDY_Pos)         /*!< 0x00000002 */
4888 #define RCC_CSR1_LSERDY                  RCC_CSR1_LSERDY_Msk
4889 #define RCC_CSR1_LSEBYP_Pos              (2U)
4890 #define RCC_CSR1_LSEBYP_Msk              (0x1UL << RCC_CSR1_LSEBYP_Pos)         /*!< 0x00000004 */
4891 #define RCC_CSR1_LSEBYP                  RCC_CSR1_LSEBYP_Msk
4892 #define RCC_CSR1_LSEDRV_Pos              (3U)
4893 #define RCC_CSR1_LSEDRV_Msk              (0x3UL << RCC_CSR1_LSEDRV_Pos)         /*!< 0x00000018 */
4894 #define RCC_CSR1_LSEDRV                  RCC_CSR1_LSEDRV_Msk
4895 #define RCC_CSR1_LSEDRV_0                (0x1UL << RCC_CSR1_LSEDRV_Pos)         /*!< 0x00000008 */
4896 #define RCC_CSR1_LSEDRV_1                (0x2UL << RCC_CSR1_LSEDRV_Pos)         /*!< 0x00000010 */
4897 #define RCC_CSR1_LSECSSON_Pos            (5U)
4898 #define RCC_CSR1_LSECSSON_Msk            (0x1UL << RCC_CSR1_LSECSSON_Pos)       /*!< 0x00000020 */
4899 #define RCC_CSR1_LSECSSON                RCC_CSR1_LSECSSON_Msk
4900 #define RCC_CSR1_LSECSSD_Pos             (6U)
4901 #define RCC_CSR1_LSECSSD_Msk             (0x1UL << RCC_CSR1_LSECSSD_Pos)        /*!< 0x00000040 */
4902 #define RCC_CSR1_LSECSSD                 RCC_CSR1_LSECSSD_Msk
4903 #define RCC_CSR1_RTCSEL_Pos              (8U)
4904 #define RCC_CSR1_RTCSEL_Msk              (0x3UL << RCC_CSR1_RTCSEL_Pos)         /*!< 0x00000300 */
4905 #define RCC_CSR1_RTCSEL                  RCC_CSR1_RTCSEL_Msk
4906 #define RCC_CSR1_RTCSEL_0                (0x1UL << RCC_CSR1_RTCSEL_Pos)         /*!< 0x00000100 */
4907 #define RCC_CSR1_RTCSEL_1                (0x2UL << RCC_CSR1_RTCSEL_Pos)         /*!< 0x00000200 */
4908 #define RCC_CSR1_RTCEN_Pos               (15U)
4909 #define RCC_CSR1_RTCEN_Msk               (0x1UL << RCC_CSR1_RTCEN_Pos)          /*!< 0x00008000 */
4910 #define RCC_CSR1_RTCEN                   RCC_CSR1_RTCEN_Msk
4911 #define RCC_CSR1_RTCRST_Pos              (16U)
4912 #define RCC_CSR1_RTCRST_Msk              (0x1UL << RCC_CSR1_RTCRST_Pos)          /*!< 0x00010000 */
4913 #define RCC_CSR1_RTCRST                  RCC_CSR1_RTCRST_Msk
4914 #define RCC_CSR1_LSCOEN_Pos              (24U)
4915 #define RCC_CSR1_LSCOEN_Msk              (0x1UL << RCC_CSR1_LSCOEN_Pos)         /*!< 0x01000000 */
4916 #define RCC_CSR1_LSCOEN                  RCC_CSR1_LSCOEN_Msk
4917 #define RCC_CSR1_LSCOSEL_Pos             (25U)
4918 #define RCC_CSR1_LSCOSEL_Msk             (0x1UL << RCC_CSR1_LSCOSEL_Pos)        /*!< 0x02000000 */
4919 #define RCC_CSR1_LSCOSEL                 RCC_CSR1_LSCOSEL_Msk
4920 
4921 /********************  Bit definition for RCC_CSR2 register  *******************/
4922 #define RCC_CSR2_LSION_Pos               (0U)
4923 #define RCC_CSR2_LSION_Msk               (0x1UL << RCC_CSR2_LSION_Pos)           /*!< 0x00000001 */
4924 #define RCC_CSR2_LSION                   RCC_CSR2_LSION_Msk
4925 #define RCC_CSR2_LSIRDY_Pos              (1U)
4926 #define RCC_CSR2_LSIRDY_Msk              (0x1UL << RCC_CSR2_LSIRDY_Pos)          /*!< 0x00000002 */
4927 #define RCC_CSR2_LSIRDY                  RCC_CSR2_LSIRDY_Msk
4928 #define RCC_CSR2_RMVF_Pos                (23U)
4929 #define RCC_CSR2_RMVF_Msk                (0x1UL << RCC_CSR2_RMVF_Pos)            /*!< 0x00800000 */
4930 #define RCC_CSR2_RMVF                    RCC_CSR2_RMVF_Msk
4931 #define RCC_CSR2_OBLRSTF_Pos             (25U)
4932 #define RCC_CSR2_OBLRSTF_Msk             (0x1UL << RCC_CSR2_OBLRSTF_Pos)         /*!< 0x02000000 */
4933 #define RCC_CSR2_OBLRSTF                 RCC_CSR2_OBLRSTF_Msk
4934 #define RCC_CSR2_PINRSTF_Pos             (26U)
4935 #define RCC_CSR2_PINRSTF_Msk             (0x1UL << RCC_CSR2_PINRSTF_Pos)         /*!< 0x04000000 */
4936 #define RCC_CSR2_PINRSTF                 RCC_CSR2_PINRSTF_Msk
4937 #define RCC_CSR2_PWRRSTF_Pos             (27U)
4938 #define RCC_CSR2_PWRRSTF_Msk             (0x1UL << RCC_CSR2_PWRRSTF_Pos)         /*!< 0x08000000 */
4939 #define RCC_CSR2_PWRRSTF                 RCC_CSR2_PWRRSTF_Msk
4940 #define RCC_CSR2_SFTRSTF_Pos             (28U)
4941 #define RCC_CSR2_SFTRSTF_Msk             (0x1UL << RCC_CSR2_SFTRSTF_Pos)         /*!< 0x10000000 */
4942 #define RCC_CSR2_SFTRSTF                 RCC_CSR2_SFTRSTF_Msk
4943 #define RCC_CSR2_IWDGRSTF_Pos            (29U)
4944 #define RCC_CSR2_IWDGRSTF_Msk            (0x1UL << RCC_CSR2_IWDGRSTF_Pos)        /*!< 0x20000000 */
4945 #define RCC_CSR2_IWDGRSTF                RCC_CSR2_IWDGRSTF_Msk
4946 #define RCC_CSR2_WWDGRSTF_Pos            (30U)
4947 #define RCC_CSR2_WWDGRSTF_Msk            (0x1UL << RCC_CSR2_WWDGRSTF_Pos)        /*!< 0x40000000 */
4948 #define RCC_CSR2_WWDGRSTF                RCC_CSR2_WWDGRSTF_Msk
4949 #define RCC_CSR2_LPWRRSTF_Pos            (31U)
4950 #define RCC_CSR2_LPWRRSTF_Msk            (0x1UL << RCC_CSR2_LPWRRSTF_Pos)        /*!< 0x80000000 */
4951 #define RCC_CSR2_LPWRRSTF                RCC_CSR2_LPWRRSTF_Msk
4952 
4953 /******************************************************************************/
4954 /*                                                                            */
4955 /*                           Real-Time Clock (RTC)                            */
4956 /*                                                                            */
4957 /******************************************************************************/
4958 /********************  Bits definition for RTC_TR register  *******************/
4959 #define RTC_TR_PM_Pos                (22U)
4960 #define RTC_TR_PM_Msk                (0x1UL << RTC_TR_PM_Pos)                   /*!< 0x00400000 */
4961 #define RTC_TR_PM                    RTC_TR_PM_Msk
4962 #define RTC_TR_HT_Pos                (20U)
4963 #define RTC_TR_HT_Msk                (0x3UL << RTC_TR_HT_Pos)                   /*!< 0x00300000 */
4964 #define RTC_TR_HT                    RTC_TR_HT_Msk
4965 #define RTC_TR_HT_0                  (0x1UL << RTC_TR_HT_Pos)                   /*!< 0x00100000 */
4966 #define RTC_TR_HT_1                  (0x2UL << RTC_TR_HT_Pos)                   /*!< 0x00200000 */
4967 #define RTC_TR_HU_Pos                (16U)
4968 #define RTC_TR_HU_Msk                (0xFUL << RTC_TR_HU_Pos)                   /*!< 0x000F0000 */
4969 #define RTC_TR_HU                    RTC_TR_HU_Msk
4970 #define RTC_TR_HU_0                  (0x1UL << RTC_TR_HU_Pos)                   /*!< 0x00010000 */
4971 #define RTC_TR_HU_1                  (0x2UL << RTC_TR_HU_Pos)                   /*!< 0x00020000 */
4972 #define RTC_TR_HU_2                  (0x4UL << RTC_TR_HU_Pos)                   /*!< 0x00040000 */
4973 #define RTC_TR_HU_3                  (0x8UL << RTC_TR_HU_Pos)                   /*!< 0x00080000 */
4974 #define RTC_TR_MNT_Pos               (12U)
4975 #define RTC_TR_MNT_Msk               (0x7UL << RTC_TR_MNT_Pos)                  /*!< 0x00007000 */
4976 #define RTC_TR_MNT                   RTC_TR_MNT_Msk
4977 #define RTC_TR_MNT_0                 (0x1UL << RTC_TR_MNT_Pos)                  /*!< 0x00001000 */
4978 #define RTC_TR_MNT_1                 (0x2UL << RTC_TR_MNT_Pos)                  /*!< 0x00002000 */
4979 #define RTC_TR_MNT_2                 (0x4UL << RTC_TR_MNT_Pos)                  /*!< 0x00004000 */
4980 #define RTC_TR_MNU_Pos               (8U)
4981 #define RTC_TR_MNU_Msk               (0xFUL << RTC_TR_MNU_Pos)                  /*!< 0x00000F00 */
4982 #define RTC_TR_MNU                   RTC_TR_MNU_Msk
4983 #define RTC_TR_MNU_0                 (0x1UL << RTC_TR_MNU_Pos)                  /*!< 0x00000100 */
4984 #define RTC_TR_MNU_1                 (0x2UL << RTC_TR_MNU_Pos)                  /*!< 0x00000200 */
4985 #define RTC_TR_MNU_2                 (0x4UL << RTC_TR_MNU_Pos)                  /*!< 0x00000400 */
4986 #define RTC_TR_MNU_3                 (0x8UL << RTC_TR_MNU_Pos)                  /*!< 0x00000800 */
4987 #define RTC_TR_ST_Pos                (4U)
4988 #define RTC_TR_ST_Msk                (0x7UL << RTC_TR_ST_Pos)                   /*!< 0x00000070 */
4989 #define RTC_TR_ST                    RTC_TR_ST_Msk
4990 #define RTC_TR_ST_0                  (0x1UL << RTC_TR_ST_Pos)                   /*!< 0x00000010 */
4991 #define RTC_TR_ST_1                  (0x2UL << RTC_TR_ST_Pos)                   /*!< 0x00000020 */
4992 #define RTC_TR_ST_2                  (0x4UL << RTC_TR_ST_Pos)                   /*!< 0x00000040 */
4993 #define RTC_TR_SU_Pos                (0U)
4994 #define RTC_TR_SU_Msk                (0xFUL << RTC_TR_SU_Pos)                   /*!< 0x0000000F */
4995 #define RTC_TR_SU                    RTC_TR_SU_Msk
4996 #define RTC_TR_SU_0                  (0x1UL << RTC_TR_SU_Pos)                   /*!< 0x00000001 */
4997 #define RTC_TR_SU_1                  (0x2UL << RTC_TR_SU_Pos)                   /*!< 0x00000002 */
4998 #define RTC_TR_SU_2                  (0x4UL << RTC_TR_SU_Pos)                   /*!< 0x00000004 */
4999 #define RTC_TR_SU_3                  (0x8UL << RTC_TR_SU_Pos)                   /*!< 0x00000008 */
5000 
5001 /********************  Bits definition for RTC_DR register  *******************/
5002 #define RTC_DR_YT_Pos                (20U)
5003 #define RTC_DR_YT_Msk                (0xFUL << RTC_DR_YT_Pos)                   /*!< 0x00F00000 */
5004 #define RTC_DR_YT                    RTC_DR_YT_Msk
5005 #define RTC_DR_YT_0                  (0x1UL << RTC_DR_YT_Pos)                   /*!< 0x00100000 */
5006 #define RTC_DR_YT_1                  (0x2UL << RTC_DR_YT_Pos)                   /*!< 0x00200000 */
5007 #define RTC_DR_YT_2                  (0x4UL << RTC_DR_YT_Pos)                   /*!< 0x00400000 */
5008 #define RTC_DR_YT_3                  (0x8UL << RTC_DR_YT_Pos)                   /*!< 0x00800000 */
5009 #define RTC_DR_YU_Pos                (16U)
5010 #define RTC_DR_YU_Msk                (0xFUL << RTC_DR_YU_Pos)                   /*!< 0x000F0000 */
5011 #define RTC_DR_YU                    RTC_DR_YU_Msk
5012 #define RTC_DR_YU_0                  (0x1UL << RTC_DR_YU_Pos)                   /*!< 0x00010000 */
5013 #define RTC_DR_YU_1                  (0x2UL << RTC_DR_YU_Pos)                   /*!< 0x00020000 */
5014 #define RTC_DR_YU_2                  (0x4UL << RTC_DR_YU_Pos)                   /*!< 0x00040000 */
5015 #define RTC_DR_YU_3                  (0x8UL << RTC_DR_YU_Pos)                   /*!< 0x00080000 */
5016 #define RTC_DR_WDU_Pos               (13U)
5017 #define RTC_DR_WDU_Msk               (0x7UL << RTC_DR_WDU_Pos)                  /*!< 0x0000E000 */
5018 #define RTC_DR_WDU                   RTC_DR_WDU_Msk
5019 #define RTC_DR_WDU_0                 (0x1UL << RTC_DR_WDU_Pos)                  /*!< 0x00002000 */
5020 #define RTC_DR_WDU_1                 (0x2UL << RTC_DR_WDU_Pos)                  /*!< 0x00004000 */
5021 #define RTC_DR_WDU_2                 (0x4UL << RTC_DR_WDU_Pos)                  /*!< 0x00008000 */
5022 #define RTC_DR_MT_Pos                (12U)
5023 #define RTC_DR_MT_Msk                (0x1UL << RTC_DR_MT_Pos)                   /*!< 0x00001000 */
5024 #define RTC_DR_MT                    RTC_DR_MT_Msk
5025 #define RTC_DR_MU_Pos                (8U)
5026 #define RTC_DR_MU_Msk                (0xFUL << RTC_DR_MU_Pos)                   /*!< 0x00000F00 */
5027 #define RTC_DR_MU                    RTC_DR_MU_Msk
5028 #define RTC_DR_MU_0                  (0x1UL << RTC_DR_MU_Pos)                   /*!< 0x00000100 */
5029 #define RTC_DR_MU_1                  (0x2UL << RTC_DR_MU_Pos)                   /*!< 0x00000200 */
5030 #define RTC_DR_MU_2                  (0x4UL << RTC_DR_MU_Pos)                   /*!< 0x00000400 */
5031 #define RTC_DR_MU_3                  (0x8UL << RTC_DR_MU_Pos)                   /*!< 0x00000800 */
5032 #define RTC_DR_DT_Pos                (4U)
5033 #define RTC_DR_DT_Msk                (0x3UL << RTC_DR_DT_Pos)                   /*!< 0x00000030 */
5034 #define RTC_DR_DT                    RTC_DR_DT_Msk
5035 #define RTC_DR_DT_0                  (0x1UL << RTC_DR_DT_Pos)                   /*!< 0x00000010 */
5036 #define RTC_DR_DT_1                  (0x2UL << RTC_DR_DT_Pos)                   /*!< 0x00000020 */
5037 #define RTC_DR_DU_Pos                (0U)
5038 #define RTC_DR_DU_Msk                (0xFUL << RTC_DR_DU_Pos)                   /*!< 0x0000000F */
5039 #define RTC_DR_DU                    RTC_DR_DU_Msk
5040 #define RTC_DR_DU_0                  (0x1UL << RTC_DR_DU_Pos)                   /*!< 0x00000001 */
5041 #define RTC_DR_DU_1                  (0x2UL << RTC_DR_DU_Pos)                   /*!< 0x00000002 */
5042 #define RTC_DR_DU_2                  (0x4UL << RTC_DR_DU_Pos)                   /*!< 0x00000004 */
5043 #define RTC_DR_DU_3                  (0x8UL << RTC_DR_DU_Pos)                   /*!< 0x00000008 */
5044 
5045 /********************  Bits definition for RTC_SSR register  ******************/
5046 #define RTC_SSR_SS_Pos               (0U)
5047 #define RTC_SSR_SS_Msk               (0xFFFFUL << RTC_SSR_SS_Pos)               /*!< 0x0000FFFF */
5048 #define RTC_SSR_SS                   RTC_SSR_SS_Msk
5049 
5050 /********************  Bits definition for RTC_ICSR register  ******************/
5051 #define RTC_ICSR_RECALPF_Pos         (16U)
5052 #define RTC_ICSR_RECALPF_Msk         (0x1UL << RTC_ICSR_RECALPF_Pos)            /*!< 0x00010000 */
5053 #define RTC_ICSR_RECALPF             RTC_ICSR_RECALPF_Msk
5054 #define RTC_ICSR_INIT_Pos            (7U)
5055 #define RTC_ICSR_INIT_Msk            (0x1UL << RTC_ICSR_INIT_Pos)               /*!< 0x00000080 */
5056 #define RTC_ICSR_INIT                RTC_ICSR_INIT_Msk
5057 #define RTC_ICSR_INITF_Pos           (6U)
5058 #define RTC_ICSR_INITF_Msk           (0x1UL << RTC_ICSR_INITF_Pos)              /*!< 0x00000040 */
5059 #define RTC_ICSR_INITF               RTC_ICSR_INITF_Msk
5060 #define RTC_ICSR_RSF_Pos             (5U)
5061 #define RTC_ICSR_RSF_Msk             (0x1UL << RTC_ICSR_RSF_Pos)                /*!< 0x00000020 */
5062 #define RTC_ICSR_RSF                 RTC_ICSR_RSF_Msk
5063 #define RTC_ICSR_INITS_Pos           (4U)
5064 #define RTC_ICSR_INITS_Msk           (0x1UL << RTC_ICSR_INITS_Pos)              /*!< 0x00000010 */
5065 #define RTC_ICSR_INITS               RTC_ICSR_INITS_Msk
5066 #define RTC_ICSR_SHPF_Pos            (3U)
5067 #define RTC_ICSR_SHPF_Msk            (0x1UL << RTC_ICSR_SHPF_Pos)               /*!< 0x00000008 */
5068 #define RTC_ICSR_SHPF                RTC_ICSR_SHPF_Msk
5069 #define RTC_ICSR_ALRAWF_Pos          (0U)
5070 #define RTC_ICSR_ALRAWF_Msk          (0x1UL << RTC_ICSR_ALRAWF_Pos)             /*!< 0x00000001 */
5071 #define RTC_ICSR_ALRAWF              RTC_ICSR_ALRAWF_Msk
5072 
5073 /********************  Bits definition for RTC_PRER register  *****************/
5074 #define RTC_PRER_PREDIV_A_Pos        (16U)
5075 #define RTC_PRER_PREDIV_A_Msk        (0x7FUL << RTC_PRER_PREDIV_A_Pos)          /*!< 0x007F0000 */
5076 #define RTC_PRER_PREDIV_A            RTC_PRER_PREDIV_A_Msk
5077 #define RTC_PRER_PREDIV_S_Pos        (0U)
5078 #define RTC_PRER_PREDIV_S_Msk        (0x7FFFUL << RTC_PRER_PREDIV_S_Pos)        /*!< 0x00007FFF */
5079 #define RTC_PRER_PREDIV_S            RTC_PRER_PREDIV_S_Msk
5080 /********************  Bits definition for RTC_CR register  *******************/
5081 #define RTC_CR_OUT2EN_Pos            (31U)
5082 #define RTC_CR_OUT2EN_Msk            (0x1UL << RTC_CR_OUT2EN_Pos)              /*!< 0x80000000 */
5083 #define RTC_CR_OUT2EN                RTC_CR_OUT2EN_Msk                         /*!< RTC_OUT2 output enable */
5084 #define RTC_CR_TAMPALRM_TYPE_Pos     (30U)
5085 #define RTC_CR_TAMPALRM_TYPE_Msk     (0x1UL << RTC_CR_TAMPALRM_TYPE_Pos)       /*!< 0x40000000 */
5086 #define RTC_CR_TAMPALRM_TYPE         RTC_CR_TAMPALRM_TYPE_Msk                  /*!< TAMPALARM output type  */
5087 #define RTC_CR_TAMPALRM_PU_Pos       (29U)
5088 #define RTC_CR_TAMPALRM_PU_Msk       (0x1UL << RTC_CR_TAMPALRM_PU_Pos)         /*!< 0x20000000 */
5089 #define RTC_CR_TAMPALRM_PU           RTC_CR_TAMPALRM_PU_Msk                    /*!< TAMPALARM output pull-up config */
5090 #define RTC_CR_COE_Pos               (23U)
5091 #define RTC_CR_COE_Msk               (0x1UL << RTC_CR_COE_Pos)                 /*!< 0x00800000 */
5092 #define RTC_CR_COE                   RTC_CR_COE_Msk
5093 #define RTC_CR_OSEL_Pos              (21U)
5094 #define RTC_CR_OSEL_Msk              (0x3UL << RTC_CR_OSEL_Pos)                 /*!< 0x00600000 */
5095 #define RTC_CR_OSEL                  RTC_CR_OSEL_Msk
5096 #define RTC_CR_OSEL_0                (0x1UL << RTC_CR_OSEL_Pos)                 /*!< 0x00200000 */
5097 #define RTC_CR_OSEL_1                (0x2UL << RTC_CR_OSEL_Pos)                 /*!< 0x00400000 */
5098 #define RTC_CR_POL_Pos               (20U)
5099 #define RTC_CR_POL_Msk               (0x1UL << RTC_CR_POL_Pos)                  /*!< 0x00100000 */
5100 #define RTC_CR_POL                   RTC_CR_POL_Msk
5101 #define RTC_CR_COSEL_Pos             (19U)
5102 #define RTC_CR_COSEL_Msk             (0x1UL << RTC_CR_COSEL_Pos)                /*!< 0x00080000 */
5103 #define RTC_CR_COSEL                 RTC_CR_COSEL_Msk
5104 #define RTC_CR_BKP_Pos               (18U)
5105 #define RTC_CR_BKP_Msk               (0x1UL << RTC_CR_BKP_Pos)                  /*!< 0x00040000 */
5106 #define RTC_CR_BKP                   RTC_CR_BKP_Msk
5107 #define RTC_CR_SUB1H_Pos             (17U)
5108 #define RTC_CR_SUB1H_Msk             (0x1UL << RTC_CR_SUB1H_Pos)                /*!< 0x00020000 */
5109 #define RTC_CR_SUB1H                 RTC_CR_SUB1H_Msk
5110 #define RTC_CR_ADD1H_Pos             (16U)
5111 #define RTC_CR_ADD1H_Msk             (0x1UL << RTC_CR_ADD1H_Pos)                /*!< 0x00010000 */
5112 #define RTC_CR_ADD1H                 RTC_CR_ADD1H_Msk
5113 #define RTC_CR_TSIE_Pos              (15U)
5114 #define RTC_CR_TSIE_Msk              (0x1UL << RTC_CR_TSIE_Pos)                /*!< 0x00008000 */
5115 #define RTC_CR_TSIE                  RTC_CR_TSIE_Msk                           /*!< Timestamp interrupt enable > */
5116 #define RTC_CR_ALRAIE_Pos            (12U)
5117 #define RTC_CR_ALRAIE_Msk            (0x1UL << RTC_CR_ALRAIE_Pos)              /*!< 0x00001000 */
5118 #define RTC_CR_ALRAIE                RTC_CR_ALRAIE_Msk
5119 #define RTC_CR_TSE_Pos               (11U)
5120 #define RTC_CR_TSE_Msk               (0x1UL << RTC_CR_TSE_Pos)                 /*!< 0x00000800 */
5121 #define RTC_CR_TSE                   RTC_CR_TSE_Msk                            /*!< timestamp enable > */
5122 #define RTC_CR_ALRAE_Pos             (8U)
5123 #define RTC_CR_ALRAE_Msk             (0x1UL << RTC_CR_ALRAE_Pos)                /*!< 0x00000100 */
5124 #define RTC_CR_ALRAE                 RTC_CR_ALRAE_Msk
5125 #define RTC_CR_FMT_Pos               (6U)
5126 #define RTC_CR_FMT_Msk               (0x1UL << RTC_CR_FMT_Pos)                  /*!< 0x00000040 */
5127 #define RTC_CR_FMT                   RTC_CR_FMT_Msk
5128 #define RTC_CR_BYPSHAD_Pos           (5U)
5129 #define RTC_CR_BYPSHAD_Msk           (0x1UL << RTC_CR_BYPSHAD_Pos)              /*!< 0x00000020 */
5130 #define RTC_CR_BYPSHAD               RTC_CR_BYPSHAD_Msk
5131 #define RTC_CR_REFCKON_Pos           (4U)
5132 #define RTC_CR_REFCKON_Msk           (0x1UL << RTC_CR_REFCKON_Pos)              /*!< 0x00000010 */
5133 #define RTC_CR_REFCKON               RTC_CR_REFCKON_Msk
5134 #define RTC_CR_TSEDGE_Pos            (3U)
5135 #define RTC_CR_TSEDGE_Msk            (0x1UL << RTC_CR_TSEDGE_Pos)              /*!< 0x00000008 */
5136 #define RTC_CR_TSEDGE                RTC_CR_TSEDGE_Msk                         /*!< Timestamp event active edge > */
5137 
5138 /********************  Bits definition for RTC_WPR register  ******************/
5139 #define RTC_WPR_KEY_Pos              (0U)
5140 #define RTC_WPR_KEY_Msk              (0xFFUL << RTC_WPR_KEY_Pos)                /*!< 0x000000FF */
5141 #define RTC_WPR_KEY                  RTC_WPR_KEY_Msk
5142 
5143 /********************  Bits definition for RTC_CALR register  *****************/
5144 #define RTC_CALR_CALP_Pos            (15U)
5145 #define RTC_CALR_CALP_Msk            (0x1UL << RTC_CALR_CALP_Pos)               /*!< 0x00008000 */
5146 #define RTC_CALR_CALP                RTC_CALR_CALP_Msk
5147 #define RTC_CALR_CALW8_Pos           (14U)
5148 #define RTC_CALR_CALW8_Msk           (0x1UL << RTC_CALR_CALW8_Pos)              /*!< 0x00004000 */
5149 #define RTC_CALR_CALW8               RTC_CALR_CALW8_Msk
5150 #define RTC_CALR_CALW16_Pos          (13U)
5151 #define RTC_CALR_CALW16_Msk          (0x1UL << RTC_CALR_CALW16_Pos)             /*!< 0x00002000 */
5152 #define RTC_CALR_CALW16              RTC_CALR_CALW16_Msk
5153 #define RTC_CALR_CALM_Pos            (0U)
5154 #define RTC_CALR_CALM_Msk            (0x1FFUL << RTC_CALR_CALM_Pos)             /*!< 0x000001FF */
5155 #define RTC_CALR_CALM                RTC_CALR_CALM_Msk
5156 #define RTC_CALR_CALM_0              (0x001UL << RTC_CALR_CALM_Pos)             /*!< 0x00000001 */
5157 #define RTC_CALR_CALM_1              (0x002UL << RTC_CALR_CALM_Pos)             /*!< 0x00000002 */
5158 #define RTC_CALR_CALM_2              (0x004UL << RTC_CALR_CALM_Pos)             /*!< 0x00000004 */
5159 #define RTC_CALR_CALM_3              (0x008UL << RTC_CALR_CALM_Pos)             /*!< 0x00000008 */
5160 #define RTC_CALR_CALM_4              (0x010UL << RTC_CALR_CALM_Pos)             /*!< 0x00000010 */
5161 #define RTC_CALR_CALM_5              (0x020UL << RTC_CALR_CALM_Pos)             /*!< 0x00000020 */
5162 #define RTC_CALR_CALM_6              (0x040UL << RTC_CALR_CALM_Pos)             /*!< 0x00000040 */
5163 #define RTC_CALR_CALM_7              (0x080UL << RTC_CALR_CALM_Pos)             /*!< 0x00000080 */
5164 #define RTC_CALR_CALM_8              (0x100UL << RTC_CALR_CALM_Pos)             /*!< 0x00000100 */
5165 
5166 /********************  Bits definition for RTC_SHIFTR register  ***************/
5167 #define RTC_SHIFTR_ADD1S_Pos         (31U)
5168 #define RTC_SHIFTR_ADD1S_Msk         (0x1UL << RTC_SHIFTR_ADD1S_Pos)            /*!< 0x80000000 */
5169 #define RTC_SHIFTR_ADD1S             RTC_SHIFTR_ADD1S_Msk
5170 #define RTC_SHIFTR_SUBFS_Pos         (0U)
5171 #define RTC_SHIFTR_SUBFS_Msk         (0x7FFFUL << RTC_SHIFTR_SUBFS_Pos)         /*!< 0x00007FFF */
5172 #define RTC_SHIFTR_SUBFS             RTC_SHIFTR_SUBFS_Msk
5173 /********************  Bits definition for RTC_TSTR register  *****************/
5174 #define RTC_TSTR_PM_Pos              (22U)
5175 #define RTC_TSTR_PM_Msk              (0x1UL << RTC_TSTR_PM_Pos)                /*!< 0x00400000 */
5176 #define RTC_TSTR_PM                  RTC_TSTR_PM_Msk                           /*!< AM-PM notation > */
5177 #define RTC_TSTR_HT_Pos              (20U)
5178 #define RTC_TSTR_HT_Msk              (0x3UL << RTC_TSTR_HT_Pos)                /*!< 0x00300000 */
5179 #define RTC_TSTR_HT                  RTC_TSTR_HT_Msk
5180 #define RTC_TSTR_HT_0                (0x1UL << RTC_TSTR_HT_Pos)                /*!< 0x00100000 */
5181 #define RTC_TSTR_HT_1                (0x2UL << RTC_TSTR_HT_Pos)                /*!< 0x00200000 */
5182 #define RTC_TSTR_HU_Pos              (16U)
5183 #define RTC_TSTR_HU_Msk              (0xFUL << RTC_TSTR_HU_Pos)                /*!< 0x000F0000 */
5184 #define RTC_TSTR_HU                  RTC_TSTR_HU_Msk
5185 #define RTC_TSTR_HU_0                (0x1UL << RTC_TSTR_HU_Pos)                /*!< 0x00010000 */
5186 #define RTC_TSTR_HU_1                (0x2UL << RTC_TSTR_HU_Pos)                /*!< 0x00020000 */
5187 #define RTC_TSTR_HU_2                (0x4UL << RTC_TSTR_HU_Pos)                /*!< 0x00040000 */
5188 #define RTC_TSTR_HU_3                (0x8UL << RTC_TSTR_HU_Pos)                /*!< 0x00080000 */
5189 #define RTC_TSTR_MNT_Pos             (12U)
5190 #define RTC_TSTR_MNT_Msk             (0x7UL << RTC_TSTR_MNT_Pos)               /*!< 0x00007000 */
5191 #define RTC_TSTR_MNT                 RTC_TSTR_MNT_Msk
5192 #define RTC_TSTR_MNT_0               (0x1UL << RTC_TSTR_MNT_Pos)               /*!< 0x00001000 */
5193 #define RTC_TSTR_MNT_1               (0x2UL << RTC_TSTR_MNT_Pos)               /*!< 0x00002000 */
5194 #define RTC_TSTR_MNT_2               (0x4UL << RTC_TSTR_MNT_Pos)                /*!< 0x00004000 */
5195 #define RTC_TSTR_MNU_Pos             (8U)
5196 #define RTC_TSTR_MNU_Msk             (0xFUL << RTC_TSTR_MNU_Pos)                /*!< 0x00000F00 */
5197 #define RTC_TSTR_MNU                 RTC_TSTR_MNU_Msk
5198 #define RTC_TSTR_MNU_0               (0x1UL << RTC_TSTR_MNU_Pos)                /*!< 0x00000100 */
5199 #define RTC_TSTR_MNU_1               (0x2UL << RTC_TSTR_MNU_Pos)                /*!< 0x00000200 */
5200 #define RTC_TSTR_MNU_2               (0x4UL << RTC_TSTR_MNU_Pos)                /*!< 0x00000400 */
5201 #define RTC_TSTR_MNU_3               (0x8UL << RTC_TSTR_MNU_Pos)                /*!< 0x00000800 */
5202 #define RTC_TSTR_ST_Pos              (4U)
5203 #define RTC_TSTR_ST_Msk              (0x7UL << RTC_TSTR_ST_Pos)                 /*!< 0x00000070 */
5204 #define RTC_TSTR_ST                  RTC_TSTR_ST_Msk
5205 #define RTC_TSTR_ST_0                (0x1UL << RTC_TSTR_ST_Pos)                 /*!< 0x00000010 */
5206 #define RTC_TSTR_ST_1                (0x2UL << RTC_TSTR_ST_Pos)                 /*!< 0x00000020 */
5207 #define RTC_TSTR_ST_2                (0x4UL << RTC_TSTR_ST_Pos)                 /*!< 0x00000040 */
5208 #define RTC_TSTR_SU_Pos              (0U)
5209 #define RTC_TSTR_SU_Msk              (0xFUL << RTC_TSTR_SU_Pos)                 /*!< 0x0000000F */
5210 #define RTC_TSTR_SU                  RTC_TSTR_SU_Msk
5211 #define RTC_TSTR_SU_0                (0x1UL << RTC_TSTR_SU_Pos)                 /*!< 0x00000001 */
5212 #define RTC_TSTR_SU_1                (0x2UL << RTC_TSTR_SU_Pos)                 /*!< 0x00000002 */
5213 #define RTC_TSTR_SU_2                (0x4UL << RTC_TSTR_SU_Pos)                 /*!< 0x00000004 */
5214 #define RTC_TSTR_SU_3                (0x8UL << RTC_TSTR_SU_Pos)                 /*!< 0x00000008 */
5215 
5216 /********************  Bits definition for RTC_TSDR register  *****************/
5217 #define RTC_TSDR_WDU_Pos             (13U)
5218 #define RTC_TSDR_WDU_Msk             (0x7UL << RTC_TSDR_WDU_Pos)               /*!< 0x0000E000 */
5219 #define RTC_TSDR_WDU                 RTC_TSDR_WDU_Msk                          /*!< Week day units > */
5220 #define RTC_TSDR_WDU_0               (0x1UL << RTC_TSDR_WDU_Pos)               /*!< 0x00002000 */
5221 #define RTC_TSDR_WDU_1               (0x2UL << RTC_TSDR_WDU_Pos)               /*!< 0x00004000 */
5222 #define RTC_TSDR_WDU_2               (0x4UL << RTC_TSDR_WDU_Pos)               /*!< 0x00008000 */
5223 #define RTC_TSDR_MT_Pos              (12U)
5224 #define RTC_TSDR_MT_Msk              (0x1UL << RTC_TSDR_MT_Pos)                /*!< 0x00001000 */
5225 #define RTC_TSDR_MT                  RTC_TSDR_MT_Msk
5226 #define RTC_TSDR_MU_Pos              (8U)
5227 #define RTC_TSDR_MU_Msk              (0xFUL << RTC_TSDR_MU_Pos)                /*!< 0x00000F00 */
5228 #define RTC_TSDR_MU                  RTC_TSDR_MU_Msk
5229 #define RTC_TSDR_MU_0                (0x1UL << RTC_TSDR_MU_Pos)                /*!< 0x00000100 */
5230 #define RTC_TSDR_MU_1                (0x2UL << RTC_TSDR_MU_Pos)                /*!< 0x00000200 */
5231 #define RTC_TSDR_MU_2                (0x4UL << RTC_TSDR_MU_Pos)                /*!< 0x00000400 */
5232 #define RTC_TSDR_MU_3                (0x8UL << RTC_TSDR_MU_Pos)                /*!< 0x00000800 */
5233 #define RTC_TSDR_DT_Pos              (4U)
5234 #define RTC_TSDR_DT_Msk              (0x3UL << RTC_TSDR_DT_Pos)                /*!< 0x00000030 */
5235 #define RTC_TSDR_DT                  RTC_TSDR_DT_Msk
5236 #define RTC_TSDR_DT_0                (0x1UL << RTC_TSDR_DT_Pos)                /*!< 0x00000010 */
5237 #define RTC_TSDR_DT_1                (0x2UL << RTC_TSDR_DT_Pos)                /*!< 0x00000020 */
5238 #define RTC_TSDR_DU_Pos              (0U)
5239 #define RTC_TSDR_DU_Msk              (0xFUL << RTC_TSDR_DU_Pos)                /*!< 0x0000000F */
5240 #define RTC_TSDR_DU                  RTC_TSDR_DU_Msk
5241 #define RTC_TSDR_DU_0                (0x1UL << RTC_TSDR_DU_Pos)                /*!< 0x00000001 */
5242 #define RTC_TSDR_DU_1                (0x2UL << RTC_TSDR_DU_Pos)                /*!< 0x00000002 */
5243 #define RTC_TSDR_DU_2                (0x4UL << RTC_TSDR_DU_Pos)                /*!< 0x00000004 */
5244 #define RTC_TSDR_DU_3                (0x8UL << RTC_TSDR_DU_Pos)                /*!< 0x00000008 */
5245 
5246 /********************  Bits definition for RTC_TSSSR register  ****************/
5247 #define RTC_TSSSR_SS_Pos             (0U)
5248 #define RTC_TSSSR_SS_Msk             (0xFFFFUL << RTC_TSSSR_SS_Pos)            /*!< 0x0000FFFF */
5249 #define RTC_TSSSR_SS                 RTC_TSSSR_SS_Msk                          /*!< Sub second value > */
5250 
5251 /********************  Bits definition for RTC_ALRMAR register  ***************/
5252 #define RTC_ALRMAR_MSK4_Pos          (31U)
5253 #define RTC_ALRMAR_MSK4_Msk          (0x1UL << RTC_ALRMAR_MSK4_Pos)            /*!< 0x80000000 */
5254 #define RTC_ALRMAR_MSK4              RTC_ALRMAR_MSK4_Msk
5255 #define RTC_ALRMAR_WDSEL_Pos         (30U)
5256 #define RTC_ALRMAR_WDSEL_Msk         (0x1UL << RTC_ALRMAR_WDSEL_Pos)           /*!< 0x40000000 */
5257 #define RTC_ALRMAR_WDSEL             RTC_ALRMAR_WDSEL_Msk
5258 #define RTC_ALRMAR_DT_Pos            (28U)
5259 #define RTC_ALRMAR_DT_Msk            (0x3UL << RTC_ALRMAR_DT_Pos)              /*!< 0x30000000 */
5260 #define RTC_ALRMAR_DT                RTC_ALRMAR_DT_Msk
5261 #define RTC_ALRMAR_DT_0              (0x1UL << RTC_ALRMAR_DT_Pos)              /*!< 0x10000000 */
5262 #define RTC_ALRMAR_DT_1              (0x2UL << RTC_ALRMAR_DT_Pos)              /*!< 0x20000000 */
5263 #define RTC_ALRMAR_DU_Pos            (24U)
5264 #define RTC_ALRMAR_DU_Msk            (0xFUL << RTC_ALRMAR_DU_Pos)              /*!< 0x0F000000 */
5265 #define RTC_ALRMAR_DU                RTC_ALRMAR_DU_Msk
5266 #define RTC_ALRMAR_DU_0              (0x1UL << RTC_ALRMAR_DU_Pos)              /*!< 0x01000000 */
5267 #define RTC_ALRMAR_DU_1              (0x2UL << RTC_ALRMAR_DU_Pos)              /*!< 0x02000000 */
5268 #define RTC_ALRMAR_DU_2              (0x4UL << RTC_ALRMAR_DU_Pos)              /*!< 0x04000000 */
5269 #define RTC_ALRMAR_DU_3              (0x8UL << RTC_ALRMAR_DU_Pos)              /*!< 0x08000000 */
5270 #define RTC_ALRMAR_MSK3_Pos          (23U)
5271 #define RTC_ALRMAR_MSK3_Msk          (0x1UL << RTC_ALRMAR_MSK3_Pos)            /*!< 0x00800000 */
5272 #define RTC_ALRMAR_MSK3              RTC_ALRMAR_MSK3_Msk
5273 #define RTC_ALRMAR_PM_Pos            (22U)
5274 #define RTC_ALRMAR_PM_Msk            (0x1UL << RTC_ALRMAR_PM_Pos)              /*!< 0x00400000 */
5275 #define RTC_ALRMAR_PM                RTC_ALRMAR_PM_Msk
5276 #define RTC_ALRMAR_HT_Pos            (20U)
5277 #define RTC_ALRMAR_HT_Msk            (0x3UL << RTC_ALRMAR_HT_Pos)              /*!< 0x00300000 */
5278 #define RTC_ALRMAR_HT                RTC_ALRMAR_HT_Msk
5279 #define RTC_ALRMAR_HT_0              (0x1UL << RTC_ALRMAR_HT_Pos)              /*!< 0x00100000 */
5280 #define RTC_ALRMAR_HT_1              (0x2UL << RTC_ALRMAR_HT_Pos)              /*!< 0x00200000 */
5281 #define RTC_ALRMAR_HU_Pos            (16U)
5282 #define RTC_ALRMAR_HU_Msk            (0xFUL << RTC_ALRMAR_HU_Pos)              /*!< 0x000F0000 */
5283 #define RTC_ALRMAR_HU                RTC_ALRMAR_HU_Msk
5284 #define RTC_ALRMAR_HU_0              (0x1UL << RTC_ALRMAR_HU_Pos)              /*!< 0x00010000 */
5285 #define RTC_ALRMAR_HU_1              (0x2UL << RTC_ALRMAR_HU_Pos)              /*!< 0x00020000 */
5286 #define RTC_ALRMAR_HU_2              (0x4UL << RTC_ALRMAR_HU_Pos)              /*!< 0x00040000 */
5287 #define RTC_ALRMAR_HU_3              (0x8UL << RTC_ALRMAR_HU_Pos)              /*!< 0x00080000 */
5288 #define RTC_ALRMAR_MSK2_Pos          (15U)
5289 #define RTC_ALRMAR_MSK2_Msk          (0x1UL << RTC_ALRMAR_MSK2_Pos)            /*!< 0x00008000 */
5290 #define RTC_ALRMAR_MSK2              RTC_ALRMAR_MSK2_Msk
5291 #define RTC_ALRMAR_MNT_Pos           (12U)
5292 #define RTC_ALRMAR_MNT_Msk           (0x7UL << RTC_ALRMAR_MNT_Pos)             /*!< 0x00007000 */
5293 #define RTC_ALRMAR_MNT               RTC_ALRMAR_MNT_Msk
5294 #define RTC_ALRMAR_MNT_0             (0x1UL << RTC_ALRMAR_MNT_Pos)             /*!< 0x00001000 */
5295 #define RTC_ALRMAR_MNT_1             (0x2UL << RTC_ALRMAR_MNT_Pos)             /*!< 0x00002000 */
5296 #define RTC_ALRMAR_MNT_2             (0x4UL << RTC_ALRMAR_MNT_Pos)             /*!< 0x00004000 */
5297 #define RTC_ALRMAR_MNU_Pos           (8U)
5298 #define RTC_ALRMAR_MNU_Msk           (0xFUL << RTC_ALRMAR_MNU_Pos)             /*!< 0x00000F00 */
5299 #define RTC_ALRMAR_MNU               RTC_ALRMAR_MNU_Msk
5300 #define RTC_ALRMAR_MNU_0             (0x1UL << RTC_ALRMAR_MNU_Pos)             /*!< 0x00000100 */
5301 #define RTC_ALRMAR_MNU_1             (0x2UL << RTC_ALRMAR_MNU_Pos)             /*!< 0x00000200 */
5302 #define RTC_ALRMAR_MNU_2             (0x4UL << RTC_ALRMAR_MNU_Pos)             /*!< 0x00000400 */
5303 #define RTC_ALRMAR_MNU_3             (0x8UL << RTC_ALRMAR_MNU_Pos)             /*!< 0x00000800 */
5304 #define RTC_ALRMAR_MSK1_Pos          (7U)
5305 #define RTC_ALRMAR_MSK1_Msk          (0x1UL << RTC_ALRMAR_MSK1_Pos)            /*!< 0x00000080 */
5306 #define RTC_ALRMAR_MSK1              RTC_ALRMAR_MSK1_Msk
5307 #define RTC_ALRMAR_ST_Pos            (4U)
5308 #define RTC_ALRMAR_ST_Msk            (0x7UL << RTC_ALRMAR_ST_Pos)              /*!< 0x00000070 */
5309 #define RTC_ALRMAR_ST                RTC_ALRMAR_ST_Msk
5310 #define RTC_ALRMAR_ST_0              (0x1UL << RTC_ALRMAR_ST_Pos)              /*!< 0x00000010 */
5311 #define RTC_ALRMAR_ST_1              (0x2UL << RTC_ALRMAR_ST_Pos)              /*!< 0x00000020 */
5312 #define RTC_ALRMAR_ST_2              (0x4UL << RTC_ALRMAR_ST_Pos)              /*!< 0x00000040 */
5313 #define RTC_ALRMAR_SU_Pos            (0U)
5314 #define RTC_ALRMAR_SU_Msk            (0xFUL << RTC_ALRMAR_SU_Pos)              /*!< 0x0000000F */
5315 #define RTC_ALRMAR_SU                RTC_ALRMAR_SU_Msk
5316 #define RTC_ALRMAR_SU_0              (0x1UL << RTC_ALRMAR_SU_Pos)              /*!< 0x00000001 */
5317 #define RTC_ALRMAR_SU_1              (0x2UL << RTC_ALRMAR_SU_Pos)              /*!< 0x00000002 */
5318 #define RTC_ALRMAR_SU_2              (0x4UL << RTC_ALRMAR_SU_Pos)              /*!< 0x00000004 */
5319 #define RTC_ALRMAR_SU_3              (0x8UL << RTC_ALRMAR_SU_Pos)              /*!< 0x00000008 */
5320 
5321 /********************  Bits definition for RTC_ALRMASSR register  *************/
5322 #define RTC_ALRMASSR_MASKSS_Pos      (24U)
5323 #define RTC_ALRMASSR_MASKSS_Msk      (0xFUL << RTC_ALRMASSR_MASKSS_Pos)        /*!< 0x0F000000 */
5324 #define RTC_ALRMASSR_MASKSS          RTC_ALRMASSR_MASKSS_Msk
5325 #define RTC_ALRMASSR_MASKSS_0        (0x1UL << RTC_ALRMASSR_MASKSS_Pos)        /*!< 0x01000000 */
5326 #define RTC_ALRMASSR_MASKSS_1        (0x2UL << RTC_ALRMASSR_MASKSS_Pos)        /*!< 0x02000000 */
5327 #define RTC_ALRMASSR_MASKSS_2        (0x4UL << RTC_ALRMASSR_MASKSS_Pos)        /*!< 0x04000000 */
5328 #define RTC_ALRMASSR_MASKSS_3        (0x8UL << RTC_ALRMASSR_MASKSS_Pos)        /*!< 0x08000000 */
5329 #define RTC_ALRMASSR_SS_Pos          (0U)
5330 #define RTC_ALRMASSR_SS_Msk          (0x7FFFUL << RTC_ALRMASSR_SS_Pos)         /*!< 0x00007FFF */
5331 #define RTC_ALRMASSR_SS              RTC_ALRMASSR_SS_Msk
5332 
5333 /********************  Bits definition for RTC_SR register  *******************/
5334 #define RTC_SR_TSOVF_Pos             (4U)
5335 #define RTC_SR_TSOVF_Msk             (0x1UL << RTC_SR_TSOVF_Pos)               /*!< 0x00000010 */
5336 #define RTC_SR_TSOVF                 RTC_SR_TSOVF_Msk                          /*!< Timestamp overflow flag > */
5337 #define RTC_SR_TSF_Pos               (3U)
5338 #define RTC_SR_TSF_Msk               (0x1UL << RTC_SR_TSF_Pos)                 /*!< 0x00000008 */
5339 #define RTC_SR_TSF                   RTC_SR_TSF_Msk                            /*!< Timestamp flag > */
5340 #define RTC_SR_ALRAF_Pos             (0U)
5341 #define RTC_SR_ALRAF_Msk             (0x1UL << RTC_SR_ALRAF_Pos)               /*!< 0x00000001 */
5342 #define RTC_SR_ALRAF                 RTC_SR_ALRAF_Msk
5343 
5344 /********************  Bits definition for RTC_MISR register  *****************/
5345 #define RTC_MISR_TSOVMF_Pos          (4U)
5346 #define RTC_MISR_TSOVMF_Msk          (0x1UL << RTC_MISR_TSOVMF_Pos)            /*!< 0x00000010 */
5347 #define RTC_MISR_TSOVMF              RTC_MISR_TSOVMF_Msk                       /*!< Timestamp overflow masked flag > */
5348 #define RTC_MISR_TSMF_Pos            (3U)
5349 #define RTC_MISR_TSMF_Msk            (0x1UL << RTC_MISR_TSMF_Pos)              /*!< 0x00000008 */
5350 #define RTC_MISR_TSMF                RTC_MISR_TSMF_Msk                         /*!< Timestamp masked flag > */
5351 #define RTC_MISR_ALRAMF_Pos          (0U)
5352 #define RTC_MISR_ALRAMF_Msk          (0x1UL << RTC_MISR_ALRAMF_Pos)            /*!< 0x00000001 */
5353 #define RTC_MISR_ALRAMF              RTC_MISR_ALRAMF_Msk
5354 
5355 /********************  Bits definition for RTC_SCR register  ******************/
5356 #define RTC_SCR_CTSOVF_Pos           (4U)
5357 #define RTC_SCR_CTSOVF_Msk           (0x1UL << RTC_SCR_CTSOVF_Pos)             /*!< 0x00000010 */
5358 #define RTC_SCR_CTSOVF               RTC_SCR_CTSOVF_Msk                        /*!< Clear timestamp overflow flag > */
5359 #define RTC_SCR_CTSF_Pos             (3U)
5360 #define RTC_SCR_CTSF_Msk             (0x1UL << RTC_SCR_CTSF_Pos)               /*!< 0x00000008 */
5361 #define RTC_SCR_CTSF                 RTC_SCR_CTSF_Msk                          /*!< Clear timestamp flag > */
5362 #define RTC_SCR_CALRAF_Pos           (0U)
5363 #define RTC_SCR_CALRAF_Msk           (0x1UL << RTC_SCR_CALRAF_Pos)             /*!< 0x00000001 */
5364 #define RTC_SCR_CALRAF               RTC_SCR_CALRAF_Msk
5365 
5366 /******************************************************************************/
5367 /*                                                                            */
5368 /*                        Serial Peripheral Interface (SPI)                   */
5369 /*                                                                            */
5370 /******************************************************************************/
5371 
5372 #define SPI_I2S_SUPPORT                       /*!< I2S support */
5373 
5374 /*******************  Bit definition for SPI_CR1 register  ********************/
5375 #define SPI_CR1_CPHA_Pos            (0U)
5376 #define SPI_CR1_CPHA_Msk            (0x1UL << SPI_CR1_CPHA_Pos)                /*!< 0x00000001 */
5377 #define SPI_CR1_CPHA                SPI_CR1_CPHA_Msk                           /*!<Clock Phase      */
5378 #define SPI_CR1_CPOL_Pos            (1U)
5379 #define SPI_CR1_CPOL_Msk            (0x1UL << SPI_CR1_CPOL_Pos)                /*!< 0x00000002 */
5380 #define SPI_CR1_CPOL                SPI_CR1_CPOL_Msk                           /*!<Clock Polarity   */
5381 #define SPI_CR1_MSTR_Pos            (2U)
5382 #define SPI_CR1_MSTR_Msk            (0x1UL << SPI_CR1_MSTR_Pos)                /*!< 0x00000004 */
5383 #define SPI_CR1_MSTR                SPI_CR1_MSTR_Msk                           /*!<Master Selection */
5384 
5385 #define SPI_CR1_BR_Pos              (3U)
5386 #define SPI_CR1_BR_Msk              (0x7UL << SPI_CR1_BR_Pos)                  /*!< 0x00000038 */
5387 #define SPI_CR1_BR                  SPI_CR1_BR_Msk                             /*!<BR[2:0] bits (Baud Rate Control) */
5388 #define SPI_CR1_BR_0                (0x1UL << SPI_CR1_BR_Pos)                  /*!< 0x00000008 */
5389 #define SPI_CR1_BR_1                (0x2UL << SPI_CR1_BR_Pos)                  /*!< 0x00000010 */
5390 #define SPI_CR1_BR_2                (0x4UL << SPI_CR1_BR_Pos)                  /*!< 0x00000020 */
5391 
5392 #define SPI_CR1_SPE_Pos             (6U)
5393 #define SPI_CR1_SPE_Msk             (0x1UL << SPI_CR1_SPE_Pos)                 /*!< 0x00000040 */
5394 #define SPI_CR1_SPE                 SPI_CR1_SPE_Msk                            /*!<SPI Enable                          */
5395 #define SPI_CR1_LSBFIRST_Pos        (7U)
5396 #define SPI_CR1_LSBFIRST_Msk        (0x1UL << SPI_CR1_LSBFIRST_Pos)            /*!< 0x00000080 */
5397 #define SPI_CR1_LSBFIRST            SPI_CR1_LSBFIRST_Msk                       /*!<Frame Format                        */
5398 #define SPI_CR1_SSI_Pos             (8U)
5399 #define SPI_CR1_SSI_Msk             (0x1UL << SPI_CR1_SSI_Pos)                 /*!< 0x00000100 */
5400 #define SPI_CR1_SSI                 SPI_CR1_SSI_Msk                            /*!<Internal slave select               */
5401 #define SPI_CR1_SSM_Pos             (9U)
5402 #define SPI_CR1_SSM_Msk             (0x1UL << SPI_CR1_SSM_Pos)                 /*!< 0x00000200 */
5403 #define SPI_CR1_SSM                 SPI_CR1_SSM_Msk                            /*!<Software slave management           */
5404 #define SPI_CR1_RXONLY_Pos          (10U)
5405 #define SPI_CR1_RXONLY_Msk          (0x1UL << SPI_CR1_RXONLY_Pos)              /*!< 0x00000400 */
5406 #define SPI_CR1_RXONLY              SPI_CR1_RXONLY_Msk                         /*!<Receive only                        */
5407 #define SPI_CR1_CRCL_Pos            (11U)
5408 #define SPI_CR1_CRCL_Msk            (0x1UL << SPI_CR1_CRCL_Pos)                /*!< 0x00000800 */
5409 #define SPI_CR1_CRCL                SPI_CR1_CRCL_Msk                           /*!< CRC Length */
5410 #define SPI_CR1_CRCNEXT_Pos         (12U)
5411 #define SPI_CR1_CRCNEXT_Msk         (0x1UL << SPI_CR1_CRCNEXT_Pos)             /*!< 0x00001000 */
5412 #define SPI_CR1_CRCNEXT             SPI_CR1_CRCNEXT_Msk                        /*!<Transmit CRC next                   */
5413 #define SPI_CR1_CRCEN_Pos           (13U)
5414 #define SPI_CR1_CRCEN_Msk           (0x1UL << SPI_CR1_CRCEN_Pos)               /*!< 0x00002000 */
5415 #define SPI_CR1_CRCEN               SPI_CR1_CRCEN_Msk                          /*!<Hardware CRC calculation enable     */
5416 #define SPI_CR1_BIDIOE_Pos          (14U)
5417 #define SPI_CR1_BIDIOE_Msk          (0x1UL << SPI_CR1_BIDIOE_Pos)              /*!< 0x00004000 */
5418 #define SPI_CR1_BIDIOE              SPI_CR1_BIDIOE_Msk                         /*!<Output enable in bidirectional mode */
5419 #define SPI_CR1_BIDIMODE_Pos        (15U)
5420 #define SPI_CR1_BIDIMODE_Msk        (0x1UL << SPI_CR1_BIDIMODE_Pos)            /*!< 0x00008000 */
5421 #define SPI_CR1_BIDIMODE            SPI_CR1_BIDIMODE_Msk                       /*!<Bidirectional data mode enable      */
5422 
5423 /*******************  Bit definition for SPI_CR2 register  ********************/
5424 #define SPI_CR2_RXDMAEN_Pos         (0U)
5425 #define SPI_CR2_RXDMAEN_Msk         (0x1UL << SPI_CR2_RXDMAEN_Pos)             /*!< 0x00000001 */
5426 #define SPI_CR2_RXDMAEN             SPI_CR2_RXDMAEN_Msk                        /*!< Rx Buffer DMA Enable */
5427 #define SPI_CR2_TXDMAEN_Pos         (1U)
5428 #define SPI_CR2_TXDMAEN_Msk         (0x1UL << SPI_CR2_TXDMAEN_Pos)             /*!< 0x00000002 */
5429 #define SPI_CR2_TXDMAEN             SPI_CR2_TXDMAEN_Msk                        /*!< Tx Buffer DMA Enable */
5430 #define SPI_CR2_SSOE_Pos            (2U)
5431 #define SPI_CR2_SSOE_Msk            (0x1UL << SPI_CR2_SSOE_Pos)                /*!< 0x00000004 */
5432 #define SPI_CR2_SSOE                SPI_CR2_SSOE_Msk                           /*!< SS Output Enable */
5433 #define SPI_CR2_NSSP_Pos            (3U)
5434 #define SPI_CR2_NSSP_Msk            (0x1UL << SPI_CR2_NSSP_Pos)                /*!< 0x00000008 */
5435 #define SPI_CR2_NSSP                SPI_CR2_NSSP_Msk                           /*!< NSS pulse management Enable */
5436 #define SPI_CR2_FRF_Pos             (4U)
5437 #define SPI_CR2_FRF_Msk             (0x1UL << SPI_CR2_FRF_Pos)                 /*!< 0x00000010 */
5438 #define SPI_CR2_FRF                 SPI_CR2_FRF_Msk                            /*!< Frame Format Enable */
5439 #define SPI_CR2_ERRIE_Pos           (5U)
5440 #define SPI_CR2_ERRIE_Msk           (0x1UL << SPI_CR2_ERRIE_Pos)               /*!< 0x00000020 */
5441 #define SPI_CR2_ERRIE               SPI_CR2_ERRIE_Msk                          /*!< Error Interrupt Enable */
5442 #define SPI_CR2_RXNEIE_Pos          (6U)
5443 #define SPI_CR2_RXNEIE_Msk          (0x1UL << SPI_CR2_RXNEIE_Pos)              /*!< 0x00000040 */
5444 #define SPI_CR2_RXNEIE              SPI_CR2_RXNEIE_Msk                         /*!< RX buffer Not Empty Interrupt Enable */
5445 #define SPI_CR2_TXEIE_Pos           (7U)
5446 #define SPI_CR2_TXEIE_Msk           (0x1UL << SPI_CR2_TXEIE_Pos)               /*!< 0x00000080 */
5447 #define SPI_CR2_TXEIE               SPI_CR2_TXEIE_Msk                          /*!< Tx buffer Empty Interrupt Enable */
5448 #define SPI_CR2_DS_Pos              (8U)
5449 #define SPI_CR2_DS_Msk              (0xFUL << SPI_CR2_DS_Pos)                  /*!< 0x00000F00 */
5450 #define SPI_CR2_DS                  SPI_CR2_DS_Msk                             /*!< DS[3:0] Data Size */
5451 #define SPI_CR2_DS_0                (0x1UL << SPI_CR2_DS_Pos)                  /*!< 0x00000100 */
5452 #define SPI_CR2_DS_1                (0x2UL << SPI_CR2_DS_Pos)                  /*!< 0x00000200 */
5453 #define SPI_CR2_DS_2                (0x4UL << SPI_CR2_DS_Pos)                  /*!< 0x00000400 */
5454 #define SPI_CR2_DS_3                (0x8UL << SPI_CR2_DS_Pos)                  /*!< 0x00000800 */
5455 #define SPI_CR2_FRXTH_Pos           (12U)
5456 #define SPI_CR2_FRXTH_Msk           (0x1UL << SPI_CR2_FRXTH_Pos)               /*!< 0x00001000 */
5457 #define SPI_CR2_FRXTH               SPI_CR2_FRXTH_Msk                          /*!< FIFO reception Threshold */
5458 #define SPI_CR2_LDMARX_Pos          (13U)
5459 #define SPI_CR2_LDMARX_Msk          (0x1UL << SPI_CR2_LDMARX_Pos)              /*!< 0x00002000 */
5460 #define SPI_CR2_LDMARX              SPI_CR2_LDMARX_Msk                         /*!< Last DMA transfer for reception */
5461 #define SPI_CR2_LDMATX_Pos          (14U)
5462 #define SPI_CR2_LDMATX_Msk          (0x1UL << SPI_CR2_LDMATX_Pos)              /*!< 0x00004000 */
5463 #define SPI_CR2_LDMATX              SPI_CR2_LDMATX_Msk                         /*!< Last DMA transfer for transmission */
5464 
5465 /********************  Bit definition for SPI_SR register  ********************/
5466 #define SPI_SR_RXNE_Pos             (0U)
5467 #define SPI_SR_RXNE_Msk             (0x1UL << SPI_SR_RXNE_Pos)                 /*!< 0x00000001 */
5468 #define SPI_SR_RXNE                 SPI_SR_RXNE_Msk                            /*!< Receive buffer Not Empty */
5469 #define SPI_SR_TXE_Pos              (1U)
5470 #define SPI_SR_TXE_Msk              (0x1UL << SPI_SR_TXE_Pos)                  /*!< 0x00000002 */
5471 #define SPI_SR_TXE                  SPI_SR_TXE_Msk                             /*!< Transmit buffer Empty */
5472 #define SPI_SR_CHSIDE_Pos           (2U)
5473 #define SPI_SR_CHSIDE_Msk           (0x1UL << SPI_SR_CHSIDE_Pos)               /*!< 0x00000004 */
5474 #define SPI_SR_CHSIDE               SPI_SR_CHSIDE_Msk                          /*!< Channel side */
5475 #define SPI_SR_UDR_Pos              (3U)
5476 #define SPI_SR_UDR_Msk              (0x1UL << SPI_SR_UDR_Pos)                  /*!< 0x00000008 */
5477 #define SPI_SR_UDR                  SPI_SR_UDR_Msk                             /*!< Underrun flag */
5478 #define SPI_SR_CRCERR_Pos           (4U)
5479 #define SPI_SR_CRCERR_Msk           (0x1UL << SPI_SR_CRCERR_Pos)               /*!< 0x00000010 */
5480 #define SPI_SR_CRCERR               SPI_SR_CRCERR_Msk                          /*!< CRC Error flag */
5481 #define SPI_SR_MODF_Pos             (5U)
5482 #define SPI_SR_MODF_Msk             (0x1UL << SPI_SR_MODF_Pos)                 /*!< 0x00000020 */
5483 #define SPI_SR_MODF                 SPI_SR_MODF_Msk                            /*!< Mode fault */
5484 #define SPI_SR_OVR_Pos              (6U)
5485 #define SPI_SR_OVR_Msk              (0x1UL << SPI_SR_OVR_Pos)                  /*!< 0x00000040 */
5486 #define SPI_SR_OVR                  SPI_SR_OVR_Msk                             /*!< Overrun flag */
5487 #define SPI_SR_BSY_Pos              (7U)
5488 #define SPI_SR_BSY_Msk              (0x1UL << SPI_SR_BSY_Pos)                  /*!< 0x00000080 */
5489 #define SPI_SR_BSY                  SPI_SR_BSY_Msk                             /*!< Busy flag */
5490 #define SPI_SR_FRE_Pos              (8U)
5491 #define SPI_SR_FRE_Msk              (0x1UL << SPI_SR_FRE_Pos)                  /*!< 0x00000100 */
5492 #define SPI_SR_FRE                  SPI_SR_FRE_Msk                             /*!< TI frame format error */
5493 #define SPI_SR_FRLVL_Pos            (9U)
5494 #define SPI_SR_FRLVL_Msk            (0x3UL << SPI_SR_FRLVL_Pos)                /*!< 0x00000600 */
5495 #define SPI_SR_FRLVL                SPI_SR_FRLVL_Msk                           /*!< FIFO Reception Level */
5496 #define SPI_SR_FRLVL_0              (0x1UL << SPI_SR_FRLVL_Pos)                /*!< 0x00000200 */
5497 #define SPI_SR_FRLVL_1              (0x2UL << SPI_SR_FRLVL_Pos)                /*!< 0x00000400 */
5498 #define SPI_SR_FTLVL_Pos            (11U)
5499 #define SPI_SR_FTLVL_Msk            (0x3UL << SPI_SR_FTLVL_Pos)                /*!< 0x00001800 */
5500 #define SPI_SR_FTLVL                SPI_SR_FTLVL_Msk                           /*!< FIFO Transmission Level */
5501 #define SPI_SR_FTLVL_0              (0x1UL << SPI_SR_FTLVL_Pos)                /*!< 0x00000800 */
5502 #define SPI_SR_FTLVL_1              (0x2UL << SPI_SR_FTLVL_Pos)                /*!< 0x00001000 */
5503 
5504 /********************  Bit definition for SPI_DR register  ********************/
5505 #define SPI_DR_DR_Pos               (0U)
5506 #define SPI_DR_DR_Msk               (0xFFFFUL << SPI_DR_DR_Pos)                /*!< 0x0000FFFF */
5507 #define SPI_DR_DR                   SPI_DR_DR_Msk                              /*!<Data Register           */
5508 
5509 /*******************  Bit definition for SPI_CRCPR register  ******************/
5510 #define SPI_CRCPR_CRCPOLY_Pos       (0U)
5511 #define SPI_CRCPR_CRCPOLY_Msk       (0xFFFFUL << SPI_CRCPR_CRCPOLY_Pos)        /*!< 0x0000FFFF */
5512 #define SPI_CRCPR_CRCPOLY           SPI_CRCPR_CRCPOLY_Msk                      /*!<CRC polynomial register */
5513 
5514 /******************  Bit definition for SPI_RXCRCR register  ******************/
5515 #define SPI_RXCRCR_RXCRC_Pos        (0U)
5516 #define SPI_RXCRCR_RXCRC_Msk        (0xFFFFUL << SPI_RXCRCR_RXCRC_Pos)         /*!< 0x0000FFFF */
5517 #define SPI_RXCRCR_RXCRC            SPI_RXCRCR_RXCRC_Msk                       /*!<Rx CRC Register         */
5518 
5519 /******************  Bit definition for SPI_TXCRCR register  ******************/
5520 #define SPI_TXCRCR_TXCRC_Pos        (0U)
5521 #define SPI_TXCRCR_TXCRC_Msk        (0xFFFFUL << SPI_TXCRCR_TXCRC_Pos)         /*!< 0x0000FFFF */
5522 #define SPI_TXCRCR_TXCRC            SPI_TXCRCR_TXCRC_Msk                       /*!<Tx CRC Register         */
5523 
5524 /******************  Bit definition for SPI_I2SCFGR register  *****************/
5525 #define SPI_I2SCFGR_CHLEN_Pos       (0U)
5526 #define SPI_I2SCFGR_CHLEN_Msk       (0x1UL << SPI_I2SCFGR_CHLEN_Pos)           /*!< 0x00000001 */
5527 #define SPI_I2SCFGR_CHLEN           SPI_I2SCFGR_CHLEN_Msk                      /*!<Channel length (number of bits per audio channel) */
5528 #define SPI_I2SCFGR_DATLEN_Pos      (1U)
5529 #define SPI_I2SCFGR_DATLEN_Msk      (0x3UL << SPI_I2SCFGR_DATLEN_Pos)          /*!< 0x00000006 */
5530 #define SPI_I2SCFGR_DATLEN          SPI_I2SCFGR_DATLEN_Msk                     /*!<DATLEN[1:0] bits (Data length to be transferred) */
5531 #define SPI_I2SCFGR_DATLEN_0        (0x1UL << SPI_I2SCFGR_DATLEN_Pos)          /*!< 0x00000002 */
5532 #define SPI_I2SCFGR_DATLEN_1        (0x2UL << SPI_I2SCFGR_DATLEN_Pos)          /*!< 0x00000004 */
5533 #define SPI_I2SCFGR_CKPOL_Pos       (3U)
5534 #define SPI_I2SCFGR_CKPOL_Msk       (0x1UL << SPI_I2SCFGR_CKPOL_Pos)           /*!< 0x00000008 */
5535 #define SPI_I2SCFGR_CKPOL           SPI_I2SCFGR_CKPOL_Msk                      /*!<steady state clock polarity */
5536 #define SPI_I2SCFGR_I2SSTD_Pos      (4U)
5537 #define SPI_I2SCFGR_I2SSTD_Msk      (0x3UL << SPI_I2SCFGR_I2SSTD_Pos)          /*!< 0x00000030 */
5538 #define SPI_I2SCFGR_I2SSTD          SPI_I2SCFGR_I2SSTD_Msk                     /*!<I2SSTD[1:0] bits (I2S standard selection) */
5539 #define SPI_I2SCFGR_I2SSTD_0        (0x1UL << SPI_I2SCFGR_I2SSTD_Pos)          /*!< 0x00000010 */
5540 #define SPI_I2SCFGR_I2SSTD_1        (0x2UL << SPI_I2SCFGR_I2SSTD_Pos)          /*!< 0x00000020 */
5541 #define SPI_I2SCFGR_PCMSYNC_Pos     (7U)
5542 #define SPI_I2SCFGR_PCMSYNC_Msk     (0x1UL << SPI_I2SCFGR_PCMSYNC_Pos)         /*!< 0x00000080 */
5543 #define SPI_I2SCFGR_PCMSYNC         SPI_I2SCFGR_PCMSYNC_Msk                    /*!<PCM frame synchronization */
5544 #define SPI_I2SCFGR_I2SCFG_Pos      (8U)
5545 #define SPI_I2SCFGR_I2SCFG_Msk      (0x3UL << SPI_I2SCFGR_I2SCFG_Pos)          /*!< 0x00000300 */
5546 #define SPI_I2SCFGR_I2SCFG          SPI_I2SCFGR_I2SCFG_Msk                     /*!<I2SCFG[1:0] bits (I2S configuration mode) */
5547 #define SPI_I2SCFGR_I2SCFG_0        (0x1UL << SPI_I2SCFGR_I2SCFG_Pos)          /*!< 0x00000100 */
5548 #define SPI_I2SCFGR_I2SCFG_1        (0x2UL << SPI_I2SCFGR_I2SCFG_Pos)          /*!< 0x00000200 */
5549 #define SPI_I2SCFGR_I2SE_Pos        (10U)
5550 #define SPI_I2SCFGR_I2SE_Msk        (0x1UL << SPI_I2SCFGR_I2SE_Pos)            /*!< 0x00000400 */
5551 #define SPI_I2SCFGR_I2SE            SPI_I2SCFGR_I2SE_Msk                       /*!<I2S Enable */
5552 #define SPI_I2SCFGR_I2SMOD_Pos      (11U)
5553 #define SPI_I2SCFGR_I2SMOD_Msk      (0x1UL << SPI_I2SCFGR_I2SMOD_Pos)          /*!< 0x00000800 */
5554 #define SPI_I2SCFGR_I2SMOD          SPI_I2SCFGR_I2SMOD_Msk                     /*!<I2S mode selection */
5555 #define SPI_I2SCFGR_ASTRTEN_Pos     (12U)
5556 #define SPI_I2SCFGR_ASTRTEN_Msk     (0x1UL << SPI_I2SCFGR_ASTRTEN_Pos)         /*!< 0x00001000 */
5557 #define SPI_I2SCFGR_ASTRTEN         SPI_I2SCFGR_ASTRTEN_Msk                    /*!<Asynchronous start enable */
5558 
5559 /******************  Bit definition for SPI_I2SPR register  *******************/
5560 #define SPI_I2SPR_I2SDIV_Pos        (0U)
5561 #define SPI_I2SPR_I2SDIV_Msk        (0xFFUL << SPI_I2SPR_I2SDIV_Pos)           /*!< 0x000000FF */
5562 #define SPI_I2SPR_I2SDIV            SPI_I2SPR_I2SDIV_Msk                       /*!<I2S Linear prescaler */
5563 #define SPI_I2SPR_ODD_Pos           (8U)
5564 #define SPI_I2SPR_ODD_Msk           (0x1UL << SPI_I2SPR_ODD_Pos)               /*!< 0x00000100 */
5565 #define SPI_I2SPR_ODD               SPI_I2SPR_ODD_Msk                          /*!<Odd factor for the prescaler */
5566 #define SPI_I2SPR_MCKOE_Pos         (9U)
5567 #define SPI_I2SPR_MCKOE_Msk         (0x1UL << SPI_I2SPR_MCKOE_Pos)             /*!< 0x00000200 */
5568 #define SPI_I2SPR_MCKOE             SPI_I2SPR_MCKOE_Msk                        /*!<Master Clock Output Enable */
5569 
5570 /******************************************************************************/
5571 /*                                                                            */
5572 /*                                 SYSCFG                                     */
5573 /*                                                                            */
5574 /******************************************************************************/
5575 /*****************  Bit definition for SYSCFG_CFGR1 register  ****************/
5576 #define SYSCFG_CFGR1_MEM_MODE_Pos             (0U)
5577 #define SYSCFG_CFGR1_MEM_MODE_Msk             (0x3UL << SYSCFG_CFGR1_MEM_MODE_Pos) /*!< 0x00000003 */
5578 #define SYSCFG_CFGR1_MEM_MODE                 SYSCFG_CFGR1_MEM_MODE_Msk            /*!< SYSCFG_Memory Remap Config */
5579 #define SYSCFG_CFGR1_MEM_MODE_0               (0x1UL << SYSCFG_CFGR1_MEM_MODE_Pos) /*!< 0x00000001 */
5580 #define SYSCFG_CFGR1_MEM_MODE_1               (0x2UL << SYSCFG_CFGR1_MEM_MODE_Pos) /*!< 0x00000002 */
5581 #define SYSCFG_CFGR1_PA11_RMP_Pos             (3U)
5582 #define SYSCFG_CFGR1_PA11_RMP_Msk             (0x1UL << SYSCFG_CFGR1_PA11_RMP_Pos) /*!< 0x00000008 */
5583 #define SYSCFG_CFGR1_PA11_RMP                 SYSCFG_CFGR1_PA11_RMP_Msk            /*!< PA11 Remap */
5584 #define SYSCFG_CFGR1_PA12_RMP_Pos             (4U)
5585 #define SYSCFG_CFGR1_PA12_RMP_Msk             (0x1UL << SYSCFG_CFGR1_PA12_RMP_Pos) /*!< 0x00000010 */
5586 #define SYSCFG_CFGR1_PA12_RMP                 SYSCFG_CFGR1_PA12_RMP_Msk            /*!< PA12 Remap */
5587 #define SYSCFG_CFGR1_IR_POL_Pos               (5U)
5588 #define SYSCFG_CFGR1_IR_POL_Msk               (0x1UL << SYSCFG_CFGR1_IR_POL_Pos) /*!< 0x00000020 */
5589 #define SYSCFG_CFGR1_IR_POL                   SYSCFG_CFGR1_IR_POL_Msk            /*!< IROut Polarity Selection */
5590 #define SYSCFG_CFGR1_IR_MOD_Pos               (6U)
5591 #define SYSCFG_CFGR1_IR_MOD_Msk               (0x3UL << SYSCFG_CFGR1_IR_MOD_Pos) /*!< 0x000000C0 */
5592 #define SYSCFG_CFGR1_IR_MOD                   SYSCFG_CFGR1_IR_MOD_Msk            /*!< IRDA Modulation Envelope signal source selection */
5593 #define SYSCFG_CFGR1_IR_MOD_0                 (0x1UL << SYSCFG_CFGR1_IR_MOD_Pos) /*!< 0x00000040 */
5594 #define SYSCFG_CFGR1_IR_MOD_1                 (0x2UL << SYSCFG_CFGR1_IR_MOD_Pos) /*!< 0x00000080 */
5595 #define SYSCFG_CFGR1_I2C_PB6_FMP_Pos          (16U)
5596 #define SYSCFG_CFGR1_I2C_PB6_FMP_Msk          (0x1UL << SYSCFG_CFGR1_I2C_PB6_FMP_Pos)  /*!< 0x00010000 */
5597 #define SYSCFG_CFGR1_I2C_PB6_FMP              SYSCFG_CFGR1_I2C_PB6_FMP_Msk             /*!< I2C PB6 Fast mode plus */
5598 #define SYSCFG_CFGR1_I2C_PB7_FMP_Pos          (17U)
5599 #define SYSCFG_CFGR1_I2C_PB7_FMP_Msk          (0x1UL << SYSCFG_CFGR1_I2C_PB7_FMP_Pos)  /*!< 0x00020000 */
5600 #define SYSCFG_CFGR1_I2C_PB7_FMP              SYSCFG_CFGR1_I2C_PB7_FMP_Msk             /*!< I2C PB7 Fast mode plus */
5601 #define SYSCFG_CFGR1_I2C_PB8_FMP_Pos          (18U)
5602 #define SYSCFG_CFGR1_I2C_PB8_FMP_Msk          (0x1UL << SYSCFG_CFGR1_I2C_PB8_FMP_Pos)  /*!< 0x00040000 */
5603 #define SYSCFG_CFGR1_I2C_PB8_FMP              SYSCFG_CFGR1_I2C_PB8_FMP_Msk             /*!< I2C PB8 Fast mode plus */
5604 #define SYSCFG_CFGR1_I2C_PB9_FMP_Pos          (19U)
5605 #define SYSCFG_CFGR1_I2C_PB9_FMP_Msk          (0x1UL << SYSCFG_CFGR1_I2C_PB9_FMP_Pos)  /*!< 0x00080000 */
5606 #define SYSCFG_CFGR1_I2C_PB9_FMP              SYSCFG_CFGR1_I2C_PB9_FMP_Msk             /*!< I2C PB9 Fast mode plus */
5607 #define SYSCFG_CFGR1_I2C1_FMP_Pos             (20U)
5608 #define SYSCFG_CFGR1_I2C1_FMP_Msk             (0x1UL << SYSCFG_CFGR1_I2C1_FMP_Pos)     /*!< 0x00100000 */
5609 #define SYSCFG_CFGR1_I2C1_FMP                 SYSCFG_CFGR1_I2C1_FMP_Msk                /*!< Enable Fast Mode Plus on PB10, PB11, PF6 and PF7  */
5610 #define SYSCFG_CFGR1_I2C2_FMP_Pos             (21U)
5611 #define SYSCFG_CFGR1_I2C2_FMP_Msk             (0x1UL << SYSCFG_CFGR1_I2C2_FMP_Pos)     /*!< 0x00200000 */
5612 #define SYSCFG_CFGR1_I2C2_FMP                 SYSCFG_CFGR1_I2C2_FMP_Msk                /*!< Enable I2C2 Fast mode plus  */
5613 #define SYSCFG_CFGR1_I2C_PA9_FMP_Pos          (22U)
5614 #define SYSCFG_CFGR1_I2C_PA9_FMP_Msk          (0x1UL << SYSCFG_CFGR1_I2C_PA9_FMP_Pos)  /*!< 0x00400000 */
5615 #define SYSCFG_CFGR1_I2C_PA9_FMP              SYSCFG_CFGR1_I2C_PA9_FMP_Msk             /*!< Enable Fast Mode Plus on PA9  */
5616 #define SYSCFG_CFGR1_I2C_PA10_FMP_Pos         (23U)
5617 #define SYSCFG_CFGR1_I2C_PA10_FMP_Msk         (0x1UL << SYSCFG_CFGR1_I2C_PA10_FMP_Pos) /*!< 0x00800000 */
5618 #define SYSCFG_CFGR1_I2C_PA10_FMP             SYSCFG_CFGR1_I2C_PA10_FMP_Msk            /*!< Enable Fast Mode Plus on PA10 */
5619 #define SYSCFG_CFGR1_I2C_PC14_FMP_Pos         (24U)
5620 #define SYSCFG_CFGR1_I2C_PC14_FMP_Msk         (0x1UL << SYSCFG_CFGR1_I2C_PC14_FMP_Pos) /*!< 0x01000000 */
5621 #define SYSCFG_CFGR1_I2C_PC14_FMP             SYSCFG_CFGR1_I2C_PC14_FMP_Msk            /*!< Enable Fast Mode Plus on PC14 */
5622 
5623 /******************  Bit definition for SYSCFG_CFGR2 register  ****************/
5624 #define SYSCFG_CFGR2_CLL_Pos                  (0U)
5625 #define SYSCFG_CFGR2_CLL_Msk                  (0x1UL << SYSCFG_CFGR2_CLL_Pos)          /*!< 0x00000001 */
5626 #define SYSCFG_CFGR2_CLL                      SYSCFG_CFGR2_CLL_Msk                     /*!< Enables and locks the LOCKUP (Hardfault) output of CortexM0 with Break Input of TIMER1/16/17 */
5627 
5628 /******************  Bit definition for SYSCFG_CFGR3 register  ****************/
5629 #define SYSCFG_CFGR3_PINMUX0_Pos             (0U)
5630 #define SYSCFG_CFGR3_PINMUX0_Msk             (0x3UL << SYSCFG_CFGR3_PINMUX0_Pos)      /*!< 0x00000003 */
5631 #define SYSCFG_CFGR3_PINMUX0                 SYSCFG_CFGR3_PINMUX0_Msk                 /*!< Pin GPIO multiplexer 0 */
5632 #define SYSCFG_CFGR3_PINMUX0_0               (0x1UL << SYSCFG_CFGR3_PINMUX0_Pos)      /*!< 0x00000001 */
5633 #define SYSCFG_CFGR3_PINMUX0_1               (0x2UL << SYSCFG_CFGR3_PINMUX0_Pos)      /*!< 0x00000002 */
5634 #define SYSCFG_CFGR3_PINMUX1_Pos             (2U)
5635 #define SYSCFG_CFGR3_PINMUX1_Msk             (0x3UL << SYSCFG_CFGR3_PINMUX1_Pos)      /*!< 0x0000000C */
5636 #define SYSCFG_CFGR3_PINMUX1                 SYSCFG_CFGR3_PINMUX1_Msk                 /*!< Pin GPIO multiplexer 1 */
5637 #define SYSCFG_CFGR3_PINMUX1_0               (0x1UL << SYSCFG_CFGR3_PINMUX1_Pos)      /*!< 0x00000004 */
5638 #define SYSCFG_CFGR3_PINMUX1_1               (0x2UL << SYSCFG_CFGR3_PINMUX1_Pos)      /*!< 0x00000008 */
5639 #define SYSCFG_CFGR3_PINMUX2_Pos             (4U)
5640 #define SYSCFG_CFGR3_PINMUX2_Msk             (0x3UL << SYSCFG_CFGR3_PINMUX2_Pos)      /*!< 0x00000030 */
5641 #define SYSCFG_CFGR3_PINMUX2                 SYSCFG_CFGR3_PINMUX2_Msk                 /*!< Pin GPIO multiplexer 2 */
5642 #define SYSCFG_CFGR3_PINMUX2_0               (0x1UL << SYSCFG_CFGR3_PINMUX2_Pos)      /*!< 0x00000010 */
5643 #define SYSCFG_CFGR3_PINMUX2_1               (0x2UL << SYSCFG_CFGR3_PINMUX2_Pos)      /*!< 0x00000020 */
5644 #define SYSCFG_CFGR3_PINMUX3_Pos             (6U)
5645 #define SYSCFG_CFGR3_PINMUX3_Msk             (0x3UL << SYSCFG_CFGR3_PINMUX3_Pos)      /*!< 0x000000C0 */
5646 #define SYSCFG_CFGR3_PINMUX3                 SYSCFG_CFGR3_PINMUX3_Msk                 /*!< Pin GPIO multiplexer 3 */
5647 #define SYSCFG_CFGR3_PINMUX3_0               (0x1UL << SYSCFG_CFGR3_PINMUX3_Pos)      /*!< 0x00000040 */
5648 #define SYSCFG_CFGR3_PINMUX3_1               (0x2UL << SYSCFG_CFGR3_PINMUX3_Pos)      /*!< 0x00000080 */
5649 
5650 /*****************  Bit definition for SYSCFG_ITLINEx ISR Wrapper register  ****************/
5651 #define SYSCFG_ITLINE0_SR_WWDG_Pos            (0U)
5652 #define SYSCFG_ITLINE0_SR_WWDG_Msk            (0x1UL << SYSCFG_ITLINE0_SR_WWDG_Pos) /*!< 0x00000001 */
5653 #define SYSCFG_ITLINE0_SR_WWDG                SYSCFG_ITLINE0_SR_WWDG_Msk            /*!< EWDG interrupt */
5654 #define SYSCFG_ITLINE1_SR_PVM_VDDIO2_OUT_Pos  (1U)
5655 #define SYSCFG_ITLINE1_SR_PVM_VDDIO2_OUT_Msk  (0x1UL << SYSCFG_ITLINE1_SR_PVM_VDDIO2_OUT_Pos) /*!< 0x00000002 */
5656 #define SYSCFG_ITLINE1_SR_PVM_VDDIO2_OUT      SYSCFG_ITLINE1_SR_PVM_VDDIO2_OUT_Msk            /*!< PVM_VDDIO2_OUT interrupt */
5657 #define SYSCFG_ITLINE2_SR_RTC_Pos             (1U)
5658 #define SYSCFG_ITLINE2_SR_RTC_Msk             (0x1UL << SYSCFG_ITLINE2_SR_RTC_Pos) /*!< 0x00000002 */
5659 #define SYSCFG_ITLINE2_SR_RTC                 SYSCFG_ITLINE2_SR_RTC_Msk            /*!< RTC interrupt */
5660 #define SYSCFG_ITLINE3_SR_FLASH_ITF_Pos       (1U)
5661 #define SYSCFG_ITLINE3_SR_FLASH_ITF_Msk       (0x1UL << SYSCFG_ITLINE3_SR_FLASH_ITF_Pos) /*!< 0x00000002 */
5662 #define SYSCFG_ITLINE3_SR_FLASH_ITF           SYSCFG_ITLINE3_SR_FLASH_ITF_Msk            /*!< FLASH ITF interrupt */
5663 #define SYSCFG_ITLINE4_SR_RCC_Pos             (0U)
5664 #define SYSCFG_ITLINE4_SR_RCC_Msk             (0x1UL << SYSCFG_ITLINE4_SR_RCC_Pos)        /*!< 0x00000001 */
5665 #define SYSCFG_ITLINE4_SR_RCC                 SYSCFG_ITLINE4_SR_RCC_Msk                   /*!< RCC interrupt */
5666 #define SYSCFG_ITLINE4_SR_CRS_Pos             (1U)
5667 #define SYSCFG_ITLINE4_SR_CRS_Msk             (0x1UL << SYSCFG_ITLINE4_SR_CRS_Pos)        /*!< 0x00000002 */
5668 #define SYSCFG_ITLINE4_SR_CRS                 SYSCFG_ITLINE4_SR_CRS_Msk                   /*!< CRS interrupt */
5669 #define SYSCFG_ITLINE5_SR_EXTI0_Pos           (0U)
5670 #define SYSCFG_ITLINE5_SR_EXTI0_Msk           (0x1UL << SYSCFG_ITLINE5_SR_EXTI0_Pos) /*!< 0x00000001 */
5671 #define SYSCFG_ITLINE5_SR_EXTI0               SYSCFG_ITLINE5_SR_EXTI0_Msk            /*!< External Interrupt 0 */
5672 #define SYSCFG_ITLINE5_SR_EXTI1_Pos           (1U)
5673 #define SYSCFG_ITLINE5_SR_EXTI1_Msk           (0x1UL << SYSCFG_ITLINE5_SR_EXTI1_Pos) /*!< 0x00000002 */
5674 #define SYSCFG_ITLINE5_SR_EXTI1               SYSCFG_ITLINE5_SR_EXTI1_Msk            /*!< External Interrupt 1 */
5675 #define SYSCFG_ITLINE6_SR_EXTI2_Pos           (0U)
5676 #define SYSCFG_ITLINE6_SR_EXTI2_Msk           (0x1UL << SYSCFG_ITLINE6_SR_EXTI2_Pos) /*!< 0x00000001 */
5677 #define SYSCFG_ITLINE6_SR_EXTI2               SYSCFG_ITLINE6_SR_EXTI2_Msk            /*!< External Interrupt 2 */
5678 #define SYSCFG_ITLINE6_SR_EXTI3_Pos           (1U)
5679 #define SYSCFG_ITLINE6_SR_EXTI3_Msk           (0x1UL << SYSCFG_ITLINE6_SR_EXTI3_Pos) /*!< 0x00000002 */
5680 #define SYSCFG_ITLINE6_SR_EXTI3               SYSCFG_ITLINE6_SR_EXTI3_Msk            /*!< External Interrupt 3 */
5681 #define SYSCFG_ITLINE7_SR_EXTI4_Pos           (0U)
5682 #define SYSCFG_ITLINE7_SR_EXTI4_Msk           (0x1UL << SYSCFG_ITLINE7_SR_EXTI4_Pos) /*!< 0x00000001 */
5683 #define SYSCFG_ITLINE7_SR_EXTI4               SYSCFG_ITLINE7_SR_EXTI4_Msk            /*!< External Interrupt 4 */
5684 #define SYSCFG_ITLINE7_SR_EXTI5_Pos           (1U)
5685 #define SYSCFG_ITLINE7_SR_EXTI5_Msk           (0x1UL << SYSCFG_ITLINE7_SR_EXTI5_Pos) /*!< 0x00000002 */
5686 #define SYSCFG_ITLINE7_SR_EXTI5               SYSCFG_ITLINE7_SR_EXTI5_Msk            /*!< External Interrupt 5 */
5687 #define SYSCFG_ITLINE7_SR_EXTI6_Pos           (2U)
5688 #define SYSCFG_ITLINE7_SR_EXTI6_Msk           (0x1UL << SYSCFG_ITLINE7_SR_EXTI6_Pos) /*!< 0x00000004 */
5689 #define SYSCFG_ITLINE7_SR_EXTI6               SYSCFG_ITLINE7_SR_EXTI6_Msk            /*!< External Interrupt 6 */
5690 #define SYSCFG_ITLINE7_SR_EXTI7_Pos           (3U)
5691 #define SYSCFG_ITLINE7_SR_EXTI7_Msk           (0x1UL << SYSCFG_ITLINE7_SR_EXTI7_Pos) /*!< 0x00000008 */
5692 #define SYSCFG_ITLINE7_SR_EXTI7               SYSCFG_ITLINE7_SR_EXTI7_Msk            /*!< External Interrupt 7 */
5693 #define SYSCFG_ITLINE7_SR_EXTI8_Pos           (4U)
5694 #define SYSCFG_ITLINE7_SR_EXTI8_Msk           (0x1UL << SYSCFG_ITLINE7_SR_EXTI8_Pos) /*!< 0x00000010 */
5695 #define SYSCFG_ITLINE7_SR_EXTI8               SYSCFG_ITLINE7_SR_EXTI8_Msk            /*!< External Interrupt 8 */
5696 #define SYSCFG_ITLINE7_SR_EXTI9_Pos           (5U)
5697 #define SYSCFG_ITLINE7_SR_EXTI9_Msk           (0x1UL << SYSCFG_ITLINE7_SR_EXTI9_Pos) /*!< 0x00000020 */
5698 #define SYSCFG_ITLINE7_SR_EXTI9               SYSCFG_ITLINE7_SR_EXTI9_Msk            /*!< External Interrupt 9 */
5699 #define SYSCFG_ITLINE7_SR_EXTI10_Pos          (6U)
5700 #define SYSCFG_ITLINE7_SR_EXTI10_Msk          (0x1UL << SYSCFG_ITLINE7_SR_EXTI10_Pos) /*!< 0x00000040 */
5701 #define SYSCFG_ITLINE7_SR_EXTI10              SYSCFG_ITLINE7_SR_EXTI10_Msk            /*!< External Interrupt 10 */
5702 #define SYSCFG_ITLINE7_SR_EXTI11_Pos          (7U)
5703 #define SYSCFG_ITLINE7_SR_EXTI11_Msk          (0x1UL << SYSCFG_ITLINE7_SR_EXTI11_Pos) /*!< 0x00000080 */
5704 #define SYSCFG_ITLINE7_SR_EXTI11              SYSCFG_ITLINE7_SR_EXTI11_Msk            /*!< External Interrupt 11 */
5705 #define SYSCFG_ITLINE7_SR_EXTI12_Pos          (8U)
5706 #define SYSCFG_ITLINE7_SR_EXTI12_Msk          (0x1UL << SYSCFG_ITLINE7_SR_EXTI12_Pos) /*!< 0x00000100 */
5707 #define SYSCFG_ITLINE7_SR_EXTI12              SYSCFG_ITLINE7_SR_EXTI12_Msk            /*!< External Interrupt 12 */
5708 #define SYSCFG_ITLINE7_SR_EXTI13_Pos          (9U)
5709 #define SYSCFG_ITLINE7_SR_EXTI13_Msk          (0x1UL << SYSCFG_ITLINE7_SR_EXTI13_Pos) /*!< 0x00000200 */
5710 #define SYSCFG_ITLINE7_SR_EXTI13              SYSCFG_ITLINE7_SR_EXTI13_Msk            /*!< External Interrupt 13 */
5711 #define SYSCFG_ITLINE7_SR_EXTI14_Pos          (10U)
5712 #define SYSCFG_ITLINE7_SR_EXTI14_Msk          (0x1UL << SYSCFG_ITLINE7_SR_EXTI14_Pos) /*!< 0x00000400 */
5713 #define SYSCFG_ITLINE7_SR_EXTI14              SYSCFG_ITLINE7_SR_EXTI14_Msk            /*!< External Interrupt 14 */
5714 #define SYSCFG_ITLINE7_SR_EXTI15_Pos          (11U)
5715 #define SYSCFG_ITLINE7_SR_EXTI15_Msk          (0x1UL << SYSCFG_ITLINE7_SR_EXTI15_Pos) /*!< 0x00000800 */
5716 #define SYSCFG_ITLINE7_SR_EXTI15              SYSCFG_ITLINE7_SR_EXTI15_Msk            /*!< External Interrupt 15 */
5717 #define SYSCFG_ITLINE8_SR_USB_Pos             (0U)
5718 #define SYSCFG_ITLINE8_SR_USB_Msk             (0x1UL << SYSCFG_ITLINE8_SR_USB_Pos)      /*!< 0x00000001 */
5719 #define SYSCFG_ITLINE8_SR_USB                 SYSCFG_ITLINE8_SR_USB_Msk                 /*!< USB Interrupt */
5720 #define SYSCFG_ITLINE9_SR_DMA1_CH1_Pos        (0U)
5721 #define SYSCFG_ITLINE9_SR_DMA1_CH1_Msk        (0x1UL << SYSCFG_ITLINE9_SR_DMA1_CH1_Pos) /*!< 0x00000001 */
5722 #define SYSCFG_ITLINE9_SR_DMA1_CH1            SYSCFG_ITLINE9_SR_DMA1_CH1_Msk            /*!< DMA1 Channel 1 Interrupt */
5723 #define SYSCFG_ITLINE10_SR_DMA1_CH2_Pos       (0U)
5724 #define SYSCFG_ITLINE10_SR_DMA1_CH2_Msk       (0x1UL << SYSCFG_ITLINE10_SR_DMA1_CH2_Pos) /*!< 0x00000001 */
5725 #define SYSCFG_ITLINE10_SR_DMA1_CH2           SYSCFG_ITLINE10_SR_DMA1_CH2_Msk            /*!< DMA1 Channel 2 Interrupt */
5726 #define SYSCFG_ITLINE10_SR_DMA1_CH3_Pos       (1U)
5727 #define SYSCFG_ITLINE10_SR_DMA1_CH3_Msk       (0x1UL << SYSCFG_ITLINE10_SR_DMA1_CH3_Pos) /*!< 0x00000002 */
5728 #define SYSCFG_ITLINE10_SR_DMA1_CH3           SYSCFG_ITLINE10_SR_DMA1_CH3_Msk            /*!< DMA1 Channel 3 Interrupt */
5729 #define SYSCFG_ITLINE11_SR_DMAMUX1_Pos        (0U)
5730 #define SYSCFG_ITLINE11_SR_DMAMUX1_Msk        (0x1UL << SYSCFG_ITLINE11_SR_DMAMUX1_Pos)  /*!< 0x00000001 */
5731 #define SYSCFG_ITLINE11_SR_DMAMUX1            SYSCFG_ITLINE11_SR_DMAMUX1_Msk             /*!< DMAMUX Interrupt */
5732 #define SYSCFG_ITLINE11_SR_DMA1_CH4_Pos       (1U)
5733 #define SYSCFG_ITLINE11_SR_DMA1_CH4_Msk       (0x1UL << SYSCFG_ITLINE11_SR_DMA1_CH4_Pos)    /*!< 0x00000002 */
5734 #define SYSCFG_ITLINE11_SR_DMA1_CH4           SYSCFG_ITLINE11_SR_DMA1_CH4_Msk               /*!< DMA1 CH4 Interrupt */
5735 #define SYSCFG_ITLINE11_SR_DMA1_CH5_Pos       (2U)
5736 #define SYSCFG_ITLINE11_SR_DMA1_CH5_Msk       (0x1UL << SYSCFG_ITLINE11_SR_DMA1_CH5_Pos)    /*!< 0x00000004 */
5737 #define SYSCFG_ITLINE11_SR_DMA1_CH5           SYSCFG_ITLINE11_SR_DMA1_CH5_Msk               /*!< DMA1 CH5 Interrupt */
5738 #define SYSCFG_ITLINE12_SR_ADC_Pos            (0U)
5739 #define SYSCFG_ITLINE12_SR_ADC_Msk            (0x1UL << SYSCFG_ITLINE12_SR_ADC_Pos) /*!< 0x00000001 */
5740 #define SYSCFG_ITLINE12_SR_ADC                SYSCFG_ITLINE12_SR_ADC_Msk            /*!< ADC Interrupt */
5741 #define SYSCFG_ITLINE13_SR_TIM1_CCU_Pos       (0U)
5742 #define SYSCFG_ITLINE13_SR_TIM1_CCU_Msk       (0x1UL << SYSCFG_ITLINE13_SR_TIM1_CCU_Pos) /*!< 0x00000001 */
5743 #define SYSCFG_ITLINE13_SR_TIM1_CCU           SYSCFG_ITLINE13_SR_TIM1_CCU_Msk            /*!< TIM1 CCU Interrupt */
5744 #define SYSCFG_ITLINE13_SR_TIM1_TRG_Pos       (1U)
5745 #define SYSCFG_ITLINE13_SR_TIM1_TRG_Msk       (0x1UL << SYSCFG_ITLINE13_SR_TIM1_TRG_Pos) /*!< 0x00000002 */
5746 #define SYSCFG_ITLINE13_SR_TIM1_TRG           SYSCFG_ITLINE13_SR_TIM1_TRG_Msk            /*!< TIM1 TRG Interrupt */
5747 #define SYSCFG_ITLINE13_SR_TIM1_UPD_Pos       (2U)
5748 #define SYSCFG_ITLINE13_SR_TIM1_UPD_Msk       (0x1UL << SYSCFG_ITLINE13_SR_TIM1_UPD_Pos) /*!< 0x00000004 */
5749 #define SYSCFG_ITLINE13_SR_TIM1_UPD           SYSCFG_ITLINE13_SR_TIM1_UPD_Msk            /*!< TIM1 UPD Interrupt */
5750 #define SYSCFG_ITLINE13_SR_TIM1_BRK_Pos       (3U)
5751 #define SYSCFG_ITLINE13_SR_TIM1_BRK_Msk       (0x1UL << SYSCFG_ITLINE13_SR_TIM1_BRK_Pos) /*!< 0x00000008 */
5752 #define SYSCFG_ITLINE13_SR_TIM1_BRK           SYSCFG_ITLINE13_SR_TIM1_BRK_Msk            /*!< TIM1 BRK Interrupt */
5753 #define SYSCFG_ITLINE14_SR_TIM1_CC_Pos        (0U)
5754 #define SYSCFG_ITLINE14_SR_TIM1_CC_Msk        (0x1UL << SYSCFG_ITLINE14_SR_TIM1_CC_Pos) /*!< 0x00000001 */
5755 #define SYSCFG_ITLINE14_SR_TIM1_CC            SYSCFG_ITLINE14_SR_TIM1_CC_Msk            /*!< TIM1 CC Interrupt */
5756 #define SYSCFG_ITLINE15_SR_TIM2_Pos           (0U)
5757 #define SYSCFG_ITLINE15_SR_TIM2_Msk           (0x1UL << SYSCFG_ITLINE15_SR_TIM2_Pos)      /*!< 0x00000001 */
5758 #define SYSCFG_ITLINE15_SR_TIM2               SYSCFG_ITLINE15_SR_TIM2_Msk                 /*!< TIM2 GLB Interrupt */
5759 #define SYSCFG_ITLINE16_SR_TIM3_GLB_Pos       (0U)
5760 #define SYSCFG_ITLINE16_SR_TIM3_GLB_Msk       (0x1UL << SYSCFG_ITLINE16_SR_TIM3_GLB_Pos) /*!< 0x00000001 */
5761 #define SYSCFG_ITLINE16_SR_TIM3_GLB           SYSCFG_ITLINE16_SR_TIM3_GLB_Msk            /*!< TIM3 GLB Interrupt */
5762 #define SYSCFG_ITLINE19_SR_TIM14_GLB_Pos      (0U)
5763 #define SYSCFG_ITLINE19_SR_TIM14_GLB_Msk      (0x1UL << SYSCFG_ITLINE19_SR_TIM14_GLB_Pos) /*!< 0x00000001 */
5764 #define SYSCFG_ITLINE19_SR_TIM14_GLB          SYSCFG_ITLINE19_SR_TIM14_GLB_Msk            /*!< TIM14 GLB Interrupt */
5765 #define SYSCFG_ITLINE21_SR_TIM16_GLB_Pos      (0U)
5766 #define SYSCFG_ITLINE21_SR_TIM16_GLB_Msk      (0x1UL << SYSCFG_ITLINE21_SR_TIM16_GLB_Pos) /*!< 0x00000001 */
5767 #define SYSCFG_ITLINE21_SR_TIM16_GLB          SYSCFG_ITLINE21_SR_TIM16_GLB_Msk            /*!< TIM16 GLB Interrupt */
5768 #define SYSCFG_ITLINE22_SR_TIM17_GLB_Pos      (0U)
5769 #define SYSCFG_ITLINE22_SR_TIM17_GLB_Msk      (0x1UL << SYSCFG_ITLINE22_SR_TIM17_GLB_Pos) /*!< 0x00000001 */
5770 #define SYSCFG_ITLINE22_SR_TIM17_GLB          SYSCFG_ITLINE22_SR_TIM17_GLB_Msk            /*!< TIM17 GLB Interrupt */
5771 #define SYSCFG_ITLINE23_SR_I2C1_GLB_Pos       (0U)
5772 #define SYSCFG_ITLINE23_SR_I2C1_GLB_Msk       (0x1UL << SYSCFG_ITLINE23_SR_I2C1_GLB_Pos) /*!< 0x00000001 */
5773 #define SYSCFG_ITLINE23_SR_I2C1_GLB           SYSCFG_ITLINE23_SR_I2C1_GLB_Msk            /*!< I2C1 GLB Interrupt */
5774 #define SYSCFG_ITLINE24_SR_I2C2_GLB_Pos       (0U)
5775 #define SYSCFG_ITLINE24_SR_I2C2_GLB_Msk       (0x1UL << SYSCFG_ITLINE24_SR_I2C2_GLB_Pos) /*!< 0x00000001 */
5776 #define SYSCFG_ITLINE24_SR_I2C2_GLB           SYSCFG_ITLINE24_SR_I2C2_GLB_Msk  /*!< I2C2 GLB Interrupt  -> exti[22]*/
5777 #define SYSCFG_ITLINE25_SR_SPI1_Pos           (0U)
5778 #define SYSCFG_ITLINE25_SR_SPI1_Msk           (0x1UL << SYSCFG_ITLINE25_SR_SPI1_Pos) /*!< 0x00000001 */
5779 #define SYSCFG_ITLINE25_SR_SPI1               SYSCFG_ITLINE25_SR_SPI1_Msk            /*!< SPI1 Interrupt */
5780 #define SYSCFG_ITLINE26_SR_SPI2_Pos           (0U)
5781 #define SYSCFG_ITLINE26_SR_SPI2_Msk           (0x1UL << SYSCFG_ITLINE26_SR_SPI2_Pos)      /*!< 0x00000001 */
5782 #define SYSCFG_ITLINE26_SR_SPI2               SYSCFG_ITLINE26_SR_SPI2_Msk                 /*!< SPI2  Interrupt */
5783 #define SYSCFG_ITLINE27_SR_USART1_GLB_Pos     (0U)
5784 #define SYSCFG_ITLINE27_SR_USART1_GLB_Msk     (0x1UL << SYSCFG_ITLINE27_SR_USART1_GLB_Pos) /*!< 0x00000001 */
5785 #define SYSCFG_ITLINE27_SR_USART1_GLB         SYSCFG_ITLINE27_SR_USART1_GLB_Msk            /*!< USART1 GLB Interrupt */
5786 #define SYSCFG_ITLINE28_SR_USART2_GLB_Pos     (0U)
5787 #define SYSCFG_ITLINE28_SR_USART2_GLB_Msk     (0x1UL << SYSCFG_ITLINE28_SR_USART2_GLB_Pos) /*!< 0x00000001 */
5788 #define SYSCFG_ITLINE28_SR_USART2_GLB         SYSCFG_ITLINE28_SR_USART2_GLB_Msk            /*!< USART2 GLB Interrupt */
5789 
5790 /******************************************************************************/
5791 /*                                                                            */
5792 /*                                    TIM                                     */
5793 /*                                                                            */
5794 /******************************************************************************/
5795 /*******************  Bit definition for TIM_CR1 register  ********************/
5796 #define TIM_CR1_CEN_Pos           (0U)
5797 #define TIM_CR1_CEN_Msk           (0x1UL << TIM_CR1_CEN_Pos)                   /*!< 0x00000001 */
5798 #define TIM_CR1_CEN               TIM_CR1_CEN_Msk                              /*!<Counter enable */
5799 #define TIM_CR1_UDIS_Pos          (1U)
5800 #define TIM_CR1_UDIS_Msk          (0x1UL << TIM_CR1_UDIS_Pos)                  /*!< 0x00000002 */
5801 #define TIM_CR1_UDIS              TIM_CR1_UDIS_Msk                             /*!<Update disable */
5802 #define TIM_CR1_URS_Pos           (2U)
5803 #define TIM_CR1_URS_Msk           (0x1UL << TIM_CR1_URS_Pos)                   /*!< 0x00000004 */
5804 #define TIM_CR1_URS               TIM_CR1_URS_Msk                              /*!<Update request source */
5805 #define TIM_CR1_OPM_Pos           (3U)
5806 #define TIM_CR1_OPM_Msk           (0x1UL << TIM_CR1_OPM_Pos)                   /*!< 0x00000008 */
5807 #define TIM_CR1_OPM               TIM_CR1_OPM_Msk                              /*!<One pulse mode */
5808 #define TIM_CR1_DIR_Pos           (4U)
5809 #define TIM_CR1_DIR_Msk           (0x1UL << TIM_CR1_DIR_Pos)                   /*!< 0x00000010 */
5810 #define TIM_CR1_DIR               TIM_CR1_DIR_Msk                              /*!<Direction */
5811 
5812 #define TIM_CR1_CMS_Pos           (5U)
5813 #define TIM_CR1_CMS_Msk           (0x3UL << TIM_CR1_CMS_Pos)                   /*!< 0x00000060 */
5814 #define TIM_CR1_CMS               TIM_CR1_CMS_Msk                              /*!<CMS[1:0] bits (Center-aligned mode selection) */
5815 #define TIM_CR1_CMS_0             (0x1UL << TIM_CR1_CMS_Pos)                   /*!< 0x00000020 */
5816 #define TIM_CR1_CMS_1             (0x2UL << TIM_CR1_CMS_Pos)                   /*!< 0x00000040 */
5817 
5818 #define TIM_CR1_ARPE_Pos          (7U)
5819 #define TIM_CR1_ARPE_Msk          (0x1UL << TIM_CR1_ARPE_Pos)                  /*!< 0x00000080 */
5820 #define TIM_CR1_ARPE              TIM_CR1_ARPE_Msk                             /*!<Auto-reload preload enable */
5821 
5822 #define TIM_CR1_CKD_Pos           (8U)
5823 #define TIM_CR1_CKD_Msk           (0x3UL << TIM_CR1_CKD_Pos)                   /*!< 0x00000300 */
5824 #define TIM_CR1_CKD               TIM_CR1_CKD_Msk                              /*!<CKD[1:0] bits (clock division) */
5825 #define TIM_CR1_CKD_0             (0x1UL << TIM_CR1_CKD_Pos)                   /*!< 0x00000100 */
5826 #define TIM_CR1_CKD_1             (0x2UL << TIM_CR1_CKD_Pos)                   /*!< 0x00000200 */
5827 
5828 #define TIM_CR1_UIFREMAP_Pos      (11U)
5829 #define TIM_CR1_UIFREMAP_Msk      (0x1UL << TIM_CR1_UIFREMAP_Pos)              /*!< 0x00000800 */
5830 #define TIM_CR1_UIFREMAP          TIM_CR1_UIFREMAP_Msk                         /*!<Update interrupt flag remap */
5831 
5832 /*******************  Bit definition for TIM_CR2 register  ********************/
5833 #define TIM_CR2_CCPC_Pos          (0U)
5834 #define TIM_CR2_CCPC_Msk          (0x1UL << TIM_CR2_CCPC_Pos)                  /*!< 0x00000001 */
5835 #define TIM_CR2_CCPC              TIM_CR2_CCPC_Msk                             /*!<Capture/Compare Preloaded Control */
5836 #define TIM_CR2_CCUS_Pos          (2U)
5837 #define TIM_CR2_CCUS_Msk          (0x1UL << TIM_CR2_CCUS_Pos)                  /*!< 0x00000004 */
5838 #define TIM_CR2_CCUS              TIM_CR2_CCUS_Msk                             /*!<Capture/Compare Control Update Selection */
5839 #define TIM_CR2_CCDS_Pos          (3U)
5840 #define TIM_CR2_CCDS_Msk          (0x1UL << TIM_CR2_CCDS_Pos)                  /*!< 0x00000008 */
5841 #define TIM_CR2_CCDS              TIM_CR2_CCDS_Msk                             /*!<Capture/Compare DMA Selection */
5842 
5843 #define TIM_CR2_MMS_Pos           (4U)
5844 #define TIM_CR2_MMS_Msk           (0x7UL << TIM_CR2_MMS_Pos)                   /*!< 0x00000070 */
5845 #define TIM_CR2_MMS               TIM_CR2_MMS_Msk                              /*!<MMS[2:0] bits (Master Mode Selection) */
5846 #define TIM_CR2_MMS_0             (0x1UL << TIM_CR2_MMS_Pos)                   /*!< 0x00000010 */
5847 #define TIM_CR2_MMS_1             (0x2UL << TIM_CR2_MMS_Pos)                   /*!< 0x00000020 */
5848 #define TIM_CR2_MMS_2             (0x4UL << TIM_CR2_MMS_Pos)                   /*!< 0x00000040 */
5849 
5850 #define TIM_CR2_TI1S_Pos          (7U)
5851 #define TIM_CR2_TI1S_Msk          (0x1UL << TIM_CR2_TI1S_Pos)                  /*!< 0x00000080 */
5852 #define TIM_CR2_TI1S              TIM_CR2_TI1S_Msk                             /*!<TI1 Selection */
5853 #define TIM_CR2_OIS1_Pos          (8U)
5854 #define TIM_CR2_OIS1_Msk          (0x1UL << TIM_CR2_OIS1_Pos)                  /*!< 0x00000100 */
5855 #define TIM_CR2_OIS1              TIM_CR2_OIS1_Msk                             /*!<Output Idle state 1 (OC1 output) */
5856 #define TIM_CR2_OIS1N_Pos         (9U)
5857 #define TIM_CR2_OIS1N_Msk         (0x1UL << TIM_CR2_OIS1N_Pos)                 /*!< 0x00000200 */
5858 #define TIM_CR2_OIS1N             TIM_CR2_OIS1N_Msk                            /*!<Output Idle state 1 (OC1N output) */
5859 #define TIM_CR2_OIS2_Pos          (10U)
5860 #define TIM_CR2_OIS2_Msk          (0x1UL << TIM_CR2_OIS2_Pos)                  /*!< 0x00000400 */
5861 #define TIM_CR2_OIS2              TIM_CR2_OIS2_Msk                             /*!<Output Idle state 2 (OC2 output) */
5862 #define TIM_CR2_OIS2N_Pos         (11U)
5863 #define TIM_CR2_OIS2N_Msk         (0x1UL << TIM_CR2_OIS2N_Pos)                 /*!< 0x00000800 */
5864 #define TIM_CR2_OIS2N             TIM_CR2_OIS2N_Msk                            /*!<Output Idle state 2 (OC2N output) */
5865 #define TIM_CR2_OIS3_Pos          (12U)
5866 #define TIM_CR2_OIS3_Msk          (0x1UL << TIM_CR2_OIS3_Pos)                  /*!< 0x00001000 */
5867 #define TIM_CR2_OIS3              TIM_CR2_OIS3_Msk                             /*!<Output Idle state 3 (OC3 output) */
5868 #define TIM_CR2_OIS3N_Pos         (13U)
5869 #define TIM_CR2_OIS3N_Msk         (0x1UL << TIM_CR2_OIS3N_Pos)                 /*!< 0x00002000 */
5870 #define TIM_CR2_OIS3N             TIM_CR2_OIS3N_Msk                            /*!<Output Idle state 3 (OC3N output) */
5871 #define TIM_CR2_OIS4_Pos          (14U)
5872 #define TIM_CR2_OIS4_Msk          (0x1UL << TIM_CR2_OIS4_Pos)                  /*!< 0x00004000 */
5873 #define TIM_CR2_OIS4              TIM_CR2_OIS4_Msk                             /*!<Output Idle state 4 (OC4 output) */
5874 #define TIM_CR2_OIS5_Pos          (16U)
5875 #define TIM_CR2_OIS5_Msk          (0x1UL << TIM_CR2_OIS5_Pos)                  /*!< 0x00010000 */
5876 #define TIM_CR2_OIS5              TIM_CR2_OIS5_Msk                             /*!<Output Idle state 5 (OC5 output) */
5877 #define TIM_CR2_OIS6_Pos          (18U)
5878 #define TIM_CR2_OIS6_Msk          (0x1UL << TIM_CR2_OIS6_Pos)                  /*!< 0x00040000 */
5879 #define TIM_CR2_OIS6              TIM_CR2_OIS6_Msk                             /*!<Output Idle state 6 (OC6 output) */
5880 
5881 #define TIM_CR2_MMS2_Pos          (20U)
5882 #define TIM_CR2_MMS2_Msk          (0xFUL << TIM_CR2_MMS2_Pos)                  /*!< 0x00F00000 */
5883 #define TIM_CR2_MMS2              TIM_CR2_MMS2_Msk                             /*!<MMS[2:0] bits (Master Mode Selection) */
5884 #define TIM_CR2_MMS2_0            (0x1UL << TIM_CR2_MMS2_Pos)                  /*!< 0x00100000 */
5885 #define TIM_CR2_MMS2_1            (0x2UL << TIM_CR2_MMS2_Pos)                  /*!< 0x00200000 */
5886 #define TIM_CR2_MMS2_2            (0x4UL << TIM_CR2_MMS2_Pos)                  /*!< 0x00400000 */
5887 #define TIM_CR2_MMS2_3            (0x8UL << TIM_CR2_MMS2_Pos)                  /*!< 0x00800000 */
5888 
5889 /*******************  Bit definition for TIM_SMCR register  *******************/
5890 #define TIM_SMCR_SMS_Pos          (0U)
5891 #define TIM_SMCR_SMS_Msk          (0x10007UL << TIM_SMCR_SMS_Pos)              /*!< 0x00010007 */
5892 #define TIM_SMCR_SMS              TIM_SMCR_SMS_Msk                             /*!<SMS[2:0] bits (Slave mode selection) */
5893 #define TIM_SMCR_SMS_0            (0x00001UL << TIM_SMCR_SMS_Pos)              /*!< 0x00000001 */
5894 #define TIM_SMCR_SMS_1            (0x00002UL << TIM_SMCR_SMS_Pos)              /*!< 0x00000002 */
5895 #define TIM_SMCR_SMS_2            (0x00004UL << TIM_SMCR_SMS_Pos)              /*!< 0x00000004 */
5896 #define TIM_SMCR_SMS_3            (0x10000UL << TIM_SMCR_SMS_Pos)              /*!< 0x00010000 */
5897 
5898 #define TIM_SMCR_OCCS_Pos         (3U)
5899 #define TIM_SMCR_OCCS_Msk         (0x1UL << TIM_SMCR_OCCS_Pos)                 /*!< 0x00000008 */
5900 #define TIM_SMCR_OCCS             TIM_SMCR_OCCS_Msk                            /*!< OCREF clear selection */
5901 
5902 #define TIM_SMCR_TS_Pos           (4U)
5903 #define TIM_SMCR_TS_Msk           (0x30007UL << TIM_SMCR_TS_Pos)               /*!< 0x00300070 */
5904 #define TIM_SMCR_TS               TIM_SMCR_TS_Msk                              /*!<TS[2:0] bits (Trigger selection) */
5905 #define TIM_SMCR_TS_0             (0x00001UL << TIM_SMCR_TS_Pos)               /*!< 0x00000010 */
5906 #define TIM_SMCR_TS_1             (0x00002UL << TIM_SMCR_TS_Pos)               /*!< 0x00000020 */
5907 #define TIM_SMCR_TS_2             (0x00004UL << TIM_SMCR_TS_Pos)               /*!< 0x00000040 */
5908 #define TIM_SMCR_TS_3             (0x10000UL << TIM_SMCR_TS_Pos)               /*!< 0x00100000 */
5909 #define TIM_SMCR_TS_4             (0x20000UL << TIM_SMCR_TS_Pos)               /*!< 0x00200000 */
5910 
5911 #define TIM_SMCR_MSM_Pos          (7U)
5912 #define TIM_SMCR_MSM_Msk          (0x1UL << TIM_SMCR_MSM_Pos)                  /*!< 0x00000080 */
5913 #define TIM_SMCR_MSM              TIM_SMCR_MSM_Msk                             /*!<Master/slave mode */
5914 
5915 #define TIM_SMCR_ETF_Pos          (8U)
5916 #define TIM_SMCR_ETF_Msk          (0xFUL << TIM_SMCR_ETF_Pos)                  /*!< 0x00000F00 */
5917 #define TIM_SMCR_ETF              TIM_SMCR_ETF_Msk                             /*!<ETF[3:0] bits (External trigger filter) */
5918 #define TIM_SMCR_ETF_0            (0x1UL << TIM_SMCR_ETF_Pos)                  /*!< 0x00000100 */
5919 #define TIM_SMCR_ETF_1            (0x2UL << TIM_SMCR_ETF_Pos)                  /*!< 0x00000200 */
5920 #define TIM_SMCR_ETF_2            (0x4UL << TIM_SMCR_ETF_Pos)                  /*!< 0x00000400 */
5921 #define TIM_SMCR_ETF_3            (0x8UL << TIM_SMCR_ETF_Pos)                  /*!< 0x00000800 */
5922 
5923 #define TIM_SMCR_ETPS_Pos         (12U)
5924 #define TIM_SMCR_ETPS_Msk         (0x3UL << TIM_SMCR_ETPS_Pos)                 /*!< 0x00003000 */
5925 #define TIM_SMCR_ETPS             TIM_SMCR_ETPS_Msk                            /*!<ETPS[1:0] bits (External trigger prescaler) */
5926 #define TIM_SMCR_ETPS_0           (0x1UL << TIM_SMCR_ETPS_Pos)                 /*!< 0x00001000 */
5927 #define TIM_SMCR_ETPS_1           (0x2UL << TIM_SMCR_ETPS_Pos)                 /*!< 0x00002000 */
5928 
5929 #define TIM_SMCR_ECE_Pos          (14U)
5930 #define TIM_SMCR_ECE_Msk          (0x1UL << TIM_SMCR_ECE_Pos)                  /*!< 0x00004000 */
5931 #define TIM_SMCR_ECE              TIM_SMCR_ECE_Msk                             /*!<External clock enable */
5932 #define TIM_SMCR_ETP_Pos          (15U)
5933 #define TIM_SMCR_ETP_Msk          (0x1UL << TIM_SMCR_ETP_Pos)                  /*!< 0x00008000 */
5934 #define TIM_SMCR_ETP              TIM_SMCR_ETP_Msk                             /*!<External trigger polarity */
5935 
5936 /*******************  Bit definition for TIM_DIER register  *******************/
5937 #define TIM_DIER_UIE_Pos          (0U)
5938 #define TIM_DIER_UIE_Msk          (0x1UL << TIM_DIER_UIE_Pos)                  /*!< 0x00000001 */
5939 #define TIM_DIER_UIE              TIM_DIER_UIE_Msk                             /*!<Update interrupt enable */
5940 #define TIM_DIER_CC1IE_Pos        (1U)
5941 #define TIM_DIER_CC1IE_Msk        (0x1UL << TIM_DIER_CC1IE_Pos)                /*!< 0x00000002 */
5942 #define TIM_DIER_CC1IE            TIM_DIER_CC1IE_Msk                           /*!<Capture/Compare 1 interrupt enable */
5943 #define TIM_DIER_CC2IE_Pos        (2U)
5944 #define TIM_DIER_CC2IE_Msk        (0x1UL << TIM_DIER_CC2IE_Pos)                /*!< 0x00000004 */
5945 #define TIM_DIER_CC2IE            TIM_DIER_CC2IE_Msk                           /*!<Capture/Compare 2 interrupt enable */
5946 #define TIM_DIER_CC3IE_Pos        (3U)
5947 #define TIM_DIER_CC3IE_Msk        (0x1UL << TIM_DIER_CC3IE_Pos)                /*!< 0x00000008 */
5948 #define TIM_DIER_CC3IE            TIM_DIER_CC3IE_Msk                           /*!<Capture/Compare 3 interrupt enable */
5949 #define TIM_DIER_CC4IE_Pos        (4U)
5950 #define TIM_DIER_CC4IE_Msk        (0x1UL << TIM_DIER_CC4IE_Pos)                /*!< 0x00000010 */
5951 #define TIM_DIER_CC4IE            TIM_DIER_CC4IE_Msk                           /*!<Capture/Compare 4 interrupt enable */
5952 #define TIM_DIER_COMIE_Pos        (5U)
5953 #define TIM_DIER_COMIE_Msk        (0x1UL << TIM_DIER_COMIE_Pos)                /*!< 0x00000020 */
5954 #define TIM_DIER_COMIE            TIM_DIER_COMIE_Msk                           /*!<COM interrupt enable */
5955 #define TIM_DIER_TIE_Pos          (6U)
5956 #define TIM_DIER_TIE_Msk          (0x1UL << TIM_DIER_TIE_Pos)                  /*!< 0x00000040 */
5957 #define TIM_DIER_TIE              TIM_DIER_TIE_Msk                             /*!<Trigger interrupt enable */
5958 #define TIM_DIER_BIE_Pos          (7U)
5959 #define TIM_DIER_BIE_Msk          (0x1UL << TIM_DIER_BIE_Pos)                  /*!< 0x00000080 */
5960 #define TIM_DIER_BIE              TIM_DIER_BIE_Msk                             /*!<Break interrupt enable */
5961 #define TIM_DIER_UDE_Pos          (8U)
5962 #define TIM_DIER_UDE_Msk          (0x1UL << TIM_DIER_UDE_Pos)                  /*!< 0x00000100 */
5963 #define TIM_DIER_UDE              TIM_DIER_UDE_Msk                             /*!<Update DMA request enable */
5964 #define TIM_DIER_CC1DE_Pos        (9U)
5965 #define TIM_DIER_CC1DE_Msk        (0x1UL << TIM_DIER_CC1DE_Pos)                /*!< 0x00000200 */
5966 #define TIM_DIER_CC1DE            TIM_DIER_CC1DE_Msk                           /*!<Capture/Compare 1 DMA request enable */
5967 #define TIM_DIER_CC2DE_Pos        (10U)
5968 #define TIM_DIER_CC2DE_Msk        (0x1UL << TIM_DIER_CC2DE_Pos)                /*!< 0x00000400 */
5969 #define TIM_DIER_CC2DE            TIM_DIER_CC2DE_Msk                           /*!<Capture/Compare 2 DMA request enable */
5970 #define TIM_DIER_CC3DE_Pos        (11U)
5971 #define TIM_DIER_CC3DE_Msk        (0x1UL << TIM_DIER_CC3DE_Pos)                /*!< 0x00000800 */
5972 #define TIM_DIER_CC3DE            TIM_DIER_CC3DE_Msk                           /*!<Capture/Compare 3 DMA request enable */
5973 #define TIM_DIER_CC4DE_Pos        (12U)
5974 #define TIM_DIER_CC4DE_Msk        (0x1UL << TIM_DIER_CC4DE_Pos)                /*!< 0x00001000 */
5975 #define TIM_DIER_CC4DE            TIM_DIER_CC4DE_Msk                           /*!<Capture/Compare 4 DMA request enable */
5976 #define TIM_DIER_COMDE_Pos        (13U)
5977 #define TIM_DIER_COMDE_Msk        (0x1UL << TIM_DIER_COMDE_Pos)                /*!< 0x00002000 */
5978 #define TIM_DIER_COMDE            TIM_DIER_COMDE_Msk                           /*!<COM DMA request enable */
5979 #define TIM_DIER_TDE_Pos          (14U)
5980 #define TIM_DIER_TDE_Msk          (0x1UL << TIM_DIER_TDE_Pos)                  /*!< 0x00004000 */
5981 #define TIM_DIER_TDE              TIM_DIER_TDE_Msk                             /*!<Trigger DMA request enable */
5982 
5983 /********************  Bit definition for TIM_SR register  ********************/
5984 #define TIM_SR_UIF_Pos            (0U)
5985 #define TIM_SR_UIF_Msk            (0x1UL << TIM_SR_UIF_Pos)                    /*!< 0x00000001 */
5986 #define TIM_SR_UIF                TIM_SR_UIF_Msk                               /*!<Update interrupt Flag */
5987 #define TIM_SR_CC1IF_Pos          (1U)
5988 #define TIM_SR_CC1IF_Msk          (0x1UL << TIM_SR_CC1IF_Pos)                  /*!< 0x00000002 */
5989 #define TIM_SR_CC1IF              TIM_SR_CC1IF_Msk                             /*!<Capture/Compare 1 interrupt Flag */
5990 #define TIM_SR_CC2IF_Pos          (2U)
5991 #define TIM_SR_CC2IF_Msk          (0x1UL << TIM_SR_CC2IF_Pos)                  /*!< 0x00000004 */
5992 #define TIM_SR_CC2IF              TIM_SR_CC2IF_Msk                             /*!<Capture/Compare 2 interrupt Flag */
5993 #define TIM_SR_CC3IF_Pos          (3U)
5994 #define TIM_SR_CC3IF_Msk          (0x1UL << TIM_SR_CC3IF_Pos)                  /*!< 0x00000008 */
5995 #define TIM_SR_CC3IF              TIM_SR_CC3IF_Msk                             /*!<Capture/Compare 3 interrupt Flag */
5996 #define TIM_SR_CC4IF_Pos          (4U)
5997 #define TIM_SR_CC4IF_Msk          (0x1UL << TIM_SR_CC4IF_Pos)                  /*!< 0x00000010 */
5998 #define TIM_SR_CC4IF              TIM_SR_CC4IF_Msk                             /*!<Capture/Compare 4 interrupt Flag */
5999 #define TIM_SR_COMIF_Pos          (5U)
6000 #define TIM_SR_COMIF_Msk          (0x1UL << TIM_SR_COMIF_Pos)                  /*!< 0x00000020 */
6001 #define TIM_SR_COMIF              TIM_SR_COMIF_Msk                             /*!<COM interrupt Flag */
6002 #define TIM_SR_TIF_Pos            (6U)
6003 #define TIM_SR_TIF_Msk            (0x1UL << TIM_SR_TIF_Pos)                    /*!< 0x00000040 */
6004 #define TIM_SR_TIF                TIM_SR_TIF_Msk                               /*!<Trigger interrupt Flag */
6005 #define TIM_SR_BIF_Pos            (7U)
6006 #define TIM_SR_BIF_Msk            (0x1UL << TIM_SR_BIF_Pos)                    /*!< 0x00000080 */
6007 #define TIM_SR_BIF                TIM_SR_BIF_Msk                               /*!<Break interrupt Flag */
6008 #define TIM_SR_B2IF_Pos           (8U)
6009 #define TIM_SR_B2IF_Msk           (0x1UL << TIM_SR_B2IF_Pos)                   /*!< 0x00000100 */
6010 #define TIM_SR_B2IF               TIM_SR_B2IF_Msk                              /*!<Break 2 interrupt Flag */
6011 #define TIM_SR_CC1OF_Pos          (9U)
6012 #define TIM_SR_CC1OF_Msk          (0x1UL << TIM_SR_CC1OF_Pos)                  /*!< 0x00000200 */
6013 #define TIM_SR_CC1OF              TIM_SR_CC1OF_Msk                             /*!<Capture/Compare 1 Overcapture Flag */
6014 #define TIM_SR_CC2OF_Pos          (10U)
6015 #define TIM_SR_CC2OF_Msk          (0x1UL << TIM_SR_CC2OF_Pos)                  /*!< 0x00000400 */
6016 #define TIM_SR_CC2OF              TIM_SR_CC2OF_Msk                             /*!<Capture/Compare 2 Overcapture Flag */
6017 #define TIM_SR_CC3OF_Pos          (11U)
6018 #define TIM_SR_CC3OF_Msk          (0x1UL << TIM_SR_CC3OF_Pos)                  /*!< 0x00000800 */
6019 #define TIM_SR_CC3OF              TIM_SR_CC3OF_Msk                             /*!<Capture/Compare 3 Overcapture Flag */
6020 #define TIM_SR_CC4OF_Pos          (12U)
6021 #define TIM_SR_CC4OF_Msk          (0x1UL << TIM_SR_CC4OF_Pos)                  /*!< 0x00001000 */
6022 #define TIM_SR_CC4OF              TIM_SR_CC4OF_Msk                             /*!<Capture/Compare 4 Overcapture Flag */
6023 #define TIM_SR_SBIF_Pos           (13U)
6024 #define TIM_SR_SBIF_Msk           (0x1UL << TIM_SR_SBIF_Pos)                   /*!< 0x00002000 */
6025 #define TIM_SR_SBIF               TIM_SR_SBIF_Msk                              /*!<System Break interrupt Flag */
6026 #define TIM_SR_CC5IF_Pos          (16U)
6027 #define TIM_SR_CC5IF_Msk          (0x1UL << TIM_SR_CC5IF_Pos)                  /*!< 0x00010000 */
6028 #define TIM_SR_CC5IF              TIM_SR_CC5IF_Msk                             /*!<Capture/Compare 5 interrupt Flag */
6029 #define TIM_SR_CC6IF_Pos          (17U)
6030 #define TIM_SR_CC6IF_Msk          (0x1UL << TIM_SR_CC6IF_Pos)                  /*!< 0x00020000 */
6031 #define TIM_SR_CC6IF              TIM_SR_CC6IF_Msk                             /*!<Capture/Compare 6 interrupt Flag */
6032 
6033 
6034 /*******************  Bit definition for TIM_EGR register  ********************/
6035 #define TIM_EGR_UG_Pos            (0U)
6036 #define TIM_EGR_UG_Msk            (0x1UL << TIM_EGR_UG_Pos)                    /*!< 0x00000001 */
6037 #define TIM_EGR_UG                TIM_EGR_UG_Msk                               /*!<Update Generation */
6038 #define TIM_EGR_CC1G_Pos          (1U)
6039 #define TIM_EGR_CC1G_Msk          (0x1UL << TIM_EGR_CC1G_Pos)                  /*!< 0x00000002 */
6040 #define TIM_EGR_CC1G              TIM_EGR_CC1G_Msk                             /*!<Capture/Compare 1 Generation */
6041 #define TIM_EGR_CC2G_Pos          (2U)
6042 #define TIM_EGR_CC2G_Msk          (0x1UL << TIM_EGR_CC2G_Pos)                  /*!< 0x00000004 */
6043 #define TIM_EGR_CC2G              TIM_EGR_CC2G_Msk                             /*!<Capture/Compare 2 Generation */
6044 #define TIM_EGR_CC3G_Pos          (3U)
6045 #define TIM_EGR_CC3G_Msk          (0x1UL << TIM_EGR_CC3G_Pos)                  /*!< 0x00000008 */
6046 #define TIM_EGR_CC3G              TIM_EGR_CC3G_Msk                             /*!<Capture/Compare 3 Generation */
6047 #define TIM_EGR_CC4G_Pos          (4U)
6048 #define TIM_EGR_CC4G_Msk          (0x1UL << TIM_EGR_CC4G_Pos)                  /*!< 0x00000010 */
6049 #define TIM_EGR_CC4G              TIM_EGR_CC4G_Msk                             /*!<Capture/Compare 4 Generation */
6050 #define TIM_EGR_COMG_Pos          (5U)
6051 #define TIM_EGR_COMG_Msk          (0x1UL << TIM_EGR_COMG_Pos)                  /*!< 0x00000020 */
6052 #define TIM_EGR_COMG              TIM_EGR_COMG_Msk                             /*!<Capture/Compare Control Update Generation */
6053 #define TIM_EGR_TG_Pos            (6U)
6054 #define TIM_EGR_TG_Msk            (0x1UL << TIM_EGR_TG_Pos)                    /*!< 0x00000040 */
6055 #define TIM_EGR_TG                TIM_EGR_TG_Msk                               /*!<Trigger Generation */
6056 #define TIM_EGR_BG_Pos            (7U)
6057 #define TIM_EGR_BG_Msk            (0x1UL << TIM_EGR_BG_Pos)                    /*!< 0x00000080 */
6058 #define TIM_EGR_BG                TIM_EGR_BG_Msk                               /*!<Break Generation */
6059 #define TIM_EGR_B2G_Pos           (8U)
6060 #define TIM_EGR_B2G_Msk           (0x1UL << TIM_EGR_B2G_Pos)                   /*!< 0x00000100 */
6061 #define TIM_EGR_B2G               TIM_EGR_B2G_Msk                              /*!<Break 2 Generation */
6062 
6063 
6064 /******************  Bit definition for TIM_CCMR1 register  *******************/
6065 #define TIM_CCMR1_CC1S_Pos        (0U)
6066 #define TIM_CCMR1_CC1S_Msk        (0x3UL << TIM_CCMR1_CC1S_Pos)                /*!< 0x00000003 */
6067 #define TIM_CCMR1_CC1S            TIM_CCMR1_CC1S_Msk                           /*!<CC1S[1:0] bits (Capture/Compare 1 Selection) */
6068 #define TIM_CCMR1_CC1S_0          (0x1UL << TIM_CCMR1_CC1S_Pos)                /*!< 0x00000001 */
6069 #define TIM_CCMR1_CC1S_1          (0x2UL << TIM_CCMR1_CC1S_Pos)                /*!< 0x00000002 */
6070 
6071 #define TIM_CCMR1_OC1FE_Pos       (2U)
6072 #define TIM_CCMR1_OC1FE_Msk       (0x1UL << TIM_CCMR1_OC1FE_Pos)               /*!< 0x00000004 */
6073 #define TIM_CCMR1_OC1FE           TIM_CCMR1_OC1FE_Msk                          /*!<Output Compare 1 Fast enable */
6074 #define TIM_CCMR1_OC1PE_Pos       (3U)
6075 #define TIM_CCMR1_OC1PE_Msk       (0x1UL << TIM_CCMR1_OC1PE_Pos)               /*!< 0x00000008 */
6076 #define TIM_CCMR1_OC1PE           TIM_CCMR1_OC1PE_Msk                          /*!<Output Compare 1 Preload enable */
6077 
6078 #define TIM_CCMR1_OC1M_Pos        (4U)
6079 #define TIM_CCMR1_OC1M_Msk        (0x1007UL << TIM_CCMR1_OC1M_Pos)             /*!< 0x00010070 */
6080 #define TIM_CCMR1_OC1M            TIM_CCMR1_OC1M_Msk                           /*!<OC1M[2:0] bits (Output Compare 1 Mode) */
6081 #define TIM_CCMR1_OC1M_0          (0x0001UL << TIM_CCMR1_OC1M_Pos)             /*!< 0x00000010 */
6082 #define TIM_CCMR1_OC1M_1          (0x0002UL << TIM_CCMR1_OC1M_Pos)             /*!< 0x00000020 */
6083 #define TIM_CCMR1_OC1M_2          (0x0004UL << TIM_CCMR1_OC1M_Pos)             /*!< 0x00000040 */
6084 #define TIM_CCMR1_OC1M_3          (0x1000UL << TIM_CCMR1_OC1M_Pos)             /*!< 0x00010000 */
6085 
6086 #define TIM_CCMR1_OC1CE_Pos       (7U)
6087 #define TIM_CCMR1_OC1CE_Msk       (0x1UL << TIM_CCMR1_OC1CE_Pos)               /*!< 0x00000080 */
6088 #define TIM_CCMR1_OC1CE           TIM_CCMR1_OC1CE_Msk                          /*!<Output Compare 1 Clear Enable */
6089 
6090 #define TIM_CCMR1_CC2S_Pos        (8U)
6091 #define TIM_CCMR1_CC2S_Msk        (0x3UL << TIM_CCMR1_CC2S_Pos)                /*!< 0x00000300 */
6092 #define TIM_CCMR1_CC2S            TIM_CCMR1_CC2S_Msk                           /*!<CC2S[1:0] bits (Capture/Compare 2 Selection) */
6093 #define TIM_CCMR1_CC2S_0          (0x1UL << TIM_CCMR1_CC2S_Pos)                /*!< 0x00000100 */
6094 #define TIM_CCMR1_CC2S_1          (0x2UL << TIM_CCMR1_CC2S_Pos)                /*!< 0x00000200 */
6095 
6096 #define TIM_CCMR1_OC2FE_Pos       (10U)
6097 #define TIM_CCMR1_OC2FE_Msk       (0x1UL << TIM_CCMR1_OC2FE_Pos)               /*!< 0x00000400 */
6098 #define TIM_CCMR1_OC2FE           TIM_CCMR1_OC2FE_Msk                          /*!<Output Compare 2 Fast enable */
6099 #define TIM_CCMR1_OC2PE_Pos       (11U)
6100 #define TIM_CCMR1_OC2PE_Msk       (0x1UL << TIM_CCMR1_OC2PE_Pos)               /*!< 0x00000800 */
6101 #define TIM_CCMR1_OC2PE           TIM_CCMR1_OC2PE_Msk                          /*!<Output Compare 2 Preload enable */
6102 
6103 #define TIM_CCMR1_OC2M_Pos        (12U)
6104 #define TIM_CCMR1_OC2M_Msk        (0x1007UL << TIM_CCMR1_OC2M_Pos)             /*!< 0x01007000 */
6105 #define TIM_CCMR1_OC2M            TIM_CCMR1_OC2M_Msk                           /*!<OC2M[2:0] bits (Output Compare 2 Mode) */
6106 #define TIM_CCMR1_OC2M_0          (0x0001UL << TIM_CCMR1_OC2M_Pos)             /*!< 0x00001000 */
6107 #define TIM_CCMR1_OC2M_1          (0x0002UL << TIM_CCMR1_OC2M_Pos)             /*!< 0x00002000 */
6108 #define TIM_CCMR1_OC2M_2          (0x0004UL << TIM_CCMR1_OC2M_Pos)             /*!< 0x00004000 */
6109 #define TIM_CCMR1_OC2M_3          (0x1000UL << TIM_CCMR1_OC2M_Pos)             /*!< 0x01000000 */
6110 
6111 #define TIM_CCMR1_OC2CE_Pos       (15U)
6112 #define TIM_CCMR1_OC2CE_Msk       (0x1UL << TIM_CCMR1_OC2CE_Pos)               /*!< 0x00008000 */
6113 #define TIM_CCMR1_OC2CE           TIM_CCMR1_OC2CE_Msk                          /*!<Output Compare 2 Clear Enable */
6114 
6115 /*----------------------------------------------------------------------------*/
6116 #define TIM_CCMR1_IC1PSC_Pos      (2U)
6117 #define TIM_CCMR1_IC1PSC_Msk      (0x3UL << TIM_CCMR1_IC1PSC_Pos)              /*!< 0x0000000C */
6118 #define TIM_CCMR1_IC1PSC          TIM_CCMR1_IC1PSC_Msk                         /*!<IC1PSC[1:0] bits (Input Capture 1 Prescaler) */
6119 #define TIM_CCMR1_IC1PSC_0        (0x1UL << TIM_CCMR1_IC1PSC_Pos)              /*!< 0x00000004 */
6120 #define TIM_CCMR1_IC1PSC_1        (0x2UL << TIM_CCMR1_IC1PSC_Pos)              /*!< 0x00000008 */
6121 
6122 #define TIM_CCMR1_IC1F_Pos        (4U)
6123 #define TIM_CCMR1_IC1F_Msk        (0xFUL << TIM_CCMR1_IC1F_Pos)                /*!< 0x000000F0 */
6124 #define TIM_CCMR1_IC1F            TIM_CCMR1_IC1F_Msk                           /*!<IC1F[3:0] bits (Input Capture 1 Filter) */
6125 #define TIM_CCMR1_IC1F_0          (0x1UL << TIM_CCMR1_IC1F_Pos)                /*!< 0x00000010 */
6126 #define TIM_CCMR1_IC1F_1          (0x2UL << TIM_CCMR1_IC1F_Pos)                /*!< 0x00000020 */
6127 #define TIM_CCMR1_IC1F_2          (0x4UL << TIM_CCMR1_IC1F_Pos)                /*!< 0x00000040 */
6128 #define TIM_CCMR1_IC1F_3          (0x8UL << TIM_CCMR1_IC1F_Pos)                /*!< 0x00000080 */
6129 
6130 #define TIM_CCMR1_IC2PSC_Pos      (10U)
6131 #define TIM_CCMR1_IC2PSC_Msk      (0x3UL << TIM_CCMR1_IC2PSC_Pos)              /*!< 0x00000C00 */
6132 #define TIM_CCMR1_IC2PSC          TIM_CCMR1_IC2PSC_Msk                         /*!<IC2PSC[1:0] bits (Input Capture 2 Prescaler) */
6133 #define TIM_CCMR1_IC2PSC_0        (0x1UL << TIM_CCMR1_IC2PSC_Pos)              /*!< 0x00000400 */
6134 #define TIM_CCMR1_IC2PSC_1        (0x2UL << TIM_CCMR1_IC2PSC_Pos)              /*!< 0x00000800 */
6135 
6136 #define TIM_CCMR1_IC2F_Pos        (12U)
6137 #define TIM_CCMR1_IC2F_Msk        (0xFUL << TIM_CCMR1_IC2F_Pos)                /*!< 0x0000F000 */
6138 #define TIM_CCMR1_IC2F            TIM_CCMR1_IC2F_Msk                           /*!<IC2F[3:0] bits (Input Capture 2 Filter) */
6139 #define TIM_CCMR1_IC2F_0          (0x1UL << TIM_CCMR1_IC2F_Pos)                /*!< 0x00001000 */
6140 #define TIM_CCMR1_IC2F_1          (0x2UL << TIM_CCMR1_IC2F_Pos)                /*!< 0x00002000 */
6141 #define TIM_CCMR1_IC2F_2          (0x4UL << TIM_CCMR1_IC2F_Pos)                /*!< 0x00004000 */
6142 #define TIM_CCMR1_IC2F_3          (0x8UL << TIM_CCMR1_IC2F_Pos)                /*!< 0x00008000 */
6143 
6144 /******************  Bit definition for TIM_CCMR2 register  *******************/
6145 #define TIM_CCMR2_CC3S_Pos        (0U)
6146 #define TIM_CCMR2_CC3S_Msk        (0x3UL << TIM_CCMR2_CC3S_Pos)                /*!< 0x00000003 */
6147 #define TIM_CCMR2_CC3S            TIM_CCMR2_CC3S_Msk                           /*!<CC3S[1:0] bits (Capture/Compare 3 Selection) */
6148 #define TIM_CCMR2_CC3S_0          (0x1UL << TIM_CCMR2_CC3S_Pos)                /*!< 0x00000001 */
6149 #define TIM_CCMR2_CC3S_1          (0x2UL << TIM_CCMR2_CC3S_Pos)                /*!< 0x00000002 */
6150 
6151 #define TIM_CCMR2_OC3FE_Pos       (2U)
6152 #define TIM_CCMR2_OC3FE_Msk       (0x1UL << TIM_CCMR2_OC3FE_Pos)               /*!< 0x00000004 */
6153 #define TIM_CCMR2_OC3FE           TIM_CCMR2_OC3FE_Msk                          /*!<Output Compare 3 Fast enable */
6154 #define TIM_CCMR2_OC3PE_Pos       (3U)
6155 #define TIM_CCMR2_OC3PE_Msk       (0x1UL << TIM_CCMR2_OC3PE_Pos)               /*!< 0x00000008 */
6156 #define TIM_CCMR2_OC3PE           TIM_CCMR2_OC3PE_Msk                          /*!<Output Compare 3 Preload enable */
6157 
6158 #define TIM_CCMR2_OC3M_Pos        (4U)
6159 #define TIM_CCMR2_OC3M_Msk        (0x1007UL << TIM_CCMR2_OC3M_Pos)             /*!< 0x00010070 */
6160 #define TIM_CCMR2_OC3M            TIM_CCMR2_OC3M_Msk                           /*!<OC3M[2:0] bits (Output Compare 3 Mode) */
6161 #define TIM_CCMR2_OC3M_0          (0x0001UL << TIM_CCMR2_OC3M_Pos)             /*!< 0x00000010 */
6162 #define TIM_CCMR2_OC3M_1          (0x0002UL << TIM_CCMR2_OC3M_Pos)             /*!< 0x00000020 */
6163 #define TIM_CCMR2_OC3M_2          (0x0004UL << TIM_CCMR2_OC3M_Pos)             /*!< 0x00000040 */
6164 #define TIM_CCMR2_OC3M_3          (0x1000UL << TIM_CCMR2_OC3M_Pos)             /*!< 0x00010000 */
6165 
6166 #define TIM_CCMR2_OC3CE_Pos       (7U)
6167 #define TIM_CCMR2_OC3CE_Msk       (0x1UL << TIM_CCMR2_OC3CE_Pos)               /*!< 0x00000080 */
6168 #define TIM_CCMR2_OC3CE           TIM_CCMR2_OC3CE_Msk                          /*!<Output Compare 3 Clear Enable */
6169 
6170 #define TIM_CCMR2_CC4S_Pos        (8U)
6171 #define TIM_CCMR2_CC4S_Msk        (0x3UL << TIM_CCMR2_CC4S_Pos)                /*!< 0x00000300 */
6172 #define TIM_CCMR2_CC4S            TIM_CCMR2_CC4S_Msk                           /*!<CC4S[1:0] bits (Capture/Compare 4 Selection) */
6173 #define TIM_CCMR2_CC4S_0          (0x1UL << TIM_CCMR2_CC4S_Pos)                /*!< 0x00000100 */
6174 #define TIM_CCMR2_CC4S_1          (0x2UL << TIM_CCMR2_CC4S_Pos)                /*!< 0x00000200 */
6175 
6176 #define TIM_CCMR2_OC4FE_Pos       (10U)
6177 #define TIM_CCMR2_OC4FE_Msk       (0x1UL << TIM_CCMR2_OC4FE_Pos)               /*!< 0x00000400 */
6178 #define TIM_CCMR2_OC4FE           TIM_CCMR2_OC4FE_Msk                          /*!<Output Compare 4 Fast enable */
6179 #define TIM_CCMR2_OC4PE_Pos       (11U)
6180 #define TIM_CCMR2_OC4PE_Msk       (0x1UL << TIM_CCMR2_OC4PE_Pos)               /*!< 0x00000800 */
6181 #define TIM_CCMR2_OC4PE           TIM_CCMR2_OC4PE_Msk                          /*!<Output Compare 4 Preload enable */
6182 
6183 #define TIM_CCMR2_OC4M_Pos        (12U)
6184 #define TIM_CCMR2_OC4M_Msk        (0x1007UL << TIM_CCMR2_OC4M_Pos)             /*!< 0x01007000 */
6185 #define TIM_CCMR2_OC4M            TIM_CCMR2_OC4M_Msk                           /*!<OC4M[2:0] bits (Output Compare 4 Mode) */
6186 #define TIM_CCMR2_OC4M_0          (0x0001UL << TIM_CCMR2_OC4M_Pos)             /*!< 0x00001000 */
6187 #define TIM_CCMR2_OC4M_1          (0x0002UL << TIM_CCMR2_OC4M_Pos)             /*!< 0x00002000 */
6188 #define TIM_CCMR2_OC4M_2          (0x0004UL << TIM_CCMR2_OC4M_Pos)             /*!< 0x00004000 */
6189 #define TIM_CCMR2_OC4M_3          (0x1000UL << TIM_CCMR2_OC4M_Pos)             /*!< 0x01000000 */
6190 
6191 #define TIM_CCMR2_OC4CE_Pos       (15U)
6192 #define TIM_CCMR2_OC4CE_Msk       (0x1UL << TIM_CCMR2_OC4CE_Pos)               /*!< 0x00008000 */
6193 #define TIM_CCMR2_OC4CE           TIM_CCMR2_OC4CE_Msk                          /*!<Output Compare 4 Clear Enable */
6194 
6195 /*----------------------------------------------------------------------------*/
6196 #define TIM_CCMR2_IC3PSC_Pos      (2U)
6197 #define TIM_CCMR2_IC3PSC_Msk      (0x3UL << TIM_CCMR2_IC3PSC_Pos)              /*!< 0x0000000C */
6198 #define TIM_CCMR2_IC3PSC          TIM_CCMR2_IC3PSC_Msk                         /*!<IC3PSC[1:0] bits (Input Capture 3 Prescaler) */
6199 #define TIM_CCMR2_IC3PSC_0        (0x1UL << TIM_CCMR2_IC3PSC_Pos)              /*!< 0x00000004 */
6200 #define TIM_CCMR2_IC3PSC_1        (0x2UL << TIM_CCMR2_IC3PSC_Pos)              /*!< 0x00000008 */
6201 
6202 #define TIM_CCMR2_IC3F_Pos        (4U)
6203 #define TIM_CCMR2_IC3F_Msk        (0xFUL << TIM_CCMR2_IC3F_Pos)                /*!< 0x000000F0 */
6204 #define TIM_CCMR2_IC3F            TIM_CCMR2_IC3F_Msk                           /*!<IC3F[3:0] bits (Input Capture 3 Filter) */
6205 #define TIM_CCMR2_IC3F_0          (0x1UL << TIM_CCMR2_IC3F_Pos)                /*!< 0x00000010 */
6206 #define TIM_CCMR2_IC3F_1          (0x2UL << TIM_CCMR2_IC3F_Pos)                /*!< 0x00000020 */
6207 #define TIM_CCMR2_IC3F_2          (0x4UL << TIM_CCMR2_IC3F_Pos)                /*!< 0x00000040 */
6208 #define TIM_CCMR2_IC3F_3          (0x8UL << TIM_CCMR2_IC3F_Pos)                /*!< 0x00000080 */
6209 
6210 #define TIM_CCMR2_IC4PSC_Pos      (10U)
6211 #define TIM_CCMR2_IC4PSC_Msk      (0x3UL << TIM_CCMR2_IC4PSC_Pos)              /*!< 0x00000C00 */
6212 #define TIM_CCMR2_IC4PSC          TIM_CCMR2_IC4PSC_Msk                         /*!<IC4PSC[1:0] bits (Input Capture 4 Prescaler) */
6213 #define TIM_CCMR2_IC4PSC_0        (0x1UL << TIM_CCMR2_IC4PSC_Pos)              /*!< 0x00000400 */
6214 #define TIM_CCMR2_IC4PSC_1        (0x2UL << TIM_CCMR2_IC4PSC_Pos)              /*!< 0x00000800 */
6215 
6216 #define TIM_CCMR2_IC4F_Pos        (12U)
6217 #define TIM_CCMR2_IC4F_Msk        (0xFUL << TIM_CCMR2_IC4F_Pos)                /*!< 0x0000F000 */
6218 #define TIM_CCMR2_IC4F            TIM_CCMR2_IC4F_Msk                           /*!<IC4F[3:0] bits (Input Capture 4 Filter) */
6219 #define TIM_CCMR2_IC4F_0          (0x1UL << TIM_CCMR2_IC4F_Pos)                /*!< 0x00001000 */
6220 #define TIM_CCMR2_IC4F_1          (0x2UL << TIM_CCMR2_IC4F_Pos)                /*!< 0x00002000 */
6221 #define TIM_CCMR2_IC4F_2          (0x4UL << TIM_CCMR2_IC4F_Pos)                /*!< 0x00004000 */
6222 #define TIM_CCMR2_IC4F_3          (0x8UL << TIM_CCMR2_IC4F_Pos)                /*!< 0x00008000 */
6223 
6224 /******************  Bit definition for TIM_CCMR3 register  *******************/
6225 #define TIM_CCMR3_OC5FE_Pos       (2U)
6226 #define TIM_CCMR3_OC5FE_Msk       (0x1UL << TIM_CCMR3_OC5FE_Pos)               /*!< 0x00000004 */
6227 #define TIM_CCMR3_OC5FE           TIM_CCMR3_OC5FE_Msk                          /*!<Output Compare 5 Fast enable */
6228 #define TIM_CCMR3_OC5PE_Pos       (3U)
6229 #define TIM_CCMR3_OC5PE_Msk       (0x1UL << TIM_CCMR3_OC5PE_Pos)               /*!< 0x00000008 */
6230 #define TIM_CCMR3_OC5PE           TIM_CCMR3_OC5PE_Msk                          /*!<Output Compare 5 Preload enable */
6231 
6232 #define TIM_CCMR3_OC5M_Pos        (4U)
6233 #define TIM_CCMR3_OC5M_Msk        (0x1007UL << TIM_CCMR3_OC5M_Pos)             /*!< 0x00010070 */
6234 #define TIM_CCMR3_OC5M            TIM_CCMR3_OC5M_Msk                           /*!<OC5M[3:0] bits (Output Compare 5 Mode) */
6235 #define TIM_CCMR3_OC5M_0          (0x0001UL << TIM_CCMR3_OC5M_Pos)             /*!< 0x00000010 */
6236 #define TIM_CCMR3_OC5M_1          (0x0002UL << TIM_CCMR3_OC5M_Pos)             /*!< 0x00000020 */
6237 #define TIM_CCMR3_OC5M_2          (0x0004UL << TIM_CCMR3_OC5M_Pos)             /*!< 0x00000040 */
6238 #define TIM_CCMR3_OC5M_3          (0x1000UL << TIM_CCMR3_OC5M_Pos)             /*!< 0x00010000 */
6239 
6240 #define TIM_CCMR3_OC5CE_Pos       (7U)
6241 #define TIM_CCMR3_OC5CE_Msk       (0x1UL << TIM_CCMR3_OC5CE_Pos)               /*!< 0x00000080 */
6242 #define TIM_CCMR3_OC5CE           TIM_CCMR3_OC5CE_Msk                          /*!<Output Compare 5 Clear Enable */
6243 
6244 #define TIM_CCMR3_OC6FE_Pos       (10U)
6245 #define TIM_CCMR3_OC6FE_Msk       (0x1UL << TIM_CCMR3_OC6FE_Pos)               /*!< 0x00000400 */
6246 #define TIM_CCMR3_OC6FE           TIM_CCMR3_OC6FE_Msk                          /*!<Output Compare 6 Fast enable */
6247 #define TIM_CCMR3_OC6PE_Pos       (11U)
6248 #define TIM_CCMR3_OC6PE_Msk       (0x1UL << TIM_CCMR3_OC6PE_Pos)               /*!< 0x00000800 */
6249 #define TIM_CCMR3_OC6PE           TIM_CCMR3_OC6PE_Msk                          /*!<Output Compare 6 Preload enable */
6250 
6251 #define TIM_CCMR3_OC6M_Pos        (12U)
6252 #define TIM_CCMR3_OC6M_Msk        (0x1007UL << TIM_CCMR3_OC6M_Pos)             /*!< 0x01007000 */
6253 #define TIM_CCMR3_OC6M            TIM_CCMR3_OC6M_Msk                           /*!<OC6M[3:0] bits (Output Compare 6 Mode) */
6254 #define TIM_CCMR3_OC6M_0          (0x0001UL << TIM_CCMR3_OC6M_Pos)             /*!< 0x00001000 */
6255 #define TIM_CCMR3_OC6M_1          (0x0002UL << TIM_CCMR3_OC6M_Pos)             /*!< 0x00002000 */
6256 #define TIM_CCMR3_OC6M_2          (0x0004UL << TIM_CCMR3_OC6M_Pos)             /*!< 0x00004000 */
6257 #define TIM_CCMR3_OC6M_3          (0x1000UL << TIM_CCMR3_OC6M_Pos)             /*!< 0x01000000 */
6258 
6259 #define TIM_CCMR3_OC6CE_Pos       (15U)
6260 #define TIM_CCMR3_OC6CE_Msk       (0x1UL << TIM_CCMR3_OC6CE_Pos)               /*!< 0x00008000 */
6261 #define TIM_CCMR3_OC6CE           TIM_CCMR3_OC6CE_Msk                          /*!<Output Compare 6 Clear Enable */
6262 
6263 /*******************  Bit definition for TIM_CCER register  *******************/
6264 #define TIM_CCER_CC1E_Pos         (0U)
6265 #define TIM_CCER_CC1E_Msk         (0x1UL << TIM_CCER_CC1E_Pos)                 /*!< 0x00000001 */
6266 #define TIM_CCER_CC1E             TIM_CCER_CC1E_Msk                            /*!<Capture/Compare 1 output enable */
6267 #define TIM_CCER_CC1P_Pos         (1U)
6268 #define TIM_CCER_CC1P_Msk         (0x1UL << TIM_CCER_CC1P_Pos)                 /*!< 0x00000002 */
6269 #define TIM_CCER_CC1P             TIM_CCER_CC1P_Msk                            /*!<Capture/Compare 1 output Polarity */
6270 #define TIM_CCER_CC1NE_Pos        (2U)
6271 #define TIM_CCER_CC1NE_Msk        (0x1UL << TIM_CCER_CC1NE_Pos)                /*!< 0x00000004 */
6272 #define TIM_CCER_CC1NE            TIM_CCER_CC1NE_Msk                           /*!<Capture/Compare 1 Complementary output enable */
6273 #define TIM_CCER_CC1NP_Pos        (3U)
6274 #define TIM_CCER_CC1NP_Msk        (0x1UL << TIM_CCER_CC1NP_Pos)                /*!< 0x00000008 */
6275 #define TIM_CCER_CC1NP            TIM_CCER_CC1NP_Msk                           /*!<Capture/Compare 1 Complementary output Polarity */
6276 #define TIM_CCER_CC2E_Pos         (4U)
6277 #define TIM_CCER_CC2E_Msk         (0x1UL << TIM_CCER_CC2E_Pos)                 /*!< 0x00000010 */
6278 #define TIM_CCER_CC2E             TIM_CCER_CC2E_Msk                            /*!<Capture/Compare 2 output enable */
6279 #define TIM_CCER_CC2P_Pos         (5U)
6280 #define TIM_CCER_CC2P_Msk         (0x1UL << TIM_CCER_CC2P_Pos)                 /*!< 0x00000020 */
6281 #define TIM_CCER_CC2P             TIM_CCER_CC2P_Msk                            /*!<Capture/Compare 2 output Polarity */
6282 #define TIM_CCER_CC2NE_Pos        (6U)
6283 #define TIM_CCER_CC2NE_Msk        (0x1UL << TIM_CCER_CC2NE_Pos)                /*!< 0x00000040 */
6284 #define TIM_CCER_CC2NE            TIM_CCER_CC2NE_Msk                           /*!<Capture/Compare 2 Complementary output enable */
6285 #define TIM_CCER_CC2NP_Pos        (7U)
6286 #define TIM_CCER_CC2NP_Msk        (0x1UL << TIM_CCER_CC2NP_Pos)                /*!< 0x00000080 */
6287 #define TIM_CCER_CC2NP            TIM_CCER_CC2NP_Msk                           /*!<Capture/Compare 2 Complementary output Polarity */
6288 #define TIM_CCER_CC3E_Pos         (8U)
6289 #define TIM_CCER_CC3E_Msk         (0x1UL << TIM_CCER_CC3E_Pos)                 /*!< 0x00000100 */
6290 #define TIM_CCER_CC3E             TIM_CCER_CC3E_Msk                            /*!<Capture/Compare 3 output enable */
6291 #define TIM_CCER_CC3P_Pos         (9U)
6292 #define TIM_CCER_CC3P_Msk         (0x1UL << TIM_CCER_CC3P_Pos)                 /*!< 0x00000200 */
6293 #define TIM_CCER_CC3P             TIM_CCER_CC3P_Msk                            /*!<Capture/Compare 3 output Polarity */
6294 #define TIM_CCER_CC3NE_Pos        (10U)
6295 #define TIM_CCER_CC3NE_Msk        (0x1UL << TIM_CCER_CC3NE_Pos)                /*!< 0x00000400 */
6296 #define TIM_CCER_CC3NE            TIM_CCER_CC3NE_Msk                           /*!<Capture/Compare 3 Complementary output enable */
6297 #define TIM_CCER_CC3NP_Pos        (11U)
6298 #define TIM_CCER_CC3NP_Msk        (0x1UL << TIM_CCER_CC3NP_Pos)                /*!< 0x00000800 */
6299 #define TIM_CCER_CC3NP            TIM_CCER_CC3NP_Msk                           /*!<Capture/Compare 3 Complementary output Polarity */
6300 #define TIM_CCER_CC4E_Pos         (12U)
6301 #define TIM_CCER_CC4E_Msk         (0x1UL << TIM_CCER_CC4E_Pos)                 /*!< 0x00001000 */
6302 #define TIM_CCER_CC4E             TIM_CCER_CC4E_Msk                            /*!<Capture/Compare 4 output enable */
6303 #define TIM_CCER_CC4P_Pos         (13U)
6304 #define TIM_CCER_CC4P_Msk         (0x1UL << TIM_CCER_CC4P_Pos)                 /*!< 0x00002000 */
6305 #define TIM_CCER_CC4P             TIM_CCER_CC4P_Msk                            /*!<Capture/Compare 4 output Polarity */
6306 #define TIM_CCER_CC4NP_Pos        (15U)
6307 #define TIM_CCER_CC4NP_Msk        (0x1UL << TIM_CCER_CC4NP_Pos)                /*!< 0x00008000 */
6308 #define TIM_CCER_CC4NP            TIM_CCER_CC4NP_Msk                           /*!<Capture/Compare 4 Complementary output Polarity */
6309 #define TIM_CCER_CC5E_Pos         (16U)
6310 #define TIM_CCER_CC5E_Msk         (0x1UL << TIM_CCER_CC5E_Pos)                 /*!< 0x00010000 */
6311 #define TIM_CCER_CC5E             TIM_CCER_CC5E_Msk                            /*!<Capture/Compare 5 output enable */
6312 #define TIM_CCER_CC5P_Pos         (17U)
6313 #define TIM_CCER_CC5P_Msk         (0x1UL << TIM_CCER_CC5P_Pos)                 /*!< 0x00020000 */
6314 #define TIM_CCER_CC5P             TIM_CCER_CC5P_Msk                            /*!<Capture/Compare 5 output Polarity */
6315 #define TIM_CCER_CC6E_Pos         (20U)
6316 #define TIM_CCER_CC6E_Msk         (0x1UL << TIM_CCER_CC6E_Pos)                 /*!< 0x00100000 */
6317 #define TIM_CCER_CC6E             TIM_CCER_CC6E_Msk                            /*!<Capture/Compare 6 output enable */
6318 #define TIM_CCER_CC6P_Pos         (21U)
6319 #define TIM_CCER_CC6P_Msk         (0x1UL << TIM_CCER_CC6P_Pos)                 /*!< 0x00200000 */
6320 #define TIM_CCER_CC6P             TIM_CCER_CC6P_Msk                            /*!<Capture/Compare 6 output Polarity */
6321 
6322 /*******************  Bit definition for TIM_CNT register  ********************/
6323 #define TIM_CNT_CNT_Pos           (0U)
6324 #define TIM_CNT_CNT_Msk           (0xFFFFFFFFUL << TIM_CNT_CNT_Pos)            /*!< 0xFFFFFFFF */
6325 #define TIM_CNT_CNT               TIM_CNT_CNT_Msk                              /*!<Counter Value */
6326 #define TIM_CNT_UIFCPY_Pos        (31U)
6327 #define TIM_CNT_UIFCPY_Msk        (0x1UL << TIM_CNT_UIFCPY_Pos)                /*!< 0x80000000 */
6328 #define TIM_CNT_UIFCPY            TIM_CNT_UIFCPY_Msk                           /*!<Update interrupt flag copy (if UIFREMAP=1) */
6329 
6330 /*******************  Bit definition for TIM_PSC register  ********************/
6331 #define TIM_PSC_PSC_Pos           (0U)
6332 #define TIM_PSC_PSC_Msk           (0xFFFFUL << TIM_PSC_PSC_Pos)                /*!< 0x0000FFFF */
6333 #define TIM_PSC_PSC               TIM_PSC_PSC_Msk                              /*!<Prescaler Value */
6334 
6335 /*******************  Bit definition for TIM_ARR register  ********************/
6336 #define TIM_ARR_ARR_Pos           (0U)
6337 #define TIM_ARR_ARR_Msk           (0xFFFFFFFFUL << TIM_ARR_ARR_Pos)            /*!< 0xFFFFFFFF */
6338 #define TIM_ARR_ARR               TIM_ARR_ARR_Msk                              /*!<Actual auto-reload Value */
6339 
6340 /*******************  Bit definition for TIM_RCR register  ********************/
6341 #define TIM_RCR_REP_Pos           (0U)
6342 #define TIM_RCR_REP_Msk           (0xFFFFUL << TIM_RCR_REP_Pos)                /*!< 0x0000FFFF */
6343 #define TIM_RCR_REP               TIM_RCR_REP_Msk                              /*!<Repetition Counter Value */
6344 
6345 /*******************  Bit definition for TIM_CCR1 register  *******************/
6346 #define TIM_CCR1_CCR1_Pos         (0U)
6347 #define TIM_CCR1_CCR1_Msk         (0xFFFFFFFFUL << TIM_CCR1_CCR1_Pos)          /*!< 0xFFFFFFFF */
6348 #define TIM_CCR1_CCR1             TIM_CCR1_CCR1_Msk                            /*!<Capture/Compare 1 Value */
6349 
6350 /*******************  Bit definition for TIM_CCR2 register  *******************/
6351 #define TIM_CCR2_CCR2_Pos         (0U)
6352 #define TIM_CCR2_CCR2_Msk         (0xFFFFFFFFUL << TIM_CCR2_CCR2_Pos)          /*!< 0xFFFFFFFF */
6353 #define TIM_CCR2_CCR2             TIM_CCR2_CCR2_Msk                            /*!<Capture/Compare 2 Value */
6354 
6355 /*******************  Bit definition for TIM_CCR3 register  *******************/
6356 #define TIM_CCR3_CCR3_Pos         (0U)
6357 #define TIM_CCR3_CCR3_Msk         (0xFFFFFFFFUL << TIM_CCR3_CCR3_Pos)          /*!< 0xFFFFFFFF */
6358 #define TIM_CCR3_CCR3             TIM_CCR3_CCR3_Msk                            /*!<Capture/Compare 3 Value */
6359 
6360 /*******************  Bit definition for TIM_CCR4 register  *******************/
6361 #define TIM_CCR4_CCR4_Pos         (0U)
6362 #define TIM_CCR4_CCR4_Msk         (0xFFFFFFFFUL << TIM_CCR4_CCR4_Pos)          /*!< 0xFFFFFFFF */
6363 #define TIM_CCR4_CCR4             TIM_CCR4_CCR4_Msk                            /*!<Capture/Compare 4 Value */
6364 
6365 /*******************  Bit definition for TIM_CCR5 register  *******************/
6366 #define TIM_CCR5_CCR5_Pos         (0U)
6367 #define TIM_CCR5_CCR5_Msk         (0xFFFFFUL << TIM_CCR5_CCR5_Pos)             /*!< 0x000FFFFF */
6368 #define TIM_CCR5_CCR5             TIM_CCR5_CCR5_Msk                            /*!<Capture/Compare 5 Value */
6369 #define TIM_CCR5_GC5C1_Pos        (29U)
6370 #define TIM_CCR5_GC5C1_Msk        (0x1UL << TIM_CCR5_GC5C1_Pos)                /*!< 0x20000000 */
6371 #define TIM_CCR5_GC5C1            TIM_CCR5_GC5C1_Msk                           /*!<Group Channel 5 and Channel 1 */
6372 #define TIM_CCR5_GC5C2_Pos        (30U)
6373 #define TIM_CCR5_GC5C2_Msk        (0x1UL << TIM_CCR5_GC5C2_Pos)                /*!< 0x40000000 */
6374 #define TIM_CCR5_GC5C2            TIM_CCR5_GC5C2_Msk                           /*!<Group Channel 5 and Channel 2 */
6375 #define TIM_CCR5_GC5C3_Pos        (31U)
6376 #define TIM_CCR5_GC5C3_Msk        (0x1UL << TIM_CCR5_GC5C3_Pos)                /*!< 0x80000000 */
6377 #define TIM_CCR5_GC5C3            TIM_CCR5_GC5C3_Msk                           /*!<Group Channel 5 and Channel 3 */
6378 
6379 /*******************  Bit definition for TIM_CCR6 register  *******************/
6380 #define TIM_CCR6_CCR6_Pos         (0U)
6381 #define TIM_CCR6_CCR6_Msk         (0xFFFFFUL << TIM_CCR6_CCR6_Pos)              /*!< 0x000FFFFF */
6382 #define TIM_CCR6_CCR6             TIM_CCR6_CCR6_Msk                            /*!<Capture/Compare 6 Value */
6383 
6384 /*******************  Bit definition for TIM_BDTR register  *******************/
6385 #define TIM_BDTR_DTG_Pos          (0U)
6386 #define TIM_BDTR_DTG_Msk          (0xFFUL << TIM_BDTR_DTG_Pos)                 /*!< 0x000000FF */
6387 #define TIM_BDTR_DTG              TIM_BDTR_DTG_Msk                             /*!<DTG[0:7] bits (Dead-Time Generator set-up) */
6388 #define TIM_BDTR_DTG_0            (0x01UL << TIM_BDTR_DTG_Pos)                 /*!< 0x00000001 */
6389 #define TIM_BDTR_DTG_1            (0x02UL << TIM_BDTR_DTG_Pos)                 /*!< 0x00000002 */
6390 #define TIM_BDTR_DTG_2            (0x04UL << TIM_BDTR_DTG_Pos)                 /*!< 0x00000004 */
6391 #define TIM_BDTR_DTG_3            (0x08UL << TIM_BDTR_DTG_Pos)                 /*!< 0x00000008 */
6392 #define TIM_BDTR_DTG_4            (0x10UL << TIM_BDTR_DTG_Pos)                 /*!< 0x00000010 */
6393 #define TIM_BDTR_DTG_5            (0x20UL << TIM_BDTR_DTG_Pos)                 /*!< 0x00000020 */
6394 #define TIM_BDTR_DTG_6            (0x40UL << TIM_BDTR_DTG_Pos)                 /*!< 0x00000040 */
6395 #define TIM_BDTR_DTG_7            (0x80UL << TIM_BDTR_DTG_Pos)                 /*!< 0x00000080 */
6396 
6397 #define TIM_BDTR_LOCK_Pos         (8U)
6398 #define TIM_BDTR_LOCK_Msk         (0x3UL << TIM_BDTR_LOCK_Pos)                 /*!< 0x00000300 */
6399 #define TIM_BDTR_LOCK             TIM_BDTR_LOCK_Msk                            /*!<LOCK[1:0] bits (Lock Configuration) */
6400 #define TIM_BDTR_LOCK_0           (0x1UL << TIM_BDTR_LOCK_Pos)                 /*!< 0x00000100 */
6401 #define TIM_BDTR_LOCK_1           (0x2UL << TIM_BDTR_LOCK_Pos)                 /*!< 0x00000200 */
6402 
6403 #define TIM_BDTR_OSSI_Pos         (10U)
6404 #define TIM_BDTR_OSSI_Msk         (0x1UL << TIM_BDTR_OSSI_Pos)                 /*!< 0x00000400 */
6405 #define TIM_BDTR_OSSI             TIM_BDTR_OSSI_Msk                            /*!<Off-State Selection for Idle mode */
6406 #define TIM_BDTR_OSSR_Pos         (11U)
6407 #define TIM_BDTR_OSSR_Msk         (0x1UL << TIM_BDTR_OSSR_Pos)                 /*!< 0x00000800 */
6408 #define TIM_BDTR_OSSR             TIM_BDTR_OSSR_Msk                            /*!<Off-State Selection for Run mode */
6409 #define TIM_BDTR_BKE_Pos          (12U)
6410 #define TIM_BDTR_BKE_Msk          (0x1UL << TIM_BDTR_BKE_Pos)                  /*!< 0x00001000 */
6411 #define TIM_BDTR_BKE              TIM_BDTR_BKE_Msk                             /*!<Break enable for Break 1 */
6412 #define TIM_BDTR_BKP_Pos          (13U)
6413 #define TIM_BDTR_BKP_Msk          (0x1UL << TIM_BDTR_BKP_Pos)                  /*!< 0x00002000 */
6414 #define TIM_BDTR_BKP              TIM_BDTR_BKP_Msk                             /*!<Break Polarity for Break 1 */
6415 #define TIM_BDTR_AOE_Pos          (14U)
6416 #define TIM_BDTR_AOE_Msk          (0x1UL << TIM_BDTR_AOE_Pos)                  /*!< 0x00004000 */
6417 #define TIM_BDTR_AOE              TIM_BDTR_AOE_Msk                             /*!<Automatic Output enable */
6418 #define TIM_BDTR_MOE_Pos          (15U)
6419 #define TIM_BDTR_MOE_Msk          (0x1UL << TIM_BDTR_MOE_Pos)                  /*!< 0x00008000 */
6420 #define TIM_BDTR_MOE              TIM_BDTR_MOE_Msk                             /*!<Main Output enable */
6421 
6422 #define TIM_BDTR_BKF_Pos          (16U)
6423 #define TIM_BDTR_BKF_Msk          (0xFUL << TIM_BDTR_BKF_Pos)                  /*!< 0x000F0000 */
6424 #define TIM_BDTR_BKF              TIM_BDTR_BKF_Msk                             /*!<Break Filter for Break 1 */
6425 #define TIM_BDTR_BK2F_Pos         (20U)
6426 #define TIM_BDTR_BK2F_Msk         (0xFUL << TIM_BDTR_BK2F_Pos)                 /*!< 0x00F00000 */
6427 #define TIM_BDTR_BK2F             TIM_BDTR_BK2F_Msk                            /*!<Break Filter for Break 2 */
6428 
6429 #define TIM_BDTR_BK2E_Pos         (24U)
6430 #define TIM_BDTR_BK2E_Msk         (0x1UL << TIM_BDTR_BK2E_Pos)                 /*!< 0x01000000 */
6431 #define TIM_BDTR_BK2E             TIM_BDTR_BK2E_Msk                            /*!<Break enable for Break 2 */
6432 #define TIM_BDTR_BK2P_Pos         (25U)
6433 #define TIM_BDTR_BK2P_Msk         (0x1UL << TIM_BDTR_BK2P_Pos)                 /*!< 0x02000000 */
6434 #define TIM_BDTR_BK2P             TIM_BDTR_BK2P_Msk                            /*!<Break Polarity for Break 2 */
6435 
6436 #define TIM_BDTR_BKDSRM_Pos       (26U)
6437 #define TIM_BDTR_BKDSRM_Msk       (0x1UL << TIM_BDTR_BKDSRM_Pos)               /*!< 0x04000000 */
6438 #define TIM_BDTR_BKDSRM           TIM_BDTR_BKDSRM_Msk                          /*!<Break disarming/re-arming */
6439 #define TIM_BDTR_BK2DSRM_Pos      (27U)
6440 #define TIM_BDTR_BK2DSRM_Msk      (0x1UL << TIM_BDTR_BK2DSRM_Pos)              /*!< 0x08000000 */
6441 #define TIM_BDTR_BK2DSRM          TIM_BDTR_BK2DSRM_Msk                         /*!<Break2 disarming/re-arming */
6442 
6443 #define TIM_BDTR_BKBID_Pos        (28U)
6444 #define TIM_BDTR_BKBID_Msk        (0x1UL << TIM_BDTR_BKBID_Pos)                /*!< 0x10000000 */
6445 #define TIM_BDTR_BKBID            TIM_BDTR_BKBID_Msk                           /*!<Break BIDirectional */
6446 #define TIM_BDTR_BK2BID_Pos       (29U)
6447 #define TIM_BDTR_BK2BID_Msk       (0x1UL << TIM_BDTR_BK2BID_Pos)               /*!< 0x20000000 */
6448 #define TIM_BDTR_BK2BID           TIM_BDTR_BK2BID_Msk                          /*!<Break2 BIDirectional */
6449 
6450 /*******************  Bit definition for TIM_DCR register  ********************/
6451 #define TIM_DCR_DBA_Pos           (0U)
6452 #define TIM_DCR_DBA_Msk           (0x1FUL << TIM_DCR_DBA_Pos)                  /*!< 0x0000001F */
6453 #define TIM_DCR_DBA               TIM_DCR_DBA_Msk                              /*!<DBA[4:0] bits (DMA Base Address) */
6454 #define TIM_DCR_DBA_0             (0x01UL << TIM_DCR_DBA_Pos)                  /*!< 0x00000001 */
6455 #define TIM_DCR_DBA_1             (0x02UL << TIM_DCR_DBA_Pos)                  /*!< 0x00000002 */
6456 #define TIM_DCR_DBA_2             (0x04UL << TIM_DCR_DBA_Pos)                  /*!< 0x00000004 */
6457 #define TIM_DCR_DBA_3             (0x08UL << TIM_DCR_DBA_Pos)                  /*!< 0x00000008 */
6458 #define TIM_DCR_DBA_4             (0x10UL << TIM_DCR_DBA_Pos)                  /*!< 0x00000010 */
6459 
6460 #define TIM_DCR_DBL_Pos           (8U)
6461 #define TIM_DCR_DBL_Msk           (0x1FUL << TIM_DCR_DBL_Pos)                  /*!< 0x00001F00 */
6462 #define TIM_DCR_DBL               TIM_DCR_DBL_Msk                              /*!<DBL[4:0] bits (DMA Burst Length) */
6463 #define TIM_DCR_DBL_0             (0x01UL << TIM_DCR_DBL_Pos)                  /*!< 0x00000100 */
6464 #define TIM_DCR_DBL_1             (0x02UL << TIM_DCR_DBL_Pos)                  /*!< 0x00000200 */
6465 #define TIM_DCR_DBL_2             (0x04UL << TIM_DCR_DBL_Pos)                  /*!< 0x00000400 */
6466 #define TIM_DCR_DBL_3             (0x08UL << TIM_DCR_DBL_Pos)                  /*!< 0x00000800 */
6467 #define TIM_DCR_DBL_4             (0x10UL << TIM_DCR_DBL_Pos)                  /*!< 0x00001000 */
6468 
6469 /*******************  Bit definition for TIM_DMAR register  *******************/
6470 #define TIM_DMAR_DMAB_Pos         (0U)
6471 #define TIM_DMAR_DMAB_Msk         (0xFFFFUL << TIM_DMAR_DMAB_Pos)              /*!< 0x0000FFFF */
6472 #define TIM_DMAR_DMAB             TIM_DMAR_DMAB_Msk                            /*!<DMA register for burst accesses */
6473 
6474 /*******************  Bit definition for TIM_AF1 register  *******************/
6475 #define TIM_AF1_BKINE_Pos        (0U)
6476 #define TIM_AF1_BKINE_Msk        (0x1UL << TIM_AF1_BKINE_Pos)                /*!< 0x00000001 */
6477 #define TIM_AF1_BKINE            TIM_AF1_BKINE_Msk                           /*!<BRK BKIN input enable */
6478 #define TIM_AF1_BKCMP1E_Pos      (1U)
6479 #define TIM_AF1_BKCMP1E_Msk      (0x1UL << TIM_AF1_BKCMP1E_Pos)              /*!< 0x00000002 */
6480 #define TIM_AF1_BKCMP1E          TIM_AF1_BKCMP1E_Msk                         /*!<BRK COMP1 enable */
6481 #define TIM_AF1_BKCMP2E_Pos      (2U)
6482 #define TIM_AF1_BKCMP2E_Msk      (0x1UL << TIM_AF1_BKCMP2E_Pos)              /*!< 0x00000004 */
6483 #define TIM_AF1_BKCMP2E          TIM_AF1_BKCMP2E_Msk                         /*!<BRK COMP2 enable */
6484 #define TIM_AF1_BKINP_Pos        (9U)
6485 #define TIM_AF1_BKINP_Msk        (0x1UL << TIM_AF1_BKINP_Pos)                /*!< 0x00000200 */
6486 #define TIM_AF1_BKINP            TIM_AF1_BKINP_Msk                           /*!<BRK BKIN input polarity */
6487 #define TIM_AF1_BKCMP1P_Pos      (10U)
6488 #define TIM_AF1_BKCMP1P_Msk      (0x1UL << TIM_AF1_BKCMP1P_Pos)              /*!< 0x00000400 */
6489 #define TIM_AF1_BKCMP1P          TIM_AF1_BKCMP1P_Msk                         /*!<BRK COMP1 input polarity */
6490 #define TIM_AF1_BKCMP2P_Pos      (11U)
6491 #define TIM_AF1_BKCMP2P_Msk      (0x1UL << TIM_AF1_BKCMP2P_Pos)              /*!< 0x00000800 */
6492 #define TIM_AF1_BKCMP2P          TIM_AF1_BKCMP2P_Msk                         /*!<BRK COMP2 input polarity */
6493 
6494 #define TIM_AF1_ETRSEL_Pos       (14U)
6495 #define TIM_AF1_ETRSEL_Msk       (0xFUL << TIM_AF1_ETRSEL_Pos)               /*!< 0x0003C000 */
6496 #define TIM_AF1_ETRSEL           TIM_AF1_ETRSEL_Msk                          /*!<ETRSEL[3:0] bits (TIM ETR source selection) */
6497 #define TIM_AF1_ETRSEL_0         (0x1UL << TIM_AF1_ETRSEL_Pos)               /*!< 0x00004000 */
6498 #define TIM_AF1_ETRSEL_1         (0x2UL << TIM_AF1_ETRSEL_Pos)               /*!< 0x00008000 */
6499 #define TIM_AF1_ETRSEL_2         (0x4UL << TIM_AF1_ETRSEL_Pos)               /*!< 0x00010000 */
6500 #define TIM_AF1_ETRSEL_3         (0x8UL << TIM_AF1_ETRSEL_Pos)               /*!< 0x00020000 */
6501 
6502 /*******************  Bit definition for TIM_AF2 register  *******************/
6503 #define TIM_AF2_BK2INE_Pos       (0U)
6504 #define TIM_AF2_BK2INE_Msk       (0x1UL << TIM_AF2_BK2INE_Pos)               /*!< 0x00000001 */
6505 #define TIM_AF2_BK2INE           TIM_AF2_BK2INE_Msk                          /*!<BRK2 BKIN2 input enable */
6506 #define TIM_AF2_BK2CMP1E_Pos     (1U)
6507 #define TIM_AF2_BK2CMP1E_Msk     (0x1UL << TIM_AF2_BK2CMP1E_Pos)             /*!< 0x00000002 */
6508 #define TIM_AF2_BK2CMP1E         TIM_AF2_BK2CMP1E_Msk                        /*!<BRK2 COMP1 enable */
6509 #define TIM_AF2_BK2CMP2E_Pos     (2U)
6510 #define TIM_AF2_BK2CMP2E_Msk     (0x1UL << TIM_AF2_BK2CMP2E_Pos)             /*!< 0x00000004 */
6511 #define TIM_AF2_BK2CMP2E         TIM_AF2_BK2CMP2E_Msk                        /*!<BRK2 COMP2 enable */
6512 #define TIM_AF2_BK2INP_Pos       (9U)
6513 #define TIM_AF2_BK2INP_Msk       (0x1UL << TIM_AF2_BK2INP_Pos)               /*!< 0x00000200 */
6514 #define TIM_AF2_BK2INP           TIM_AF2_BK2INP_Msk                          /*!<BRK2 BKIN2 input polarity */
6515 #define TIM_AF2_BK2CMP1P_Pos     (10U)
6516 #define TIM_AF2_BK2CMP1P_Msk     (0x1UL << TIM_AF2_BK2CMP1P_Pos)             /*!< 0x00000400 */
6517 #define TIM_AF2_BK2CMP1P         TIM_AF2_BK2CMP1P_Msk                        /*!<BRK2 COMP1 input polarity */
6518 #define TIM_AF2_BK2CMP2P_Pos     (11U)
6519 #define TIM_AF2_BK2CMP2P_Msk     (0x1UL << TIM_AF2_BK2CMP2P_Pos)             /*!< 0x00000800 */
6520 #define TIM_AF2_BK2CMP2P         TIM_AF2_BK2CMP2P_Msk                        /*!<BRK2 COMP2 input polarity */
6521 
6522 /*******************  Bit definition for TIM_TISEL register  *********************/
6523 #define TIM_TISEL_TI1SEL_Pos      (0U)
6524 #define TIM_TISEL_TI1SEL_Msk      (0xFUL << TIM_TISEL_TI1SEL_Pos)              /*!< 0x0000000F */
6525 #define TIM_TISEL_TI1SEL          TIM_TISEL_TI1SEL_Msk                         /*!<TI1SEL[3:0] bits (TIM TI1 SEL)*/
6526 #define TIM_TISEL_TI1SEL_0        (0x1UL << TIM_TISEL_TI1SEL_Pos)              /*!< 0x00000001 */
6527 #define TIM_TISEL_TI1SEL_1        (0x2UL << TIM_TISEL_TI1SEL_Pos)              /*!< 0x00000002 */
6528 #define TIM_TISEL_TI1SEL_2        (0x4UL << TIM_TISEL_TI1SEL_Pos)              /*!< 0x00000004 */
6529 #define TIM_TISEL_TI1SEL_3        (0x8UL << TIM_TISEL_TI1SEL_Pos)              /*!< 0x00000008 */
6530 
6531 #define TIM_TISEL_TI2SEL_Pos      (8U)
6532 #define TIM_TISEL_TI2SEL_Msk      (0xFUL << TIM_TISEL_TI2SEL_Pos)              /*!< 0x00000F00 */
6533 #define TIM_TISEL_TI2SEL          TIM_TISEL_TI2SEL_Msk                         /*!<TI2SEL[3:0] bits (TIM TI2 SEL)*/
6534 #define TIM_TISEL_TI2SEL_0        (0x1UL << TIM_TISEL_TI2SEL_Pos)              /*!< 0x00000100 */
6535 #define TIM_TISEL_TI2SEL_1        (0x2UL << TIM_TISEL_TI2SEL_Pos)              /*!< 0x00000200 */
6536 #define TIM_TISEL_TI2SEL_2        (0x4UL << TIM_TISEL_TI2SEL_Pos)              /*!< 0x00000400 */
6537 #define TIM_TISEL_TI2SEL_3        (0x8UL << TIM_TISEL_TI2SEL_Pos)              /*!< 0x00000800 */
6538 
6539 #define TIM_TISEL_TI3SEL_Pos      (16U)
6540 #define TIM_TISEL_TI3SEL_Msk      (0xFUL << TIM_TISEL_TI3SEL_Pos)              /*!< 0x000F0000 */
6541 #define TIM_TISEL_TI3SEL          TIM_TISEL_TI3SEL_Msk                         /*!<TI3SEL[3:0] bits (TIM TI3 SEL)*/
6542 #define TIM_TISEL_TI3SEL_0        (0x1UL << TIM_TISEL_TI3SEL_Pos)              /*!< 0x00010000 */
6543 #define TIM_TISEL_TI3SEL_1        (0x2UL << TIM_TISEL_TI3SEL_Pos)              /*!< 0x00020000 */
6544 #define TIM_TISEL_TI3SEL_2        (0x4UL << TIM_TISEL_TI3SEL_Pos)              /*!< 0x00040000 */
6545 #define TIM_TISEL_TI3SEL_3        (0x8UL << TIM_TISEL_TI3SEL_Pos)              /*!< 0x00080000 */
6546 
6547 #define TIM_TISEL_TI4SEL_Pos      (24U)
6548 #define TIM_TISEL_TI4SEL_Msk      (0xFUL << TIM_TISEL_TI4SEL_Pos)              /*!< 0x0F000000 */
6549 #define TIM_TISEL_TI4SEL          TIM_TISEL_TI4SEL_Msk                         /*!<TI4SEL[3:0] bits (TIM TI4 SEL)*/
6550 #define TIM_TISEL_TI4SEL_0        (0x1UL << TIM_TISEL_TI4SEL_Pos)              /*!< 0x01000000 */
6551 #define TIM_TISEL_TI4SEL_1        (0x2UL << TIM_TISEL_TI4SEL_Pos)              /*!< 0x02000000 */
6552 #define TIM_TISEL_TI4SEL_2        (0x4UL << TIM_TISEL_TI4SEL_Pos)              /*!< 0x04000000 */
6553 #define TIM_TISEL_TI4SEL_3        (0x8UL << TIM_TISEL_TI4SEL_Pos)              /*!< 0x08000000 */
6554 
6555 
6556 /*******************  Bit definition for TIM2_OR1 register  *******************/
6557 #define TIM2_OR1_OCREF_CLR_Pos     (0U)
6558 #define TIM2_OR1_OCREF_CLR_Msk     (0x3UL << TIM2_OR1_OCREF_CLR_Pos)           /*!< 0x00000003 */
6559 #define TIM2_OR1_OCREF_CLR         TIM2_OR1_OCREF_CLR_Msk
6560 #define TIM2_OR1_OCREF_CLR_0       (0x1UL << TIM2_OR1_OCREF_CLR_Pos)           /*!< 0x00000001 */
6561 #define TIM2_OR1_OCREF_CLR_1       (0x2UL << TIM2_OR1_OCREF_CLR_Pos)           /*!< 0x00000002 */
6562 
6563 /*******************  Bit definition for TIM2_AF1 register  *******************/
6564 #define TIM2_AF1_ETRSEL_Pos       (14U)
6565 #define TIM2_AF1_ETRSEL_Msk       (0xFUL << TIM2_AF1_ETRSEL_Pos)               /*!< 0x0003C000 */
6566 #define TIM2_AF1_ETRSEL           TIM2_AF1_ETRSEL_Msk                          /*!<ETRSEL[3:0] bits (TIM2 ETR source selection) */
6567 #define TIM2_AF1_ETRSEL_0         (0x1UL << TIM2_AF1_ETRSEL_Pos)               /*!< 0x00004000 */
6568 #define TIM2_AF1_ETRSEL_1         (0x2UL << TIM2_AF1_ETRSEL_Pos)               /*!< 0x00008000 */
6569 #define TIM2_AF1_ETRSEL_2         (0x4UL << TIM2_AF1_ETRSEL_Pos)               /*!< 0x00010000 */
6570 #define TIM2_AF1_ETRSEL_3         (0x8UL << TIM2_AF1_ETRSEL_Pos)               /*!< 0x00020000 */
6571 /******************************************************************************/
6572 /*                                                                            */
6573 /*      Universal Synchronous Asynchronous Receiver Transmitter (USART)       */
6574 /*                                                                            */
6575 /******************************************************************************/
6576 /******************  Bit definition for USART_CR1 register  *******************/
6577 #define USART_CR1_UE_Pos             (0U)
6578 #define USART_CR1_UE_Msk             (0x1UL << USART_CR1_UE_Pos)               /*!< 0x00000001 */
6579 #define USART_CR1_UE                 USART_CR1_UE_Msk                          /*!< USART Enable */
6580 #define USART_CR1_UESM_Pos           (1U)
6581 #define USART_CR1_UESM_Msk           (0x1UL << USART_CR1_UESM_Pos)             /*!< 0x00000002 */
6582 #define USART_CR1_UESM               USART_CR1_UESM_Msk                        /*!< USART Enable in STOP Mode */
6583 #define USART_CR1_RE_Pos             (2U)
6584 #define USART_CR1_RE_Msk             (0x1UL << USART_CR1_RE_Pos)               /*!< 0x00000004 */
6585 #define USART_CR1_RE                 USART_CR1_RE_Msk                          /*!< Receiver Enable */
6586 #define USART_CR1_TE_Pos             (3U)
6587 #define USART_CR1_TE_Msk             (0x1UL << USART_CR1_TE_Pos)               /*!< 0x00000008 */
6588 #define USART_CR1_TE                 USART_CR1_TE_Msk                          /*!< Transmitter Enable */
6589 #define USART_CR1_IDLEIE_Pos         (4U)
6590 #define USART_CR1_IDLEIE_Msk         (0x1UL << USART_CR1_IDLEIE_Pos)           /*!< 0x00000010 */
6591 #define USART_CR1_IDLEIE             USART_CR1_IDLEIE_Msk                      /*!< IDLE Interrupt Enable */
6592 #define USART_CR1_RXNEIE_RXFNEIE_Pos   (5U)
6593 #define USART_CR1_RXNEIE_RXFNEIE_Msk   (0x1UL << USART_CR1_RXNEIE_RXFNEIE_Pos) /*!< 0x00000020 */
6594 #define USART_CR1_RXNEIE_RXFNEIE       USART_CR1_RXNEIE_RXFNEIE_Msk            /*!< RXNE/RXFIFO not empty Interrupt Enable */
6595 #define USART_CR1_TCIE_Pos           (6U)
6596 #define USART_CR1_TCIE_Msk           (0x1UL << USART_CR1_TCIE_Pos)             /*!< 0x00000040 */
6597 #define USART_CR1_TCIE               USART_CR1_TCIE_Msk                        /*!< Transmission Complete Interrupt Enable */
6598 #define USART_CR1_TXEIE_TXFNFIE_Pos  (7U)
6599 #define USART_CR1_TXEIE_TXFNFIE_Msk   (0x1UL << USART_CR1_TXEIE_TXFNFIE_Pos)   /*!< 0x00000080 */
6600 #define USART_CR1_TXEIE_TXFNFIE       USART_CR1_TXEIE_TXFNFIE_Msk              /*!< TXE/TXFIFO not full Interrupt Enable */
6601 #define USART_CR1_PEIE_Pos           (8U)
6602 #define USART_CR1_PEIE_Msk           (0x1UL << USART_CR1_PEIE_Pos)             /*!< 0x00000100 */
6603 #define USART_CR1_PEIE               USART_CR1_PEIE_Msk                        /*!< PE Interrupt Enable */
6604 #define USART_CR1_PS_Pos             (9U)
6605 #define USART_CR1_PS_Msk             (0x1UL << USART_CR1_PS_Pos)               /*!< 0x00000200 */
6606 #define USART_CR1_PS                 USART_CR1_PS_Msk                          /*!< Parity Selection */
6607 #define USART_CR1_PCE_Pos            (10U)
6608 #define USART_CR1_PCE_Msk            (0x1UL << USART_CR1_PCE_Pos)              /*!< 0x00000400 */
6609 #define USART_CR1_PCE                USART_CR1_PCE_Msk                         /*!< Parity Control Enable */
6610 #define USART_CR1_WAKE_Pos           (11U)
6611 #define USART_CR1_WAKE_Msk           (0x1UL << USART_CR1_WAKE_Pos)             /*!< 0x00000800 */
6612 #define USART_CR1_WAKE               USART_CR1_WAKE_Msk                        /*!< Receiver Wakeup method */
6613 #define USART_CR1_M_Pos              (12U)
6614 #define USART_CR1_M_Msk              (0x10001UL << USART_CR1_M_Pos)            /*!< 0x10001000 */
6615 #define USART_CR1_M                  USART_CR1_M_Msk                           /*!< Word length */
6616 #define USART_CR1_M0_Pos             (12U)
6617 #define USART_CR1_M0_Msk             (0x1UL << USART_CR1_M0_Pos)               /*!< 0x00001000 */
6618 #define USART_CR1_M0                 USART_CR1_M0_Msk                          /*!< Word length - Bit 0 */
6619 #define USART_CR1_MME_Pos            (13U)
6620 #define USART_CR1_MME_Msk            (0x1UL << USART_CR1_MME_Pos)              /*!< 0x00002000 */
6621 #define USART_CR1_MME                USART_CR1_MME_Msk                         /*!< Mute Mode Enable */
6622 #define USART_CR1_CMIE_Pos           (14U)
6623 #define USART_CR1_CMIE_Msk           (0x1UL << USART_CR1_CMIE_Pos)             /*!< 0x00004000 */
6624 #define USART_CR1_CMIE               USART_CR1_CMIE_Msk                        /*!< Character match interrupt enable */
6625 #define USART_CR1_OVER8_Pos          (15U)
6626 #define USART_CR1_OVER8_Msk          (0x1UL << USART_CR1_OVER8_Pos)            /*!< 0x00008000 */
6627 #define USART_CR1_OVER8              USART_CR1_OVER8_Msk                       /*!< Oversampling by 8-bit or 16-bit mode */
6628 #define USART_CR1_DEDT_Pos           (16U)
6629 #define USART_CR1_DEDT_Msk           (0x1FUL << USART_CR1_DEDT_Pos)            /*!< 0x001F0000 */
6630 #define USART_CR1_DEDT               USART_CR1_DEDT_Msk                        /*!< DEDT[4:0] bits (Driver Enable Deassertion Time) */
6631 #define USART_CR1_DEDT_0             (0x01UL << USART_CR1_DEDT_Pos)            /*!< 0x00010000 */
6632 #define USART_CR1_DEDT_1             (0x02UL << USART_CR1_DEDT_Pos)            /*!< 0x00020000 */
6633 #define USART_CR1_DEDT_2             (0x04UL << USART_CR1_DEDT_Pos)            /*!< 0x00040000 */
6634 #define USART_CR1_DEDT_3             (0x08UL << USART_CR1_DEDT_Pos)            /*!< 0x00080000 */
6635 #define USART_CR1_DEDT_4             (0x10UL << USART_CR1_DEDT_Pos)            /*!< 0x00100000 */
6636 #define USART_CR1_DEAT_Pos           (21U)
6637 #define USART_CR1_DEAT_Msk           (0x1FUL << USART_CR1_DEAT_Pos)            /*!< 0x03E00000 */
6638 #define USART_CR1_DEAT               USART_CR1_DEAT_Msk                        /*!< DEAT[4:0] bits (Driver Enable Assertion Time) */
6639 #define USART_CR1_DEAT_0             (0x01UL << USART_CR1_DEAT_Pos)            /*!< 0x00200000 */
6640 #define USART_CR1_DEAT_1             (0x02UL << USART_CR1_DEAT_Pos)            /*!< 0x00400000 */
6641 #define USART_CR1_DEAT_2             (0x04UL << USART_CR1_DEAT_Pos)            /*!< 0x00800000 */
6642 #define USART_CR1_DEAT_3             (0x08UL << USART_CR1_DEAT_Pos)            /*!< 0x01000000 */
6643 #define USART_CR1_DEAT_4             (0x10UL << USART_CR1_DEAT_Pos)            /*!< 0x02000000 */
6644 #define USART_CR1_RTOIE_Pos          (26U)
6645 #define USART_CR1_RTOIE_Msk          (0x1UL << USART_CR1_RTOIE_Pos)            /*!< 0x04000000 */
6646 #define USART_CR1_RTOIE              USART_CR1_RTOIE_Msk                       /*!< Receive Time Out interrupt enable */
6647 #define USART_CR1_EOBIE_Pos          (27U)
6648 #define USART_CR1_EOBIE_Msk          (0x1UL << USART_CR1_EOBIE_Pos)            /*!< 0x08000000 */
6649 #define USART_CR1_EOBIE              USART_CR1_EOBIE_Msk                       /*!< End of Block interrupt enable */
6650 #define USART_CR1_M1_Pos             (28U)
6651 #define USART_CR1_M1_Msk             (0x1UL << USART_CR1_M1_Pos)               /*!< 0x10000000 */
6652 #define USART_CR1_M1                 USART_CR1_M1_Msk                          /*!< Word length - Bit 1 */
6653 #define USART_CR1_FIFOEN_Pos         (29U)
6654 #define USART_CR1_FIFOEN_Msk         (0x1UL << USART_CR1_FIFOEN_Pos)           /*!< 0x20000000 */
6655 #define USART_CR1_FIFOEN             USART_CR1_FIFOEN_Msk                      /*!< FIFO mode enable */
6656 #define USART_CR1_TXFEIE_Pos         (30U)
6657 #define USART_CR1_TXFEIE_Msk         (0x1UL << USART_CR1_TXFEIE_Pos)           /*!< 0x40000000 */
6658 #define USART_CR1_TXFEIE             USART_CR1_TXFEIE_Msk                      /*!< TXFIFO empty interrupt enable */
6659 #define USART_CR1_RXFFIE_Pos         (31U)
6660 #define USART_CR1_RXFFIE_Msk         (0x1UL << USART_CR1_RXFFIE_Pos)           /*!< 0x80000000 */
6661 #define USART_CR1_RXFFIE             USART_CR1_RXFFIE_Msk                      /*!< RXFIFO Full interrupt enable */
6662 
6663 /******************  Bit definition for USART_CR2 register  *******************/
6664 #define USART_CR2_SLVEN_Pos          (0U)
6665 #define USART_CR2_SLVEN_Msk          (0x1UL << USART_CR2_SLVEN_Pos)            /*!< 0x00000001 */
6666 #define USART_CR2_SLVEN              USART_CR2_SLVEN_Msk                       /*!< Synchronous Slave mode enable */
6667 #define USART_CR2_DIS_NSS_Pos        (3U)
6668 #define USART_CR2_DIS_NSS_Msk        (0x1UL << USART_CR2_DIS_NSS_Pos)          /*!< 0x00000008 */
6669 #define USART_CR2_DIS_NSS            USART_CR2_DIS_NSS_Msk                     /*!< NSS input pin disable for SPI slave selection */
6670 #define USART_CR2_ADDM7_Pos          (4U)
6671 #define USART_CR2_ADDM7_Msk          (0x1UL << USART_CR2_ADDM7_Pos)            /*!< 0x00000010 */
6672 #define USART_CR2_ADDM7              USART_CR2_ADDM7_Msk                       /*!< 7-bit or 4-bit Address Detection */
6673 #define USART_CR2_LBDL_Pos           (5U)
6674 #define USART_CR2_LBDL_Msk           (0x1UL << USART_CR2_LBDL_Pos)             /*!< 0x00000020 */
6675 #define USART_CR2_LBDL               USART_CR2_LBDL_Msk                        /*!< LIN Break Detection Length */
6676 #define USART_CR2_LBDIE_Pos          (6U)
6677 #define USART_CR2_LBDIE_Msk          (0x1UL << USART_CR2_LBDIE_Pos)            /*!< 0x00000040 */
6678 #define USART_CR2_LBDIE              USART_CR2_LBDIE_Msk                       /*!< LIN Break Detection Interrupt Enable */
6679 #define USART_CR2_LBCL_Pos           (8U)
6680 #define USART_CR2_LBCL_Msk           (0x1UL << USART_CR2_LBCL_Pos)             /*!< 0x00000100 */
6681 #define USART_CR2_LBCL               USART_CR2_LBCL_Msk                        /*!< Last Bit Clock pulse */
6682 #define USART_CR2_CPHA_Pos           (9U)
6683 #define USART_CR2_CPHA_Msk           (0x1UL << USART_CR2_CPHA_Pos)             /*!< 0x00000200 */
6684 #define USART_CR2_CPHA               USART_CR2_CPHA_Msk                        /*!< Clock Phase */
6685 #define USART_CR2_CPOL_Pos           (10U)
6686 #define USART_CR2_CPOL_Msk           (0x1UL << USART_CR2_CPOL_Pos)             /*!< 0x00000400 */
6687 #define USART_CR2_CPOL               USART_CR2_CPOL_Msk                        /*!< Clock Polarity */
6688 #define USART_CR2_CLKEN_Pos          (11U)
6689 #define USART_CR2_CLKEN_Msk          (0x1UL << USART_CR2_CLKEN_Pos)            /*!< 0x00000800 */
6690 #define USART_CR2_CLKEN              USART_CR2_CLKEN_Msk                       /*!< Clock Enable */
6691 #define USART_CR2_STOP_Pos           (12U)
6692 #define USART_CR2_STOP_Msk           (0x3UL << USART_CR2_STOP_Pos)             /*!< 0x00003000 */
6693 #define USART_CR2_STOP               USART_CR2_STOP_Msk                        /*!< STOP[1:0] bits (STOP bits) */
6694 #define USART_CR2_STOP_0             (0x1UL << USART_CR2_STOP_Pos)             /*!< 0x00001000 */
6695 #define USART_CR2_STOP_1             (0x2UL << USART_CR2_STOP_Pos)             /*!< 0x00002000 */
6696 #define USART_CR2_LINEN_Pos          (14U)
6697 #define USART_CR2_LINEN_Msk          (0x1UL << USART_CR2_LINEN_Pos)            /*!< 0x00004000 */
6698 #define USART_CR2_LINEN              USART_CR2_LINEN_Msk                       /*!< LIN mode enable */
6699 #define USART_CR2_SWAP_Pos           (15U)
6700 #define USART_CR2_SWAP_Msk           (0x1UL << USART_CR2_SWAP_Pos)             /*!< 0x00008000 */
6701 #define USART_CR2_SWAP               USART_CR2_SWAP_Msk                        /*!< SWAP TX/RX pins */
6702 #define USART_CR2_RXINV_Pos          (16U)
6703 #define USART_CR2_RXINV_Msk          (0x1UL << USART_CR2_RXINV_Pos)            /*!< 0x00010000 */
6704 #define USART_CR2_RXINV              USART_CR2_RXINV_Msk                       /*!< RX pin active level inversion */
6705 #define USART_CR2_TXINV_Pos          (17U)
6706 #define USART_CR2_TXINV_Msk          (0x1UL << USART_CR2_TXINV_Pos)            /*!< 0x00020000 */
6707 #define USART_CR2_TXINV              USART_CR2_TXINV_Msk                       /*!< TX pin active level inversion */
6708 #define USART_CR2_DATAINV_Pos        (18U)
6709 #define USART_CR2_DATAINV_Msk        (0x1UL << USART_CR2_DATAINV_Pos)          /*!< 0x00040000 */
6710 #define USART_CR2_DATAINV            USART_CR2_DATAINV_Msk                     /*!< Binary data inversion */
6711 #define USART_CR2_MSBFIRST_Pos       (19U)
6712 #define USART_CR2_MSBFIRST_Msk       (0x1UL << USART_CR2_MSBFIRST_Pos)         /*!< 0x00080000 */
6713 #define USART_CR2_MSBFIRST           USART_CR2_MSBFIRST_Msk                    /*!< Most Significant Bit First */
6714 #define USART_CR2_ABREN_Pos          (20U)
6715 #define USART_CR2_ABREN_Msk          (0x1UL << USART_CR2_ABREN_Pos)            /*!< 0x00100000 */
6716 #define USART_CR2_ABREN              USART_CR2_ABREN_Msk                       /*!< Auto Baud-Rate Enable*/
6717 #define USART_CR2_ABRMODE_Pos        (21U)
6718 #define USART_CR2_ABRMODE_Msk        (0x3UL << USART_CR2_ABRMODE_Pos)          /*!< 0x00600000 */
6719 #define USART_CR2_ABRMODE            USART_CR2_ABRMODE_Msk                     /*!< ABRMOD[1:0] bits (Auto Baud-Rate Mode) */
6720 #define USART_CR2_ABRMODE_0          (0x1UL << USART_CR2_ABRMODE_Pos)          /*!< 0x00200000 */
6721 #define USART_CR2_ABRMODE_1          (0x2UL << USART_CR2_ABRMODE_Pos)          /*!< 0x00400000 */
6722 #define USART_CR2_RTOEN_Pos          (23U)
6723 #define USART_CR2_RTOEN_Msk          (0x1UL << USART_CR2_RTOEN_Pos)            /*!< 0x00800000 */
6724 #define USART_CR2_RTOEN              USART_CR2_RTOEN_Msk                       /*!< Receiver Time-Out enable */
6725 #define USART_CR2_ADD_Pos            (24U)
6726 #define USART_CR2_ADD_Msk            (0xFFUL << USART_CR2_ADD_Pos)             /*!< 0xFF000000 */
6727 #define USART_CR2_ADD                USART_CR2_ADD_Msk                         /*!< Address of the USART node */
6728 
6729 /******************  Bit definition for USART_CR3 register  *******************/
6730 #define USART_CR3_EIE_Pos            (0U)
6731 #define USART_CR3_EIE_Msk            (0x1UL << USART_CR3_EIE_Pos)              /*!< 0x00000001 */
6732 #define USART_CR3_EIE                USART_CR3_EIE_Msk                         /*!< Error Interrupt Enable */
6733 #define USART_CR3_IREN_Pos           (1U)
6734 #define USART_CR3_IREN_Msk           (0x1UL << USART_CR3_IREN_Pos)             /*!< 0x00000002 */
6735 #define USART_CR3_IREN               USART_CR3_IREN_Msk                        /*!< IrDA mode Enable */
6736 #define USART_CR3_IRLP_Pos           (2U)
6737 #define USART_CR3_IRLP_Msk           (0x1UL << USART_CR3_IRLP_Pos)             /*!< 0x00000004 */
6738 #define USART_CR3_IRLP               USART_CR3_IRLP_Msk                        /*!< IrDA Low-Power */
6739 #define USART_CR3_HDSEL_Pos          (3U)
6740 #define USART_CR3_HDSEL_Msk          (0x1UL << USART_CR3_HDSEL_Pos)            /*!< 0x00000008 */
6741 #define USART_CR3_HDSEL              USART_CR3_HDSEL_Msk                       /*!< Half-Duplex Selection */
6742 #define USART_CR3_NACK_Pos           (4U)
6743 #define USART_CR3_NACK_Msk           (0x1UL << USART_CR3_NACK_Pos)             /*!< 0x00000010 */
6744 #define USART_CR3_NACK               USART_CR3_NACK_Msk                        /*!< SmartCard NACK enable */
6745 #define USART_CR3_SCEN_Pos           (5U)
6746 #define USART_CR3_SCEN_Msk           (0x1UL << USART_CR3_SCEN_Pos)             /*!< 0x00000020 */
6747 #define USART_CR3_SCEN               USART_CR3_SCEN_Msk                        /*!< SmartCard mode enable */
6748 #define USART_CR3_DMAR_Pos           (6U)
6749 #define USART_CR3_DMAR_Msk           (0x1UL << USART_CR3_DMAR_Pos)             /*!< 0x00000040 */
6750 #define USART_CR3_DMAR               USART_CR3_DMAR_Msk                        /*!< DMA Enable Receiver */
6751 #define USART_CR3_DMAT_Pos           (7U)
6752 #define USART_CR3_DMAT_Msk           (0x1UL << USART_CR3_DMAT_Pos)             /*!< 0x00000080 */
6753 #define USART_CR3_DMAT               USART_CR3_DMAT_Msk                        /*!< DMA Enable Transmitter */
6754 #define USART_CR3_RTSE_Pos           (8U)
6755 #define USART_CR3_RTSE_Msk           (0x1UL << USART_CR3_RTSE_Pos)             /*!< 0x00000100 */
6756 #define USART_CR3_RTSE               USART_CR3_RTSE_Msk                        /*!< RTS Enable */
6757 #define USART_CR3_CTSE_Pos           (9U)
6758 #define USART_CR3_CTSE_Msk           (0x1UL << USART_CR3_CTSE_Pos)             /*!< 0x00000200 */
6759 #define USART_CR3_CTSE               USART_CR3_CTSE_Msk                        /*!< CTS Enable */
6760 #define USART_CR3_CTSIE_Pos          (10U)
6761 #define USART_CR3_CTSIE_Msk          (0x1UL << USART_CR3_CTSIE_Pos)            /*!< 0x00000400 */
6762 #define USART_CR3_CTSIE              USART_CR3_CTSIE_Msk                       /*!< CTS Interrupt Enable */
6763 #define USART_CR3_ONEBIT_Pos         (11U)
6764 #define USART_CR3_ONEBIT_Msk         (0x1UL << USART_CR3_ONEBIT_Pos)           /*!< 0x00000800 */
6765 #define USART_CR3_ONEBIT             USART_CR3_ONEBIT_Msk                      /*!< One sample bit method enable */
6766 #define USART_CR3_OVRDIS_Pos         (12U)
6767 #define USART_CR3_OVRDIS_Msk         (0x1UL << USART_CR3_OVRDIS_Pos)           /*!< 0x00001000 */
6768 #define USART_CR3_OVRDIS             USART_CR3_OVRDIS_Msk                      /*!< Overrun Disable */
6769 #define USART_CR3_DDRE_Pos           (13U)
6770 #define USART_CR3_DDRE_Msk           (0x1UL << USART_CR3_DDRE_Pos)             /*!< 0x00002000 */
6771 #define USART_CR3_DDRE               USART_CR3_DDRE_Msk                        /*!< DMA Disable on Reception Error */
6772 #define USART_CR3_DEM_Pos            (14U)
6773 #define USART_CR3_DEM_Msk            (0x1UL << USART_CR3_DEM_Pos)              /*!< 0x00004000 */
6774 #define USART_CR3_DEM                USART_CR3_DEM_Msk                         /*!< Driver Enable Mode */
6775 #define USART_CR3_DEP_Pos            (15U)
6776 #define USART_CR3_DEP_Msk            (0x1UL << USART_CR3_DEP_Pos)              /*!< 0x00008000 */
6777 #define USART_CR3_DEP                USART_CR3_DEP_Msk                         /*!< Driver Enable Polarity Selection */
6778 #define USART_CR3_SCARCNT_Pos        (17U)
6779 #define USART_CR3_SCARCNT_Msk        (0x7UL << USART_CR3_SCARCNT_Pos)          /*!< 0x000E0000 */
6780 #define USART_CR3_SCARCNT            USART_CR3_SCARCNT_Msk                     /*!< SCARCNT[2:0] bits (SmartCard Auto-Retry Count) */
6781 #define USART_CR3_SCARCNT_0          (0x1UL << USART_CR3_SCARCNT_Pos)          /*!< 0x00020000 */
6782 #define USART_CR3_SCARCNT_1          (0x2UL << USART_CR3_SCARCNT_Pos)          /*!< 0x00040000 */
6783 #define USART_CR3_SCARCNT_2          (0x4UL << USART_CR3_SCARCNT_Pos)          /*!< 0x00080000 */
6784 #define USART_CR3_WUS_Pos            (20U)
6785 #define USART_CR3_WUS_Msk            (0x3UL << USART_CR3_WUS_Pos)              /*!< 0x00300000 */
6786 #define USART_CR3_WUS                USART_CR3_WUS_Msk                         /*!< WUS[1:0] bits (Wake UP Interrupt Flag Selection) */
6787 #define USART_CR3_WUS_0              (0x1UL << USART_CR3_WUS_Pos)              /*!< 0x00100000 */
6788 #define USART_CR3_WUS_1              (0x2UL << USART_CR3_WUS_Pos)              /*!< 0x00200000 */
6789 #define USART_CR3_WUFIE_Pos          (22U)
6790 #define USART_CR3_WUFIE_Msk          (0x1UL << USART_CR3_WUFIE_Pos)            /*!< 0x00400000 */
6791 #define USART_CR3_WUFIE              USART_CR3_WUFIE_Msk                       /*!< Wake Up Interrupt Enable */
6792 #define USART_CR3_TXFTIE_Pos         (23U)
6793 #define USART_CR3_TXFTIE_Msk         (0x1UL << USART_CR3_TXFTIE_Pos)           /*!< 0x00800000 */
6794 #define USART_CR3_TXFTIE             USART_CR3_TXFTIE_Msk                      /*!< TXFIFO threshold interrupt enable */
6795 #define USART_CR3_TCBGTIE_Pos        (24U)
6796 #define USART_CR3_TCBGTIE_Msk        (0x1UL << USART_CR3_TCBGTIE_Pos)          /*!< 0x01000000 */
6797 #define USART_CR3_TCBGTIE            USART_CR3_TCBGTIE_Msk                     /*!< Transmission Complete Before Guard Time Interrupt Enable */
6798 #define USART_CR3_RXFTCFG_Pos        (25U)
6799 #define USART_CR3_RXFTCFG_Msk        (0x7UL << USART_CR3_RXFTCFG_Pos)          /*!< 0x0E000000 */
6800 #define USART_CR3_RXFTCFG            USART_CR3_RXFTCFG_Msk                     /*!< RXFIFO FIFO threshold configuration */
6801 #define USART_CR3_RXFTCFG_0          (0x1UL << USART_CR3_RXFTCFG_Pos)          /*!< 0x02000000 */
6802 #define USART_CR3_RXFTCFG_1          (0x2UL << USART_CR3_RXFTCFG_Pos)          /*!< 0x04000000 */
6803 #define USART_CR3_RXFTCFG_2          (0x4UL << USART_CR3_RXFTCFG_Pos)          /*!< 0x08000000 */
6804 #define USART_CR3_RXFTIE_Pos         (28U)
6805 #define USART_CR3_RXFTIE_Msk         (0x1UL << USART_CR3_RXFTIE_Pos)           /*!< 0x10000000 */
6806 #define USART_CR3_RXFTIE             USART_CR3_RXFTIE_Msk                      /*!< RXFIFO threshold interrupt enable */
6807 #define USART_CR3_TXFTCFG_Pos        (29U)
6808 #define USART_CR3_TXFTCFG_Msk        (0x7UL << USART_CR3_TXFTCFG_Pos)          /*!< 0xE0000000 */
6809 #define USART_CR3_TXFTCFG            USART_CR3_TXFTCFG_Msk                     /*!< TXFIFO threshold configuration */
6810 #define USART_CR3_TXFTCFG_0          (0x1UL << USART_CR3_TXFTCFG_Pos)          /*!< 0x20000000 */
6811 #define USART_CR3_TXFTCFG_1          (0x2UL << USART_CR3_TXFTCFG_Pos)          /*!< 0x40000000 */
6812 #define USART_CR3_TXFTCFG_2          (0x4UL << USART_CR3_TXFTCFG_Pos)          /*!< 0x80000000 */
6813 
6814 /******************  Bit definition for USART_BRR register  *******************/
6815 #define USART_BRR_BRR                ((uint16_t)0xFFFF)                        /*!< USART  Baud rate register [15:0] */
6816 
6817 /******************  Bit definition for USART_GTPR register  ******************/
6818 #define USART_GTPR_PSC_Pos           (0U)
6819 #define USART_GTPR_PSC_Msk           (0xFFUL << USART_GTPR_PSC_Pos)            /*!< 0x000000FF */
6820 #define USART_GTPR_PSC               USART_GTPR_PSC_Msk                        /*!< PSC[7:0] bits (Prescaler value) */
6821 #define USART_GTPR_GT_Pos            (8U)
6822 #define USART_GTPR_GT_Msk            (0xFFUL << USART_GTPR_GT_Pos)             /*!< 0x0000FF00 */
6823 #define USART_GTPR_GT                USART_GTPR_GT_Msk                         /*!< GT[7:0] bits (Guard time value) */
6824 
6825 /*******************  Bit definition for USART_RTOR register  *****************/
6826 #define USART_RTOR_RTO_Pos           (0U)
6827 #define USART_RTOR_RTO_Msk           (0xFFFFFFUL << USART_RTOR_RTO_Pos)        /*!< 0x00FFFFFF */
6828 #define USART_RTOR_RTO               USART_RTOR_RTO_Msk                        /*!< Receiver Time Out Value */
6829 #define USART_RTOR_BLEN_Pos          (24U)
6830 #define USART_RTOR_BLEN_Msk          (0xFFUL << USART_RTOR_BLEN_Pos)           /*!< 0xFF000000 */
6831 #define USART_RTOR_BLEN              USART_RTOR_BLEN_Msk                       /*!< Block Length */
6832 
6833 /*******************  Bit definition for USART_RQR register  ******************/
6834 #define USART_RQR_ABRRQ        ((uint16_t)0x0001)                              /*!< Auto-Baud Rate Request */
6835 #define USART_RQR_SBKRQ        ((uint16_t)0x0002)                              /*!< Send Break Request */
6836 #define USART_RQR_MMRQ         ((uint16_t)0x0004)                              /*!< Mute Mode Request */
6837 #define USART_RQR_RXFRQ        ((uint16_t)0x0008)                              /*!< Receive Data flush Request */
6838 #define USART_RQR_TXFRQ        ((uint16_t)0x0010)                              /*!< Transmit data flush Request */
6839 
6840 /*******************  Bit definition for USART_ISR register  ******************/
6841 #define USART_ISR_PE_Pos             (0U)
6842 #define USART_ISR_PE_Msk             (0x1UL << USART_ISR_PE_Pos)               /*!< 0x00000001 */
6843 #define USART_ISR_PE                 USART_ISR_PE_Msk                          /*!< Parity Error */
6844 #define USART_ISR_FE_Pos             (1U)
6845 #define USART_ISR_FE_Msk             (0x1UL << USART_ISR_FE_Pos)               /*!< 0x00000002 */
6846 #define USART_ISR_FE                 USART_ISR_FE_Msk                          /*!< Framing Error */
6847 #define USART_ISR_NE_Pos             (2U)
6848 #define USART_ISR_NE_Msk             (0x1UL << USART_ISR_NE_Pos)               /*!< 0x00000004 */
6849 #define USART_ISR_NE                 USART_ISR_NE_Msk                          /*!< Noise detected Flag */
6850 #define USART_ISR_ORE_Pos            (3U)
6851 #define USART_ISR_ORE_Msk            (0x1UL << USART_ISR_ORE_Pos)              /*!< 0x00000008 */
6852 #define USART_ISR_ORE                USART_ISR_ORE_Msk                         /*!< OverRun Error */
6853 #define USART_ISR_IDLE_Pos           (4U)
6854 #define USART_ISR_IDLE_Msk           (0x1UL << USART_ISR_IDLE_Pos)             /*!< 0x00000010 */
6855 #define USART_ISR_IDLE               USART_ISR_IDLE_Msk                        /*!< IDLE line detected */
6856 #define USART_ISR_RXNE_RXFNE_Pos     (5U)
6857 #define USART_ISR_RXNE_RXFNE_Msk     (0x1UL << USART_ISR_RXNE_RXFNE_Pos)       /*!< 0x00000020 */
6858 #define USART_ISR_RXNE_RXFNE         USART_ISR_RXNE_RXFNE_Msk                  /*!< Read Data Register Not Empty/RXFIFO Not Empty */
6859 #define USART_ISR_TC_Pos             (6U)
6860 #define USART_ISR_TC_Msk             (0x1UL << USART_ISR_TC_Pos)               /*!< 0x00000040 */
6861 #define USART_ISR_TC                 USART_ISR_TC_Msk                          /*!< Transmission Complete */
6862 #define USART_ISR_TXE_TXFNF_Pos      (7U)
6863 #define USART_ISR_TXE_TXFNF_Msk      (0x1UL << USART_ISR_TXE_TXFNF_Pos)        /*!< 0x00000080 */
6864 #define USART_ISR_TXE_TXFNF          USART_ISR_TXE_TXFNF_Msk                   /*!< Transmit Data Register Empty/TXFIFO Not Full */
6865 #define USART_ISR_LBDF_Pos           (8U)
6866 #define USART_ISR_LBDF_Msk           (0x1UL << USART_ISR_LBDF_Pos)             /*!< 0x00000100 */
6867 #define USART_ISR_LBDF               USART_ISR_LBDF_Msk                        /*!< LIN Break Detection Flag */
6868 #define USART_ISR_CTSIF_Pos          (9U)
6869 #define USART_ISR_CTSIF_Msk          (0x1UL << USART_ISR_CTSIF_Pos)            /*!< 0x00000200 */
6870 #define USART_ISR_CTSIF              USART_ISR_CTSIF_Msk                       /*!< CTS interrupt flag */
6871 #define USART_ISR_CTS_Pos            (10U)
6872 #define USART_ISR_CTS_Msk            (0x1UL << USART_ISR_CTS_Pos)              /*!< 0x00000400 */
6873 #define USART_ISR_CTS                USART_ISR_CTS_Msk                         /*!< CTS flag */
6874 #define USART_ISR_RTOF_Pos           (11U)
6875 #define USART_ISR_RTOF_Msk           (0x1UL << USART_ISR_RTOF_Pos)             /*!< 0x00000800 */
6876 #define USART_ISR_RTOF               USART_ISR_RTOF_Msk                        /*!< Receiver Time Out */
6877 #define USART_ISR_EOBF_Pos           (12U)
6878 #define USART_ISR_EOBF_Msk           (0x1UL << USART_ISR_EOBF_Pos)             /*!< 0x00001000 */
6879 #define USART_ISR_EOBF               USART_ISR_EOBF_Msk                        /*!< End Of Block Flag */
6880 #define USART_ISR_UDR_Pos            (13U)
6881 #define USART_ISR_UDR_Msk            (0x1UL << USART_ISR_UDR_Pos)              /*!< 0x00002000 */
6882 #define USART_ISR_UDR                 USART_ISR_UDR_Msk                        /*!< SPI Slave Underrun Error Flag */
6883 #define USART_ISR_ABRE_Pos           (14U)
6884 #define USART_ISR_ABRE_Msk           (0x1UL << USART_ISR_ABRE_Pos)             /*!< 0x00004000 */
6885 #define USART_ISR_ABRE               USART_ISR_ABRE_Msk                        /*!< Auto-Baud Rate Error */
6886 #define USART_ISR_ABRF_Pos           (15U)
6887 #define USART_ISR_ABRF_Msk           (0x1UL << USART_ISR_ABRF_Pos)             /*!< 0x00008000 */
6888 #define USART_ISR_ABRF               USART_ISR_ABRF_Msk                        /*!< Auto-Baud Rate Flag */
6889 #define USART_ISR_BUSY_Pos           (16U)
6890 #define USART_ISR_BUSY_Msk           (0x1UL << USART_ISR_BUSY_Pos)             /*!< 0x00010000 */
6891 #define USART_ISR_BUSY               USART_ISR_BUSY_Msk                        /*!< Busy Flag */
6892 #define USART_ISR_CMF_Pos            (17U)
6893 #define USART_ISR_CMF_Msk            (0x1UL << USART_ISR_CMF_Pos)              /*!< 0x00020000 */
6894 #define USART_ISR_CMF                USART_ISR_CMF_Msk                         /*!< Character Match Flag */
6895 #define USART_ISR_SBKF_Pos           (18U)
6896 #define USART_ISR_SBKF_Msk           (0x1UL << USART_ISR_SBKF_Pos)             /*!< 0x00040000 */
6897 #define USART_ISR_SBKF               USART_ISR_SBKF_Msk                        /*!< Send Break Flag */
6898 #define USART_ISR_RWU_Pos            (19U)
6899 #define USART_ISR_RWU_Msk            (0x1UL << USART_ISR_RWU_Pos)              /*!< 0x00080000 */
6900 #define USART_ISR_RWU                USART_ISR_RWU_Msk                         /*!< Receive Wake Up from mute mode Flag */
6901 #define USART_ISR_WUF_Pos            (20U)
6902 #define USART_ISR_WUF_Msk            (0x1UL << USART_ISR_WUF_Pos)              /*!< 0x00100000 */
6903 #define USART_ISR_WUF                USART_ISR_WUF_Msk                         /*!< Wake Up from stop mode Flag */
6904 #define USART_ISR_TEACK_Pos          (21U)
6905 #define USART_ISR_TEACK_Msk          (0x1UL << USART_ISR_TEACK_Pos)            /*!< 0x00200000 */
6906 #define USART_ISR_TEACK              USART_ISR_TEACK_Msk                       /*!< Transmit Enable Acknowledge Flag */
6907 #define USART_ISR_REACK_Pos          (22U)
6908 #define USART_ISR_REACK_Msk          (0x1UL << USART_ISR_REACK_Pos)            /*!< 0x00400000 */
6909 #define USART_ISR_REACK              USART_ISR_REACK_Msk                       /*!< Receive Enable Acknowledge Flag */
6910 #define USART_ISR_TXFE_Pos           (23U)
6911 #define USART_ISR_TXFE_Msk           (0x1UL << USART_ISR_TXFE_Pos)             /*!< 0x00800000 */
6912 #define USART_ISR_TXFE               USART_ISR_TXFE_Msk                        /*!< TXFIFO Empty Flag */
6913 #define USART_ISR_RXFF_Pos           (24U)
6914 #define USART_ISR_RXFF_Msk           (0x1UL << USART_ISR_RXFF_Pos)             /*!< 0x01000000 */
6915 #define USART_ISR_RXFF               USART_ISR_RXFF_Msk                        /*!< RXFIFO Full Flag */
6916 #define USART_ISR_TCBGT_Pos          (25U)
6917 #define USART_ISR_TCBGT_Msk          (0x1UL << USART_ISR_TCBGT_Pos)            /*!< 0x02000000 */
6918 #define USART_ISR_TCBGT              USART_ISR_TCBGT_Msk                       /*!< Transmission Complete Before Guard Time Completion Flag */
6919 #define USART_ISR_RXFT_Pos           (26U)
6920 #define USART_ISR_RXFT_Msk           (0x1UL << USART_ISR_RXFT_Pos)             /*!< 0x04000000 */
6921 #define USART_ISR_RXFT               USART_ISR_RXFT_Msk                        /*!< RXFIFO Threshold Flag */
6922 #define USART_ISR_TXFT_Pos           (27U)
6923 #define USART_ISR_TXFT_Msk           (0x1UL << USART_ISR_TXFT_Pos)             /*!< 0x08000000 */
6924 #define USART_ISR_TXFT               USART_ISR_TXFT_Msk                        /*!< TXFIFO Threshold Flag */
6925 
6926 /*******************  Bit definition for USART_ICR register  ******************/
6927 #define USART_ICR_PECF_Pos           (0U)
6928 #define USART_ICR_PECF_Msk           (0x1UL << USART_ICR_PECF_Pos)             /*!< 0x00000001 */
6929 #define USART_ICR_PECF               USART_ICR_PECF_Msk                        /*!< Parity Error Clear Flag */
6930 #define USART_ICR_FECF_Pos           (1U)
6931 #define USART_ICR_FECF_Msk           (0x1UL << USART_ICR_FECF_Pos)             /*!< 0x00000002 */
6932 #define USART_ICR_FECF               USART_ICR_FECF_Msk                        /*!< Framing Error Clear Flag */
6933 #define USART_ICR_NECF_Pos           (2U)
6934 #define USART_ICR_NECF_Msk           (0x1UL << USART_ICR_NECF_Pos)             /*!< 0x00000004 */
6935 #define USART_ICR_NECF               USART_ICR_NECF_Msk                        /*!< Noise Error detected Clear Flag */
6936 #define USART_ICR_ORECF_Pos          (3U)
6937 #define USART_ICR_ORECF_Msk          (0x1UL << USART_ICR_ORECF_Pos)            /*!< 0x00000008 */
6938 #define USART_ICR_ORECF              USART_ICR_ORECF_Msk                       /*!< OverRun Error Clear Flag */
6939 #define USART_ICR_IDLECF_Pos         (4U)
6940 #define USART_ICR_IDLECF_Msk         (0x1UL << USART_ICR_IDLECF_Pos)           /*!< 0x00000010 */
6941 #define USART_ICR_IDLECF             USART_ICR_IDLECF_Msk                      /*!< IDLE line detected Clear Flag */
6942 #define USART_ICR_TXFECF_Pos         (5U)
6943 #define USART_ICR_TXFECF_Msk         (0x1UL << USART_ICR_TXFECF_Pos)           /*!< 0x00000020 */
6944 #define USART_ICR_TXFECF             USART_ICR_TXFECF_Msk                      /*!< TXFIFO Empty Clear Flag */
6945 #define USART_ICR_TCCF_Pos           (6U)
6946 #define USART_ICR_TCCF_Msk           (0x1UL << USART_ICR_TCCF_Pos)             /*!< 0x00000040 */
6947 #define USART_ICR_TCCF               USART_ICR_TCCF_Msk                        /*!< Transmission Complete Clear Flag */
6948 #define USART_ICR_TCBGTCF_Pos        (7U)
6949 #define USART_ICR_TCBGTCF_Msk        (0x1UL << USART_ICR_TCBGTCF_Pos)          /*!< 0x00000080 */
6950 #define USART_ICR_TCBGTCF            USART_ICR_TCBGTCF_Msk                     /*!< Transmission Complete Before Guard Time Clear Flag */
6951 #define USART_ICR_LBDCF_Pos          (8U)
6952 #define USART_ICR_LBDCF_Msk          (0x1UL << USART_ICR_LBDCF_Pos)            /*!< 0x00000100 */
6953 #define USART_ICR_LBDCF              USART_ICR_LBDCF_Msk                       /*!< LIN Break Detection Clear Flag */
6954 #define USART_ICR_CTSCF_Pos          (9U)
6955 #define USART_ICR_CTSCF_Msk          (0x1UL << USART_ICR_CTSCF_Pos)            /*!< 0x00000200 */
6956 #define USART_ICR_CTSCF              USART_ICR_CTSCF_Msk                       /*!< CTS Interrupt Clear Flag */
6957 #define USART_ICR_RTOCF_Pos          (11U)
6958 #define USART_ICR_RTOCF_Msk          (0x1UL << USART_ICR_RTOCF_Pos)            /*!< 0x00000800 */
6959 #define USART_ICR_RTOCF              USART_ICR_RTOCF_Msk                       /*!< Receiver Time Out Clear Flag */
6960 #define USART_ICR_EOBCF_Pos          (12U)
6961 #define USART_ICR_EOBCF_Msk          (0x1UL << USART_ICR_EOBCF_Pos)            /*!< 0x00001000 */
6962 #define USART_ICR_EOBCF              USART_ICR_EOBCF_Msk                       /*!< End Of Block Clear Flag */
6963 #define USART_ICR_UDRCF_Pos          (13U)
6964 #define USART_ICR_UDRCF_Msk          (0x1UL << USART_ICR_UDRCF_Pos)            /*!< 0x00002000 */
6965 #define USART_ICR_UDRCF              USART_ICR_UDRCF_Msk                       /*!< SPI Slave Underrun Clear Flag */
6966 #define USART_ICR_CMCF_Pos           (17U)
6967 #define USART_ICR_CMCF_Msk           (0x1UL << USART_ICR_CMCF_Pos)             /*!< 0x00020000 */
6968 #define USART_ICR_CMCF               USART_ICR_CMCF_Msk                        /*!< Character Match Clear Flag */
6969 #define USART_ICR_WUCF_Pos           (20U)
6970 #define USART_ICR_WUCF_Msk           (0x1UL << USART_ICR_WUCF_Pos)             /*!< 0x00100000 */
6971 #define USART_ICR_WUCF               USART_ICR_WUCF_Msk                        /*!< Wake Up from stop mode Clear Flag */
6972 
6973 /*******************  Bit definition for USART_RDR register  ******************/
6974 #define USART_RDR_RDR_Pos             (0U)
6975 #define USART_RDR_RDR_Msk             (0x1FFUL << USART_RDR_RDR_Pos)           /*!< 0x000001FF */
6976 #define USART_RDR_RDR                 USART_RDR_RDR_Msk                        /*!< RDR[8:0] bits (Receive Data value) */
6977 
6978 /*******************  Bit definition for USART_TDR register  ******************/
6979 #define USART_TDR_TDR_Pos             (0U)
6980 #define USART_TDR_TDR_Msk             (0x1FFUL << USART_TDR_TDR_Pos)           /*!< 0x000001FF */
6981 #define USART_TDR_TDR                 USART_TDR_TDR_Msk                        /*!< TDR[8:0] bits (Transmit Data value) */
6982 
6983 /*******************  Bit definition for USART_PRESC register  ****************/
6984 #define USART_PRESC_PRESCALER_Pos    (0U)
6985 #define USART_PRESC_PRESCALER_Msk    (0xFUL << USART_PRESC_PRESCALER_Pos)      /*!< 0x0000000F */
6986 #define USART_PRESC_PRESCALER        USART_PRESC_PRESCALER_Msk                 /*!< PRESCALER[3:0] bits (Clock prescaler) */
6987 #define USART_PRESC_PRESCALER_0      (0x1UL << USART_PRESC_PRESCALER_Pos)      /*!< 0x00000001 */
6988 #define USART_PRESC_PRESCALER_1      (0x2UL << USART_PRESC_PRESCALER_Pos)      /*!< 0x00000002 */
6989 #define USART_PRESC_PRESCALER_2      (0x4UL << USART_PRESC_PRESCALER_Pos)      /*!< 0x00000004 */
6990 #define USART_PRESC_PRESCALER_3      (0x8UL << USART_PRESC_PRESCALER_Pos)      /*!< 0x00000008 */
6991 
6992 /******************************************************************************/
6993 /*                                                                            */
6994 /*                            Window WATCHDOG                                 */
6995 /*                                                                            */
6996 /******************************************************************************/
6997 /*******************  Bit definition for WWDG_CR register  ********************/
6998 #define WWDG_CR_T_Pos           (0U)
6999 #define WWDG_CR_T_Msk           (0x7FUL << WWDG_CR_T_Pos)                      /*!< 0x0000007F */
7000 #define WWDG_CR_T               WWDG_CR_T_Msk                                  /*!<T[6:0] bits (7-Bit counter (MSB to LSB)) */
7001 #define WWDG_CR_T_0             (0x01UL << WWDG_CR_T_Pos)                      /*!< 0x00000001 */
7002 #define WWDG_CR_T_1             (0x02UL << WWDG_CR_T_Pos)                      /*!< 0x00000002 */
7003 #define WWDG_CR_T_2             (0x04UL << WWDG_CR_T_Pos)                      /*!< 0x00000004 */
7004 #define WWDG_CR_T_3             (0x08UL << WWDG_CR_T_Pos)                      /*!< 0x00000008 */
7005 #define WWDG_CR_T_4             (0x10UL << WWDG_CR_T_Pos)                      /*!< 0x00000010 */
7006 #define WWDG_CR_T_5             (0x20UL << WWDG_CR_T_Pos)                      /*!< 0x00000020 */
7007 #define WWDG_CR_T_6             (0x40UL << WWDG_CR_T_Pos)                      /*!< 0x00000040 */
7008 
7009 #define WWDG_CR_WDGA_Pos        (7U)
7010 #define WWDG_CR_WDGA_Msk        (0x1UL << WWDG_CR_WDGA_Pos)                    /*!< 0x00000080 */
7011 #define WWDG_CR_WDGA            WWDG_CR_WDGA_Msk                               /*!<Activation bit */
7012 
7013 /*******************  Bit definition for WWDG_CFR register  *******************/
7014 #define WWDG_CFR_W_Pos          (0U)
7015 #define WWDG_CFR_W_Msk          (0x7FUL << WWDG_CFR_W_Pos)                     /*!< 0x0000007F */
7016 #define WWDG_CFR_W              WWDG_CFR_W_Msk                                 /*!<W[6:0] bits (7-bit window value) */
7017 #define WWDG_CFR_W_0            (0x01UL << WWDG_CFR_W_Pos)                     /*!< 0x00000001 */
7018 #define WWDG_CFR_W_1            (0x02UL << WWDG_CFR_W_Pos)                     /*!< 0x00000002 */
7019 #define WWDG_CFR_W_2            (0x04UL << WWDG_CFR_W_Pos)                     /*!< 0x00000004 */
7020 #define WWDG_CFR_W_3            (0x08UL << WWDG_CFR_W_Pos)                     /*!< 0x00000008 */
7021 #define WWDG_CFR_W_4            (0x10UL << WWDG_CFR_W_Pos)                     /*!< 0x00000010 */
7022 #define WWDG_CFR_W_5            (0x20UL << WWDG_CFR_W_Pos)                     /*!< 0x00000020 */
7023 #define WWDG_CFR_W_6            (0x40UL << WWDG_CFR_W_Pos)                     /*!< 0x00000040 */
7024 
7025 #define WWDG_CFR_WDGTB_Pos      (11U)
7026 #define WWDG_CFR_WDGTB_Msk      (0x7UL << WWDG_CFR_WDGTB_Pos)                  /*!< 0x00003800 */
7027 #define WWDG_CFR_WDGTB          WWDG_CFR_WDGTB_Msk                             /*!<WDGTB[2:0] bits (Timer Base) */
7028 #define WWDG_CFR_WDGTB_0        (0x1UL << WWDG_CFR_WDGTB_Pos)                  /*!< 0x00000800 */
7029 #define WWDG_CFR_WDGTB_1        (0x2UL << WWDG_CFR_WDGTB_Pos)                  /*!< 0x00001000 */
7030 #define WWDG_CFR_WDGTB_2        (0x4UL << WWDG_CFR_WDGTB_Pos)                  /*!< 0x00002000 */
7031 
7032 #define WWDG_CFR_EWI_Pos        (9U)
7033 #define WWDG_CFR_EWI_Msk        (0x1UL << WWDG_CFR_EWI_Pos)                    /*!< 0x00000200 */
7034 #define WWDG_CFR_EWI            WWDG_CFR_EWI_Msk                               /*!<Early Wakeup Interrupt */
7035 
7036 /*******************  Bit definition for WWDG_SR register  ********************/
7037 #define WWDG_SR_EWIF_Pos        (0U)
7038 #define WWDG_SR_EWIF_Msk        (0x1UL << WWDG_SR_EWIF_Pos)                    /*!< 0x00000001 */
7039 #define WWDG_SR_EWIF            WWDG_SR_EWIF_Msk                               /*!<Early Wakeup Interrupt Flag */
7040 
7041 /******************  Bits definition for USB_DRD_CNTR register  *******************/
7042 #define USB_CNTR_HOST_Pos               (31U)
7043 #define USB_CNTR_HOST_Msk               (0x1UL << USB_CNTR_HOST_Pos)    /*!< 0x80000000 */
7044 #define USB_CNTR_HOST                   USB_CNTR_HOST_Msk               /*!< Host Mode  */
7045 #define USB_CNTR_THR512M_Pos            (16U)
7046 #define USB_CNTR_THR512M_Msk            (0x1UL << USB_CNTR_THR512M_Pos)  /*!< 0x00010000 */
7047 #define USB_CNTR_THR512M                USB_CNTR_THR512M_Msk             /*!< 512byte Threshold interrupt mask */
7048 #define USB_CNTR_CTRM_Pos               (15U)
7049 #define USB_CNTR_CTRM_Msk               (0x1UL << USB_CNTR_CTRM_Pos)    /*!< 0x00008000 */
7050 #define USB_CNTR_CTRM                   USB_CNTR_CTRM_Msk               /*!< Correct Transfer Mask */
7051 #define USB_CNTR_PMAOVRM_Pos            (14U)
7052 #define USB_CNTR_PMAOVRM_Msk            (0x1UL << USB_CNTR_PMAOVRM_Pos) /*!< 0x00004000 */
7053 #define USB_CNTR_PMAOVRM                USB_CNTR_PMAOVRM_Msk            /*!< DMA OVeR/underrun Mask */
7054 #define USB_CNTR_ERRM_Pos               (13U)
7055 #define USB_CNTR_ERRM_Msk               (0x1UL << USB_CNTR_ERRM_Pos)    /*!< 0x00002000 */
7056 #define USB_CNTR_ERRM                   USB_CNTR_ERRM_Msk               /*!< ERRor Mask */
7057 #define USB_CNTR_WKUPM_Pos              (12U)
7058 #define USB_CNTR_WKUPM_Msk              (0x1UL << USB_CNTR_WKUPM_Pos)   /*!< 0x00001000 */
7059 #define USB_CNTR_WKUPM                  USB_CNTR_WKUPM_Msk              /*!< WaKe UP Mask */
7060 #define USB_CNTR_SUSPM_Pos              (11U)
7061 #define USB_CNTR_SUSPM_Msk              (0x1UL << USB_CNTR_SUSPM_Pos)   /*!< 0x00000800 */
7062 #define USB_CNTR_SUSPM                  USB_CNTR_SUSPM_Msk              /*!< SUSPend Mask */
7063 #define USB_CNTR_RESETM_Pos             (10U)
7064 #define USB_CNTR_RESETM_Msk             (0x1UL << USB_CNTR_RESETM_Pos)  /*!< 0x00000400 */
7065 #define USB_CNTR_RESETM                 USB_CNTR_RESETM_Msk             /*!< RESET Mask */
7066 #define USB_CNTR_DCON                   USB_CNTR_RESETM_Msk             /*!< Disconnection Connection Mask */
7067 #define USB_CNTR_SOFM_Pos               (9U)
7068 #define USB_CNTR_SOFM_Msk               (0x1UL << USB_CNTR_SOFM_Pos)    /*!< 0x00000200 */
7069 #define USB_CNTR_SOFM                   USB_CNTR_SOFM_Msk               /*!< Start Of Frame Mask */
7070 #define USB_CNTR_ESOFM_Pos              (8U)
7071 #define USB_CNTR_ESOFM_Msk              (0x1UL << USB_CNTR_ESOFM_Pos)   /*!< 0x00000100 */
7072 #define USB_CNTR_ESOFM                  USB_CNTR_ESOFM_Msk              /*!< Expected Start Of Frame Mask */
7073 #define USB_CNTR_L1REQM_Pos             (7U)
7074 #define USB_CNTR_L1REQM_Msk             (0x1UL << USB_CNTR_L1REQM_Pos)  /*!< 0x00000080 */
7075 #define USB_CNTR_L1REQM                 USB_CNTR_L1REQM_Msk             /*!< LPM L1 state request interrupt Mask */
7076 #define USB_CNTR_L1XACT_Pos             (6U)
7077 #define USB_CNTR_L1XACT_Msk             (0x1UL << USB_CNTR_L1XACT_Pos)  /*!< 0x00000040 */
7078 #define USB_CNTR_L1XACT                 USB_CNTR_L1XACT_Msk             /*!< Host LPM L1 transaction request Mask */
7079 #define USB_CNTR_L1RES_Pos              (5U)
7080 #define USB_CNTR_L1RES_Msk              (0x1UL << USB_CNTR_L1RES_Pos)   /*!< 0x00000020 */
7081 #define USB_CNTR_L1RES                  USB_CNTR_L1RES_Msk              /*!< LPM L1 Resume request/ Remote Wakeup Mask */
7082 #define USB_CNTR_L2RES_Pos              (4U)
7083 #define USB_CNTR_L2RES_Msk              (0x1UL << USB_CNTR_L2RES_Pos)   /*!< 0x00000010 */
7084 #define USB_CNTR_L2RES                  USB_CNTR_L2RES_Msk              /*!< L2 Remote Wakeup / Resume driver Mask */
7085 #define USB_CNTR_SUSPEN_Pos             (3U)
7086 #define USB_CNTR_SUSPEN_Msk             (0x1UL << USB_CNTR_SUSPEN_Pos)  /*!< 0x00000008 */
7087 #define USB_CNTR_SUSPEN                 USB_CNTR_SUSPEN_Msk             /*!< Suspend state enable Mask */
7088 #define USB_CNTR_SUSPRDY_Pos            (2U)
7089 #define USB_CNTR_SUSPRDY_Msk            (0x1UL << USB_CNTR_SUSPRDY_Pos) /*!< 0x00000004 */
7090 #define USB_CNTR_SUSPRDY                USB_CNTR_SUSPRDY_Msk            /*!< Suspend state effective Mask */
7091 #define USB_CNTR_PDWN_Pos               (1U)
7092 #define USB_CNTR_PDWN_Msk               (0x1UL << USB_CNTR_PDWN_Pos)    /*!< 0x00000002 */
7093 #define USB_CNTR_PDWN                   USB_CNTR_PDWN_Msk               /*!< Power DoWN Mask */
7094 #define USB_CNTR_USBRST_Pos             (0U)
7095 #define USB_CNTR_USBRST_Msk             (0x1UL << USB_CNTR_USBRST_Pos)  /*!< 0x00000001 */
7096 #define USB_CNTR_USBRST                 USB_CNTR_USBRST_Msk             /*!< USB Reset Mask */
7097 
7098 /******************  Bits definition for USB_DRD_ISTR register  *******************/
7099 #define USB_ISTR_IDN_Pos                (0U)
7100 #define USB_ISTR_IDN_Msk                (0xFUL << USB_ISTR_IDN_Pos)     /*!< 0x0000000F */
7101 #define USB_ISTR_IDN                    USB_ISTR_IDN_Msk                /*!< EndPoint IDentifier (read-only bit) Mask */
7102 #define USB_ISTR_DIR_Pos                (4U)
7103 #define USB_ISTR_DIR_Msk                (0x1UL << USB_ISTR_DIR_Pos)     /*!< 0x00000010 */
7104 #define USB_ISTR_DIR                    USB_ISTR_DIR_Msk                /*!< DIRection of transaction (read-only bit) Mask */
7105 #define USB_ISTR_L1REQ_Pos              (7U)
7106 #define USB_ISTR_L1REQ_Msk              (0x1UL << USB_ISTR_L1REQ_Pos)   /*!< 0x00000080 */
7107 #define USB_ISTR_L1REQ                  USB_ISTR_L1REQ_Msk              /*!< LPM L1 state request Mask */
7108 #define USB_ISTR_ESOF_Pos               (8U)
7109 #define USB_ISTR_ESOF_Msk               (0x1UL << USB_ISTR_ESOF_Pos)    /*!< 0x00000100 */
7110 #define USB_ISTR_ESOF                   USB_ISTR_ESOF_Msk               /*!< Expected Start Of Frame (clear-only bit) Mask */
7111 #define USB_ISTR_SOF_Pos                (9U)
7112 #define USB_ISTR_SOF_Msk                (0x1UL << USB_ISTR_SOF_Pos)     /*!< 0x00000200 */
7113 #define USB_ISTR_SOF                    USB_ISTR_SOF_Msk                /*!< Start Of Frame (clear-only bit) Mask */
7114 #define USB_ISTR_RESET_Pos              (10U)
7115 #define USB_ISTR_RESET_Msk              (0x1UL << USB_ISTR_RESET_Pos)   /*!< 0x00000400 */
7116 #define USB_ISTR_RESET                  USB_ISTR_RESET_Msk              /*!< RESET Mask */
7117 #define USB_ISTR_DCON_Pos               (10U)
7118 #define USB_ISTR_DCON_Msk               (0x1UL << USB_ISTR_DCON_Pos)    /*!< 0x00000400 */
7119 #define USB_ISTR_DCON                   USB_ISTR_DCON_Msk               /*!< HOST MODE-Device Connection or disconnection Mask */
7120 #define USB_ISTR_SUSP_Pos               (11U)
7121 #define USB_ISTR_SUSP_Msk               (0x1UL << USB_ISTR_SUSP_Pos)    /*!< 0x00000800 */
7122 #define USB_ISTR_SUSP                   USB_ISTR_SUSP_Msk               /*!< SUSPend (clear-only bit) Mask */
7123 #define USB_ISTR_WKUP_Pos               (12U)
7124 #define USB_ISTR_WKUP_Msk               (0x1UL << USB_ISTR_WKUP_Pos)    /*!< 0x00001000 */
7125 #define USB_ISTR_WKUP                   USB_ISTR_WKUP_Msk               /*!< WaKe UP (clear-only bit) Mask */
7126 #define USB_ISTR_ERR_Pos                (13U)
7127 #define USB_ISTR_ERR_Msk                (0x1UL << USB_ISTR_ERR_Pos)     /*!< 0x00002000 */
7128 #define USB_ISTR_ERR                    USB_ISTR_ERR_Msk                /*!< ERRor (clear-only bit) Mask */
7129 #define USB_ISTR_PMAOVR_Pos             (14U)
7130 #define USB_ISTR_PMAOVR_Msk             (0x1UL << USB_ISTR_PMAOVR_Pos)  /*!< 0x00004000 */
7131 #define USB_ISTR_PMAOVR                 USB_ISTR_PMAOVR_Msk             /*!< PMA OVeR/underrun (clear-only bit) Mask */
7132 #define USB_ISTR_CTR_Pos                (15U)
7133 #define USB_ISTR_CTR_Msk                (0x1UL << USB_ISTR_CTR_Pos)     /*!< 0x00008000 */
7134 #define USB_ISTR_CTR                    USB_ISTR_CTR_Msk                /*!< Correct TRansfer (clear-only bit) Mask */
7135 #define USB_ISTR_THR512_Pos             (16U)
7136 #define USB_ISTR_THR512_Msk             (0x1UL << USB_ISTR_THR512_Pos)  /*!< 0x00010000 */
7137 #define USB_ISTR_THR512                 USB_ISTR_THR512_Msk             /*!< 512byte threshold interrupt (used with isochrnous single buffer ) */
7138 #define USB_ISTR_DCON_STAT_Pos          (29U)
7139 #define USB_ISTR_DCON_STAT_Msk          (0x1UL << USB_ISTR_DCON_STAT_Pos)/*!< 0x20000000 */
7140 #define USB_ISTR_DCON_STAT              USB_ISTR_DCON_STAT_Msk           /*!< Device Connection status (connected/Disconnected) don't cause an interrupt */
7141 #define USB_ISTR_LS_DCONN_Pos           (30U)
7142 #define USB_ISTR_LS_DCONN_Msk           (0x1UL << USB_ISTR_LS_DCONN_Pos)/*!< 0x40000000 */
7143 #define USB_ISTR_LS_DCONN               USB_ISTR_LS_DCONN_Msk           /*!< LS_DCONN Mask */
7144 
7145 /******************  Bits definition for USB_DRD_FNR register  ********************/
7146 #define USB_FNR_FN_Pos                  (0U)
7147 #define USB_FNR_FN_Msk                  (0x7FFUL << USB_FNR_FN_Pos)     /*!< 0x000007FF */
7148 #define USB_FNR_FN                      USB_FNR_FN_Msk                  /*!< Frame Number Mask */
7149 #define USB_FNR_LSOF_Pos                (11U)
7150 #define USB_FNR_LSOF_Msk                (0x3UL << USB_FNR_LSOF_Pos)     /*!< 0x00001800 */
7151 #define USB_FNR_LSOF                    USB_FNR_LSOF_Msk                /*!< Lost SOF  Mask */
7152 #define USB_FNR_LCK_Pos                 (13U)
7153 #define USB_FNR_LCK_Msk                 (0x1UL << USB_FNR_LCK_Pos)      /*!< 0x00002000 */
7154 #define USB_FNR_LCK                     USB_FNR_LCK_Msk                 /*!< LoCKed Mask */
7155 #define USB_FNR_RXDM_Pos                (14U)
7156 #define USB_FNR_RXDM_Msk                (0x1UL << USB_FNR_RXDM_Pos)     /*!< 0x00004000 */
7157 #define USB_FNR_RXDM                    USB_FNR_RXDM_Msk                /*!< status of D- data line Mask */
7158 #define USB_FNR_RXDP_Pos                (15U)
7159 #define USB_FNR_RXDP_Msk                (0x1UL << USB_FNR_RXDP_Pos)     /*!< 0x00008000 */
7160 #define USB_FNR_RXDP                    USB_FNR_RXDP_Msk                /*!< status of D+ data line Mask */
7161 
7162 /******************  Bits definition for USB_DRD_DADDR register    ****************/
7163 #define USB_DADDR_ADD_Pos               (0U)
7164 #define USB_DADDR_ADD_Msk               (0x7FUL << USB_DADDR_ADD_Pos)   /*!< 0x0000007F */
7165 #define USB_DADDR_ADD                   USB_DADDR_ADD_Msk               /*!<  ADD[6:0] bits (Device Address)Mask */
7166 #define USB_DADDR_ADD0_Pos              (0U)
7167 #define USB_DADDR_ADD0_Msk              (0x1UL << USB_DADDR_ADD0_Pos)   /*!< 0x00000001 */
7168 #define USB_DADDR_ADD0                  USB_DADDR_ADD0_Msk              /*!< Bit 0 Mask */
7169 #define USB_DADDR_ADD1_Pos              (1U)
7170 #define USB_DADDR_ADD1_Msk              (0x1UL << USB_DADDR_ADD1_Pos)   /*!< 0x00000002 */
7171 #define USB_DADDR_ADD1                  USB_DADDR_ADD1_Msk              /*!< Bit 1 Mask */
7172 #define USB_DADDR_ADD2_Pos              (2U)
7173 #define USB_DADDR_ADD2_Msk              (0x1UL << USB_DADDR_ADD2_Pos)   /*!< 0x00000004 */
7174 #define USB_DADDR_ADD2                  USB_DADDR_ADD2_Msk              /*!< Bit 2 Mask */
7175 #define USB_DADDR_ADD3_Pos              (3U)
7176 #define USB_DADDR_ADD3_Msk              (0x1UL << USB_DADDR_ADD3_Pos)   /*!< 0x00000008 */
7177 #define USB_DADDR_ADD3                  USB_DADDR_ADD3_Msk              /*!< Bit 3 Mask */
7178 #define USB_DADDR_ADD4_Pos              (4U)
7179 #define USB_DADDR_ADD4_Msk              (0x1UL << USB_DADDR_ADD4_Pos)   /*!< 0x00000010 */
7180 #define USB_DADDR_ADD4                  USB_DADDR_ADD4_Msk              /*!< Bit 4 Mask */
7181 #define USB_DADDR_ADD5_Pos              (5U)
7182 #define USB_DADDR_ADD5_Msk              (0x1UL << USB_DADDR_ADD5_Pos)   /*!< 0x00000020 */
7183 #define USB_DADDR_ADD5                  USB_DADDR_ADD5_Msk              /*!< Bit 5 Mask */
7184 #define USB_DADDR_ADD6_Pos              (6U)
7185 #define USB_DADDR_ADD6_Msk              (0x1UL << USB_DADDR_ADD6_Pos)   /*!< 0x00000040 */
7186 #define USB_DADDR_ADD6                  USB_DADDR_ADD6_Msk              /*!< Bit 6 Mask */
7187 #define USB_DADDR_EF_Pos                (7U)
7188 #define USB_DADDR_EF_Msk                (0x1UL << USB_DADDR_EF_Pos)     /*!< 0x00000080 */
7189 #define USB_DADDR_EF                    USB_DADDR_EF_Msk                /*!< Enable Function Mask */
7190 
7191 /******************  Bit definition for USB_DRD_BTABLE register  ******************/
7192 #define USB_BTABLE_BTABLE_Pos          (3U)
7193 #define USB_BTABLE_BTABLE_Msk          (0xFFF8UL << USB_BTABLE_BTABLE_Pos)/*!< 0x00000000 */
7194 #define USB_BTABLE_BTABLE              USB_BTABLE_BTABLE_Msk              /*!< Buffer Table Mask */
7195 
7196 /*******************  Bit definition for LPMCSR register  *********************/
7197 #define USB_LPMCSR_LMPEN_Pos           (0U)
7198 #define USB_LPMCSR_LMPEN_Msk           (0x1UL << USB_LPMCSR_LMPEN_Pos)  /*!< 0x00000001 */
7199 #define USB_LPMCSR_LMPEN               USB_LPMCSR_LMPEN_Msk             /*!< LPM support enable Mask */
7200 #define USB_LPMCSR_LPMACK_Pos          (1U)
7201 #define USB_LPMCSR_LPMACK_Msk          (0x1UL << USB_LPMCSR_LPMACK_Pos) /*!< 0x00000002 */
7202 #define USB_LPMCSR_LPMACK              USB_LPMCSR_LPMACK_Msk            /*!< LPM Token acknowledge enable Mask */
7203 #define USB_LPMCSR_REMWAKE_Pos         (3U)
7204 #define USB_LPMCSR_REMWAKE_Msk         (0x1UL << USB_LPMCSR_REMWAKE_Pos)/*!< 0x00000008 */
7205 #define USB_LPMCSR_REMWAKE             USB_LPMCSR_REMWAKE_Msk           /*!< bRemoteWake value received with last ACKed LPM Token Mask */
7206 #define USB_LPMCSR_BESL_Pos            (4U)
7207 #define USB_LPMCSR_BESL_Msk            (0xFUL << USB_LPMCSR_BESL_Pos)   /*!< 0x000000F0 */
7208 #define USB_LPMCSR_BESL                USB_LPMCSR_BESL_Msk              /*!< BESL value received with last ACKed LPM Token Mask */
7209 
7210 /******************  Bits definition for USB_DRD_BCDR register  *******************/
7211 #define USB_BCDR_BCDEN_Pos             (0U)
7212 #define USB_BCDR_BCDEN_Msk             (0x1UL << USB_BCDR_BCDEN_Pos)    /*!< 0x00000001 */
7213 #define USB_BCDR_BCDEN                 USB_BCDR_BCDEN_Msk               /*!< Battery charging detector (BCD) enable Mask */
7214 #define USB_BCDR_DCDEN_Pos             (1U)
7215 #define USB_BCDR_DCDEN_Msk             (0x1UL << USB_BCDR_DCDEN_Pos)    /*!< 0x00000002 */
7216 #define USB_BCDR_DCDEN                 USB_BCDR_DCDEN_Msk               /*!< Data contact detection (DCD) mode enable Mask */
7217 #define USB_BCDR_PDEN_Pos              (2U)
7218 #define USB_BCDR_PDEN_Msk              (0x1UL << USB_BCDR_PDEN_Pos)     /*!< 0x00000004 */
7219 #define USB_BCDR_PDEN                  USB_BCDR_PDEN_Msk                /*!< Primary detection (PD) mode enable Mask */
7220 #define USB_BCDR_SDEN_Pos              (3U)
7221 #define USB_BCDR_SDEN_Msk              (0x1UL << USB_BCDR_SDEN_Pos)     /*!< 0x00000008 */
7222 #define USB_BCDR_SDEN                  USB_BCDR_SDEN_Msk                /*!< Secondary detection (SD) mode enable Mask */
7223 #define USB_BCDR_DCDET_Pos             (4U)
7224 #define USB_BCDR_DCDET_Msk             (0x1UL << USB_BCDR_DCDET_Pos)    /*!< 0x00000010 */
7225 #define USB_BCDR_DCDET                 USB_BCDR_DCDET_Msk               /*!< Data contact detection (DCD) status Mask */
7226 #define USB_BCDR_PDET_Pos              (5U)
7227 #define USB_BCDR_PDET_Msk              (0x1UL << USB_BCDR_PDET_Pos)     /*!< 0x00000020 */
7228 #define USB_BCDR_PDET                  USB_BCDR_PDET_Msk                /*!< Primary detection (PD) status Mask */
7229 #define USB_BCDR_SDET_Pos              (6U)
7230 #define USB_BCDR_SDET_Msk              (0x1UL << USB_BCDR_SDET_Pos)     /*!< 0x00000040 */
7231 #define USB_BCDR_SDET                  USB_BCDR_SDET_Msk                /*!< Secondary detection (SD) status Mask */
7232 #define USB_BCDR_PS2DET_Pos            (7U)
7233 #define USB_BCDR_PS2DET_Msk            (0x1UL << USB_BCDR_PS2DET_Pos)   /*!< 0x00000080 */
7234 #define USB_BCDR_PS2DET                USB_BCDR_PS2DET_Msk              /*!< PS2 port or proprietary charger detected Mask */
7235 #define USB_BCDR_DPPU_Pos              (15U)
7236 #define USB_BCDR_DPPU_Msk              (0x1UL << USB_BCDR_DPPU_Pos)     /*!< 0x00008000 */
7237 #define USB_BCDR_DPPU                  USB_BCDR_DPPU_Msk                /*!< DP Pull-up Enable Mask */
7238 #define USB_BCDR_DPPD_Pos              (15U)
7239 #define USB_BCDR_DPPD_Msk              (0x1UL << USB_BCDR_DPPD_Pos)     /*!< 0x00008000 */
7240 #define USB_BCDR_DPPD                  USB_BCDR_DPPD_Msk                /*!< DP Pull-Down Enable Mask */
7241 
7242 /******************  Bits definition for USB_DRD_CHEP register  *******************/
7243 #define USB_CHEP_ERRRX_Pos             (26U)
7244 #define USB_CHEP_ERRRX_Msk             (0x01UL << USB_CHEP_ERRRX_Pos)   /*!< 0x04000000 */
7245 #define USB_CHEP_ERRRX                 USB_CHEP_ERRRX_Msk               /*!< Receive error */
7246 #define USB_EP_ERRRX                   USB_CHEP_ERRRX_Msk               /*!< EP Receive error */
7247 #define USB_CH_ERRRX                   USB_CHEP_ERRRX_Msk               /*!< CH Receive error */
7248 #define USB_CHEP_ERRTX_Pos             (25U)
7249 #define USB_CHEP_ERRTX_Msk             (0x01UL << USB_CHEP_ERRTX_Pos)   /*!< 0x02000000 */
7250 #define USB_CHEP_ERRTX                 USB_CHEP_ERRTX_Msk               /*!< Transmit error */
7251 #define USB_EP_ERRTX                   USB_CHEP_ERRTX_Msk               /*!< EP Transmit error */
7252 #define USB_CH_ERRTX                   USB_CHEP_ERRTX_Msk               /*!< CH Transmit error */
7253 #define USB_CHEP_LSEP_Pos              (24U)
7254 #define USB_CHEP_LSEP_Msk              (0x01UL << USB_CHEP_LSEP_Pos)    /*!< 0x01000000 */
7255 #define USB_CHEP_LSEP                  USB_CHEP_LSEP_Msk                /*!< Low Speed Endpoint (host with Hub Only) */
7256 #define USB_CHEP_NAK_Pos               (23U)
7257 #define USB_CHEP_NAK_Msk               (0x01UL << USB_CHEP_NAK_Pos)     /*!< 0x00800000 */
7258 #define USB_CHEP_NAK                   USB_CHEP_NAK_Msk                 /*!< Previous NAK detected */
7259 #define USB_CHEP_DEVADDR_Pos           (16U)
7260 #define USB_CHEP_DEVADDR_Msk           (0x7FU << USB_CHEP_DEVADDR_Pos)  /*!< 0x7F000000 */
7261 #define USB_CHEP_DEVADDR               USB_CHEP_DEVADDR_Msk             /* Target Endpoint address*/
7262 #define USB_CHEP_VTRX_Pos              (15U)
7263 #define USB_CHEP_VTRX_Msk              (0x1UL << USB_CHEP_VTRX_Pos)     /*!< 0x00008000 */
7264 #define USB_CHEP_VTRX                  USB_CHEP_VTRX_Msk                /*!< USB valid transaction received Mask */
7265 #define USB_EP_VTRX                    USB_CHEP_VTRX_Msk                /*!< USB Endpoint valid transaction received Mask */
7266 #define USB_CH_VTRX                    USB_CHEP_VTRX_Msk                /*!< USB valid Channel transaction received Mask */
7267 #define USB_CHEP_DTOG_RX_Pos           (14U)
7268 #define USB_CHEP_DTOG_RX_Msk           (0x1UL << USB_CHEP_DTOG_RX_Pos)  /*!< 0x00004000 */
7269 #define USB_CHEP_DTOG_RX               USB_CHEP_DTOG_RX_Msk             /*!< Data Toggle, for reception transfers Mask */
7270 #define USB_EP_DTOG_RX                 USB_CHEP_DTOG_RX_Msk             /*!< EP Data Toggle, for reception transfers Mask */
7271 #define USB_CH_DTOG_RX                 USB_CHEP_DTOG_RX_Msk             /*!< CH Data Toggle, for reception transfers Mask */
7272 #define USB_CHEP_RX_STRX_Pos           (12U)
7273 #define USB_CHEP_RX_STRX_Msk           (0x3UL << USB_CHEP_RX_STRX_Pos)  /*!< 0x00003000 */
7274 #define USB_CHEP_RX_STRX               USB_CHEP_RX_STRX_Msk             /*!< Status bits, for reception transfers Mask */
7275 #define USB_EP_RX_STRX                 USB_CHEP_RX_STRX_Msk             /*!< Status bits, for EP reception transfers Mask */
7276 #define USB_CH_RX_STRX                 USB_CHEP_RX_STRX_Msk             /*!< Status bits, for CH reception transfers Mask */
7277 #define USB_CHEP_SETUP_Pos             (11U)
7278 #define USB_CHEP_SETUP_Msk             (0x1UL << USB_CHEP_SETUP_Pos)    /*!< 0x00000800 */
7279 #define USB_CHEP_SETUP                 USB_CHEP_SETUP_Msk               /*!< Setup transaction completed Mask */
7280 #define USB_EP_SETUP                   USB_CHEP_SETUP_Msk               /*!< EP Setup transaction completed Mask */
7281 #define USB_CH_SETUP                   USB_CHEP_SETUP_Msk               /*!< CH Setup transaction completed Mask */
7282 #define USB_CHEP_UTYPE_Pos             (9U)
7283 #define USB_CHEP_UTYPE_Msk             (0x3UL << USB_CHEP_UTYPE_Pos)    /*!< 0x00000600 */
7284 #define USB_CHEP_UTYPE                 USB_CHEP_UTYPE_Msk               /*!< USB type of transaction Mask */
7285 #define USB_EP_UTYPE                   USB_CHEP_UTYPE_Msk               /*!< USB type of EP transaction Mask */
7286 #define USB_CH_UTYPE                   USB_CHEP_UTYPE_Msk               /*!< USB type of CH transaction Mask */
7287 #define USB_CHEP_KIND_Pos              (8U)
7288 #define USB_CHEP_KIND_Msk              (0x1UL << USB_CHEP_KIND_Pos)     /*!< 0x00000100 */
7289 #define USB_CHEP_KIND                  USB_CHEP_KIND_Msk                /*!< EndPoint KIND Mask */
7290 #define USB_EP_KIND                    USB_CHEP_KIND_Msk                /*!< EndPoint KIND Mask */
7291 #define USB_CH_KIND                    USB_CHEP_KIND_Msk                /*!< Channel KIND Mask */
7292 #define USB_CHEP_VTTX_Pos              (7U)
7293 #define USB_CHEP_VTTX_Msk              (0x1UL << USB_CHEP_VTTX_Pos)     /*!< 0x00000080 */
7294 #define USB_CHEP_VTTX                  USB_CHEP_VTTX_Msk                /*!< Valid USB transaction transmitted Mask */
7295 #define USB_EP_VTTX                    USB_CHEP_VTTX_Msk                /*!< USB Endpoint valid transaction transmitted Mask */
7296 #define USB_CH_VTTX                    USB_CHEP_VTTX_Msk                /*!< USB valid Channel transaction transmitted Mask */
7297 #define USB_CHEP_DTOG_TX_Pos           (6U)
7298 #define USB_CHEP_DTOG_TX_Msk           (0x1UL << USB_CHEP_DTOG_TX_Pos)  /*!< 0x00000040 */
7299 #define USB_CHEP_DTOG_TX               USB_CHEP_DTOG_TX_Msk             /*!< Data Toggle, for transmission transfers Mask */
7300 #define USB_EP_DTOG_TX                 USB_CHEP_DTOG_TX_Msk             /*!< EP Data Toggle, for transmission transfers Mask */
7301 #define USB_CH_DTOG_TX                 USB_CHEP_DTOG_TX_Msk             /*!< CH Data Toggle, for transmission transfers Mask */
7302 #define USB_CHEP_TX_STTX_Pos           (4U)
7303 #define USB_CHEP_TX_STTX_Msk           (0x3UL << USB_CHEP_TX_STTX_Pos)  /*!< 0x00000030 */
7304 #define USB_CHEP_TX_STTX               USB_CHEP_TX_STTX_Msk             /*!< Status bits, for transmission transfers Mask */
7305 #define USB_EP_TX_STTX                 USB_CHEP_TX_STTX_Msk             /*!< Status bits, for EP transmission transfers Mask */
7306 #define USB_CH_TX_STTX                 USB_CHEP_TX_STTX_Msk             /*!< Status bits, for CH transmission transfers Mask */
7307 #define USB_CHEP_ADDR_Pos              (0U)
7308 #define USB_CHEP_ADDR_Msk              (0xFUL << USB_CHEP_ADDR_Pos)     /*!< 0x0000000F */
7309 #define USB_CHEP_ADDR                  USB_CHEP_ADDR_Msk                /*!< Endpoint address Mask */
7310 
7311 /* EndPoint Register MASK (no toggle fields) */
7312 #define USB_CHEP_REG_MASK                          (USB_CHEP_ERRRX | USB_CHEP_ERRTX | USB_CHEP_LSEP | \
7313                                                     USB_CHEP_DEVADDR | USB_CHEP_VTRX | USB_CHEP_SETUP | \
7314                                                     USB_CHEP_UTYPE | USB_CHEP_KIND | USB_CHEP_VTTX | USB_CHEP_ADDR | \
7315                                                     USB_CHEP_NAK) /* 0x07FF8F8F */
7316 
7317 #define USB_CHEP_TX_DTOGMASK                       (USB_CHEP_TX_STTX | USB_CHEP_REG_MASK)
7318 #define USB_CHEP_RX_DTOGMASK                       (USB_CHEP_RX_STRX | USB_CHEP_REG_MASK)
7319 
7320 #define USB_CHEP_TX_DTOG1                          (0x00000010UL)           /*!< Channel/EndPoint TX Data Toggle bit1 */
7321 #define USB_CHEP_TX_DTOG2                          (0x00000020UL)           /*!< Channel/EndPoint TX Data Toggle bit2 */
7322 #define USB_CHEP_RX_DTOG1                          (0x00001000UL)           /*!< Channel/EndPoint RX Data Toggle bit1 */
7323 #define USB_CHEP_RX_DTOG2                          (0x00002000UL)           /*!< Channel/EndPoint RX Data Toggle bit1 */
7324 
7325 /*!< EP_TYPE[1:0] Channel/EndPoint TYPE */
7326 #define USB_EP_TYPE_MASK                           (0x00000600UL)           /*!< Channel/EndPoint TYPE Mask */
7327 #define USB_EP_BULK                                (0x00000000UL)           /*!< Channel/EndPoint BULK */
7328 #define USB_EP_CONTROL                             (0x00000200UL)           /*!< Channel/EndPoint CONTROL */
7329 #define USB_EP_ISOCHRONOUS                         (0x00000400UL)           /*!< Channel/EndPoint ISOCHRONOUS */
7330 #define USB_EP_INTERRUPT                           (0x00000600UL)           /*!< Channel/EndPoint INTERRUPT */
7331 
7332 #define USB_EP_T_MASK                              ((~USB_EP_UTYPE) & USB_CHEP_REG_MASK) /* =0x898F */
7333 #define USB_CH_T_MASK                              ((~USB_CH_UTYPE) & USB_CHEP_REG_MASK) /* =0x898F */
7334 
7335 #define USB_EP_KIND_MASK                           ((~USB_EP_KIND) & USB_CHEP_REG_MASK) /*!< EP_KIND EndPoint KIND */
7336 #define USB_CH_KIND_MASK                           ((~USB_CH_KIND) & USB_CHEP_REG_MASK) /*!< EP_KIND EndPoint KIND */
7337 
7338 /*!< STAT_TX[1:0] STATus for TX transfer */
7339 #define USB_EP_TX_DIS                              (0x00000000UL)           /*!< EndPoint TX Disabled */
7340 #define USB_EP_TX_STALL                            (0x00000010UL)           /*!< EndPoint TX STALLed */
7341 #define USB_EP_TX_NAK                              (0x00000020UL)           /*!< EndPoint TX NAKed */
7342 #define USB_EP_TX_VALID                            (0x00000030UL)           /*!< EndPoint TX VALID */
7343 
7344 #define USB_CH_TX_DIS                              (0x00000000UL)           /*!< Channel TX Disabled */
7345 #define USB_CH_TX_STALL                            (0x00000010UL)           /*!< Channel TX STALLed */
7346 #define USB_CH_TX_NAK                              (0x00000020UL)           /*!< Channel TX NAKed */
7347 #define USB_CH_TX_VALID                            (0x00000030UL)           /*!< Channel TX VALID */
7348 
7349 #define USB_EP_TX_ACK_SBUF                         (0x00000000UL)           /*!< ACK single buffer mode */
7350 #define USB_EP_TX_ACK_DBUF                         (0x00000030UL)           /*!< ACK Double buffer mode */
7351 
7352 #define USB_CH_TX_ACK_SBUF                         (0x00000000UL)           /*!< ACK single buffer mode */
7353 #define USB_CH_TX_ACK_DBUF                         (0x00000030UL)           /*!< ACK Double buffer mode */
7354 
7355 /*!< STAT_RX[1:0] STATus for RX transfer */
7356 #define USB_EP_RX_DIS                              (0x00000000UL)           /*!< EndPoint RX Disabled */
7357 #define USB_EP_RX_STALL                            (0x00001000UL)           /*!< EndPoint RX STALLed */
7358 #define USB_EP_RX_NAK                              (0x00002000UL)           /*!< EndPoint RX NAKed */
7359 #define USB_EP_RX_VALID                            (0x00003000UL)           /*!< EndPoint RX VALID */
7360 
7361 #define USB_EP_RX_ACK_SBUF                         (0x00000000UL)           /*!< ACK single buffer mode */
7362 #define USB_EP_RX_ACK_DBUF                         (0x00003000UL)           /*!< ACK Double buffer mode */
7363 
7364 
7365 
7366 #define USB_CH_RX_DIS                              (0x00000000UL)           /*!< EndPoint RX Disabled */
7367 #define USB_CH_RX_STALL                            (0x00001000UL)           /*!< EndPoint RX STALLed */
7368 #define USB_CH_RX_NAK                              (0x00002000UL)           /*!< Channel RX NAKed */
7369 #define USB_CH_RX_VALID                            (0x00003000UL)           /*!< Channel RX VALID */
7370 
7371 #define USB_CH_RX_ACK_SBUF                         (0x00000000UL)           /*!< ACK single buffer mode */
7372 #define USB_CH_RX_ACK_DBUF                         (0x00003000UL)           /*!< ACK Double buffer mode */
7373 
7374 /*! <used For Double Buffer Enable Disable */
7375 #define USB_CHEP_DB_MSK                            (0xFFFF0F0FUL)
7376 
7377 /*!< Buffer Descriptor Mask */
7378 #define USB_PMA_TXBD_ADDMSK                        (0xFFFF0000UL)
7379 #define USB_PMA_TXBD_COUNTMSK                      (0x0000FFFFUL)
7380 #define USB_PMA_RXBD_ADDMSK                        (0xFFFF0000UL)
7381 
7382 /*!< USB PMA SIZE */
7383 #define USB_DRD_PMA_SIZE                                  (2048U)           /*!< USB PMA Size 2Kbyte */
7384 
7385 #define USB_DRD_FS_EP_NBR                                    (8U)           /*!< Number of USB Device endpoints */
7386 #define USB_DRD_FS_CH_NBR                                    (8U)           /*!< Number of USB Host channels */
7387 
7388 
7389 /** @addtogroup Exported_macros
7390   * @{
7391   */
7392 
7393 /******************************* ADC Instances ********************************/
7394 #define IS_ADC_ALL_INSTANCE(INSTANCE) ((INSTANCE) == ADC1)
7395 
7396 #define IS_ADC_COMMON_INSTANCE(INSTANCE) ((INSTANCE) == ADC1_COMMON)
7397 
7398 /******************************* CRC Instances ********************************/
7399 #define IS_CRC_ALL_INSTANCE(INSTANCE) ((INSTANCE) == CRC)
7400 
7401 /******************************** DMA Instances *******************************/
7402 
7403 #define IS_DMA_ALL_INSTANCE(INSTANCE) (((INSTANCE) == DMA1_Channel1) || \
7404                                        ((INSTANCE) == DMA1_Channel2) || \
7405                                        ((INSTANCE) == DMA1_Channel3) || \
7406                                        ((INSTANCE) == DMA1_Channel4) || \
7407                                        ((INSTANCE) == DMA1_Channel5))
7408 
7409 /******************************** DMAMUX Instances ****************************/
7410 #define IS_DMAMUX_ALL_INSTANCE(INSTANCE) ((INSTANCE) == DMAMUX1)
7411 
7412 #define IS_DMAMUX_REQUEST_GEN_ALL_INSTANCE(INSTANCE) (((INSTANCE) == DMAMUX1_RequestGenerator0) || \
7413                                                       ((INSTANCE) == DMAMUX1_RequestGenerator1) || \
7414                                                       ((INSTANCE) == DMAMUX1_RequestGenerator2))
7415 
7416 /******************************* GPIO Instances *******************************/
7417 #define IS_GPIO_ALL_INSTANCE(INSTANCE) (((INSTANCE) == GPIOA) || \
7418                                         ((INSTANCE) == GPIOB) || \
7419                                         ((INSTANCE) == GPIOC) || \
7420                                         ((INSTANCE) == GPIOD) || \
7421                                         ((INSTANCE) == GPIOF))
7422 /******************************* GPIO AF Instances ****************************/
7423 #define IS_GPIO_AF_INSTANCE(INSTANCE)   IS_GPIO_ALL_INSTANCE(INSTANCE)
7424 
7425 /**************************** GPIO Lock Instances *****************************/
7426 #define IS_GPIO_LOCK_INSTANCE(INSTANCE) (((INSTANCE) == GPIOA) || \
7427                                          ((INSTANCE) == GPIOB) || \
7428                                          ((INSTANCE) == GPIOC))
7429 
7430 /******************************** I2C Instances *******************************/
7431 #define IS_I2C_ALL_INSTANCE(INSTANCE) (((INSTANCE) == I2C1) || \
7432                                        ((INSTANCE) == I2C2))
7433 
7434 /****************************** RTC Instances *********************************/
7435 #define IS_RTC_ALL_INSTANCE(INSTANCE)  ((INSTANCE) == RTC)
7436 
7437 /****************************** SMBUS Instances *******************************/
7438 #define IS_SMBUS_ALL_INSTANCE(INSTANCE) (((INSTANCE) == I2C1))
7439 
7440 /****************************** WAKEUP_FROMSTOP Instances *******************************/
7441 #define IS_I2C_WAKEUP_FROMSTOP_INSTANCE(INSTANCE) (((INSTANCE) == I2C1))
7442 
7443 /******************************** SPI Instances *******************************/
7444 #define IS_SPI_ALL_INSTANCE(INSTANCE) (((INSTANCE) == SPI1) || \
7445                                        ((INSTANCE) == SPI2))
7446 /******************************** SPI Instances *******************************/
7447 #define IS_I2S_ALL_INSTANCE(INSTANCE)  ((INSTANCE) == SPI1)
7448 
7449 
7450 /****************** TIM Instances : All supported instances *******************/
7451 #define IS_TIM_INSTANCE(INSTANCE)       (((INSTANCE) == TIM1)   || \
7452                                          ((INSTANCE) == TIM2)   || \
7453                                          ((INSTANCE) == TIM3)   || \
7454                                          ((INSTANCE) == TIM14)  || \
7455                                          ((INSTANCE) == TIM16)  || \
7456                                          ((INSTANCE) == TIM17))
7457 
7458 /****************** TIM Instances : supporting 32 bits counter ****************/
7459 #define IS_TIM_32B_COUNTER_INSTANCE(INSTANCE) ((INSTANCE) == TIM2)
7460 
7461 /****************** TIM Instances : supporting the break function *************/
7462 #define IS_TIM_BREAK_INSTANCE(INSTANCE)    (((INSTANCE) == TIM1)    || \
7463                                             ((INSTANCE) == TIM16)   || \
7464                                             ((INSTANCE) == TIM17))
7465 
7466 /************** TIM Instances : supporting Break source selection *************/
7467 #define IS_TIM_BREAKSOURCE_INSTANCE(INSTANCE) (0UL)
7468 
7469 /****************** TIM Instances : supporting 2 break inputs *****************/
7470 #define IS_TIM_BKIN2_INSTANCE(INSTANCE)    ((INSTANCE) == TIM1)
7471 
7472 /************* TIM Instances : at least 1 capture/compare channel *************/
7473 #define IS_TIM_CC1_INSTANCE(INSTANCE)   (((INSTANCE) == TIM1)   || \
7474                                          ((INSTANCE) == TIM2)   || \
7475                                          ((INSTANCE) == TIM3)   || \
7476                                          ((INSTANCE) == TIM14)  || \
7477                                          ((INSTANCE) == TIM16)  || \
7478                                          ((INSTANCE) == TIM17))
7479 
7480 /************ TIM Instances : at least 2 capture/compare channels *************/
7481 #define IS_TIM_CC2_INSTANCE(INSTANCE)   (((INSTANCE) == TIM1)   || \
7482                                          ((INSTANCE) == TIM2)   || \
7483                                          ((INSTANCE) == TIM3))
7484 
7485 /************ TIM Instances : at least 3 capture/compare channels *************/
7486 #define IS_TIM_CC3_INSTANCE(INSTANCE)   (((INSTANCE) == TIM1)   || \
7487                                          ((INSTANCE) == TIM2)   || \
7488                                          ((INSTANCE) == TIM3))
7489 
7490 /************ TIM Instances : at least 4 capture/compare channels *************/
7491 #define IS_TIM_CC4_INSTANCE(INSTANCE)   (((INSTANCE) == TIM1)   || \
7492                                          ((INSTANCE) == TIM2)   || \
7493                                          ((INSTANCE) == TIM3))
7494 
7495 /****************** TIM Instances : at least 5 capture/compare channels *******/
7496 #define IS_TIM_CC5_INSTANCE(INSTANCE)   ((INSTANCE) == TIM1)
7497 
7498 /****************** TIM Instances : at least 6 capture/compare channels *******/
7499 #define IS_TIM_CC6_INSTANCE(INSTANCE)   ((INSTANCE) == TIM1)
7500 
7501 /************ TIM Instances : DMA requests generation (TIMx_DIER.COMDE) *******/
7502 #define IS_TIM_CCDMA_INSTANCE(INSTANCE)    (((INSTANCE) == TIM1)   || \
7503                                             ((INSTANCE) == TIM16)  || \
7504                                             ((INSTANCE) == TIM17))
7505 
7506 /****************** TIM Instances : DMA requests generation (TIMx_DIER.UDE) ***/
7507 #define IS_TIM_DMA_INSTANCE(INSTANCE)      (((INSTANCE) == TIM1)   || \
7508                                             ((INSTANCE) == TIM2)   || \
7509                                             ((INSTANCE) == TIM3)   || \
7510                                             ((INSTANCE) == TIM16)  || \
7511                                             ((INSTANCE) == TIM17))
7512 
7513 /************ TIM Instances : DMA requests generation (TIMx_DIER.CCxDE) *******/
7514 #define IS_TIM_DMA_CC_INSTANCE(INSTANCE)   (((INSTANCE) == TIM1)   || \
7515                                             ((INSTANCE) == TIM2)   || \
7516                                             ((INSTANCE) == TIM3)   || \
7517                                             ((INSTANCE) == TIM14)  || \
7518                                             ((INSTANCE) == TIM16)  || \
7519                                             ((INSTANCE) == TIM17))
7520 
7521 /******************** TIM Instances : DMA burst feature ***********************/
7522 #define IS_TIM_DMABURST_INSTANCE(INSTANCE) (((INSTANCE) == TIM1)   || \
7523                                             ((INSTANCE) == TIM2)   || \
7524                                             ((INSTANCE) == TIM3)   || \
7525                                             ((INSTANCE) == TIM16)  || \
7526                                             ((INSTANCE) == TIM17))
7527 
7528 /******************* TIM Instances : output(s) available **********************/
7529 #define IS_TIM_CCX_INSTANCE(INSTANCE, CHANNEL) \
7530     ((((INSTANCE) == TIM1) &&                  \
7531      (((CHANNEL) == TIM_CHANNEL_1) ||          \
7532       ((CHANNEL) == TIM_CHANNEL_2) ||          \
7533       ((CHANNEL) == TIM_CHANNEL_3) ||          \
7534       ((CHANNEL) == TIM_CHANNEL_4) ||          \
7535       ((CHANNEL) == TIM_CHANNEL_5) ||          \
7536       ((CHANNEL) == TIM_CHANNEL_6)))           \
7537      ||                                        \
7538      (((INSTANCE) == TIM2) &&                  \
7539      (((CHANNEL) == TIM_CHANNEL_1) ||          \
7540       ((CHANNEL) == TIM_CHANNEL_2) ||          \
7541       ((CHANNEL) == TIM_CHANNEL_3) ||          \
7542       ((CHANNEL) == TIM_CHANNEL_4)))           \
7543      ||                                        \
7544      (((INSTANCE) == TIM3) &&                  \
7545      (((CHANNEL) == TIM_CHANNEL_1) ||          \
7546       ((CHANNEL) == TIM_CHANNEL_2) ||          \
7547       ((CHANNEL) == TIM_CHANNEL_3) ||          \
7548       ((CHANNEL) == TIM_CHANNEL_4)))           \
7549      ||                                        \
7550      (((INSTANCE) == TIM14) &&                 \
7551      (((CHANNEL) == TIM_CHANNEL_1)))           \
7552      ||                                        \
7553      (((INSTANCE) == TIM16) &&                 \
7554      (((CHANNEL) == TIM_CHANNEL_1)))           \
7555      ||                                        \
7556      (((INSTANCE) == TIM17) &&                 \
7557       (((CHANNEL) == TIM_CHANNEL_1))))
7558 
7559 /****************** TIM Instances : supporting complementary output(s) ********/
7560 #define IS_TIM_CCXN_INSTANCE(INSTANCE, CHANNEL) \
7561    ((((INSTANCE) == TIM1) &&                    \
7562      (((CHANNEL) == TIM_CHANNEL_1) ||           \
7563       ((CHANNEL) == TIM_CHANNEL_2) ||           \
7564       ((CHANNEL) == TIM_CHANNEL_3)))            \
7565     ||                                          \
7566     (((INSTANCE) == TIM16) &&                   \
7567      ((CHANNEL) == TIM_CHANNEL_1))              \
7568     ||                                          \
7569     (((INSTANCE) == TIM17) &&                   \
7570      ((CHANNEL) == TIM_CHANNEL_1)))
7571 
7572 /****************** TIM Instances : supporting clock division *****************/
7573 #define IS_TIM_CLOCK_DIVISION_INSTANCE(INSTANCE)   (((INSTANCE) == TIM1)    || \
7574                                                     ((INSTANCE) == TIM2)    || \
7575                                                     ((INSTANCE) == TIM3)    || \
7576                                                     ((INSTANCE) == TIM14)   || \
7577                                                     ((INSTANCE) == TIM16)   || \
7578                                                     ((INSTANCE) == TIM17))
7579 
7580 /****** TIM Instances : supporting external clock mode 1 for ETRF input *******/
7581 #define IS_TIM_CLOCKSOURCE_ETRMODE1_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
7582                                                         ((INSTANCE) == TIM2) || \
7583                                                         ((INSTANCE) == TIM3))
7584 
7585 /****** TIM Instances : supporting external clock mode 2 for ETRF input *******/
7586 #define IS_TIM_CLOCKSOURCE_ETRMODE2_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
7587                                                         ((INSTANCE) == TIM2) || \
7588                                                         ((INSTANCE) == TIM3))
7589 
7590 /****************** TIM Instances : supporting external clock mode 1 for TIX inputs*/
7591 #define IS_TIM_CLOCKSOURCE_TIX_INSTANCE(INSTANCE)      (((INSTANCE) == TIM1) || \
7592                                                         ((INSTANCE) == TIM2) || \
7593                                                         ((INSTANCE) == TIM3))
7594 
7595 /****************** TIM Instances : supporting internal trigger inputs(ITRX) *******/
7596 #define IS_TIM_CLOCKSOURCE_ITRX_INSTANCE(INSTANCE)     (((INSTANCE) == TIM1) || \
7597                                                         ((INSTANCE) == TIM2) || \
7598                                                         ((INSTANCE) == TIM3))
7599 
7600 /****************** TIM Instances : supporting combined 3-phase PWM mode ******/
7601 #define IS_TIM_COMBINED3PHASEPWM_INSTANCE(INSTANCE)    ((INSTANCE) == TIM1)
7602 
7603 /****************** TIM Instances : supporting commutation event generation ***/
7604 #define IS_TIM_COMMUTATION_EVENT_INSTANCE(INSTANCE) (((INSTANCE) == TIM1)   || \
7605                                                      ((INSTANCE) == TIM16)  || \
7606                                                      ((INSTANCE) == TIM17))
7607 
7608 /****************** TIM Instances : supporting counting mode selection ********/
7609 #define IS_TIM_COUNTER_MODE_SELECT_INSTANCE(INSTANCE)  (((INSTANCE) == TIM1) || \
7610                                                         ((INSTANCE) == TIM2) || \
7611                                                         ((INSTANCE) == TIM3))
7612 
7613 /****************** TIM Instances : supporting encoder interface **************/
7614 #define IS_TIM_ENCODER_INTERFACE_INSTANCE(INSTANCE)  (((INSTANCE) == TIM1)  || \
7615                                                       ((INSTANCE) == TIM2)  || \
7616                                                       ((INSTANCE) == TIM3))
7617 
7618 /****************** TIM Instances : supporting Hall sensor interface **********/
7619 #define IS_TIM_HALL_SENSOR_INTERFACE_INSTANCE(INSTANCE) (((INSTANCE) == TIM1)   || \
7620                                                          ((INSTANCE) == TIM2)   || \
7621                                                          ((INSTANCE) == TIM3))
7622 
7623 /**************** TIM Instances : external trigger input available ************/
7624 #define IS_TIM_ETR_INSTANCE(INSTANCE)      (((INSTANCE) == TIM1)  || \
7625                                             ((INSTANCE) == TIM2)  || \
7626                                             ((INSTANCE) == TIM3))
7627 
7628 /**************** TIM Instances : supporting ETR source selection ***************/
7629 #define IS_TIM_ETRSEL_INSTANCE(INSTANCE)   (((INSTANCE) == TIM1)  || \
7630                                             ((INSTANCE) == TIM2)  || \
7631                                             ((INSTANCE) == TIM3))
7632 
7633 /****** TIM Instances : Master mode available (TIMx_CR2.MMS available )********/
7634 #define IS_TIM_MASTER_INSTANCE(INSTANCE)   (((INSTANCE) == TIM1)  || \
7635                                             ((INSTANCE) == TIM2)  || \
7636                                             ((INSTANCE) == TIM3))
7637 
7638 /*********** TIM Instances : Slave mode available (TIMx_SMCR available )*******/
7639 #define IS_TIM_SLAVE_INSTANCE(INSTANCE)    (((INSTANCE) == TIM1)  || \
7640                                             ((INSTANCE) == TIM2)  || \
7641                                             ((INSTANCE) == TIM3))
7642 
7643 /****************** TIM Instances : supporting OCxREF clear *******************/
7644 #define IS_TIM_OCXREF_CLEAR_INSTANCE(INSTANCE)        (((INSTANCE) == TIM1) || \
7645                                                        ((INSTANCE) == TIM2) || \
7646                                                        ((INSTANCE) == TIM3))
7647 
7648 /****************** TIM Instances : remapping capability **********************/
7649 #define IS_TIM_REMAP_INSTANCE(INSTANCE)    (((INSTANCE) == TIM1) || \
7650                                             ((INSTANCE) == TIM2) || \
7651                                             ((INSTANCE) == TIM3))
7652 
7653 /****************** TIM Instances : supporting repetition counter *************/
7654 #define IS_TIM_REPETITION_COUNTER_INSTANCE(INSTANCE)  (((INSTANCE) == TIM1)  || \
7655                                                        ((INSTANCE) == TIM16) || \
7656                                                        ((INSTANCE) == TIM17))
7657 
7658 /****************** TIM Instances : supporting synchronization ****************/
7659 #define IS_TIM_SYNCHRO_INSTANCE(INSTANCE)  IS_TIM_MASTER_INSTANCE(INSTANCE)
7660 
7661 /****************** TIM Instances : supporting ADC triggering through TRGO2 ***/
7662 #define IS_TIM_TRGO2_INSTANCE(INSTANCE)    (((INSTANCE) == TIM1))
7663 
7664 /******************* TIM Instances : Timer input XOR function *****************/
7665 #define IS_TIM_XOR_INSTANCE(INSTANCE)      (((INSTANCE) == TIM1)   || \
7666                                             ((INSTANCE) == TIM2)   || \
7667                                             ((INSTANCE) == TIM3))
7668 
7669 /******************* TIM Instances : Timer input selection ********************/
7670 #define IS_TIM_TISEL_INSTANCE(INSTANCE) (((INSTANCE) == TIM14)  || \
7671                                          ((INSTANCE) == TIM16)  || \
7672                                          ((INSTANCE) == TIM17))
7673 
7674 /************ TIM Instances : Advanced timers  ********************************/
7675 #define IS_TIM_ADVANCED_INSTANCE(INSTANCE)    (((INSTANCE) == TIM1))
7676 
7677 /******************** UART Instances : Asynchronous mode **********************/
7678 #define IS_UART_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
7679                                     ((INSTANCE) == USART2))
7680 /******************** USART Instances : Synchronous mode **********************/
7681 #define IS_USART_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
7682                                      ((INSTANCE) == USART2))
7683 /****************** UART Instances : Hardware Flow control ********************/
7684 #define IS_UART_HWFLOW_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
7685                                            ((INSTANCE) == USART2))
7686 /********************* USART Instances : Smard card mode ***********************/
7687 #define IS_SMARTCARD_INSTANCE(INSTANCE) ((INSTANCE) == USART1)
7688 /****************** UART Instances : Auto Baud Rate detection ****************/
7689 #define IS_USART_AUTOBAUDRATE_DETECTION_INSTANCE(INSTANCE) ((INSTANCE) == USART1)
7690 
7691 /******************** UART Instances : Half-Duplex mode **********************/
7692 #define IS_UART_HALFDUPLEX_INSTANCE(INSTANCE)   (((INSTANCE) == USART1) || \
7693                                                  ((INSTANCE) == USART2))
7694 /******************** UART Instances : LIN mode **********************/
7695 #define IS_UART_LIN_INSTANCE(INSTANCE)   ((INSTANCE) == USART1)
7696 /******************** UART Instances : Wake-up from Stop mode **********************/
7697 #define IS_UART_WAKEUP_FROMSTOP_INSTANCE(INSTANCE)   ((INSTANCE) == USART1)
7698 
7699 /****************** UART Instances : Driver Enable *****************/
7700 #define IS_UART_DRIVER_ENABLE_INSTANCE(INSTANCE)     (((INSTANCE) == USART1) || \
7701                                                       ((INSTANCE) == USART2))
7702 /****************** UART Instances : SPI Slave selection mode ***************/
7703 #define IS_UART_SPI_SLAVE_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
7704                                               ((INSTANCE) == USART2))
7705 /****************** UART Instances : Driver Enable *****************/
7706 #define IS_UART_FIFO_INSTANCE(INSTANCE)     ((INSTANCE) == USART1)
7707 /*********************** UART Instances : IRDA mode ***************************/
7708 #define IS_IRDA_INSTANCE(INSTANCE) ((INSTANCE) == USART1)
7709 /****************************** IWDG Instances ********************************/
7710 #define IS_IWDG_ALL_INSTANCE(INSTANCE)  ((INSTANCE) == IWDG)
7711 
7712 /****************************** WWDG Instances ********************************/
7713 #define IS_WWDG_ALL_INSTANCE(INSTANCE)  ((INSTANCE) == WWDG)
7714 
7715 /**
7716   * @}
7717   */
7718 
7719  /**
7720   * @}
7721   */
7722 
7723 /**
7724   * @}
7725   */
7726 
7727 #ifdef __cplusplus
7728 }
7729 #endif /* __cplusplus */
7730 
7731 #endif /* STM32C071xx_H */
7732 
7733 /**
7734   * @}
7735   */
7736 
7737   /**
7738   * @}
7739   */
7740