]> git.gir.st - tmk_keyboard.git/blob - tool/mbed/mbed-sdk/libraries/mbed/targets/cmsis/TARGET_STM/TARGET_STM32F3XX/stm32f30x.h
Squashed 'tmk_core/' changes from 7967731..b9e0ea0
[tmk_keyboard.git] / tool / mbed / mbed-sdk / libraries / mbed / targets / cmsis / TARGET_STM / TARGET_STM32F3XX / stm32f30x.h
1 /**
2 ******************************************************************************
3 * @file stm32f30x.h
4 * @author MCD Application Team
5 * @version V1.1.0
6 * @date 27-February-2014
7 * @brief CMSIS Cortex-M4 Device Peripheral Access Layer Header File.
8 * This file contains all the peripheral registers definitions, bits
9 * definitions and memory mapping for STM32F30x devices.
10 *
11 * The file is the unique include file that the application programmer
12 * is using in the C source code, usually in main.c. This file contains:
13 * - Configuration section that allows to select:
14 * - The device used in the target application
15 * - To use or not the peripheral\92s drivers in application code(i.e.
16 * code will be based on direct access to peripheral\92s registers
17 * rather than drivers API), this option is controlled by
18 * "#define USE_STDPERIPH_DRIVER"
19 * - To change few application-specific parameters such as the HSE
20 * crystal frequency
21 * - Data structures and the address mapping for all peripherals
22 * - Peripheral registers declarations and bits definition
23 * - Macros to access peripheral registers hardware
24 *
25 ******************************************************************************
26 * @attention
27 *
28 * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
29 *
30 * Redistribution and use in source and binary forms, with or without modification,
31 * are permitted provided that the following conditions are met:
32 * 1. Redistributions of source code must retain the above copyright notice,
33 * this list of conditions and the following disclaimer.
34 * 2. Redistributions in binary form must reproduce the above copyright notice,
35 * this list of conditions and the following disclaimer in the documentation
36 * and/or other materials provided with the distribution.
37 * 3. Neither the name of STMicroelectronics nor the names of its contributors
38 * may be used to endorse or promote products derived from this software
39 * without specific prior written permission.
40 *
41 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
42 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
44 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
45 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
47 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
48 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
49 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
50 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
51 *
52 ******************************************************************************
53 */
54
55 /** @addtogroup CMSIS
56 * @{
57 */
58
59 /** @addtogroup stm32f30x
60 * @{
61 */
62
63 #ifndef __STM32F30x_H
64 #define __STM32F30x_H
65
66 #ifdef __cplusplus
67 extern "C" {
68 #endif /* __cplusplus */
69
70 /** @addtogroup Library_configuration_section
71 * @{
72 */
73
74 /* Uncomment the line below according to the target STM32 device used in your
75 application
76 */
77
78 #if !defined (STM32F303xC) && !defined (STM32F334x8) && !defined (STM32F303x8) && !defined (STM32F301x8) && !defined (STM32F302x8)
79 #define STM32F303xC /*!< STM32F303CB, STM32F303CC, STM32F303RB, STM32F303RC, STM32F303VB and STM32F303VC Devices */
80 /* #define STM32F334x8 */ /*!< STM32F334C4, STM32F334C6, STM32F334C8, STM32F334R4, STM32F334R6 and STM32F334R8 Devices */
81 /* #define STM32F302x8 */ /*!< STM32F302K4, STM32F302K6, STM32F302K8, STM32F302C4, STM32F302C6, STM32F302C8,
82 STM32F302R4, STM32F302R6 and STM32F302R8 Devices */
83 #endif
84
85 /* Tip: To avoid modifying this file each time you need to switch between these
86 devices, you can define the device in your toolchain compiler preprocessor.
87 */
88
89 /* Old STM32F30X definition, maintained for legacy purpose */
90 #if defined(STM32F30X)
91 #define STM32F303xC
92 #endif /* STM32F30X */
93
94 #if !defined (STM32F303xC) && !defined (STM32F334x8) && !defined (STM32F302x8)
95 #error "Please select first the target STM32F30X device used in your application (in stm32f30x.h file)"
96 #endif
97
98 #if !defined (USE_STDPERIPH_DRIVER)
99 /**
100 * @brief Comment the line below if you will not use the peripherals drivers.
101 In this case, these drivers will not be included and the application code will
102 be based on direct access to peripherals registers
103 */
104 #define USE_STDPERIPH_DRIVER
105 #endif /* USE_STDPERIPH_DRIVER */
106
107 /**
108 * @brief In the following line adjust the value of External High Speed oscillator (HSE)
109 used in your application
110
111 Tip: To avoid modifying this file each time you need to use different HSE, you
112 can define the HSE value in your toolchain compiler preprocessor.
113 */
114 #if !defined (HSE_VALUE)
115 #define HSE_VALUE ((uint32_t)8000000) /*!< Value of the External xtal in Hz */
116 #endif /* HSE_VALUE */
117
118 /**
119 * @brief In the following line adjust the External High Speed oscillator (HSE) Startup
120 Timeout value
121 */
122 #if !defined (HSE_STARTUP_TIMEOUT)
123 #define HSE_STARTUP_TIMEOUT ((uint16_t)0x5000) /*!< Time out for HSE start up */
124 #endif /* HSE_STARTUP_TIMEOUT */
125
126 /**
127 * @brief In the following line adjust the Internal High Speed oscillator (HSI) Startup
128 Timeout value
129 */
130 #if !defined (HSI_STARTUP_TIMEOUT)
131 #define HSI_STARTUP_TIMEOUT ((uint16_t)0x5000) /*!< Time out for HSI start up */
132 #endif /* HSI_STARTUP_TIMEOUT */
133
134 #if !defined (HSI_VALUE)
135 #define HSI_VALUE ((uint32_t)8000000)
136 #endif /* HSI_VALUE */ /*!< Value of the Internal High Speed oscillator in Hz.
137 The real value may vary depending on the variations
138 in voltage and temperature. */
139 #if !defined (LSI_VALUE)
140 #define LSI_VALUE ((uint32_t)40000)
141 #endif /* LSI_VALUE */ /*!< Value of the Internal Low Speed oscillator in Hz
142 The real value may vary depending on the variations
143 in voltage and temperature. */
144 #if !defined (LSE_VALUE)
145 #define LSE_VALUE ((uint32_t)32768) /*!< Value of the External Low Speed oscillator in Hz */
146 #endif /* LSE_VALUE */
147
148
149 /**
150 * @brief STM32F30x Standard Peripherals Library version number V1.1.0
151 */
152 #define __STM32F30X_STDPERIPH_VERSION_MAIN (0x01) /*!< [31:24] main version */
153 #define __STM32F30X_STDPERIPH_VERSION_SUB1 (0x01) /*!< [23:16] sub1 version */
154 #define __STM32F30X_STDPERIPH_VERSION_SUB2 (0x00) /*!< [15:8] sub2 version */
155 #define __STM32F30X_STDPERIPH_VERSION_RC (0x00) /*!< [7:0] release candidate */
156 #define __STM32F30X_STDPERIPH_VERSION ( (__STM32F30X_STDPERIPH_VERSION_MAIN << 24)\
157 |(__STM32F30X_STDPERIPH_VERSION_SUB1 << 16)\
158 |(__STM32F30X_STDPERIPH_VERSION_SUB2 << 8)\
159 |(__STM32F30X_STDPERIPH_VERSION_RC))
160
161 /**
162 * @}
163 */
164
165 /** @addtogroup Configuration_section_for_CMSIS
166 * @{
167 */
168
169 /**
170 * @brief Configuration of the Cortex-M4 Processor and Core Peripherals
171 */
172 #define __CM4_REV 0x0001 /*!< Core revision r0p1 */
173 #define __MPU_PRESENT 1 /*!< STM32F30X provide an MPU */
174 #define __NVIC_PRIO_BITS 4 /*!< STM32F30X uses 4 Bits for the Priority Levels */
175 #define __Vendor_SysTickConfig 0 /*!< Set to 1 if different SysTick Config is used */
176 #define __FPU_PRESENT 1 /*!< STM32F30X provide an FPU */
177
178
179 /**
180 * @brief STM32F30X Interrupt Number Definition, according to the selected device
181 * in @ref Library_configuration_section
182 */
183 typedef enum IRQn
184 {
185 /****** Cortex-M4 Processor Exceptions Numbers ****************************************************************/
186 NonMaskableInt_IRQn = -14, /*!< 2 Non Maskable Interrupt */
187 MemoryManagement_IRQn = -12, /*!< 4 Cortex-M4 Memory Management Interrupt */
188 BusFault_IRQn = -11, /*!< 5 Cortex-M4 Bus Fault Interrupt */
189 UsageFault_IRQn = -10, /*!< 6 Cortex-M4 Usage Fault Interrupt */
190 SVCall_IRQn = -5, /*!< 11 Cortex-M4 SV Call Interrupt */
191 DebugMonitor_IRQn = -4, /*!< 12 Cortex-M4 Debug Monitor Interrupt */
192 PendSV_IRQn = -2, /*!< 14 Cortex-M4 Pend SV Interrupt */
193 SysTick_IRQn = -1, /*!< 15 Cortex-M4 System Tick Interrupt */
194 /****** STM32 specific Interrupt Numbers **********************************************************************/
195 #ifdef STM32F303xC
196 WWDG_IRQn = 0, /*!< Window WatchDog Interrupt */
197 PVD_IRQn = 1, /*!< PVD through EXTI Line detection Interrupt */
198 TAMPER_STAMP_IRQn = 2, /*!< Tamper and TimeStamp interrupts */
199 RTC_WKUP_IRQn = 3, /*!< RTC Wakeup interrupt through the EXTI lines 17, 19 & 20 */
200 FLASH_IRQn = 4, /*!< FLASH global Interrupt */
201 RCC_IRQn = 5, /*!< RCC global Interrupt */
202 EXTI0_IRQn = 6, /*!< EXTI Line0 Interrupt */
203 EXTI1_IRQn = 7, /*!< EXTI Line1 Interrupt */
204 EXTI2_TS_IRQn = 8, /*!< EXTI Line2 Interrupt and Touch Sense Interrupt */
205 EXTI3_IRQn = 9, /*!< EXTI Line3 Interrupt */
206 EXTI4_IRQn = 10, /*!< EXTI Line4 Interrupt */
207 DMA1_Channel1_IRQn = 11, /*!< DMA1 Channel 1 Interrupt */
208 DMA1_Channel2_IRQn = 12, /*!< DMA1 Channel 2 Interrupt */
209 DMA1_Channel3_IRQn = 13, /*!< DMA1 Channel 3 Interrupt */
210 DMA1_Channel4_IRQn = 14, /*!< DMA1 Channel 4 Interrupt */
211 DMA1_Channel5_IRQn = 15, /*!< DMA1 Channel 5 Interrupt */
212 DMA1_Channel6_IRQn = 16, /*!< DMA1 Channel 6 Interrupt */
213 DMA1_Channel7_IRQn = 17, /*!< DMA1 Channel 7 Interrupt */
214 ADC1_2_IRQn = 18, /*!< ADC1 & ADC2 Interrupts */
215 USB_HP_CAN1_TX_IRQn = 19, /*!< USB Device High Priority or CAN1 TX Interrupts */
216 USB_LP_CAN1_RX0_IRQn = 20, /*!< USB Device Low Priority or CAN1 RX0 Interrupts */
217 CAN1_RX1_IRQn = 21, /*!< CAN1 RX1 Interrupt */
218 CAN1_SCE_IRQn = 22, /*!< CAN1 SCE Interrupt */
219 EXTI9_5_IRQn = 23, /*!< External Line[9:5] Interrupts */
220 TIM1_BRK_TIM15_IRQn = 24, /*!< TIM1 Break and TIM15 Interrupts */
221 TIM1_UP_TIM16_IRQn = 25, /*!< TIM1 Update and TIM16 Interrupts */
222 TIM1_TRG_COM_TIM17_IRQn = 26, /*!< TIM1 Trigger and Commutation and TIM17 Interrupt */
223 TIM1_CC_IRQn = 27, /*!< TIM1 Capture Compare Interrupt */
224 TIM2_IRQn = 28, /*!< TIM2 global Interrupt */
225 TIM3_IRQn = 29, /*!< TIM3 global Interrupt */
226 TIM4_IRQn = 30, /*!< TIM4 global Interrupt */
227 I2C1_EV_IRQn = 31, /*!< I2C1 Event Interrupt */
228 I2C1_ER_IRQn = 32, /*!< I2C1 Error Interrupt */
229 I2C2_EV_IRQn = 33, /*!< I2C2 Event Interrupt */
230 I2C2_ER_IRQn = 34, /*!< I2C2 Error Interrupt */
231 SPI1_IRQn = 35, /*!< SPI1 global Interrupt */
232 SPI2_IRQn = 36, /*!< SPI2 global Interrupt */
233 USART1_IRQn = 37, /*!< USART1 global Interrupt */
234 USART2_IRQn = 38, /*!< USART2 global Interrupt */
235 USART3_IRQn = 39, /*!< USART3 global Interrupt */
236 EXTI15_10_IRQn = 40, /*!< External Line[15:10] Interrupts */
237 RTC_Alarm_IRQn = 41, /*!< RTC Alarm (A and B) through EXTI Line Interrupt */
238 USBWakeUp_IRQn = 42, /*!< USB Wakeup Interrupt */
239 TIM8_BRK_IRQn = 43, /*!< TIM8 Break Interrupt */
240 TIM8_UP_IRQn = 44, /*!< TIM8 Update Interrupt */
241 TIM8_TRG_COM_IRQn = 45, /*!< TIM8 Trigger and Commutation Interrupt */
242 TIM8_CC_IRQn = 46, /*!< TIM8 Capture Compare Interrupt */
243 ADC3_IRQn = 47, /*!< ADC3 global Interrupt */
244 SPI3_IRQn = 51, /*!< SPI3 global Interrupt */
245 UART4_IRQn = 52, /*!< UART4 global Interrupt */
246 UART5_IRQn = 53, /*!< UART5 global Interrupt */
247 TIM6_DAC_IRQn = 54, /*!< TIM6 global and DAC1&2 underrun error interrupts */
248 TIM7_IRQn = 55, /*!< TIM7 global Interrupt */
249 DMA2_Channel1_IRQn = 56, /*!< DMA2 Channel 1 global Interrupt */
250 DMA2_Channel2_IRQn = 57, /*!< DMA2 Channel 2 global Interrupt */
251 DMA2_Channel3_IRQn = 58, /*!< DMA2 Channel 3 global Interrupt */
252 DMA2_Channel4_IRQn = 59, /*!< DMA2 Channel 4 global Interrupt */
253 DMA2_Channel5_IRQn = 60, /*!< DMA2 Channel 5 global Interrupt */
254 ADC4_IRQn = 61, /*!< ADC4 global Interrupt */
255 COMP1_2_3_IRQn = 64, /*!< COMP1, COMP2 and COMP3 global Interrupt */
256 COMP4_5_6_IRQn = 65, /*!< COMP5, COMP6 and COMP4 global Interrupt */
257 COMP7_IRQn = 66, /*!< COMP7 global Interrupt */
258 USB_HP_IRQn = 74, /*!< USB High Priority global Interrupt remap */
259 USB_LP_IRQn = 75, /*!< USB Low Priority global Interrupt remap */
260 USBWakeUp_RMP_IRQn = 76, /*!< USB Wakeup Interrupt remap */
261 FPU_IRQn = 81 /*!< Floating point Interrupt */
262 #endif /* STM32F303xC */
263 #ifdef STM32F334x8
264 WWDG_IRQn = 0, /*!< Window WatchDog Interrupt */
265 PVD_IRQn = 1, /*!< PVD through EXTI Line detection Interrupt */
266 TAMPER_STAMP_IRQn = 2, /*!< Tamper and TimeStamp interrupts */
267 RTC_WKUP_IRQn = 3, /*!< RTC Wakeup interrupt through the EXTI lines 17, 19 & 20 */
268 FLASH_IRQn = 4, /*!< FLASH global Interrupt */
269 RCC_IRQn = 5, /*!< RCC global Interrupt */
270 EXTI0_IRQn = 6, /*!< EXTI Line0 Interrupt */
271 EXTI1_IRQn = 7, /*!< EXTI Line1 Interrupt */
272 EXTI2_TS_IRQn = 8, /*!< EXTI Line2 Interrupt and Touch Sense Interrupt */
273 EXTI3_IRQn = 9, /*!< EXTI Line3 Interrupt */
274 EXTI4_IRQn = 10, /*!< EXTI Line4 Interrupt */
275 DMA1_Channel1_IRQn = 11, /*!< DMA1 Channel 1 Interrupt */
276 DMA1_Channel2_IRQn = 12, /*!< DMA1 Channel 2 Interrupt */
277 DMA1_Channel3_IRQn = 13, /*!< DMA1 Channel 3 Interrupt */
278 DMA1_Channel4_IRQn = 14, /*!< DMA1 Channel 4 Interrupt */
279 DMA1_Channel5_IRQn = 15, /*!< DMA1 Channel 5 Interrupt */
280 DMA1_Channel6_IRQn = 16, /*!< DMA1 Channel 6 Interrupt */
281 DMA1_Channel7_IRQn = 17, /*!< DMA1 Channel 7 Interrupt */
282 ADC1_2_IRQn = 18, /*!< ADC1 & ADC2 Interrupts */
283 CAN1_TX_IRQn = 19, /*!< CAN1 TX Interrupts */
284 CAN1_RX0_IRQn = 20, /*!< CAN1 RX0 Interrupts */
285 CAN1_RX1_IRQn = 21, /*!< CAN1 RX1 Interrupt */
286 CAN1_SCE_IRQn = 22, /*!< CAN1 SCE Interrupt */
287 EXTI9_5_IRQn = 23, /*!< External Line[9:5] Interrupts */
288 TIM1_BRK_TIM15_IRQn = 24, /*!< TIM1 Break and TIM15 Interrupts */
289 TIM1_UP_TIM16_IRQn = 25, /*!< TIM1 Update and TIM16 Interrupts */
290 TIM1_TRG_COM_TIM17_IRQn = 26, /*!< TIM1 Trigger and Commutation and TIM17 Interrupt */
291 TIM1_CC_IRQn = 27, /*!< TIM1 Capture Compare Interrupt */
292 TIM2_IRQn = 28, /*!< TIM2 global Interrupt */
293 TIM3_IRQn = 29, /*!< TIM3 global Interrupt */
294 I2C1_EV_IRQn = 31, /*!< I2C1 Event Interrupt */
295 I2C1_ER_IRQn = 32, /*!< I2C1 Error Interrupt */
296 SPI1_IRQn = 35, /*!< SPI1 global Interrupt */
297 USART1_IRQn = 37, /*!< USART1 global Interrupt */
298 USART2_IRQn = 38, /*!< USART2 global Interrupt */
299 USART3_IRQn = 39, /*!< USART3 global Interrupt */
300 EXTI15_10_IRQn = 40, /*!< External Line[15:10] Interrupts */
301 RTC_Alarm_IRQn = 41, /*!< RTC Alarm (A and B) through EXTI Line Interrupt */
302 TIM6_DAC1_IRQn = 54, /*!< TIM6 global and DAC1 underrun error interrupts */
303 TIM7_DAC2_IRQn = 55, /*!< TIM7 global and DAC2 underrun error Interrupt */
304 COMP2_IRQn = 64, /*!< COMP2 global Interrupt */
305 COMP4_6_IRQn = 65, /*!< COMP6 and COMP4 global Interrupt */
306 HRTIM1_Master_IRQn = 67, /*!< HRTIM Master Timer global Interrupts */
307 HRTIM1_TIMA_IRQn = 68, /*!< HRTIM Timer A global Interrupt */
308 HRTIM1_TIMB_IRQn = 69, /*!< HRTIM Timer B global Interrupt */
309 HRTIM1_TIMC_IRQn = 70, /*!< HRTIM Timer C global Interrupt */
310 HRTIM1_TIMD_IRQn = 71, /*!< HRTIM Timer D global Interrupt */
311 HRTIM1_TIME_IRQn = 72, /*!< HRTIM Timer E global Interrupt */
312 HRTIM1_FLT_IRQn = 73, /*!< HRTIM Fault global Interrupt */
313 FPU_IRQn = 81 /*!< Floating point Interrupt */
314 #endif /* STM32F334x8 */
315 #ifdef STM32F302x8
316 WWDG_IRQn = 0, /*!< Window WatchDog Interrupt */
317 PVD_IRQn = 1, /*!< PVD through EXTI Line detection Interrupt */
318 TAMPER_STAMP_IRQn = 2, /*!< Tamper and TimeStamp interrupts */
319 RTC_WKUP_IRQn = 3, /*!< RTC Wakeup interrupt through the EXTI lines 20 */
320 FLASH_IRQn = 4, /*!< FLASH global Interrupt */
321 RCC_IRQn = 5, /*!< RCC global Interrupt */
322 EXTI0_IRQn = 6, /*!< EXTI Line0 Interrupt */
323 EXTI1_IRQn = 7, /*!< EXTI Line1 Interrupt */
324 EXTI2_TS_IRQn = 8, /*!< EXTI Line2 Interrupt and Touch Sense Interrupt */
325 EXTI3_IRQn = 9, /*!< EXTI Line3 Interrupt */
326 EXTI4_IRQn = 10, /*!< EXTI Line4 Interrupt */
327 DMA1_Channel1_IRQn = 11, /*!< DMA1 Channel 1 Interrupt */
328 DMA1_Channel2_IRQn = 12, /*!< DMA1 Channel 2 Interrupt */
329 DMA1_Channel3_IRQn = 13, /*!< DMA1 Channel 3 Interrupt */
330 DMA1_Channel4_IRQn = 14, /*!< DMA1 Channel 4 Interrupt */
331 DMA1_Channel5_IRQn = 15, /*!< DMA1 Channel 5 Interrupt */
332 DMA1_Channel6_IRQn = 16, /*!< DMA1 Channel 6 Interrupt */
333 DMA1_Channel7_IRQn = 17, /*!< DMA1 Channel 7 Interrupt */
334 ADC1_IRQn = 18, /*!< ADC1 Interrupts */
335 USB_HP_CAN1_TX_IRQn = 19, /*!< USB Device High Priority or CAN1 TX Interrupts */
336 USB_LP_CAN1_RX0_IRQn = 20, /*!< USB Device Low Priority or CAN1 RX0 Interrupts */
337 CAN1_RX1_IRQn = 21, /*!< CAN1 RX1 Interrupt */
338 CAN1_SCE_IRQn = 22, /*!< CAN1 SCE Interrupt */
339 EXTI9_5_IRQn = 23, /*!< External Line[9:5] Interrupts */
340 TIM1_BRK_TIM15_IRQn = 24, /*!< TIM1 Break and TIM15 Interrupts */
341 TIM1_UP_TIM16_IRQn = 25, /*!< TIM1 Update and TIM16 Interrupts */
342 TIM1_TRG_COM_TIM17_IRQn = 26, /*!< TIM1 Trigger and Commutation and TIM17 Interrupt */
343 TIM1_CC_IRQn = 27, /*!< TIM1 Capture Compare Interrupt */
344 TIM2_IRQn = 28, /*!< TIM2 global Interrupt */
345 I2C1_EV_IRQn = 31, /*!< I2C1 Event Interrupt */
346 I2C1_ER_IRQn = 32, /*!< I2C1 Error Interrupt */
347 I2C2_EV_IRQn = 33, /*!< I2C2 Event Interrupt */
348 I2C2_ER_IRQn = 34, /*!< I2C2 Error Interrupt */
349 SPI2_IRQn = 36, /*!< SPI2 global Interrupt */
350 USART1_IRQn = 37, /*!< USART1 global Interrupt */
351 USART2_IRQn = 38, /*!< USART2 global Interrupt */
352 USART3_IRQn = 39, /*!< USART3 global Interrupt */
353 EXTI15_10_IRQn = 40, /*!< External Line[15:10] Interrupts */
354 RTC_Alarm_IRQn = 41, /*!< RTC Alarm (A and B) through EXTI Line Interrupt */
355 USBWakeUp_IRQn = 42, /*!< USB Wakeup Interrupt */
356 SPI3_IRQn = 51, /*!< SPI3 global Interrupt */
357 TIM6_DAC_IRQn = 54, /*!< TIM6 global and DAC1&2 underrun error interrupts */
358 COMP2_IRQn = 64, /*!< COMP2 global Interrupt */
359 COMP4_6_IRQn = 65, /*!< COMP5, COMP6 and COMP4 global Interrupt */
360 COMP7_IRQn = 66, /*!< COMP7 global Interrupt */
361 I2C3_EV_IRQn = 72, /*!< I2C3 Event Interrupt */
362 I2C3_ER_IRQn = 73, /*!< I2C3 Error Interrupt */
363 USB_HP_IRQn = 74, /*!< USB High Priority global Interrupt remap */
364 USB_LP_IRQn = 75, /*!< USB Low Priority global Interrupt remap */
365 USBWakeUp_RMP_IRQn = 76, /*!< USB Wakeup Interrupt remap */
366 FPU_IRQn = 81 /*!< Floating point Interrupt */
367 #endif /* STM32F302x8 */
368 } IRQn_Type;
369
370 /**
371 * @}
372 */
373
374 #include "core_cm4.h" /* Cortex-M4 processor and core peripherals */
375 #include "system_stm32f30x.h" /* STM32F30x System Header */
376 #include <stdint.h>
377
378 /** @addtogroup Exported_types
379 * @{
380 */
381 /*!< STM32F10x Standard Peripheral Library old types (maintained for legacy purpose) */
382 typedef int32_t s32;
383 typedef int16_t s16;
384 typedef int8_t s8;
385
386 typedef const int32_t sc32; /*!< Read Only */
387 typedef const int16_t sc16; /*!< Read Only */
388 typedef const int8_t sc8; /*!< Read Only */
389
390 typedef __IO int32_t vs32;
391 typedef __IO int16_t vs16;
392 typedef __IO int8_t vs8;
393
394 typedef __I int32_t vsc32; /*!< Read Only */
395 typedef __I int16_t vsc16; /*!< Read Only */
396 typedef __I int8_t vsc8; /*!< Read Only */
397
398 typedef uint32_t u32;
399 typedef uint16_t u16;
400 typedef uint8_t u8;
401
402 typedef const uint32_t uc32; /*!< Read Only */
403 typedef const uint16_t uc16; /*!< Read Only */
404 typedef const uint8_t uc8; /*!< Read Only */
405
406 typedef __IO uint32_t vu32;
407 typedef __IO uint16_t vu16;
408 typedef __IO uint8_t vu8;
409
410 typedef __I uint32_t vuc32; /*!< Read Only */
411 typedef __I uint16_t vuc16; /*!< Read Only */
412 typedef __I uint8_t vuc8; /*!< Read Only */
413
414 typedef enum {RESET = 0, SET = !RESET} FlagStatus, ITStatus;
415
416 typedef enum {DISABLE = 0, ENABLE = !DISABLE} FunctionalState;
417 #define IS_FUNCTIONAL_STATE(STATE) (((STATE) == DISABLE) || ((STATE) == ENABLE))
418
419 typedef enum {ERROR = 0, SUCCESS = !ERROR} ErrorStatus;
420
421 /**
422 * @}
423 */
424
425 /** @addtogroup Peripheral_registers_structures
426 * @{
427 */
428
429 /**
430 * @brief Analog to Digital Converter
431 */
432
433 typedef struct
434 {
435 __IO uint32_t ISR; /*!< ADC Interrupt and Status Register, Address offset: 0x00 */
436 __IO uint32_t IER; /*!< ADC Interrupt Enable Register, Address offset: 0x04 */
437 __IO uint32_t CR; /*!< ADC control register, Address offset: 0x08 */
438 __IO uint32_t CFGR; /*!< ADC Configuration register, Address offset: 0x0C */
439 uint32_t RESERVED0; /*!< Reserved, 0x010 */
440 __IO uint32_t SMPR1; /*!< ADC sample time register 1, Address offset: 0x14 */
441 __IO uint32_t SMPR2; /*!< ADC sample time register 2, Address offset: 0x18 */
442 uint32_t RESERVED1; /*!< Reserved, 0x01C */
443 __IO uint32_t TR1; /*!< ADC watchdog threshold register 1, Address offset: 0x20 */
444 __IO uint32_t TR2; /*!< ADC watchdog threshold register 2, Address offset: 0x24 */
445 __IO uint32_t TR3; /*!< ADC watchdog threshold register 3, Address offset: 0x28 */
446 uint32_t RESERVED2; /*!< Reserved, 0x02C */
447 __IO uint32_t SQR1; /*!< ADC regular sequence register 1, Address offset: 0x30 */
448 __IO uint32_t SQR2; /*!< ADC regular sequence register 2, Address offset: 0x34 */
449 __IO uint32_t SQR3; /*!< ADC regular sequence register 3, Address offset: 0x38 */
450 __IO uint32_t SQR4; /*!< ADC regular sequence register 4, Address offset: 0x3C */
451 __IO uint32_t DR; /*!< ADC regular data register, Address offset: 0x40 */
452 uint32_t RESERVED3; /*!< Reserved, 0x044 */
453 uint32_t RESERVED4; /*!< Reserved, 0x048 */
454 __IO uint32_t JSQR; /*!< ADC injected sequence register, Address offset: 0x4C */
455 uint32_t RESERVED5[4]; /*!< Reserved, 0x050 - 0x05C */
456 __IO uint32_t OFR1; /*!< ADC offset register 1, Address offset: 0x60 */
457 __IO uint32_t OFR2; /*!< ADC offset register 2, Address offset: 0x64 */
458 __IO uint32_t OFR3; /*!< ADC offset register 3, Address offset: 0x68 */
459 __IO uint32_t OFR4; /*!< ADC offset register 4, Address offset: 0x6C */
460 uint32_t RESERVED6[4]; /*!< Reserved, 0x070 - 0x07C */
461 __IO uint32_t JDR1; /*!< ADC injected data register 1, Address offset: 0x80 */
462 __IO uint32_t JDR2; /*!< ADC injected data register 2, Address offset: 0x84 */
463 __IO uint32_t JDR3; /*!< ADC injected data register 3, Address offset: 0x88 */
464 __IO uint32_t JDR4; /*!< ADC injected data register 4, Address offset: 0x8C */
465 uint32_t RESERVED7[4]; /*!< Reserved, 0x090 - 0x09C */
466 __IO uint32_t AWD2CR; /*!< ADC Analog Watchdog 2 Configuration Register, Address offset: 0xA0 */
467 __IO uint32_t AWD3CR; /*!< ADC Analog Watchdog 3 Configuration Register, Address offset: 0xA4 */
468 uint32_t RESERVED8; /*!< Reserved, 0x0A8 */
469 uint32_t RESERVED9; /*!< Reserved, 0x0AC */
470 __IO uint32_t DIFSEL; /*!< ADC Differential Mode Selection Register, Address offset: 0xB0 */
471 __IO uint32_t CALFACT; /*!< ADC Calibration Factors, Address offset: 0xB4 */
472
473 } ADC_TypeDef;
474
475 typedef struct
476 {
477 __IO uint32_t CSR; /*!< ADC Common status register, Address offset: ADC1/3 base address + 0x300 */
478 uint32_t RESERVED; /*!< Reserved, ADC1/3 base address + 0x304 */
479 __IO uint32_t CCR; /*!< ADC common control register, Address offset: ADC1/3 base address + 0x308 */
480 __IO uint32_t CDR; /*!< ADC common regular data register for dual
481 modes, Address offset: ADC1/3 base address + 0x30A */
482 } ADC_Common_TypeDef;
483
484
485 /**
486 * @brief Controller Area Network TxMailBox
487 */
488 typedef struct
489 {
490 __IO uint32_t TIR; /*!< CAN TX mailbox identifier register */
491 __IO uint32_t TDTR; /*!< CAN mailbox data length control and time stamp register */
492 __IO uint32_t TDLR; /*!< CAN mailbox data low register */
493 __IO uint32_t TDHR; /*!< CAN mailbox data high register */
494 } CAN_TxMailBox_TypeDef;
495
496 /**
497 * @brief Controller Area Network FIFOMailBox
498 */
499 typedef struct
500 {
501 __IO uint32_t RIR; /*!< CAN receive FIFO mailbox identifier register */
502 __IO uint32_t RDTR; /*!< CAN receive FIFO mailbox data length control and time stamp register */
503 __IO uint32_t RDLR; /*!< CAN receive FIFO mailbox data low register */
504 __IO uint32_t RDHR; /*!< CAN receive FIFO mailbox data high register */
505 } CAN_FIFOMailBox_TypeDef;
506
507 /**
508 * @brief Controller Area Network FilterRegister
509 */
510 typedef struct
511 {
512 __IO uint32_t FR1; /*!< CAN Filter bank register 1 */
513 __IO uint32_t FR2; /*!< CAN Filter bank register 1 */
514 } CAN_FilterRegister_TypeDef;
515
516 /**
517 * @brief Controller Area Network
518 */
519 typedef struct
520 {
521 __IO uint32_t MCR; /*!< CAN master control register, Address offset: 0x00 */
522 __IO uint32_t MSR; /*!< CAN master status register, Address offset: 0x04 */
523 __IO uint32_t TSR; /*!< CAN transmit status register, Address offset: 0x08 */
524 __IO uint32_t RF0R; /*!< CAN receive FIFO 0 register, Address offset: 0x0C */
525 __IO uint32_t RF1R; /*!< CAN receive FIFO 1 register, Address offset: 0x10 */
526 __IO uint32_t IER; /*!< CAN interrupt enable register, Address offset: 0x14 */
527 __IO uint32_t ESR; /*!< CAN error status register, Address offset: 0x18 */
528 __IO uint32_t BTR; /*!< CAN bit timing register, Address offset: 0x1C */
529 uint32_t RESERVED0[88]; /*!< Reserved, 0x020 - 0x17F */
530 CAN_TxMailBox_TypeDef sTxMailBox[3]; /*!< CAN Tx MailBox, Address offset: 0x180 - 0x1AC */
531 CAN_FIFOMailBox_TypeDef sFIFOMailBox[2]; /*!< CAN FIFO MailBox, Address offset: 0x1B0 - 0x1CC */
532 uint32_t RESERVED1[12]; /*!< Reserved, 0x1D0 - 0x1FF */
533 __IO uint32_t FMR; /*!< CAN filter master register, Address offset: 0x200 */
534 __IO uint32_t FM1R; /*!< CAN filter mode register, Address offset: 0x204 */
535 uint32_t RESERVED2; /*!< Reserved, 0x208 */
536 __IO uint32_t FS1R; /*!< CAN filter scale register, Address offset: 0x20C */
537 uint32_t RESERVED3; /*!< Reserved, 0x210 */
538 __IO uint32_t FFA1R; /*!< CAN filter FIFO assignment register, Address offset: 0x214 */
539 uint32_t RESERVED4; /*!< Reserved, 0x218 */
540 __IO uint32_t FA1R; /*!< CAN filter activation register, Address offset: 0x21C */
541 uint32_t RESERVED5[8]; /*!< Reserved, 0x220-0x23F */
542 CAN_FilterRegister_TypeDef sFilterRegister[28]; /*!< CAN Filter Register, Address offset: 0x240-0x31C */
543 } CAN_TypeDef;
544
545
546 /**
547 * @brief Analog Comparators
548 */
549
550 typedef struct
551 {
552 __IO uint32_t CSR; /*!< Comparator control Status register, Address offset: 0x00 */
553 } COMP_TypeDef;
554
555 /**
556 * @brief CRC calculation unit
557 */
558
559 typedef struct
560 {
561 __IO uint32_t DR; /*!< CRC Data register, Address offset: 0x00 */
562 __IO uint8_t IDR; /*!< CRC Independent data register, Address offset: 0x04 */
563 uint8_t RESERVED0; /*!< Reserved, 0x05 */
564 uint16_t RESERVED1; /*!< Reserved, 0x06 */
565 __IO uint32_t CR; /*!< CRC Control register, Address offset: 0x08 */
566 uint32_t RESERVED2; /*!< Reserved, 0x0C */
567 __IO uint32_t INIT; /*!< Initial CRC value register, Address offset: 0x10 */
568 __IO uint32_t POL; /*!< CRC polynomial register, Address offset: 0x14 */
569 } CRC_TypeDef;
570
571 /**
572 * @brief Digital to Analog Converter
573 */
574
575 typedef struct
576 {
577 __IO uint32_t CR; /*!< DAC control register, Address offset: 0x00 */
578 __IO uint32_t SWTRIGR; /*!< DAC software trigger register, Address offset: 0x04 */
579 __IO uint32_t DHR12R1; /*!< DAC channel1 12-bit right-aligned data holding register, Address offset: 0x08 */
580 __IO uint32_t DHR12L1; /*!< DAC channel1 12-bit left aligned data holding register, Address offset: 0x0C */
581 __IO uint32_t DHR8R1; /*!< DAC channel1 8-bit right aligned data holding register, Address offset: 0x10 */
582 __IO uint32_t DHR12R2; /*!< DAC channel2 12-bit right aligned data holding register, Address offset: 0x14 */
583 __IO uint32_t DHR12L2; /*!< DAC channel2 12-bit left aligned data holding register, Address offset: 0x18 */
584 __IO uint32_t DHR8R2; /*!< DAC channel2 8-bit right-aligned data holding register, Address offset: 0x1C */
585 __IO uint32_t DHR12RD; /*!< Dual DAC 12-bit right-aligned data holding register, Address offset: 0x20 */
586 __IO uint32_t DHR12LD; /*!< DUAL DAC 12-bit left aligned data holding register, Address offset: 0x24 */
587 __IO uint32_t DHR8RD; /*!< DUAL DAC 8-bit right aligned data holding register, Address offset: 0x28 */
588 __IO uint32_t DOR1; /*!< DAC channel1 data output register, Address offset: 0x2C */
589 __IO uint32_t DOR2; /*!< DAC channel2 data output register, Address offset: 0x30 */
590 __IO uint32_t SR; /*!< DAC status register, Address offset: 0x34 */
591 } DAC_TypeDef;
592
593 /**
594 * @brief Debug MCU
595 */
596
597 typedef struct
598 {
599 __IO uint32_t IDCODE; /*!< MCU device ID code, Address offset: 0x00 */
600 __IO uint32_t CR; /*!< Debug MCU configuration register, Address offset: 0x04 */
601 __IO uint32_t APB1FZ; /*!< Debug MCU APB1 freeze register, Address offset: 0x08 */
602 __IO uint32_t APB2FZ; /*!< Debug MCU APB2 freeze register, Address offset: 0x0C */
603 }DBGMCU_TypeDef;
604
605 /**
606 * @brief DMA Controller
607 */
608
609 typedef struct
610 {
611 __IO uint32_t CCR; /*!< DMA channel x configuration register */
612 __IO uint32_t CNDTR; /*!< DMA channel x number of data register */
613 __IO uint32_t CPAR; /*!< DMA channel x peripheral address register */
614 __IO uint32_t CMAR; /*!< DMA channel x memory address register */
615 } DMA_Channel_TypeDef;
616
617 typedef struct
618 {
619 __IO uint32_t ISR; /*!< DMA interrupt status register, Address offset: 0x00 */
620 __IO uint32_t IFCR; /*!< DMA interrupt clear flag register, Address offset: 0x04 */
621 } DMA_TypeDef;
622
623 /**
624 * @brief External Interrupt/Event Controller
625 */
626
627 typedef struct
628 {
629 __IO uint32_t IMR; /*!< EXTI Interrupt mask register, Address offset: 0x00 */
630 __IO uint32_t EMR; /*!< EXTI Event mask register, Address offset: 0x04 */
631 __IO uint32_t RTSR; /*!< EXTI Rising trigger selection register, Address offset: 0x08 */
632 __IO uint32_t FTSR; /*!< EXTI Falling trigger selection register, Address offset: 0x0C */
633 __IO uint32_t SWIER; /*!< EXTI Software interrupt event register, Address offset: 0x10 */
634 __IO uint32_t PR; /*!< EXTI Pending register, Address offset: 0x14 */
635 uint32_t RESERVED1; /*!< Reserved, 0x18 */
636 uint32_t RESERVED2; /*!< Reserved, 0x1C */
637 __IO uint32_t IMR2; /*!< EXTI Interrupt mask register, Address offset: 0x20 */
638 __IO uint32_t EMR2; /*!< EXTI Event mask register, Address offset: 0x24 */
639 __IO uint32_t RTSR2; /*!< EXTI Rising trigger selection register, Address offset: 0x28 */
640 __IO uint32_t FTSR2; /*!< EXTI Falling trigger selection register, Address offset: 0x2C */
641 __IO uint32_t SWIER2; /*!< EXTI Software interrupt event register, Address offset: 0x30 */
642 __IO uint32_t PR2; /*!< EXTI Pending register, Address offset: 0x34 */
643 }EXTI_TypeDef;
644
645 /**
646 * @brief FLASH Registers
647 */
648
649 typedef struct
650 {
651 __IO uint32_t ACR; /*!< FLASH access control register, Address offset: 0x00 */
652 __IO uint32_t KEYR; /*!< FLASH key register, Address offset: 0x04 */
653 __IO uint32_t OPTKEYR; /*!< FLASH option key register, Address offset: 0x08 */
654 __IO uint32_t SR; /*!< FLASH status register, Address offset: 0x0C */
655 __IO uint32_t CR; /*!< FLASH control register, Address offset: 0x10 */
656 __IO uint32_t AR; /*!< FLASH address register, Address offset: 0x14 */
657 uint32_t RESERVED; /*!< Reserved, 0x18 */
658 __IO uint32_t OBR; /*!< FLASH Option byte register, Address offset: 0x1C */
659 __IO uint32_t WRPR; /*!< FLASH Write register, Address offset: 0x20 */
660
661 } FLASH_TypeDef;
662
663 /**
664 * @brief Option Bytes Registers
665 */
666 typedef struct
667 {
668 __IO uint16_t RDP; /*!<FLASH option byte Read protection, Address offset: 0x00 */
669 __IO uint16_t USER; /*!<FLASH option byte user options, Address offset: 0x02 */
670 uint16_t RESERVED0; /*!< Reserved, 0x04 */
671 uint16_t RESERVED1; /*!< Reserved, 0x06 */
672 __IO uint16_t WRP0; /*!<FLASH option byte write protection 0, Address offset: 0x08 */
673 __IO uint16_t WRP1; /*!<FLASH option byte write protection 1, Address offset: 0x0C */
674 __IO uint16_t WRP2; /*!<FLASH option byte write protection 2, Address offset: 0x10 */
675 __IO uint16_t WRP3; /*!<FLASH option byte write protection 3, Address offset: 0x12 */
676 } OB_TypeDef;
677
678 /**
679 * @brief General Purpose I/O
680 */
681
682 typedef struct
683 {
684 __IO uint32_t MODER; /*!< GPIO port mode register, Address offset: 0x00 */
685 __IO uint16_t OTYPER; /*!< GPIO port output type register, Address offset: 0x04 */
686 uint16_t RESERVED0; /*!< Reserved, 0x06 */
687 __IO uint32_t OSPEEDR; /*!< GPIO port output speed register, Address offset: 0x08 */
688 __IO uint32_t PUPDR; /*!< GPIO port pull-up/pull-down register, Address offset: 0x0C */
689 __IO uint16_t IDR; /*!< GPIO port input data register, Address offset: 0x10 */
690 uint16_t RESERVED1; /*!< Reserved, 0x12 */
691 __IO uint16_t ODR; /*!< GPIO port output data register, Address offset: 0x14 */
692 uint16_t RESERVED2; /*!< Reserved, 0x16 */
693 __IO uint32_t BSRR; /*!< GPIO port bit set/reset registerBSRR, Address offset: 0x18 */
694 __IO uint32_t LCKR; /*!< GPIO port configuration lock register, Address offset: 0x1C */
695 __IO uint32_t AFR[2]; /*!< GPIO alternate function low register, Address offset: 0x20-0x24 */
696 __IO uint16_t BRR; /*!< GPIO bit reset register, Address offset: 0x28 */
697 uint16_t RESERVED3; /*!< Reserved, 0x2A */
698 }GPIO_TypeDef;
699
700 /**
701 * @brief High resolution Timer (HRTIM)
702 */
703 /* HRTIM master definition */
704 typedef struct
705 {
706 __IO uint32_t MCR; /*!< HRTIM Master Timer control register, Address offset: 0x00 */
707 __IO uint32_t MISR; /*!< HRTIM Master Timer interrupt status register, Address offset: 0x04 */
708 __IO uint32_t MICR; /*!< HRTIM Master Timer interupt clear register, Address offset: 0x08 */
709 __IO uint32_t MDIER; /*!< HRTIM Master Timer DMA/interrupt enable register Address offset: 0x0C */
710 __IO uint32_t MCNTR; /*!< HRTIM Master Timer counter register, Address offset: 0x10 */
711 __IO uint32_t MPER; /*!< HRTIM Master Timer period register, Address offset: 0x14 */
712 __IO uint32_t MREP; /*!< HRTIM Master Timer repetition register, Address offset: 0x18 */
713 __IO uint32_t MCMP1R; /*!< HRTIM Master Timer compare 1 register, Address offset: 0x1C */
714 uint32_t RESERVED0; /*!< Reserved, 0x20 */
715 __IO uint32_t MCMP2R; /*!< HRTIM Master Timer compare 2 register, Address offset: 0x24 */
716 __IO uint32_t MCMP3R; /*!< HRTIM Master Timer compare 3 register, Address offset: 0x28 */
717 __IO uint32_t MCMP4R; /*!< HRTIM Master Timer compare 4 register, Address offset: 0x2C */
718 }HRTIM_Master_TypeDef;
719
720 /* HRTIM slave definition */
721 typedef struct
722 {
723 __IO uint32_t TIMxCR; /*!< HRTIM Timerx control register, Address offset: 0x00 */
724 __IO uint32_t TIMxISR; /*!< HRTIM Timerx interrupt status register, Address offset: 0x04 */
725 __IO uint32_t TIMxICR; /*!< HRTIM Timerx interrupt clear register, Address offset: 0x08 */
726 __IO uint32_t TIMxDIER; /*!< HRTIM Timerx DMA/interrupt enable register, Address offset: 0x0C */
727 __IO uint32_t CNTxR; /*!< HRTIM Timerx counter register, Address offset: 0x10 */
728 __IO uint32_t PERxR; /*!< HRTIM Timerx period register, Address offset: 0x14 */
729 __IO uint32_t REPxR; /*!< HRTIM Timerx repetition register, Address offset: 0x18 */
730 __IO uint32_t CMP1xR; /*!< HRTIM Timerx compare 1 register, Address offset: 0x1C */
731 __IO uint32_t CMP1CxR; /*!< HRTIM Timerx compare 1 compound register, Address offset: 0x20 */
732 __IO uint32_t CMP2xR; /*!< HRTIM Timerx compare 2 register, Address offset: 0x24 */
733 __IO uint32_t CMP3xR; /*!< HRTIM Timerx compare 3 register, Address offset: 0x28 */
734 __IO uint32_t CMP4xR; /*!< HRTIM Timerx compare 4 register, Address offset: 0x2C */
735 __IO uint32_t CPT1xR; /*!< HRTIM Timerx capture 1 register, Address offset: 0x30 */
736 __IO uint32_t CPT2xR; /*!< HRTIM Timerx capture 2 register, Address offset: 0x34 */
737 __IO uint32_t DTxR; /*!< HRTIM Timerx dead time register, Address offset: 0x38 */
738 __IO uint32_t SETx1R; /*!< HRTIM Timerx output 1 set register, Address offset: 0x3C */
739 __IO uint32_t RSTx1R; /*!< HRTIM Timerx output 1 reset register, Address offset: 0x40 */
740 __IO uint32_t SETx2R; /*!< HRTIM Timerx output 2 set register, Address offset: 0x44 */
741 __IO uint32_t RSTx2R; /*!< HRTIM Timerx output 2 reset register, Address offset: 0x48 */
742 __IO uint32_t EEFxR1; /*!< HRTIM Timerx external event filtering 1 register, Address offset: 0x4C */
743 __IO uint32_t EEFxR2; /*!< HRTIM Timerx external event filtering 2 register, Address offset: 0x50 */
744 __IO uint32_t RSTxR; /*!< HRTIM Timerx Reset register, Address offset: 0x54 */
745 __IO uint32_t CHPxR; /*!< HRTIM Timerx Chopper register, Address offset: 0x58 */
746 __IO uint32_t CPT1xCR; /*!< HRTIM Timerx Capture 1 register, Address offset: 0x5C */
747 __IO uint32_t CPT2xCR; /*!< HRTIM Timerx Capture 2 register, Address offset: 0x60 */
748 __IO uint32_t OUTxR; /*!< HRTIM Timerx Output register, Address offset: 0x64 */
749 __IO uint32_t FLTxR; /*!< HRTIM Timerx Fault register, Address offset: 0x68 */
750 uint32_t RESERVED0[5];/*!< Reserved, */
751 }HRTIM_Timerx_TypeDef;
752
753 /* HRTIM common register definition */
754 typedef struct
755 {
756 __IO uint32_t CR1; /*!< HRTIM control register1, Address offset: 0x00 */
757 __IO uint32_t CR2; /*!< HRTIM control register2, Address offset: 0x04 */
758 __IO uint32_t ISR; /*!< HRTIM interrupt status register, Address offset: 0x08 */
759 __IO uint32_t ICR; /*!< HRTIM interrupt clear register, Address offset: 0x0C */
760 __IO uint32_t IER; /*!< HRTIM interrupt enable register, Address offset: 0x10 */
761 __IO uint32_t OENR; /*!< HRTIM Output enable register, Address offset: 0x14 */
762 __IO uint32_t DISR; /*!< HRTIM Output disable register, Address offset: 0x18 */
763 __IO uint32_t ODSR; /*!< HRTIM Output disable status register, Address offset: 0x1C */
764 __IO uint32_t BMCR; /*!< HRTIM Burst mode control register, Address offset: 0x20 */
765 __IO uint32_t BMTRGR; /*!< HRTIM Busrt mode trigger register, Address offset: 0x24 */
766 __IO uint32_t BMCMPR; /*!< HRTIM Burst mode compare register, Address offset: 0x28 */
767 __IO uint32_t BMPER; /*!< HRTIM Burst mode period register, Address offset: 0x2C */
768 __IO uint32_t EECR1; /*!< HRTIM Timer external event control register1, Address offset: 0x30 */
769 __IO uint32_t EECR2; /*!< HRTIM Timer external event control register2, Address offset: 0x34 */
770 __IO uint32_t EECR3; /*!< HRTIM Timer external event control register3, Address offset: 0x38 */
771 __IO uint32_t ADC1R; /*!< HRTIM ADC Trigger 1 register, Address offset: 0x3C */
772 __IO uint32_t ADC2R; /*!< HRTIM ADC Trigger 2 register, Address offset: 0x40 */
773 __IO uint32_t ADC3R; /*!< HRTIM ADC Trigger 3 register, Address offset: 0x44 */
774 __IO uint32_t ADC4R; /*!< HRTIM ADC Trigger 4 register, Address offset: 0x48 */
775 __IO uint32_t DLLCR; /*!< HRTIM DLL control register, Address offset: 0x4C */
776 __IO uint32_t FLTINxR1; /*!< HRTIM Fault input register1, Address offset: 0x50 */
777 __IO uint32_t FLTINxR2; /*!< HRTIM Fault input register2, Address offset: 0x54 */
778 __IO uint32_t BDMUPDR; /*!< HRTIM Burst DMA Master Timer update register, Address offset: 0x58 */
779 __IO uint32_t BDTAUPR; /*!< HRTIM Burst DMA Timerx update register, Address offset: 0x5C */
780 __IO uint32_t BDTBUPR; /*!< HRTIM Burst DMA Timerx update register, Address offset: 0x60 */
781 __IO uint32_t BDTCUPR; /*!< HRTIM Burst DMA Timerx update register, Address offset: 0x64 */
782 __IO uint32_t BDTDUPR; /*!< HRTIM Burst DMA Timerx update register, Address offset: 0x68 */
783 __IO uint32_t BDTEUPR; /*!< HRTIM Burst DMA Timerx update register, Address offset: 0x6C */
784 __IO uint32_t BDMADR; /*!< HRTIM Burst DMA Master Data register, Address offset: 0x70 */
785 }HRTIM_Common_TypeDef;
786
787 /* HRTIM register definition */
788 typedef struct {
789 HRTIM_Master_TypeDef HRTIM_MASTER;
790 uint32_t RESERVED0[20];
791 HRTIM_Timerx_TypeDef HRTIM_TIMERx[5];
792 uint32_t RESERVED1[32];
793 HRTIM_Common_TypeDef HRTIM_COMMON;
794 }HRTIM_TypeDef;
795
796 /**
797 * @brief Operational Amplifier (OPAMP)
798 */
799
800 typedef struct
801 {
802 __IO uint32_t CSR; /*!< OPAMP control and status register, Address offset: 0x00 */
803 } OPAMP_TypeDef;
804
805
806 /**
807 * @brief System configuration controller
808 */
809
810 typedef struct
811 {
812 __IO uint32_t CFGR1; /*!< SYSCFG configuration register 1, Address offset: 0x00 */
813 __IO uint32_t RCR; /*!< SYSCFG CCM SRAM protection register, Address offset: 0x04 */
814 __IO uint32_t EXTICR[4]; /*!< SYSCFG external interrupt configuration registers, Address offset: 0x14-0x08 */
815 __IO uint32_t CFGR2; /*!< SYSCFG configuration register 2, Address offset: 0x18 */
816 __IO uint32_t RESERVED0; /*!< Reserved, 0x1C */
817 __IO uint32_t RESERVED1; /*!< Reserved, 0x20 */
818 __IO uint32_t RESERVED2; /*!< Reserved, 0x24 */
819 __IO uint32_t RESERVED4; /*!< Reserved, 0x28 */
820 __IO uint32_t RESERVED5; /*!< Reserved, 0x2C */
821 __IO uint32_t RESERVED6; /*!< Reserved, 0x30 */
822 __IO uint32_t RESERVED7; /*!< Reserved, 0x34 */
823 __IO uint32_t RESERVED8; /*!< Reserved, 0x38 */
824 __IO uint32_t RESERVED9; /*!< Reserved, 0x3C */
825 __IO uint32_t RESERVED10; /*!< Reserved, 0x40 */
826 __IO uint32_t RESERVED11; /*!< Reserved, 0x44 */
827 __IO uint32_t RESERVED12; /*!< Reserved, 0x48 */
828 __IO uint32_t RESERVED13; /*!< Reserved, 0x4C */
829 __IO uint32_t CFGR3; /*!< SYSCFG configuration register 3, Address offset: 0x50 */
830 } SYSCFG_TypeDef;
831
832 /**
833 * @brief Inter-integrated Circuit Interface
834 */
835
836 typedef struct
837 {
838 __IO uint32_t CR1; /*!< I2C Control register 1, Address offset: 0x00 */
839 __IO uint32_t CR2; /*!< I2C Control register 2, Address offset: 0x04 */
840 __IO uint32_t OAR1; /*!< I2C Own address 1 register, Address offset: 0x08 */
841 __IO uint32_t OAR2; /*!< I2C Own address 2 register, Address offset: 0x0C */
842 __IO uint32_t TIMINGR; /*!< I2C Timing register, Address offset: 0x10 */
843 __IO uint32_t TIMEOUTR; /*!< I2C Timeout register, Address offset: 0x14 */
844 __IO uint32_t ISR; /*!< I2C Interrupt and status register, Address offset: 0x18 */
845 __IO uint32_t ICR; /*!< I2C Interrupt clear register, Address offset: 0x1C */
846 __IO uint32_t PECR; /*!< I2C PEC register, Address offset: 0x20 */
847 __IO uint32_t RXDR; /*!< I2C Receive data register, Address offset: 0x24 */
848 __IO uint32_t TXDR; /*!< I2C Transmit data register, Address offset: 0x28 */
849 }I2C_TypeDef;
850
851 /**
852 * @brief Independent WATCHDOG
853 */
854
855 typedef struct
856 {
857 __IO uint32_t KR; /*!< IWDG Key register, Address offset: 0x00 */
858 __IO uint32_t PR; /*!< IWDG Prescaler register, Address offset: 0x04 */
859 __IO uint32_t RLR; /*!< IWDG Reload register, Address offset: 0x08 */
860 __IO uint32_t SR; /*!< IWDG Status register, Address offset: 0x0C */
861 __IO uint32_t WINR; /*!< IWDG Window register, Address offset: 0x10 */
862 } IWDG_TypeDef;
863
864 /**
865 * @brief Power Control
866 */
867
868 typedef struct
869 {
870 __IO uint32_t CR; /*!< PWR power control register, Address offset: 0x00 */
871 __IO uint32_t CSR; /*!< PWR power control/status register, Address offset: 0x04 */
872 } PWR_TypeDef;
873
874 /**
875 * @brief Reset and Clock Control
876 */
877 typedef struct
878 {
879 __IO uint32_t CR; /*!< RCC clock control register, Address offset: 0x00 */
880 __IO uint32_t CFGR; /*!< RCC clock configuration register, Address offset: 0x04 */
881 __IO uint32_t CIR; /*!< RCC clock interrupt register, Address offset: 0x08 */
882 __IO uint32_t APB2RSTR; /*!< RCC APB2 peripheral reset register, Address offset: 0x0C */
883 __IO uint32_t APB1RSTR; /*!< RCC APB1 peripheral reset register, Address offset: 0x10 */
884 __IO uint32_t AHBENR; /*!< RCC AHB peripheral clock register, Address offset: 0x14 */
885 __IO uint32_t APB2ENR; /*!< RCC APB2 peripheral clock enable register, Address offset: 0x18 */
886 __IO uint32_t APB1ENR; /*!< RCC APB1 peripheral clock enable register, Address offset: 0x1C */
887 __IO uint32_t BDCR; /*!< RCC Backup domain control register, Address offset: 0x20 */
888 __IO uint32_t CSR; /*!< RCC clock control & status register, Address offset: 0x24 */
889 __IO uint32_t AHBRSTR; /*!< RCC AHB peripheral reset register, Address offset: 0x28 */
890 __IO uint32_t CFGR2; /*!< RCC clock configuration register 2, Address offset: 0x2C */
891 __IO uint32_t CFGR3; /*!< RCC clock configuration register 3, Address offset: 0x30 */
892 } RCC_TypeDef;
893
894 /**
895 * @brief Real-Time Clock
896 */
897
898 typedef struct
899 {
900 __IO uint32_t TR; /*!< RTC time register, Address offset: 0x00 */
901 __IO uint32_t DR; /*!< RTC date register, Address offset: 0x04 */
902 __IO uint32_t CR; /*!< RTC control register, Address offset: 0x08 */
903 __IO uint32_t ISR; /*!< RTC initialization and status register, Address offset: 0x0C */
904 __IO uint32_t PRER; /*!< RTC prescaler register, Address offset: 0x10 */
905 __IO uint32_t WUTR; /*!< RTC wakeup timer register, Address offset: 0x14 */
906 uint32_t RESERVED0; /*!< Reserved, 0x18 */
907 __IO uint32_t ALRMAR; /*!< RTC alarm A register, Address offset: 0x1C */
908 __IO uint32_t ALRMBR; /*!< RTC alarm B register, Address offset: 0x20 */
909 __IO uint32_t WPR; /*!< RTC write protection register, Address offset: 0x24 */
910 __IO uint32_t SSR; /*!< RTC sub second register, Address offset: 0x28 */
911 __IO uint32_t SHIFTR; /*!< RTC shift control register, Address offset: 0x2C */
912 __IO uint32_t TSTR; /*!< RTC time stamp time register, Address offset: 0x30 */
913 __IO uint32_t TSDR; /*!< RTC time stamp date register, Address offset: 0x34 */
914 __IO uint32_t TSSSR; /*!< RTC time-stamp sub second register, Address offset: 0x38 */
915 __IO uint32_t CALR; /*!< RTC calibration register, Address offset: 0x3C */
916 __IO uint32_t TAFCR; /*!< RTC tamper and alternate function configuration register, Address offset: 0x40 */
917 __IO uint32_t ALRMASSR; /*!< RTC alarm A sub second register, Address offset: 0x44 */
918 __IO uint32_t ALRMBSSR; /*!< RTC alarm B sub second register, Address offset: 0x48 */
919 uint32_t RESERVED7; /*!< Reserved, 0x4C */
920 __IO uint32_t BKP0R; /*!< RTC backup register 0, Address offset: 0x50 */
921 __IO uint32_t BKP1R; /*!< RTC backup register 1, Address offset: 0x54 */
922 __IO uint32_t BKP2R; /*!< RTC backup register 2, Address offset: 0x58 */
923 __IO uint32_t BKP3R; /*!< RTC backup register 3, Address offset: 0x5C */
924 __IO uint32_t BKP4R; /*!< RTC backup register 4, Address offset: 0x60 */
925 __IO uint32_t BKP5R; /*!< RTC backup register 5, Address offset: 0x64 */
926 __IO uint32_t BKP6R; /*!< RTC backup register 6, Address offset: 0x68 */
927 __IO uint32_t BKP7R; /*!< RTC backup register 7, Address offset: 0x6C */
928 __IO uint32_t BKP8R; /*!< RTC backup register 8, Address offset: 0x70 */
929 __IO uint32_t BKP9R; /*!< RTC backup register 9, Address offset: 0x74 */
930 __IO uint32_t BKP10R; /*!< RTC backup register 10, Address offset: 0x78 */
931 __IO uint32_t BKP11R; /*!< RTC backup register 11, Address offset: 0x7C */
932 __IO uint32_t BKP12R; /*!< RTC backup register 12, Address offset: 0x80 */
933 __IO uint32_t BKP13R; /*!< RTC backup register 13, Address offset: 0x84 */
934 __IO uint32_t BKP14R; /*!< RTC backup register 14, Address offset: 0x88 */
935 __IO uint32_t BKP15R; /*!< RTC backup register 15, Address offset: 0x8C */
936 } RTC_TypeDef;
937
938
939 /**
940 * @brief Serial Peripheral Interface
941 */
942
943 typedef struct
944 {
945 __IO uint16_t CR1; /*!< SPI Control register 1 (not used in I2S mode), Address offset: 0x00 */
946 uint16_t RESERVED0; /*!< Reserved, 0x02 */
947 __IO uint16_t CR2; /*!< SPI Control register 2, Address offset: 0x04 */
948 uint16_t RESERVED1; /*!< Reserved, 0x06 */
949 __IO uint16_t SR; /*!< SPI Status register, Address offset: 0x08 */
950 uint16_t RESERVED2; /*!< Reserved, 0x0A */
951 __IO uint16_t DR; /*!< SPI data register, Address offset: 0x0C */
952 uint16_t RESERVED3; /*!< Reserved, 0x0E */
953 __IO uint16_t CRCPR; /*!< SPI CRC polynomial register (not used in I2S mode), Address offset: 0x10 */
954 uint16_t RESERVED4; /*!< Reserved, 0x12 */
955 __IO uint16_t RXCRCR; /*!< SPI Rx CRC register (not used in I2S mode), Address offset: 0x14 */
956 uint16_t RESERVED5; /*!< Reserved, 0x16 */
957 __IO uint16_t TXCRCR; /*!< SPI Tx CRC register (not used in I2S mode), Address offset: 0x18 */
958 uint16_t RESERVED6; /*!< Reserved, 0x1A */
959 __IO uint16_t I2SCFGR; /*!< SPI_I2S configuration register, Address offset: 0x1C */
960 uint16_t RESERVED7; /*!< Reserved, 0x1E */
961 __IO uint16_t I2SPR; /*!< SPI_I2S prescaler register, Address offset: 0x20 */
962 uint16_t RESERVED8; /*!< Reserved, 0x22 */
963 } SPI_TypeDef;
964
965 /**
966 * @brief TIM
967 */
968 typedef struct
969 {
970 __IO uint16_t CR1; /*!< TIM control register 1, Address offset: 0x00 */
971 uint16_t RESERVED0; /*!< Reserved, 0x02 */
972 __IO uint32_t CR2; /*!< TIM control register 2, Address offset: 0x04 */
973 __IO uint32_t SMCR; /*!< TIM slave mode control register, Address offset: 0x08 */
974 __IO uint32_t DIER; /*!< TIM DMA/interrupt enable register, Address offset: 0x0C */
975 __IO uint32_t SR; /*!< TIM status register, Address offset: 0x10 */
976 __IO uint32_t EGR; /*!< TIM event generation register, Address offset: 0x14 */
977 __IO uint32_t CCMR1; /*!< TIM capture/compare mode register 1, Address offset: 0x18 */
978 __IO uint32_t CCMR2; /*!< TIM capture/compare mode register 2, Address offset: 0x1C */
979 __IO uint32_t CCER; /*!< TIM capture/compare enable register, Address offset: 0x20 */
980 __IO uint32_t CNT; /*!< TIM counter register, Address offset: 0x24 */
981 __IO uint16_t PSC; /*!< TIM prescaler, Address offset: 0x28 */
982 uint16_t RESERVED9; /*!< Reserved, 0x2A */
983 __IO uint32_t ARR; /*!< TIM auto-reload register, Address offset: 0x2C */
984 __IO uint16_t RCR; /*!< TIM repetition counter register, Address offset: 0x30 */
985 uint16_t RESERVED10; /*!< Reserved, 0x32 */
986 __IO uint32_t CCR1; /*!< TIM capture/compare register 1, Address offset: 0x34 */
987 __IO uint32_t CCR2; /*!< TIM capture/compare register 2, Address offset: 0x38 */
988 __IO uint32_t CCR3; /*!< TIM capture/compare register 3, Address offset: 0x3C */
989 __IO uint32_t CCR4; /*!< TIM capture/compare register 4, Address offset: 0x40 */
990 __IO uint32_t BDTR; /*!< TIM break and dead-time register, Address offset: 0x44 */
991 __IO uint16_t DCR; /*!< TIM DMA control register, Address offset: 0x48 */
992 uint16_t RESERVED12; /*!< Reserved, 0x4A */
993 __IO uint16_t DMAR; /*!< TIM DMA address for full transfer, Address offset: 0x4C */
994 uint16_t RESERVED13; /*!< Reserved, 0x4E */
995 __IO uint16_t OR; /*!< TIM option register, Address offset: 0x50 */
996 __IO uint32_t CCMR3; /*!< TIM capture/compare mode register 3, Address offset: 0x54 */
997 __IO uint32_t CCR5; /*!< TIM capture/compare register5, Address offset: 0x58 */
998 __IO uint32_t CCR6; /*!< TIM capture/compare register 4, Address offset: 0x5C */
999 } TIM_TypeDef;
1000
1001
1002 /**
1003 * @brief Touch Sensing Controller (TSC)
1004 */
1005 typedef struct
1006 {
1007 __IO uint32_t CR; /*!< TSC control register, Address offset: 0x00 */
1008 __IO uint32_t IER; /*!< TSC interrupt enable register, Address offset: 0x04 */
1009 __IO uint32_t ICR; /*!< TSC interrupt clear register, Address offset: 0x08 */
1010 __IO uint32_t ISR; /*!< TSC interrupt status register, Address offset: 0x0C */
1011 __IO uint32_t IOHCR; /*!< TSC I/O hysteresis control register, Address offset: 0x10 */
1012 uint32_t RESERVED1; /*!< Reserved, Address offset: 0x14 */
1013 __IO uint32_t IOASCR; /*!< TSC I/O analog switch control register, Address offset: 0x18 */
1014 uint32_t RESERVED2; /*!< Reserved, Address offset: 0x1C */
1015 __IO uint32_t IOSCR; /*!< TSC I/O sampling control register, Address offset: 0x20 */
1016 uint32_t RESERVED3; /*!< Reserved, Address offset: 0x24 */
1017 __IO uint32_t IOCCR; /*!< TSC I/O channel control register, Address offset: 0x28 */
1018 uint32_t RESERVED4; /*!< Reserved, Address offset: 0x2C */
1019 __IO uint32_t IOGCSR; /*!< TSC I/O group control status register, Address offset: 0x30 */
1020 __IO uint32_t IOGXCR[8]; /*!< TSC I/O group x counter register, Address offset: 0x34-50 */
1021 } TSC_TypeDef;
1022
1023 /**
1024 * @brief Universal Synchronous Asynchronous Receiver Transmitter
1025 */
1026
1027 typedef struct
1028 {
1029 __IO uint32_t CR1; /*!< USART Control register 1, Address offset: 0x00 */
1030 __IO uint32_t CR2; /*!< USART Control register 2, Address offset: 0x04 */
1031 __IO uint32_t CR3; /*!< USART Control register 3, Address offset: 0x08 */
1032 __IO uint16_t BRR; /*!< USART Baud rate register, Address offset: 0x0C */
1033 uint16_t RESERVED1; /*!< Reserved, 0x0E */
1034 __IO uint16_t GTPR; /*!< USART Guard time and prescaler register, Address offset: 0x10 */
1035 uint16_t RESERVED2; /*!< Reserved, 0x12 */
1036 __IO uint32_t RTOR; /*!< USART Receiver Time Out register, Address offset: 0x14 */
1037 __IO uint16_t RQR; /*!< USART Request register, Address offset: 0x18 */
1038 uint16_t RESERVED3; /*!< Reserved, 0x1A */
1039 __IO uint32_t ISR; /*!< USART Interrupt and status register, Address offset: 0x1C */
1040 __IO uint32_t ICR; /*!< USART Interrupt flag Clear register, Address offset: 0x20 */
1041 __IO uint16_t RDR; /*!< USART Receive Data register, Address offset: 0x24 */
1042 uint16_t RESERVED4; /*!< Reserved, 0x26 */
1043 __IO uint16_t TDR; /*!< USART Transmit Data register, Address offset: 0x28 */
1044 uint16_t RESERVED5; /*!< Reserved, 0x2A */
1045 } USART_TypeDef;
1046
1047 /**
1048 * @brief Window WATCHDOG
1049 */
1050 typedef struct
1051 {
1052 __IO uint32_t CR; /*!< WWDG Control register, Address offset: 0x00 */
1053 __IO uint32_t CFR; /*!< WWDG Configuration register, Address offset: 0x04 */
1054 __IO uint32_t SR; /*!< WWDG Status register, Address offset: 0x08 */
1055 } WWDG_TypeDef;
1056
1057
1058 /** @addtogroup Peripheral_memory_map
1059 * @{
1060 */
1061
1062 #define FLASH_BASE ((uint32_t)0x08000000) /*!< FLASH base address in the alias region */
1063 #define SRAM_BASE ((uint32_t)0x20000000) /*!< SRAM base address in the alias region */
1064 #define PERIPH_BASE ((uint32_t)0x40000000) /*!< Peripheral base address in the alias region */
1065
1066 #define SRAM_BB_BASE ((uint32_t)0x22000000) /*!< SRAM base address in the bit-band region */
1067 #define PERIPH_BB_BASE ((uint32_t)0x42000000) /*!< Peripheral base address in the bit-band region */
1068
1069
1070 /*!< Peripheral memory map */
1071 #define APB1PERIPH_BASE PERIPH_BASE
1072 #define APB2PERIPH_BASE (PERIPH_BASE + 0x00010000)
1073 #define AHB1PERIPH_BASE (PERIPH_BASE + 0x00020000)
1074 #define AHB2PERIPH_BASE (PERIPH_BASE + 0x08000000)
1075 #define AHB3PERIPH_BASE (PERIPH_BASE + 0x10000000)
1076
1077 /*!< APB1 peripherals */
1078 #define TIM2_BASE (APB1PERIPH_BASE + 0x00000000)
1079 #define TIM3_BASE (APB1PERIPH_BASE + 0x00000400)
1080 #define TIM4_BASE (APB1PERIPH_BASE + 0x00000800)
1081 #define TIM6_BASE (APB1PERIPH_BASE + 0x00001000)
1082 #define TIM7_BASE (APB1PERIPH_BASE + 0x00001400)
1083 #define RTC_BASE (APB1PERIPH_BASE + 0x00002800)
1084 #define WWDG_BASE (APB1PERIPH_BASE + 0x00002C00)
1085 #define IWDG_BASE (APB1PERIPH_BASE + 0x00003000)
1086 #define I2S2ext_BASE (APB1PERIPH_BASE + 0x00003400)
1087 #define SPI2_BASE (APB1PERIPH_BASE + 0x00003800)
1088 #define SPI3_BASE (APB1PERIPH_BASE + 0x00003C00)
1089 #define I2S3ext_BASE (APB1PERIPH_BASE + 0x00004000)
1090 #define USART2_BASE (APB1PERIPH_BASE + 0x00004400)
1091 #define USART3_BASE (APB1PERIPH_BASE + 0x00004800)
1092 #define UART4_BASE (APB1PERIPH_BASE + 0x00004C00)
1093 #define UART5_BASE (APB1PERIPH_BASE + 0x00005000)
1094 #define I2C1_BASE (APB1PERIPH_BASE + 0x00005400)
1095 #define I2C2_BASE (APB1PERIPH_BASE + 0x00005800)
1096 #define CAN1_BASE (APB1PERIPH_BASE + 0x00006400)
1097 #define PWR_BASE (APB1PERIPH_BASE + 0x00007000)
1098 #define DAC1_BASE (APB1PERIPH_BASE + 0x00007400)
1099 #define I2C3_BASE (APB1PERIPH_BASE + 0x00007800)
1100 #define DAC2_BASE (APB1PERIPH_BASE + 0x00009800)
1101 #define DAC_BASE DAC1_BASE
1102
1103 /*!< APB2 peripherals */
1104 #define SYSCFG_BASE (APB2PERIPH_BASE + 0x00000000)
1105 #define COMP_BASE (APB2PERIPH_BASE + 0x0000001C)
1106 #define COMP1_BASE (APB2PERIPH_BASE + 0x0000001C)
1107 #define COMP2_BASE (APB2PERIPH_BASE + 0x00000020)
1108 #define COMP3_BASE (APB2PERIPH_BASE + 0x00000024)
1109 #define COMP4_BASE (APB2PERIPH_BASE + 0x00000028)
1110 #define COMP5_BASE (APB2PERIPH_BASE + 0x0000002C)
1111 #define COMP6_BASE (APB2PERIPH_BASE + 0x00000030)
1112 #define COMP7_BASE (APB2PERIPH_BASE + 0x00000034)
1113 #define OPAMP_BASE (APB2PERIPH_BASE + 0x00000038)
1114 #define OPAMP1_BASE (APB2PERIPH_BASE + 0x00000038)
1115 #define OPAMP2_BASE (APB2PERIPH_BASE + 0x0000003C)
1116 #define OPAMP3_BASE (APB2PERIPH_BASE + 0x00000040)
1117 #define OPAMP4_BASE (APB2PERIPH_BASE + 0x00000044)
1118 #define EXTI_BASE (APB2PERIPH_BASE + 0x00000400)
1119 #define TIM1_BASE (APB2PERIPH_BASE + 0x00002C00)
1120 #define SPI1_BASE (APB2PERIPH_BASE + 0x00003000)
1121 #define TIM8_BASE (APB2PERIPH_BASE + 0x00003400)
1122 #define USART1_BASE (APB2PERIPH_BASE + 0x00003800)
1123 #define TIM15_BASE (APB2PERIPH_BASE + 0x00004000)
1124 #define TIM16_BASE (APB2PERIPH_BASE + 0x00004400)
1125 #define TIM17_BASE (APB2PERIPH_BASE + 0x00004800)
1126 #define HRTIM1_BASE (APB2PERIPH_BASE + 0x00007400)
1127 #define HRTIM1_TIMA_BASE (HRTIM1_BASE + 0x00000080)
1128 #define HRTIM1_TIMB_BASE (HRTIM1_BASE + 0x00000100)
1129 #define HRTIM1_TIMC_BASE (HRTIM1_BASE + 0x00000180)
1130 #define HRTIM1_TIMD_BASE (HRTIM1_BASE + 0x00000200)
1131 #define HRTIM1_TIME_BASE (HRTIM1_BASE + 0x00000280)
1132 #define HRTIM1_COMMON_BASE (HRTIM1_BASE + 0x00000380)
1133
1134 /*!< AHB1 peripherals */
1135 #define DMA1_BASE (AHB1PERIPH_BASE + 0x00000000)
1136 #define DMA1_Channel1_BASE (AHB1PERIPH_BASE + 0x00000008)
1137 #define DMA1_Channel2_BASE (AHB1PERIPH_BASE + 0x0000001C)
1138 #define DMA1_Channel3_BASE (AHB1PERIPH_BASE + 0x00000030)
1139 #define DMA1_Channel4_BASE (AHB1PERIPH_BASE + 0x00000044)
1140 #define DMA1_Channel5_BASE (AHB1PERIPH_BASE + 0x00000058)
1141 #define DMA1_Channel6_BASE (AHB1PERIPH_BASE + 0x0000006C)
1142 #define DMA1_Channel7_BASE (AHB1PERIPH_BASE + 0x00000080)
1143 #define DMA2_BASE (AHB1PERIPH_BASE + 0x00000400)
1144 #define DMA2_Channel1_BASE (AHB1PERIPH_BASE + 0x00000408)
1145 #define DMA2_Channel2_BASE (AHB1PERIPH_BASE + 0x0000041C)
1146 #define DMA2_Channel3_BASE (AHB1PERIPH_BASE + 0x00000430)
1147 #define DMA2_Channel4_BASE (AHB1PERIPH_BASE + 0x00000444)
1148 #define DMA2_Channel5_BASE (AHB1PERIPH_BASE + 0x00000458)
1149 #define RCC_BASE (AHB1PERIPH_BASE + 0x00001000)
1150 #define FLASH_R_BASE (AHB1PERIPH_BASE + 0x00002000) /*!< Flash registers base address */
1151 #define OB_BASE ((uint32_t)0x1FFFF800) /*!< Flash Option Bytes base address */
1152 #define CRC_BASE (AHB1PERIPH_BASE + 0x00003000)
1153 #define TSC_BASE (AHB1PERIPH_BASE + 0x00004000)
1154
1155 /*!< AHB2 peripherals */
1156 #define GPIOA_BASE (AHB2PERIPH_BASE + 0x0000)
1157 #define GPIOB_BASE (AHB2PERIPH_BASE + 0x0400)
1158 #define GPIOC_BASE (AHB2PERIPH_BASE + 0x0800)
1159 #define GPIOD_BASE (AHB2PERIPH_BASE + 0x0C00)
1160 #define GPIOE_BASE (AHB2PERIPH_BASE + 0x1000)
1161 #define GPIOF_BASE (AHB2PERIPH_BASE + 0x1400)
1162
1163 /*!< AHB3 peripherals */
1164 #define ADC1_BASE (AHB3PERIPH_BASE + 0x0000)
1165 #define ADC2_BASE (AHB3PERIPH_BASE + 0x0100)
1166 #define ADC1_2_BASE (AHB3PERIPH_BASE + 0x0300)
1167 #define ADC3_BASE (AHB3PERIPH_BASE + 0x0400)
1168 #define ADC4_BASE (AHB3PERIPH_BASE + 0x0500)
1169 #define ADC3_4_BASE (AHB3PERIPH_BASE + 0x0700)
1170
1171 #define DBGMCU_BASE ((uint32_t)0xE0042000) /*!< Debug MCU registers base address */
1172 /**
1173 * @}
1174 */
1175
1176 /** @addtogroup Peripheral_declaration
1177 * @{
1178 */
1179 #define TIM2 ((TIM_TypeDef *) TIM2_BASE)
1180 #define TIM3 ((TIM_TypeDef *) TIM3_BASE)
1181 #define TIM4 ((TIM_TypeDef *) TIM4_BASE)
1182 #define TIM6 ((TIM_TypeDef *) TIM6_BASE)
1183 #define TIM7 ((TIM_TypeDef *) TIM7_BASE)
1184 #define RTC ((RTC_TypeDef *) RTC_BASE)
1185 #define WWDG ((WWDG_TypeDef *) WWDG_BASE)
1186 #define IWDG ((IWDG_TypeDef *) IWDG_BASE)
1187 #define I2S2ext ((SPI_TypeDef *) I2S2ext_BASE)
1188 #define SPI2 ((SPI_TypeDef *) SPI2_BASE)
1189 #define SPI3 ((SPI_TypeDef *) SPI3_BASE)
1190 #define I2S3ext ((SPI_TypeDef *) I2S3ext_BASE)
1191 #define USART2 ((USART_TypeDef *) USART2_BASE)
1192 #define USART3 ((USART_TypeDef *) USART3_BASE)
1193 #define UART4 ((USART_TypeDef *) UART4_BASE)
1194 #define UART5 ((USART_TypeDef *) UART5_BASE)
1195 #define I2C1 ((I2C_TypeDef *) I2C1_BASE)
1196 #define I2C2 ((I2C_TypeDef *) I2C2_BASE)
1197 #define I2C3 ((I2C_TypeDef *) I2C3_BASE)
1198 #define CAN1 ((CAN_TypeDef *) CAN1_BASE)
1199 #define PWR ((PWR_TypeDef *) PWR_BASE)
1200 #define DAC1 ((DAC_TypeDef *) DAC1_BASE)
1201 #define DAC2 ((DAC_TypeDef *) DAC2_BASE)
1202 #define DAC DAC1
1203 #define SYSCFG ((SYSCFG_TypeDef *) SYSCFG_BASE)
1204 #define COMP ((COMP_TypeDef *) COMP_BASE)
1205 #define COMP1 ((COMP_TypeDef *) COMP1_BASE)
1206 #define COMP2 ((COMP_TypeDef *) COMP2_BASE)
1207 #define COMP3 ((COMP_TypeDef *) COMP3_BASE)
1208 #define COMP4 ((COMP_TypeDef *) COMP4_BASE)
1209 #define COMP5 ((COMP_TypeDef *) COMP5_BASE)
1210 #define COMP6 ((COMP_TypeDef *) COMP6_BASE)
1211 #define COMP7 ((COMP_TypeDef *) COMP7_BASE)
1212 #define OPAMP ((OPAMP_TypeDef *) OPAMP_BASE)
1213 #define OPAMP1 ((OPAMP_TypeDef *) OPAMP1_BASE)
1214 #define OPAMP2 ((OPAMP_TypeDef *) OPAMP2_BASE)
1215 #define OPAMP3 ((OPAMP_TypeDef *) OPAMP3_BASE)
1216 #define OPAMP4 ((OPAMP_TypeDef *) OPAMP4_BASE)
1217 #define EXTI ((EXTI_TypeDef *) EXTI_BASE)
1218 #define TIM1 ((TIM_TypeDef *) TIM1_BASE)
1219 #define SPI1 ((SPI_TypeDef *) SPI1_BASE)
1220 #define TIM8 ((TIM_TypeDef *) TIM8_BASE)
1221 #define USART1 ((USART_TypeDef *) USART1_BASE)
1222 #define TIM15 ((TIM_TypeDef *) TIM15_BASE)
1223 #define TIM16 ((TIM_TypeDef *) TIM16_BASE)
1224 #define TIM17 ((TIM_TypeDef *) TIM17_BASE)
1225 #define HRTIM1 ((HRTIM_TypeDef *) HRTIM1_BASE)
1226 #define HRTIM1_TIMA ((HRTIM_TIM_TypeDef *) HRTIM1_TIMA_BASE)
1227 #define HRTIM1_TIMB ((HRTIM_TIM_TypeDef *) HRTIM1_TIMB_BASE)
1228 #define HRTIM1_TIMC ((HRTIM_TIM_TypeDef *) HRTIM1_TIMC_BASE)
1229 #define HRTIM1_TIMD ((HRTIM_TIM_TypeDef *) HRTIM1_TIMD_BASE)
1230 #define HRTIM1_TIME ((HRTIM_TIM_TypeDef *) HRTIM1_TIME_BASE)
1231 #define HRTIM1_COMMON ((HRTIM_Common_TypeDef *) HRTIM1_COMMON_BASE)
1232 #define DBGMCU ((DBGMCU_TypeDef *) DBGMCU_BASE)
1233 #define DMA1 ((DMA_TypeDef *) DMA1_BASE)
1234 #define DMA1_Channel1 ((DMA_Channel_TypeDef *) DMA1_Channel1_BASE)
1235 #define DMA1_Channel2 ((DMA_Channel_TypeDef *) DMA1_Channel2_BASE)
1236 #define DMA1_Channel3 ((DMA_Channel_TypeDef *) DMA1_Channel3_BASE)
1237 #define DMA1_Channel4 ((DMA_Channel_TypeDef *) DMA1_Channel4_BASE)
1238 #define DMA1_Channel5 ((DMA_Channel_TypeDef *) DMA1_Channel5_BASE)
1239 #define DMA1_Channel6 ((DMA_Channel_TypeDef *) DMA1_Channel6_BASE)
1240 #define DMA1_Channel7 ((DMA_Channel_TypeDef *) DMA1_Channel7_BASE)
1241 #define DMA2 ((DMA_TypeDef *) DMA2_BASE)
1242 #define DMA2_Channel1 ((DMA_Channel_TypeDef *) DMA2_Channel1_BASE)
1243 #define DMA2_Channel2 ((DMA_Channel_TypeDef *) DMA2_Channel2_BASE)
1244 #define DMA2_Channel3 ((DMA_Channel_TypeDef *) DMA2_Channel3_BASE)
1245 #define DMA2_Channel4 ((DMA_Channel_TypeDef *) DMA2_Channel4_BASE)
1246 #define DMA2_Channel5 ((DMA_Channel_TypeDef *) DMA2_Channel5_BASE)
1247 #define RCC ((RCC_TypeDef *) RCC_BASE)
1248 #define FLASH ((FLASH_TypeDef *) FLASH_R_BASE)
1249 #define OB ((OB_TypeDef *) OB_BASE)
1250 #define CRC ((CRC_TypeDef *) CRC_BASE)
1251 #define TSC ((TSC_TypeDef *) TSC_BASE)
1252 #define GPIOA ((GPIO_TypeDef *) GPIOA_BASE)
1253 #define GPIOB ((GPIO_TypeDef *) GPIOB_BASE)
1254 #define GPIOC ((GPIO_TypeDef *) GPIOC_BASE)
1255 #define GPIOD ((GPIO_TypeDef *) GPIOD_BASE)
1256 #define GPIOE ((GPIO_TypeDef *) GPIOE_BASE)
1257 #define GPIOF ((GPIO_TypeDef *) GPIOF_BASE)
1258 #define ADC1 ((ADC_TypeDef *) ADC1_BASE)
1259 #define ADC2 ((ADC_TypeDef *) ADC2_BASE)
1260 #define ADC3 ((ADC_TypeDef *) ADC3_BASE)
1261 #define ADC4 ((ADC_TypeDef *) ADC4_BASE)
1262 #define ADC1_2 ((ADC_Common_TypeDef *) ADC1_2_BASE)
1263 #define ADC3_4 ((ADC_Common_TypeDef *) ADC3_4_BASE)
1264 /**
1265 * @}
1266 */
1267
1268 /** @addtogroup Exported_constants
1269 * @{
1270 */
1271
1272 /** @addtogroup Peripheral_Registers_Bits_Definition
1273 * @{
1274 */
1275
1276 /******************************************************************************/
1277 /* Peripheral Registers_Bits_Definition */
1278 /******************************************************************************/
1279 /******************************************************************************/
1280 /* */
1281 /* High Resolution Timer (HRTIM) */
1282 /* */
1283 /******************************************************************************/
1284 /******************** Master Timer control register ***************************/
1285 #define HRTIM_MCR_CK_PSC ((uint32_t)0x00000007) /*!< Prescaler mask */
1286 #define HRTIM_MCR_CK_PSC_0 ((uint32_t)0x00000001) /*!< Prescaler bit 0 */
1287 #define HRTIM_MCR_CK_PSC_1 ((uint32_t)0x00000002) /*!< Prescaler bit 1 */
1288 #define HRTIM_MCR_CK_PSC_2 ((uint32_t)0x00000004) /*!< Prescaler bit 2 */
1289
1290 #define HRTIM_MCR_CONT ((uint32_t)0x00000008) /*!< Continuous mode */
1291 #define HRTIM_MCR_RETRIG ((uint32_t)0x00000010) /*!< Rettrigreable mode */
1292 #define HRTIM_MCR_HALF ((uint32_t)0x00000020) /*!< Half mode */
1293
1294 #define HRTIM_MCR_SYNC_IN ((uint32_t)0x00000300) /*!< Synchronization input master */
1295 #define HRTIM_MCR_SYNC_IN_0 ((uint32_t)0x00000100) /*!< Synchronization input bit 0 */
1296 #define HRTIM_MCR_SYNC_IN_1 ((uint32_t)0x00000200) /*!< Synchronization input bit 1 */
1297 #define HRTIM_MCR_SYNCRSTM ((uint32_t)0x00000400) /*!< Synchronization reset master */
1298 #define HRTIM_MCR_SYNCSTRTM ((uint32_t)0x00000800) /*!< Synchronization start master */
1299 #define HRTIM_MCR_SYNC_OUT ((uint32_t)0x00003000) /*!< Synchronization output master */
1300 #define HRTIM_MCR_SYNC_OUT_0 ((uint32_t)0x00001000) /*!< Synchronization output bit 0 */
1301 #define HRTIM_MCR_SYNC_OUT_1 ((uint32_t)0x00002000) /*!< Synchronization output bit 1 */
1302 #define HRTIM_MCR_SYNC_SRC ((uint32_t)0x0000C000) /*!< Synchronization source */
1303 #define HRTIM_MCR_SYNC_SRC_0 ((uint32_t)0x00004000) /*!< Synchronization source bit 0 */
1304 #define HRTIM_MCR_SYNC_SRC_1 ((uint32_t)0x00008000) /*!< Synchronization source bit 1 */
1305
1306 #define HRTIM_MCR_MCEN ((uint32_t)0x00010000) /*!< Master counter enable */
1307 #define HRTIM_MCR_TACEN ((uint32_t)0x00020000) /*!< Timer A counter enable */
1308 #define HRTIM_MCR_TBCEN ((uint32_t)0x00040000) /*!< Timer B counter enable */
1309 #define HRTIM_MCR_TCCEN ((uint32_t)0x00080000) /*!< Timer C counter enable */
1310 #define HRTIM_MCR_TDCEN ((uint32_t)0x00100000) /*!< Timer D counter enable */
1311 #define HRTIM_MCR_TECEN ((uint32_t)0x00200000) /*!< Timer E counter enable */
1312
1313 #define HRTIM_MCR_DACSYNC ((uint32_t)0x06000000) /*!< DAC synchronization mask */
1314 #define HRTIM_MCR_DACSYNC_0 ((uint32_t)0x02000000) /*!< DAC synchronization bit 0 */
1315 #define HRTIM_MCR_DACSYNC_1 ((uint32_t)0x04000000) /*!< DAC synchronization bit 1 */
1316
1317 #define HRTIM_MCR_PREEN ((uint32_t)0x08000000) /*!< Master preload enable */
1318 #define HRTIM_MCR_MREPU ((uint32_t)0x20000000) /*!< Master repetition update */
1319
1320 #define HRTIM_MCR_BRSTDMA ((uint32_t)0xC0000000) /*!< Burst DMA update */
1321 #define HRTIM_MCR_BRSTDMA_0 ((uint32_t)0x40000000) /*!< Burst DMA update bit 0*/
1322 #define HRTIM_MCR_BRSTDMA_1 ((uint32_t)0x80000000) /*!< Burst DMA update bit 1 */
1323
1324 /******************** Master Timer Interrupt status register ******************/
1325 #define HRTIM_MISR_MCMP1 ((uint32_t)0x00000001) /*!< Master compare 1 interrupt flag */
1326 #define HRTIM_MISR_MCMP2 ((uint32_t)0x00000002) /*!< Master compare 2 interrupt flag */
1327 #define HRTIM_MISR_MCMP3 ((uint32_t)0x00000004) /*!< Master compare 3 interrupt flag */
1328 #define HRTIM_MISR_MCMP4 ((uint32_t)0x00000008) /*!< Master compare 4 interrupt flag */
1329 #define HRTIM_MISR_MREP ((uint32_t)0x00000010) /*!< Master Repetition interrupt flag */
1330 #define HRTIM_MISR_SYNC ((uint32_t)0x00000020) /*!< Synchronization input interrupt flag */
1331 #define HRTIM_MISR_MUPD ((uint32_t)0x00000040) /*!< Master update interrupt flag */
1332
1333 /******************** Master Timer Interrupt clear register *******************/
1334 #define HRTIM_MICR_MCMP1 ((uint32_t)0x00000001) /*!< Master compare 1 interrupt flag clear */
1335 #define HRTIM_MICR_MCMP2 ((uint32_t)0x00000002) /*!< Master compare 2 interrupt flag clear */
1336 #define HRTIM_MICR_MCMP3 ((uint32_t)0x00000004) /*!< Master compare 3 interrupt flag clear */
1337 #define HRTIM_MICR_MCMP4 ((uint32_t)0x00000008) /*!< Master compare 4 interrupt flag clear */
1338 #define HRTIM_MICR_MREP ((uint32_t)0x00000010) /*!< Master Repetition interrupt flag clear */
1339 #define HRTIM_MICR_SYNC ((uint32_t)0x00000020) /*!< Synchronization input interrupt flag clear */
1340 #define HRTIM_MICR_MUPD ((uint32_t)0x00000040) /*!< Master update interrupt flag clear */
1341
1342 /******************** Master Timer DMA/Interrupt enable register **************/
1343 #define HRTIM_MDIER_MCMP1IE ((uint32_t)0x00000001) /*!< Master compare 1 interrupt enable */
1344 #define HRTIM_MDIER_MCMP2IE ((uint32_t)0x00000002) /*!< Master compare 2 interrupt enable */
1345 #define HRTIM_MDIER_MCMP3IE ((uint32_t)0x00000004) /*!< Master compare 3 interrupt enable */
1346 #define HRTIM_MDIER_MCMP4IE ((uint32_t)0x00000008) /*!< Master compare 4 interrupt enable */
1347 #define HRTIM_MDIER_MREPIE ((uint32_t)0x00000010) /*!< Master Repetition interrupt enable */
1348 #define HRTIM_MDIER_SYNCIE ((uint32_t)0x00000020) /*!< Synchronization input interrupt enable */
1349 #define HRTIM_MDIER_MUPDIE ((uint32_t)0x00000040) /*!< Master update interrupt enable */
1350
1351 #define HRTIM_MDIER_MCMP1DE ((uint32_t)0x00010000) /*!< Master compare 1 DMA enable */
1352 #define HRTIM_MDIER_MCMP2DE ((uint32_t)0x00020000) /*!< Master compare 2 DMA enable */
1353 #define HRTIM_MDIER_MCMP3DE ((uint32_t)0x00040000) /*!< Master compare 3 DMA enable */
1354 #define HRTIM_MDIER_MCMP4DE ((uint32_t)0x00080000) /*!< Master compare 4 DMA enable */
1355 #define HRTIM_MDIER_MREPDE ((uint32_t)0x00100000) /*!< Master Repetition DMA enable */
1356 #define HRTIM_MDIER_SYNCDE ((uint32_t)0x00200000) /*!< Synchronization input DMA enable */
1357 #define HRTIM_MDIER_MUPDDE ((uint32_t)0x00400000) /*!< Master update DMA enable */
1358
1359 /******************* Bit definition for HRTIM_MCNTR register ****************/
1360 #define HRTIM_MCNTR_MCNTR ((uint32_t)0xFFFFFFFF) /*!<Counter Value */
1361
1362 /******************* Bit definition for HRTIM_MPER register *****************/
1363 #define HRTIM_MPER_MPER ((uint32_t)0xFFFFFFFF) /*!< Period Value */
1364
1365 /******************* Bit definition for HRTIM_MREP register *****************/
1366 #define HRTIM_MREP_MREP ((uint32_t)0xFFFFFFFF) /*!<Repetition Value */
1367
1368 /******************* Bit definition for HRTIM_MCMP1R register *****************/
1369 #define HRTIM_MCMP1R_MCMP1R ((uint32_t)0xFFFFFFFF) /*!<Compare Value */
1370
1371 /******************* Bit definition for HRTIM_MCMP2R register *****************/
1372 #define HRTIM_MCMP1R_MCMP2R ((uint32_t)0xFFFFFFFF) /*!<Compare Value */
1373
1374 /******************* Bit definition for HRTIM_MCMP3R register *****************/
1375 #define HRTIM_MCMP1R_MCMP3R ((uint32_t)0xFFFFFFFF) /*!<Compare Value */
1376
1377 /******************* Bit definition for HRTIM_MCMP4R register *****************/
1378 #define HRTIM_MCMP1R_MCMP4R ((uint32_t)0xFFFFFFFF) /*!<Compare Value */
1379
1380 /******************** Slave control register **********************************/
1381 #define HRTIM_TIMCR_CK_PSC ((uint32_t)0x00000007) /*!< Slave prescaler mask*/
1382 #define HRTIM_TIMCR_CK_PSC_0 ((uint32_t)0x00000001) /*!< prescaler bit 0 */
1383 #define HRTIM_TIMCR_CK_PSC_1 ((uint32_t)0x00000002) /*!< prescaler bit 1 */
1384 #define HRTIM_TIMCR_CK_PSC_2 ((uint32_t)0x00000004) /*!< prescaler bit 2 */
1385
1386 #define HRTIM_TIMCR_CONT ((uint32_t)0x00000008) /*!< Slave continuous mode */
1387 #define HRTIM_TIMCR_RETRIG ((uint32_t)0x00000010) /*!< Slave Retrigreable mode */
1388 #define HRTIM_TIMCR_HALF ((uint32_t)0x00000020) /*!< Slave Half mode */
1389 #define HRTIM_TIMCR_PSHPLL ((uint32_t)0x00000040) /*!< Slave push-pull mode */
1390
1391 #define HRTIM_TIMCR_SYNCRST ((uint32_t)0x00000400) /*!< Slave synchronization resets */
1392 #define HRTIM_TIMCR_SYNCSTRT ((uint32_t)0x00000800) /*!< Slave synchronization starts */
1393
1394 #define HRTIM_TIMCR_DELCMP2 ((uint32_t)0x00003000) /*!< Slave delayed comparator 2 mode mask */
1395 #define HRTIM_TIMCR_DELCMP2_0 ((uint32_t)0x00001000) /*!< Slave delayed comparator 2 bit 0 */
1396 #define HRTIM_TIMCR_DELCMP2_1 ((uint32_t)0x00002000) /*!< Slave delayed comparator 2 bit 1 */
1397 #define HRTIM_TIMCR_DELCMP4 ((uint32_t)0x0000C000) /*!< Slave delayed comparator 4 mode mask */
1398 #define HRTIM_TIMCR_DELCMP4_0 ((uint32_t)0x00004000) /*!< Slave delayed comparator 4 bit 0 */
1399 #define HRTIM_TIMCR_DELCMP4_1 ((uint32_t)0x00008000) /*!< Slave delayed comparator 4 bit 1 */
1400
1401 #define HRTIM_TIMCR_TREPU ((uint32_t)0x00020000) /*!< Slave repetition update */
1402 #define HRTIM_TIMCR_TRSTU ((uint32_t)0x00040000) /*!< Slave reset update */
1403 #define HRTIM_TIMCR_TAU ((uint32_t)0x00080000) /*!< Slave Timer A update reserved for TIM A */
1404 #define HRTIM_TIMCR_TBU ((uint32_t)0x00100000) /*!< Slave Timer B update reserved for TIM B */
1405 #define HRTIM_TIMCR_TCU ((uint32_t)0x00200000) /*!< Slave Timer C update reserved for TIM C */
1406 #define HRTIM_TIMCR_TDU ((uint32_t)0x00400000) /*!< Slave Timer D update reserved for TIM D */
1407 #define HRTIM_TIMCR_TEU ((uint32_t)0x00800000) /*!< Slave Timer E update reserved for TIM E */
1408 #define HRTIM_TIMCR_MSTU ((uint32_t)0x01000000) /*!< Master Update */
1409
1410 #define HRTIM_TIMCR_DACSYNC ((uint32_t)0x06000000) /*!< DAC synchronization mask */
1411 #define HRTIM_TIMCR_DACSYNC_0 ((uint32_t)0x02000000) /*!< DAC synchronization bit 0 */
1412 #define HRTIM_TIMCR_DACSYNC_1 ((uint32_t)0x04000000) /*!< DAC synchronization bit 1 */
1413 #define HRTIM_TIMCR_PREEN ((uint32_t)0x08000000) /*!< Slave preload enable */
1414
1415 #define HRTIM_TIMCR_UPDGAT ((uint32_t)0xF0000000) /*!< Slave update gating mask */
1416 #define HRTIM_TIMCR_UPDGAT_0 ((uint32_t)0x10000000) /*!< Update gating bit 0 */
1417 #define HRTIM_TIMCR_UPDGAT_1 ((uint32_t)0x20000000) /*!< Update gating bit 1 */
1418 #define HRTIM_TIMCR_UPDGAT_2 ((uint32_t)0x40000000) /*!< Update gating bit 2 */
1419 #define HRTIM_TIMCR_UPDGAT_3 ((uint32_t)0x80000000) /*!< Update gating bit 3 */
1420
1421 /******************** Slave Interrupt status register **************************/
1422 #define HRTIM_TIMISR_CMP1 ((uint32_t)0x00000001) /*!< Slave compare 1 interrupt flag */
1423 #define HRTIM_TIMISR_CMP2 ((uint32_t)0x00000002) /*!< Slave compare 2 interrupt flag */
1424 #define HRTIM_TIMISR_CMP3 ((uint32_t)0x00000004) /*!< Slave compare 3 interrupt flag */
1425 #define HRTIM_TIMISR_CMP4 ((uint32_t)0x00000008) /*!< Slave compare 4 interrupt flag */
1426 #define HRTIM_TIMISR_REP ((uint32_t)0x00000010) /*!< Slave repetition interrupt flag */
1427 #define HRTIM_TIMISR_UPD ((uint32_t)0x00000040) /*!< Slave update interrupt flag */
1428 #define HRTIM_TIMISR_CPT1 ((uint32_t)0x00000080) /*!< Slave capture 1 interrupt flag */
1429 #define HRTIM_TIMISR_CPT2 ((uint32_t)0x00000100) /*!< Slave capture 2 interrupt flag */
1430 #define HRTIM_TIMISR_SET1 ((uint32_t)0x00000200) /*!< Slave output 1 set interrupt flag */
1431 #define HRTIM_TIMISR_RST1 ((uint32_t)0x00000400) /*!< Slave output 1 reset interrupt flag */
1432 #define HRTIM_TIMISR_SET2 ((uint32_t)0x00000800) /*!< Slave output 2 set interrupt flag */
1433 #define HRTIM_TIMISR_RST2 ((uint32_t)0x00001000) /*!< Slave output 2 reset interrupt flag */
1434 #define HRTIM_TIMISR_RST ((uint32_t)0x00002000) /*!< Slave reset interrupt flag */
1435 #define HRTIM_TIMISR_DLYPRT ((uint32_t)0x00004000) /*!< Slave output 1 delay protection interrupt flag */
1436 #define HRTIM_TIMISR_CPPSTAT ((uint32_t)0x00010000) /*!< Slave current push-pull flag */
1437 #define HRTIM_TIMISR_IPPSTAT ((uint32_t)0x00020000) /*!< Slave idle push-pull flag */
1438 #define HRTIM_TIMISR_O1STAT ((uint32_t)0x00040000) /*!< Slave output 1 state flag */
1439 #define HRTIM_TIMISR_O2STAT ((uint32_t)0x00080000) /*!< Slave output 2 state flag */
1440 #define HRTIM_TIMISR_O1CPY ((uint32_t)0x00100000) /*!< Slave output 1 copy flag */
1441 #define HRTIM_TIMISR_O2CPY ((uint32_t)0x00200000) /*!< Slave output 2 copy flag */
1442
1443 /******************** Slave Interrupt clear register **************************/
1444 #define HRTIM_TIMICR_CMP1C ((uint32_t)0x00000001) /*!< Slave compare 1 clear flag */
1445 #define HRTIM_TIMICR_CMP2C ((uint32_t)0x00000002) /*!< Slave compare 2 clear flag */
1446 #define HRTIM_TIMICR_CMP3C ((uint32_t)0x00000004) /*!< Slave compare 3 clear flag */
1447 #define HRTIM_TIMICR_CMP4C ((uint32_t)0x00000008) /*!< Slave compare 4 clear flag */
1448 #define HRTIM_TIMICR_REPC ((uint32_t)0x00000010) /*!< Slave repetition clear flag */
1449 #define HRTIM_TIMICR_UPDC ((uint32_t)0x00000040) /*!< Slave update clear flag */
1450 #define HRTIM_TIMICR_CPT1C ((uint32_t)0x00000080) /*!< Slave capture 1 clear flag */
1451 #define HRTIM_TIMICR_CPT2C ((uint32_t)0x00000100) /*!< Slave capture 2 clear flag */
1452 #define HRTIM_TIMICR_SET1C ((uint32_t)0x00000200) /*!< Slave output 1 set clear flag */
1453 #define HRTIM_TIMICR_RST1C ((uint32_t)0x00000400) /*!< Slave output 1 reset clear flag */
1454 #define HRTIM_TIMICR_SET2C ((uint32_t)0x00000800) /*!< Slave output 2 set clear flag */
1455 #define HRTIM_TIMICR_RST2C ((uint32_t)0x00001000) /*!< Slave output 2 reset clear flag */
1456 #define HRTIM_TIMICR_RSTC ((uint32_t)0x00002000) /*!< Slave reset clear flag */
1457 #define HRTIM_TIMICR_DLYPRT1C ((uint32_t)0x00004000) /*!< Slave output 1 delay protection clear flag */
1458 #define HRTIM_TIMICR_DLYPRT2C ((uint32_t)0x00008000) /*!< Slave output 2 delay protection clear flag */
1459
1460 /******************** Slave DMA/Interrupt enable register *********************/
1461 #define HRTIM_TIMDIER_CMP1IE ((uint32_t)0x00000001) /*!< Slave compare 1 interrupt enable */
1462 #define HRTIM_TIMDIER_CMP2IE ((uint32_t)0x00000002) /*!< Slave compare 2 interrupt enable */
1463 #define HRTIM_TIMDIER_CMP3IE ((uint32_t)0x00000004) /*!< Slave compare 3 interrupt enable */
1464 #define HRTIM_TIMDIER_CMP4IE ((uint32_t)0x00000008) /*!< Slave compare 4 interrupt enable */
1465 #define HRTIM_TIMDIER_REPIE ((uint32_t)0x00000010) /*!< Slave repetition interrupt enable */
1466 #define HRTIM_TIMDIER_UPDIE ((uint32_t)0x00000040) /*!< Slave update interrupt enable */
1467 #define HRTIM_TIMDIER_CPT1IE ((uint32_t)0x00000080) /*!< Slave capture 1 interrupt enable */
1468 #define HRTIM_TIMDIER_CPT2IE ((uint32_t)0x00000100) /*!< Slave capture 2 interrupt enable */
1469 #define HRTIM_TIMDIER_SET1IE ((uint32_t)0x00000200) /*!< Slave output 1 set interrupt enable */
1470 #define HRTIM_TIMDIER_RST1IE ((uint32_t)0x00000400) /*!< Slave output 1 reset interrupt enable */
1471 #define HRTIM_TIMDIER_SET2IE ((uint32_t)0x00000800) /*!< Slave output 2 set interrupt enable */
1472 #define HRTIM_TIMDIER_RST2IE ((uint32_t)0x00001000) /*!< Slave output 2 reset interrupt enable */
1473 #define HRTIM_TIMDIER_RSTIE ((uint32_t)0x00002000) /*!< Slave reset interrupt enable */
1474 #define HRTIM_TIMDIER_DLYPRTIE ((uint32_t)0x00004000) /*!< Slave delay protection interrupt enable */
1475
1476 #define HRTIM_TIMDIER_CMP1DE ((uint32_t)0x00010000) /*!< Slave compare 1 request enable */
1477 #define HRTIM_TIMDIER_CMP2DE ((uint32_t)0x00020000) /*!< Slave compare 2 request enable */
1478 #define HRTIM_TIMDIER_CMP3DE ((uint32_t)0x00040000) /*!< Slave compare 3 request enable */
1479 #define HRTIM_TIMDIER_CMP4DE ((uint32_t)0x00080000) /*!< Slave compare 4 request enable */
1480 #define HRTIM_TIMDIER_REPDE ((uint32_t)0x00100000) /*!< Slave repetition request enable */
1481 #define HRTIM_TIMDIER_UPDDE ((uint32_t)0x00400000) /*!< Slave update request enable */
1482 #define HRTIM_TIMDIER_CPT1DE ((uint32_t)0x00800000) /*!< Slave capture 1 request enable */
1483 #define HRTIM_TIMDIER_CPT2DE ((uint32_t)0x01000000) /*!< Slave capture 2 request enable */
1484 #define HRTIM_TIMDIER_SET1DE ((uint32_t)0x02000000) /*!< Slave output 1 set request enable */
1485 #define HRTIM_TIMDIER_RST1DE ((uint32_t)0x04000000) /*!< Slave output 1 reset request enable */
1486 #define HRTIM_TIMDIER_SET2DE ((uint32_t)0x08000000) /*!< Slave output 2 set request enable */
1487 #define HRTIM_TIMDIER_RST2DE ((uint32_t)0x10000000) /*!< Slave output 2 reset request enable */
1488 #define HRTIM_TIMDIER_RSTDE ((uint32_t)0x20000000) /*!< Slave reset request enable */
1489 #define HRTIM_TIMDIER_DLYPRTDE ((uint32_t)0x40000000) /*!< Slave delay protection request enable */
1490
1491 /****************** Bit definition for HRTIM_CNTR register ****************/
1492 #define HRTIM_CNTR_CNTR ((uint32_t)0xFFFFFFFF) /*!< Counter Value */
1493
1494 /******************* Bit definition for HRTIM_PER register *****************/
1495 #define HRTIM_PER_PER ((uint32_t)0xFFFFFFFF) /*!< Period Value */
1496
1497 /******************* Bit definition for HRTIM_REP register *****************/
1498 #define HRTIM_REP_REP ((uint32_t)0xFFFFFFFF) /*!< Repetition Value */
1499
1500 /******************* Bit definition for HRTIM_CMP1R register *****************/
1501 #define HRTIM_CMP1R_CMP1R ((uint32_t)0xFFFFFFFF) /*!< Compare Value */
1502
1503 /******************* Bit definition for HRTIM_CMP1CR register *****************/
1504 #define HRTIM_CMP1CR_CMP1CR ((uint32_t)0xFFFFFFFF) /*!< Compare Value */
1505
1506 /******************* Bit definition for HRTIM_CMP2R register *****************/
1507 #define HRTIM_CMP2R_CMP2R ((uint32_t)0xFFFFFFFF) /*!< Compare Value */
1508
1509 /******************* Bit definition for HRTIM_CMP3R register *****************/
1510 #define HRTIM_CMP3R_CMP3R ((uint32_t)0xFFFFFFFF) /*!< Compare Value */
1511
1512 /******************* Bit definition for HRTIM_CMP4R register *****************/
1513 #define HRTIM_CMP4R_CMP4R ((uint32_t)0xFFFFFFFF) /*!< Compare Value */
1514
1515 /******************* Bit definition for HRTIM_CPT1R register ****************/
1516 #define HRTIM_CPT1R_CPT1R ((uint32_t)0xFFFFFFFF) /*!< Capture Value */
1517
1518 /******************* Bit definition for HRTIM_CPT2R register ****************/
1519 #define HRTIM_CPT2R_CPT2R ((uint32_t)0xFFFFFFFF) /*!< Capture Value */
1520
1521 /******************** Bit definition for Slave Deadtime register **************/
1522 #define HRTIM_DTR_DTR ((uint32_t)0x000001FF) /*!< Dead time rising value */
1523 #define HRTIM_DTR_DTR_0 ((uint32_t)0x00000001) /*!< Dead time rising bit 0 */
1524 #define HRTIM_DTR_DTR_1 ((uint32_t)0x00000002) /*!< Dead time rising bit 1 */
1525 #define HRTIM_DTR_DTR_2 ((uint32_t)0x00000004) /*!< Dead time rising bit 2 */
1526 #define HRTIM_DTR_DTR_3 ((uint32_t)0x00000008) /*!< Dead time rising bit 3 */
1527 #define HRTIM_DTR_DTR_4 ((uint32_t)0x00000010) /*!< Dead time rising bit 4 */
1528 #define HRTIM_DTR_DTR_5 ((uint32_t)0x00000020) /*!< Dead time rising bit 5 */
1529 #define HRTIM_DTR_DTR_6 ((uint32_t)0x00000040) /*!< Dead time rising bit 6 */
1530 #define HRTIM_DTR_DTR_7 ((uint32_t)0x00000080) /*!< Dead time rising bit 7 */
1531 #define HRTIM_DTR_DTR_8 ((uint32_t)0x00000100) /*!< Dead time rising bit 8 */
1532 #define HRTIM_DTR_SDTR ((uint32_t)0x00000200) /*!< Sign dead time rising value */
1533 #define HRTIM_DTR_DTPRSC ((uint32_t)0x00001C00) /*!< Dead time prescaler */
1534 #define HRTIM_DTR_DTPRSC_0 ((uint32_t)0x00000400) /*!< Dead time prescaler bit 0 */
1535 #define HRTIM_DTR_DTPRSC_1 ((uint32_t)0x00000800) /*!< Dead time prescaler bit 1 */
1536 #define HRTIM_DTR_DTPRSC_2 ((uint32_t)0x00001000) /*!< Dead time prescaler bit 2 */
1537 #define HRTIM_DTR_DTRSLK ((uint32_t)0x00004000) /*!< Dead time rising sign lock */
1538 #define HRTIM_DTR_DTRLK ((uint32_t)0x00008000) /*!< Dead time rising lock */
1539 #define HRTIM_DTR_DTF ((uint32_t)0x01FF0000) /*!< Dead time falling value */
1540 #define HRTIM_DTR_DTF_0 ((uint32_t)0x00010000) /*!< Dead time falling bit 0 */
1541 #define HRTIM_DTR_DTF_1 ((uint32_t)0x00020000) /*!< Dead time falling bit 1 */
1542 #define HRTIM_DTR_DTF_2 ((uint32_t)0x00040000) /*!< Dead time falling bit 2 */
1543 #define HRTIM_DTR_DTF_3 ((uint32_t)0x00080000) /*!< Dead time falling bit 3 */
1544 #define HRTIM_DTR_DTF_4 ((uint32_t)0x00100000) /*!< Dead time falling bit 4 */
1545 #define HRTIM_DTR_DTF_5 ((uint32_t)0x00200000) /*!< Dead time falling bit 5 */
1546 #define HRTIM_DTR_DTF_6 ((uint32_t)0x00400000) /*!< Dead time falling bit 6 */
1547 #define HRTIM_DTR_DTF_7 ((uint32_t)0x00800000) /*!< Dead time falling bit 7 */
1548 #define HRTIM_DTR_DTF_8 ((uint32_t)0x01000000) /*!< Dead time falling bit 8 */
1549 #define HRTIM_DTR_SDTF ((uint32_t)0x02000000) /*!< Sign dead time falling value */
1550 #define HRTIM_DTR_DTFSLK ((uint32_t)0x40000000) /*!< Dead time falling sign lock */
1551 #define HRTIM_DTR_DTFLK ((uint32_t)0x80000000) /*!< Dead time falling lock */
1552
1553 /**** Bit definition for Slave Output 1 set register **************************/
1554 #define HRTIM_SET1R_SST ((uint32_t)0x00000001) /*!< software set trigger */
1555 #define HRTIM_SET1R_RESYNC ((uint32_t)0x00000002) /*!< Timer A resynchronization */
1556 #define HRTIM_SET1R_PER ((uint32_t)0x00000004) /*!< Timer A period */
1557 #define HRTIM_SET1R_CMP1 ((uint32_t)0x00000008) /*!< Timer A compare 1 */
1558 #define HRTIM_SET1R_CMP2 ((uint32_t)0x00000010) /*!< Timer A compare 2 */
1559 #define HRTIM_SET1R_CMP3 ((uint32_t)0x00000020) /*!< Timer A compare 3 */
1560 #define HRTIM_SET1R_CMP4 ((uint32_t)0x00000040) /*!< Timer A compare 4 */
1561
1562 #define HRTIM_SET1R_MSTPER ((uint32_t)0x00000080) /*!< Master period */
1563 #define HRTIM_SET1R_MSTCMP1 ((uint32_t)0x00000100) /*!< Master compare 1 */
1564 #define HRTIM_SET1R_MSTCMP2 ((uint32_t)0x00000200) /*!< Master compare 2 */
1565 #define HRTIM_SET1R_MSTCMP3 ((uint32_t)0x00000400) /*!< Master compare 3 */
1566 #define HRTIM_SET1R_MSTCMP4 ((uint32_t)0x00000800) /*!< Master compare 4 */
1567
1568 #define HRTIM_SET1R_TIMEVNT1 ((uint32_t)0x00001000) /*!< Timer event 1 */
1569 #define HRTIM_SET1R_TIMEVNT2 ((uint32_t)0x00002000) /*!< Timer event 2 */
1570 #define HRTIM_SET1R_TIMEVNT3 ((uint32_t)0x00004000) /*!< Timer event 3 */
1571 #define HRTIM_SET1R_TIMEVNT4 ((uint32_t)0x00008000) /*!< Timer event 4 */
1572 #define HRTIM_SET1R_TIMEVNT5 ((uint32_t)0x00010000) /*!< Timer event 5 */
1573 #define HRTIM_SET1R_TIMEVNT6 ((uint32_t)0x00020000) /*!< Timer event 6 */
1574 #define HRTIM_SET1R_TIMEVNT7 ((uint32_t)0x00040000) /*!< Timer event 7 */
1575 #define HRTIM_SET1R_TIMEVNT8 ((uint32_t)0x00080000) /*!< Timer event 8 */
1576 #define HRTIM_SET1R_TIMEVNT9 ((uint32_t)0x00100000) /*!< Timer event 9 */
1577
1578 #define HRTIM_SET1R_EXTVNT1 ((uint32_t)0x00200000) /*!< External event 1 */
1579 #define HRTIM_SET1R_EXTVNT2 ((uint32_t)0x00400000) /*!< External event 2 */
1580 #define HRTIM_SET1R_EXTVNT3 ((uint32_t)0x00800000) /*!< External event 3 */
1581 #define HRTIM_SET1R_EXTVNT4 ((uint32_t)0x01000000) /*!< External event 4 */
1582 #define HRTIM_SET1R_EXTVNT5 ((uint32_t)0x02000000) /*!< External event 5 */
1583 #define HRTIM_SET1R_EXTVNT6 ((uint32_t)0x04000000) /*!< External event 6 */
1584 #define HRTIM_SET1R_EXTVNT7 ((uint32_t)0x08000000) /*!< External event 7 */
1585 #define HRTIM_SET1R_EXTVNT8 ((uint32_t)0x10000000) /*!< External event 8 */
1586 #define HRTIM_SET1R_EXTVNT9 ((uint32_t)0x20000000) /*!< External event 9 */
1587 #define HRTIM_SET1R_EXTVNT10 ((uint32_t)0x40000000) /*!< External event 10 */
1588
1589 #define HRTIM_SET1R_UPDATE ((uint32_t)0x80000000) /*!< Register update (transfer preload to active) */
1590
1591 /**** Bit definition for Slave Output 1 reset register ************************/
1592 #define HRTIM_RST1R_SRT ((uint32_t)0x00000001) /*!< software reset trigger */
1593 #define HRTIM_RST1R_RESYNC ((uint32_t)0x00000002) /*!< Timer A resynchronization */
1594 #define HRTIM_RST1R_PER ((uint32_t)0x00000004) /*!< Timer A period */
1595 #define HRTIM_RST1R_CMP1 ((uint32_t)0x00000008) /*!< Timer A compare 1 */
1596 #define HRTIM_RST1R_CMP2 ((uint32_t)0x00000010) /*!< Timer A compare 2 */
1597 #define HRTIM_RST1R_CMP3 ((uint32_t)0x00000020) /*!< Timer A compare 3 */
1598 #define HRTIM_RST1R_CMP4 ((uint32_t)0x00000040) /*!< Timer A compare 4 */
1599
1600 #define HRTIM_RST1R_MSTPER ((uint32_t)0x00000080) /*!< Master period */
1601 #define HRTIM_RST1R_MSTCMP1 ((uint32_t)0x00000100) /*!< Master compare 1 */
1602 #define HRTIM_RST1R_MSTCMP2 ((uint32_t)0x00000200) /*!< Master compare 2 */
1603 #define HRTIM_RST1R_MSTCMP3 ((uint32_t)0x00000400) /*!< Master compare 3 */
1604 #define HRTIM_RST1R_MSTCMP4 ((uint32_t)0x00000800) /*!< Master compare 4 */
1605
1606 #define HRTIM_RST1R_TIMEVNT1 ((uint32_t)0x00001000) /*!< Timer event 1 */
1607 #define HRTIM_RST1R_TIMEVNT2 ((uint32_t)0x00002000) /*!< Timer event 2 */
1608 #define HRTIM_RST1R_TIMEVNT3 ((uint32_t)0x00004000) /*!< Timer event 3 */
1609 #define HRTIM_RST1R_TIMEVNT4 ((uint32_t)0x00008000) /*!< Timer event 4 */
1610 #define HRTIM_RST1R_TIMEVNT5 ((uint32_t)0x00010000) /*!< Timer event 5 */
1611 #define HRTIM_RST1R_TIMEVNT6 ((uint32_t)0x00020000) /*!< Timer event 6 */
1612 #define HRTIM_RST1R_TIMEVNT7 ((uint32_t)0x00040000) /*!< Timer event 7 */
1613 #define HRTIM_RST1R_TIMEVNT8 ((uint32_t)0x00080000) /*!< Timer event 8 */
1614 #define HRTIM_RST1R_TIMEVNT9 ((uint32_t)0x00100000) /*!< Timer event 9 */
1615
1616 #define HRTIM_RST1R_EXTVNT1 ((uint32_t)0x00200000) /*!< External event 1 */
1617 #define HRTIM_RST1R_EXTVNT2 ((uint32_t)0x00400000) /*!< External event 2 */
1618 #define HRTIM_RST1R_EXTVNT3 ((uint32_t)0x00800000) /*!< External event 3 */
1619 #define HRTIM_RST1R_EXTVNT4 ((uint32_t)0x01000000) /*!< External event 4 */
1620 #define HRTIM_RST1R_EXTVNT5 ((uint32_t)0x02000000) /*!< External event 5 */
1621 #define HRTIM_RST1R_EXTVNT6 ((uint32_t)0x04000000) /*!< External event 6 */
1622 #define HRTIM_RST1R_EXTVNT7 ((uint32_t)0x08000000) /*!< External event 7 */
1623 #define HRTIM_RST1R_EXTVNT8 ((uint32_t)0x10000000) /*!< External event 8 */
1624 #define HRTIM_RST1R_EXTVNT9 ((uint32_t)0x20000000) /*!< External event 9 */
1625 #define HRTIM_RST1R_EXTVNT10 ((uint32_t)0x40000000) /*!< External event 10 */
1626
1627 #define HRTIM_RST1R_UPDATE ((uint32_t)0x80000000) /*!< Register update (transfer preload to active) */
1628
1629
1630 /**** Bit definition for Slave Output 2 set register **************************/
1631 #define HRTIM_SET2R_SST ((uint32_t)0x00000001) /*!< software set trigger */
1632 #define HRTIM_SET2R_RESYNC ((uint32_t)0x00000002) /*!< Timer A resynchronization */
1633 #define HRTIM_SET2R_PER ((uint32_t)0x00000004) /*!< Timer A period */
1634 #define HRTIM_SET2R_CMP1 ((uint32_t)0x00000008) /*!< Timer A compare 1 */
1635 #define HRTIM_SET2R_CMP2 ((uint32_t)0x00000010) /*!< Timer A compare 2 */
1636 #define HRTIM_SET2R_CMP3 ((uint32_t)0x00000020) /*!< Timer A compare 3 */
1637 #define HRTIM_SET2R_CMP4 ((uint32_t)0x00000040) /*!< Timer A compare 4 */
1638
1639 #define HRTIM_SET2R_MSTPER ((uint32_t)0x00000080) /*!< Master period */
1640 #define HRTIM_SET2R_MSTCMP1 ((uint32_t)0x00000100) /*!< Master compare 1 */
1641 #define HRTIM_SET2R_MSTCMP2 ((uint32_t)0x00000200) /*!< Master compare 2 */
1642 #define HRTIM_SET2R_MSTCMP3 ((uint32_t)0x00000400) /*!< Master compare 3 */
1643 #define HRTIM_SET2R_MSTCMP4 ((uint32_t)0x00000800) /*!< Master compare 4 */
1644
1645 #define HRTIM_SET2R_TIMEVNT1 ((uint32_t)0x00001000) /*!< Timer event 1 */
1646 #define HRTIM_SET2R_TIMEVNT2 ((uint32_t)0x00002000) /*!< Timer event 2 */
1647 #define HRTIM_SET2R_TIMEVNT3 ((uint32_t)0x00004000) /*!< Timer event 3 */
1648 #define HRTIM_SET2R_TIMEVNT4 ((uint32_t)0x00008000) /*!< Timer event 4 */
1649 #define HRTIM_SET2R_TIMEVNT5 ((uint32_t)0x00010000) /*!< Timer event 5 */
1650 #define HRTIM_SET2R_TIMEVNT6 ((uint32_t)0x00020000) /*!< Timer event 6 */
1651 #define HRTIM_SET2R_TIMEVNT7 ((uint32_t)0x00040000) /*!< Timer event 7 */
1652 #define HRTIM_SET2R_TIMEVNT8 ((uint32_t)0x00080000) /*!< Timer event 8 */
1653 #define HRTIM_SET2R_TIMEVNT9 ((uint32_t)0x00100000) /*!< Timer event 9 */
1654
1655 #define HRTIM_SET2R_EXTVNT1 ((uint32_t)0x00200000) /*!< External event 1 */
1656 #define HRTIM_SET2R_EXTVNT2 ((uint32_t)0x00400000) /*!< External event 2 */
1657 #define HRTIM_SET2R_EXTVNT3 ((uint32_t)0x00800000) /*!< External event 3 */
1658 #define HRTIM_SET2R_EXTVNT4 ((uint32_t)0x01000000) /*!< External event 4 */
1659 #define HRTIM_SET2R_EXTVNT5 ((uint32_t)0x02000000) /*!< External event 5 */
1660 #define HRTIM_SET2R_EXTVNT6 ((uint32_t)0x04000000) /*!< External event 6 */
1661 #define HRTIM_SET2R_EXTVNT7 ((uint32_t)0x08000000) /*!< External event 7 */
1662 #define HRTIM_SET2R_EXTVNT8 ((uint32_t)0x10000000) /*!< External event 8 */
1663 #define HRTIM_SET2R_EXTVNT9 ((uint32_t)0x20000000) /*!< External event 9 */
1664 #define HRTIM_SET2R_EXTVNT10 ((uint32_t)0x40000000) /*!< External event 10 */
1665
1666 #define HRTIM_SET2R_UPDATE ((uint32_t)0x80000000) /*!< Register update (transfer preload to active) */
1667
1668 /**** Bit definition for Slave Output 2 reset register ************************/
1669 #define HRTIM_RST2R_SRT ((uint32_t)0x00000001) /*!< software reset trigger */
1670 #define HRTIM_RST2R_RESYNC ((uint32_t)0x00000002) /*!< Timer A resynchronization */
1671 #define HRTIM_RST2R_PER ((uint32_t)0x00000004) /*!< Timer A period */
1672 #define HRTIM_RST2R_CMP1 ((uint32_t)0x00000008) /*!< Timer A compare 1 */
1673 #define HRTIM_RST2R_CMP2 ((uint32_t)0x00000010) /*!< Timer A compare 2 */
1674 #define HRTIM_RST2R_CMP3 ((uint32_t)0x00000020) /*!< Timer A compare 3 */
1675 #define HRTIM_RST2R_CMP4 ((uint32_t)0x00000040) /*!< Timer A compare 4 */
1676
1677 #define HRTIM_RST2R_MSTPER ((uint32_t)0x00000080) /*!< Master period */
1678 #define HRTIM_RST2R_MSTCMP1 ((uint32_t)0x00000100) /*!< Master compare 1 */
1679 #define HRTIM_RST2R_MSTCMP2 ((uint32_t)0x00000200) /*!< Master compare 2 */
1680 #define HRTIM_RST2R_MSTCMP3 ((uint32_t)0x00000400) /*!< Master compare 3 */
1681 #define HRTIM_RST2R_MSTCMP4 ((uint32_t)0x00000800) /*!< Master compare 4 */
1682
1683 #define HRTIM_RST2R_TIMEVNT1 ((uint32_t)0x00001000) /*!< Timer event 1 */
1684 #define HRTIM_RST2R_TIMEVNT2 ((uint32_t)0x00002000) /*!< Timer event 2 */
1685 #define HRTIM_RST2R_TIMEVNT3 ((uint32_t)0x00004000) /*!< Timer event 3 */
1686 #define HRTIM_RST2R_TIMEVNT4 ((uint32_t)0x00008000) /*!< Timer event 4 */
1687 #define HRTIM_RST2R_TIMEVNT5 ((uint32_t)0x00010000) /*!< Timer event 5 */
1688 #define HRTIM_RST2R_TIMEVNT6 ((uint32_t)0x00020000) /*!< Timer event 6 */
1689 #define HRTIM_RST2R_TIMEVNT7 ((uint32_t)0x00040000) /*!< Timer event 7 */
1690 #define HRTIM_RST2R_TIMEVNT8 ((uint32_t)0x00080000) /*!< Timer event 8 */
1691 #define HRTIM_RST2R_TIMEVNT9 ((uint32_t)0x00100000) /*!< Timer event 9 */
1692
1693 #define HRTIM_RST2R_EXTVNT1 ((uint32_t)0x00200000) /*!< External event 1 */
1694 #define HRTIM_RST2R_EXTVNT2 ((uint32_t)0x00400000) /*!< External event 2 */
1695 #define HRTIM_RST2R_EXTVNT3 ((uint32_t)0x00800000) /*!< External event 3 */
1696 #define HRTIM_RST2R_EXTVNT4 ((uint32_t)0x01000000) /*!< External event 4 */
1697 #define HRTIM_RST2R_EXTVNT5 ((uint32_t)0x02000000) /*!< External event 5 */
1698 #define HRTIM_RST2R_EXTVNT6 ((uint32_t)0x04000000) /*!< External event 6 */
1699 #define HRTIM_RST2R_EXTVNT7 ((uint32_t)0x08000000) /*!< External event 7 */
1700 #define HRTIM_RST2R_EXTVNT8 ((uint32_t)0x10000000) /*!< External event 8 */
1701 #define HRTIM_RST2R_EXTVNT9 ((uint32_t)0x20000000) /*!< External event 9 */
1702 #define HRTIM_RST2R_EXTVNT10 ((uint32_t)0x40000000) /*!< External event 10 */
1703
1704 #define HRTIM_RST2R_UPDATE ((uint32_t)0x80000000) /*!< Register update (transfer preload to active) */
1705
1706 /**** Bit definition for Slave external event filtering register 1 ***********/
1707 #define HRTIM_EEFR1_EE1LTCH ((uint32_t)0x00000001) /*!< External Event 1 latch */
1708 #define HRTIM_EEFR1_EE1FLTR ((uint32_t)0x0000001E) /*!< External Event 1 filter mask */
1709 #define HRTIM_EEFR1_EE1FLTR_0 ((uint32_t)0x00000002) /*!< External Event 1 bit 0 */
1710 #define HRTIM_EEFR1_EE1FLTR_1 ((uint32_t)0x00000004) /*!< External Event 1 bit 1*/
1711 #define HRTIM_EEFR1_EE1FLTR_2 ((uint32_t)0x00000008) /*!< External Event 1 bit 2 */
1712 #define HRTIM_EEFR1_EE1FLTR_3 ((uint32_t)0x00000010) /*!< External Event 1 bit 3 */
1713
1714 #define HRTIM_EEFR1_EE2LTCH ((uint32_t)0x00000040) /*!< External Event 2 latch */
1715 #define HRTIM_EEFR1_EE2FLTR ((uint32_t)0x00000780) /*!< External Event 2 filter mask */
1716 #define HRTIM_EEFR1_EE2FLTR_0 ((uint32_t)0x00000080) /*!< External Event 2 bit 0 */
1717 #define HRTIM_EEFR1_EE2FLTR_1 ((uint32_t)0x00000100) /*!< External Event 2 bit 1*/
1718 #define HRTIM_EEFR1_EE2FLTR_2 ((uint32_t)0x00000200) /*!< External Event 2 bit 2 */
1719 #define HRTIM_EEFR1_EE2FLTR_3 ((uint32_t)0x00000400) /*!< External Event 2 bit 3 */
1720
1721 #define HRTIM_EEFR1_EE3LTCH ((uint32_t)0x00001000) /*!< External Event 3 latch */
1722 #define HRTIM_EEFR1_EE3FLTR ((uint32_t)0x0001E000) /*!< External Event 3 filter mask */
1723 #define HRTIM_EEFR1_EE3FLTR_0 ((uint32_t)0x00002000) /*!< External Event 3 bit 0 */
1724 #define HRTIM_EEFR1_EE3FLTR_1 ((uint32_t)0x00004000) /*!< External Event 3 bit 1*/
1725 #define HRTIM_EEFR1_EE3FLTR_2 ((uint32_t)0x00008000) /*!< External Event 3 bit 2 */
1726 #define HRTIM_EEFR1_EE3FLTR_3 ((uint32_t)0x00010000) /*!< External Event 3 bit 3 */
1727
1728 #define HRTIM_EEFR1_EE4LTCH ((uint32_t)0x00040000) /*!< External Event 4 latch */
1729 #define HRTIM_EEFR1_EE4FLTR ((uint32_t)0x00780000) /*!< External Event 4 filter mask */
1730 #define HRTIM_EEFR1_EE4FLTR_0 ((uint32_t)0x00080000) /*!< External Event 4 bit 0 */
1731 #define HRTIM_EEFR1_EE4FLTR_1 ((uint32_t)0x00100000) /*!< External Event 4 bit 1*/
1732 #define HRTIM_EEFR1_EE4FLTR_2 ((uint32_t)0x00200000) /*!< External Event 4 bit 2 */
1733 #define HRTIM_EEFR1_EE4FLTR_3 ((uint32_t)0x00400000) /*!< External Event 4 bit 3 */
1734
1735 #define HRTIM_EEFR1_EE5LTCH ((uint32_t)0x01000000) /*!< External Event 5 latch */
1736 #define HRTIM_EEFR1_EE5FLTR ((uint32_t)0x1E000000) /*!< External Event 5 filter mask */
1737 #define HRTIM_EEFR1_EE5FLTR_0 ((uint32_t)0x02000000) /*!< External Event 5 bit 0 */
1738 #define HRTIM_EEFR1_EE5FLTR_1 ((uint32_t)0x04000000) /*!< External Event 5 bit 1*/
1739 #define HRTIM_EEFR1_EE5FLTR_2 ((uint32_t)0x08000000) /*!< External Event 5 bit 2 */
1740 #define HRTIM_EEFR1_EE5FLTR_3 ((uint32_t)0x10000000) /*!< External Event 5 bit 3 */
1741
1742 /**** Bit definition for Slave external event filtering register 2 ***********/
1743 #define HRTIM_EEFR2_EE6LTCH ((uint32_t)0x00000001) /*!< External Event 6 latch */
1744 #define HRTIM_EEFR2_EE6FLTR ((uint32_t)0x0000001E) /*!< External Event 6 filter mask */
1745 #define HRTIM_EEFR2_EE6FLTR_0 ((uint32_t)0x00000002) /*!< External Event 6 bit 0 */
1746 #define HRTIM_EEFR2_EE6FLTR_1 ((uint32_t)0x00000004) /*!< External Event 6 bit 1*/
1747 #define HRTIM_EEFR2_EE6FLTR_2 ((uint32_t)0x00000008) /*!< External Event 6 bit 2 */
1748 #define HRTIM_EEFR2_EE6FLTR_3 ((uint32_t)0x00000010) /*!< External Event 6 bit 3 */
1749
1750 #define HRTIM_EEFR2_EE7LTCH ((uint32_t)0x00000040) /*!< External Event 7 latch */
1751 #define HRTIM_EEFR2_EE7FLTR ((uint32_t)0x00000780) /*!< External Event 7 filter mask */
1752 #define HRTIM_EEFR2_EE7FLTR_0 ((uint32_t)0x00000080) /*!< External Event 7 bit 0 */
1753 #define HRTIM_EEFR2_EE7FLTR_1 ((uint32_t)0x00000100) /*!< External Event 7 bit 1*/
1754 #define HRTIM_EEFR2_EE7FLTR_2 ((uint32_t)0x00000200) /*!< External Event 7 bit 2 */
1755 #define HRTIM_EEFR2_EE7FLTR_3 ((uint32_t)0x00000400) /*!< External Event 7 bit 3 */
1756
1757 #define HRTIM_EEFR2_EE8LTCH ((uint32_t)0x00001000) /*!< External Event 8 latch */
1758 #define HRTIM_EEFR2_EE8FLTR ((uint32_t)0x0001E000) /*!< External Event 8 filter mask */
1759 #define HRTIM_EEFR2_EE8FLTR_0 ((uint32_t)0x00002000) /*!< External Event 8 bit 0 */
1760 #define HRTIM_EEFR2_EE8FLTR_1 ((uint32_t)0x00004000) /*!< External Event 8 bit 1*/
1761 #define HRTIM_EEFR2_EE8FLTR_2 ((uint32_t)0x00008000) /*!< External Event 8 bit 2 */
1762 #define HRTIM_EEFR2_EE8FLTR_3 ((uint32_t)0x00010000) /*!< External Event 8 bit 3 */
1763
1764 #define HRTIM_EEFR2_EE9LTCH ((uint32_t)0x00040000) /*!< External Event 9 latch */
1765 #define HRTIM_EEFR2_EE9FLTR ((uint32_t)0x00780000) /*!< External Event 9 filter mask */
1766 #define HRTIM_EEFR2_EE9FLTR_0 ((uint32_t)0x00080000) /*!< External Event 9 bit 0 */
1767 #define HRTIM_EEFR2_EE9FLTR_1 ((uint32_t)0x00100000) /*!< External Event 9 bit 1*/
1768 #define HRTIM_EEFR2_EE9FLTR_2 ((uint32_t)0x00200000) /*!< External Event 9 bit 2 */
1769 #define HRTIM_EEFR2_EE9FLTR_3 ((uint32_t)0x00400000) /*!< External Event 9 bit 3 */
1770
1771 #define HRTIM_EEFR2_EE10LTCH ((uint32_t)0x01000000) /*!< External Event 10 latch */
1772 #define HRTIM_EEFR2_EE10FLTR ((uint32_t)0x1E000000) /*!< External Event 10 filter mask */
1773 #define HRTIM_EEFR2_EE10FLTR_0 ((uint32_t)0x02000000) /*!< External Event 10 bit 0 */
1774 #define HRTIM_EEFR2_EE10FLTR_1 ((uint32_t)0x04000000) /*!< External Event 10 bit 1*/
1775 #define HRTIM_EEFR2_EE10FLTR_2 ((uint32_t)0x08000000) /*!< External Event 10 bit 2 */
1776 #define HRTIM_EEFR2_EE10FLTR_3 ((uint32_t)0x10000000) /*!< External Event 10 bit 3 */
1777
1778 /**** Bit definition for Slave Timer reset register ***************************/
1779 #define HRTIM_RSTR_UPDATE ((uint32_t)0x00000002) /*!< Timer update */
1780 #define HRTIM_RSTR_CMP2 ((uint32_t)0x00000004) /*!< Timer compare2 */
1781 #define HRTIM_RSTR_CMP4 ((uint32_t)0x00000008) /*!< Timer compare4 */
1782
1783 #define HRTIM_RSTR_MSTPER ((uint32_t)0x00000010) /*!< Master period */
1784 #define HRTIM_RSTR_MSTCMP1 ((uint32_t)0x00000020) /*!< Master compare1 */
1785 #define HRTIM_RSTR_MSTCMP2 ((uint32_t)0x00000040) /*!< Master compare2 */
1786 #define HRTIM_RSTR_MSTCMP3 ((uint32_t)0x00000080) /*!< Master compare3 */
1787 #define HRTIM_RSTR_MSTCMP4 ((uint32_t)0x00000100) /*!< Master compare4 */
1788
1789 #define HRTIM_RSTR_EXTEVNT1 ((uint32_t)0x00000200) /*!< External event 1 */
1790 #define HRTIM_RSTR_EXTEVNT2 ((uint32_t)0x00000400) /*!< External event 2 */
1791 #define HRTIM_RSTR_EXTEVNT3 ((uint32_t)0x00000800) /*!< External event 3 */
1792 #define HRTIM_RSTR_EXTEVNT4 ((uint32_t)0x00001000) /*!< External event 4 */
1793 #define HRTIM_RSTR_EXTEVNT5 ((uint32_t)0x00002000) /*!< External event 5 */
1794 #define HRTIM_RSTR_EXTEVNT6 ((uint32_t)0x00004000) /*!< External event 6 */
1795 #define HRTIM_RSTR_EXTEVNT7 ((uint32_t)0x00008000) /*!< External event 7 */
1796 #define HRTIM_RSTR_EXTEVNT8 ((uint32_t)0x00010000) /*!< External event 8 */
1797 #define HRTIM_RSTR_EXTEVNT9 ((uint32_t)0x00020000) /*!< External event 9 */
1798 #define HRTIM_RSTR_EXTEVNT10 ((uint32_t)0x00040000) /*!< External event 10 */
1799
1800 #define HRTIM_RSTR_TIMBCMP1 ((uint32_t)0x00080000) /*!< Timer B compare 1 */
1801 #define HRTIM_RSTR_TIMBCMP2 ((uint32_t)0x00100000) /*!< Timer B compare 2 */
1802 #define HRTIM_RSTR_TIMBCMP4 ((uint32_t)0x00200000) /*!< Timer B compare 4 */
1803
1804 #define HRTIM_RSTR_TIMCCMP1 ((uint32_t)0x00400000) /*!< Timer C compare 1 */
1805 #define HRTIM_RSTR_TIMCCMP2 ((uint32_t)0x00800000) /*!< Timer C compare 2 */
1806 #define HRTIM_RSTR_TIMCCMP4 ((uint32_t)0x01000000) /*!< Timer C compare 4 */
1807
1808 #define HRTIM_RSTR_TIMDCMP1 ((uint32_t)0x02000000) /*!< Timer D compare 1 */
1809 #define HRTIM_RSTR_TIMDCMP2 ((uint32_t)0x04000000) /*!< Timer D compare 2 */
1810 #define HRTIM_RSTR_TIMDCMP4 ((uint32_t)0x08000000) /*!< Timer D compare 4 */
1811
1812 #define HRTIM_RSTR_TIMECMP1 ((uint32_t)0x10000000) /*!< Timer E compare 1 */
1813 #define HRTIM_RSTR_TIMECMP2 ((uint32_t)0x20000000) /*!< Timer E compare 2 */
1814 #define HRTIM_RSTR_TIMECMP4 ((uint32_t)0x40000000) /*!< Timer E compare 4 */
1815
1816 /**** Bit definition for Slave Timer Chopper register *************************/
1817 #define HRTIM_CHPR_CARFRQ ((uint32_t)0x0000000F) /*!< Timer carrier frequency value */
1818 #define HRTIM_CHPR_CARFRQ_0 ((uint32_t)0x00000001) /*!< Timer carrier frequency value bit 0 */
1819 #define HRTIM_CHPR_CARFRQ_1 ((uint32_t)0x00000002) /*!< Timer carrier frequency value bit 1 */
1820 #define HRTIM_CHPR_CARFRQ_2 ((uint32_t)0x00000004) /*!< Timer carrier frequency value bit 2 */
1821 #define HRTIM_CHPR_CARFRQ_3 ((uint32_t)0x00000008) /*!< Timer carrier frequency value bit 3 */
1822
1823 #define HRTIM_CHPR_CARDTY ((uint32_t)0x00000070) /*!< Timer chopper duty cycle value */
1824 #define HRTIM_CHPR_CARDTY_0 ((uint32_t)0x00000010) /*!< Timer chopper duty cycle value bit 0 */
1825 #define HRTIM_CHPR_CARDTY_1 ((uint32_t)0x00000020) /*!< Timer chopper duty cycle value bit 1 */
1826 #define HRTIM_CHPR_CARDTY_2 ((uint32_t)0x00000040) /*!< Timer chopper duty cycle value bit 2 */
1827
1828 #define HRTIM_CHPR_STRPW ((uint32_t)0x00000780) /*!< Timer start pulse width value */
1829 #define HRTIM_CHPR_STRPW_0 ((uint32_t)0x00000080) /*!< Timer start pulse width value bit 0 */
1830 #define HRTIM_CHPR_STRPW_1 ((uint32_t)0x00000100) /*!< Timer start pulse width value bit 1 */
1831 #define HRTIM_CHPR_STRPW_2 ((uint32_t)0x00000200) /*!< Timer start pulse width value bit 2 */
1832 #define HRTIM_CHPR_STRPW_3 ((uint32_t)0x00000400) /*!< Timer start pulse width value bit 3 */
1833
1834 /**** Bit definition for Slave Timer Capture 1 control register ***************/
1835 #define HRTIM_CPT1CR_SWCPT ((uint32_t)0x00000001) /*!< Software capture */
1836 #define HRTIM_CPT1CR_UPDCPT ((uint32_t)0x00000002) /*!< Update capture */
1837 #define HRTIM_CPT1CR_EXEV1CPT ((uint32_t)0x00000004) /*!< External event 1 capture */
1838 #define HRTIM_CPT1CR_EXEV2CPT ((uint32_t)0x00000008) /*!< External event 2 capture */
1839 #define HRTIM_CPT1CR_EXEV3CPT ((uint32_t)0x00000010) /*!< External event 3 capture */
1840 #define HRTIM_CPT1CR_EXEV4CPT ((uint32_t)0x00000020) /*!< External event 4 capture */
1841 #define HRTIM_CPT1CR_EXEV5CPT ((uint32_t)0x00000040) /*!< External event 5 capture */
1842 #define HRTIM_CPT1CR_EXEV6CPT ((uint32_t)0x00000080) /*!< External event 6 capture */
1843 #define HRTIM_CPT1CR_EXEV7CPT ((uint32_t)0x00000100) /*!< External event 7 capture */
1844 #define HRTIM_CPT1CR_EXEV8CPT ((uint32_t)0x00000200) /*!< External event 8 capture */
1845 #define HRTIM_CPT1CR_EXEV9CPT ((uint32_t)0x00000400) /*!< External event 9 capture */
1846 #define HRTIM_CPT1CR_EXEV10CPT ((uint32_t)0x00000800) /*!< External event 10 capture */
1847
1848 #define HRTIM_CPT1CR_TA1SET ((uint32_t)0x00001000) /*!< Timer A output 1 set */
1849 #define HRTIM_CPT1CR_TA1RST ((uint32_t)0x00002000) /*!< Timer A output 1 reset */
1850 #define HRTIM_CPT1CR_TA1CMP1 ((uint32_t)0x00004000) /*!< Timer A compare 1 */
1851 #define HRTIM_CPT1CR_TA1CMP2 ((uint32_t)0x00008000) /*!< Timer A compare 2 */
1852
1853 #define HRTIM_CPT1CR_TB1SET ((uint32_t)0x00010000) /*!< Timer B output 1 set */
1854 #define HRTIM_CPT1CR_TB1RST ((uint32_t)0x00020000) /*!< Timer B output 1 reset */
1855 #define HRTIM_CPT1CR_TB1CMP1 ((uint32_t)0x00040000) /*!< Timer B compare 1 */
1856 #define HRTIM_CPT1CR_TB1CMP2 ((uint32_t)0x00080000) /*!< Timer B compare 2 */
1857
1858 #define HRTIM_CPT1CR_TC1SET ((uint32_t)0x00100000) /*!< Timer C output 1 set */
1859 #define HRTIM_CPT1CR_TC1RST ((uint32_t)0x00200000) /*!< Timer C output 1 reset */
1860 #define HRTIM_CPT1CR_TC1CMP1 ((uint32_t)0x00400000) /*!< Timer C compare 1 */
1861 #define HRTIM_CPT1CR_TC1CMP2 ((uint32_t)0x00800000) /*!< Timer C compare 2 */
1862
1863 #define HRTIM_CPT1CR_TD1SET ((uint32_t)0x01000000) /*!< Timer D output 1 set */
1864 #define HRTIM_CPT1CR_TD1RST ((uint32_t)0x02000000) /*!< Timer D output 1 reset */
1865 #define HRTIM_CPT1CR_TD1CMP1 ((uint32_t)0x04000000) /*!< Timer D compare 1 */
1866 #define HRTIM_CPT1CR_TD1CMP2 ((uint32_t)0x08000000) /*!< Timer D compare 2 */
1867
1868 #define HRTIM_CPT1CR_TE1SET ((uint32_t)0x10000000) /*!< Timer E output 1 set */
1869 #define HRTIM_CPT1CR_TE1RST ((uint32_t)0x20000000) /*!< Timer E output 1 reset */
1870 #define HRTIM_CPT1CR_TE1CMP1 ((uint32_t)0x40000000) /*!< Timer E compare 1 */
1871 #define HRTIM_CPT1CR_TE1CMP2 ((uint32_t)0x80000000) /*!< Timer E compare 2 */
1872
1873 /**** Bit definition for Slave Timer Capture 2 control register ***************/
1874 #define HRTIM_CPT2CR_SWCPT ((uint32_t)0x00000001) /*!< Software capture */
1875 #define HRTIM_CPT2CR_UPDCPT ((uint32_t)0x00000002) /*!< Update capture */
1876 #define HRTIM_CPT2CR_EXEV1CPT ((uint32_t)0x00000004) /*!< External event 1 capture */
1877 #define HRTIM_CPT2CR_EXEV2CPT ((uint32_t)0x00000008) /*!< External event 2 capture */
1878 #define HRTIM_CPT2CR_EXEV3CPT ((uint32_t)0x00000010) /*!< External event 3 capture */
1879 #define HRTIM_CPT2CR_EXEV4CPT ((uint32_t)0x00000020) /*!< External event 4 capture */
1880 #define HRTIM_CPT2CR_EXEV5CPT ((uint32_t)0x00000040) /*!< External event 5 capture */
1881 #define HRTIM_CPT2CR_EXEV6CPT ((uint32_t)0x00000080) /*!< External event 6 capture */
1882 #define HRTIM_CPT2CR_EXEV7CPT ((uint32_t)0x00000100) /*!< External event 7 capture */
1883 #define HRTIM_CPT2CR_EXEV8CPT ((uint32_t)0x00000200) /*!< External event 8 capture */
1884 #define HRTIM_CPT2CR_EXEV9CPT ((uint32_t)0x00000400) /*!< External event 9 capture */
1885 #define HRTIM_CPT2CR_EXEV10CPT ((uint32_t)0x00000800) /*!< External event 10 capture */
1886
1887 #define HRTIM_CPT2CR_TA1SET ((uint32_t)0x00001000) /*!< Timer A output 1 set */
1888 #define HRTIM_CPT2CR_TA1RST ((uint32_t)0x00002000) /*!< Timer A output 1 reset */
1889 #define HRTIM_CPT2CR_TA1CMP1 ((uint32_t)0x00004000) /*!< Timer A compare 1 */
1890 #define HRTIM_CPT2CR_TA1CMP2 ((uint32_t)0x00008000) /*!< Timer A compare 2 */
1891
1892 #define HRTIM_CPT2CR_TB1SET ((uint32_t)0x00010000) /*!< Timer B output 1 set */
1893 #define HRTIM_CPT2CR_TB1RST ((uint32_t)0x00020000) /*!< Timer B output 1 reset */
1894 #define HRTIM_CPT2CR_TB1CMP1 ((uint32_t)0x00040000) /*!< Timer B compare 1 */
1895 #define HRTIM_CPT2CR_TB1CMP2 ((uint32_t)0x00080000) /*!< Timer B compare 2 */
1896
1897 #define HRTIM_CPT2CR_TC1SET ((uint32_t)0x00100000) /*!< Timer C output 1 set */
1898 #define HRTIM_CPT2CR_TC1RST ((uint32_t)0x00200000) /*!< Timer C output 1 reset */
1899 #define HRTIM_CPT2CR_TC1CMP1 ((uint32_t)0x00400000) /*!< Timer C compare 1 */
1900 #define HRTIM_CPT2CR_TC1CMP2 ((uint32_t)0x00800000) /*!< Timer C compare 2 */
1901
1902 #define HRTIM_CPT2CR_TD1SET ((uint32_t)0x01000000) /*!< Timer D output 1 set */
1903 #define HRTIM_CPT2CR_TD1RST ((uint32_t)0x02000000) /*!< Timer D output 1 reset */
1904 #define HRTIM_CPT2CR_TD1CMP1 ((uint32_t)0x04000000) /*!< Timer D compare 1 */
1905 #define HRTIM_CPT2CR_TD1CMP2 ((uint32_t)0x08000000) /*!< Timer D compare 2 */
1906
1907 #define HRTIM_CPT2CR_TE1SET ((uint32_t)0x10000000) /*!< Timer E output 1 set */
1908 #define HRTIM_CPT2CR_TE1RST ((uint32_t)0x20000000) /*!< Timer E output 1 reset */
1909 #define HRTIM_CPT2CR_TE1CMP1 ((uint32_t)0x40000000) /*!< Timer E compare 1 */
1910 #define HRTIM_CPT2CR_TE1CMP2 ((uint32_t)0x80000000) /*!< Timer E compare 2 */
1911
1912 /**** Bit definition for Slave Timer Output register **************************/
1913 #define HRTIM_OUTR_POL1 ((uint32_t)0x00000002) /*!< Slave output 1 polarity */
1914 #define HRTIM_OUTR_IDLM1 ((uint32_t)0x00000004) /*!< Slave output 1 idle mode */
1915 #define HRTIM_OUTR_IDLES1 ((uint32_t)0x00000008) /*!< Slave output 1 idle state */
1916 #define HRTIM_OUTR_FAULT1 ((uint32_t)0x00000030) /*!< Slave output 1 fault state */
1917 #define HRTIM_OUTR_FAULT1_0 ((uint32_t)0x00000010) /*!< Slave output 1 fault state bit 0 */
1918 #define HRTIM_OUTR_FAULT1_1 ((uint32_t)0x00000020) /*!< Slave output 1 fault state bit 1 */
1919 #define HRTIM_OUTR_CHP1 ((uint32_t)0x00000040) /*!< Slave output 1 chopper enable */
1920 #define HRTIM_OUTR_DIDL1 ((uint32_t)0x00000080) /*!< Slave output 1 dead time idle */
1921
1922 #define HRTIM_OUTR_DTEN ((uint32_t)0x00000100) /*!< Slave output deadtime enable */
1923 #define HRTIM_OUTR_DLYPRTEN ((uint32_t)0x00000200) /*!< Slave output delay protection enable */
1924 #define HRTIM_OUTR_DLYPRT ((uint32_t)0x00001C00) /*!< Slave output delay protection */
1925 #define HRTIM_OUTR_DLYPRT_0 ((uint32_t)0x00000400) /*!< Slave output delay protection bit 0 */
1926 #define HRTIM_OUTR_DLYPRT_1 ((uint32_t)0x00000800) /*!< Slave output delay protection bit 1 */
1927 #define HRTIM_OUTR_DLYPRT_2 ((uint32_t)0x00001000) /*!< Slave output delay protection bit 2 */
1928
1929 #define HRTIM_OUTR_POL2 ((uint32_t)0x00020000) /*!< Slave output 2 polarity */
1930 #define HRTIM_OUTR_IDLM2 ((uint32_t)0x00040000) /*!< Slave output 2 idle mode */
1931 #define HRTIM_OUTR_IDLES2 ((uint32_t)0x00080000) /*!< Slave output 2 idle state */
1932 #define HRTIM_OUTR_FAULT2 ((uint32_t)0x00300000) /*!< Slave output 2 fault state */
1933 #define HRTIM_OUTR_FAULT2_0 ((uint32_t)0x00100000) /*!< Slave output 2 fault state bit 0 */
1934 #define HRTIM_OUTR_FAULT2_1 ((uint32_t)0x00200000) /*!< Slave output 2 fault state bit 1 */
1935 #define HRTIM_OUTR_CHP2 ((uint32_t)0x00400000) /*!< Slave output 2 chopper enable */
1936 #define HRTIM_OUTR_DIDL2 ((uint32_t)0x00800000) /*!< Slave output 2 dead time idle */
1937
1938 /**** Bit definition for Slave Timer Fault register ***************************/
1939 #define HRTIM_FLTR_FLT1EN ((uint32_t)0x00000001) /*!< Fault 1 enable */
1940 #define HRTIM_FLTR_FLT2EN ((uint32_t)0x00000002) /*!< Fault 2 enable */
1941 #define HRTIM_FLTR_FLT3EN ((uint32_t)0x00000004) /*!< Fault 3 enable */
1942 #define HRTIM_FLTR_FLT4EN ((uint32_t)0x00000008) /*!< Fault 4 enable */
1943 #define HRTIM_FLTR_FLT5EN ((uint32_t)0x00000010) /*!< Fault 5 enable */
1944 #define HRTIM_FLTR_FLTCLK ((uint32_t)0x80000000) /*!< Fault sources lock */
1945
1946 /**** Bit definition for Common HRTIM Timer control register 1 ****************/
1947 #define HRTIM_CR1_MUDIS ((uint32_t)0x00000001) /*!< Master update disable*/
1948 #define HRTIM_CR1_TAUDIS ((uint32_t)0x00000002) /*!< Timer A update disable*/
1949 #define HRTIM_CR1_TBUDIS ((uint32_t)0x00000004) /*!< Timer B update disable*/
1950 #define HRTIM_CR1_TCUDIS ((uint32_t)0x00000008) /*!< Timer C update disable*/
1951 #define HRTIM_CR1_TDUDIS ((uint32_t)0x00000010) /*!< Timer D update disable*/
1952 #define HRTIM_CR1_TEUDIS ((uint32_t)0x00000020) /*!< Timer E update disable*/
1953 #define HRTIM_CR1_ADC1USRC ((uint32_t)0x00070000) /*!< ADC Trigger 1 update source */
1954 #define HRTIM_CR1_ADC1USRC_0 ((uint32_t)0x00010000) /*!< ADC Trigger 1 update source bit 0 */
1955 #define HRTIM_CR1_ADC1USRC_1 ((uint32_t)0x00020000) /*!< ADC Trigger 1 update source bit 1 */
1956 #define HRTIM_CR1_ADC1USRC_2 ((uint32_t)0x00040000) /*!< ADC Trigger 1 update source bit 2 */
1957 #define HRTIM_CR1_ADC2USRC ((uint32_t)0x00380000) /*!< ADC Trigger 2 update source */
1958 #define HRTIM_CR1_ADC2USRC_0 ((uint32_t)0x00080000) /*!< ADC Trigger 2 update source bit 0 */
1959 #define HRTIM_CR1_ADC2USRC_1 ((uint32_t)0x00100000) /*!< ADC Trigger 2 update source bit 1 */
1960 #define HRTIM_CR1_ADC2USRC_2 ((uint32_t)0x00200000) /*!< ADC Trigger 2 update source bit 2 */
1961 #define HRTIM_CR1_ADC3USRC ((uint32_t)0x01C00000) /*!< ADC Trigger 3 update source */
1962 #define HRTIM_CR1_ADC3USRC_0 ((uint32_t)0x00400000) /*!< ADC Trigger 3 update source bit 0 */
1963 #define HRTIM_CR1_ADC3USRC_1 ((uint32_t)0x00800000) /*!< ADC Trigger 3 update source bit 1 */
1964 #define HRTIM_CR1_ADC3USRC_2 ((uint32_t)0x01000000) /*!< ADC Trigger 3 update source bit 2 */
1965 #define HRTIM_CR1_ADC4USRC ((uint32_t)0x0E000000) /*!< ADC Trigger 4 update source */
1966 #define HRTIM_CR1_ADC4USRC_0 ((uint32_t)0x02000000) /*!< ADC Trigger 4 update source bit 0 */
1967 #define HRTIM_CR1_ADC4USRC_1 ((uint32_t)0x04000000) /*!< ADC Trigger 4 update source bit 1 */
1968 #define HRTIM_CR1_ADC4USRC_2 ((uint32_t)0x0800000) /*!< ADC Trigger 4 update source bit 2 */
1969
1970 /**** Bit definition for Common HRTIM Timer control register 2 ****************/
1971 #define HRTIM_CR2_MSWU ((uint32_t)0x00000001) /*!< Master software update */
1972 #define HRTIM_CR2_TASWU ((uint32_t)0x00000002) /*!< Timer A software update */
1973 #define HRTIM_CR2_TBSWU ((uint32_t)0x00000004) /*!< Timer B software update */
1974 #define HRTIM_CR2_TCSWU ((uint32_t)0x00000008) /*!< Timer C software update */
1975 #define HRTIM_CR2_TDSWU ((uint32_t)0x00000010) /*!< Timer D software update */
1976 #define HRTIM_CR2_TESWU ((uint32_t)0x00000020) /*!< Timer E software update */
1977 #define HRTIM_CR2_MRST ((uint32_t)0x00000100) /*!< Master count software reset */
1978 #define HRTIM_CR2_TARST ((uint32_t)0x00000200) /*!< Timer A count software reset */
1979 #define HRTIM_CR2_TBRST ((uint32_t)0x00000400) /*!< Timer B count software reset */
1980 #define HRTIM_CR2_TCRST ((uint32_t)0x00000800) /*!< Timer C count software reset */
1981 #define HRTIM_CR2_TDRST ((uint32_t)0x00001000) /*!< Timer D count software reset */
1982 #define HRTIM_CR2_TERST ((uint32_t)0x00002000) /*!< Timer E count software reset */
1983
1984 /**** Bit definition for Common HRTIM Timer interrupt status register *********/
1985 #define HRTIM_ISR_FLT1 ((uint32_t)0x00000001) /*!< Fault 1 interrupt flag */
1986 #define HRTIM_ISR_FLT2 ((uint32_t)0x00000002) /*!< Fault 2 interrupt flag */
1987 #define HRTIM_ISR_FLT3 ((uint32_t)0x00000004) /*!< Fault 3 interrupt flag */
1988 #define HRTIM_ISR_FLT4 ((uint32_t)0x00000008) /*!< Fault 4 interrupt flag */
1989 #define HRTIM_ISR_FLT5 ((uint32_t)0x00000010) /*!< Fault 5 interrupt flag */
1990 #define HRTIM_ISR_SYSFLT ((uint32_t)0x00000020) /*!< System Fault interrupt flag */
1991 #define HRTIM_ISR_DLLRDY ((uint32_t)0x00010000) /*!< DLL ready interrupt flag */
1992 #define HRTIM_ISR_BMPER ((uint32_t)0x00020000) /*!< Burst mode period interrupt flag */
1993
1994 /**** Bit definition for Common HRTIM Timer interrupt clear register **********/
1995 #define HRTIM_ICR_FLT1C ((uint32_t)0x00000001) /*!< Fault 1 interrupt flag clear */
1996 #define HRTIM_ICR_FLT2C ((uint32_t)0x00000002) /*!< Fault 2 interrupt flag clear */
1997 #define HRTIM_ICR_FLT3C ((uint32_t)0x00000004) /*!< Fault 3 interrupt flag clear */
1998 #define HRTIM_ICR_FLT4C ((uint32_t)0x00000008) /*!< Fault 4 interrupt flag clear */
1999 #define HRTIM_ICR_FLT5C ((uint32_t)0x00000010) /*!< Fault 5 interrupt flag clear */
2000 #define HRTIM_ICR_SYSFLTC ((uint32_t)0x00000020) /*!< System Fault interrupt flag clear */
2001 #define HRTIM_ICR_DLLRDYC ((uint32_t)0x00010000) /*!< DLL ready interrupt flag clear */
2002 #define HRTIM_ICR_BMPERC ((uint32_t)0x00020000) /*!< Burst mode period interrupt flag clear */
2003
2004 /**** Bit definition for Common HRTIM Timer interrupt enable register *********/
2005 #define HRTIM_IER_FLT1 ((uint32_t)0x00000001) /*!< Fault 1 interrupt enable */
2006 #define HRTIM_IER_FLT2 ((uint32_t)0x00000002) /*!< Fault 2 interrupt enable */
2007 #define HRTIM_IER_FLT3 ((uint32_t)0x00000004) /*!< Fault 3 interrupt enable */
2008 #define HRTIM_IER_FLT4 ((uint32_t)0x00000008) /*!< Fault 4 interrupt enable */
2009 #define HRTIM_IER_FLT5 ((uint32_t)0x00000010) /*!< Fault 5 interrupt enable */
2010 #define HRTIM_IER_SYSFLT ((uint32_t)0x00000020) /*!< System Fault interrupt enable */
2011 #define HRTIM_IER_DLLRDY ((uint32_t)0x00010000) /*!< DLL ready interrupt enable */
2012 #define HRTIM_IER_BMPER ((uint32_t)0x00020000) /*!< Burst mode period interrupt enable */
2013
2014 /**** Bit definition for Common HRTIM Timer output enable register ************/
2015 #define HRTIM_OENR_TA1OEN ((uint32_t)0x00000001) /*!< Timer A Output 1 enable */
2016 #define HRTIM_OENR_TA2OEN ((uint32_t)0x00000002) /*!< Timer A Output 2 enable */
2017 #define HRTIM_OENR_TB1OEN ((uint32_t)0x00000004) /*!< Timer B Output 1 enable */
2018 #define HRTIM_OENR_TB2OEN ((uint32_t)0x00000008) /*!< Timer B Output 2 enable */
2019 #define HRTIM_OENR_TC1OEN ((uint32_t)0x00000010) /*!< Timer C Output 1 enable */
2020 #define HRTIM_OENR_TC2OEN ((uint32_t)0x00000020) /*!< Timer C Output 2 enable */
2021 #define HRTIM_OENR_TD1OEN ((uint32_t)0x00000040) /*!< Timer D Output 1 enable */
2022 #define HRTIM_OENR_TD2OEN ((uint32_t)0x00000080) /*!< Timer D Output 2 enable */
2023 #define HRTIM_OENR_TE1OEN ((uint32_t)0x00000100) /*!< Timer E Output 1 enable */
2024 #define HRTIM_OENR_TE2OEN ((uint32_t)0x00000200) /*!< Timer E Output 2 enable */
2025
2026 /**** Bit definition for Common HRTIM Timer output disable register ***********/
2027 #define HRTIM_ODISR_TA1ODIS ((uint32_t)0x00000001) /*!< Timer A Output 1 disable */
2028 #define HRTIM_ODISR_TA2ODIS ((uint32_t)0x00000002) /*!< Timer A Output 2 disable */
2029 #define HRTIM_ODISR_TB1ODIS ((uint32_t)0x00000004) /*!< Timer B Output 1 disable */
2030 #define HRTIM_ODISR_TB2ODIS ((uint32_t)0x00000008) /*!< Timer B Output 2 disable */
2031 #define HRTIM_ODISR_TC1ODIS ((uint32_t)0x00000010) /*!< Timer C Output 1 disable */
2032 #define HRTIM_ODISR_TC2ODIS ((uint32_t)0x00000020) /*!< Timer C Output 2 disable */
2033 #define HRTIM_ODISR_TD1ODIS ((uint32_t)0x00000040) /*!< Timer D Output 1 disable */
2034 #define HRTIM_ODISR_TD2ODIS ((uint32_t)0x00000080) /*!< Timer D Output 2 disable */
2035 #define HRTIM_ODISR_TE1ODIS ((uint32_t)0x00000100) /*!< Timer E Output 1 disable */
2036 #define HRTIM_ODISR_TE2ODIS ((uint32_t)0x00000200) /*!< Timer E Output 2 disable */
2037
2038 /**** Bit definition for Common HRTIM Timer output disable status register *****/
2039 #define HRTIM_ODSR_TA1ODS ((uint32_t)0x00000001) /*!< Timer A Output 1 disable status */
2040 #define HRTIM_ODSR_TA2ODS ((uint32_t)0x00000002) /*!< Timer A Output 2 disable status */
2041 #define HRTIM_ODSR_TB1ODS ((uint32_t)0x00000004) /*!< Timer B Output 1 disable status */
2042 #define HRTIM_ODSR_TB2ODS ((uint32_t)0x00000008) /*!< Timer B Output 2 disable status */
2043 #define HRTIM_ODSR_TC1ODS ((uint32_t)0x00000010) /*!< Timer C Output 1 disable status */
2044 #define HRTIM_ODSR_TC2ODS ((uint32_t)0x00000020) /*!< Timer C Output 2 disable status */
2045 #define HRTIM_ODSR_TD1ODS ((uint32_t)0x00000040) /*!< Timer D Output 1 disable status */
2046 #define HRTIM_ODSR_TD2ODS ((uint32_t)0x00000080) /*!< Timer D Output 2 disable status */
2047 #define HRTIM_ODSR_TE1ODS ((uint32_t)0x00000100) /*!< Timer E Output 1 disable status */
2048 #define HRTIM_ODSR_TE2ODS ((uint32_t)0x00000200) /*!< Timer E Output 2 disable status */
2049
2050 /**** Bit definition for Common HRTIM Timer Burst mode control register ********/
2051 #define HRTIM_BMCR_BME ((uint32_t)0x00000001) /*!< Burst mode enable */
2052 #define HRTIM_BMCR_BMOM ((uint32_t)0x00000002) /*!< Burst mode operating mode */
2053 #define HRTIM_BMCR_BMCLK ((uint32_t)0x0000003C) /*!< Burst mode clock source */
2054 #define HRTIM_BMCR_BMCLK_0 ((uint32_t)0x00000004) /*!< Burst mode clock source bit 0 */
2055 #define HRTIM_BMCR_BMCLK_1 ((uint32_t)0x00000008) /*!< Burst mode clock source bit 1 */
2056 #define HRTIM_BMCR_BMCLK_2 ((uint32_t)0x00000010) /*!< Burst mode clock source bit 2 */
2057 #define HRTIM_BMCR_BMCLK_3 ((uint32_t)0x00000020) /*!< Burst mode clock source bit 3 */
2058 #define HRTIM_BMCR_BMPSC ((uint32_t)0x000003C0) /*!< Burst mode prescaler */
2059 #define HRTIM_BMCR_BMPSC_0 ((uint32_t)0x00000040) /*!< Burst mode prescaler bit 0 */
2060 #define HRTIM_BMCR_BMPSC_1 ((uint32_t)0x00000080) /*!< Burst mode prescaler bit 1 */
2061 #define HRTIM_BMCR_BMPSC_2 ((uint32_t)0x00000100) /*!< Burst mode prescaler bit 2 */
2062 #define HRTIM_BMCR_BMPSC_3 ((uint32_t)0x00000200) /*!< Burst mode prescaler bit 3 */
2063 #define HRTIM_BMCR_BMPREN ((uint32_t)0x00000400) /*!< Burst mode Preload bit */
2064 #define HRTIM_BMCR_MTBM ((uint32_t)0x00010000) /*!< Master Timer Burst mode */
2065 #define HRTIM_BMCR_TABM ((uint32_t)0x00020000) /*!< Timer A Burst mode */
2066 #define HRTIM_BMCR_TBBM ((uint32_t)0x00040000) /*!< Timer B Burst mode */
2067 #define HRTIM_BMCR_TCBM ((uint32_t)0x00080000) /*!< Timer C Burst mode */
2068 #define HRTIM_BMCR_TDBM ((uint32_t)0x00100000) /*!< Timer D Burst mode */
2069 #define HRTIM_BMCR_TEBM ((uint32_t)0x00200000) /*!< Timer E Burst mode */
2070 #define HRTIM_BMCR_BMSTAT ((uint32_t)0x80000000) /*!< Burst mode status */
2071
2072 /**** Bit definition for Common HRTIM Timer Burst mode Trigger register *******/
2073 #define HRTIM_BMTRGR_SW ((uint32_t)0x00000001) /*!< Software start */
2074 #define HRTIM_BMTRGR_MSTRST ((uint32_t)0x00000002) /*!< Master reset */
2075 #define HRTIM_BMTRGR_MSTREP ((uint32_t)0x00000004) /*!< Master repetition */
2076 #define HRTIM_BMTRGR_MSTCMP1 ((uint32_t)0x00000008) /*!< Master compare 1 */
2077 #define HRTIM_BMTRGR_MSTCMP2 ((uint32_t)0x00000010) /*!< Master compare 2 */
2078 #define HRTIM_BMTRGR_MSTCMP3 ((uint32_t)0x00000020) /*!< Master compare 3 */
2079 #define HRTIM_BMTRGR_MSTCMP4 ((uint32_t)0x00000040) /*!< Master compare 4 */
2080 #define HRTIM_BMTRGR_TARST ((uint32_t)0x00000080) /*!< Timer A reset */
2081 #define HRTIM_BMTRGR_TAREP ((uint32_t)0x00000100) /*!< Timer A repetition */
2082 #define HRTIM_BMTRGR_TACMP1 ((uint32_t)0x00000200) /*!< Timer A compare 1 */
2083 #define HRTIM_BMTRGR_TACMP2 ((uint32_t)0x00000400) /*!< Timer A compare 2 */
2084 #define HRTIM_BMTRGR_TBRST ((uint32_t)0x00000800) /*!< Timer B reset */
2085 #define HRTIM_BMTRGR_TBREP ((uint32_t)0x00001000) /*!< Timer B repetition */
2086 #define HRTIM_BMTRGR_TBCMP1 ((uint32_t)0x00002000) /*!< Timer B compare 1 */
2087 #define HRTIM_BMTRGR_TBCMP2 ((uint32_t)0x00004000) /*!< Timer B compare 2 */
2088 #define HRTIM_BMTRGR_TCRST ((uint32_t)0x00008000) /*!< Timer C reset */
2089 #define HRTIM_BMTRGR_TCREP ((uint32_t)0x00010000) /*!< Timer C repetition */
2090 #define HRTIM_BMTRGR_TCCMP1 ((uint32_t)0x00020000) /*!< Timer C compare 1 */
2091 #define HRTIM_BMTRGR_TCCMP2 ((uint32_t)0x00040000) /*!< Timer C compare 2 */
2092 #define HRTIM_BMTRGR_TDRST ((uint32_t)0x00080000) /*!< Timer D reset */
2093 #define HRTIM_BMTRGR_TDREP ((uint32_t)0x00100000) /*!< Timer D repetition */
2094 #define HRTIM_BMTRGR_TDCMP1 ((uint32_t)0x00200000) /*!< Timer D compare 1 */
2095 #define HRTIM_BMTRGR_TDCMP2 ((uint32_t)0x00400000) /*!< Timer D compare 2 */
2096 #define HRTIM_BMTRGR_TERST ((uint32_t)0x00800000) /*!< Timer E reset */
2097 #define HRTIM_BMTRGR_TEREP ((uint32_t)0x01000000) /*!< Timer E repetition */
2098 #define HRTIM_BMTRGR_TECMP1 ((uint32_t)0x02000000) /*!< Timer E compare 1 */
2099 #define HRTIM_BMTRGR_TECMP2 ((uint32_t)0x04000000) /*!< Timer E compare 2 */
2100 #define HRTIM_BMTRGR_TAEEV7 ((uint32_t)0x08000000) /*!< Timer A period following External Event7 */
2101 #define HRTIM_BMTRGR_TDEEV8 ((uint32_t)0x10000000) /*!< Timer D period following External Event8 */
2102 #define HRTIM_BMTRGR_EEV7 ((uint32_t)0x20000000) /*!< External Event 7 */
2103 #define HRTIM_BMTRGR_EEV8 ((uint32_t)0x40000000) /*!< External Event 8 */
2104 #define HRTIM_BMTRGR_OCHPEV ((uint32_t)0x80000000) /*!< on-chip Event */
2105
2106 /******************* Bit definition for HRTIM_BMCMPR register ***************/
2107 #define HRTIM_BMCMPR_BMCMPR ((uint32_t)0x0000FFFF) /*!<!<Burst Compare Value */
2108
2109 /******************* Bit definition for HRTIM_BMPER register ****************/
2110 #define HRTIM_BMPER_BMPER ((uint32_t)0x0000FFFF) /*!<!<Burst period Value */
2111
2112 /******************* Bit definition for HRTIM_EECR1 register ****************/
2113 #define HRTIM_EECR1_EE1SRC ((uint32_t)0x00000003) /*!< External event 1 source */
2114 #define HRTIM_EECR1_EE1SRC_0 ((uint32_t)0x00000001) /*!< External event 1 source bit 0 */
2115 #define HRTIM_EECR1_EE1SRC_1 ((uint32_t)0x00000002) /*!< External event 1 source bit 1 */
2116 #define HRTIM_EECR1_EE1POL ((uint32_t)0x00000004) /*!< External event 1 Polarity */
2117 #define HRTIM_EECR1_EE1SNS ((uint32_t)0x00000018) /*!< External event 1 sensitivity */
2118 #define HRTIM_EECR1_EE1SNS_0 ((uint32_t)0x00000008) /*!< External event 1 sensitivity bit 0 */
2119 #define HRTIM_EECR1_EE1SNS_1 ((uint32_t)0x00000010) /*!< External event 1 sensitivity bit 1 */
2120 #define HRTIM_EECR1_EE1FAST ((uint32_t)0x00000020) /*!< External event 1 Fast mode */
2121
2122 #define HRTIM_EECR1_EE2SRC ((uint32_t)0x000000C0) /*!< External event 2 source */
2123 #define HRTIM_EECR1_EE2SRC_0 ((uint32_t)0x00000040) /*!< External event 2 source bit 0 */
2124 #define HRTIM_EECR1_EE2SRC_1 ((uint32_t)0x00000080) /*!< External event 2 source bit 1 */
2125 #define HRTIM_EECR1_EE2POL ((uint32_t)0x00000100) /*!< External event 2 Polarity */
2126 #define HRTIM_EECR1_EE2SNS ((uint32_t)0x00000600) /*!< External event 2 sensitivity */
2127 #define HRTIM_EECR1_EE2SNS_0 ((uint32_t)0x00000200) /*!< External event 2 sensitivity bit 0 */
2128 #define HRTIM_EECR1_EE2SNS_1 ((uint32_t)0x00000400) /*!< External event 2 sensitivity bit 1 */
2129 #define HRTIM_EECR1_EE2FAST ((uint32_t)0x00000800) /*!< External event 2 Fast mode */
2130
2131 #define HRTIM_EECR1_EE3SRC ((uint32_t)0x00003000) /*!< External event 3 source */
2132 #define HRTIM_EECR1_EE3SRC_0 ((uint32_t)0x00001000) /*!< External event 3 source bit 0 */
2133 #define HRTIM_EECR1_EE3SRC_1 ((uint32_t)0x00002000) /*!< External event 3 source bit 1 */
2134 #define HRTIM_EECR1_EE3POL ((uint32_t)0x00004000) /*!< External event 3 Polarity */
2135 #define HRTIM_EECR1_EE3SNS ((uint32_t)0x00018000) /*!< External event 3 sensitivity */
2136 #define HRTIM_EECR1_EE3SNS_0 ((uint32_t)0x00008000) /*!< External event 3 sensitivity bit 0 */
2137 #define HRTIM_EECR1_EE3SNS_1 ((uint32_t)0x00010000) /*!< External event 3 sensitivity bit 1 */
2138 #define HRTIM_EECR1_EE3FAST ((uint32_t)0x00020000) /*!< External event 3 Fast mode */
2139
2140 #define HRTIM_EECR1_EE4SRC ((uint32_t)0x000C0000) /*!< External event 4 source */
2141 #define HRTIM_EECR1_EE4SRC_0 ((uint32_t)0x00040000) /*!< External event 4 source bit 0 */
2142 #define HRTIM_EECR1_EE4SRC_1 ((uint32_t)0x00080000) /*!< External event 4 source bit 1 */
2143 #define HRTIM_EECR1_EE4POL ((uint32_t)0x00100000) /*!< External event 4 Polarity */
2144 #define HRTIM_EECR1_EE4SNS ((uint32_t)0x00600000) /*!< External event 4 sensitivity */
2145 #define HRTIM_EECR1_EE4SNS_0 ((uint32_t)0x00200000) /*!< External event 4 sensitivity bit 0 */
2146 #define HRTIM_EECR1_EE4SNS_1 ((uint32_t)0x00400000) /*!< External event 4 sensitivity bit 1 */
2147 #define HRTIM_EECR1_EE4FAST ((uint32_t)0x00800000) /*!< External event 4 Fast mode */
2148
2149 #define HRTIM_EECR1_EE5SRC ((uint32_t)0x03000000) /*!< External event 5 source */
2150 #define HRTIM_EECR1_EE5SRC_0 ((uint32_t)0x01000000) /*!< External event 5 source bit 0 */
2151 #define HRTIM_EECR1_EE5SRC_1 ((uint32_t)0x02000000) /*!< External event 5 source bit 1 */
2152 #define HRTIM_EECR1_EE5POL ((uint32_t)0x04000000) /*!< External event 5 Polarity */
2153 #define HRTIM_EECR1_EE5SNS ((uint32_t)0x18000000) /*!< External event 5 sensitivity */
2154 #define HRTIM_EECR1_EE5SNS_0 ((uint32_t)0x08000000) /*!< External event 5 sensitivity bit 0 */
2155 #define HRTIM_EECR1_EE5SNS_1 ((uint32_t)0x10000000) /*!< External event 5 sensitivity bit 1 */
2156 #define HRTIM_EECR1_EE5FAST ((uint32_t)0x20000000) /*!< External event 5 Fast mode */
2157
2158 /******************* Bit definition for HRTIM_EECR2 register ****************/
2159 #define HRTIM_EECR2_EE6SRC ((uint32_t)0x00000003) /*!< External event 6 source */
2160 #define HRTIM_EECR2_EE6SRC_0 ((uint32_t)0x00000001) /*!< External event 6 source bit 0 */
2161 #define HRTIM_EECR2_EE6SRC_1 ((uint32_t)0x00000002) /*!< External event 6 source bit 1 */
2162 #define HRTIM_EECR2_EE6POL ((uint32_t)0x00000004) /*!< External event 6 Polarity */
2163 #define HRTIM_EECR2_EE6SNS ((uint32_t)0x00000018) /*!< External event 6 sensitivity */
2164 #define HRTIM_EECR2_EE6SNS_0 ((uint32_t)0x00000008) /*!< External event 6 sensitivity bit 0 */
2165 #define HRTIM_EECR2_EE6SNS_1 ((uint32_t)0x00000010) /*!< External event 6 sensitivity bit 1 */
2166
2167 #define HRTIM_EECR2_EE7SRC ((uint32_t)0x000000C0) /*!< External event 7 source */
2168 #define HRTIM_EECR2_EE7SRC_0 ((uint32_t)0x00000040) /*!< External event 7 source bit 0 */
2169 #define HRTIM_EECR2_EE7SRC_1 ((uint32_t)0x00000080) /*!< External event 7 source bit 1 */
2170 #define HRTIM_EECR2_EE7POL ((uint32_t)0x00000100) /*!< External event 7 Polarity */
2171 #define HRTIM_EECR2_EE7SNS ((uint32_t)0x00000600) /*!< External event 7 sensitivity */
2172 #define HRTIM_EECR2_EE7SNS_0 ((uint32_t)0x00000200) /*!< External event 7 sensitivity bit 0 */
2173 #define HRTIM_EECR2_EE7SNS_1 ((uint32_t)0x00000400) /*!< External event 7 sensitivity bit 1 */
2174
2175 #define HRTIM_EECR2_EE8SRC ((uint32_t)0x00003000) /*!< External event 8 source */
2176 #define HRTIM_EECR2_EE8SRC_0 ((uint32_t)0x00001000) /*!< External event 8 source bit 0 */
2177 #define HRTIM_EECR2_EE8SRC_1 ((uint32_t)0x00002000) /*!< External event 8 source bit 1 */
2178 #define HRTIM_EECR2_EE8POL ((uint32_t)0x00004000) /*!< External event 8 Polarity */
2179 #define HRTIM_EECR2_EE8SNS ((uint32_t)0x00018000) /*!< External event 8 sensitivity */
2180 #define HRTIM_EECR2_EE8SNS_0 ((uint32_t)0x00008000) /*!< External event 8 sensitivity bit 0 */
2181 #define HRTIM_EECR2_EE8SNS_1 ((uint32_t)0x00010000) /*!< External event 8 sensitivity bit 1 */
2182
2183 #define HRTIM_EECR2_EE9SRC ((uint32_t)0x000C0000) /*!< External event 9 source */
2184 #define HRTIM_EECR2_EE9SRC_0 ((uint32_t)0x00040000) /*!< External event 9 source bit 0 */
2185 #define HRTIM_EECR2_EE9SRC_1 ((uint32_t)0x00080000) /*!< External event 9 source bit 1 */
2186 #define HRTIM_EECR2_EE9POL ((uint32_t)0x00100000) /*!< External event 9 Polarity */
2187 #define HRTIM_EECR2_EE9SNS ((uint32_t)0x00600000) /*!< External event 9 sensitivity */
2188 #define HRTIM_EECR2_EE9SNS_0 ((uint32_t)0x00200000) /*!< External event 9 sensitivity bit 0 */
2189 #define HRTIM_EECR2_EE9SNS_1 ((uint32_t)0x00400000) /*!< External event 9 sensitivity bit 1 */
2190
2191 #define HRTIM_EECR2_EE10SRC ((uint32_t)0x03000000) /*!< External event 10 source */
2192 #define HRTIM_EECR2_EE10SRC_0 ((uint32_t)0x01000000) /*!< External event 10 source bit 0 */
2193 #define HRTIM_EECR2_EE10SRC_1 ((uint32_t)0x02000000) /*!< External event 10 source bit 1 */
2194 #define HRTIM_EECR2_EE10POL ((uint32_t)0x04000000) /*!< External event 10 Polarity */
2195 #define HRTIM_EECR2_EE10SNS ((uint32_t)0x18000000) /*!< External event 10 sensitivity */
2196 #define HRTIM_EECR2_EE10SNS_0 ((uint32_t)0x08000000) /*!< External event 10 sensitivity bit 0 */
2197 #define HRTIM_EECR2_EE10SNS_1 ((uint32_t)0x10000000) /*!< External event 10 sensitivity bit 1 */
2198
2199 /******************* Bit definition for HRTIM_EECR3 register ****************/
2200 #define HRTIM_EECR3_EE6F ((uint32_t)0x0000000F) /*!< External event 6 filter */
2201 #define HRTIM_EECR3_EE6F_0 ((uint32_t)0x00000001) /*!< External event 6 filter bit 0 */
2202 #define HRTIM_EECR3_EE6F_1 ((uint32_t)0x00000002) /*!< External event 6 filter bit 1 */
2203 #define HRTIM_EECR3_EE6F_2 ((uint32_t)0x00000004) /*!< External event 6 filter bit 2 */
2204 #define HRTIM_EECR3_EE6F_3 ((uint32_t)0x00000008) /*!< External event 6 filter bit 3 */
2205 #define HRTIM_EECR3_EE7F ((uint32_t)0x000003C0) /*!< External event 7 filter */
2206 #define HRTIM_EECR3_EE7F_0 ((uint32_t)0x00000040) /*!< External event 7 filter bit 0 */
2207 #define HRTIM_EECR3_EE7F_1 ((uint32_t)0x00000080) /*!< External event 7 filter bit 1 */
2208 #define HRTIM_EECR3_EE7F_2 ((uint32_t)0x00000100) /*!< External event 7 filter bit 2 */
2209 #define HRTIM_EECR3_EE7F_3 ((uint32_t)0x00000200) /*!< External event 7 filter bit 3 */
2210 #define HRTIM_EECR3_EE8F ((uint32_t)0x0000F000) /*!< External event 8 filter */
2211 #define HRTIM_EECR3_EE8F_0 ((uint32_t)0x00001000) /*!< External event 8 filter bit 0 */
2212 #define HRTIM_EECR3_EE8F_1 ((uint32_t)0x00002000) /*!< External event 8 filter bit 1 */
2213 #define HRTIM_EECR3_EE8F_2 ((uint32_t)0x00004000) /*!< External event 8 filter bit 2 */
2214 #define HRTIM_EECR3_EE8F_3 ((uint32_t)0x00008000) /*!< External event 8 filter bit 3 */
2215 #define HRTIM_EECR3_EE9F ((uint32_t)0x003C0000) /*!< External event 9 filter */
2216 #define HRTIM_EECR3_EE9F_0 ((uint32_t)0x00040000) /*!< External event 9 filter bit 0 */
2217 #define HRTIM_EECR3_EE9F_1 ((uint32_t)0x00080000) /*!< External event 9 filter bit 1 */
2218 #define HRTIM_EECR3_EE9F_2 ((uint32_t)0x00100000) /*!< External event 9 filter bit 2 */
2219 #define HRTIM_EECR3_EE9F_3 ((uint32_t)0x00200000) /*!< External event 9 filter bit 3 */
2220 #define HRTIM_EECR3_EE10F ((uint32_t)0x0F000000) /*!< External event 10 filter */
2221 #define HRTIM_EECR3_EE10F_0 ((uint32_t)0x01000000) /*!< External event 10 filter bit 0 */
2222 #define HRTIM_EECR3_EE10F_1 ((uint32_t)0x02000000) /*!< External event 10 filter bit 1 */
2223 #define HRTIM_EECR3_EE10F_2 ((uint32_t)0x04000000) /*!< External event 10 filter bit 2 */
2224 #define HRTIM_EECR3_EE10F_3 ((uint32_t)0x08000000) /*!< External event 10 filter bit 3 */
2225 #define HRTIM_EECR3_EEVSD ((uint32_t)0xC0000000) /*!< External event sampling clock division */
2226 #define HRTIM_EECR3_EEVSD_0 ((uint32_t)0x40000000) /*!< External event sampling clock division bit 0 */
2227 #define HRTIM_EECR3_EEVSD_1 ((uint32_t)0x80000000) /*!< External event sampling clock division bit 1 */
2228
2229 /******************* Bit definition for HRTIM_ADC1R register ****************/
2230 #define HRTIM_ADC1R_AD1MC1 ((uint32_t)0x00000001) /*!< ADC Trigger 1 on master compare 1 */
2231 #define HRTIM_ADC1R_AD1MC2 ((uint32_t)0x00000002) /*!< ADC Trigger 1 on master compare 2 */
2232 #define HRTIM_ADC1R_AD1MC3 ((uint32_t)0x00000004) /*!< ADC Trigger 1 on master compare 3 */
2233 #define HRTIM_ADC1R_AD1MC4 ((uint32_t)0x00000008) /*!< ADC Trigger 1 on master compare 4 */
2234 #define HRTIM_ADC1R_AD1MPER ((uint32_t)0x00000010) /*!< ADC Trigger 1 on master period */
2235 #define HRTIM_ADC1R_AD1EEV1 ((uint32_t)0x00000020) /*!< ADC Trigger 1 on external event 1 */
2236 #define HRTIM_ADC1R_AD1EEV2 ((uint32_t)0x00000040) /*!< ADC Trigger 1 on external event 2 */
2237 #define HRTIM_ADC1R_AD1EEV3 ((uint32_t)0x00000080) /*!< ADC Trigger 1 on external event 3 */
2238 #define HRTIM_ADC1R_AD1EEV4 ((uint32_t)0x00000100) /*!< ADC Trigger 1 on external event 4 */
2239 #define HRTIM_ADC1R_AD1EEV5 ((uint32_t)0x00000200) /*!< ADC Trigger 1 on external event 5 */
2240 #define HRTIM_ADC1R_AD1TAC2 ((uint32_t)0x00000400) /*!< ADC Trigger 1 on Timer A compare 2 */
2241 #define HRTIM_ADC1R_AD1TAC3 ((uint32_t)0x00000800) /*!< ADC Trigger 1 on Timer A compare 3 */
2242 #define HRTIM_ADC1R_AD1TAC4 ((uint32_t)0x00001000) /*!< ADC Trigger 1 on Timer A compare 4 */
2243 #define HRTIM_ADC1R_AD1TAPER ((uint32_t)0x00002000) /*!< ADC Trigger 1 on Timer A period */
2244 #define HRTIM_ADC1R_AD1TARST ((uint32_t)0x00004000) /*!< ADC Trigger 1 on Timer A reset */
2245 #define HRTIM_ADC1R_AD1TBC2 ((uint32_t)0x00008000) /*!< ADC Trigger 1 on Timer B compare 2 */
2246 #define HRTIM_ADC1R_AD1TBC3 ((uint32_t)0x00010000) /*!< ADC Trigger 1 on Timer B compare 3 */
2247 #define HRTIM_ADC1R_AD1TBC4 ((uint32_t)0x00020000) /*!< ADC Trigger 1 on Timer B compare 4 */
2248 #define HRTIM_ADC1R_AD1TBPER ((uint32_t)0x00040000) /*!< ADC Trigger 1 on Timer B period */
2249 #define HRTIM_ADC1R_AD1TBRST ((uint32_t)0x00080000) /*!< ADC Trigger 1 on Timer B reset */
2250 #define HRTIM_ADC1R_AD1TCC2 ((uint32_t)0x00100000) /*!< ADC Trigger 1 on Timer C compare 2 */
2251 #define HRTIM_ADC1R_AD1TCC3 ((uint32_t)0x00200000) /*!< ADC Trigger 1 on Timer C compare 3 */
2252 #define HRTIM_ADC1R_AD1TCC4 ((uint32_t)0x00400000) /*!< ADC Trigger 1 on Timer C compare 4 */
2253 #define HRTIM_ADC1R_AD1TCPER ((uint32_t)0x00800000) /*!< ADC Trigger 1 on Timer C period */
2254 #define HRTIM_ADC1R_AD1TDC2 ((uint32_t)0x01000000) /*!< ADC Trigger 1 on Timer D compare 2 */
2255 #define HRTIM_ADC1R_AD1TDC3 ((uint32_t)0x02000000) /*!< ADC Trigger 1 on Timer D compare 3 */
2256 #define HRTIM_ADC1R_AD1TDC4 ((uint32_t)0x04000000) /*!< ADC Trigger 1 on Timer D compare 4 */
2257 #define HRTIM_ADC1R_AD1TDPER ((uint32_t)0x08000000) /*!< ADC Trigger 1 on Timer D period */
2258 #define HRTIM_ADC1R_AD1TEC2 ((uint32_t)0x10000000) /*!< ADC Trigger 1 on Timer E compare 2 */
2259 #define HRTIM_ADC1R_AD1TEC3 ((uint32_t)0x20000000) /*!< ADC Trigger 1 on Timer E compare 3 */
2260 #define HRTIM_ADC1R_AD1TEC4 ((uint32_t)0x40000000) /*!< ADC Trigger 1 on Timer E compare 4 */
2261 #define HRTIM_ADC1R_AD1TEPER ((uint32_t)0x80000000) /*!< ADC Trigger 1 on Timer E period */
2262
2263 /******************* Bit definition for HRTIM_ADC2R register ****************/
2264 #define HRTIM_ADC2R_AD2MC1 ((uint32_t)0x00000001) /*!< ADC Trigger 2 on master compare 1 */
2265 #define HRTIM_ADC2R_AD2MC2 ((uint32_t)0x00000002) /*!< ADC Trigger 2 on master compare 2 */
2266 #define HRTIM_ADC2R_AD2MC3 ((uint32_t)0x00000004) /*!< ADC Trigger 2 on master compare 3 */
2267 #define HRTIM_ADC2R_AD2MC4 ((uint32_t)0x00000008) /*!< ADC Trigger 2 on master compare 4 */
2268 #define HRTIM_ADC2R_AD2MPER ((uint32_t)0x00000010) /*!< ADC Trigger 2 on master period */
2269 #define HRTIM_ADC2R_AD2EEV6 ((uint32_t)0x00000020) /*!< ADC Trigger 2 on external event 6 */
2270 #define HRTIM_ADC2R_AD2EEV7 ((uint32_t)0x00000040) /*!< ADC Trigger 2 on external event 7 */
2271 #define HRTIM_ADC2R_AD2EEV8 ((uint32_t)0x00000080) /*!< ADC Trigger 2 on external event 8 */
2272 #define HRTIM_ADC2R_AD2EEV9 ((uint32_t)0x00000100) /*!< ADC Trigger 2 on external event 9 */
2273 #define HRTIM_ADC2R_AD2EEV10 ((uint32_t)0x00000200) /*!< ADC Trigger 2 on external event 10 */
2274 #define HRTIM_ADC2R_AD2TAC2 ((uint32_t)0x00000400) /*!< ADC Trigger 2 on Timer A compare 2 */
2275 #define HRTIM_ADC2R_AD2TAC3 ((uint32_t)0x00000800) /*!< ADC Trigger 2 on Timer A compare 3 */
2276 #define HRTIM_ADC2R_AD2TAC4 ((uint32_t)0x00001000) /*!< ADC Trigger 2 on Timer A compare 4*/
2277 #define HRTIM_ADC2R_AD2TAPER ((uint32_t)0x00002000) /*!< ADC Trigger 2 on Timer A period */
2278 #define HRTIM_ADC2R_AD2TBC2 ((uint32_t)0x00004000) /*!< ADC Trigger 2 on Timer B compare 2 */
2279 #define HRTIM_ADC2R_AD2TBC3 ((uint32_t)0x00008000) /*!< ADC Trigger 2 on Timer B compare 3 */
2280 #define HRTIM_ADC2R_AD2TBC4 ((uint32_t)0x00010000) /*!< ADC Trigger 2 on Timer B compare 4 */
2281 #define HRTIM_ADC2R_AD2TBPER ((uint32_t)0x00020000) /*!< ADC Trigger 2 on Timer B period */
2282 #define HRTIM_ADC2R_AD2TCC2 ((uint32_t)0x00040000) /*!< ADC Trigger 2 on Timer C compare 2 */
2283 #define HRTIM_ADC2R_AD2TCC3 ((uint32_t)0x00080000) /*!< ADC Trigger 2 on Timer C compare 3 */
2284 #define HRTIM_ADC2R_AD2TCC4 ((uint32_t)0x00100000) /*!< ADC Trigger 2 on Timer C compare 4 */
2285 #define HRTIM_ADC2R_AD2TCPER ((uint32_t)0x00200000) /*!< ADC Trigger 2 on Timer C period */
2286 #define HRTIM_ADC2R_AD2TCRST ((uint32_t)0x00400000) /*!< ADC Trigger 2 on Timer C reset */
2287 #define HRTIM_ADC2R_AD2TDC2 ((uint32_t)0x00800000) /*!< ADC Trigger 2 on Timer D compare 2 */
2288 #define HRTIM_ADC2R_AD2TDC3 ((uint32_t)0x01000000) /*!< ADC Trigger 2 on Timer D compare 3 */
2289 #define HRTIM_ADC2R_AD2TDC4 ((uint32_t)0x02000000) /*!< ADC Trigger 2 on Timer D compare 4*/
2290 #define HRTIM_ADC2R_AD2TDPER ((uint32_t)0x04000000) /*!< ADC Trigger 2 on Timer D period */
2291 #define HRTIM_ADC2R_AD2TDRST ((uint32_t)0x08000000) /*!< ADC Trigger 2 on Timer D reset */
2292 #define HRTIM_ADC2R_AD2TEC2 ((uint32_t)0x10000000) /*!< ADC Trigger 2 on Timer E compare 2 */
2293 #define HRTIM_ADC2R_AD2TEC3 ((uint32_t)0x20000000) /*!< ADC Trigger 2 on Timer E compare 3 */
2294 #define HRTIM_ADC2R_AD2TEC4 ((uint32_t)0x40000000) /*!< ADC Trigger 2 on Timer E compare 4 */
2295 #define HRTIM_ADC2R_AD2TERST ((uint32_t)0x80000000) /*!< ADC Trigger 2 on Timer E reset */
2296
2297 /******************* Bit definition for HRTIM_ADC3R register ****************/
2298 #define HRTIM_ADC3R_AD3MC1 ((uint32_t)0x00000001) /*!< ADC Trigger 3 on master compare 1 */
2299 #define HRTIM_ADC3R_AD3MC2 ((uint32_t)0x00000002) /*!< ADC Trigger 3 on master compare 2 */
2300 #define HRTIM_ADC3R_AD3MC3 ((uint32_t)0x00000004) /*!< ADC Trigger 3 on master compare 3 */
2301 #define HRTIM_ADC3R_AD3MC4 ((uint32_t)0x00000008) /*!< ADC Trigger 3 on master compare 4 */
2302 #define HRTIM_ADC3R_AD3MPER ((uint32_t)0x00000010) /*!< ADC Trigger 3 on master period */
2303 #define HRTIM_ADC3R_AD3EEV1 ((uint32_t)0x00000020) /*!< ADC Trigger 3 on external event 1 */
2304 #define HRTIM_ADC3R_AD3EEV2 ((uint32_t)0x00000040) /*!< ADC Trigger 3 on external event 2 */
2305 #define HRTIM_ADC3R_AD3EEV3 ((uint32_t)0x00000080) /*!< ADC Trigger 3 on external event 3 */
2306 #define HRTIM_ADC3R_AD3EEV4 ((uint32_t)0x00000100) /*!< ADC Trigger 3 on external event 4 */
2307 #define HRTIM_ADC3R_AD3EEV5 ((uint32_t)0x00000200) /*!< ADC Trigger 3 on external event 5 */
2308 #define HRTIM_ADC3R_AD3TAC2 ((uint32_t)0x00000400) /*!< ADC Trigger 3 on Timer A compare 2 */
2309 #define HRTIM_ADC3R_AD3TAC3 ((uint32_t)0x00000800) /*!< ADC Trigger 3 on Timer A compare 3 */
2310 #define HRTIM_ADC3R_AD3TAC4 ((uint32_t)0x00001000) /*!< ADC Trigger 3 on Timer A compare 4 */
2311 #define HRTIM_ADC3R_AD3TAPER ((uint32_t)0x00002000) /*!< ADC Trigger 3 on Timer A period */
2312 #define HRTIM_ADC3R_AD3TARST ((uint32_t)0x00004000) /*!< ADC Trigger 3 on Timer A reset */
2313 #define HRTIM_ADC3R_AD3TBC2 ((uint32_t)0x00008000) /*!< ADC Trigger 3 on Timer B compare 2 */
2314 #define HRTIM_ADC3R_AD3TBC3 ((uint32_t)0x00010000) /*!< ADC Trigger 3 on Timer B compare 3 */
2315 #define HRTIM_ADC3R_AD3TBC4 ((uint32_t)0x00020000) /*!< ADC Trigger 3 on Timer B compare 4 */
2316 #define HRTIM_ADC3R_AD3TBPER ((uint32_t)0x00040000) /*!< ADC Trigger 3 on Timer B period */
2317 #define HRTIM_ADC3R_AD3TBRST ((uint32_t)0x00080000) /*!< ADC Trigger 3 on Timer B reset */
2318 #define HRTIM_ADC3R_AD3TCC2 ((uint32_t)0x00100000) /*!< ADC Trigger 3 on Timer C compare 2 */
2319 #define HRTIM_ADC3R_AD3TCC3 ((uint32_t)0x00200000) /*!< ADC Trigger 3 on Timer C compare 3 */
2320 #define HRTIM_ADC3R_AD3TCC4 ((uint32_t)0x00400000) /*!< ADC Trigger 3 on Timer C compare 4 */
2321 #define HRTIM_ADC3R_AD3TCPER ((uint32_t)0x00800000) /*!< ADC Trigger 3 on Timer C period */
2322 #define HRTIM_ADC3R_AD3TDC2 ((uint32_t)0x01000000) /*!< ADC Trigger 3 on Timer D compare 2 */
2323 #define HRTIM_ADC3R_AD3TDC3 ((uint32_t)0x02000000) /*!< ADC Trigger 3 on Timer D compare 3 */
2324 #define HRTIM_ADC3R_AD3TDC4 ((uint32_t)0x04000000) /*!< ADC Trigger 3 on Timer D compare 4 */
2325 #define HRTIM_ADC3R_AD3TDPER ((uint32_t)0x08000000) /*!< ADC Trigger 3 on Timer D period */
2326 #define HRTIM_ADC3R_AD3TEC2 ((uint32_t)0x10000000) /*!< ADC Trigger 3 on Timer E compare 2 */
2327 #define HRTIM_ADC3R_AD3TEC3 ((uint32_t)0x20000000) /*!< ADC Trigger 3 on Timer E compare 3 */
2328 #define HRTIM_ADC3R_AD3TEC4 ((uint32_t)0x40000000) /*!< ADC Trigger 3 on Timer E compare 4 */
2329 #define HRTIM_ADC3R_AD3TEPER ((uint32_t)0x80000000) /*!< ADC Trigger 3 on Timer E period */
2330
2331 /******************* Bit definition for HRTIM_ADC4R register ****************/
2332 #define HRTIM_ADC4R_AD4MC1 ((uint32_t)0x00000001) /*!< ADC Trigger 4 on master compare 1 */
2333 #define HRTIM_ADC4R_AD4MC2 ((uint32_t)0x00000002) /*!< ADC Trigger 4 on master compare 2 */
2334 #define HRTIM_ADC4R_AD4MC3 ((uint32_t)0x00000004) /*!< ADC Trigger 4 on master compare 3 */
2335 #define HRTIM_ADC4R_AD4MC4 ((uint32_t)0x00000008) /*!< ADC Trigger 4 on master compare 4 */
2336 #define HRTIM_ADC4R_AD4MPER ((uint32_t)0x00000010) /*!< ADC Trigger 4 on master period */
2337 #define HRTIM_ADC4R_AD4EEV6 ((uint32_t)0x00000020) /*!< ADC Trigger 4 on external event 6 */
2338 #define HRTIM_ADC4R_AD4EEV7 ((uint32_t)0x00000040) /*!< ADC Trigger 4 on external event 7 */
2339 #define HRTIM_ADC4R_AD4EEV8 ((uint32_t)0x00000080) /*!< ADC Trigger 4 on external event 8 */
2340 #define HRTIM_ADC4R_AD4EEV9 ((uint32_t)0x00000100) /*!< ADC Trigger 4 on external event 9 */
2341 #define HRTIM_ADC4R_AD4EEV10 ((uint32_t)0x00000200) /*!< ADC Trigger 4 on external event 10 */
2342 #define HRTIM_ADC4R_AD4TAC2 ((uint32_t)0x00000400) /*!< ADC Trigger 4 on Timer A compare 2 */
2343 #define HRTIM_ADC4R_AD4TAC3 ((uint32_t)0x00000800) /*!< ADC Trigger 4 on Timer A compare 3 */
2344 #define HRTIM_ADC4R_AD4TAC4 ((uint32_t)0x00001000) /*!< ADC Trigger 4 on Timer A compare 4*/
2345 #define HRTIM_ADC4R_AD4TAPER ((uint32_t)0x00002000) /*!< ADC Trigger 4 on Timer A period */
2346 #define HRTIM_ADC4R_AD4TBC2 ((uint32_t)0x00004000) /*!< ADC Trigger 4 on Timer B compare 2 */
2347 #define HRTIM_ADC4R_AD4TBC3 ((uint32_t)0x00008000) /*!< ADC Trigger 4 on Timer B compare 3 */
2348 #define HRTIM_ADC4R_AD4TBC4 ((uint32_t)0x00010000) /*!< ADC Trigger 4 on Timer B compare 4 */
2349 #define HRTIM_ADC4R_AD4TBPER ((uint32_t)0x00020000) /*!< ADC Trigger 4 on Timer B period */
2350 #define HRTIM_ADC4R_AD4TCC2 ((uint32_t)0x00040000) /*!< ADC Trigger 4 on Timer C compare 2 */
2351 #define HRTIM_ADC4R_AD4TCC3 ((uint32_t)0x00080000) /*!< ADC Trigger 4 on Timer C compare 3 */
2352 #define HRTIM_ADC4R_AD4TCC4 ((uint32_t)0x00100000) /*!< ADC Trigger 4 on Timer C compare 4 */
2353 #define HRTIM_ADC4R_AD4TCPER ((uint32_t)0x00200000) /*!< ADC Trigger 4 on Timer C period */
2354 #define HRTIM_ADC4R_AD4TCRST ((uint32_t)0x00400000) /*!< ADC Trigger 4 on Timer C reset */
2355 #define HRTIM_ADC4R_AD4TDC2 ((uint32_t)0x00800000) /*!< ADC Trigger 4 on Timer D compare 2 */
2356 #define HRTIM_ADC4R_AD4TDC3 ((uint32_t)0x01000000) /*!< ADC Trigger 4 on Timer D compare 3 */
2357 #define HRTIM_ADC4R_AD4TDC4 ((uint32_t)0x02000000) /*!< ADC Trigger 4 on Timer D compare 4*/
2358 #define HRTIM_ADC4R_AD4TDPER ((uint32_t)0x04000000) /*!< ADC Trigger 4 on Timer D period */
2359 #define HRTIM_ADC4R_AD4TDRST ((uint32_t)0x08000000) /*!< ADC Trigger 4 on Timer D reset */
2360 #define HRTIM_ADC4R_AD4TEC2 ((uint32_t)0x10000000) /*!< ADC Trigger 4 on Timer E compare 2 */
2361 #define HRTIM_ADC4R_AD4TEC3 ((uint32_t)0x20000000) /*!< ADC Trigger 4 on Timer E compare 3 */
2362 #define HRTIM_ADC4R_AD4TEC4 ((uint32_t)0x40000000) /*!< ADC Trigger 4 on Timer E compare 4 */
2363 #define HRTIM_ADC4R_AD4TERST ((uint32_t)0x80000000) /*!< ADC Trigger 4 on Timer E reset */
2364
2365 /******************* Bit definition for HRTIM_DLLCR register ****************/
2366 #define HRTIM_DLLCR_CAL ((uint32_t)0x00000001) /*!< DLL calibration start */
2367 #define HRTIM_DLLCR_CALEN ((uint32_t)0x00000002) /*!< DLL calibration enable */
2368 #define HRTIM_DLLCR_CALRTE ((uint32_t)0x0000000C) /*!< DLL calibration rate */
2369 #define HRTIM_DLLCR_CALRTE_0 ((uint32_t)0x00000004) /*!< DLL calibration rate bit 0 */
2370 #define HRTIM_DLLCR_CALRTE_1 ((uint32_t)0x00000008) /*!< DLL calibration rate bit 1 */
2371
2372 /******************* Bit definition for HRTIM_FLTINR1 register ***************/
2373 #define HRTIM_FLTINR1_FLT1E ((uint32_t)0x00000001) /*!< Fault 1 enable */
2374 #define HRTIM_FLTINR1_FLT1P ((uint32_t)0x00000002) /*!< Fault 1 polarity */
2375 #define HRTIM_FLTINR1_FLT1SRC ((uint32_t)0x00000004) /*!< Fault 1 source */
2376 #define HRTIM_FLTINR1_FLT1F ((uint32_t)0x00000078) /*!< Fault 1 filter */
2377 #define HRTIM_FLTINR1_FLT1F_0 ((uint32_t)0x00000008) /*!< Fault 1 filter bit 0 */
2378 #define HRTIM_FLTINR1_FLT1F_1 ((uint32_t)0x00000010) /*!< Fault 1 filter bit 1 */
2379 #define HRTIM_FLTINR1_FLT1F_2 ((uint32_t)0x00000020) /*!< Fault 1 filter bit 2 */
2380 #define HRTIM_FLTINR1_FLT1F_3 ((uint32_t)0x00000040) /*!< Fault 1 filter bit 3 */
2381 #define HRTIM_FLTINR1_FLT1LCK ((uint32_t)0x00000080) /*!< Fault 1 lock */
2382
2383 #define HRTIM_FLTINR1_FLT2E ((uint32_t)0x00000100) /*!< Fault 2 enable */
2384 #define HRTIM_FLTINR1_FLT2P ((uint32_t)0x00000200) /*!< Fault 2 polarity */
2385 #define HRTIM_FLTINR1_FLT2SRC ((uint32_t)0x00000400) /*!< Fault 2 source */
2386 #define HRTIM_FLTINR1_FLT2F ((uint32_t)0x00007800) /*!< Fault 2 filter */
2387 #define HRTIM_FLTINR1_FLT2F_0 ((uint32_t)0x00000800) /*!< Fault 2 filter bit 0 */
2388 #define HRTIM_FLTINR1_FLT2F_1 ((uint32_t)0x00001000) /*!< Fault 2 filter bit 1 */
2389 #define HRTIM_FLTINR1_FLT2F_2 ((uint32_t)0x00002000) /*!< Fault 2 filter bit 2 */
2390 #define HRTIM_FLTINR1_FLT2F_3 ((uint32_t)0x00004000) /*!< Fault 2 filter bit 3 */
2391 #define HRTIM_FLTINR1_FLT2LCK ((uint32_t)0x00008000) /*!< Fault 2 lock */
2392
2393 #define HRTIM_FLTINR1_FLT3E ((uint32_t)0x00010000) /*!< Fault 3 enable */
2394 #define HRTIM_FLTINR1_FLT3P ((uint32_t)0x00020000) /*!< Fault 3 polarity */
2395 #define HRTIM_FLTINR1_FLT3SRC ((uint32_t)0x00040000) /*!< Fault 3 source */
2396 #define HRTIM_FLTINR1_FLT3F ((uint32_t)0x00780000) /*!< Fault 3 filter */
2397 #define HRTIM_FLTINR1_FLT3F_0 ((uint32_t)0x00080000) /*!< Fault 3 filter bit 0 */
2398 #define HRTIM_FLTINR1_FLT3F_1 ((uint32_t)0x00100000) /*!< Fault 3 filter bit 1 */
2399 #define HRTIM_FLTINR1_FLT3F_2 ((uint32_t)0x00200000) /*!< Fault 3 filter bit 2 */
2400 #define HRTIM_FLTINR1_FLT3F_3 ((uint32_t)0x00400000) /*!< Fault 3 filter bit 3 */
2401 #define HRTIM_FLTINR1_FLT3LCK ((uint32_t)0x00800000) /*!< Fault 3 lock */
2402
2403 #define HRTIM_FLTINR1_FLT4E ((uint32_t)0x01000000) /*!< Fault 4 enable */
2404 #define HRTIM_FLTINR1_FLT4P ((uint32_t)0x02000000) /*!< Fault 4 polarity */
2405 #define HRTIM_FLTINR1_FLT4SRC ((uint32_t)0x04000000) /*!< Fault 4 source */
2406 #define HRTIM_FLTINR1_FLT4F ((uint32_t)0x78000000) /*!< Fault 4 filter */
2407 #define HRTIM_FLTINR1_FLT4F_0 ((uint32_t)0x08000000) /*!< Fault 4 filter bit 0 */
2408 #define HRTIM_FLTINR1_FLT4F_1 ((uint32_t)0x10000000) /*!< Fault 4 filter bit 1 */
2409 #define HRTIM_FLTINR1_FLT4F_2 ((uint32_t)0x20000000) /*!< Fault 4 filter bit 2 */
2410 #define HRTIM_FLTINR1_FLT4F_3 ((uint32_t)0x40000000) /*!< Fault 4 filter bit 3 */
2411 #define HRTIM_FLTINR1_FLT4LCK ((uint32_t)0x80000000) /*!< Fault 4 lock */
2412
2413 /******************* Bit definition for HRTIM_FLTINR2 register ***************/
2414 #define HRTIM_FLTINR2_FLT5E ((uint32_t)0x00000001) /*!< Fault 5 enable */
2415 #define HRTIM_FLTINR2_FLT5P ((uint32_t)0x00000002) /*!< Fault 5 polarity */
2416 #define HRTIM_FLTINR2_FLT5SRC ((uint32_t)0x00000004) /*!< Fault 5 source */
2417 #define HRTIM_FLTINR2_FLT5F ((uint32_t)0x00000078) /*!< Fault 5 filter */
2418 #define HRTIM_FLTINR2_FLT5F_0 ((uint32_t)0x00000008) /*!< Fault 5 filter bit 0 */
2419 #define HRTIM_FLTINR2_FLT5F_1 ((uint32_t)0x00000010) /*!< Fault 5 filter bit 1 */
2420 #define HRTIM_FLTINR2_FLT5F_2 ((uint32_t)0x00000020) /*!< Fault 5 filter bit 2 */
2421 #define HRTIM_FLTINR2_FLT5F_3 ((uint32_t)0x00000040) /*!< Fault 5 filter bit 3 */
2422 #define HRTIM_FLTINR2_FLT5LCK ((uint32_t)0x00000080) /*!< Fault 5 lock */
2423 #define HRTIM_FLTINR2_FLTSD ((uint32_t)0x03000000) /*!< Fault sampling clock division */
2424 #define HRTIM_FLTINR2_FLTSD_0 ((uint32_t)0x01000000) /*!< Fault sampling clock division bit 0 */
2425 #define HRTIM_FLTINR2_FLTSD_1 ((uint32_t)0x02000000) /*!< Fault sampling clock division bit 1 */
2426
2427 /******************* Bit definition for HRTIM_BDMUPR register ***************/
2428 #define HRTIM_BDMUPR_MCR ((uint32_t)0x00000001) /*!< MCR register update enable */
2429 #define HRTIM_BDMUPR_MICR ((uint32_t)0x00000002) /*!< MICR register update enable */
2430 #define HRTIM_BDMUPR_MDIER ((uint32_t)0x00000004) /*!< MDIER register update enable */
2431 #define HRTIM_BDMUPR_MCNT ((uint32_t)0x00000008) /*!< MCNT register update enable */
2432 #define HRTIM_BDMUPR_MPER ((uint32_t)0x00000010) /*!< MPER register update enable */
2433 #define HRTIM_BDMUPR_MREP ((uint32_t)0x00000020) /*!< MREP register update enable */
2434 #define HRTIM_BDMUPR_MCMP1 ((uint32_t)0x00000040) /*!< MCMP1 register update enable */
2435 #define HRTIM_BDMUPR_MCMP2 ((uint32_t)0x00000080) /*!< MCMP2 register update enable */
2436 #define HRTIM_BDMUPR_MCMP3 ((uint32_t)0x00000100) /*!< MCMP3 register update enable */
2437 #define HRTIM_BDMUPR_MCMP4 ((uint32_t)0x00000200) /*!< MPCMP4 register update enable */
2438
2439 /******************* Bit definition for HRTIM_BDTUPR register ***************/
2440 #define HRTIM_BDTUPR_TIMCR ((uint32_t)0x00000001) /*!< TIMCR register update enable */
2441 #define HRTIM_BDTUPR_TIMICR ((uint32_t)0x00000002) /*!< TIMICR register update enable */
2442 #define HRTIM_BDTUPR_TIMDIER ((uint32_t)0x00000004) /*!< TIMDIER register update enable */
2443 #define HRTIM_BDTUPR_TIMCNT ((uint32_t)0x00000008) /*!< TIMCNT register update enable */
2444 #define HRTIM_BDTUPR_TIMPER ((uint32_t)0x00000010) /*!< TIMPER register update enable */
2445 #define HRTIM_BDTUPR_TIMREP ((uint32_t)0x00000020) /*!< TIMREP register update enable */
2446 #define HRTIM_BDTUPR_TIMCMP1 ((uint32_t)0x00000040) /*!< TIMCMP1 register update enable */
2447 #define HRTIM_BDTUPR_TIMCMP2 ((uint32_t)0x00000080) /*!< TIMCMP2 register update enable */
2448 #define HRTIM_BDTUPR_TIMCMP3 ((uint32_t)0x00000100) /*!< TIMCMP3 register update enable */
2449 #define HRTIM_BDTUPR_TIMCMP4 ((uint32_t)0x00000200) /*!< TIMCMP4 register update enable */
2450 #define HRTIM_BDTUPR_TIMDTR ((uint32_t)0x00000400) /*!< TIMDTR register update enable */
2451 #define HRTIM_BDTUPR_TIMSET1R ((uint32_t)0x00000800) /*!< TIMSET1R register update enable */
2452 #define HRTIM_BDTUPR_TIMRST1R ((uint32_t)0x00001000) /*!< TIMRST1R register update enable */
2453 #define HRTIM_BDTUPR_TIMSET2R ((uint32_t)0x00002000) /*!< TIMSET2R register update enable */
2454 #define HRTIM_BDTUPR_TIMRST2R ((uint32_t)0x00004000) /*!< TIMRST2R register update enable */
2455 #define HRTIM_BDTUPR_TIMEEFR1 ((uint32_t)0x00008000) /*!< TIMEEFR1 register update enable */
2456 #define HRTIM_BDTUPR_TIMEEFR2 ((uint32_t)0x00010000) /*!< TIMEEFR2 register update enable */
2457 #define HRTIM_BDTUPR_TIMRSTR ((uint32_t)0x00020000) /*!< TIMRSTR register update enable */
2458 #define HRTIM_BDTUPR_TIMCHPR ((uint32_t)0x00040000) /*!< TIMCHPR register update enable */
2459 #define HRTIM_BDTUPR_TIMOUTR ((uint32_t)0x00080000) /*!< TIMOUTR register update enable */
2460 #define HRTIM_BDTUPR_TIMFLTR ((uint32_t)0x00100000) /*!< TIMFLTR register update enable */
2461
2462 /******************* Bit definition for HRTIM_BDMADR register ***************/
2463 #define HRTIM_BDMADR_BDMADR ((uint32_t)0xFFFFFFFF) /*!< Burst DMA Data register */
2464
2465 /******************************************************************************/
2466 /* */
2467 /* Analog to Digital Converter SAR (ADC) */
2468 /* */
2469 /******************************************************************************/
2470 /******************** Bit definition for ADC_ISR register ********************/
2471 #define ADC_ISR_ADRD ((uint32_t)0x00000001) /*!< ADC Ready (ADRDY) flag */
2472 #define ADC_ISR_EOSMP ((uint32_t)0x00000002) /*!< ADC End of Sampling flag */
2473 #define ADC_ISR_EOC ((uint32_t)0x00000004) /*!< ADC End of Regular Conversion flag */
2474 #define ADC_ISR_EOS ((uint32_t)0x00000008) /*!< ADC End of Regular sequence of Conversions flag */
2475 #define ADC_ISR_OVR ((uint32_t)0x00000010) /*!< ADC overrun flag */
2476 #define ADC_ISR_JEOC ((uint32_t)0x00000020) /*!< ADC End of Injected Conversion flag */
2477 #define ADC_ISR_JEOS ((uint32_t)0x00000040) /*!< ADC End of Injected sequence of Conversions flag */
2478 #define ADC_ISR_AWD1 ((uint32_t)0x00000080) /*!< ADC Analog watchdog 1 flag */
2479 #define ADC_ISR_AWD2 ((uint32_t)0x00000100) /*!< ADC Analog watchdog 2 flag */
2480 #define ADC_ISR_AWD3 ((uint32_t)0x00000200) /*!< ADC Analog watchdog 3 flag */
2481 #define ADC_ISR_JQOVF ((uint32_t)0x00000400) /*!< ADC Injected Context Queue Overflow flag */
2482
2483 /******************** Bit definition for ADC_IER register ********************/
2484 #define ADC_IER_RDY ((uint32_t)0x00000001) /*!< ADC Ready (ADRDY) interrupt source */
2485 #define ADC_IER_EOSMP ((uint32_t)0x00000002) /*!< ADC End of Sampling interrupt source */
2486 #define ADC_IER_EOC ((uint32_t)0x00000004) /*!< ADC End of Regular Conversion interrupt source */
2487 #define ADC_IER_EOS ((uint32_t)0x00000008) /*!< ADC End of Regular sequence of Conversions interrupt source */
2488 #define ADC_IER_OVR ((uint32_t)0x00000010) /*!< ADC overrun interrupt source */
2489 #define ADC_IER_JEOC ((uint32_t)0x00000020) /*!< ADC End of Injected Conversion interrupt source */
2490 #define ADC_IER_JEOS ((uint32_t)0x00000040) /*!< ADC End of Injected sequence of Conversions interrupt source */
2491 #define ADC_IER_AWD1 ((uint32_t)0x00000080) /*!< ADC Analog watchdog 1 interrupt source */
2492 #define ADC_IER_AWD2 ((uint32_t)0x00000100) /*!< ADC Analog watchdog 2 interrupt source */
2493 #define ADC_IER_AWD3 ((uint32_t)0x00000200) /*!< ADC Analog watchdog 3 interrupt source */
2494 #define ADC_IER_JQOVF ((uint32_t)0x00000400) /*!< ADC Injected Context Queue Overflow interrupt source */
2495
2496 /******************** Bit definition for ADC_CR register ********************/
2497 #define ADC_CR_ADEN ((uint32_t)0x00000001) /*!< ADC Enable control */
2498 #define ADC_CR_ADDIS ((uint32_t)0x00000002) /*!< ADC Disable command */
2499 #define ADC_CR_ADSTART ((uint32_t)0x00000004) /*!< ADC Start of Regular conversion */
2500 #define ADC_CR_JADSTART ((uint32_t)0x00000008) /*!< ADC Start of injected conversion */
2501 #define ADC_CR_ADSTP ((uint32_t)0x00000010) /*!< ADC Stop of Regular conversion */
2502 #define ADC_CR_JADSTP ((uint32_t)0x00000020) /*!< ADC Stop of injected conversion */
2503 #define ADC_CR_ADVREGEN ((uint32_t)0x30000000) /*!< ADC Voltage regulator Enable */
2504 #define ADC_CR_ADVREGEN_0 ((uint32_t)0x10000000) /*!< ADC ADVREGEN bit 0 */
2505 #define ADC_CR_ADVREGEN_1 ((uint32_t)0x20000000) /*!< ADC ADVREGEN bit 1 */
2506 #define ADC_CR_ADCALDIF ((uint32_t)0x40000000) /*!< ADC Differential Mode for calibration */
2507 #define ADC_CR_ADCAL ((uint32_t)0x80000000) /*!< ADC Calibration */
2508
2509 /******************** Bit definition for ADC_CFGR register ********************/
2510 #define ADC_CFGR_DMAEN ((uint32_t)0x00000001) /*!< ADC DMA Enable */
2511 #define ADC_CFGR_DMACFG ((uint32_t)0x00000002) /*!< ADC DMA configuration */
2512
2513 #define ADC_CFGR_RES ((uint32_t)0x00000018) /*!< ADC Data resolution */
2514 #define ADC_CFGR_RES_0 ((uint32_t)0x00000008) /*!< ADC RES bit 0 */
2515 #define ADC_CFGR_RES_1 ((uint32_t)0x00000010) /*!< ADC RES bit 1 */
2516
2517 #define ADC_CFGR_ALIGN ((uint32_t)0x00000020) /*!< ADC Data Alignment */
2518
2519 #define ADC_CFGR_EXTSEL ((uint32_t)0x000003C0) /*!< ADC External trigger selection for regular group */
2520 #define ADC_CFGR_EXTSEL_0 ((uint32_t)0x00000040) /*!< ADC EXTSEL bit 0 */
2521 #define ADC_CFGR_EXTSEL_1 ((uint32_t)0x00000080) /*!< ADC EXTSEL bit 1 */
2522 #define ADC_CFGR_EXTSEL_2 ((uint32_t)0x00000100) /*!< ADC EXTSEL bit 2 */
2523 #define ADC_CFGR_EXTSEL_3 ((uint32_t)0x00000200) /*!< ADC EXTSEL bit 3 */
2524
2525 #define ADC_CFGR_EXTEN ((uint32_t)0x00000C00) /*!< ADC External trigger enable and polarity selection for regular channels */
2526 #define ADC_CFGR_EXTEN_0 ((uint32_t)0x00000400) /*!< ADC EXTEN bit 0 */
2527 #define ADC_CFGR_EXTEN_1 ((uint32_t)0x00000800) /*!< ADC EXTEN bit 1 */
2528
2529 #define ADC_CFGR_OVRMOD ((uint32_t)0x00001000) /*!< ADC overrun mode */
2530 #define ADC_CFGR_CONT ((uint32_t)0x00002000) /*!< ADC Single/continuous conversion mode for regular conversion */
2531 #define ADC_CFGR_AUTDLY ((uint32_t)0x00004000) /*!< ADC Delayed conversion mode */
2532 #define ADC_CFGR_DISCEN ((uint32_t)0x00010000) /*!< ADC Discontinuous mode for regular channels */
2533
2534 #define ADC_CFGR_DISCNUM ((uint32_t)0x000E0000) /*!< ADC Discontinuous mode channel count */
2535 #define ADC_CFGR_DISCNUM_0 ((uint32_t)0x00020000) /*!< ADC DISCNUM bit 0 */
2536 #define ADC_CFGR_DISCNUM_1 ((uint32_t)0x00040000) /*!< ADC DISCNUM bit 1 */
2537 #define ADC_CFGR_DISCNUM_2 ((uint32_t)0x00080000) /*!< ADC DISCNUM bit 2 */
2538
2539 #define ADC_CFGR_JDISCEN ((uint32_t)0x00100000) /*!< ADC Discontinuous mode on injected channels */
2540 #define ADC_CFGR_JQM ((uint32_t)0x00200000) /*!< ADC JSQR Queue mode */
2541 #define ADC_CFGR_AWD1SGL ((uint32_t)0x00400000) /*!< Enable the watchdog 1 on a single channel or on all channels */
2542 #define ADC_CFGR_AWD1EN ((uint32_t)0x00800000) /*!< ADC Analog watchdog 1 enable on regular Channels */
2543 #define ADC_CFGR_JAWD1EN ((uint32_t)0x01000000) /*!< ADC Analog watchdog 1 enable on injected Channels */
2544 #define ADC_CFGR_JAUTO ((uint32_t)0x02000000) /*!< ADC Automatic injected group conversion */
2545
2546 #define ADC_CFGR_AWD1CH ((uint32_t)0x7C000000) /*!< ADC Analog watchdog 1 Channel selection */
2547 #define ADC_CFGR_AWD1CH_0 ((uint32_t)0x04000000) /*!< ADC AWD1CH bit 0 */
2548 #define ADC_CFGR_AWD1CH_1 ((uint32_t)0x08000000) /*!< ADC AWD1CH bit 1 */
2549 #define ADC_CFGR_AWD1CH_2 ((uint32_t)0x10000000) /*!< ADC AWD1CH bit 2 */
2550 #define ADC_CFGR_AWD1CH_3 ((uint32_t)0x20000000) /*!< ADC AWD1CH bit 3 */
2551 #define ADC_CFGR_AWD1CH_4 ((uint32_t)0x40000000) /*!< ADC AWD1CH bit 4 */
2552
2553 /******************** Bit definition for ADC_SMPR1 register ********************/
2554 #define ADC_SMPR1_SMP0 ((uint32_t)0x00000007) /*!< ADC Channel 0 Sampling time selection */
2555 #define ADC_SMPR1_SMP0_0 ((uint32_t)0x00000001) /*!< ADC SMP0 bit 0 */
2556 #define ADC_SMPR1_SMP0_1 ((uint32_t)0x00000002) /*!< ADC SMP0 bit 1 */
2557 #define ADC_SMPR1_SMP0_2 ((uint32_t)0x00000004) /*!< ADC SMP0 bit 2 */
2558
2559 #define ADC_SMPR1_SMP1 ((uint32_t)0x00000038) /*!< ADC Channel 1 Sampling time selection */
2560 #define ADC_SMPR1_SMP1_0 ((uint32_t)0x00000008) /*!< ADC SMP1 bit 0 */
2561 #define ADC_SMPR1_SMP1_1 ((uint32_t)0x00000010) /*!< ADC SMP1 bit 1 */
2562 #define ADC_SMPR1_SMP1_2 ((uint32_t)0x00000020) /*!< ADC SMP1 bit 2 */
2563
2564 #define ADC_SMPR1_SMP2 ((uint32_t)0x000001C0) /*!< ADC Channel 2 Sampling time selection */
2565 #define ADC_SMPR1_SMP2_0 ((uint32_t)0x00000040) /*!< ADC SMP2 bit 0 */
2566 #define ADC_SMPR1_SMP2_1 ((uint32_t)0x00000080) /*!< ADC SMP2 bit 1 */
2567 #define ADC_SMPR1_SMP2_2 ((uint32_t)0x00000100) /*!< ADC SMP2 bit 2 */
2568
2569 #define ADC_SMPR1_SMP3 ((uint32_t)0x00000E00) /*!< ADC Channel 3 Sampling time selection */
2570 #define ADC_SMPR1_SMP3_0 ((uint32_t)0x00000200) /*!< ADC SMP3 bit 0 */
2571 #define ADC_SMPR1_SMP3_1 ((uint32_t)0x00000400) /*!< ADC SMP3 bit 1 */
2572 #define ADC_SMPR1_SMP3_2 ((uint32_t)0x00000800) /*!< ADC SMP3 bit 2 */
2573
2574 #define ADC_SMPR1_SMP4 ((uint32_t)0x00007000) /*!< ADC Channel 4 Sampling time selection */
2575 #define ADC_SMPR1_SMP4_0 ((uint32_t)0x00001000) /*!< ADC SMP4 bit 0 */
2576 #define ADC_SMPR1_SMP4_1 ((uint32_t)0x00002000) /*!< ADC SMP4 bit 1 */
2577 #define ADC_SMPR1_SMP4_2 ((uint32_t)0x00004000) /*!< ADC SMP4 bit 2 */
2578
2579 #define ADC_SMPR1_SMP5 ((uint32_t)0x00038000) /*!< ADC Channel 5 Sampling time selection */
2580 #define ADC_SMPR1_SMP5_0 ((uint32_t)0x00008000) /*!< ADC SMP5 bit 0 */
2581 #define ADC_SMPR1_SMP5_1 ((uint32_t)0x00010000) /*!< ADC SMP5 bit 1 */
2582 #define ADC_SMPR1_SMP5_2 ((uint32_t)0x00020000) /*!< ADC SMP5 bit 2 */
2583
2584 #define ADC_SMPR1_SMP6 ((uint32_t)0x001C0000) /*!< ADC Channel 6 Sampling time selection */
2585 #define ADC_SMPR1_SMP6_0 ((uint32_t)0x00040000) /*!< ADC SMP6 bit 0 */
2586 #define ADC_SMPR1_SMP6_1 ((uint32_t)0x00080000) /*!< ADC SMP6 bit 1 */
2587 #define ADC_SMPR1_SMP6_2 ((uint32_t)0x00100000) /*!< ADC SMP6 bit 2 */
2588
2589 #define ADC_SMPR1_SMP7 ((uint32_t)0x00E00000) /*!< ADC Channel 7 Sampling time selection */
2590 #define ADC_SMPR1_SMP7_0 ((uint32_t)0x00200000) /*!< ADC SMP7 bit 0 */
2591 #define ADC_SMPR1_SMP7_1 ((uint32_t)0x00400000) /*!< ADC SMP7 bit 1 */
2592 #define ADC_SMPR1_SMP7_2 ((uint32_t)0x00800000) /*!< ADC SMP7 bit 2 */
2593
2594 #define ADC_SMPR1_SMP8 ((uint32_t)0x07000000) /*!< ADC Channel 8 Sampling time selection */
2595 #define ADC_SMPR1_SMP8_0 ((uint32_t)0x01000000) /*!< ADC SMP8 bit 0 */
2596 #define ADC_SMPR1_SMP8_1 ((uint32_t)0x02000000) /*!< ADC SMP8 bit 1 */
2597 #define ADC_SMPR1_SMP8_2 ((uint32_t)0x04000000) /*!< ADC SMP8 bit 2 */
2598
2599 #define ADC_SMPR1_SMP9 ((uint32_t)0x38000000) /*!< ADC Channel 9 Sampling time selection */
2600 #define ADC_SMPR1_SMP9_0 ((uint32_t)0x08000000) /*!< ADC SMP9 bit 0 */
2601 #define ADC_SMPR1_SMP9_1 ((uint32_t)0x10000000) /*!< ADC SMP9 bit 1 */
2602 #define ADC_SMPR1_SMP9_2 ((uint32_t)0x20000000) /*!< ADC SMP9 bit 2 */
2603
2604 /******************** Bit definition for ADC_SMPR2 register ********************/
2605 #define ADC_SMPR2_SMP10 ((uint32_t)0x00000007) /*!< ADC Channel 10 Sampling time selection */
2606 #define ADC_SMPR2_SMP10_0 ((uint32_t)0x00000001) /*!< ADC SMP10 bit 0 */
2607 #define ADC_SMPR2_SMP10_1 ((uint32_t)0x00000002) /*!< ADC SMP10 bit 1 */
2608 #define ADC_SMPR2_SMP10_2 ((uint32_t)0x00000004) /*!< ADC SMP10 bit 2 */
2609
2610 #define ADC_SMPR2_SMP11 ((uint32_t)0x00000038) /*!< ADC Channel 11 Sampling time selection */
2611 #define ADC_SMPR2_SMP11_0 ((uint32_t)0x00000008) /*!< ADC SMP11 bit 0 */
2612 #define ADC_SMPR2_SMP11_1 ((uint32_t)0x00000010) /*!< ADC SMP11 bit 1 */
2613 #define ADC_SMPR2_SMP11_2 ((uint32_t)0x00000020) /*!< ADC SMP11 bit 2 */
2614
2615 #define ADC_SMPR2_SMP12 ((uint32_t)0x000001C0) /*!< ADC Channel 12 Sampling time selection */
2616 #define ADC_SMPR2_SMP12_0 ((uint32_t)0x00000040) /*!< ADC SMP12 bit 0 */
2617 #define ADC_SMPR2_SMP12_1 ((uint32_t)0x00000080) /*!< ADC SMP12 bit 1 */
2618 #define ADC_SMPR2_SMP12_2 ((uint32_t)0x00000100) /*!< ADC SMP12 bit 2 */
2619
2620 #define ADC_SMPR2_SMP13 ((uint32_t)0x00000E00) /*!< ADC Channel 13 Sampling time selection */
2621 #define ADC_SMPR2_SMP13_0 ((uint32_t)0x00000200) /*!< ADC SMP13 bit 0 */
2622 #define ADC_SMPR2_SMP13_1 ((uint32_t)0x00000400) /*!< ADC SMP13 bit 1 */
2623 #define ADC_SMPR2_SMP13_2 ((uint32_t)0x00000800) /*!< ADC SMP13 bit 2 */
2624
2625 #define ADC_SMPR2_SMP14 ((uint32_t)0x00007000) /*!< ADC Channel 14 Sampling time selection */
2626 #define ADC_SMPR2_SMP14_0 ((uint32_t)0x00001000) /*!< ADC SMP14 bit 0 */
2627 #define ADC_SMPR2_SMP14_1 ((uint32_t)0x00002000) /*!< ADC SMP14 bit 1 */
2628 #define ADC_SMPR2_SMP14_2 ((uint32_t)0x00004000) /*!< ADC SMP14 bit 2 */
2629
2630 #define ADC_SMPR2_SMP15 ((uint32_t)0x00038000) /*!< ADC Channel 15 Sampling time selection */
2631 #define ADC_SMPR2_SMP15_0 ((uint32_t)0x00008000) /*!< ADC SMP15 bit 0 */
2632 #define ADC_SMPR2_SMP15_1 ((uint32_t)0x00010000) /*!< ADC SMP15 bit 1 */
2633 #define ADC_SMPR2_SMP15_2 ((uint32_t)0x00020000) /*!< ADC SMP15 bit 2 */
2634
2635 #define ADC_SMPR2_SMP16 ((uint32_t)0x001C0000) /*!< ADC Channel 16 Sampling time selection */
2636 #define ADC_SMPR2_SMP16_0 ((uint32_t)0x00040000) /*!< ADC SMP16 bit 0 */
2637 #define ADC_SMPR2_SMP16_1 ((uint32_t)0x00080000) /*!< ADC SMP16 bit 1 */
2638 #define ADC_SMPR2_SMP16_2 ((uint32_t)0x00100000) /*!< ADC SMP16 bit 2 */
2639
2640 #define ADC_SMPR2_SMP17 ((uint32_t)0x00E00000) /*!< ADC Channel 17 Sampling time selection */
2641 #define ADC_SMPR2_SMP17_0 ((uint32_t)0x00200000) /*!< ADC SMP17 bit 0 */
2642 #define ADC_SMPR2_SMP17_1 ((uint32_t)0x00400000) /*!< ADC SMP17 bit 1 */
2643 #define ADC_SMPR2_SMP17_2 ((uint32_t)0x00800000) /*!< ADC SMP17 bit 2 */
2644
2645 #define ADC_SMPR2_SMP18 ((uint32_t)0x07000000) /*!< ADC Channel 18 Sampling time selection */
2646 #define ADC_SMPR2_SMP18_0 ((uint32_t)0x01000000) /*!< ADC SMP18 bit 0 */
2647 #define ADC_SMPR2_SMP18_1 ((uint32_t)0x02000000) /*!< ADC SMP18 bit 1 */
2648 #define ADC_SMPR2_SMP18_2 ((uint32_t)0x04000000) /*!< ADC SMP18 bit 2 */
2649
2650 /******************** Bit definition for ADC_TR1 register ********************/
2651 #define ADC_TR1_LT1 ((uint32_t)0x00000FFF) /*!< ADC Analog watchdog 1 lower threshold */
2652 #define ADC_TR1_LT1_0 ((uint32_t)0x00000001) /*!< ADC LT1 bit 0 */
2653 #define ADC_TR1_LT1_1 ((uint32_t)0x00000002) /*!< ADC LT1 bit 1 */
2654 #define ADC_TR1_LT1_2 ((uint32_t)0x00000004) /*!< ADC LT1 bit 2 */
2655 #define ADC_TR1_LT1_3 ((uint32_t)0x00000008) /*!< ADC LT1 bit 3 */
2656 #define ADC_TR1_LT1_4 ((uint32_t)0x00000010) /*!< ADC LT1 bit 4 */
2657 #define ADC_TR1_LT1_5 ((uint32_t)0x00000020) /*!< ADC LT1 bit 5 */
2658 #define ADC_TR1_LT1_6 ((uint32_t)0x00000040) /*!< ADC LT1 bit 6 */
2659 #define ADC_TR1_LT1_7 ((uint32_t)0x00000080) /*!< ADC LT1 bit 7 */
2660 #define ADC_TR1_LT1_8 ((uint32_t)0x00000100) /*!< ADC LT1 bit 8 */
2661 #define ADC_TR1_LT1_9 ((uint32_t)0x00000200) /*!< ADC LT1 bit 9 */
2662 #define ADC_TR1_LT1_10 ((uint32_t)0x00000400) /*!< ADC LT1 bit 10 */
2663 #define ADC_TR1_LT1_11 ((uint32_t)0x00000800) /*!< ADC LT1 bit 11 */
2664
2665 #define ADC_TR1_HT1 ((uint32_t)0x0FFF0000) /*!< ADC Analog watchdog 1 higher threshold */
2666 #define ADC_TR1_HT1_0 ((uint32_t)0x00010000) /*!< ADC HT1 bit 0 */
2667 #define ADC_TR1_HT1_1 ((uint32_t)0x00020000) /*!< ADC HT1 bit 1 */
2668 #define ADC_TR1_HT1_2 ((uint32_t)0x00040000) /*!< ADC HT1 bit 2 */
2669 #define ADC_TR1_HT1_3 ((uint32_t)0x00080000) /*!< ADC HT1 bit 3 */
2670 #define ADC_TR1_HT1_4 ((uint32_t)0x00100000) /*!< ADC HT1 bit 4 */
2671 #define ADC_TR1_HT1_5 ((uint32_t)0x00200000) /*!< ADC HT1 bit 5 */
2672 #define ADC_TR1_HT1_6 ((uint32_t)0x00400000) /*!< ADC HT1 bit 6 */
2673 #define ADC_TR1_HT1_7 ((uint32_t)0x00800000) /*!< ADC HT1 bit 7 */
2674 #define ADC_TR1_HT1_8 ((uint32_t)0x01000000) /*!< ADC HT1 bit 8 */
2675 #define ADC_TR1_HT1_9 ((uint32_t)0x02000000) /*!< ADC HT1 bit 9 */
2676 #define ADC_TR1_HT1_10 ((uint32_t)0x04000000) /*!< ADC HT1 bit 10 */
2677 #define ADC_TR1_HT1_11 ((uint32_t)0x08000000) /*!< ADC HT1 bit 11 */
2678
2679 /******************** Bit definition for ADC_TR2 register ********************/
2680 #define ADC_TR2_LT2 ((uint32_t)0x000000FF) /*!< ADC Analog watchdog 2 lower threshold */
2681 #define ADC_TR2_LT2_0 ((uint32_t)0x00000001) /*!< ADC LT2 bit 0 */
2682 #define ADC_TR2_LT2_1 ((uint32_t)0x00000002) /*!< ADC LT2 bit 1 */
2683 #define ADC_TR2_LT2_2 ((uint32_t)0x00000004) /*!< ADC LT2 bit 2 */
2684 #define ADC_TR2_LT2_3 ((uint32_t)0x00000008) /*!< ADC LT2 bit 3 */
2685 #define ADC_TR2_LT2_4 ((uint32_t)0x00000010) /*!< ADC LT2 bit 4 */
2686 #define ADC_TR2_LT2_5 ((uint32_t)0x00000020) /*!< ADC LT2 bit 5 */
2687 #define ADC_TR2_LT2_6 ((uint32_t)0x00000040) /*!< ADC LT2 bit 6 */
2688 #define ADC_TR2_LT2_7 ((uint32_t)0x00000080) /*!< ADC LT2 bit 7 */
2689
2690 #define ADC_TR2_HT2 ((uint32_t)0x00FF0000) /*!< ADC Analog watchdog 2 higher threshold */
2691 #define ADC_TR2_HT2_0 ((uint32_t)0x00010000) /*!< ADC HT2 bit 0 */
2692 #define ADC_TR2_HT2_1 ((uint32_t)0x00020000) /*!< ADC HT2 bit 1 */
2693 #define ADC_TR2_HT2_2 ((uint32_t)0x00040000) /*!< ADC HT2 bit 2 */
2694 #define ADC_TR2_HT2_3 ((uint32_t)0x00080000) /*!< ADC HT2 bit 3 */
2695 #define ADC_TR2_HT2_4 ((uint32_t)0x00100000) /*!< ADC HT2 bit 4 */
2696 #define ADC_TR2_HT2_5 ((uint32_t)0x00200000) /*!< ADC HT2 bit 5 */
2697 #define ADC_TR2_HT2_6 ((uint32_t)0x00400000) /*!< ADC HT2 bit 6 */
2698 #define ADC_TR2_HT2_7 ((uint32_t)0x00800000) /*!< ADC HT2 bit 7 */
2699
2700 /******************** Bit definition for ADC_TR3 register ********************/
2701 #define ADC_TR3_LT3 ((uint32_t)0x000000FF) /*!< ADC Analog watchdog 3 lower threshold */
2702 #define ADC_TR3_LT3_0 ((uint32_t)0x00000001) /*!< ADC LT3 bit 0 */
2703 #define ADC_TR3_LT3_1 ((uint32_t)0x00000002) /*!< ADC LT3 bit 1 */
2704 #define ADC_TR3_LT3_2 ((uint32_t)0x00000004) /*!< ADC LT3 bit 2 */
2705 #define ADC_TR3_LT3_3 ((uint32_t)0x00000008) /*!< ADC LT3 bit 3 */
2706 #define ADC_TR3_LT3_4 ((uint32_t)0x00000010) /*!< ADC LT3 bit 4 */
2707 #define ADC_TR3_LT3_5 ((uint32_t)0x00000020) /*!< ADC LT3 bit 5 */
2708 #define ADC_TR3_LT3_6 ((uint32_t)0x00000040) /*!< ADC LT3 bit 6 */
2709 #define ADC_TR3_LT3_7 ((uint32_t)0x00000080) /*!< ADC LT3 bit 7 */
2710
2711 #define ADC_TR3_HT3 ((uint32_t)0x00FF0000) /*!< ADC Analog watchdog 3 higher threshold */
2712 #define ADC_TR3_HT3_0 ((uint32_t)0x00010000) /*!< ADC HT3 bit 0 */
2713 #define ADC_TR3_HT3_1 ((uint32_t)0x00020000) /*!< ADC HT3 bit 1 */
2714 #define ADC_TR3_HT3_2 ((uint32_t)0x00040000) /*!< ADC HT3 bit 2 */
2715 #define ADC_TR3_HT3_3 ((uint32_t)0x00080000) /*!< ADC HT3 bit 3 */
2716 #define ADC_TR3_HT3_4 ((uint32_t)0x00100000) /*!< ADC HT3 bit 4 */
2717 #define ADC_TR3_HT3_5 ((uint32_t)0x00200000) /*!< ADC HT3 bit 5 */
2718 #define ADC_TR3_HT3_6 ((uint32_t)0x00400000) /*!< ADC HT3 bit 6 */
2719 #define ADC_TR3_HT3_7 ((uint32_t)0x00800000) /*!< ADC HT3 bit 7 */
2720
2721 /******************** Bit definition for ADC_SQR1 register ********************/
2722 #define ADC_SQR1_L ((uint32_t)0x0000000F) /*!< ADC regular channel sequence length */
2723 #define ADC_SQR1_L_0 ((uint32_t)0x00000001) /*!< ADC L bit 0 */
2724 #define ADC_SQR1_L_1 ((uint32_t)0x00000002) /*!< ADC L bit 1 */
2725 #define ADC_SQR1_L_2 ((uint32_t)0x00000004) /*!< ADC L bit 2 */
2726 #define ADC_SQR1_L_3 ((uint32_t)0x00000008) /*!< ADC L bit 3 */
2727
2728 #define ADC_SQR1_SQ1 ((uint32_t)0x000007C0) /*!< ADC 1st conversion in regular sequence */
2729 #define ADC_SQR1_SQ1_0 ((uint32_t)0x00000040) /*!< ADC SQ1 bit 0 */
2730 #define ADC_SQR1_SQ1_1 ((uint32_t)0x00000080) /*!< ADC SQ1 bit 1 */
2731 #define ADC_SQR1_SQ1_2 ((uint32_t)0x00000100) /*!< ADC SQ1 bit 2 */
2732 #define ADC_SQR1_SQ1_3 ((uint32_t)0x00000200) /*!< ADC SQ1 bit 3 */
2733 #define ADC_SQR1_SQ1_4 ((uint32_t)0x00000400) /*!< ADC SQ1 bit 4 */
2734
2735 #define ADC_SQR1_SQ2 ((uint32_t)0x0001F000) /*!< ADC 2nd conversion in regular sequence */
2736 #define ADC_SQR1_SQ2_0 ((uint32_t)0x00001000) /*!< ADC SQ2 bit 0 */
2737 #define ADC_SQR1_SQ2_1 ((uint32_t)0x00002000) /*!< ADC SQ2 bit 1 */
2738 #define ADC_SQR1_SQ2_2 ((uint32_t)0x00004000) /*!< ADC SQ2 bit 2 */
2739 #define ADC_SQR1_SQ2_3 ((uint32_t)0x00008000) /*!< ADC SQ2 bit 3 */
2740 #define ADC_SQR1_SQ2_4 ((uint32_t)0x00010000) /*!< ADC SQ2 bit 4 */
2741
2742 #define ADC_SQR1_SQ3 ((uint32_t)0x007C0000) /*!< ADC 3rd conversion in regular sequence */
2743 #define ADC_SQR1_SQ3_0 ((uint32_t)0x00040000) /*!< ADC SQ3 bit 0 */
2744 #define ADC_SQR1_SQ3_1 ((uint32_t)0x00080000) /*!< ADC SQ3 bit 1 */
2745 #define ADC_SQR1_SQ3_2 ((uint32_t)0x00100000) /*!< ADC SQ3 bit 2 */
2746 #define ADC_SQR1_SQ3_3 ((uint32_t)0x00200000) /*!< ADC SQ3 bit 3 */
2747 #define ADC_SQR1_SQ3_4 ((uint32_t)0x00400000) /*!< ADC SQ3 bit 4 */
2748
2749 #define ADC_SQR1_SQ4 ((uint32_t)0x1F000000) /*!< ADC 4th conversion in regular sequence */
2750 #define ADC_SQR1_SQ4_0 ((uint32_t)0x01000000) /*!< ADC SQ4 bit 0 */
2751 #define ADC_SQR1_SQ4_1 ((uint32_t)0x02000000) /*!< ADC SQ4 bit 1 */
2752 #define ADC_SQR1_SQ4_2 ((uint32_t)0x04000000) /*!< ADC SQ4 bit 2 */
2753 #define ADC_SQR1_SQ4_3 ((uint32_t)0x08000000) /*!< ADC SQ4 bit 3 */
2754 #define ADC_SQR1_SQ4_4 ((uint32_t)0x10000000) /*!< ADC SQ4 bit 4 */
2755
2756 /******************** Bit definition for ADC_SQR2 register ********************/
2757 #define ADC_SQR2_SQ5 ((uint32_t)0x0000001F) /*!< ADC 5th conversion in regular sequence */
2758 #define ADC_SQR2_SQ5_0 ((uint32_t)0x00000001) /*!< ADC SQ5 bit 0 */
2759 #define ADC_SQR2_SQ5_1 ((uint32_t)0x00000002) /*!< ADC SQ5 bit 1 */
2760 #define ADC_SQR2_SQ5_2 ((uint32_t)0x00000004) /*!< ADC SQ5 bit 2 */
2761 #define ADC_SQR2_SQ5_3 ((uint32_t)0x00000008) /*!< ADC SQ5 bit 3 */
2762 #define ADC_SQR2_SQ5_4 ((uint32_t)0x00000010) /*!< ADC SQ5 bit 4 */
2763
2764 #define ADC_SQR2_SQ6 ((uint32_t)0x000007C0) /*!< ADC 6th conversion in regular sequence */
2765 #define ADC_SQR2_SQ6_0 ((uint32_t)0x00000040) /*!< ADC SQ6 bit 0 */
2766 #define ADC_SQR2_SQ6_1 ((uint32_t)0x00000080) /*!< ADC SQ6 bit 1 */
2767 #define ADC_SQR2_SQ6_2 ((uint32_t)0x00000100) /*!< ADC SQ6 bit 2 */
2768 #define ADC_SQR2_SQ6_3 ((uint32_t)0x00000200) /*!< ADC SQ6 bit 3 */
2769 #define ADC_SQR2_SQ6_4 ((uint32_t)0x00000400) /*!< ADC SQ6 bit 4 */
2770
2771 #define ADC_SQR2_SQ7 ((uint32_t)0x0001F000) /*!< ADC 7th conversion in regular sequence */
2772 #define ADC_SQR2_SQ7_0 ((uint32_t)0x00001000) /*!< ADC SQ7 bit 0 */
2773 #define ADC_SQR2_SQ7_1 ((uint32_t)0x00002000) /*!< ADC SQ7 bit 1 */
2774 #define ADC_SQR2_SQ7_2 ((uint32_t)0x00004000) /*!< ADC SQ7 bit 2 */
2775 #define ADC_SQR2_SQ7_3 ((uint32_t)0x00008000) /*!< ADC SQ7 bit 3 */
2776 #define ADC_SQR2_SQ7_4 ((uint32_t)0x00010000) /*!< ADC SQ7 bit 4 */
2777
2778 #define ADC_SQR2_SQ8 ((uint32_t)0x007C0000) /*!< ADC 8th conversion in regular sequence */
2779 #define ADC_SQR2_SQ8_0 ((uint32_t)0x00040000) /*!< ADC SQ8 bit 0 */
2780 #define ADC_SQR2_SQ8_1 ((uint32_t)0x00080000) /*!< ADC SQ8 bit 1 */
2781 #define ADC_SQR2_SQ8_2 ((uint32_t)0x00100000) /*!< ADC SQ8 bit 2 */
2782 #define ADC_SQR2_SQ8_3 ((uint32_t)0x00200000) /*!< ADC SQ8 bit 3 */
2783 #define ADC_SQR2_SQ8_4 ((uint32_t)0x00400000) /*!< ADC SQ8 bit 4 */
2784
2785 #define ADC_SQR2_SQ9 ((uint32_t)0x1F000000) /*!< ADC 9th conversion in regular sequence */
2786 #define ADC_SQR2_SQ9_0 ((uint32_t)0x01000000) /*!< ADC SQ9 bit 0 */
2787 #define ADC_SQR2_SQ9_1 ((uint32_t)0x02000000) /*!< ADC SQ9 bit 1 */
2788 #define ADC_SQR2_SQ9_2 ((uint32_t)0x04000000) /*!< ADC SQ9 bit 2 */
2789 #define ADC_SQR2_SQ9_3 ((uint32_t)0x08000000) /*!< ADC SQ9 bit 3 */
2790 #define ADC_SQR2_SQ9_4 ((uint32_t)0x10000000) /*!< ADC SQ9 bit 4 */
2791
2792 /******************** Bit definition for ADC_SQR3 register ********************/
2793 #define ADC_SQR3_SQ10 ((uint32_t)0x0000001F) /*!< ADC 10th conversion in regular sequence */
2794 #define ADC_SQR3_SQ10_0 ((uint32_t)0x00000001) /*!< ADC SQ10 bit 0 */
2795 #define ADC_SQR3_SQ10_1 ((uint32_t)0x00000002) /*!< ADC SQ10 bit 1 */
2796 #define ADC_SQR3_SQ10_2 ((uint32_t)0x00000004) /*!< ADC SQ10 bit 2 */
2797 #define ADC_SQR3_SQ10_3 ((uint32_t)0x00000008) /*!< ADC SQ10 bit 3 */
2798 #define ADC_SQR3_SQ10_4 ((uint32_t)0x00000010) /*!< ADC SQ10 bit 4 */
2799
2800 #define ADC_SQR3_SQ11 ((uint32_t)0x000007C0) /*!< ADC 11th conversion in regular sequence */
2801 #define ADC_SQR3_SQ11_0 ((uint32_t)0x00000040) /*!< ADC SQ11 bit 0 */
2802 #define ADC_SQR3_SQ11_1 ((uint32_t)0x00000080) /*!< ADC SQ11 bit 1 */
2803 #define ADC_SQR3_SQ11_2 ((uint32_t)0x00000100) /*!< ADC SQ11 bit 2 */
2804 #define ADC_SQR3_SQ11_3 ((uint32_t)0x00000200) /*!< ADC SQ11 bit 3 */
2805 #define ADC_SQR3_SQ11_4 ((uint32_t)0x00000400) /*!< ADC SQ11 bit 4 */
2806
2807 #define ADC_SQR3_SQ12 ((uint32_t)0x0001F000) /*!< ADC 12th conversion in regular sequence */
2808 #define ADC_SQR3_SQ12_0 ((uint32_t)0x00001000) /*!< ADC SQ12 bit 0 */
2809 #define ADC_SQR3_SQ12_1 ((uint32_t)0x00002000) /*!< ADC SQ12 bit 1 */
2810 #define ADC_SQR3_SQ12_2 ((uint32_t)0x00004000) /*!< ADC SQ12 bit 2 */
2811 #define ADC_SQR3_SQ12_3 ((uint32_t)0x00008000) /*!< ADC SQ12 bit 3 */
2812 #define ADC_SQR3_SQ12_4 ((uint32_t)0x00010000) /*!< ADC SQ12 bit 4 */
2813
2814 #define ADC_SQR3_SQ13 ((uint32_t)0x007C0000) /*!< ADC 13th conversion in regular sequence */
2815 #define ADC_SQR3_SQ13_0 ((uint32_t)0x00040000) /*!< ADC SQ13 bit 0 */
2816 #define ADC_SQR3_SQ13_1 ((uint32_t)0x00080000) /*!< ADC SQ13 bit 1 */
2817 #define ADC_SQR3_SQ13_2 ((uint32_t)0x00100000) /*!< ADC SQ13 bit 2 */
2818 #define ADC_SQR3_SQ13_3 ((uint32_t)0x00200000) /*!< ADC SQ13 bit 3 */
2819 #define ADC_SQR3_SQ13_4 ((uint32_t)0x00400000) /*!< ADC SQ13 bit 4 */
2820
2821 #define ADC_SQR3_SQ14 ((uint32_t)0x1F000000) /*!< ADC 14th conversion in regular sequence */
2822 #define ADC_SQR3_SQ14_0 ((uint32_t)0x01000000) /*!< ADC SQ14 bit 0 */
2823 #define ADC_SQR3_SQ14_1 ((uint32_t)0x02000000) /*!< ADC SQ14 bit 1 */
2824 #define ADC_SQR3_SQ14_2 ((uint32_t)0x04000000) /*!< ADC SQ14 bit 2 */
2825 #define ADC_SQR3_SQ14_3 ((uint32_t)0x08000000) /*!< ADC SQ14 bit 3 */
2826 #define ADC_SQR3_SQ14_4 ((uint32_t)0x10000000) /*!< ADC SQ14 bit 4 */
2827
2828 /******************** Bit definition for ADC_SQR4 register ********************/
2829 #define ADC_SQR4_SQ15 ((uint32_t)0x0000001F) /*!< ADC 15th conversion in regular sequence */
2830 #define ADC_SQR4_SQ15_0 ((uint32_t)0x00000001) /*!< ADC SQ15 bit 0 */
2831 #define ADC_SQR4_SQ15_1 ((uint32_t)0x00000002) /*!< ADC SQ15 bit 1 */
2832 #define ADC_SQR4_SQ15_2 ((uint32_t)0x00000004) /*!< ADC SQ15 bit 2 */
2833 #define ADC_SQR4_SQ15_3 ((uint32_t)0x00000008) /*!< ADC SQ15 bit 3 */
2834 #define ADC_SQR4_SQ15_4 ((uint32_t)0x00000010) /*!< ADC SQ105 bit 4 */
2835
2836 #define ADC_SQR4_SQ16 ((uint32_t)0x000007C0) /*!< ADC 16th conversion in regular sequence */
2837 #define ADC_SQR4_SQ16_0 ((uint32_t)0x00000040) /*!< ADC SQ16 bit 0 */
2838 #define ADC_SQR4_SQ16_1 ((uint32_t)0x00000080) /*!< ADC SQ16 bit 1 */
2839 #define ADC_SQR4_SQ16_2 ((uint32_t)0x00000100) /*!< ADC SQ16 bit 2 */
2840 #define ADC_SQR4_SQ16_3 ((uint32_t)0x00000200) /*!< ADC SQ16 bit 3 */
2841 #define ADC_SQR4_SQ16_4 ((uint32_t)0x00000400) /*!< ADC SQ16 bit 4 */
2842
2843 /* these defines are maintained for legacy purpose */
2844 #define ADC_SQR3_SQ15 ADC_SQR4_SQ15 /*!< ADC 15th conversion in regular sequence */
2845 #define ADC_SQR3_SQ15_0 ADC_SQR4_SQ15_0 /*!< ADC SQ15 bit 0 */
2846 #define ADC_SQR3_SQ15_1 ADC_SQR4_SQ15_1 /*!< ADC SQ15 bit 1 */
2847 #define ADC_SQR3_SQ15_2 ADC_SQR4_SQ15_2 /*!< ADC SQ15 bit 2 */
2848 #define ADC_SQR3_SQ15_3 ADC_SQR4_SQ15_3 /*!< ADC SQ15 bit 3 */
2849 #define ADC_SQR3_SQ15_4 ADC_SQR4_SQ15_4 /*!< ADC SQ105 bit 4 */
2850
2851 #define ADC_SQR3_SQ16 ADC_SQR4_SQ16 /*!< ADC 16th conversion in regular sequence */
2852 #define ADC_SQR3_SQ16_0 ADC_SQR4_SQ16_0 /*!< ADC SQ16 bit 0 */
2853 #define ADC_SQR3_SQ16_1 ADC_SQR4_SQ16_1 /*!< ADC SQ16 bit 1 */
2854 #define ADC_SQR3_SQ16_2 ADC_SQR4_SQ16_2 /*!< ADC SQ16 bit 2 */
2855 #define ADC_SQR3_SQ16_3 ADC_SQR4_SQ16_3 /*!< ADC SQ16 bit 3 */
2856 #define ADC_SQR3_SQ16_4 ADC_SQR4_SQ16_4 /*!< ADC SQ16 bit 4 */
2857 /******************** Bit definition for ADC_DR register ********************/
2858 #define ADC_DR_RDATA ((uint32_t)0x0000FFFF) /*!< ADC regular Data converted */
2859 #define ADC_DR_RDATA_0 ((uint32_t)0x00000001) /*!< ADC RDATA bit 0 */
2860 #define ADC_DR_RDATA_1 ((uint32_t)0x00000002) /*!< ADC RDATA bit 1 */
2861 #define ADC_DR_RDATA_2 ((uint32_t)0x00000004) /*!< ADC RDATA bit 2 */
2862 #define ADC_DR_RDATA_3 ((uint32_t)0x00000008) /*!< ADC RDATA bit 3 */
2863 #define ADC_DR_RDATA_4 ((uint32_t)0x00000010) /*!< ADC RDATA bit 4 */
2864 #define ADC_DR_RDATA_5 ((uint32_t)0x00000020) /*!< ADC RDATA bit 5 */
2865 #define ADC_DR_RDATA_6 ((uint32_t)0x00000040) /*!< ADC RDATA bit 6 */
2866 #define ADC_DR_RDATA_7 ((uint32_t)0x00000080) /*!< ADC RDATA bit 7 */
2867 #define ADC_DR_RDATA_8 ((uint32_t)0x00000100) /*!< ADC RDATA bit 8 */
2868 #define ADC_DR_RDATA_9 ((uint32_t)0x00000200) /*!< ADC RDATA bit 9 */
2869 #define ADC_DR_RDATA_10 ((uint32_t)0x00000400) /*!< ADC RDATA bit 10 */
2870 #define ADC_DR_RDATA_11 ((uint32_t)0x00000800) /*!< ADC RDATA bit 11 */
2871 #define ADC_DR_RDATA_12 ((uint32_t)0x00001000) /*!< ADC RDATA bit 12 */
2872 #define ADC_DR_RDATA_13 ((uint32_t)0x00002000) /*!< ADC RDATA bit 13 */
2873 #define ADC_DR_RDATA_14 ((uint32_t)0x00004000) /*!< ADC RDATA bit 14 */
2874 #define ADC_DR_RDATA_15 ((uint32_t)0x00008000) /*!< ADC RDATA bit 15 */
2875
2876 /******************** Bit definition for ADC_JSQR register ********************/
2877 #define ADC_JSQR_JL ((uint32_t)0x00000003) /*!< ADC injected channel sequence length */
2878 #define ADC_JSQR_JL_0 ((uint32_t)0x00000001) /*!< ADC JL bit 0 */
2879 #define ADC_JSQR_JL_1 ((uint32_t)0x00000002) /*!< ADC JL bit 1 */
2880
2881 #define ADC_JSQR_JEXTSEL ((uint32_t)0x0000003C) /*!< ADC external trigger selection for injected group */
2882 #define ADC_JSQR_JEXTSEL_0 ((uint32_t)0x00000004) /*!< ADC JEXTSEL bit 0 */
2883 #define ADC_JSQR_JEXTSEL_1 ((uint32_t)0x00000008) /*!< ADC JEXTSEL bit 1 */
2884 #define ADC_JSQR_JEXTSEL_2 ((uint32_t)0x00000010) /*!< ADC JEXTSEL bit 2 */
2885 #define ADC_JSQR_JEXTSEL_3 ((uint32_t)0x00000020) /*!< ADC JEXTSEL bit 3 */
2886
2887 #define ADC_JSQR_JEXTEN ((uint32_t)0x000000C0) /*!< ADC external trigger enable and polarity selection for injected channels */
2888 #define ADC_JSQR_JEXTEN_0 ((uint32_t)0x00000040) /*!< ADC JEXTEN bit 0 */
2889 #define ADC_JSQR_JEXTEN_1 ((uint32_t)0x00000080) /*!< ADC JEXTEN bit 1 */
2890
2891 #define ADC_JSQR_JSQ1 ((uint32_t)0x00001F00) /*!< ADC 1st conversion in injected sequence */
2892 #define ADC_JSQR_JSQ1_0 ((uint32_t)0x00000100) /*!< ADC JSQ1 bit 0 */
2893 #define ADC_JSQR_JSQ1_1 ((uint32_t)0x00000200) /*!< ADC JSQ1 bit 1 */
2894 #define ADC_JSQR_JSQ1_2 ((uint32_t)0x00000400) /*!< ADC JSQ1 bit 2 */
2895 #define ADC_JSQR_JSQ1_3 ((uint32_t)0x00000800) /*!< ADC JSQ1 bit 3 */
2896 #define ADC_JSQR_JSQ1_4 ((uint32_t)0x00001000) /*!< ADC JSQ1 bit 4 */
2897
2898 #define ADC_JSQR_JSQ2 ((uint32_t)0x0007C000) /*!< ADC 2nd conversion in injected sequence */
2899 #define ADC_JSQR_JSQ2_0 ((uint32_t)0x00004000) /*!< ADC JSQ2 bit 0 */
2900 #define ADC_JSQR_JSQ2_1 ((uint32_t)0x00008000) /*!< ADC JSQ2 bit 1 */
2901 #define ADC_JSQR_JSQ2_2 ((uint32_t)0x00010000) /*!< ADC JSQ2 bit 2 */
2902 #define ADC_JSQR_JSQ2_3 ((uint32_t)0x00020000) /*!< ADC JSQ2 bit 3 */
2903 #define ADC_JSQR_JSQ2_4 ((uint32_t)0x00040000) /*!< ADC JSQ2 bit 4 */
2904
2905 #define ADC_JSQR_JSQ3 ((uint32_t)0x01F00000) /*!< ADC 3rd conversion in injected sequence */
2906 #define ADC_JSQR_JSQ3_0 ((uint32_t)0x00100000) /*!< ADC JSQ3 bit 0 */
2907 #define ADC_JSQR_JSQ3_1 ((uint32_t)0x00200000) /*!< ADC JSQ3 bit 1 */
2908 #define ADC_JSQR_JSQ3_2 ((uint32_t)0x00400000) /*!< ADC JSQ3 bit 2 */
2909 #define ADC_JSQR_JSQ3_3 ((uint32_t)0x00800000) /*!< ADC JSQ3 bit 3 */
2910 #define ADC_JSQR_JSQ3_4 ((uint32_t)0x01000000) /*!< ADC JSQ3 bit 4 */
2911
2912 #define ADC_JSQR_JSQ4 ((uint32_t)0x7C000000) /*!< ADC 4th conversion in injected sequence */
2913 #define ADC_JSQR_JSQ4_0 ((uint32_t)0x04000000) /*!< ADC JSQ4 bit 0 */
2914 #define ADC_JSQR_JSQ4_1 ((uint32_t)0x08000000) /*!< ADC JSQ4 bit 1 */
2915 #define ADC_JSQR_JSQ4_2 ((uint32_t)0x10000000) /*!< ADC JSQ4 bit 2 */
2916 #define ADC_JSQR_JSQ4_3 ((uint32_t)0x20000000) /*!< ADC JSQ4 bit 3 */
2917 #define ADC_JSQR_JSQ4_4 ((uint32_t)0x40000000) /*!< ADC JSQ4 bit 4 */
2918
2919 /******************** Bit definition for ADC_OFR1 register ********************/
2920 #define ADC_OFR1_OFFSET1 ((uint32_t)0x00000FFF) /*!< ADC data offset 1 for channel programmed into bits OFFSET1_CH[4:0] */
2921 #define ADC_OFR1_OFFSET1_0 ((uint32_t)0x00000001) /*!< ADC OFFSET1 bit 0 */
2922 #define ADC_OFR1_OFFSET1_1 ((uint32_t)0x00000002) /*!< ADC OFFSET1 bit 1 */
2923 #define ADC_OFR1_OFFSET1_2 ((uint32_t)0x00000004) /*!< ADC OFFSET1 bit 2 */
2924 #define ADC_OFR1_OFFSET1_3 ((uint32_t)0x00000008) /*!< ADC OFFSET1 bit 3 */
2925 #define ADC_OFR1_OFFSET1_4 ((uint32_t)0x00000010) /*!< ADC OFFSET1 bit 4 */
2926 #define ADC_OFR1_OFFSET1_5 ((uint32_t)0x00000020) /*!< ADC OFFSET1 bit 5 */
2927 #define ADC_OFR1_OFFSET1_6 ((uint32_t)0x00000040) /*!< ADC OFFSET1 bit 6 */
2928 #define ADC_OFR1_OFFSET1_7 ((uint32_t)0x00000080) /*!< ADC OFFSET1 bit 7 */
2929 #define ADC_OFR1_OFFSET1_8 ((uint32_t)0x00000100) /*!< ADC OFFSET1 bit 8 */
2930 #define ADC_OFR1_OFFSET1_9 ((uint32_t)0x00000200) /*!< ADC OFFSET1 bit 9 */
2931 #define ADC_OFR1_OFFSET1_10 ((uint32_t)0x00000400) /*!< ADC OFFSET1 bit 10 */
2932 #define ADC_OFR1_OFFSET1_11 ((uint32_t)0x00000800) /*!< ADC OFFSET1 bit 11 */
2933
2934 #define ADC_OFR1_OFFSET1_CH ((uint32_t)0x7C000000) /*!< ADC Channel selection for the data offset 1 */
2935 #define ADC_OFR1_OFFSET1_CH_0 ((uint32_t)0x04000000) /*!< ADC OFFSET1_CH bit 0 */
2936 #define ADC_OFR1_OFFSET1_CH_1 ((uint32_t)0x08000000) /*!< ADC OFFSET1_CH bit 1 */
2937 #define ADC_OFR1_OFFSET1_CH_2 ((uint32_t)0x10000000) /*!< ADC OFFSET1_CH bit 2 */
2938 #define ADC_OFR1_OFFSET1_CH_3 ((uint32_t)0x20000000) /*!< ADC OFFSET1_CH bit 3 */
2939 #define ADC_OFR1_OFFSET1_CH_4 ((uint32_t)0x40000000) /*!< ADC OFFSET1_CH bit 4 */
2940
2941 #define ADC_OFR1_OFFSET1_EN ((uint32_t)0x80000000) /*!< ADC offset 1 enable */
2942
2943 /******************** Bit definition for ADC_OFR2 register ********************/
2944 #define ADC_OFR2_OFFSET2 ((uint32_t)0x00000FFF) /*!< ADC data offset 2 for channel programmed into bits OFFSET2_CH[4:0] */
2945 #define ADC_OFR2_OFFSET2_0 ((uint32_t)0x00000001) /*!< ADC OFFSET2 bit 0 */
2946 #define ADC_OFR2_OFFSET2_1 ((uint32_t)0x00000002) /*!< ADC OFFSET2 bit 1 */
2947 #define ADC_OFR2_OFFSET2_2 ((uint32_t)0x00000004) /*!< ADC OFFSET2 bit 2 */
2948 #define ADC_OFR2_OFFSET2_3 ((uint32_t)0x00000008) /*!< ADC OFFSET2 bit 3 */
2949 #define ADC_OFR2_OFFSET2_4 ((uint32_t)0x00000010) /*!< ADC OFFSET2 bit 4 */
2950 #define ADC_OFR2_OFFSET2_5 ((uint32_t)0x00000020) /*!< ADC OFFSET2 bit 5 */
2951 #define ADC_OFR2_OFFSET2_6 ((uint32_t)0x00000040) /*!< ADC OFFSET2 bit 6 */
2952 #define ADC_OFR2_OFFSET2_7 ((uint32_t)0x00000080) /*!< ADC OFFSET2 bit 7 */
2953 #define ADC_OFR2_OFFSET2_8 ((uint32_t)0x00000100) /*!< ADC OFFSET2 bit 8 */
2954 #define ADC_OFR2_OFFSET2_9 ((uint32_t)0x00000200) /*!< ADC OFFSET2 bit 9 */
2955 #define ADC_OFR2_OFFSET2_10 ((uint32_t)0x00000400) /*!< ADC OFFSET2 bit 10 */
2956 #define ADC_OFR2_OFFSET2_11 ((uint32_t)0x00000800) /*!< ADC OFFSET2 bit 11 */
2957
2958 #define ADC_OFR2_OFFSET2_CH ((uint32_t)0x7C000000) /*!< ADC Channel selection for the data offset 2 */
2959 #define ADC_OFR2_OFFSET2_CH_0 ((uint32_t)0x04000000) /*!< ADC OFFSET2_CH bit 0 */
2960 #define ADC_OFR2_OFFSET2_CH_1 ((uint32_t)0x08000000) /*!< ADC OFFSET2_CH bit 1 */
2961 #define ADC_OFR2_OFFSET2_CH_2 ((uint32_t)0x10000000) /*!< ADC OFFSET2_CH bit 2 */
2962 #define ADC_OFR2_OFFSET2_CH_3 ((uint32_t)0x20000000) /*!< ADC OFFSET2_CH bit 3 */
2963 #define ADC_OFR2_OFFSET2_CH_4 ((uint32_t)0x40000000) /*!< ADC OFFSET2_CH bit 4 */
2964
2965 #define ADC_OFR2_OFFSET2_EN ((uint32_t)0x80000000) /*!< ADC offset 2 enable */
2966
2967 /******************** Bit definition for ADC_OFR3 register ********************/
2968 #define ADC_OFR3_OFFSET3 ((uint32_t)0x00000FFF) /*!< ADC data offset 3 for channel programmed into bits OFFSET3_CH[4:0] */
2969 #define ADC_OFR3_OFFSET3_0 ((uint32_t)0x00000001) /*!< ADC OFFSET3 bit 0 */
2970 #define ADC_OFR3_OFFSET3_1 ((uint32_t)0x00000002) /*!< ADC OFFSET3 bit 1 */
2971 #define ADC_OFR3_OFFSET3_2 ((uint32_t)0x00000004) /*!< ADC OFFSET3 bit 2 */
2972 #define ADC_OFR3_OFFSET3_3 ((uint32_t)0x00000008) /*!< ADC OFFSET3 bit 3 */
2973 #define ADC_OFR3_OFFSET3_4 ((uint32_t)0x00000010) /*!< ADC OFFSET3 bit 4 */
2974 #define ADC_OFR3_OFFSET3_5 ((uint32_t)0x00000020) /*!< ADC OFFSET3 bit 5 */
2975 #define ADC_OFR3_OFFSET3_6 ((uint32_t)0x00000040) /*!< ADC OFFSET3 bit 6 */
2976 #define ADC_OFR3_OFFSET3_7 ((uint32_t)0x00000080) /*!< ADC OFFSET3 bit 7 */
2977 #define ADC_OFR3_OFFSET3_8 ((uint32_t)0x00000100) /*!< ADC OFFSET3 bit 8 */
2978 #define ADC_OFR3_OFFSET3_9 ((uint32_t)0x00000200) /*!< ADC OFFSET3 bit 9 */
2979 #define ADC_OFR3_OFFSET3_10 ((uint32_t)0x00000400) /*!< ADC OFFSET3 bit 10 */
2980 #define ADC_OFR3_OFFSET3_11 ((uint32_t)0x00000800) /*!< ADC OFFSET3 bit 11 */
2981
2982 #define ADC_OFR3_OFFSET3_CH ((uint32_t)0x7C000000) /*!< ADC Channel selection for the data offset 3 */
2983 #define ADC_OFR3_OFFSET3_CH_0 ((uint32_t)0x04000000) /*!< ADC OFFSET3_CH bit 0 */
2984 #define ADC_OFR3_OFFSET3_CH_1 ((uint32_t)0x08000000) /*!< ADC OFFSET3_CH bit 1 */
2985 #define ADC_OFR3_OFFSET3_CH_2 ((uint32_t)0x10000000) /*!< ADC OFFSET3_CH bit 2 */
2986 #define ADC_OFR3_OFFSET3_CH_3 ((uint32_t)0x20000000) /*!< ADC OFFSET3_CH bit 3 */
2987 #define ADC_OFR3_OFFSET3_CH_4 ((uint32_t)0x40000000) /*!< ADC OFFSET3_CH bit 4 */
2988
2989 #define ADC_OFR3_OFFSET3_EN ((uint32_t)0x80000000) /*!< ADC offset 3 enable */
2990
2991 /******************** Bit definition for ADC_OFR4 register ********************/
2992 #define ADC_OFR4_OFFSET4 ((uint32_t)0x00000FFF) /*!< ADC data offset 4 for channel programmed into bits OFFSET4_CH[4:0] */
2993 #define ADC_OFR4_OFFSET4_0 ((uint32_t)0x00000001) /*!< ADC OFFSET4 bit 0 */
2994 #define ADC_OFR4_OFFSET4_1 ((uint32_t)0x00000002) /*!< ADC OFFSET4 bit 1 */
2995 #define ADC_OFR4_OFFSET4_2 ((uint32_t)0x00000004) /*!< ADC OFFSET4 bit 2 */
2996 #define ADC_OFR4_OFFSET4_3 ((uint32_t)0x00000008) /*!< ADC OFFSET4 bit 3 */
2997 #define ADC_OFR4_OFFSET4_4 ((uint32_t)0x00000010) /*!< ADC OFFSET4 bit 4 */
2998 #define ADC_OFR4_OFFSET4_5 ((uint32_t)0x00000020) /*!< ADC OFFSET4 bit 5 */
2999 #define ADC_OFR4_OFFSET4_6 ((uint32_t)0x00000040) /*!< ADC OFFSET4 bit 6 */
3000 #define ADC_OFR4_OFFSET4_7 ((uint32_t)0x00000080) /*!< ADC OFFSET4 bit 7 */
3001 #define ADC_OFR4_OFFSET4_8 ((uint32_t)0x00000100) /*!< ADC OFFSET4 bit 8 */
3002 #define ADC_OFR4_OFFSET4_9 ((uint32_t)0x00000200) /*!< ADC OFFSET4 bit 9 */
3003 #define ADC_OFR4_OFFSET4_10 ((uint32_t)0x00000400) /*!< ADC OFFSET4 bit 10 */
3004 #define ADC_OFR4_OFFSET4_11 ((uint32_t)0x00000800) /*!< ADC OFFSET4 bit 11 */
3005
3006 #define ADC_OFR4_OFFSET4_CH ((uint32_t)0x7C000000) /*!< ADC Channel selection for the data offset 4 */
3007 #define ADC_OFR4_OFFSET4_CH_0 ((uint32_t)0x04000000) /*!< ADC OFFSET4_CH bit 0 */
3008 #define ADC_OFR4_OFFSET4_CH_1 ((uint32_t)0x08000000) /*!< ADC OFFSET4_CH bit 1 */
3009 #define ADC_OFR4_OFFSET4_CH_2 ((uint32_t)0x10000000) /*!< ADC OFFSET4_CH bit 2 */
3010 #define ADC_OFR4_OFFSET4_CH_3 ((uint32_t)0x20000000) /*!< ADC OFFSET4_CH bit 3 */
3011 #define ADC_OFR4_OFFSET4_CH_4 ((uint32_t)0x40000000) /*!< ADC OFFSET4_CH bit 4 */
3012
3013 #define ADC_OFR4_OFFSET4_EN ((uint32_t)0x80000000) /*!< ADC offset 4 enable */
3014
3015 /******************** Bit definition for ADC_JDR1 register ********************/
3016 #define ADC_JDR1_JDATA ((uint32_t)0x0000FFFF) /*!< ADC Injected DATA */
3017 #define ADC_JDR1_JDATA_0 ((uint32_t)0x00000001) /*!< ADC JDATA bit 0 */
3018 #define ADC_JDR1_JDATA_1 ((uint32_t)0x00000002) /*!< ADC JDATA bit 1 */
3019 #define ADC_JDR1_JDATA_2 ((uint32_t)0x00000004) /*!< ADC JDATA bit 2 */
3020 #define ADC_JDR1_JDATA_3 ((uint32_t)0x00000008) /*!< ADC JDATA bit 3 */
3021 #define ADC_JDR1_JDATA_4 ((uint32_t)0x00000010) /*!< ADC JDATA bit 4 */
3022 #define ADC_JDR1_JDATA_5 ((uint32_t)0x00000020) /*!< ADC JDATA bit 5 */
3023 #define ADC_JDR1_JDATA_6 ((uint32_t)0x00000040) /*!< ADC JDATA bit 6 */
3024 #define ADC_JDR1_JDATA_7 ((uint32_t)0x00000080) /*!< ADC JDATA bit 7 */
3025 #define ADC_JDR1_JDATA_8 ((uint32_t)0x00000100) /*!< ADC JDATA bit 8 */
3026 #define ADC_JDR1_JDATA_9 ((uint32_t)0x00000200) /*!< ADC JDATA bit 9 */
3027 #define ADC_JDR1_JDATA_10 ((uint32_t)0x00000400) /*!< ADC JDATA bit 10 */
3028 #define ADC_JDR1_JDATA_11 ((uint32_t)0x00000800) /*!< ADC JDATA bit 11 */
3029 #define ADC_JDR1_JDATA_12 ((uint32_t)0x00001000) /*!< ADC JDATA bit 12 */
3030 #define ADC_JDR1_JDATA_13 ((uint32_t)0x00002000) /*!< ADC JDATA bit 13 */
3031 #define ADC_JDR1_JDATA_14 ((uint32_t)0x00004000) /*!< ADC JDATA bit 14 */
3032 #define ADC_JDR1_JDATA_15 ((uint32_t)0x00008000) /*!< ADC JDATA bit 15 */
3033
3034 /******************** Bit definition for ADC_JDR2 register ********************/
3035 #define ADC_JDR2_JDATA ((uint32_t)0x0000FFFF) /*!< ADC Injected DATA */
3036 #define ADC_JDR2_JDATA_0 ((uint32_t)0x00000001) /*!< ADC JDATA bit 0 */
3037 #define ADC_JDR2_JDATA_1 ((uint32_t)0x00000002) /*!< ADC JDATA bit 1 */
3038 #define ADC_JDR2_JDATA_2 ((uint32_t)0x00000004) /*!< ADC JDATA bit 2 */
3039 #define ADC_JDR2_JDATA_3 ((uint32_t)0x00000008) /*!< ADC JDATA bit 3 */
3040 #define ADC_JDR2_JDATA_4 ((uint32_t)0x00000010) /*!< ADC JDATA bit 4 */
3041 #define ADC_JDR2_JDATA_5 ((uint32_t)0x00000020) /*!< ADC JDATA bit 5 */
3042 #define ADC_JDR2_JDATA_6 ((uint32_t)0x00000040) /*!< ADC JDATA bit 6 */
3043 #define ADC_JDR2_JDATA_7 ((uint32_t)0x00000080) /*!< ADC JDATA bit 7 */
3044 #define ADC_JDR2_JDATA_8 ((uint32_t)0x00000100) /*!< ADC JDATA bit 8 */
3045 #define ADC_JDR2_JDATA_9 ((uint32_t)0x00000200) /*!< ADC JDATA bit 9 */
3046 #define ADC_JDR2_JDATA_10 ((uint32_t)0x00000400) /*!< ADC JDATA bit 10 */
3047 #define ADC_JDR2_JDATA_11 ((uint32_t)0x00000800) /*!< ADC JDATA bit 11 */
3048 #define ADC_JDR2_JDATA_12 ((uint32_t)0x00001000) /*!< ADC JDATA bit 12 */
3049 #define ADC_JDR2_JDATA_13 ((uint32_t)0x00002000) /*!< ADC JDATA bit 13 */
3050 #define ADC_JDR2_JDATA_14 ((uint32_t)0x00004000) /*!< ADC JDATA bit 14 */
3051 #define ADC_JDR2_JDATA_15 ((uint32_t)0x00008000) /*!< ADC JDATA bit 15 */
3052
3053 /******************** Bit definition for ADC_JDR3 register ********************/
3054 #define ADC_JDR3_JDATA ((uint32_t)0x0000FFFF) /*!< ADC Injected DATA */
3055 #define ADC_JDR3_JDATA_0 ((uint32_t)0x00000001) /*!< ADC JDATA bit 0 */
3056 #define ADC_JDR3_JDATA_1 ((uint32_t)0x00000002) /*!< ADC JDATA bit 1 */
3057 #define ADC_JDR3_JDATA_2 ((uint32_t)0x00000004) /*!< ADC JDATA bit 2 */
3058 #define ADC_JDR3_JDATA_3 ((uint32_t)0x00000008) /*!< ADC JDATA bit 3 */
3059 #define ADC_JDR3_JDATA_4 ((uint32_t)0x00000010) /*!< ADC JDATA bit 4 */
3060 #define ADC_JDR3_JDATA_5 ((uint32_t)0x00000020) /*!< ADC JDATA bit 5 */
3061 #define ADC_JDR3_JDATA_6 ((uint32_t)0x00000040) /*!< ADC JDATA bit 6 */
3062 #define ADC_JDR3_JDATA_7 ((uint32_t)0x00000080) /*!< ADC JDATA bit 7 */
3063 #define ADC_JDR3_JDATA_8 ((uint32_t)0x00000100) /*!< ADC JDATA bit 8 */
3064 #define ADC_JDR3_JDATA_9 ((uint32_t)0x00000200) /*!< ADC JDATA bit 9 */
3065 #define ADC_JDR3_JDATA_10 ((uint32_t)0x00000400) /*!< ADC JDATA bit 10 */
3066 #define ADC_JDR3_JDATA_11 ((uint32_t)0x00000800) /*!< ADC JDATA bit 11 */
3067 #define ADC_JDR3_JDATA_12 ((uint32_t)0x00001000) /*!< ADC JDATA bit 12 */
3068 #define ADC_JDR3_JDATA_13 ((uint32_t)0x00002000) /*!< ADC JDATA bit 13 */
3069 #define ADC_JDR3_JDATA_14 ((uint32_t)0x00004000) /*!< ADC JDATA bit 14 */
3070 #define ADC_JDR3_JDATA_15 ((uint32_t)0x00008000) /*!< ADC JDATA bit 15 */
3071
3072 /******************** Bit definition for ADC_JDR4 register ********************/
3073 #define ADC_JDR4_JDATA ((uint32_t)0x0000FFFF) /*!< ADC Injected DATA */
3074 #define ADC_JDR4_JDATA_0 ((uint32_t)0x00000001) /*!< ADC JDATA bit 0 */
3075 #define ADC_JDR4_JDATA_1 ((uint32_t)0x00000002) /*!< ADC JDATA bit 1 */
3076 #define ADC_JDR4_JDATA_2 ((uint32_t)0x00000004) /*!< ADC JDATA bit 2 */
3077 #define ADC_JDR4_JDATA_3 ((uint32_t)0x00000008) /*!< ADC JDATA bit 3 */
3078 #define ADC_JDR4_JDATA_4 ((uint32_t)0x00000010) /*!< ADC JDATA bit 4 */
3079 #define ADC_JDR4_JDATA_5 ((uint32_t)0x00000020) /*!< ADC JDATA bit 5 */
3080 #define ADC_JDR4_JDATA_6 ((uint32_t)0x00000040) /*!< ADC JDATA bit 6 */
3081 #define ADC_JDR4_JDATA_7 ((uint32_t)0x00000080) /*!< ADC JDATA bit 7 */
3082 #define ADC_JDR4_JDATA_8 ((uint32_t)0x00000100) /*!< ADC JDATA bit 8 */
3083 #define ADC_JDR4_JDATA_9 ((uint32_t)0x00000200) /*!< ADC JDATA bit 9 */
3084 #define ADC_JDR4_JDATA_10 ((uint32_t)0x00000400) /*!< ADC JDATA bit 10 */
3085 #define ADC_JDR4_JDATA_11 ((uint32_t)0x00000800) /*!< ADC JDATA bit 11 */
3086 #define ADC_JDR4_JDATA_12 ((uint32_t)0x00001000) /*!< ADC JDATA bit 12 */
3087 #define ADC_JDR4_JDATA_13 ((uint32_t)0x00002000) /*!< ADC JDATA bit 13 */
3088 #define ADC_JDR4_JDATA_14 ((uint32_t)0x00004000) /*!< ADC JDATA bit 14 */
3089 #define ADC_JDR4_JDATA_15 ((uint32_t)0x00008000) /*!< ADC JDATA bit 15 */
3090
3091 /******************** Bit definition for ADC_AWD2CR register ********************/
3092 #define ADC_AWD2CR_AWD2CH ((uint32_t)0x0007FFFE) /*!< ADC Analog watchdog 2 channel selection */
3093 #define ADC_AWD2CR_AWD2CH_0 ((uint32_t)0x00000002) /*!< ADC AWD2CH bit 0 */
3094 #define ADC_AWD2CR_AWD2CH_1 ((uint32_t)0x00000004) /*!< ADC AWD2CH bit 1 */
3095 #define ADC_AWD2CR_AWD2CH_2 ((uint32_t)0x00000008) /*!< ADC AWD2CH bit 2 */
3096 #define ADC_AWD2CR_AWD2CH_3 ((uint32_t)0x00000010) /*!< ADC AWD2CH bit 3 */
3097 #define ADC_AWD2CR_AWD2CH_4 ((uint32_t)0x00000020) /*!< ADC AWD2CH bit 4 */
3098 #define ADC_AWD2CR_AWD2CH_5 ((uint32_t)0x00000040) /*!< ADC AWD2CH bit 5 */
3099 #define ADC_AWD2CR_AWD2CH_6 ((uint32_t)0x00000080) /*!< ADC AWD2CH bit 6 */
3100 #define ADC_AWD2CR_AWD2CH_7 ((uint32_t)0x00000100) /*!< ADC AWD2CH bit 7 */
3101 #define ADC_AWD2CR_AWD2CH_8 ((uint32_t)0x00000200) /*!< ADC AWD2CH bit 8 */
3102 #define ADC_AWD2CR_AWD2CH_9 ((uint32_t)0x00000400) /*!< ADC AWD2CH bit 9 */
3103 #define ADC_AWD2CR_AWD2CH_10 ((uint32_t)0x00000800) /*!< ADC AWD2CH bit 10 */
3104 #define ADC_AWD2CR_AWD2CH_11 ((uint32_t)0x00001000) /*!< ADC AWD2CH bit 11 */
3105 #define ADC_AWD2CR_AWD2CH_12 ((uint32_t)0x00002000) /*!< ADC AWD2CH bit 12 */
3106 #define ADC_AWD2CR_AWD2CH_13 ((uint32_t)0x00004000) /*!< ADC AWD2CH bit 13 */
3107 #define ADC_AWD2CR_AWD2CH_14 ((uint32_t)0x00008000) /*!< ADC AWD2CH bit 14 */
3108 #define ADC_AWD2CR_AWD2CH_15 ((uint32_t)0x00010000) /*!< ADC AWD2CH bit 15 */
3109 #define ADC_AWD2CR_AWD2CH_16 ((uint32_t)0x00020000) /*!< ADC AWD2CH bit 16 */
3110 #define ADC_AWD2CR_AWD2CH_17 ((uint32_t)0x00030000) /*!< ADC AWD2CH bit 17 */
3111
3112 /******************** Bit definition for ADC_AWD3CR register ********************/
3113 #define ADC_AWD3CR_AWD3CH ((uint32_t)0x0007FFFE) /*!< ADC Analog watchdog 2 channel selection */
3114 #define ADC_AWD3CR_AWD3CH_0 ((uint32_t)0x00000002) /*!< ADC AWD3CH bit 0 */
3115 #define ADC_AWD3CR_AWD3CH_1 ((uint32_t)0x00000004) /*!< ADC AWD3CH bit 1 */
3116 #define ADC_AWD3CR_AWD3CH_2 ((uint32_t)0x00000008) /*!< ADC AWD3CH bit 2 */
3117 #define ADC_AWD3CR_AWD3CH_3 ((uint32_t)0x00000010) /*!< ADC AWD3CH bit 3 */
3118 #define ADC_AWD3CR_AWD3CH_4 ((uint32_t)0x00000020) /*!< ADC AWD3CH bit 4 */
3119 #define ADC_AWD3CR_AWD3CH_5 ((uint32_t)0x00000040) /*!< ADC AWD3CH bit 5 */
3120 #define ADC_AWD3CR_AWD3CH_6 ((uint32_t)0x00000080) /*!< ADC AWD3CH bit 6 */
3121 #define ADC_AWD3CR_AWD3CH_7 ((uint32_t)0x00000100) /*!< ADC AWD3CH bit 7 */
3122 #define ADC_AWD3CR_AWD3CH_8 ((uint32_t)0x00000200) /*!< ADC AWD3CH bit 8 */
3123 #define ADC_AWD3CR_AWD3CH_9 ((uint32_t)0x00000400) /*!< ADC AWD3CH bit 9 */
3124 #define ADC_AWD3CR_AWD3CH_10 ((uint32_t)0x00000800) /*!< ADC AWD3CH bit 10 */
3125 #define ADC_AWD3CR_AWD3CH_11 ((uint32_t)0x00001000) /*!< ADC AWD3CH bit 11 */
3126 #define ADC_AWD3CR_AWD3CH_12 ((uint32_t)0x00002000) /*!< ADC AWD3CH bit 12 */
3127 #define ADC_AWD3CR_AWD3CH_13 ((uint32_t)0x00004000) /*!< ADC AWD3CH bit 13 */
3128 #define ADC_AWD3CR_AWD3CH_14 ((uint32_t)0x00008000) /*!< ADC AWD3CH bit 14 */
3129 #define ADC_AWD3CR_AWD3CH_15 ((uint32_t)0x00010000) /*!< ADC AWD3CH bit 15 */
3130 #define ADC_AWD3CR_AWD3CH_16 ((uint32_t)0x00020000) /*!< ADC AWD3CH bit 16 */
3131 #define ADC_AWD3CR_AWD3CH_17 ((uint32_t)0x00030000) /*!< ADC AWD3CH bit 17 */
3132
3133 /******************** Bit definition for ADC_DIFSEL register ********************/
3134 #define ADC_DIFSEL_DIFSEL ((uint32_t)0x0007FFFE) /*!< ADC differential modes for channels 1 to 18 */
3135 #define ADC_DIFSEL_DIFSEL_0 ((uint32_t)0x00000002) /*!< ADC DIFSEL bit 0 */
3136 #define ADC_DIFSEL_DIFSEL_1 ((uint32_t)0x00000004) /*!< ADC DIFSEL bit 1 */
3137 #define ADC_DIFSEL_DIFSEL_2 ((uint32_t)0x00000008) /*!< ADC DIFSEL bit 2 */
3138 #define ADC_DIFSEL_DIFSEL_3 ((uint32_t)0x00000010) /*!< ADC DIFSEL bit 3 */
3139 #define ADC_DIFSEL_DIFSEL_4 ((uint32_t)0x00000020) /*!< ADC DIFSEL bit 4 */
3140 #define ADC_DIFSEL_DIFSEL_5 ((uint32_t)0x00000040) /*!< ADC DIFSEL bit 5 */
3141 #define ADC_DIFSEL_DIFSEL_6 ((uint32_t)0x00000080) /*!< ADC DIFSEL bit 6 */
3142 #define ADC_DIFSEL_DIFSEL_7 ((uint32_t)0x00000100) /*!< ADC DIFSEL bit 7 */
3143 #define ADC_DIFSEL_DIFSEL_8 ((uint32_t)0x00000200) /*!< ADC DIFSEL bit 8 */
3144 #define ADC_DIFSEL_DIFSEL_9 ((uint32_t)0x00000400) /*!< ADC DIFSEL bit 9 */
3145 #define ADC_DIFSEL_DIFSEL_10 ((uint32_t)0x00000800) /*!< ADC DIFSEL bit 10 */
3146 #define ADC_DIFSEL_DIFSEL_11 ((uint32_t)0x00001000) /*!< ADC DIFSEL bit 11 */
3147 #define ADC_DIFSEL_DIFSEL_12 ((uint32_t)0x00002000) /*!< ADC DIFSEL bit 12 */
3148 #define ADC_DIFSEL_DIFSEL_13 ((uint32_t)0x00004000) /*!< ADC DIFSEL bit 13 */
3149 #define ADC_DIFSEL_DIFSEL_14 ((uint32_t)0x00008000) /*!< ADC DIFSEL bit 14 */
3150 #define ADC_DIFSEL_DIFSEL_15 ((uint32_t)0x00010000) /*!< ADC DIFSEL bit 15 */
3151 #define ADC_DIFSEL_DIFSEL_16 ((uint32_t)0x00020000) /*!< ADC DIFSEL bit 16 */
3152 #define ADC_DIFSEL_DIFSEL_17 ((uint32_t)0x00030000) /*!< ADC DIFSEL bit 17 */
3153
3154 /******************** Bit definition for ADC_CALFACT register ********************/
3155 #define ADC_CALFACT_CALFACT_S ((uint32_t)0x0000007F) /*!< ADC calibration factors in single-ended mode */
3156 #define ADC_CALFACT_CALFACT_S_0 ((uint32_t)0x00000001) /*!< ADC CALFACT_S bit 0 */
3157 #define ADC_CALFACT_CALFACT_S_1 ((uint32_t)0x00000002) /*!< ADC CALFACT_S bit 1 */
3158 #define ADC_CALFACT_CALFACT_S_2 ((uint32_t)0x00000004) /*!< ADC CALFACT_S bit 2 */
3159 #define ADC_CALFACT_CALFACT_S_3 ((uint32_t)0x00000008) /*!< ADC CALFACT_S bit 3 */
3160 #define ADC_CALFACT_CALFACT_S_4 ((uint32_t)0x00000010) /*!< ADC CALFACT_S bit 4 */
3161 #define ADC_CALFACT_CALFACT_S_5 ((uint32_t)0x00000020) /*!< ADC CALFACT_S bit 5 */
3162 #define ADC_CALFACT_CALFACT_S_6 ((uint32_t)0x00000040) /*!< ADC CALFACT_S bit 6 */
3163 #define ADC_CALFACT_CALFACT_D ((uint32_t)0x007F0000) /*!< ADC calibration factors in differential mode */
3164 #define ADC_CALFACT_CALFACT_D_0 ((uint32_t)0x00010000) /*!< ADC CALFACT_D bit 0 */
3165 #define ADC_CALFACT_CALFACT_D_1 ((uint32_t)0x00020000) /*!< ADC CALFACT_D bit 1 */
3166 #define ADC_CALFACT_CALFACT_D_2 ((uint32_t)0x00040000) /*!< ADC CALFACT_D bit 2 */
3167 #define ADC_CALFACT_CALFACT_D_3 ((uint32_t)0x00080000) /*!< ADC CALFACT_D bit 3 */
3168 #define ADC_CALFACT_CALFACT_D_4 ((uint32_t)0x00100000) /*!< ADC CALFACT_D bit 4 */
3169 #define ADC_CALFACT_CALFACT_D_5 ((uint32_t)0x00200000) /*!< ADC CALFACT_D bit 5 */
3170 #define ADC_CALFACT_CALFACT_D_6 ((uint32_t)0x00400000) /*!< ADC CALFACT_D bit 6 */
3171
3172 /************************* ADC Common registers *****************************/
3173 /******************** Bit definition for ADC12_CSR register ********************/
3174 #define ADC12_CSR_ADRDY_MST ((uint32_t)0x00000001) /*!< Master ADC ready */
3175 #define ADC12_CSR_ADRDY_EOSMP_MST ((uint32_t)0x00000002) /*!< End of sampling phase flag of the master ADC */
3176 #define ADC12_CSR_ADRDY_EOC_MST ((uint32_t)0x00000004) /*!< End of regular conversion of the master ADC */
3177 #define ADC12_CSR_ADRDY_EOS_MST ((uint32_t)0x00000008) /*!< End of regular sequence flag of the master ADC */
3178 #define ADC12_CSR_ADRDY_OVR_MST ((uint32_t)0x00000010) /*!< Overrun flag of the master ADC */
3179 #define ADC12_CSR_ADRDY_JEOC_MST ((uint32_t)0x00000020) /*!< End of injected conversion of the master ADC */
3180 #define ADC12_CSR_ADRDY_JEOS_MST ((uint32_t)0x00000040) /*!< End of injected sequence flag of the master ADC */
3181 #define ADC12_CSR_AWD1_MST ((uint32_t)0x00000080) /*!< Analog watchdog 1 flag of the master ADC */
3182 #define ADC12_CSR_AWD2_MST ((uint32_t)0x00000100) /*!< Analog watchdog 2 flag of the master ADC */
3183 #define ADC12_CSR_AWD3_MST ((uint32_t)0x00000200) /*!< Analog watchdog 3 flag of the master ADC */
3184 #define ADC12_CSR_JQOVF_MST ((uint32_t)0x00000400) /*!< Injected context queue overflow flag of the master ADC */
3185 #define ADC12_CSR_ADRDY_SLV ((uint32_t)0x00010000) /*!< Slave ADC ready */
3186 #define ADC12_CSR_ADRDY_EOSMP_SLV ((uint32_t)0x00020000) /*!< End of sampling phase flag of the slave ADC */
3187 #define ADC12_CSR_ADRDY_EOC_SLV ((uint32_t)0x00040000) /*!< End of regular conversion of the slave ADC */
3188 #define ADC12_CSR_ADRDY_EOS_SLV ((uint32_t)0x00080000) /*!< End of regular sequence flag of the slave ADC */
3189 #define ADC12_CSR_ADRDY_OVR_SLV ((uint32_t)0x00100000) /*!< Overrun flag of the slave ADC */
3190 #define ADC12_CSR_ADRDY_JEOC_SLV ((uint32_t)0x00200000) /*!< End of injected conversion of the slave ADC */
3191 #define ADC12_CSR_ADRDY_JEOS_SLV ((uint32_t)0x00400000) /*!< End of injected sequence flag of the slave ADC */
3192 #define ADC12_CSR_AWD1_SLV ((uint32_t)0x00800000) /*!< Analog watchdog 1 flag of the slave ADC */
3193 #define ADC12_CSR_AWD2_SLV ((uint32_t)0x01000000) /*!< Analog watchdog 2 flag of the slave ADC */
3194 #define ADC12_CSR_AWD3_SLV ((uint32_t)0x02000000) /*!< Analog watchdog 3 flag of the slave ADC */
3195 #define ADC12_CSR_JQOVF_SLV ((uint32_t)0x04000000) /*!< Injected context queue overflow flag of the slave ADC */
3196
3197 /******************** Bit definition for ADC34_CSR register ********************/
3198 #define ADC34_CSR_ADRDY_MST ((uint32_t)0x00000001) /*!< Master ADC ready */
3199 #define ADC34_CSR_ADRDY_EOSMP_MST ((uint32_t)0x00000002) /*!< End of sampling phase flag of the master ADC */
3200 #define ADC34_CSR_ADRDY_EOC_MST ((uint32_t)0x00000004) /*!< End of regular conversion of the master ADC */
3201 #define ADC34_CSR_ADRDY_EOS_MST ((uint32_t)0x00000008) /*!< End of regular sequence flag of the master ADC */
3202 #define ADC34_CSR_ADRDY_OVR_MST ((uint32_t)0x00000010) /*!< Overrun flag of the master ADC */
3203 #define ADC34_CSR_ADRDY_JEOC_MST ((uint32_t)0x00000020) /*!< End of injected conversion of the master ADC */
3204 #define ADC34_CSR_ADRDY_JEOS_MST ((uint32_t)0x00000040) /*!< End of injected sequence flag of the master ADC */
3205 #define ADC34_CSR_AWD1_MST ((uint32_t)0x00000080) /*!< Analog watchdog 1 flag of the master ADC */
3206 #define ADC34_CSR_AWD2_MST ((uint32_t)0x00000100) /*!< Analog watchdog 2 flag of the master ADC */
3207 #define ADC34_CSR_AWD3_MST ((uint32_t)0x00000200) /*!< Analog watchdog 3 flag of the master ADC */
3208 #define ADC34_CSR_JQOVF_MST ((uint32_t)0x00000400) /*!< Injected context queue overflow flag of the master ADC */
3209 #define ADC34_CSR_ADRDY_SLV ((uint32_t)0x00010000) /*!< Slave ADC ready */
3210 #define ADC34_CSR_ADRDY_EOSMP_SLV ((uint32_t)0x00020000) /*!< End of sampling phase flag of the slave ADC */
3211 #define ADC34_CSR_ADRDY_EOC_SLV ((uint32_t)0x00040000) /*!< End of regular conversion of the slave ADC */
3212 #define ADC34_CSR_ADRDY_EOS_SLV ((uint32_t)0x00080000) /*!< End of regular sequence flag of the slave ADC */
3213 #define ADC12_CSR_ADRDY_OVR_SLV ((uint32_t)0x00100000) /*!< Overrun flag of the slave ADC */
3214 #define ADC34_CSR_ADRDY_JEOC_SLV ((uint32_t)0x00200000) /*!< End of injected conversion of the slave ADC */
3215 #define ADC34_CSR_ADRDY_JEOS_SLV ((uint32_t)0x00400000) /*!< End of injected sequence flag of the slave ADC */
3216 #define ADC34_CSR_AWD1_SLV ((uint32_t)0x00800000) /*!< Analog watchdog 1 flag of the slave ADC */
3217 #define ADC34_CSR_AWD2_SLV ((uint32_t)0x01000000) /*!< Analog watchdog 2 flag of the slave ADC */
3218 #define ADC34_CSR_AWD3_SLV ((uint32_t)0x02000000) /*!< Analog watchdog 3 flag of the slave ADC */
3219 #define ADC34_CSR_JQOVF_SLV ((uint32_t)0x04000000) /*!< Injected context queue overflow flag of the slave ADC */
3220
3221 /******************** Bit definition for ADC_CCR register ********************/
3222 #define ADC12_CCR_MULTI ((uint32_t)0x0000001F) /*!< Multi ADC mode selection */
3223 #define ADC12_CCR_MULTI_0 ((uint32_t)0x00000001) /*!< MULTI bit 0 */
3224 #define ADC12_CCR_MULTI_1 ((uint32_t)0x00000002) /*!< MULTI bit 1 */
3225 #define ADC12_CCR_MULTI_2 ((uint32_t)0x00000004) /*!< MULTI bit 2 */
3226 #define ADC12_CCR_MULTI_3 ((uint32_t)0x00000008) /*!< MULTI bit 3 */
3227 #define ADC12_CCR_MULTI_4 ((uint32_t)0x00000010) /*!< MULTI bit 4 */
3228 #define ADC12_CCR_DELAY ((uint32_t)0x00000F00) /*!< Delay between 2 sampling phases */
3229 #define ADC12_CCR_DELAY_0 ((uint32_t)0x00000100) /*!< DELAY bit 0 */
3230 #define ADC12_CCR_DELAY_1 ((uint32_t)0x00000200) /*!< DELAY bit 1 */
3231 #define ADC12_CCR_DELAY_2 ((uint32_t)0x00000400) /*!< DELAY bit 2 */
3232 #define ADC12_CCR_DELAY_3 ((uint32_t)0x00000800) /*!< DELAY bit 3 */
3233 #define ADC12_CCR_DMACFG ((uint32_t)0x00002000) /*!< DMA configuration for multi-ADC mode */
3234 #define ADC12_CCR_MDMA ((uint32_t)0x0000C000) /*!< DMA mode for multi-ADC mode */
3235 #define ADC12_CCR_MDMA_0 ((uint32_t)0x00004000) /*!< MDMA bit 0 */
3236 #define ADC12_CCR_MDMA_1 ((uint32_t)0x00008000) /*!< MDMA bit 1 */
3237 #define ADC12_CCR_CKMODE ((uint32_t)0x00030000) /*!< ADC clock mode */
3238 #define ADC12_CCR_CKMODE_0 ((uint32_t)0x00010000) /*!< CKMODE bit 0 */
3239 #define ADC12_CCR_CKMODE_1 ((uint32_t)0x00020000) /*!< CKMODE bit 1 */
3240 #define ADC12_CCR_VREFEN ((uint32_t)0x00400000) /*!< VREFINT enable */
3241 #define ADC12_CCR_TSEN ((uint32_t)0x00800000) /*!< Temperature sensor enable */
3242 #define ADC12_CCR_VBATEN ((uint32_t)0x01000000) /*!< VBAT enable */
3243
3244 /******************** Bit definition for ADC_CCR register ********************/
3245 #define ADC34_CCR_MULTI ((uint32_t)0x0000001F) /*!< Multi ADC mode selection */
3246 #define ADC34_CCR_MULTI_0 ((uint32_t)0x00000001) /*!< MULTI bit 0 */
3247 #define ADC34_CCR_MULTI_1 ((uint32_t)0x00000002) /*!< MULTI bit 1 */
3248 #define ADC34_CCR_MULTI_2 ((uint32_t)0x00000004) /*!< MULTI bit 2 */
3249 #define ADC34_CCR_MULTI_3 ((uint32_t)0x00000008) /*!< MULTI bit 3 */
3250 #define ADC34_CCR_MULTI_4 ((uint32_t)0x00000010) /*!< MULTI bit 4 */
3251
3252 #define ADC34_CCR_DELAY ((uint32_t)0x00000F00) /*!< Delay between 2 sampling phases */
3253 #define ADC34_CCR_DELAY_0 ((uint32_t)0x00000100) /*!< DELAY bit 0 */
3254 #define ADC34_CCR_DELAY_1 ((uint32_t)0x00000200) /*!< DELAY bit 1 */
3255 #define ADC34_CCR_DELAY_2 ((uint32_t)0x00000400) /*!< DELAY bit 2 */
3256 #define ADC34_CCR_DELAY_3 ((uint32_t)0x00000800) /*!< DELAY bit 3 */
3257
3258 #define ADC34_CCR_DMACFG ((uint32_t)0x00002000) /*!< DMA configuration for multi-ADC mode */
3259 #define ADC34_CCR_MDMA ((uint32_t)0x0000C000) /*!< DMA mode for multi-ADC mode */
3260 #define ADC34_CCR_MDMA_0 ((uint32_t)0x00004000) /*!< MDMA bit 0 */
3261 #define ADC34_CCR_MDMA_1 ((uint32_t)0x00008000) /*!< MDMA bit 1 */
3262
3263 #define ADC34_CCR_CKMODE ((uint32_t)0x00030000) /*!< ADC clock mode */
3264 #define ADC34_CCR_CKMODE_0 ((uint32_t)0x00010000) /*!< CKMODE bit 0 */
3265 #define ADC34_CCR_CKMODE_1 ((uint32_t)0x00020000) /*!< CKMODE bit 1 */
3266
3267 #define ADC34_CCR_VREFEN ((uint32_t)0x00400000) /*!< VREFINT enable */
3268
3269 /******************** Bit definition for ADC_CDR register ********************/
3270 #define ADC12_CDR_RDATA_MST ((uint32_t)0x0000FFFF) /*!< Regular Data of the master ADC */
3271 #define ADC12_CDR_RDATA_MST_0 ((uint32_t)0x00000001) /*!< RDATA_MST bit 0 */
3272 #define ADC12_CDR_RDATA_MST_1 ((uint32_t)0x00000002) /*!< RDATA_MST bit 1 */
3273 #define ADC12_CDR_RDATA_MST_2 ((uint32_t)0x00000004) /*!< RDATA_MST bit 2 */
3274 #define ADC12_CDR_RDATA_MST_3 ((uint32_t)0x00000008) /*!< RDATA_MST bit 3 */
3275 #define ADC12_CDR_RDATA_MST_4 ((uint32_t)0x00000010) /*!< RDATA_MST bit 4 */
3276 #define ADC12_CDR_RDATA_MST_5 ((uint32_t)0x00000020) /*!< RDATA_MST bit 5 */
3277 #define ADC12_CDR_RDATA_MST_6 ((uint32_t)0x00000040) /*!< RDATA_MST bit 6 */
3278 #define ADC12_CDR_RDATA_MST_7 ((uint32_t)0x00000080) /*!< RDATA_MST bit 7 */
3279 #define ADC12_CDR_RDATA_MST_8 ((uint32_t)0x00000100) /*!< RDATA_MST bit 8 */
3280 #define ADC12_CDR_RDATA_MST_9 ((uint32_t)0x00000200) /*!< RDATA_MST bit 9 */
3281 #define ADC12_CDR_RDATA_MST_10 ((uint32_t)0x00000400) /*!< RDATA_MST bit 10 */
3282 #define ADC12_CDR_RDATA_MST_11 ((uint32_t)0x00000800) /*!< RDATA_MST bit 11 */
3283 #define ADC12_CDR_RDATA_MST_12 ((uint32_t)0x00001000) /*!< RDATA_MST bit 12 */
3284 #define ADC12_CDR_RDATA_MST_13 ((uint32_t)0x00002000) /*!< RDATA_MST bit 13 */
3285 #define ADC12_CDR_RDATA_MST_14 ((uint32_t)0x00004000) /*!< RDATA_MST bit 14 */
3286 #define ADC12_CDR_RDATA_MST_15 ((uint32_t)0x00008000) /*!< RDATA_MST bit 15 */
3287
3288 #define ADC12_CDR_RDATA_SLV ((uint32_t)0xFFFF0000) /*!< Regular Data of the master ADC */
3289 #define ADC12_CDR_RDATA_SLV_0 ((uint32_t)0x00010000) /*!< RDATA_SLV bit 0 */
3290 #define ADC12_CDR_RDATA_SLV_1 ((uint32_t)0x00020000) /*!< RDATA_SLV bit 1 */
3291 #define ADC12_CDR_RDATA_SLV_2 ((uint32_t)0x00040000) /*!< RDATA_SLV bit 2 */
3292 #define ADC12_CDR_RDATA_SLV_3 ((uint32_t)0x00080000) /*!< RDATA_SLV bit 3 */
3293 #define ADC12_CDR_RDATA_SLV_4 ((uint32_t)0x00100000) /*!< RDATA_SLV bit 4 */
3294 #define ADC12_CDR_RDATA_SLV_5 ((uint32_t)0x00200000) /*!< RDATA_SLV bit 5 */
3295 #define ADC12_CDR_RDATA_SLV_6 ((uint32_t)0x00400000) /*!< RDATA_SLV bit 6 */
3296 #define ADC12_CDR_RDATA_SLV_7 ((uint32_t)0x00800000) /*!< RDATA_SLV bit 7 */
3297 #define ADC12_CDR_RDATA_SLV_8 ((uint32_t)0x01000000) /*!< RDATA_SLV bit 8 */
3298 #define ADC12_CDR_RDATA_SLV_9 ((uint32_t)0x02000000) /*!< RDATA_SLV bit 9 */
3299 #define ADC12_CDR_RDATA_SLV_10 ((uint32_t)0x04000000) /*!< RDATA_SLV bit 10 */
3300 #define ADC12_CDR_RDATA_SLV_11 ((uint32_t)0x08000000) /*!< RDATA_SLV bit 11 */
3301 #define ADC12_CDR_RDATA_SLV_12 ((uint32_t)0x10000000) /*!< RDATA_SLV bit 12 */
3302 #define ADC12_CDR_RDATA_SLV_13 ((uint32_t)0x20000000) /*!< RDATA_SLV bit 13 */
3303 #define ADC12_CDR_RDATA_SLV_14 ((uint32_t)0x40000000) /*!< RDATA_SLV bit 14 */
3304 #define ADC12_CDR_RDATA_SLV_15 ((uint32_t)0x80000000) /*!< RDATA_SLV bit 15 */
3305
3306 /******************** Bit definition for ADC_CDR register ********************/
3307 #define ADC34_CDR_RDATA_MST ((uint32_t)0x0000FFFF) /*!< Regular Data of the master ADC */
3308 #define ADC34_CDR_RDATA_MST_0 ((uint32_t)0x00000001) /*!< RDATA_MST bit 0 */
3309 #define ADC34_CDR_RDATA_MST_1 ((uint32_t)0x00000002) /*!< RDATA_MST bit 1 */
3310 #define ADC34_CDR_RDATA_MST_2 ((uint32_t)0x00000004) /*!< RDATA_MST bit 2 */
3311 #define ADC34_CDR_RDATA_MST_3 ((uint32_t)0x00000008) /*!< RDATA_MST bit 3 */
3312 #define ADC34_CDR_RDATA_MST_4 ((uint32_t)0x00000010) /*!< RDATA_MST bit 4 */
3313 #define ADC34_CDR_RDATA_MST_5 ((uint32_t)0x00000020) /*!< RDATA_MST bit 5 */
3314 #define ADC34_CDR_RDATA_MST_6 ((uint32_t)0x00000040) /*!< RDATA_MST bit 6 */
3315 #define ADC34_CDR_RDATA_MST_7 ((uint32_t)0x00000080) /*!< RDATA_MST bit 7 */
3316 #define ADC34_CDR_RDATA_MST_8 ((uint32_t)0x00000100) /*!< RDATA_MST bit 8 */
3317 #define ADC34_CDR_RDATA_MST_9 ((uint32_t)0x00000200) /*!< RDATA_MST bit 9 */
3318 #define ADC34_CDR_RDATA_MST_10 ((uint32_t)0x00000400) /*!< RDATA_MST bit 10 */
3319 #define ADC34_CDR_RDATA_MST_11 ((uint32_t)0x00000800) /*!< RDATA_MST bit 11 */
3320 #define ADC34_CDR_RDATA_MST_12 ((uint32_t)0x00001000) /*!< RDATA_MST bit 12 */
3321 #define ADC34_CDR_RDATA_MST_13 ((uint32_t)0x00002000) /*!< RDATA_MST bit 13 */
3322 #define ADC34_CDR_RDATA_MST_14 ((uint32_t)0x00004000) /*!< RDATA_MST bit 14 */
3323 #define ADC34_CDR_RDATA_MST_15 ((uint32_t)0x00008000) /*!< RDATA_MST bit 15 */
3324
3325 #define ADC34_CDR_RDATA_SLV ((uint32_t)0xFFFF0000) /*!< Regular Data of the master ADC */
3326 #define ADC34_CDR_RDATA_SLV_0 ((uint32_t)0x00010000) /*!< RDATA_SLV bit 0 */
3327 #define ADC34_CDR_RDATA_SLV_1 ((uint32_t)0x00020000) /*!< RDATA_SLV bit 1 */
3328 #define ADC34_CDR_RDATA_SLV_2 ((uint32_t)0x00040000) /*!< RDATA_SLV bit 2 */
3329 #define ADC34_CDR_RDATA_SLV_3 ((uint32_t)0x00080000) /*!< RDATA_SLV bit 3 */
3330 #define ADC34_CDR_RDATA_SLV_4 ((uint32_t)0x00100000) /*!< RDATA_SLV bit 4 */
3331 #define ADC34_CDR_RDATA_SLV_5 ((uint32_t)0x00200000) /*!< RDATA_SLV bit 5 */
3332 #define ADC34_CDR_RDATA_SLV_6 ((uint32_t)0x00400000) /*!< RDATA_SLV bit 6 */
3333 #define ADC34_CDR_RDATA_SLV_7 ((uint32_t)0x00800000) /*!< RDATA_SLV bit 7 */
3334 #define ADC34_CDR_RDATA_SLV_8 ((uint32_t)0x01000000) /*!< RDATA_SLV bit 8 */
3335 #define ADC34_CDR_RDATA_SLV_9 ((uint32_t)0x02000000) /*!< RDATA_SLV bit 9 */
3336 #define ADC34_CDR_RDATA_SLV_10 ((uint32_t)0x04000000) /*!< RDATA_SLV bit 10 */
3337 #define ADC34_CDR_RDATA_SLV_11 ((uint32_t)0x08000000) /*!< RDATA_SLV bit 11 */
3338 #define ADC34_CDR_RDATA_SLV_12 ((uint32_t)0x10000000) /*!< RDATA_SLV bit 12 */
3339 #define ADC34_CDR_RDATA_SLV_13 ((uint32_t)0x20000000) /*!< RDATA_SLV bit 13 */
3340 #define ADC34_CDR_RDATA_SLV_14 ((uint32_t)0x40000000) /*!< RDATA_SLV bit 14 */
3341 #define ADC34_CDR_RDATA_SLV_15 ((uint32_t)0x80000000) /*!< RDATA_SLV bit 15 */
3342
3343 /******************************************************************************/
3344 /* */
3345 /* Analog Comparators (COMP) */
3346 /* */
3347 /******************************************************************************/
3348 /********************** Bit definition for COMP1_CSR register ***************/
3349 #define COMP1_CSR_COMP1EN ((uint32_t)0x00000001) /*!< COMP1 enable */
3350 #define COMP1_CSR_COMP1SW1 ((uint32_t)0x00000002) /*!< COMP1 SW1 switch control */
3351 #define COMP1_CSR_COMP1MODE ((uint32_t)0x0000000C) /*!< COMP1 power mode */
3352 #define COMP1_CSR_COMP1MODE_0 ((uint32_t)0x00000004) /*!< COMP1 power mode bit 0 */
3353 #define COMP1_CSR_COMP1MODE_1 ((uint32_t)0x00000008) /*!< COMP1 power mode bit 1 */
3354 #define COMP1_CSR_COMP1INSEL ((uint32_t)0x00000070) /*!< COMP1 inverting input select */
3355 #define COMP1_CSR_COMP1INSEL_0 ((uint32_t)0x00000010) /*!< COMP1 inverting input select bit 0 */
3356 #define COMP1_CSR_COMP1INSEL_1 ((uint32_t)0x00000020) /*!< COMP1 inverting input select bit 1 */
3357 #define COMP1_CSR_COMP1INSEL_2 ((uint32_t)0x00000040) /*!< COMP1 inverting input select bit 2 */
3358 #define COMP1_CSR_COMP1NONINSEL ((uint32_t)0x00000080) /*!< COMP1 non inverting input select */
3359 #define COMP1_CSR_COMP1OUTSEL ((uint32_t)0x00003C00) /*!< COMP1 output select */
3360 #define COMP1_CSR_COMP1OUTSEL_0 ((uint32_t)0x00000400) /*!< COMP1 output select bit 0 */
3361 #define COMP1_CSR_COMP1OUTSEL_1 ((uint32_t)0x00000800) /*!< COMP1 output select bit 1 */
3362 #define COMP1_CSR_COMP1OUTSEL_2 ((uint32_t)0x00001000) /*!< COMP1 output select bit 2 */
3363 #define COMP1_CSR_COMP1OUTSEL_3 ((uint32_t)0x00002000) /*!< COMP1 output select bit 3 */
3364 #define COMP1_CSR_COMP1POL ((uint32_t)0x00008000) /*!< COMP1 output polarity */
3365 #define COMP1_CSR_COMP1HYST ((uint32_t)0x00030000) /*!< COMP1 hysteresis */
3366 #define COMP1_CSR_COMP1HYST_0 ((uint32_t)0x00010000) /*!< COMP1 hysteresis bit 0 */
3367 #define COMP1_CSR_COMP1HYST_1 ((uint32_t)0x00020000) /*!< COMP1 hysteresis bit 1 */
3368 #define COMP1_CSR_COMP1BLANKING ((uint32_t)0x000C0000) /*!< COMP1 blanking */
3369 #define COMP1_CSR_COMP1BLANKING_0 ((uint32_t)0x00040000) /*!< COMP1 blanking bit 0 */
3370 #define COMP1_CSR_COMP1BLANKING_1 ((uint32_t)0x00080000) /*!< COMP1 blanking bit 1 */
3371 #define COMP1_CSR_COMP1BLANKING_2 ((uint32_t)0x00100000) /*!< COMP1 blanking bit 2 */
3372 #define COMP1_CSR_COMP1OUT ((uint32_t)0x40000000) /*!< COMP1 output level */
3373 #define COMP1_CSR_COMP1LOCK ((uint32_t)0x80000000) /*!< COMP1 lock */
3374
3375 /********************** Bit definition for COMP2_CSR register ***************/
3376 #define COMP2_CSR_COMP2EN ((uint32_t)0x00000001) /*!< COMP2 enable */
3377 #define COMP2_CSR_COMP2MODE ((uint32_t)0x0000000C) /*!< COMP2 power mode */
3378 #define COMP2_CSR_COMP2MODE_0 ((uint32_t)0x00000004) /*!< COMP2 power mode bit 0 */
3379 #define COMP2_CSR_COMP2MODE_1 ((uint32_t)0x00000008) /*!< COMP2 power mode bit 1 */
3380 #define COMP2_CSR_COMP2INSEL ((uint32_t)0x00000070) /*!< COMP2 inverting input select */
3381 #define COMP2_CSR_COMP2INSEL_0 ((uint32_t)0x00000010) /*!< COMP2 inverting input select bit 0 */
3382 #define COMP2_CSR_COMP2INSEL_1 ((uint32_t)0x00000020) /*!< COMP2 inverting input select bit 1 */
3383 #define COMP2_CSR_COMP2INSEL_2 ((uint32_t)0x00000040) /*!< COMP2 inverting input select bit 2 */
3384 #define COMP2_CSR_COMP2NONINSEL ((uint32_t)0x00000080) /*!< COMP2 non inverting input select */
3385 #define COMP2_CSR_COMP2WNDWEN ((uint32_t)0x00000200) /*!< COMP2 window mode enable */
3386 #define COMP2_CSR_COMP2OUTSEL ((uint32_t)0x00003C00) /*!< COMP2 output select */
3387 #define COMP2_CSR_COMP2OUTSEL_0 ((uint32_t)0x00000400) /*!< COMP2 output select bit 0 */
3388 #define COMP2_CSR_COMP2OUTSEL_1 ((uint32_t)0x00000800) /*!< COMP2 output select bit 1 */
3389 #define COMP2_CSR_COMP2OUTSEL_2 ((uint32_t)0x00001000) /*!< COMP2 output select bit 2 */
3390 #define COMP2_CSR_COMP2OUTSEL_3 ((uint32_t)0x00002000) /*!< COMP2 output select bit 3 */
3391 #define COMP2_CSR_COMP2POL ((uint32_t)0x00008000) /*!< COMP2 output polarity */
3392 #define COMP2_CSR_COMP2HYST ((uint32_t)0x00030000) /*!< COMP2 hysteresis */
3393 #define COMP2_CSR_COMP2HYST_0 ((uint32_t)0x00010000) /*!< COMP2 hysteresis bit 0 */
3394 #define COMP2_CSR_COMP2HYST_1 ((uint32_t)0x00020000) /*!< COMP2 hysteresis bit 1 */
3395 #define COMP2_CSR_COMP2BLANKING ((uint32_t)0x000C0000) /*!< COMP2 blanking */
3396 #define COMP2_CSR_COMP2BLANKING_0 ((uint32_t)0x00040000) /*!< COMP2 blanking bit 0 */
3397 #define COMP2_CSR_COMP2BLANKING_1 ((uint32_t)0x00080000) /*!< COMP2 blanking bit 1 */
3398 #define COMP2_CSR_COMP2BLANKING_2 ((uint32_t)0x00100000) /*!< COMP2 blanking bit 2 */
3399 #define COMP2_CSR_COMP2OUT ((uint32_t)0x40000000) /*!< COMP2 output level */
3400 #define COMP2_CSR_COMP2LOCK ((uint32_t)0x80000000) /*!< COMP2 lock */
3401
3402 /********************** Bit definition for COMP3_CSR register ***************/
3403 #define COMP3_CSR_COMP3EN ((uint32_t)0x00000001) /*!< COMP3 enable */
3404 #define COMP3_CSR_COMP3MODE ((uint32_t)0x0000000C) /*!< COMP3 power mode */
3405 #define COMP3_CSR_COMP3MODE_0 ((uint32_t)0x00000004) /*!< COMP3 power mode bit 0 */
3406 #define COMP3_CSR_COMP3MODE_1 ((uint32_t)0x00000008) /*!< COMP3 power mode bit 1 */
3407 #define COMP3_CSR_COMP3INSEL ((uint32_t)0x00000070) /*!< COMP3 inverting input select */
3408 #define COMP3_CSR_COMP3INSEL_0 ((uint32_t)0x00000010) /*!< COMP3 inverting input select bit 0 */
3409 #define COMP3_CSR_COMP3INSEL_1 ((uint32_t)0x00000020) /*!< COMP3 inverting input select bit 1 */
3410 #define COMP3_CSR_COMP3INSEL_2 ((uint32_t)0x00000040) /*!< COMP3 inverting input select bit 2 */
3411 #define COMP3_CSR_COMP3NONINSEL ((uint32_t)0x00000080) /*!< COMP3 non inverting input select */
3412 #define COMP3_CSR_COMP3OUTSEL ((uint32_t)0x00003C00) /*!< COMP3 output select */
3413 #define COMP3_CSR_COMP3OUTSEL_0 ((uint32_t)0x00000400) /*!< COMP3 output select bit 0 */
3414 #define COMP3_CSR_COMP3OUTSEL_1 ((uint32_t)0x00000800) /*!< COMP3 output select bit 1 */
3415 #define COMP3_CSR_COMP3OUTSEL_2 ((uint32_t)0x00001000) /*!< COMP3 output select bit 2 */
3416 #define COMP3_CSR_COMP3OUTSEL_3 ((uint32_t)0x00002000) /*!< COMP3 output select bit 3 */
3417 #define COMP3_CSR_COMP3POL ((uint32_t)0x00008000) /*!< COMP3 output polarity */
3418 #define COMP3_CSR_COMP3HYST ((uint32_t)0x00030000) /*!< COMP3 hysteresis */
3419 #define COMP3_CSR_COMP3HYST_0 ((uint32_t)0x00010000) /*!< COMP3 hysteresis bit 0 */
3420 #define COMP3_CSR_COMP3HYST_1 ((uint32_t)0x00020000) /*!< COMP3 hysteresis bit 1 */
3421 #define COMP3_CSR_COMP3BLANKING ((uint32_t)0x000C0000) /*!< COMP3 blanking */
3422 #define COMP3_CSR_COMP3BLANKING_0 ((uint32_t)0x00040000) /*!< COMP3 blanking bit 0 */
3423 #define COMP3_CSR_COMP3BLANKING_1 ((uint32_t)0x00080000) /*!< COMP3 blanking bit 1 */
3424 #define COMP3_CSR_COMP3BLANKING_2 ((uint32_t)0x00100000) /*!< COMP3 blanking bit 2 */
3425 #define COMP3_CSR_COMP3OUT ((uint32_t)0x40000000) /*!< COMP3 output level */
3426 #define COMP3_CSR_COMP3LOCK ((uint32_t)0x80000000) /*!< COMP3 lock */
3427
3428 /********************** Bit definition for COMP4_CSR register ***************/
3429 #define COMP4_CSR_COMP4EN ((uint32_t)0x00000001) /*!< COMP4 enable */
3430 #define COMP4_CSR_COMP4MODE ((uint32_t)0x0000000C) /*!< COMP4 power mode */
3431 #define COMP4_CSR_COMP4MODE_0 ((uint32_t)0x00000004) /*!< COMP4 power mode bit 0 */
3432 #define COMP4_CSR_COMP4MODE_1 ((uint32_t)0x00000008) /*!< COMP4 power mode bit 1 */
3433 #define COMP4_CSR_COMP4INSEL ((uint32_t)0x00000070) /*!< COMP4 inverting input select */
3434 #define COMP4_CSR_COMP4INSEL_0 ((uint32_t)0x00000010) /*!< COMP4 inverting input select bit 0 */
3435 #define COMP4_CSR_COMP4INSEL_1 ((uint32_t)0x00000020) /*!< COMP4 inverting input select bit 1 */
3436 #define COMP4_CSR_COMP4INSEL_2 ((uint32_t)0x00000040) /*!< COMP4 inverting input select bit 2 */
3437 #define COMP4_CSR_COMP4NONINSEL ((uint32_t)0x00000080) /*!< COMP4 non inverting input select */
3438 #define COMP4_CSR_COMP4WNDWEN ((uint32_t)0x00000200) /*!< COMP4 window mode enable */
3439 #define COMP4_CSR_COMP4OUTSEL ((uint32_t)0x00003C00) /*!< COMP4 output select */
3440 #define COMP4_CSR_COMP4OUTSEL_0 ((uint32_t)0x00000400) /*!< COMP4 output select bit 0 */
3441 #define COMP4_CSR_COMP4OUTSEL_1 ((uint32_t)0x00000800) /*!< COMP4 output select bit 1 */
3442 #define COMP4_CSR_COMP4OUTSEL_2 ((uint32_t)0x00001000) /*!< COMP4 output select bit 2 */
3443 #define COMP4_CSR_COMP4OUTSEL_3 ((uint32_t)0x00002000) /*!< COMP4 output select bit 3 */
3444 #define COMP4_CSR_COMP4POL ((uint32_t)0x00008000) /*!< COMP4 output polarity */
3445 #define COMP4_CSR_COMP4HYST ((uint32_t)0x00030000) /*!< COMP4 hysteresis */
3446 #define COMP4_CSR_COMP4HYST_0 ((uint32_t)0x00010000) /*!< COMP4 hysteresis bit 0 */
3447 #define COMP4_CSR_COMP4HYST_1 ((uint32_t)0x00020000) /*!< COMP4 hysteresis bit 1 */
3448 #define COMP4_CSR_COMP4BLANKING ((uint32_t)0x000C0000) /*!< COMP4 blanking */
3449 #define COMP4_CSR_COMP4BLANKING_0 ((uint32_t)0x00040000) /*!< COMP4 blanking bit 0 */
3450 #define COMP4_CSR_COMP4BLANKING_1 ((uint32_t)0x00080000) /*!< COMP4 blanking bit 1 */
3451 #define COMP4_CSR_COMP4BLANKING_2 ((uint32_t)0x00100000) /*!< COMP4 blanking bit 2 */
3452 #define COMP4_CSR_COMP4OUT ((uint32_t)0x40000000) /*!< COMP4 output level */
3453 #define COMP4_CSR_COMP4LOCK ((uint32_t)0x80000000) /*!< COMP4 lock */
3454
3455 /********************** Bit definition for COMP5_CSR register ***************/
3456 #define COMP5_CSR_COMP5EN ((uint32_t)0x00000001) /*!< COMP5 enable */
3457 #define COMP5_CSR_COMP5MODE ((uint32_t)0x0000000C) /*!< COMP5 power mode */
3458 #define COMP5_CSR_COMP5MODE_0 ((uint32_t)0x00000004) /*!< COMP5 power mode bit 0 */
3459 #define COMP5_CSR_COMP5MODE_1 ((uint32_t)0x00000008) /*!< COMP5 power mode bit 1 */
3460 #define COMP5_CSR_COMP5INSEL ((uint32_t)0x00000070) /*!< COMP5 inverting input select */
3461 #define COMP5_CSR_COMP5INSEL_0 ((uint32_t)0x00000010) /*!< COMP5 inverting input select bit 0 */
3462 #define COMP5_CSR_COMP5INSEL_1 ((uint32_t)0x00000020) /*!< COMP5 inverting input select bit 1 */
3463 #define COMP5_CSR_COMP5INSEL_2 ((uint32_t)0x00000040) /*!< COMP5 inverting input select bit 2 */
3464 #define COMP5_CSR_COMP5NONINSEL ((uint32_t)0x00000080) /*!< COMP5 non inverting input select */
3465 #define COMP5_CSR_COMP5OUTSEL ((uint32_t)0x00003C00) /*!< COMP5 output select */
3466 #define COMP5_CSR_COMP5OUTSEL_0 ((uint32_t)0x00000400) /*!< COMP5 output select bit 0 */
3467 #define COMP5_CSR_COMP5OUTSEL_1 ((uint32_t)0x00000800) /*!< COMP5 output select bit 1 */
3468 #define COMP5_CSR_COMP5OUTSEL_2 ((uint32_t)0x00001000) /*!< COMP5 output select bit 2 */
3469 #define COMP5_CSR_COMP5OUTSEL_3 ((uint32_t)0x00002000) /*!< COMP5 output select bit 3 */
3470 #define COMP5_CSR_COMP5POL ((uint32_t)0x00008000) /*!< COMP5 output polarity */
3471 #define COMP5_CSR_COMP5HYST ((uint32_t)0x00030000) /*!< COMP5 hysteresis */
3472 #define COMP5_CSR_COMP5HYST_0 ((uint32_t)0x00010000) /*!< COMP5 hysteresis bit 0 */
3473 #define COMP5_CSR_COMP5HYST_1 ((uint32_t)0x00020000) /*!< COMP5 hysteresis bit 1 */
3474 #define COMP5_CSR_COMP5BLANKING ((uint32_t)0x000C0000) /*!< COMP5 blanking */
3475 #define COMP5_CSR_COMP5BLANKING_0 ((uint32_t)0x00040000) /*!< COMP5 blanking bit 0 */
3476 #define COMP5_CSR_COMP5BLANKING_1 ((uint32_t)0x00080000) /*!< COMP5 blanking bit 1 */
3477 #define COMP5_CSR_COMP5BLANKING_2 ((uint32_t)0x00100000) /*!< COMP5 blanking bit 2 */
3478 #define COMP5_CSR_COMP5OUT ((uint32_t)0x40000000) /*!< COMP5 output level */
3479 #define COMP5_CSR_COMP5LOCK ((uint32_t)0x80000000) /*!< COMP5 lock */
3480
3481 /********************** Bit definition for COMP6_CSR register ***************/
3482 #define COMP6_CSR_COMP6EN ((uint32_t)0x00000001) /*!< COMP6 enable */
3483 #define COMP6_CSR_COMP6MODE ((uint32_t)0x0000000C) /*!< COMP6 power mode */
3484 #define COMP6_CSR_COMP6MODE_0 ((uint32_t)0x00000004) /*!< COMP6 power mode bit 0 */
3485 #define COMP6_CSR_COMP6MODE_1 ((uint32_t)0x00000008) /*!< COMP6 power mode bit 1 */
3486 #define COMP6_CSR_COMP6INSEL ((uint32_t)0x00000070) /*!< COMP6 inverting input select */
3487 #define COMP6_CSR_COMP6INSEL_0 ((uint32_t)0x00000010) /*!< COMP6 inverting input select bit 0 */
3488 #define COMP6_CSR_COMP6INSEL_1 ((uint32_t)0x00000020) /*!< COMP6 inverting input select bit 1 */
3489 #define COMP6_CSR_COMP6INSEL_2 ((uint32_t)0x00000040) /*!< COMP6 inverting input select bit 2 */
3490 #define COMP6_CSR_COMP6NONINSEL ((uint32_t)0x00000080) /*!< COMP6 non inverting input select */
3491 #define COMP6_CSR_COMP6WNDWEN ((uint32_t)0x00000200) /*!< COMP6 window mode enable */
3492 #define COMP6_CSR_COMP6OUTSEL ((uint32_t)0x00003C00) /*!< COMP6 output select */
3493 #define COMP6_CSR_COMP6OUTSEL_0 ((uint32_t)0x00000400) /*!< COMP6 output select bit 0 */
3494 #define COMP6_CSR_COMP6OUTSEL_1 ((uint32_t)0x00000800) /*!< COMP6 output select bit 1 */
3495 #define COMP6_CSR_COMP6OUTSEL_2 ((uint32_t)0x00001000) /*!< COMP6 output select bit 2 */
3496 #define COMP6_CSR_COMP6OUTSEL_3 ((uint32_t)0x00002000) /*!< COMP6 output select bit 3 */
3497 #define COMP6_CSR_COMP6POL ((uint32_t)0x00008000) /*!< COMP6 output polarity */
3498 #define COMP6_CSR_COMP6HYST ((uint32_t)0x00030000) /*!< COMP6 hysteresis */
3499 #define COMP6_CSR_COMP6HYST_0 ((uint32_t)0x00010000) /*!< COMP6 hysteresis bit 0 */
3500 #define COMP6_CSR_COMP6HYST_1 ((uint32_t)0x00020000) /*!< COMP6 hysteresis bit 1 */
3501 #define COMP6_CSR_COMP6BLANKING ((uint32_t)0x000C0000) /*!< COMP6 blanking */
3502 #define COMP6_CSR_COMP6BLANKING_0 ((uint32_t)0x00040000) /*!< COMP6 blanking bit 0 */
3503 #define COMP6_CSR_COMP6BLANKING_1 ((uint32_t)0x00080000) /*!< COMP6 blanking bit 1 */
3504 #define COMP6_CSR_COMP6BLANKING_2 ((uint32_t)0x00100000) /*!< COMP6 blanking bit 2 */
3505 #define COMP6_CSR_COMP6OUT ((uint32_t)0x40000000) /*!< COMP6 output level */
3506 #define COMP6_CSR_COMP6LOCK ((uint32_t)0x80000000) /*!< COMP6 lock */
3507
3508 /********************** Bit definition for COMP7_CSR register ***************/
3509 #define COMP7_CSR_COMP7EN ((uint32_t)0x00000001) /*!< COMP7 enable */
3510 #define COMP7_CSR_COMP7MODE ((uint32_t)0x0000000C) /*!< COMP7 power mode */
3511 #define COMP7_CSR_COMP7MODE_0 ((uint32_t)0x00000004) /*!< COMP7 power mode bit 0 */
3512 #define COMP7_CSR_COMP7MODE_1 ((uint32_t)0x00000008) /*!< COMP7 power mode bit 1 */
3513 #define COMP7_CSR_COMP7INSEL ((uint32_t)0x00000070) /*!< COMP7 inverting input select */
3514 #define COMP7_CSR_COMP7INSEL_0 ((uint32_t)0x00000010) /*!< COMP7 inverting input select bit 0 */
3515 #define COMP7_CSR_COMP7INSEL_1 ((uint32_t)0x00000020) /*!< COMP7 inverting input select bit 1 */
3516 #define COMP7_CSR_COMP7INSEL_2 ((uint32_t)0x00000040) /*!< COMP7 inverting input select bit 2 */
3517 #define COMP7_CSR_COMP7NONINSEL ((uint32_t)0x00000080) /*!< COMP7 non inverting input select */
3518 #define COMP7_CSR_COMP7OUTSEL ((uint32_t)0x00003C00) /*!< COMP7 output select */
3519 #define COMP7_CSR_COMP7OUTSEL_0 ((uint32_t)0x00000400) /*!< COMP7 output select bit 0 */
3520 #define COMP7_CSR_COMP7OUTSEL_1 ((uint32_t)0x00000800) /*!< COMP7 output select bit 1 */
3521 #define COMP7_CSR_COMP7OUTSEL_2 ((uint32_t)0x00001000) /*!< COMP7 output select bit 2 */
3522 #define COMP7_CSR_COMP7OUTSEL_3 ((uint32_t)0x00002000) /*!< COMP7 output select bit 3 */
3523 #define COMP7_CSR_COMP7POL ((uint32_t)0x00008000) /*!< COMP7 output polarity */
3524 #define COMP7_CSR_COMP7HYST ((uint32_t)0x00030000) /*!< COMP7 hysteresis */
3525 #define COMP7_CSR_COMP7HYST_0 ((uint32_t)0x00010000) /*!< COMP7 hysteresis bit 0 */
3526 #define COMP7_CSR_COMP7HYST_1 ((uint32_t)0x00020000) /*!< COMP7 hysteresis bit 1 */
3527 #define COMP7_CSR_COMP7BLANKING ((uint32_t)0x000C0000) /*!< COMP7 blanking */
3528 #define COMP7_CSR_COMP7BLANKING_0 ((uint32_t)0x00040000) /*!< COMP7 blanking bit 0 */
3529 #define COMP7_CSR_COMP7BLANKING_1 ((uint32_t)0x00080000) /*!< COMP7 blanking bit 1 */
3530 #define COMP7_CSR_COMP7BLANKING_2 ((uint32_t)0x00100000) /*!< COMP7 blanking bit 2 */
3531 #define COMP7_CSR_COMP7OUT ((uint32_t)0x40000000) /*!< COMP7 output level */
3532 #define COMP7_CSR_COMP7LOCK ((uint32_t)0x80000000) /*!< COMP7 lock */
3533
3534 /********************** Bit definition for COMP_CSR register ****************/
3535 #define COMP_CSR_COMPxEN ((uint32_t)0x00000001) /*!< COMPx enable */
3536 #define COMP_CSR_COMP1SW1 ((uint32_t)0x00000002) /*!< COMP1 SW1 switch control */
3537 #define COMP_CSR_COMPxMODE ((uint32_t)0x0000000C) /*!< COMPx power mode */
3538 #define COMP_CSR_COMPxMODE_0 ((uint32_t)0x00000004) /*!< COMPx power mode bit 0 */
3539 #define COMP_CSR_COMPxMODE_1 ((uint32_t)0x00000008) /*!< COMPx power mode bit 1 */
3540 #define COMP_CSR_COMPxINSEL ((uint32_t)0x00000070) /*!< COMPx inverting input select */
3541 #define COMP_CSR_COMPxINSEL_0 ((uint32_t)0x00000010) /*!< COMPx inverting input select bit 0 */
3542 #define COMP_CSR_COMPxINSEL_1 ((uint32_t)0x00000020) /*!< COMPx inverting input select bit 1 */
3543 #define COMP_CSR_COMPxINSEL_2 ((uint32_t)0x00000040) /*!< COMPx inverting input select bit 2 */
3544 #define COMP_CSR_COMPxNONINSEL ((uint32_t)0x00000080) /*!< COMPx non inverting input select */
3545 #define COMP_CSR_COMPxWNDWEN ((uint32_t)0x00000200) /*!< COMPx window mode enable */
3546 #define COMP_CSR_COMPxOUTSEL ((uint32_t)0x00003C00) /*!< COMPx output select */
3547 #define COMP_CSR_COMPxOUTSEL_0 ((uint32_t)0x00000400) /*!< COMPx output select bit 0 */
3548 #define COMP_CSR_COMPxOUTSEL_1 ((uint32_t)0x00000800) /*!< COMPx output select bit 1 */
3549 #define COMP_CSR_COMPxOUTSEL_2 ((uint32_t)0x00001000) /*!< COMPx output select bit 2 */
3550 #define COMP_CSR_COMPxOUTSEL_3 ((uint32_t)0x00002000) /*!< COMPx output select bit 3 */
3551 #define COMP_CSR_COMPxPOL ((uint32_t)0x00008000) /*!< COMPx output polarity */
3552 #define COMP_CSR_COMPxHYST ((uint32_t)0x00030000) /*!< COMPx hysteresis */
3553 #define COMP_CSR_COMPxHYST_0 ((uint32_t)0x00010000) /*!< COMPx hysteresis bit 0 */
3554 #define COMP_CSR_COMPxHYST_1 ((uint32_t)0x00020000) /*!< COMPx hysteresis bit 1 */
3555 #define COMP_CSR_COMPxBLANKING ((uint32_t)0x000C0000) /*!< COMPx blanking */
3556 #define COMP_CSR_COMPxBLANKING_0 ((uint32_t)0x00040000) /*!< COMPx blanking bit 0 */
3557 #define COMP_CSR_COMPxBLANKING_1 ((uint32_t)0x00080000) /*!< COMPx blanking bit 1 */
3558 #define COMP_CSR_COMPxBLANKING_2 ((uint32_t)0x00100000) /*!< COMPx blanking bit 2 */
3559 #define COMP_CSR_COMPxINSEL_3 ((uint32_t)0x00400000) /*!< COMPx inverting input select bit 3 */
3560 #define COMP_CSR_COMPxOUT ((uint32_t)0x40000000) /*!< COMPx output level */
3561 #define COMP_CSR_COMPxLOCK ((uint32_t)0x80000000) /*!< COMPx lock */
3562
3563 /******************************************************************************/
3564 /* */
3565 /* Operational Amplifier (OPAMP) */
3566 /* */
3567 /******************************************************************************/
3568 /********************* Bit definition for OPAMP1_CSR register ***************/
3569 #define OPAMP1_CSR_OPAMP1EN ((uint32_t)0x00000001) /*!< OPAMP1 enable */
3570 #define OPAMP1_CSR_FORCEVP ((uint32_t)0x00000002) /*!< Connect the internal references to the plus input of the OPAMPX */
3571 #define OPAMP1_CSR_VPSEL ((uint32_t)0x0000000C) /*!< Non inverting input selection */
3572 #define OPAMP1_CSR_VPSEL_0 ((uint32_t)0x00000004) /*!< Bit 0 */
3573 #define OPAMP1_CSR_VPSEL_1 ((uint32_t)0x00000008) /*!< Bit 1 */
3574 #define OPAMP1_CSR_VMSEL ((uint32_t)0x00000060) /*!< Inverting input selection */
3575 #define OPAMP1_CSR_VMSEL_0 ((uint32_t)0x00000020) /*!< Bit 0 */
3576 #define OPAMP1_CSR_VMSEL_1 ((uint32_t)0x00000040) /*!< Bit 1 */
3577 #define OPAMP1_CSR_TCMEN ((uint32_t)0x00000080) /*!< Timer-Controlled Mux mode enable */
3578 #define OPAMP1_CSR_VMSSEL ((uint32_t)0x00000100) /*!< Inverting input secondary selection */
3579 #define OPAMP1_CSR_VPSSEL ((uint32_t)0x00000600) /*!< Non inverting input secondary selection */
3580 #define OPAMP1_CSR_VPSSEL_0 ((uint32_t)0x00000200) /*!< Bit 0 */
3581 #define OPAMP1_CSR_VPSSEL_1 ((uint32_t)0x00000400) /*!< Bit 1 */
3582 #define OPAMP1_CSR_CALON ((uint32_t)0x00000800) /*!< Calibration mode enable */
3583 #define OPAMP1_CSR_CALSEL ((uint32_t)0x00003000) /*!< Calibration selection */
3584 #define OPAMP1_CSR_CALSEL_0 ((uint32_t)0x00001000) /*!< Bit 0 */
3585 #define OPAMP1_CSR_CALSEL_1 ((uint32_t)0x00002000) /*!< Bit 1 */
3586 #define OPAMP1_CSR_PGGAIN ((uint32_t)0x0003C000) /*!< Gain in PGA mode */
3587 #define OPAMP1_CSR_PGGAIN_0 ((uint32_t)0x00004000) /*!< Bit 0 */
3588 #define OPAMP1_CSR_PGGAIN_1 ((uint32_t)0x00008000) /*!< Bit 1 */
3589 #define OPAMP1_CSR_PGGAIN_2 ((uint32_t)0x00010000) /*!< Bit 2 */
3590 #define OPAMP1_CSR_PGGAIN_3 ((uint32_t)0x00020000) /*!< Bit 3 */
3591 #define OPAMP1_CSR_USERTRIM ((uint32_t)0x00040000) /*!< User trimming enable */
3592 #define OPAMP1_CSR_TRIMOFFSETP ((uint32_t)0x00F80000) /*!< Offset trimming value (PMOS) */
3593 #define OPAMP1_CSR_TRIMOFFSETN ((uint32_t)0x1F000000) /*!< Offset trimming value (NMOS) */
3594 #define OPAMP1_CSR_TSTREF ((uint32_t)0x20000000) /*!< It enables the switch to put out the internal reference */
3595 #define OPAMP1_CSR_OUTCAL ((uint32_t)0x40000000) /*!< OPAMP output status flag */
3596 #define OPAMP1_CSR_LOCK ((uint32_t)0x80000000) /*!< OPAMP lock */
3597
3598 /********************* Bit definition for OPAMP2_CSR register ***************/
3599 #define OPAMP2_CSR_OPAMP2EN ((uint32_t)0x00000001) /*!< OPAMP2 enable */
3600 #define OPAMP2_CSR_FORCEVP ((uint32_t)0x00000002) /*!< Connect the internal references to the plus input of the OPAMPX */
3601 #define OPAMP2_CSR_VPSEL ((uint32_t)0x0000000C) /*!< Non inverting input selection */
3602 #define OPAMP2_CSR_VPSEL_0 ((uint32_t)0x00000004) /*!< Bit 0 */
3603 #define OPAMP2_CSR_VPSEL_1 ((uint32_t)0x00000008) /*!< Bit 1 */
3604 #define OPAMP2_CSR_VMSEL ((uint32_t)0x00000060) /*!< Inverting input selection */
3605 #define OPAMP2_CSR_VMSEL_0 ((uint32_t)0x00000020) /*!< Bit 0 */
3606 #define OPAMP2_CSR_VMSEL_1 ((uint32_t)0x00000040) /*!< Bit 1 */
3607 #define OPAMP2_CSR_TCMEN ((uint32_t)0x00000080) /*!< Timer-Controlled Mux mode enable */
3608 #define OPAMP2_CSR_VMSSEL ((uint32_t)0x00000100) /*!< Inverting input secondary selection */
3609 #define OPAMP2_CSR_VPSSEL ((uint32_t)0x00000600) /*!< Non inverting input secondary selection */
3610 #define OPAMP2_CSR_VPSSEL_0 ((uint32_t)0x00000200) /*!< Bit 0 */
3611 #define OPAMP2_CSR_VPSSEL_1 ((uint32_t)0x00000400) /*!< Bit 1 */
3612 #define OPAMP2_CSR_CALON ((uint32_t)0x00000800) /*!< Calibration mode enable */
3613 #define OPAMP2_CSR_CALSEL ((uint32_t)0x00003000) /*!< Calibration selection */
3614 #define OPAMP2_CSR_CALSEL_0 ((uint32_t)0x00001000) /*!< Bit 0 */
3615 #define OPAMP2_CSR_CALSEL_1 ((uint32_t)0x00002000) /*!< Bit 1 */
3616 #define OPAMP2_CSR_PGGAIN ((uint32_t)0x0003C000) /*!< Gain in PGA mode */
3617 #define OPAMP2_CSR_PGGAIN_0 ((uint32_t)0x00004000) /*!< Bit 0 */
3618 #define OPAMP2_CSR_PGGAIN_1 ((uint32_t)0x00008000) /*!< Bit 1 */
3619 #define OPAMP2_CSR_PGGAIN_2 ((uint32_t)0x00010000) /*!< Bit 2 */
3620 #define OPAMP2_CSR_PGGAIN_3 ((uint32_t)0x00020000) /*!< Bit 3 */
3621 #define OPAMP2_CSR_USERTRIM ((uint32_t)0x00040000) /*!< User trimming enable */
3622 #define OPAMP2_CSR_TRIMOFFSETP ((uint32_t)0x00F80000) /*!< Offset trimming value (PMOS) */
3623 #define OPAMP2_CSR_TRIMOFFSETN ((uint32_t)0x1F000000) /*!< Offset trimming value (NMOS) */
3624 #define OPAMP2_CSR_TSTREF ((uint32_t)0x20000000) /*!< It enables the switch to put out the internal reference */
3625 #define OPAMP2_CSR_OUTCAL ((uint32_t)0x40000000) /*!< OPAMP output status flag */
3626 #define OPAMP2_CSR_LOCK ((uint32_t)0x80000000) /*!< OPAMP lock */
3627
3628 /********************* Bit definition for OPAMP3_CSR register ***************/
3629 #define OPAMP3_CSR_OPAMP3EN ((uint32_t)0x00000001) /*!< OPAMP3 enable */
3630 #define OPAMP3_CSR_FORCEVP ((uint32_t)0x00000002) /*!< Connect the internal references to the plus input of the OPAMPX */
3631 #define OPAMP3_CSR_VPSEL ((uint32_t)0x0000000C) /*!< Non inverting input selection */
3632 #define OPAMP3_CSR_VPSEL_0 ((uint32_t)0x00000004) /*!< Bit 0 */
3633 #define OPAMP3_CSR_VPSEL_1 ((uint32_t)0x00000008) /*!< Bit 1 */
3634 #define OPAMP3_CSR_VMSEL ((uint32_t)0x00000060) /*!< Inverting input selection */
3635 #define OPAMP3_CSR_VMSEL_0 ((uint32_t)0x00000020) /*!< Bit 0 */
3636 #define OPAMP3_CSR_VMSEL_1 ((uint32_t)0x00000040) /*!< Bit 1 */
3637 #define OPAMP3_CSR_TCMEN ((uint32_t)0x00000080) /*!< Timer-Controlled Mux mode enable */
3638 #define OPAMP3_CSR_VMSSEL ((uint32_t)0x00000100) /*!< Inverting input secondary selection */
3639 #define OPAMP3_CSR_VPSSEL ((uint32_t)0x00000600) /*!< Non inverting input secondary selection */
3640 #define OPAMP3_CSR_VPSSEL_0 ((uint32_t)0x00000200) /*!< Bit 0 */
3641 #define OPAMP3_CSR_VPSSEL_1 ((uint32_t)0x00000400) /*!< Bit 1 */
3642 #define OPAMP3_CSR_CALON ((uint32_t)0x00000800) /*!< Calibration mode enable */
3643 #define OPAMP3_CSR_CALSEL ((uint32_t)0x00003000) /*!< Calibration selection */
3644 #define OPAMP3_CSR_CALSEL_0 ((uint32_t)0x00001000) /*!< Bit 0 */
3645 #define OPAMP3_CSR_CALSEL_1 ((uint32_t)0x00002000) /*!< Bit 1 */
3646 #define OPAMP3_CSR_PGGAIN ((uint32_t)0x0003C000) /*!< Gain in PGA mode */
3647 #define OPAMP3_CSR_PGGAIN_0 ((uint32_t)0x00004000) /*!< Bit 0 */
3648 #define OPAMP3_CSR_PGGAIN_1 ((uint32_t)0x00008000) /*!< Bit 1 */
3649 #define OPAMP3_CSR_PGGAIN_2 ((uint32_t)0x00010000) /*!< Bit 2 */
3650 #define OPAMP3_CSR_PGGAIN_3 ((uint32_t)0x00020000) /*!< Bit 3 */
3651 #define OPAMP3_CSR_USERTRIM ((uint32_t)0x00040000) /*!< User trimming enable */
3652 #define OPAMP3_CSR_TRIMOFFSETP ((uint32_t)0x00F80000) /*!< Offset trimming value (PMOS) */
3653 #define OPAMP3_CSR_TRIMOFFSETN ((uint32_t)0x1F000000) /*!< Offset trimming value (NMOS) */
3654 #define OPAMP3_CSR_TSTREF ((uint32_t)0x20000000) /*!< It enables the switch to put out the internal reference */
3655 #define OPAMP3_CSR_OUTCAL ((uint32_t)0x40000000) /*!< OPAMP output status flag */
3656 #define OPAMP3_CSR_LOCK ((uint32_t)0x80000000) /*!< OPAMP lock */
3657
3658 /********************* Bit definition for OPAMP4_CSR register ***************/
3659 #define OPAMP4_CSR_OPAMP4EN ((uint32_t)0x00000001) /*!< OPAMP4 enable */
3660 #define OPAMP4_CSR_FORCEVP ((uint32_t)0x00000002) /*!< Connect the internal references to the plus input of the OPAMPX */
3661 #define OPAMP4_CSR_VPSEL ((uint32_t)0x0000000C) /*!< Non inverting input selection */
3662 #define OPAMP4_CSR_VPSEL_0 ((uint32_t)0x00000004) /*!< Bit 0 */
3663 #define OPAMP4_CSR_VPSEL_1 ((uint32_t)0x00000008) /*!< Bit 1 */
3664 #define OPAMP4_CSR_VMSEL ((uint32_t)0x00000060) /*!< Inverting input selection */
3665 #define OPAMP4_CSR_VMSEL_0 ((uint32_t)0x00000020) /*!< Bit 0 */
3666 #define OPAMP4_CSR_VMSEL_1 ((uint32_t)0x00000040) /*!< Bit 1 */
3667 #define OPAMP4_CSR_TCMEN ((uint32_t)0x00000080) /*!< Timer-Controlled Mux mode enable */
3668 #define OPAMP4_CSR_VMSSEL ((uint32_t)0x00000100) /*!< Inverting input secondary selection */
3669 #define OPAMP4_CSR_VPSSEL ((uint32_t)0x00000600) /*!< Non inverting input secondary selection */
3670 #define OPAMP4_CSR_VPSSEL_0 ((uint32_t)0x00000200) /*!< Bit 0 */
3671 #define OPAMP4_CSR_VPSSEL_1 ((uint32_t)0x00000400) /*!< Bit 1 */
3672 #define OPAMP4_CSR_CALON ((uint32_t)0x00000800) /*!< Calibration mode enable */
3673 #define OPAMP4_CSR_CALSEL ((uint32_t)0x00003000) /*!< Calibration selection */
3674 #define OPAMP4_CSR_CALSEL_0 ((uint32_t)0x00001000) /*!< Bit 0 */
3675 #define OPAMP4_CSR_CALSEL_1 ((uint32_t)0x00002000) /*!< Bit 1 */
3676 #define OPAMP4_CSR_PGGAIN ((uint32_t)0x0003C000) /*!< Gain in PGA mode */
3677 #define OPAMP4_CSR_PGGAIN_0 ((uint32_t)0x00004000) /*!< Bit 0 */
3678 #define OPAMP4_CSR_PGGAIN_1 ((uint32_t)0x00008000) /*!< Bit 1 */
3679 #define OPAMP4_CSR_PGGAIN_2 ((uint32_t)0x00010000) /*!< Bit 2 */
3680 #define OPAMP4_CSR_PGGAIN_3 ((uint32_t)0x00020000) /*!< Bit 3 */
3681 #define OPAMP4_CSR_USERTRIM ((uint32_t)0x00040000) /*!< User trimming enable */
3682 #define OPAMP4_CSR_TRIMOFFSETP ((uint32_t)0x00F80000) /*!< Offset trimming value (PMOS) */
3683 #define OPAMP4_CSR_TRIMOFFSETN ((uint32_t)0x1F000000) /*!< Offset trimming value (NMOS) */
3684 #define OPAMP4_CSR_TSTREF ((uint32_t)0x20000000) /*!< It enables the switch to put out the internal reference */
3685 #define OPAMP4_CSR_OUTCAL ((uint32_t)0x40000000) /*!< OPAMP output status flag */
3686 #define OPAMP4_CSR_LOCK ((uint32_t)0x80000000) /*!< OPAMP lock */
3687
3688 /********************* Bit definition for OPAMPx_CSR register ***************/
3689 #define OPAMP_CSR_OPAMPxEN ((uint32_t)0x00000001) /*!< OPAMP enable */
3690 #define OPAMP_CSR_FORCEVP ((uint32_t)0x00000002) /*!< Connect the internal references to the plus input of the OPAMPX */
3691 #define OPAMP_CSR_VPSEL ((uint32_t)0x0000000C) /*!< Non inverting input selection */
3692 #define OPAMP_CSR_VPSEL_0 ((uint32_t)0x00000004) /*!< Bit 0 */
3693 #define OPAMP_CSR_VPSEL_1 ((uint32_t)0x00000008) /*!< Bit 1 */
3694 #define OPAMP_CSR_VMSEL ((uint32_t)0x00000060) /*!< Inverting input selection */
3695 #define OPAMP_CSR_VMSEL_0 ((uint32_t)0x00000020) /*!< Bit 0 */
3696 #define OPAMP_CSR_VMSEL_1 ((uint32_t)0x00000040) /*!< Bit 1 */
3697 #define OPAMP_CSR_TCMEN ((uint32_t)0x00000080) /*!< Timer-Controlled Mux mode enable */
3698 #define OPAMP_CSR_VMSSEL ((uint32_t)0x00000100) /*!< Inverting input secondary selection */
3699 #define OPAMP_CSR_VPSSEL ((uint32_t)0x00000600) /*!< Non inverting input secondary selection */
3700 #define OPAMP_CSR_VPSSEL_0 ((uint32_t)0x00000200) /*!< Bit 0 */
3701 #define OPAMP_CSR_VPSSEL_1 ((uint32_t)0x00000400) /*!< Bit 1 */
3702 #define OPAMP_CSR_CALON ((uint32_t)0x00000800) /*!< Calibration mode enable */
3703 #define OPAMP_CSR_CALSEL ((uint32_t)0x00003000) /*!< Calibration selection */
3704 #define OPAMP_CSR_CALSEL_0 ((uint32_t)0x00001000) /*!< Bit 0 */
3705 #define OPAMP_CSR_CALSEL_1 ((uint32_t)0x00002000) /*!< Bit 1 */
3706 #define OPAMP_CSR_PGGAIN ((uint32_t)0x0003C000) /*!< Gain in PGA mode */
3707 #define OPAMP_CSR_PGGAIN_0 ((uint32_t)0x00004000) /*!< Bit 0 */
3708 #define OPAMP_CSR_PGGAIN_1 ((uint32_t)0x00008000) /*!< Bit 1 */
3709 #define OPAMP_CSR_PGGAIN_2 ((uint32_t)0x00010000) /*!< Bit 2 */
3710 #define OPAMP_CSR_PGGAIN_3 ((uint32_t)0x00020000) /*!< Bit 3 */
3711 #define OPAMP_CSR_USERTRIM ((uint32_t)0x00040000) /*!< User trimming enable */
3712 #define OPAMP_CSR_TRIMOFFSETP ((uint32_t)0x00F80000) /*!< Offset trimming value (PMOS) */
3713 #define OPAMP_CSR_TRIMOFFSETN ((uint32_t)0x1F000000) /*!< Offset trimming value (NMOS) */
3714 #define OPAMP_CSR_TSTREF ((uint32_t)0x20000000) /*!< It enables the switch to put out the internal reference */
3715 #define OPAMP_CSR_OUTCAL ((uint32_t)0x40000000) /*!< OPAMP output status flag */
3716 #define OPAMP_CSR_LOCK ((uint32_t)0x80000000) /*!< OPAMP lock */
3717
3718
3719 /******************************************************************************/
3720 /* */
3721 /* Controller Area Network (CAN ) */
3722 /* */
3723 /******************************************************************************/
3724 /*!<CAN control and status registers */
3725 /******************* Bit definition for CAN_MCR register ********************/
3726 #define CAN_MCR_INRQ ((uint16_t)0x0001) /*!<Initialization Request */
3727 #define CAN_MCR_SLEEP ((uint16_t)0x0002) /*!<Sleep Mode Request */
3728 #define CAN_MCR_TXFP ((uint16_t)0x0004) /*!<Transmit FIFO Priority */
3729 #define CAN_MCR_RFLM ((uint16_t)0x0008) /*!<Receive FIFO Locked Mode */
3730 #define CAN_MCR_NART ((uint16_t)0x0010) /*!<No Automatic Retransmission */
3731 #define CAN_MCR_AWUM ((uint16_t)0x0020) /*!<Automatic Wakeup Mode */
3732 #define CAN_MCR_ABOM ((uint16_t)0x0040) /*!<Automatic Bus-Off Management */
3733 #define CAN_MCR_TTCM ((uint16_t)0x0080) /*!<Time Triggered Communication Mode */
3734 #define CAN_MCR_RESET ((uint16_t)0x8000) /*!<bxCAN software master reset */
3735
3736 /******************* Bit definition for CAN_MSR register ********************/
3737 #define CAN_MSR_INAK ((uint16_t)0x0001) /*!<Initialization Acknowledge */
3738 #define CAN_MSR_SLAK ((uint16_t)0x0002) /*!<Sleep Acknowledge */
3739 #define CAN_MSR_ERRI ((uint16_t)0x0004) /*!<Error Interrupt */
3740 #define CAN_MSR_WKUI ((uint16_t)0x0008) /*!<Wakeup Interrupt */
3741 #define CAN_MSR_SLAKI ((uint16_t)0x0010) /*!<Sleep Acknowledge Interrupt */
3742 #define CAN_MSR_TXM ((uint16_t)0x0100) /*!<Transmit Mode */
3743 #define CAN_MSR_RXM ((uint16_t)0x0200) /*!<Receive Mode */
3744 #define CAN_MSR_SAMP ((uint16_t)0x0400) /*!<Last Sample Point */
3745 #define CAN_MSR_RX ((uint16_t)0x0800) /*!<CAN Rx Signal */
3746
3747 /******************* Bit definition for CAN_TSR register ********************/
3748 #define CAN_TSR_RQCP0 ((uint32_t)0x00000001) /*!<Request Completed Mailbox0 */
3749 #define CAN_TSR_TXOK0 ((uint32_t)0x00000002) /*!<Transmission OK of Mailbox0 */
3750 #define CAN_TSR_ALST0 ((uint32_t)0x00000004) /*!<Arbitration Lost for Mailbox0 */
3751 #define CAN_TSR_TERR0 ((uint32_t)0x00000008) /*!<Transmission Error of Mailbox0 */
3752 #define CAN_TSR_ABRQ0 ((uint32_t)0x00000080) /*!<Abort Request for Mailbox0 */
3753 #define CAN_TSR_RQCP1 ((uint32_t)0x00000100) /*!<Request Completed Mailbox1 */
3754 #define CAN_TSR_TXOK1 ((uint32_t)0x00000200) /*!<Transmission OK of Mailbox1 */
3755 #define CAN_TSR_ALST1 ((uint32_t)0x00000400) /*!<Arbitration Lost for Mailbox1 */
3756 #define CAN_TSR_TERR1 ((uint32_t)0x00000800) /*!<Transmission Error of Mailbox1 */
3757 #define CAN_TSR_ABRQ1 ((uint32_t)0x00008000) /*!<Abort Request for Mailbox 1 */
3758 #define CAN_TSR_RQCP2 ((uint32_t)0x00010000) /*!<Request Completed Mailbox2 */
3759 #define CAN_TSR_TXOK2 ((uint32_t)0x00020000) /*!<Transmission OK of Mailbox 2 */
3760 #define CAN_TSR_ALST2 ((uint32_t)0x00040000) /*!<Arbitration Lost for mailbox 2 */
3761 #define CAN_TSR_TERR2 ((uint32_t)0x00080000) /*!<Transmission Error of Mailbox 2 */
3762 #define CAN_TSR_ABRQ2 ((uint32_t)0x00800000) /*!<Abort Request for Mailbox 2 */
3763 #define CAN_TSR_CODE ((uint32_t)0x03000000) /*!<Mailbox Code */
3764
3765 #define CAN_TSR_TME ((uint32_t)0x1C000000) /*!<TME[2:0] bits */
3766 #define CAN_TSR_TME0 ((uint32_t)0x04000000) /*!<Transmit Mailbox 0 Empty */
3767 #define CAN_TSR_TME1 ((uint32_t)0x08000000) /*!<Transmit Mailbox 1 Empty */
3768 #define CAN_TSR_TME2 ((uint32_t)0x10000000) /*!<Transmit Mailbox 2 Empty */
3769
3770 #define CAN_TSR_LOW ((uint32_t)0xE0000000) /*!<LOW[2:0] bits */
3771 #define CAN_TSR_LOW0 ((uint32_t)0x20000000) /*!<Lowest Priority Flag for Mailbox 0 */
3772 #define CAN_TSR_LOW1 ((uint32_t)0x40000000) /*!<Lowest Priority Flag for Mailbox 1 */
3773 #define CAN_TSR_LOW2 ((uint32_t)0x80000000) /*!<Lowest Priority Flag for Mailbox 2 */
3774
3775 /******************* Bit definition for CAN_RF0R register *******************/
3776 #define CAN_RF0R_FMP0 ((uint8_t)0x03) /*!<FIFO 0 Message Pending */
3777 #define CAN_RF0R_FULL0 ((uint8_t)0x08) /*!<FIFO 0 Full */
3778 #define CAN_RF0R_FOVR0 ((uint8_t)0x10) /*!<FIFO 0 Overrun */
3779 #define CAN_RF0R_RFOM0 ((uint8_t)0x20) /*!<Release FIFO 0 Output Mailbox */
3780
3781 /******************* Bit definition for CAN_RF1R register *******************/
3782 #define CAN_RF1R_FMP1 ((uint8_t)0x03) /*!<FIFO 1 Message Pending */
3783 #define CAN_RF1R_FULL1 ((uint8_t)0x08) /*!<FIFO 1 Full */
3784 #define CAN_RF1R_FOVR1 ((uint8_t)0x10) /*!<FIFO 1 Overrun */
3785 #define CAN_RF1R_RFOM1 ((uint8_t)0x20) /*!<Release FIFO 1 Output Mailbox */
3786
3787 /******************** Bit definition for CAN_IER register *******************/
3788 #define CAN_IER_TMEIE ((uint32_t)0x00000001) /*!<Transmit Mailbox Empty Interrupt Enable */
3789 #define CAN_IER_FMPIE0 ((uint32_t)0x00000002) /*!<FIFO Message Pending Interrupt Enable */
3790 #define CAN_IER_FFIE0 ((uint32_t)0x00000004) /*!<FIFO Full Interrupt Enable */
3791 #define CAN_IER_FOVIE0 ((uint32_t)0x00000008) /*!<FIFO Overrun Interrupt Enable */
3792 #define CAN_IER_FMPIE1 ((uint32_t)0x00000010) /*!<FIFO Message Pending Interrupt Enable */
3793 #define CAN_IER_FFIE1 ((uint32_t)0x00000020) /*!<FIFO Full Interrupt Enable */
3794 #define CAN_IER_FOVIE1 ((uint32_t)0x00000040) /*!<FIFO Overrun Interrupt Enable */
3795 #define CAN_IER_EWGIE ((uint32_t)0x00000100) /*!<Error Warning Interrupt Enable */
3796 #define CAN_IER_EPVIE ((uint32_t)0x00000200) /*!<Error Passive Interrupt Enable */
3797 #define CAN_IER_BOFIE ((uint32_t)0x00000400) /*!<Bus-Off Interrupt Enable */
3798 #define CAN_IER_LECIE ((uint32_t)0x00000800) /*!<Last Error Code Interrupt Enable */
3799 #define CAN_IER_ERRIE ((uint32_t)0x00008000) /*!<Error Interrupt Enable */
3800 #define CAN_IER_WKUIE ((uint32_t)0x00010000) /*!<Wakeup Interrupt Enable */
3801 #define CAN_IER_SLKIE ((uint32_t)0x00020000) /*!<Sleep Interrupt Enable */
3802
3803 /******************** Bit definition for CAN_ESR register *******************/
3804 #define CAN_ESR_EWGF ((uint32_t)0x00000001) /*!<Error Warning Flag */
3805 #define CAN_ESR_EPVF ((uint32_t)0x00000002) /*!<Error Passive Flag */
3806 #define CAN_ESR_BOFF ((uint32_t)0x00000004) /*!<Bus-Off Flag */
3807
3808 #define CAN_ESR_LEC ((uint32_t)0x00000070) /*!<LEC[2:0] bits (Last Error Code) */
3809 #define CAN_ESR_LEC_0 ((uint32_t)0x00000010) /*!<Bit 0 */
3810 #define CAN_ESR_LEC_1 ((uint32_t)0x00000020) /*!<Bit 1 */
3811 #define CAN_ESR_LEC_2 ((uint32_t)0x00000040) /*!<Bit 2 */
3812
3813 #define CAN_ESR_TEC ((uint32_t)0x00FF0000) /*!<Least significant byte of the 9-bit Transmit Error Counter */
3814 #define CAN_ESR_REC ((uint32_t)0xFF000000) /*!<Receive Error Counter */
3815
3816 /******************* Bit definition for CAN_BTR register ********************/
3817 #define CAN_BTR_BRP ((uint32_t)0x000003FF) /*!<Baud Rate Prescaler */
3818 #define CAN_BTR_TS1 ((uint32_t)0x000F0000) /*!<Time Segment 1 */
3819 #define CAN_BTR_TS2 ((uint32_t)0x00700000) /*!<Time Segment 2 */
3820 #define CAN_BTR_SJW ((uint32_t)0x03000000) /*!<Resynchronization Jump Width */
3821 #define CAN_BTR_LBKM ((uint32_t)0x40000000) /*!<Loop Back Mode (Debug) */
3822 #define CAN_BTR_SILM ((uint32_t)0x80000000) /*!<Silent Mode */
3823
3824 /*!<Mailbox registers */
3825 /****************** Bit definition for CAN_TI0R register ********************/
3826 #define CAN_TI0R_TXRQ ((uint32_t)0x00000001) /*!<Transmit Mailbox Request */
3827 #define CAN_TI0R_RTR ((uint32_t)0x00000002) /*!<Remote Transmission Request */
3828 #define CAN_TI0R_IDE ((uint32_t)0x00000004) /*!<Identifier Extension */
3829 #define CAN_TI0R_EXID ((uint32_t)0x001FFFF8) /*!<Extended Identifier */
3830 #define CAN_TI0R_STID ((uint32_t)0xFFE00000) /*!<Standard Identifier or Extended Identifier */
3831
3832 /****************** Bit definition for CAN_TDT0R register *******************/
3833 #define CAN_TDT0R_DLC ((uint32_t)0x0000000F) /*!<Data Length Code */
3834 #define CAN_TDT0R_TGT ((uint32_t)0x00000100) /*!<Transmit Global Time */
3835 #define CAN_TDT0R_TIME ((uint32_t)0xFFFF0000) /*!<Message Time Stamp */
3836
3837 /****************** Bit definition for CAN_TDL0R register *******************/
3838 #define CAN_TDL0R_DATA0 ((uint32_t)0x000000FF) /*!<Data byte 0 */
3839 #define CAN_TDL0R_DATA1 ((uint32_t)0x0000FF00) /*!<Data byte 1 */
3840 #define CAN_TDL0R_DATA2 ((uint32_t)0x00FF0000) /*!<Data byte 2 */
3841 #define CAN_TDL0R_DATA3 ((uint32_t)0xFF000000) /*!<Data byte 3 */
3842
3843 /****************** Bit definition for CAN_TDH0R register *******************/
3844 #define CAN_TDH0R_DATA4 ((uint32_t)0x000000FF) /*!<Data byte 4 */
3845 #define CAN_TDH0R_DATA5 ((uint32_t)0x0000FF00) /*!<Data byte 5 */
3846 #define CAN_TDH0R_DATA6 ((uint32_t)0x00FF0000) /*!<Data byte 6 */
3847 #define CAN_TDH0R_DATA7 ((uint32_t)0xFF000000) /*!<Data byte 7 */
3848
3849 /******************* Bit definition for CAN_TI1R register *******************/
3850 #define CAN_TI1R_TXRQ ((uint32_t)0x00000001) /*!<Transmit Mailbox Request */
3851 #define CAN_TI1R_RTR ((uint32_t)0x00000002) /*!<Remote Transmission Request */
3852 #define CAN_TI1R_IDE ((uint32_t)0x00000004) /*!<Identifier Extension */
3853 #define CAN_TI1R_EXID ((uint32_t)0x001FFFF8) /*!<Extended Identifier */
3854 #define CAN_TI1R_STID ((uint32_t)0xFFE00000) /*!<Standard Identifier or Extended Identifier */
3855
3856 /******************* Bit definition for CAN_TDT1R register ******************/
3857 #define CAN_TDT1R_DLC ((uint32_t)0x0000000F) /*!<Data Length Code */
3858 #define CAN_TDT1R_TGT ((uint32_t)0x00000100) /*!<Transmit Global Time */
3859 #define CAN_TDT1R_TIME ((uint32_t)0xFFFF0000) /*!<Message Time Stamp */
3860
3861 /******************* Bit definition for CAN_TDL1R register ******************/
3862 #define CAN_TDL1R_DATA0 ((uint32_t)0x000000FF) /*!<Data byte 0 */
3863 #define CAN_TDL1R_DATA1 ((uint32_t)0x0000FF00) /*!<Data byte 1 */
3864 #define CAN_TDL1R_DATA2 ((uint32_t)0x00FF0000) /*!<Data byte 2 */
3865 #define CAN_TDL1R_DATA3 ((uint32_t)0xFF000000) /*!<Data byte 3 */
3866
3867 /******************* Bit definition for CAN_TDH1R register ******************/
3868 #define CAN_TDH1R_DATA4 ((uint32_t)0x000000FF) /*!<Data byte 4 */
3869 #define CAN_TDH1R_DATA5 ((uint32_t)0x0000FF00) /*!<Data byte 5 */
3870 #define CAN_TDH1R_DATA6 ((uint32_t)0x00FF0000) /*!<Data byte 6 */
3871 #define CAN_TDH1R_DATA7 ((uint32_t)0xFF000000) /*!<Data byte 7 */
3872
3873 /******************* Bit definition for CAN_TI2R register *******************/
3874 #define CAN_TI2R_TXRQ ((uint32_t)0x00000001) /*!<Transmit Mailbox Request */
3875 #define CAN_TI2R_RTR ((uint32_t)0x00000002) /*!<Remote Transmission Request */
3876 #define CAN_TI2R_IDE ((uint32_t)0x00000004) /*!<Identifier Extension */
3877 #define CAN_TI2R_EXID ((uint32_t)0x001FFFF8) /*!<Extended identifier */
3878 #define CAN_TI2R_STID ((uint32_t)0xFFE00000) /*!<Standard Identifier or Extended Identifier */
3879
3880 /******************* Bit definition for CAN_TDT2R register ******************/
3881 #define CAN_TDT2R_DLC ((uint32_t)0x0000000F) /*!<Data Length Code */
3882 #define CAN_TDT2R_TGT ((uint32_t)0x00000100) /*!<Transmit Global Time */
3883 #define CAN_TDT2R_TIME ((uint32_t)0xFFFF0000) /*!<Message Time Stamp */
3884
3885 /******************* Bit definition for CAN_TDL2R register ******************/
3886 #define CAN_TDL2R_DATA0 ((uint32_t)0x000000FF) /*!<Data byte 0 */
3887 #define CAN_TDL2R_DATA1 ((uint32_t)0x0000FF00) /*!<Data byte 1 */
3888 #define CAN_TDL2R_DATA2 ((uint32_t)0x00FF0000) /*!<Data byte 2 */
3889 #define CAN_TDL2R_DATA3 ((uint32_t)0xFF000000) /*!<Data byte 3 */
3890
3891 /******************* Bit definition for CAN_TDH2R register ******************/
3892 #define CAN_TDH2R_DATA4 ((uint32_t)0x000000FF) /*!<Data byte 4 */
3893 #define CAN_TDH2R_DATA5 ((uint32_t)0x0000FF00) /*!<Data byte 5 */
3894 #define CAN_TDH2R_DATA6 ((uint32_t)0x00FF0000) /*!<Data byte 6 */
3895 #define CAN_TDH2R_DATA7 ((uint32_t)0xFF000000) /*!<Data byte 7 */
3896
3897 /******************* Bit definition for CAN_RI0R register *******************/
3898 #define CAN_RI0R_RTR ((uint32_t)0x00000002) /*!<Remote Transmission Request */
3899 #define CAN_RI0R_IDE ((uint32_t)0x00000004) /*!<Identifier Extension */
3900 #define CAN_RI0R_EXID ((uint32_t)0x001FFFF8) /*!<Extended Identifier */
3901 #define CAN_RI0R_STID ((uint32_t)0xFFE00000) /*!<Standard Identifier or Extended Identifier */
3902
3903 /******************* Bit definition for CAN_RDT0R register ******************/
3904 #define CAN_RDT0R_DLC ((uint32_t)0x0000000F) /*!<Data Length Code */
3905 #define CAN_RDT0R_FMI ((uint32_t)0x0000FF00) /*!<Filter Match Index */
3906 #define CAN_RDT0R_TIME ((uint32_t)0xFFFF0000) /*!<Message Time Stamp */
3907
3908 /******************* Bit definition for CAN_RDL0R register ******************/
3909 #define CAN_RDL0R_DATA0 ((uint32_t)0x000000FF) /*!<Data byte 0 */
3910 #define CAN_RDL0R_DATA1 ((uint32_t)0x0000FF00) /*!<Data byte 1 */
3911 #define CAN_RDL0R_DATA2 ((uint32_t)0x00FF0000) /*!<Data byte 2 */
3912 #define CAN_RDL0R_DATA3 ((uint32_t)0xFF000000) /*!<Data byte 3 */
3913
3914 /******************* Bit definition for CAN_RDH0R register ******************/
3915 #define CAN_RDH0R_DATA4 ((uint32_t)0x000000FF) /*!<Data byte 4 */
3916 #define CAN_RDH0R_DATA5 ((uint32_t)0x0000FF00) /*!<Data byte 5 */
3917 #define CAN_RDH0R_DATA6 ((uint32_t)0x00FF0000) /*!<Data byte 6 */
3918 #define CAN_RDH0R_DATA7 ((uint32_t)0xFF000000) /*!<Data byte 7 */
3919
3920 /******************* Bit definition for CAN_RI1R register *******************/
3921 #define CAN_RI1R_RTR ((uint32_t)0x00000002) /*!<Remote Transmission Request */
3922 #define CAN_RI1R_IDE ((uint32_t)0x00000004) /*!<Identifier Extension */
3923 #define CAN_RI1R_EXID ((uint32_t)0x001FFFF8) /*!<Extended identifier */
3924 #define CAN_RI1R_STID ((uint32_t)0xFFE00000) /*!<Standard Identifier or Extended Identifier */
3925
3926 /******************* Bit definition for CAN_RDT1R register ******************/
3927 #define CAN_RDT1R_DLC ((uint32_t)0x0000000F) /*!<Data Length Code */
3928 #define CAN_RDT1R_FMI ((uint32_t)0x0000FF00) /*!<Filter Match Index */
3929 #define CAN_RDT1R_TIME ((uint32_t)0xFFFF0000) /*!<Message Time Stamp */
3930
3931 /******************* Bit definition for CAN_RDL1R register ******************/
3932 #define CAN_RDL1R_DATA0 ((uint32_t)0x000000FF) /*!<Data byte 0 */
3933 #define CAN_RDL1R_DATA1 ((uint32_t)0x0000FF00) /*!<Data byte 1 */
3934 #define CAN_RDL1R_DATA2 ((uint32_t)0x00FF0000) /*!<Data byte 2 */
3935 #define CAN_RDL1R_DATA3 ((uint32_t)0xFF000000) /*!<Data byte 3 */
3936
3937 /******************* Bit definition for CAN_RDH1R register ******************/
3938 #define CAN_RDH1R_DATA4 ((uint32_t)0x000000FF) /*!<Data byte 4 */
3939 #define CAN_RDH1R_DATA5 ((uint32_t)0x0000FF00) /*!<Data byte 5 */
3940 #define CAN_RDH1R_DATA6 ((uint32_t)0x00FF0000) /*!<Data byte 6 */
3941 #define CAN_RDH1R_DATA7 ((uint32_t)0xFF000000) /*!<Data byte 7 */
3942
3943 /*!<CAN filter registers */
3944 /******************* Bit definition for CAN_FMR register ********************/
3945 #define CAN_FMR_FINIT ((uint8_t)0x01) /*!<Filter Init Mode */
3946
3947 /******************* Bit definition for CAN_FM1R register *******************/
3948 #define CAN_FM1R_FBM ((uint16_t)0x3FFF) /*!<Filter Mode */
3949 #define CAN_FM1R_FBM0 ((uint16_t)0x0001) /*!<Filter Init Mode bit 0 */
3950 #define CAN_FM1R_FBM1 ((uint16_t)0x0002) /*!<Filter Init Mode bit 1 */
3951 #define CAN_FM1R_FBM2 ((uint16_t)0x0004) /*!<Filter Init Mode bit 2 */
3952 #define CAN_FM1R_FBM3 ((uint16_t)0x0008) /*!<Filter Init Mode bit 3 */
3953 #define CAN_FM1R_FBM4 ((uint16_t)0x0010) /*!<Filter Init Mode bit 4 */
3954 #define CAN_FM1R_FBM5 ((uint16_t)0x0020) /*!<Filter Init Mode bit 5 */
3955 #define CAN_FM1R_FBM6 ((uint16_t)0x0040) /*!<Filter Init Mode bit 6 */
3956 #define CAN_FM1R_FBM7 ((uint16_t)0x0080) /*!<Filter Init Mode bit 7 */
3957 #define CAN_FM1R_FBM8 ((uint16_t)0x0100) /*!<Filter Init Mode bit 8 */
3958 #define CAN_FM1R_FBM9 ((uint16_t)0x0200) /*!<Filter Init Mode bit 9 */
3959 #define CAN_FM1R_FBM10 ((uint16_t)0x0400) /*!<Filter Init Mode bit 10 */
3960 #define CAN_FM1R_FBM11 ((uint16_t)0x0800) /*!<Filter Init Mode bit 11 */
3961 #define CAN_FM1R_FBM12 ((uint16_t)0x1000) /*!<Filter Init Mode bit 12 */
3962 #define CAN_FM1R_FBM13 ((uint16_t)0x2000) /*!<Filter Init Mode bit 13 */
3963
3964 /******************* Bit definition for CAN_FS1R register *******************/
3965 #define CAN_FS1R_FSC ((uint16_t)0x3FFF) /*!<Filter Scale Configuration */
3966 #define CAN_FS1R_FSC0 ((uint16_t)0x0001) /*!<Filter Scale Configuration bit 0 */
3967 #define CAN_FS1R_FSC1 ((uint16_t)0x0002) /*!<Filter Scale Configuration bit 1 */
3968 #define CAN_FS1R_FSC2 ((uint16_t)0x0004) /*!<Filter Scale Configuration bit 2 */
3969 #define CAN_FS1R_FSC3 ((uint16_t)0x0008) /*!<Filter Scale Configuration bit 3 */
3970 #define CAN_FS1R_FSC4 ((uint16_t)0x0010) /*!<Filter Scale Configuration bit 4 */
3971 #define CAN_FS1R_FSC5 ((uint16_t)0x0020) /*!<Filter Scale Configuration bit 5 */
3972 #define CAN_FS1R_FSC6 ((uint16_t)0x0040) /*!<Filter Scale Configuration bit 6 */
3973 #define CAN_FS1R_FSC7 ((uint16_t)0x0080) /*!<Filter Scale Configuration bit 7 */
3974 #define CAN_FS1R_FSC8 ((uint16_t)0x0100) /*!<Filter Scale Configuration bit 8 */
3975 #define CAN_FS1R_FSC9 ((uint16_t)0x0200) /*!<Filter Scale Configuration bit 9 */
3976 #define CAN_FS1R_FSC10 ((uint16_t)0x0400) /*!<Filter Scale Configuration bit 10 */
3977 #define CAN_FS1R_FSC11 ((uint16_t)0x0800) /*!<Filter Scale Configuration bit 11 */
3978 #define CAN_FS1R_FSC12 ((uint16_t)0x1000) /*!<Filter Scale Configuration bit 12 */
3979 #define CAN_FS1R_FSC13 ((uint16_t)0x2000) /*!<Filter Scale Configuration bit 13 */
3980
3981 /****************** Bit definition for CAN_FFA1R register *******************/
3982 #define CAN_FFA1R_FFA ((uint16_t)0x3FFF) /*!<Filter FIFO Assignment */
3983 #define CAN_FFA1R_FFA0 ((uint16_t)0x0001) /*!<Filter FIFO Assignment for Filter 0 */
3984 #define CAN_FFA1R_FFA1 ((uint16_t)0x0002) /*!<Filter FIFO Assignment for Filter 1 */
3985 #define CAN_FFA1R_FFA2 ((uint16_t)0x0004) /*!<Filter FIFO Assignment for Filter 2 */
3986 #define CAN_FFA1R_FFA3 ((uint16_t)0x0008) /*!<Filter FIFO Assignment for Filter 3 */
3987 #define CAN_FFA1R_FFA4 ((uint16_t)0x0010) /*!<Filter FIFO Assignment for Filter 4 */
3988 #define CAN_FFA1R_FFA5 ((uint16_t)0x0020) /*!<Filter FIFO Assignment for Filter 5 */
3989 #define CAN_FFA1R_FFA6 ((uint16_t)0x0040) /*!<Filter FIFO Assignment for Filter 6 */
3990 #define CAN_FFA1R_FFA7 ((uint16_t)0x0080) /*!<Filter FIFO Assignment for Filter 7 */
3991 #define CAN_FFA1R_FFA8 ((uint16_t)0x0100) /*!<Filter FIFO Assignment for Filter 8 */
3992 #define CAN_FFA1R_FFA9 ((uint16_t)0x0200) /*!<Filter FIFO Assignment for Filter 9 */
3993 #define CAN_FFA1R_FFA10 ((uint16_t)0x0400) /*!<Filter FIFO Assignment for Filter 10 */
3994 #define CAN_FFA1R_FFA11 ((uint16_t)0x0800) /*!<Filter FIFO Assignment for Filter 11 */
3995 #define CAN_FFA1R_FFA12 ((uint16_t)0x1000) /*!<Filter FIFO Assignment for Filter 12 */
3996 #define CAN_FFA1R_FFA13 ((uint16_t)0x2000) /*!<Filter FIFO Assignment for Filter 13 */
3997
3998 /******************* Bit definition for CAN_FA1R register *******************/
3999 #define CAN_FA1R_FACT ((uint16_t)0x3FFF) /*!<Filter Active */
4000 #define CAN_FA1R_FACT0 ((uint16_t)0x0001) /*!<Filter 0 Active */
4001 #define CAN_FA1R_FACT1 ((uint16_t)0x0002) /*!<Filter 1 Active */
4002 #define CAN_FA1R_FACT2 ((uint16_t)0x0004) /*!<Filter 2 Active */
4003 #define CAN_FA1R_FACT3 ((uint16_t)0x0008) /*!<Filter 3 Active */
4004 #define CAN_FA1R_FACT4 ((uint16_t)0x0010) /*!<Filter 4 Active */
4005 #define CAN_FA1R_FACT5 ((uint16_t)0x0020) /*!<Filter 5 Active */
4006 #define CAN_FA1R_FACT6 ((uint16_t)0x0040) /*!<Filter 6 Active */
4007 #define CAN_FA1R_FACT7 ((uint16_t)0x0080) /*!<Filter 7 Active */
4008 #define CAN_FA1R_FACT8 ((uint16_t)0x0100) /*!<Filter 8 Active */
4009 #define CAN_FA1R_FACT9 ((uint16_t)0x0200) /*!<Filter 9 Active */
4010 #define CAN_FA1R_FACT10 ((uint16_t)0x0400) /*!<Filter 10 Active */
4011 #define CAN_FA1R_FACT11 ((uint16_t)0x0800) /*!<Filter 11 Active */
4012 #define CAN_FA1R_FACT12 ((uint16_t)0x1000) /*!<Filter 12 Active */
4013 #define CAN_FA1R_FACT13 ((uint16_t)0x2000) /*!<Filter 13 Active */
4014
4015 /******************* Bit definition for CAN_F0R1 register *******************/
4016 #define CAN_F0R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
4017 #define CAN_F0R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
4018 #define CAN_F0R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
4019 #define CAN_F0R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
4020 #define CAN_F0R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
4021 #define CAN_F0R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
4022 #define CAN_F0R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
4023 #define CAN_F0R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
4024 #define CAN_F0R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
4025 #define CAN_F0R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
4026 #define CAN_F0R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
4027 #define CAN_F0R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
4028 #define CAN_F0R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
4029 #define CAN_F0R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
4030 #define CAN_F0R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
4031 #define CAN_F0R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
4032 #define CAN_F0R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
4033 #define CAN_F0R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
4034 #define CAN_F0R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
4035 #define CAN_F0R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
4036 #define CAN_F0R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
4037 #define CAN_F0R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
4038 #define CAN_F0R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
4039 #define CAN_F0R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
4040 #define CAN_F0R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
4041 #define CAN_F0R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
4042 #define CAN_F0R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
4043 #define CAN_F0R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
4044 #define CAN_F0R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
4045 #define CAN_F0R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
4046 #define CAN_F0R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
4047 #define CAN_F0R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
4048
4049 /******************* Bit definition for CAN_F1R1 register *******************/
4050 #define CAN_F1R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
4051 #define CAN_F1R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
4052 #define CAN_F1R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
4053 #define CAN_F1R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
4054 #define CAN_F1R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
4055 #define CAN_F1R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
4056 #define CAN_F1R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
4057 #define CAN_F1R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
4058 #define CAN_F1R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
4059 #define CAN_F1R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
4060 #define CAN_F1R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
4061 #define CAN_F1R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
4062 #define CAN_F1R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
4063 #define CAN_F1R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
4064 #define CAN_F1R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
4065 #define CAN_F1R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
4066 #define CAN_F1R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
4067 #define CAN_F1R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
4068 #define CAN_F1R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
4069 #define CAN_F1R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
4070 #define CAN_F1R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
4071 #define CAN_F1R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
4072 #define CAN_F1R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
4073 #define CAN_F1R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
4074 #define CAN_F1R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
4075 #define CAN_F1R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
4076 #define CAN_F1R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
4077 #define CAN_F1R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
4078 #define CAN_F1R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
4079 #define CAN_F1R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
4080 #define CAN_F1R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
4081 #define CAN_F1R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
4082
4083 /******************* Bit definition for CAN_F2R1 register *******************/
4084 #define CAN_F2R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
4085 #define CAN_F2R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
4086 #define CAN_F2R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
4087 #define CAN_F2R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
4088 #define CAN_F2R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
4089 #define CAN_F2R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
4090 #define CAN_F2R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
4091 #define CAN_F2R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
4092 #define CAN_F2R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
4093 #define CAN_F2R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
4094 #define CAN_F2R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
4095 #define CAN_F2R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
4096 #define CAN_F2R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
4097 #define CAN_F2R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
4098 #define CAN_F2R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
4099 #define CAN_F2R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
4100 #define CAN_F2R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
4101 #define CAN_F2R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
4102 #define CAN_F2R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
4103 #define CAN_F2R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
4104 #define CAN_F2R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
4105 #define CAN_F2R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
4106 #define CAN_F2R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
4107 #define CAN_F2R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
4108 #define CAN_F2R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
4109 #define CAN_F2R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
4110 #define CAN_F2R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
4111 #define CAN_F2R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
4112 #define CAN_F2R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
4113 #define CAN_F2R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
4114 #define CAN_F2R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
4115 #define CAN_F2R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
4116
4117 /******************* Bit definition for CAN_F3R1 register *******************/
4118 #define CAN_F3R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
4119 #define CAN_F3R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
4120 #define CAN_F3R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
4121 #define CAN_F3R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
4122 #define CAN_F3R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
4123 #define CAN_F3R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
4124 #define CAN_F3R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
4125 #define CAN_F3R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
4126 #define CAN_F3R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
4127 #define CAN_F3R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
4128 #define CAN_F3R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
4129 #define CAN_F3R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
4130 #define CAN_F3R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
4131 #define CAN_F3R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
4132 #define CAN_F3R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
4133 #define CAN_F3R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
4134 #define CAN_F3R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
4135 #define CAN_F3R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
4136 #define CAN_F3R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
4137 #define CAN_F3R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
4138 #define CAN_F3R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
4139 #define CAN_F3R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
4140 #define CAN_F3R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
4141 #define CAN_F3R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
4142 #define CAN_F3R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
4143 #define CAN_F3R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
4144 #define CAN_F3R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
4145 #define CAN_F3R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
4146 #define CAN_F3R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
4147 #define CAN_F3R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
4148 #define CAN_F3R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
4149 #define CAN_F3R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
4150
4151 /******************* Bit definition for CAN_F4R1 register *******************/
4152 #define CAN_F4R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
4153 #define CAN_F4R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
4154 #define CAN_F4R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
4155 #define CAN_F4R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
4156 #define CAN_F4R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
4157 #define CAN_F4R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
4158 #define CAN_F4R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
4159 #define CAN_F4R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
4160 #define CAN_F4R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
4161 #define CAN_F4R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
4162 #define CAN_F4R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
4163 #define CAN_F4R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
4164 #define CAN_F4R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
4165 #define CAN_F4R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
4166 #define CAN_F4R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
4167 #define CAN_F4R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
4168 #define CAN_F4R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
4169 #define CAN_F4R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
4170 #define CAN_F4R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
4171 #define CAN_F4R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
4172 #define CAN_F4R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
4173 #define CAN_F4R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
4174 #define CAN_F4R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
4175 #define CAN_F4R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
4176 #define CAN_F4R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
4177 #define CAN_F4R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
4178 #define CAN_F4R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
4179 #define CAN_F4R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
4180 #define CAN_F4R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
4181 #define CAN_F4R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
4182 #define CAN_F4R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
4183 #define CAN_F4R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
4184
4185 /******************* Bit definition for CAN_F5R1 register *******************/
4186 #define CAN_F5R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
4187 #define CAN_F5R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
4188 #define CAN_F5R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
4189 #define CAN_F5R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
4190 #define CAN_F5R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
4191 #define CAN_F5R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
4192 #define CAN_F5R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
4193 #define CAN_F5R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
4194 #define CAN_F5R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
4195 #define CAN_F5R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
4196 #define CAN_F5R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
4197 #define CAN_F5R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
4198 #define CAN_F5R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
4199 #define CAN_F5R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
4200 #define CAN_F5R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
4201 #define CAN_F5R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
4202 #define CAN_F5R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
4203 #define CAN_F5R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
4204 #define CAN_F5R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
4205 #define CAN_F5R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
4206 #define CAN_F5R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
4207 #define CAN_F5R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
4208 #define CAN_F5R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
4209 #define CAN_F5R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
4210 #define CAN_F5R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
4211 #define CAN_F5R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
4212 #define CAN_F5R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
4213 #define CAN_F5R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
4214 #define CAN_F5R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
4215 #define CAN_F5R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
4216 #define CAN_F5R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
4217 #define CAN_F5R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
4218
4219 /******************* Bit definition for CAN_F6R1 register *******************/
4220 #define CAN_F6R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
4221 #define CAN_F6R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
4222 #define CAN_F6R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
4223 #define CAN_F6R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
4224 #define CAN_F6R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
4225 #define CAN_F6R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
4226 #define CAN_F6R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
4227 #define CAN_F6R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
4228 #define CAN_F6R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
4229 #define CAN_F6R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
4230 #define CAN_F6R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
4231 #define CAN_F6R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
4232 #define CAN_F6R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
4233 #define CAN_F6R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
4234 #define CAN_F6R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
4235 #define CAN_F6R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
4236 #define CAN_F6R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
4237 #define CAN_F6R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
4238 #define CAN_F6R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
4239 #define CAN_F6R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
4240 #define CAN_F6R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
4241 #define CAN_F6R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
4242 #define CAN_F6R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
4243 #define CAN_F6R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
4244 #define CAN_F6R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
4245 #define CAN_F6R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
4246 #define CAN_F6R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
4247 #define CAN_F6R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
4248 #define CAN_F6R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
4249 #define CAN_F6R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
4250 #define CAN_F6R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
4251 #define CAN_F6R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
4252
4253 /******************* Bit definition for CAN_F7R1 register *******************/
4254 #define CAN_F7R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
4255 #define CAN_F7R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
4256 #define CAN_F7R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
4257 #define CAN_F7R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
4258 #define CAN_F7R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
4259 #define CAN_F7R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
4260 #define CAN_F7R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
4261 #define CAN_F7R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
4262 #define CAN_F7R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
4263 #define CAN_F7R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
4264 #define CAN_F7R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
4265 #define CAN_F7R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
4266 #define CAN_F7R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
4267 #define CAN_F7R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
4268 #define CAN_F7R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
4269 #define CAN_F7R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
4270 #define CAN_F7R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
4271 #define CAN_F7R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
4272 #define CAN_F7R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
4273 #define CAN_F7R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
4274 #define CAN_F7R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
4275 #define CAN_F7R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
4276 #define CAN_F7R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
4277 #define CAN_F7R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
4278 #define CAN_F7R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
4279 #define CAN_F7R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
4280 #define CAN_F7R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
4281 #define CAN_F7R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
4282 #define CAN_F7R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
4283 #define CAN_F7R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
4284 #define CAN_F7R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
4285 #define CAN_F7R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
4286
4287 /******************* Bit definition for CAN_F8R1 register *******************/
4288 #define CAN_F8R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
4289 #define CAN_F8R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
4290 #define CAN_F8R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
4291 #define CAN_F8R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
4292 #define CAN_F8R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
4293 #define CAN_F8R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
4294 #define CAN_F8R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
4295 #define CAN_F8R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
4296 #define CAN_F8R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
4297 #define CAN_F8R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
4298 #define CAN_F8R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
4299 #define CAN_F8R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
4300 #define CAN_F8R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
4301 #define CAN_F8R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
4302 #define CAN_F8R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
4303 #define CAN_F8R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
4304 #define CAN_F8R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
4305 #define CAN_F8R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
4306 #define CAN_F8R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
4307 #define CAN_F8R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
4308 #define CAN_F8R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
4309 #define CAN_F8R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
4310 #define CAN_F8R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
4311 #define CAN_F8R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
4312 #define CAN_F8R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
4313 #define CAN_F8R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
4314 #define CAN_F8R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
4315 #define CAN_F8R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
4316 #define CAN_F8R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
4317 #define CAN_F8R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
4318 #define CAN_F8R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
4319 #define CAN_F8R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
4320
4321 /******************* Bit definition for CAN_F9R1 register *******************/
4322 #define CAN_F9R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
4323 #define CAN_F9R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
4324 #define CAN_F9R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
4325 #define CAN_F9R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
4326 #define CAN_F9R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
4327 #define CAN_F9R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
4328 #define CAN_F9R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
4329 #define CAN_F9R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
4330 #define CAN_F9R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
4331 #define CAN_F9R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
4332 #define CAN_F9R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
4333 #define CAN_F9R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
4334 #define CAN_F9R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
4335 #define CAN_F9R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
4336 #define CAN_F9R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
4337 #define CAN_F9R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
4338 #define CAN_F9R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
4339 #define CAN_F9R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
4340 #define CAN_F9R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
4341 #define CAN_F9R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
4342 #define CAN_F9R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
4343 #define CAN_F9R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
4344 #define CAN_F9R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
4345 #define CAN_F9R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
4346 #define CAN_F9R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
4347 #define CAN_F9R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
4348 #define CAN_F9R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
4349 #define CAN_F9R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
4350 #define CAN_F9R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
4351 #define CAN_F9R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
4352 #define CAN_F9R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
4353 #define CAN_F9R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
4354
4355 /******************* Bit definition for CAN_F10R1 register ******************/
4356 #define CAN_F10R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
4357 #define CAN_F10R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
4358 #define CAN_F10R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
4359 #define CAN_F10R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
4360 #define CAN_F10R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
4361 #define CAN_F10R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
4362 #define CAN_F10R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
4363 #define CAN_F10R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
4364 #define CAN_F10R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
4365 #define CAN_F10R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
4366 #define CAN_F10R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
4367 #define CAN_F10R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
4368 #define CAN_F10R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
4369 #define CAN_F10R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
4370 #define CAN_F10R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
4371 #define CAN_F10R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
4372 #define CAN_F10R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
4373 #define CAN_F10R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
4374 #define CAN_F10R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
4375 #define CAN_F10R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
4376 #define CAN_F10R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
4377 #define CAN_F10R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
4378 #define CAN_F10R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
4379 #define CAN_F10R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
4380 #define CAN_F10R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
4381 #define CAN_F10R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
4382 #define CAN_F10R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
4383 #define CAN_F10R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
4384 #define CAN_F10R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
4385 #define CAN_F10R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
4386 #define CAN_F10R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
4387 #define CAN_F10R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
4388
4389 /******************* Bit definition for CAN_F11R1 register ******************/
4390 #define CAN_F11R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
4391 #define CAN_F11R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
4392 #define CAN_F11R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
4393 #define CAN_F11R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
4394 #define CAN_F11R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
4395 #define CAN_F11R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
4396 #define CAN_F11R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
4397 #define CAN_F11R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
4398 #define CAN_F11R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
4399 #define CAN_F11R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
4400 #define CAN_F11R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
4401 #define CAN_F11R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
4402 #define CAN_F11R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
4403 #define CAN_F11R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
4404 #define CAN_F11R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
4405 #define CAN_F11R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
4406 #define CAN_F11R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
4407 #define CAN_F11R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
4408 #define CAN_F11R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
4409 #define CAN_F11R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
4410 #define CAN_F11R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
4411 #define CAN_F11R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
4412 #define CAN_F11R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
4413 #define CAN_F11R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
4414 #define CAN_F11R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
4415 #define CAN_F11R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
4416 #define CAN_F11R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
4417 #define CAN_F11R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
4418 #define CAN_F11R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
4419 #define CAN_F11R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
4420 #define CAN_F11R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
4421 #define CAN_F11R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
4422
4423 /******************* Bit definition for CAN_F12R1 register ******************/
4424 #define CAN_F12R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
4425 #define CAN_F12R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
4426 #define CAN_F12R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
4427 #define CAN_F12R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
4428 #define CAN_F12R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
4429 #define CAN_F12R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
4430 #define CAN_F12R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
4431 #define CAN_F12R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
4432 #define CAN_F12R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
4433 #define CAN_F12R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
4434 #define CAN_F12R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
4435 #define CAN_F12R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
4436 #define CAN_F12R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
4437 #define CAN_F12R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
4438 #define CAN_F12R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
4439 #define CAN_F12R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
4440 #define CAN_F12R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
4441 #define CAN_F12R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
4442 #define CAN_F12R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
4443 #define CAN_F12R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
4444 #define CAN_F12R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
4445 #define CAN_F12R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
4446 #define CAN_F12R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
4447 #define CAN_F12R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
4448 #define CAN_F12R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
4449 #define CAN_F12R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
4450 #define CAN_F12R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
4451 #define CAN_F12R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
4452 #define CAN_F12R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
4453 #define CAN_F12R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
4454 #define CAN_F12R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
4455 #define CAN_F12R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
4456
4457 /******************* Bit definition for CAN_F13R1 register ******************/
4458 #define CAN_F13R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
4459 #define CAN_F13R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
4460 #define CAN_F13R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
4461 #define CAN_F13R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
4462 #define CAN_F13R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
4463 #define CAN_F13R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
4464 #define CAN_F13R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
4465 #define CAN_F13R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
4466 #define CAN_F13R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
4467 #define CAN_F13R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
4468 #define CAN_F13R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
4469 #define CAN_F13R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
4470 #define CAN_F13R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
4471 #define CAN_F13R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
4472 #define CAN_F13R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
4473 #define CAN_F13R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
4474 #define CAN_F13R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
4475 #define CAN_F13R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
4476 #define CAN_F13R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
4477 #define CAN_F13R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
4478 #define CAN_F13R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
4479 #define CAN_F13R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
4480 #define CAN_F13R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
4481 #define CAN_F13R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
4482 #define CAN_F13R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
4483 #define CAN_F13R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
4484 #define CAN_F13R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
4485 #define CAN_F13R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
4486 #define CAN_F13R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
4487 #define CAN_F13R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
4488 #define CAN_F13R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
4489 #define CAN_F13R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
4490
4491 /******************* Bit definition for CAN_F0R2 register *******************/
4492 #define CAN_F0R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
4493 #define CAN_F0R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
4494 #define CAN_F0R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
4495 #define CAN_F0R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
4496 #define CAN_F0R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
4497 #define CAN_F0R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
4498 #define CAN_F0R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
4499 #define CAN_F0R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
4500 #define CAN_F0R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
4501 #define CAN_F0R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
4502 #define CAN_F0R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
4503 #define CAN_F0R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
4504 #define CAN_F0R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
4505 #define CAN_F0R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
4506 #define CAN_F0R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
4507 #define CAN_F0R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
4508 #define CAN_F0R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
4509 #define CAN_F0R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
4510 #define CAN_F0R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
4511 #define CAN_F0R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
4512 #define CAN_F0R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
4513 #define CAN_F0R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
4514 #define CAN_F0R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
4515 #define CAN_F0R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
4516 #define CAN_F0R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
4517 #define CAN_F0R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
4518 #define CAN_F0R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
4519 #define CAN_F0R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
4520 #define CAN_F0R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
4521 #define CAN_F0R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
4522 #define CAN_F0R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
4523 #define CAN_F0R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
4524
4525 /******************* Bit definition for CAN_F1R2 register *******************/
4526 #define CAN_F1R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
4527 #define CAN_F1R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
4528 #define CAN_F1R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
4529 #define CAN_F1R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
4530 #define CAN_F1R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
4531 #define CAN_F1R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
4532 #define CAN_F1R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
4533 #define CAN_F1R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
4534 #define CAN_F1R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
4535 #define CAN_F1R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
4536 #define CAN_F1R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
4537 #define CAN_F1R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
4538 #define CAN_F1R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
4539 #define CAN_F1R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
4540 #define CAN_F1R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
4541 #define CAN_F1R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
4542 #define CAN_F1R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
4543 #define CAN_F1R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
4544 #define CAN_F1R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
4545 #define CAN_F1R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
4546 #define CAN_F1R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
4547 #define CAN_F1R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
4548 #define CAN_F1R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
4549 #define CAN_F1R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
4550 #define CAN_F1R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
4551 #define CAN_F1R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
4552 #define CAN_F1R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
4553 #define CAN_F1R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
4554 #define CAN_F1R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
4555 #define CAN_F1R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
4556 #define CAN_F1R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
4557 #define CAN_F1R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
4558
4559 /******************* Bit definition for CAN_F2R2 register *******************/
4560 #define CAN_F2R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
4561 #define CAN_F2R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
4562 #define CAN_F2R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
4563 #define CAN_F2R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
4564 #define CAN_F2R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
4565 #define CAN_F2R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
4566 #define CAN_F2R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
4567 #define CAN_F2R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
4568 #define CAN_F2R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
4569 #define CAN_F2R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
4570 #define CAN_F2R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
4571 #define CAN_F2R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
4572 #define CAN_F2R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
4573 #define CAN_F2R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
4574 #define CAN_F2R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
4575 #define CAN_F2R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
4576 #define CAN_F2R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
4577 #define CAN_F2R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
4578 #define CAN_F2R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
4579 #define CAN_F2R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
4580 #define CAN_F2R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
4581 #define CAN_F2R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
4582 #define CAN_F2R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
4583 #define CAN_F2R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
4584 #define CAN_F2R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
4585 #define CAN_F2R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
4586 #define CAN_F2R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
4587 #define CAN_F2R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
4588 #define CAN_F2R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
4589 #define CAN_F2R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
4590 #define CAN_F2R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
4591 #define CAN_F2R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
4592
4593 /******************* Bit definition for CAN_F3R2 register *******************/
4594 #define CAN_F3R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
4595 #define CAN_F3R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
4596 #define CAN_F3R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
4597 #define CAN_F3R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
4598 #define CAN_F3R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
4599 #define CAN_F3R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
4600 #define CAN_F3R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
4601 #define CAN_F3R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
4602 #define CAN_F3R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
4603 #define CAN_F3R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
4604 #define CAN_F3R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
4605 #define CAN_F3R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
4606 #define CAN_F3R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
4607 #define CAN_F3R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
4608 #define CAN_F3R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
4609 #define CAN_F3R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
4610 #define CAN_F3R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
4611 #define CAN_F3R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
4612 #define CAN_F3R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
4613 #define CAN_F3R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
4614 #define CAN_F3R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
4615 #define CAN_F3R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
4616 #define CAN_F3R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
4617 #define CAN_F3R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
4618 #define CAN_F3R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
4619 #define CAN_F3R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
4620 #define CAN_F3R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
4621 #define CAN_F3R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
4622 #define CAN_F3R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
4623 #define CAN_F3R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
4624 #define CAN_F3R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
4625 #define CAN_F3R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
4626
4627 /******************* Bit definition for CAN_F4R2 register *******************/
4628 #define CAN_F4R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
4629 #define CAN_F4R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
4630 #define CAN_F4R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
4631 #define CAN_F4R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
4632 #define CAN_F4R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
4633 #define CAN_F4R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
4634 #define CAN_F4R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
4635 #define CAN_F4R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
4636 #define CAN_F4R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
4637 #define CAN_F4R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
4638 #define CAN_F4R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
4639 #define CAN_F4R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
4640 #define CAN_F4R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
4641 #define CAN_F4R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
4642 #define CAN_F4R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
4643 #define CAN_F4R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
4644 #define CAN_F4R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
4645 #define CAN_F4R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
4646 #define CAN_F4R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
4647 #define CAN_F4R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
4648 #define CAN_F4R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
4649 #define CAN_F4R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
4650 #define CAN_F4R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
4651 #define CAN_F4R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
4652 #define CAN_F4R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
4653 #define CAN_F4R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
4654 #define CAN_F4R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
4655 #define CAN_F4R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
4656 #define CAN_F4R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
4657 #define CAN_F4R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
4658 #define CAN_F4R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
4659 #define CAN_F4R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
4660
4661 /******************* Bit definition for CAN_F5R2 register *******************/
4662 #define CAN_F5R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
4663 #define CAN_F5R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
4664 #define CAN_F5R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
4665 #define CAN_F5R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
4666 #define CAN_F5R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
4667 #define CAN_F5R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
4668 #define CAN_F5R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
4669 #define CAN_F5R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
4670 #define CAN_F5R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
4671 #define CAN_F5R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
4672 #define CAN_F5R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
4673 #define CAN_F5R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
4674 #define CAN_F5R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
4675 #define CAN_F5R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
4676 #define CAN_F5R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
4677 #define CAN_F5R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
4678 #define CAN_F5R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
4679 #define CAN_F5R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
4680 #define CAN_F5R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
4681 #define CAN_F5R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
4682 #define CAN_F5R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
4683 #define CAN_F5R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
4684 #define CAN_F5R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
4685 #define CAN_F5R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
4686 #define CAN_F5R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
4687 #define CAN_F5R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
4688 #define CAN_F5R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
4689 #define CAN_F5R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
4690 #define CAN_F5R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
4691 #define CAN_F5R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
4692 #define CAN_F5R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
4693 #define CAN_F5R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
4694
4695 /******************* Bit definition for CAN_F6R2 register *******************/
4696 #define CAN_F6R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
4697 #define CAN_F6R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
4698 #define CAN_F6R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
4699 #define CAN_F6R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
4700 #define CAN_F6R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
4701 #define CAN_F6R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
4702 #define CAN_F6R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
4703 #define CAN_F6R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
4704 #define CAN_F6R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
4705 #define CAN_F6R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
4706 #define CAN_F6R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
4707 #define CAN_F6R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
4708 #define CAN_F6R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
4709 #define CAN_F6R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
4710 #define CAN_F6R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
4711 #define CAN_F6R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
4712 #define CAN_F6R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
4713 #define CAN_F6R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
4714 #define CAN_F6R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
4715 #define CAN_F6R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
4716 #define CAN_F6R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
4717 #define CAN_F6R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
4718 #define CAN_F6R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
4719 #define CAN_F6R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
4720 #define CAN_F6R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
4721 #define CAN_F6R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
4722 #define CAN_F6R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
4723 #define CAN_F6R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
4724 #define CAN_F6R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
4725 #define CAN_F6R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
4726 #define CAN_F6R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
4727 #define CAN_F6R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
4728
4729 /******************* Bit definition for CAN_F7R2 register *******************/
4730 #define CAN_F7R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
4731 #define CAN_F7R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
4732 #define CAN_F7R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
4733 #define CAN_F7R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
4734 #define CAN_F7R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
4735 #define CAN_F7R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
4736 #define CAN_F7R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
4737 #define CAN_F7R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
4738 #define CAN_F7R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
4739 #define CAN_F7R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
4740 #define CAN_F7R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
4741 #define CAN_F7R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
4742 #define CAN_F7R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
4743 #define CAN_F7R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
4744 #define CAN_F7R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
4745 #define CAN_F7R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
4746 #define CAN_F7R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
4747 #define CAN_F7R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
4748 #define CAN_F7R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
4749 #define CAN_F7R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
4750 #define CAN_F7R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
4751 #define CAN_F7R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
4752 #define CAN_F7R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
4753 #define CAN_F7R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
4754 #define CAN_F7R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
4755 #define CAN_F7R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
4756 #define CAN_F7R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
4757 #define CAN_F7R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
4758 #define CAN_F7R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
4759 #define CAN_F7R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
4760 #define CAN_F7R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
4761 #define CAN_F7R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
4762
4763 /******************* Bit definition for CAN_F8R2 register *******************/
4764 #define CAN_F8R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
4765 #define CAN_F8R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
4766 #define CAN_F8R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
4767 #define CAN_F8R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
4768 #define CAN_F8R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
4769 #define CAN_F8R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
4770 #define CAN_F8R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
4771 #define CAN_F8R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
4772 #define CAN_F8R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
4773 #define CAN_F8R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
4774 #define CAN_F8R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
4775 #define CAN_F8R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
4776 #define CAN_F8R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
4777 #define CAN_F8R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
4778 #define CAN_F8R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
4779 #define CAN_F8R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
4780 #define CAN_F8R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
4781 #define CAN_F8R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
4782 #define CAN_F8R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
4783 #define CAN_F8R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
4784 #define CAN_F8R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
4785 #define CAN_F8R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
4786 #define CAN_F8R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
4787 #define CAN_F8R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
4788 #define CAN_F8R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
4789 #define CAN_F8R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
4790 #define CAN_F8R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
4791 #define CAN_F8R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
4792 #define CAN_F8R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
4793 #define CAN_F8R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
4794 #define CAN_F8R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
4795 #define CAN_F8R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
4796
4797 /******************* Bit definition for CAN_F9R2 register *******************/
4798 #define CAN_F9R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
4799 #define CAN_F9R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
4800 #define CAN_F9R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
4801 #define CAN_F9R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
4802 #define CAN_F9R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
4803 #define CAN_F9R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
4804 #define CAN_F9R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
4805 #define CAN_F9R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
4806 #define CAN_F9R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
4807 #define CAN_F9R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
4808 #define CAN_F9R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
4809 #define CAN_F9R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
4810 #define CAN_F9R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
4811 #define CAN_F9R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
4812 #define CAN_F9R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
4813 #define CAN_F9R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
4814 #define CAN_F9R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
4815 #define CAN_F9R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
4816 #define CAN_F9R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
4817 #define CAN_F9R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
4818 #define CAN_F9R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
4819 #define CAN_F9R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
4820 #define CAN_F9R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
4821 #define CAN_F9R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
4822 #define CAN_F9R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
4823 #define CAN_F9R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
4824 #define CAN_F9R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
4825 #define CAN_F9R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
4826 #define CAN_F9R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
4827 #define CAN_F9R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
4828 #define CAN_F9R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
4829 #define CAN_F9R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
4830
4831 /******************* Bit definition for CAN_F10R2 register ******************/
4832 #define CAN_F10R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
4833 #define CAN_F10R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
4834 #define CAN_F10R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
4835 #define CAN_F10R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
4836 #define CAN_F10R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
4837 #define CAN_F10R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
4838 #define CAN_F10R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
4839 #define CAN_F10R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
4840 #define CAN_F10R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
4841 #define CAN_F10R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
4842 #define CAN_F10R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
4843 #define CAN_F10R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
4844 #define CAN_F10R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
4845 #define CAN_F10R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
4846 #define CAN_F10R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
4847 #define CAN_F10R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
4848 #define CAN_F10R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
4849 #define CAN_F10R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
4850 #define CAN_F10R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
4851 #define CAN_F10R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
4852 #define CAN_F10R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
4853 #define CAN_F10R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
4854 #define CAN_F10R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
4855 #define CAN_F10R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
4856 #define CAN_F10R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
4857 #define CAN_F10R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
4858 #define CAN_F10R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
4859 #define CAN_F10R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
4860 #define CAN_F10R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
4861 #define CAN_F10R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
4862 #define CAN_F10R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
4863 #define CAN_F10R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
4864
4865 /******************* Bit definition for CAN_F11R2 register ******************/
4866 #define CAN_F11R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
4867 #define CAN_F11R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
4868 #define CAN_F11R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
4869 #define CAN_F11R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
4870 #define CAN_F11R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
4871 #define CAN_F11R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
4872 #define CAN_F11R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
4873 #define CAN_F11R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
4874 #define CAN_F11R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
4875 #define CAN_F11R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
4876 #define CAN_F11R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
4877 #define CAN_F11R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
4878 #define CAN_F11R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
4879 #define CAN_F11R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
4880 #define CAN_F11R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
4881 #define CAN_F11R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
4882 #define CAN_F11R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
4883 #define CAN_F11R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
4884 #define CAN_F11R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
4885 #define CAN_F11R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
4886 #define CAN_F11R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
4887 #define CAN_F11R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
4888 #define CAN_F11R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
4889 #define CAN_F11R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
4890 #define CAN_F11R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
4891 #define CAN_F11R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
4892 #define CAN_F11R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
4893 #define CAN_F11R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
4894 #define CAN_F11R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
4895 #define CAN_F11R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
4896 #define CAN_F11R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
4897 #define CAN_F11R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
4898
4899 /******************* Bit definition for CAN_F12R2 register ******************/
4900 #define CAN_F12R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
4901 #define CAN_F12R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
4902 #define CAN_F12R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
4903 #define CAN_F12R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
4904 #define CAN_F12R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
4905 #define CAN_F12R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
4906 #define CAN_F12R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
4907 #define CAN_F12R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
4908 #define CAN_F12R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
4909 #define CAN_F12R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
4910 #define CAN_F12R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
4911 #define CAN_F12R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
4912 #define CAN_F12R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
4913 #define CAN_F12R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
4914 #define CAN_F12R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
4915 #define CAN_F12R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
4916 #define CAN_F12R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
4917 #define CAN_F12R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
4918 #define CAN_F12R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
4919 #define CAN_F12R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
4920 #define CAN_F12R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
4921 #define CAN_F12R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
4922 #define CAN_F12R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
4923 #define CAN_F12R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
4924 #define CAN_F12R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
4925 #define CAN_F12R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
4926 #define CAN_F12R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
4927 #define CAN_F12R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
4928 #define CAN_F12R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
4929 #define CAN_F12R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
4930 #define CAN_F12R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
4931 #define CAN_F12R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
4932
4933 /******************* Bit definition for CAN_F13R2 register ******************/
4934 #define CAN_F13R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
4935 #define CAN_F13R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
4936 #define CAN_F13R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
4937 #define CAN_F13R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
4938 #define CAN_F13R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
4939 #define CAN_F13R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
4940 #define CAN_F13R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
4941 #define CAN_F13R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
4942 #define CAN_F13R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
4943 #define CAN_F13R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
4944 #define CAN_F13R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
4945 #define CAN_F13R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
4946 #define CAN_F13R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
4947 #define CAN_F13R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
4948 #define CAN_F13R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
4949 #define CAN_F13R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
4950 #define CAN_F13R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
4951 #define CAN_F13R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
4952 #define CAN_F13R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
4953 #define CAN_F13R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
4954 #define CAN_F13R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
4955 #define CAN_F13R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
4956 #define CAN_F13R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
4957 #define CAN_F13R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
4958 #define CAN_F13R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
4959 #define CAN_F13R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
4960 #define CAN_F13R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
4961 #define CAN_F13R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
4962 #define CAN_F13R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
4963 #define CAN_F13R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
4964 #define CAN_F13R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
4965 #define CAN_F13R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
4966
4967 /******************************************************************************/
4968 /* */
4969 /* CRC calculation unit (CRC) */
4970 /* */
4971 /******************************************************************************/
4972 /******************* Bit definition for CRC_DR register *********************/
4973 #define CRC_DR_DR ((uint32_t)0xFFFFFFFF) /*!< Data register bits */
4974
4975 /******************* Bit definition for CRC_IDR register ********************/
4976 #define CRC_IDR_IDR ((uint8_t)0xFF) /*!< General-purpose 8-bit data register bits */
4977
4978 /******************** Bit definition for CRC_CR register ********************/
4979 #define CRC_CR_RESET ((uint32_t)0x00000001) /*!< RESET the CRC computation unit bit */
4980 #define CRC_CR_POLSIZE ((uint32_t)0x00000018) /*!< Polynomial size bits */
4981 #define CRC_CR_POLSIZE_0 ((uint32_t)0x00000008) /*!< Polynomial size bit 0 */
4982 #define CRC_CR_POLSIZE_1 ((uint32_t)0x00000010) /*!< Polynomial size bit 1 */
4983 #define CRC_CR_REV_IN ((uint32_t)0x00000060) /*!< REV_IN Reverse Input Data bits */
4984 #define CRC_CR_REV_IN_0 ((uint32_t)0x00000020) /*!< Bit 0 */
4985 #define CRC_CR_REV_IN_1 ((uint32_t)0x00000040) /*!< Bit 1 */
4986 #define CRC_CR_REV_OUT ((uint32_t)0x00000080) /*!< REV_OUT Reverse Output Data bits */
4987
4988 /******************* Bit definition for CRC_INIT register *******************/
4989 #define CRC_INIT_INIT ((uint32_t)0xFFFFFFFF) /*!< Initial CRC value bits */
4990
4991 /******************* Bit definition for CRC_POL register ********************/
4992 #define CRC_POL_POL ((uint32_t)0xFFFFFFFF) /*!< Coefficients of the polynomial */
4993 /******************************************************************************/
4994 /* */
4995 /* Digital to Analog Converter (DAC) */
4996 /* */
4997 /******************************************************************************/
4998 /******************** Bit definition for DAC_CR register ********************/
4999 #define DAC_CR_EN1 ((uint32_t)0x00000001) /*!< DAC channel1 enable */
5000 #define DAC_CR_BOFF1 ((uint32_t)0x00000002) /*!< DAC channel1 output buffer disable */
5001 #define DAC_CR_TEN1 ((uint32_t)0x00000004) /*!< DAC channel1 Trigger enable */
5002
5003 #define DAC_CR_TSEL1 ((uint32_t)0x00000038) /*!< TSEL1[2:0] (DAC channel1 Trigger selection) */
5004 #define DAC_CR_TSEL1_0 ((uint32_t)0x00000008) /*!< Bit 0 */
5005 #define DAC_CR_TSEL1_1 ((uint32_t)0x00000010) /*!< Bit 1 */
5006 #define DAC_CR_TSEL1_2 ((uint32_t)0x00000020) /*!< Bit 2 */
5007
5008 #define DAC_CR_WAVE1 ((uint32_t)0x000000C0) /*!< WAVE1[1:0] (DAC channel1 noise/triangle wave generation enable) */
5009 #define DAC_CR_WAVE1_0 ((uint32_t)0x00000040) /*!< Bit 0 */
5010 #define DAC_CR_WAVE1_1 ((uint32_t)0x00000080) /*!< Bit 1 */
5011
5012 #define DAC_CR_MAMP1 ((uint32_t)0x00000F00) /*!< MAMP1[3:0] (DAC channel1 Mask/Amplitude selector) */
5013 #define DAC_CR_MAMP1_0 ((uint32_t)0x00000100) /*!< Bit 0 */
5014 #define DAC_CR_MAMP1_1 ((uint32_t)0x00000200) /*!< Bit 1 */
5015 #define DAC_CR_MAMP1_2 ((uint32_t)0x00000400) /*!< Bit 2 */
5016 #define DAC_CR_MAMP1_3 ((uint32_t)0x00000800) /*!< Bit 3 */
5017
5018 #define DAC_CR_DMAEN1 ((uint32_t)0x00001000) /*!< DAC channel1 DMA enable */
5019 #define DAC_CR_EN2 ((uint32_t)0x00010000) /*!< DAC channel2 enable */
5020 #define DAC_CR_BOFF2 ((uint32_t)0x00020000) /*!< DAC channel2 output buffer disable */
5021 #define DAC_CR_TEN2 ((uint32_t)0x00040000) /*!< DAC channel2 Trigger enable */
5022
5023 #define DAC_CR_TSEL2 ((uint32_t)0x00380000) /*!< TSEL2[2:0] (DAC channel2 Trigger selection) */
5024 #define DAC_CR_TSEL2_0 ((uint32_t)0x00080000) /*!< Bit 0 */
5025 #define DAC_CR_TSEL2_1 ((uint32_t)0x00100000) /*!< Bit 1 */
5026 #define DAC_CR_TSEL2_2 ((uint32_t)0x00200000) /*!< Bit 2 */
5027
5028 #define DAC_CR_WAVE2 ((uint32_t)0x00C00000) /*!< WAVE2[1:0] (DAC channel2 noise/triangle wave generation enable) */
5029 #define DAC_CR_WAVE2_0 ((uint32_t)0x00400000) /*!< Bit 0 */
5030 #define DAC_CR_WAVE2_1 ((uint32_t)0x00800000) /*!< Bit 1 */
5031
5032 #define DAC_CR_MAMP2 ((uint32_t)0x0F000000) /*!< MAMP2[3:0] (DAC channel2 Mask/Amplitude selector) */
5033 #define DAC_CR_MAMP2_0 ((uint32_t)0x01000000) /*!< Bit 0 */
5034 #define DAC_CR_MAMP2_1 ((uint32_t)0x02000000) /*!< Bit 1 */
5035 #define DAC_CR_MAMP2_2 ((uint32_t)0x04000000) /*!< Bit 2 */
5036 #define DAC_CR_MAMP2_3 ((uint32_t)0x08000000) /*!< Bit 3 */
5037
5038 #define DAC_CR_DMAEN2 ((uint32_t)0x10000000) /*!< DAC channel2 DMA enabled */
5039
5040 /***************** Bit definition for DAC_SWTRIGR register ******************/
5041 #define DAC_SWTRIGR_SWTRIG1 ((uint8_t)0x01) /*!< DAC channel1 software trigger */
5042 #define DAC_SWTRIGR_SWTRIG2 ((uint8_t)0x02) /*!< DAC channel2 software trigger */
5043
5044 /***************** Bit definition for DAC_DHR12R1 register ******************/
5045 #define DAC_DHR12R1_DACC1DHR ((uint16_t)0x0FFF) /*!< DAC channel1 12-bit Right aligned data */
5046
5047 /***************** Bit definition for DAC_DHR12L1 register ******************/
5048 #define DAC_DHR12L1_DACC1DHR ((uint16_t)0xFFF0) /*!< DAC channel1 12-bit Left aligned data */
5049
5050 /****************** Bit definition for DAC_DHR8R1 register ******************/
5051 #define DAC_DHR8R1_DACC1DHR ((uint8_t)0xFF) /*!< DAC channel1 8-bit Right aligned data */
5052
5053 /***************** Bit definition for DAC_DHR12R2 register ******************/
5054 #define DAC_DHR12R2_DACC2DHR ((uint16_t)0x0FFF) /*!< DAC channel2 12-bit Right aligned data */
5055
5056 /***************** Bit definition for DAC_DHR12L2 register ******************/
5057 #define DAC_DHR12L2_DACC2DHR ((uint16_t)0xFFF0) /*!< DAC channel2 12-bit Left aligned data */
5058
5059 /****************** Bit definition for DAC_DHR8R2 register ******************/
5060 #define DAC_DHR8R2_DACC2DHR ((uint8_t)0xFF) /*!< DAC channel2 8-bit Right aligned data */
5061
5062 /***************** Bit definition for DAC_DHR12RD register ******************/
5063 #define DAC_DHR12RD_DACC1DHR ((uint32_t)0x00000FFF) /*!< DAC channel1 12-bit Right aligned data */
5064 #define DAC_DHR12RD_DACC2DHR ((uint32_t)0x0FFF0000) /*!< DAC channel2 12-bit Right aligned data */
5065
5066 /***************** Bit definition for DAC_DHR12LD register ******************/
5067 #define DAC_DHR12LD_DACC1DHR ((uint32_t)0x0000FFF0) /*!< DAC channel1 12-bit Left aligned data */
5068 #define DAC_DHR12LD_DACC2DHR ((uint32_t)0xFFF00000) /*!< DAC channel2 12-bit Left aligned data */
5069
5070 /****************** Bit definition for DAC_DHR8RD register ******************/
5071 #define DAC_DHR8RD_DACC1DHR ((uint16_t)0x00FF) /*!< DAC channel1 8-bit Right aligned data */
5072 #define DAC_DHR8RD_DACC2DHR ((uint16_t)0xFF00) /*!< DAC channel2 8-bit Right aligned data */
5073
5074 /******************* Bit definition for DAC_DOR1 register *******************/
5075 #define DAC_DOR1_DACC1DOR ((uint16_t)0x0FFF) /*!< DAC channel1 data output */
5076
5077 /******************* Bit definition for DAC_DOR2 register *******************/
5078 #define DAC_DOR2_DACC2DOR ((uint16_t)0x0FFF) /*!< DAC channel2 data output */
5079
5080 /******************** Bit definition for DAC_SR register ********************/
5081 #define DAC_SR_DMAUDR1 ((uint32_t)0x00002000) /*!< DAC channel1 DMA underrun flag */
5082 #define DAC_SR_DMAUDR2 ((uint32_t)0x20000000) /*!< DAC channel2 DMA underrun flag */
5083
5084 /******************************************************************************/
5085 /* */
5086 /* Debug MCU (DBGMCU) */
5087 /* */
5088 /******************************************************************************/
5089 /******************** Bit definition for DBGMCU_IDCODE register *************/
5090 #define DBGMCU_IDCODE_DEV_ID ((uint32_t)0x00000FFF)
5091 #define DBGMCU_IDCODE_REV_ID ((uint32_t)0xFFFF0000)
5092
5093 /******************** Bit definition for DBGMCU_CR register *****************/
5094 #define DBGMCU_CR_DBG_SLEEP ((uint32_t)0x00000001)
5095 #define DBGMCU_CR_DBG_STOP ((uint32_t)0x00000002)
5096 #define DBGMCU_CR_DBG_STANDBY ((uint32_t)0x00000004)
5097 #define DBGMCU_CR_TRACE_IOEN ((uint32_t)0x00000020)
5098
5099 #define DBGMCU_CR_TRACE_MODE ((uint32_t)0x000000C0)
5100 #define DBGMCU_CR_TRACE_MODE_0 ((uint32_t)0x00000040)/*!<Bit 0 */
5101 #define DBGMCU_CR_TRACE_MODE_1 ((uint32_t)0x00000080)/*!<Bit 1 */
5102
5103 /******************** Bit definition for DBGMCU_APB1_FZ register ************/
5104 #define DBGMCU_APB1_FZ_DBG_TIM2_STOP ((uint32_t)0x00000001)
5105 #define DBGMCU_APB1_FZ_DBG_TIM3_STOP ((uint32_t)0x00000002)
5106 #define DBGMCU_APB1_FZ_DBG_TIM4_STOP ((uint32_t)0x00000004)
5107 #define DBGMCU_APB1_FZ_DBG_TIM6_STOP ((uint32_t)0x00000010)
5108 #define DBGMCU_APB1_FZ_DBG_TIM7_STOP ((uint32_t)0x00000020)
5109 #define DBGMCU_APB1_FZ_DBG_RTC_STOP ((uint32_t)0x00000400)
5110 #define DBGMCU_APB1_FZ_DBG_WWDG_STOP ((uint32_t)0x00000800)
5111 #define DBGMCU_APB1_FZ_DBG_IWDG_STOP ((uint32_t)0x00001000)
5112 #define DBGMCU_APB1_FZ_DBG_I2C1_SMBUS_TIMEOUT ((uint32_t)0x00200000)
5113 #define DBGMCU_APB1_FZ_DBG_I2C2_SMBUS_TIMEOUT ((uint32_t)0x00400000)
5114 #define DBGMCU_APB1_FZ_DBG_CAN1_STOP ((uint32_t)0x02000000)
5115
5116 /******************** Bit definition for DBGMCU_APB2_FZ register ************/
5117 #define DBGMCU_APB2_FZ_DBG_TIM1_STOP ((uint32_t)0x00000001)
5118 #define DBGMCU_APB2_FZ_DBG_TIM8_STOP ((uint32_t)0x00000002)
5119 #define DBGMCU_APB2_FZ_DBG_TIM15_STOP ((uint32_t)0x00000004)
5120 #define DBGMCU_APB2_FZ_DBG_TIM16_STOP ((uint32_t)0x00000008)
5121 #define DBGMCU_APB2_FZ_DBG_TIM17_STOP ((uint32_t)0x00000010)
5122
5123 /******************************************************************************/
5124 /* */
5125 /* DMA Controller (DMA) */
5126 /* */
5127 /******************************************************************************/
5128 /******************* Bit definition for DMA_ISR register ********************/
5129 #define DMA_ISR_GIF1 ((uint32_t)0x00000001) /*!< Channel 1 Global interrupt flag */
5130 #define DMA_ISR_TCIF1 ((uint32_t)0x00000002) /*!< Channel 1 Transfer Complete flag */
5131 #define DMA_ISR_HTIF1 ((uint32_t)0x00000004) /*!< Channel 1 Half Transfer flag */
5132 #define DMA_ISR_TEIF1 ((uint32_t)0x00000008) /*!< Channel 1 Transfer Error flag */
5133 #define DMA_ISR_GIF2 ((uint32_t)0x00000010) /*!< Channel 2 Global interrupt flag */
5134 #define DMA_ISR_TCIF2 ((uint32_t)0x00000020) /*!< Channel 2 Transfer Complete flag */
5135 #define DMA_ISR_HTIF2 ((uint32_t)0x00000040) /*!< Channel 2 Half Transfer flag */
5136 #define DMA_ISR_TEIF2 ((uint32_t)0x00000080) /*!< Channel 2 Transfer Error flag */
5137 #define DMA_ISR_GIF3 ((uint32_t)0x00000100) /*!< Channel 3 Global interrupt flag */
5138 #define DMA_ISR_TCIF3 ((uint32_t)0x00000200) /*!< Channel 3 Transfer Complete flag */
5139 #define DMA_ISR_HTIF3 ((uint32_t)0x00000400) /*!< Channel 3 Half Transfer flag */
5140 #define DMA_ISR_TEIF3 ((uint32_t)0x00000800) /*!< Channel 3 Transfer Error flag */
5141 #define DMA_ISR_GIF4 ((uint32_t)0x00001000) /*!< Channel 4 Global interrupt flag */
5142 #define DMA_ISR_TCIF4 ((uint32_t)0x00002000) /*!< Channel 4 Transfer Complete flag */
5143 #define DMA_ISR_HTIF4 ((uint32_t)0x00004000) /*!< Channel 4 Half Transfer flag */
5144 #define DMA_ISR_TEIF4 ((uint32_t)0x00008000) /*!< Channel 4 Transfer Error flag */
5145 #define DMA_ISR_GIF5 ((uint32_t)0x00010000) /*!< Channel 5 Global interrupt flag */
5146 #define DMA_ISR_TCIF5 ((uint32_t)0x00020000) /*!< Channel 5 Transfer Complete flag */
5147 #define DMA_ISR_HTIF5 ((uint32_t)0x00040000) /*!< Channel 5 Half Transfer flag */
5148 #define DMA_ISR_TEIF5 ((uint32_t)0x00080000) /*!< Channel 5 Transfer Error flag */
5149 #define DMA_ISR_GIF6 ((uint32_t)0x00100000) /*!< Channel 6 Global interrupt flag */
5150 #define DMA_ISR_TCIF6 ((uint32_t)0x00200000) /*!< Channel 6 Transfer Complete flag */
5151 #define DMA_ISR_HTIF6 ((uint32_t)0x00400000) /*!< Channel 6 Half Transfer flag */
5152 #define DMA_ISR_TEIF6 ((uint32_t)0x00800000) /*!< Channel 6 Transfer Error flag */
5153 #define DMA_ISR_GIF7 ((uint32_t)0x01000000) /*!< Channel 7 Global interrupt flag */
5154 #define DMA_ISR_TCIF7 ((uint32_t)0x02000000) /*!< Channel 7 Transfer Complete flag */
5155 #define DMA_ISR_HTIF7 ((uint32_t)0x04000000) /*!< Channel 7 Half Transfer flag */
5156 #define DMA_ISR_TEIF7 ((uint32_t)0x08000000) /*!< Channel 7 Transfer Error flag */
5157
5158 /******************* Bit definition for DMA_IFCR register *******************/
5159 #define DMA_IFCR_CGIF1 ((uint32_t)0x00000001) /*!< Channel 1 Global interrupt clear */
5160 #define DMA_IFCR_CTCIF1 ((uint32_t)0x00000002) /*!< Channel 1 Transfer Complete clear */
5161 #define DMA_IFCR_CHTIF1 ((uint32_t)0x00000004) /*!< Channel 1 Half Transfer clear */
5162 #define DMA_IFCR_CTEIF1 ((uint32_t)0x00000008) /*!< Channel 1 Transfer Error clear */
5163 #define DMA_IFCR_CGIF2 ((uint32_t)0x00000010) /*!< Channel 2 Global interrupt clear */
5164 #define DMA_IFCR_CTCIF2 ((uint32_t)0x00000020) /*!< Channel 2 Transfer Complete clear */
5165 #define DMA_IFCR_CHTIF2 ((uint32_t)0x00000040) /*!< Channel 2 Half Transfer clear */
5166 #define DMA_IFCR_CTEIF2 ((uint32_t)0x00000080) /*!< Channel 2 Transfer Error clear */
5167 #define DMA_IFCR_CGIF3 ((uint32_t)0x00000100) /*!< Channel 3 Global interrupt clear */
5168 #define DMA_IFCR_CTCIF3 ((uint32_t)0x00000200) /*!< Channel 3 Transfer Complete clear */
5169 #define DMA_IFCR_CHTIF3 ((uint32_t)0x00000400) /*!< Channel 3 Half Transfer clear */
5170 #define DMA_IFCR_CTEIF3 ((uint32_t)0x00000800) /*!< Channel 3 Transfer Error clear */
5171 #define DMA_IFCR_CGIF4 ((uint32_t)0x00001000) /*!< Channel 4 Global interrupt clear */
5172 #define DMA_IFCR_CTCIF4 ((uint32_t)0x00002000) /*!< Channel 4 Transfer Complete clear */
5173 #define DMA_IFCR_CHTIF4 ((uint32_t)0x00004000) /*!< Channel 4 Half Transfer clear */
5174 #define DMA_IFCR_CTEIF4 ((uint32_t)0x00008000) /*!< Channel 4 Transfer Error clear */
5175 #define DMA_IFCR_CGIF5 ((uint32_t)0x00010000) /*!< Channel 5 Global interrupt clear */
5176 #define DMA_IFCR_CTCIF5 ((uint32_t)0x00020000) /*!< Channel 5 Transfer Complete clear */
5177 #define DMA_IFCR_CHTIF5 ((uint32_t)0x00040000) /*!< Channel 5 Half Transfer clear */
5178 #define DMA_IFCR_CTEIF5 ((uint32_t)0x00080000) /*!< Channel 5 Transfer Error clear */
5179 #define DMA_IFCR_CGIF6 ((uint32_t)0x00100000) /*!< Channel 6 Global interrupt clear */
5180 #define DMA_IFCR_CTCIF6 ((uint32_t)0x00200000) /*!< Channel 6 Transfer Complete clear */
5181 #define DMA_IFCR_CHTIF6 ((uint32_t)0x00400000) /*!< Channel 6 Half Transfer clear */
5182 #define DMA_IFCR_CTEIF6 ((uint32_t)0x00800000) /*!< Channel 6 Transfer Error clear */
5183 #define DMA_IFCR_CGIF7 ((uint32_t)0x01000000) /*!< Channel 7 Global interrupt clear */
5184 #define DMA_IFCR_CTCIF7 ((uint32_t)0x02000000) /*!< Channel 7 Transfer Complete clear */
5185 #define DMA_IFCR_CHTIF7 ((uint32_t)0x04000000) /*!< Channel 7 Half Transfer clear */
5186 #define DMA_IFCR_CTEIF7 ((uint32_t)0x08000000) /*!< Channel 7 Transfer Error clear */
5187
5188 /******************* Bit definition for DMA_CCR register ********************/
5189 #define DMA_CCR_EN ((uint32_t)0x00000001) /*!< Channel enable */
5190 #define DMA_CCR_TCIE ((uint32_t)0x00000002) /*!< Transfer complete interrupt enable */
5191 #define DMA_CCR_HTIE ((uint32_t)0x00000004) /*!< Half Transfer interrupt enable */
5192 #define DMA_CCR_TEIE ((uint32_t)0x00000008) /*!< Transfer error interrupt enable */
5193 #define DMA_CCR_DIR ((uint32_t)0x00000010) /*!< Data transfer direction */
5194 #define DMA_CCR_CIRC ((uint32_t)0x00000020) /*!< Circular mode */
5195 #define DMA_CCR_PINC ((uint32_t)0x00000040) /*!< Peripheral increment mode */
5196 #define DMA_CCR_MINC ((uint32_t)0x00000080) /*!< Memory increment mode */
5197
5198 #define DMA_CCR_PSIZE ((uint32_t)0x00000300) /*!< PSIZE[1:0] bits (Peripheral size) */
5199 #define DMA_CCR_PSIZE_0 ((uint32_t)0x00000100) /*!< Bit 0 */
5200 #define DMA_CCR_PSIZE_1 ((uint32_t)0x00000200) /*!< Bit 1 */
5201
5202 #define DMA_CCR_MSIZE ((uint32_t)0x00000C00) /*!< MSIZE[1:0] bits (Memory size) */
5203 #define DMA_CCR_MSIZE_0 ((uint32_t)0x00000400) /*!< Bit 0 */
5204 #define DMA_CCR_MSIZE_1 ((uint32_t)0x00000800) /*!< Bit 1 */
5205
5206 #define DMA_CCR_PL ((uint32_t)0x00003000) /*!< PL[1:0] bits(Channel Priority level)*/
5207 #define DMA_CCR_PL_0 ((uint32_t)0x00001000) /*!< Bit 0 */
5208 #define DMA_CCR_PL_1 ((uint32_t)0x00002000) /*!< Bit 1 */
5209
5210 #define DMA_CCR_MEM2MEM ((uint32_t)0x00004000) /*!< Memory to memory mode */
5211
5212 /****************** Bit definition for DMA_CNDTR register *******************/
5213 #define DMA_CNDTR_NDT ((uint32_t)0x0000FFFF) /*!< Number of data to Transfer */
5214
5215 /****************** Bit definition for DMA_CPAR register ********************/
5216 #define DMA_CPAR_PA ((uint32_t)0xFFFFFFFF) /*!< Peripheral Address */
5217
5218 /****************** Bit definition for DMA_CMAR register ********************/
5219 #define DMA_CMAR_MA ((uint32_t)0xFFFFFFFF) /*!< Memory Address */
5220
5221 /******************************************************************************/
5222 /* */
5223 /* External Interrupt/Event Controller (EXTI) */
5224 /* */
5225 /******************************************************************************/
5226 /******************* Bit definition for EXTI_IMR register *******************/
5227 #define EXTI_IMR_MR0 ((uint32_t)0x00000001) /*!< Interrupt Mask on line 0 */
5228 #define EXTI_IMR_MR1 ((uint32_t)0x00000002) /*!< Interrupt Mask on line 1 */
5229 #define EXTI_IMR_MR2 ((uint32_t)0x00000004) /*!< Interrupt Mask on line 2 */
5230 #define EXTI_IMR_MR3 ((uint32_t)0x00000008) /*!< Interrupt Mask on line 3 */
5231 #define EXTI_IMR_MR4 ((uint32_t)0x00000010) /*!< Interrupt Mask on line 4 */
5232 #define EXTI_IMR_MR5 ((uint32_t)0x00000020) /*!< Interrupt Mask on line 5 */
5233 #define EXTI_IMR_MR6 ((uint32_t)0x00000040) /*!< Interrupt Mask on line 6 */
5234 #define EXTI_IMR_MR7 ((uint32_t)0x00000080) /*!< Interrupt Mask on line 7 */
5235 #define EXTI_IMR_MR8 ((uint32_t)0x00000100) /*!< Interrupt Mask on line 8 */
5236 #define EXTI_IMR_MR9 ((uint32_t)0x00000200) /*!< Interrupt Mask on line 9 */
5237 #define EXTI_IMR_MR10 ((uint32_t)0x00000400) /*!< Interrupt Mask on line 10 */
5238 #define EXTI_IMR_MR11 ((uint32_t)0x00000800) /*!< Interrupt Mask on line 11 */
5239 #define EXTI_IMR_MR12 ((uint32_t)0x00001000) /*!< Interrupt Mask on line 12 */
5240 #define EXTI_IMR_MR13 ((uint32_t)0x00002000) /*!< Interrupt Mask on line 13 */
5241 #define EXTI_IMR_MR14 ((uint32_t)0x00004000) /*!< Interrupt Mask on line 14 */
5242 #define EXTI_IMR_MR15 ((uint32_t)0x00008000) /*!< Interrupt Mask on line 15 */
5243 #define EXTI_IMR_MR16 ((uint32_t)0x00010000) /*!< Interrupt Mask on line 16 */
5244 #define EXTI_IMR_MR17 ((uint32_t)0x00020000) /*!< Interrupt Mask on line 17 */
5245 #define EXTI_IMR_MR18 ((uint32_t)0x00040000) /*!< Interrupt Mask on line 18 */
5246 #define EXTI_IMR_MR19 ((uint32_t)0x00080000) /*!< Interrupt Mask on line 19 */
5247 #define EXTI_IMR_MR20 ((uint32_t)0x00100000) /*!< Interrupt Mask on line 20 */
5248 #define EXTI_IMR_MR21 ((uint32_t)0x00200000) /*!< Interrupt Mask on line 21 */
5249 #define EXTI_IMR_MR22 ((uint32_t)0x00400000) /*!< Interrupt Mask on line 22 */
5250 #define EXTI_IMR_MR23 ((uint32_t)0x00800000) /*!< Interrupt Mask on line 23 */
5251 #define EXTI_IMR_MR24 ((uint32_t)0x01000000) /*!< Interrupt Mask on line 24 */
5252 #define EXTI_IMR_MR25 ((uint32_t)0x02000000) /*!< Interrupt Mask on line 25 */
5253 #define EXTI_IMR_MR26 ((uint32_t)0x04000000) /*!< Interrupt Mask on line 26 */
5254 #define EXTI_IMR_MR27 ((uint32_t)0x08000000) /*!< Interrupt Mask on line 27 */
5255 #define EXTI_IMR_MR28 ((uint32_t)0x10000000) /*!< Interrupt Mask on line 28 */
5256
5257 /******************* Bit definition for EXTI_EMR register *******************/
5258 #define EXTI_EMR_MR0 ((uint32_t)0x00000001) /*!< Event Mask on line 0 */
5259 #define EXTI_EMR_MR1 ((uint32_t)0x00000002) /*!< Event Mask on line 1 */
5260 #define EXTI_EMR_MR2 ((uint32_t)0x00000004) /*!< Event Mask on line 2 */
5261 #define EXTI_EMR_MR3 ((uint32_t)0x00000008) /*!< Event Mask on line 3 */
5262 #define EXTI_EMR_MR4 ((uint32_t)0x00000010) /*!< Event Mask on line 4 */
5263 #define EXTI_EMR_MR5 ((uint32_t)0x00000020) /*!< Event Mask on line 5 */
5264 #define EXTI_EMR_MR6 ((uint32_t)0x00000040) /*!< Event Mask on line 6 */
5265 #define EXTI_EMR_MR7 ((uint32_t)0x00000080) /*!< Event Mask on line 7 */
5266 #define EXTI_EMR_MR8 ((uint32_t)0x00000100) /*!< Event Mask on line 8 */
5267 #define EXTI_EMR_MR9 ((uint32_t)0x00000200) /*!< Event Mask on line 9 */
5268 #define EXTI_EMR_MR10 ((uint32_t)0x00000400) /*!< Event Mask on line 10 */
5269 #define EXTI_EMR_MR11 ((uint32_t)0x00000800) /*!< Event Mask on line 11 */
5270 #define EXTI_EMR_MR12 ((uint32_t)0x00001000) /*!< Event Mask on line 12 */
5271 #define EXTI_EMR_MR13 ((uint32_t)0x00002000) /*!< Event Mask on line 13 */
5272 #define EXTI_EMR_MR14 ((uint32_t)0x00004000) /*!< Event Mask on line 14 */
5273 #define EXTI_EMR_MR15 ((uint32_t)0x00008000) /*!< Event Mask on line 15 */
5274 #define EXTI_EMR_MR16 ((uint32_t)0x00010000) /*!< Event Mask on line 16 */
5275 #define EXTI_EMR_MR17 ((uint32_t)0x00020000) /*!< Event Mask on line 17 */
5276 #define EXTI_EMR_MR18 ((uint32_t)0x00040000) /*!< Event Mask on line 18 */
5277 #define EXTI_EMR_MR19 ((uint32_t)0x00080000) /*!< Event Mask on line 19 */
5278 #define EXTI_EMR_MR20 ((uint32_t)0x00100000) /*!< Event Mask on line 20 */
5279 #define EXTI_EMR_MR21 ((uint32_t)0x00200000) /*!< Event Mask on line 21 */
5280 #define EXTI_EMR_MR22 ((uint32_t)0x00400000) /*!< Event Mask on line 22 */
5281 #define EXTI_EMR_MR23 ((uint32_t)0x00800000) /*!< Event Mask on line 23 */
5282 #define EXTI_EMR_MR24 ((uint32_t)0x01000000) /*!< Event Mask on line 24 */
5283 #define EXTI_EMR_MR25 ((uint32_t)0x02000000) /*!< Event Mask on line 25 */
5284 #define EXTI_EMR_MR26 ((uint32_t)0x04000000) /*!< Event Mask on line 26 */
5285 #define EXTI_EMR_MR27 ((uint32_t)0x08000000) /*!< Event Mask on line 27 */
5286 #define EXTI_EMR_MR28 ((uint32_t)0x10000000) /*!< Event Mask on line 28 */
5287
5288 /****************** Bit definition for EXTI_RTSR register *******************/
5289 #define EXTI_RTSR_TR0 ((uint32_t)0x00000001) /*!< Rising trigger event configuration bit of line 0 */
5290 #define EXTI_RTSR_TR1 ((uint32_t)0x00000002) /*!< Rising trigger event configuration bit of line 1 */
5291 #define EXTI_RTSR_TR2 ((uint32_t)0x00000004) /*!< Rising trigger event configuration bit of line 2 */
5292 #define EXTI_RTSR_TR3 ((uint32_t)0x00000008) /*!< Rising trigger event configuration bit of line 3 */
5293 #define EXTI_RTSR_TR4 ((uint32_t)0x00000010) /*!< Rising trigger event configuration bit of line 4 */
5294 #define EXTI_RTSR_TR5 ((uint32_t)0x00000020) /*!< Rising trigger event configuration bit of line 5 */
5295 #define EXTI_RTSR_TR6 ((uint32_t)0x00000040) /*!< Rising trigger event configuration bit of line 6 */
5296 #define EXTI_RTSR_TR7 ((uint32_t)0x00000080) /*!< Rising trigger event configuration bit of line 7 */
5297 #define EXTI_RTSR_TR8 ((uint32_t)0x00000100) /*!< Rising trigger event configuration bit of line 8 */
5298 #define EXTI_RTSR_TR9 ((uint32_t)0x00000200) /*!< Rising trigger event configuration bit of line 9 */
5299 #define EXTI_RTSR_TR10 ((uint32_t)0x00000400) /*!< Rising trigger event configuration bit of line 10 */
5300 #define EXTI_RTSR_TR11 ((uint32_t)0x00000800) /*!< Rising trigger event configuration bit of line 11 */
5301 #define EXTI_RTSR_TR12 ((uint32_t)0x00001000) /*!< Rising trigger event configuration bit of line 12 */
5302 #define EXTI_RTSR_TR13 ((uint32_t)0x00002000) /*!< Rising trigger event configuration bit of line 13 */
5303 #define EXTI_RTSR_TR14 ((uint32_t)0x00004000) /*!< Rising trigger event configuration bit of line 14 */
5304 #define EXTI_RTSR_TR15 ((uint32_t)0x00008000) /*!< Rising trigger event configuration bit of line 15 */
5305 #define EXTI_RTSR_TR16 ((uint32_t)0x00010000) /*!< Rising trigger event configuration bit of line 16 */
5306 #define EXTI_RTSR_TR17 ((uint32_t)0x00020000) /*!< Rising trigger event configuration bit of line 17 */
5307 #define EXTI_RTSR_TR18 ((uint32_t)0x00040000) /*!< Rising trigger event configuration bit of line 18 */
5308 #define EXTI_RTSR_TR19 ((uint32_t)0x00080000) /*!< Rising trigger event configuration bit of line 19 */
5309 #define EXTI_RTSR_TR20 ((uint32_t)0x00100000) /*!< Rising trigger event configuration bit of line 20 */
5310 #define EXTI_RTSR_TR21 ((uint32_t)0x00200000) /*!< Rising trigger event configuration bit of line 21 */
5311 #define EXTI_RTSR_TR22 ((uint32_t)0x00400000) /*!< Rising trigger event configuration bit of line 22 */
5312 #define EXTI_RTSR_TR23 ((uint32_t)0x00800000) /*!< Rising trigger event configuration bit of line 23 */
5313 #define EXTI_RTSR_TR24 ((uint32_t)0x01000000) /*!< Rising trigger event configuration bit of line 24 */
5314 #define EXTI_RTSR_TR25 ((uint32_t)0x02000000) /*!< Rising trigger event configuration bit of line 25 */
5315 #define EXTI_RTSR_TR26 ((uint32_t)0x04000000) /*!< Rising trigger event configuration bit of line 26 */
5316 #define EXTI_RTSR_TR27 ((uint32_t)0x08000000) /*!< Rising trigger event configuration bit of line 27 */
5317 #define EXTI_RTSR_TR28 ((uint32_t)0x10000000) /*!< Rising trigger event configuration bit of line 28 */
5318
5319 /****************** Bit definition for EXTI_FTSR register *******************/
5320 #define EXTI_FTSR_TR0 ((uint32_t)0x00000001) /*!< Falling trigger event configuration bit of line 0 */
5321 #define EXTI_FTSR_TR1 ((uint32_t)0x00000002) /*!< Falling trigger event configuration bit of line 1 */
5322 #define EXTI_FTSR_TR2 ((uint32_t)0x00000004) /*!< Falling trigger event configuration bit of line 2 */
5323 #define EXTI_FTSR_TR3 ((uint32_t)0x00000008) /*!< Falling trigger event configuration bit of line 3 */
5324 #define EXTI_FTSR_TR4 ((uint32_t)0x00000010) /*!< Falling trigger event configuration bit of line 4 */
5325 #define EXTI_FTSR_TR5 ((uint32_t)0x00000020) /*!< Falling trigger event configuration bit of line 5 */
5326 #define EXTI_FTSR_TR6 ((uint32_t)0x00000040) /*!< Falling trigger event configuration bit of line 6 */
5327 #define EXTI_FTSR_TR7 ((uint32_t)0x00000080) /*!< Falling trigger event configuration bit of line 7 */
5328 #define EXTI_FTSR_TR8 ((uint32_t)0x00000100) /*!< Falling trigger event configuration bit of line 8 */
5329 #define EXTI_FTSR_TR9 ((uint32_t)0x00000200) /*!< Falling trigger event configuration bit of line 9 */
5330 #define EXTI_FTSR_TR10 ((uint32_t)0x00000400) /*!< Falling trigger event configuration bit of line 10 */
5331 #define EXTI_FTSR_TR11 ((uint32_t)0x00000800) /*!< Falling trigger event configuration bit of line 11 */
5332 #define EXTI_FTSR_TR12 ((uint32_t)0x00001000) /*!< Falling trigger event configuration bit of line 12 */
5333 #define EXTI_FTSR_TR13 ((uint32_t)0x00002000) /*!< Falling trigger event configuration bit of line 13 */
5334 #define EXTI_FTSR_TR14 ((uint32_t)0x00004000) /*!< Falling trigger event configuration bit of line 14 */
5335 #define EXTI_FTSR_TR15 ((uint32_t)0x00008000) /*!< Falling trigger event configuration bit of line 15 */
5336 #define EXTI_FTSR_TR16 ((uint32_t)0x00010000) /*!< Falling trigger event configuration bit of line 16 */
5337 #define EXTI_FTSR_TR17 ((uint32_t)0x00020000) /*!< Falling trigger event configuration bit of line 17 */
5338 #define EXTI_FTSR_TR18 ((uint32_t)0x00040000) /*!< Falling trigger event configuration bit of line 18 */
5339 #define EXTI_FTSR_TR19 ((uint32_t)0x00080000) /*!< Falling trigger event configuration bit of line 19 */
5340 #define EXTI_FTSR_TR20 ((uint32_t)0x00100000) /*!< Falling trigger event configuration bit of line 20 */
5341 #define EXTI_FTSR_TR21 ((uint32_t)0x00200000) /*!< Falling trigger event configuration bit of line 21 */
5342 #define EXTI_FTSR_TR22 ((uint32_t)0x00400000) /*!< Falling trigger event configuration bit of line 22 */
5343 #define EXTI_FTSR_TR23 ((uint32_t)0x00800000) /*!< Falling trigger event configuration bit of line 23 */
5344 #define EXTI_FTSR_TR24 ((uint32_t)0x01000000) /*!< Falling trigger event configuration bit of line 24 */
5345 #define EXTI_FTSR_TR25 ((uint32_t)0x02000000) /*!< Falling trigger event configuration bit of line 25 */
5346 #define EXTI_FTSR_TR26 ((uint32_t)0x04000000) /*!< Falling trigger event configuration bit of line 26 */
5347 #define EXTI_FTSR_TR27 ((uint32_t)0x08000000) /*!< Falling trigger event configuration bit of line 27 */
5348 #define EXTI_FTSR_TR28 ((uint32_t)0x10000000) /*!< Falling trigger event configuration bit of line 28 */
5349
5350 /****************** Bit definition for EXTI_SWIER register ******************/
5351 #define EXTI_SWIER_SWIER0 ((uint32_t)0x00000001) /*!< Software Interrupt on line 0 */
5352 #define EXTI_SWIER_SWIER1 ((uint32_t)0x00000002) /*!< Software Interrupt on line 1 */
5353 #define EXTI_SWIER_SWIER2 ((uint32_t)0x00000004) /*!< Software Interrupt on line 2 */
5354 #define EXTI_SWIER_SWIER3 ((uint32_t)0x00000008) /*!< Software Interrupt on line 3 */
5355 #define EXTI_SWIER_SWIER4 ((uint32_t)0x00000010) /*!< Software Interrupt on line 4 */
5356 #define EXTI_SWIER_SWIER5 ((uint32_t)0x00000020) /*!< Software Interrupt on line 5 */
5357 #define EXTI_SWIER_SWIER6 ((uint32_t)0x00000040) /*!< Software Interrupt on line 6 */
5358 #define EXTI_SWIER_SWIER7 ((uint32_t)0x00000080) /*!< Software Interrupt on line 7 */
5359 #define EXTI_SWIER_SWIER8 ((uint32_t)0x00000100) /*!< Software Interrupt on line 8 */
5360 #define EXTI_SWIER_SWIER9 ((uint32_t)0x00000200) /*!< Software Interrupt on line 9 */
5361 #define EXTI_SWIER_SWIER10 ((uint32_t)0x00000400) /*!< Software Interrupt on line 10 */
5362 #define EXTI_SWIER_SWIER11 ((uint32_t)0x00000800) /*!< Software Interrupt on line 11 */
5363 #define EXTI_SWIER_SWIER12 ((uint32_t)0x00001000) /*!< Software Interrupt on line 12 */
5364 #define EXTI_SWIER_SWIER13 ((uint32_t)0x00002000) /*!< Software Interrupt on line 13 */
5365 #define EXTI_SWIER_SWIER14 ((uint32_t)0x00004000) /*!< Software Interrupt on line 14 */
5366 #define EXTI_SWIER_SWIER15 ((uint32_t)0x00008000) /*!< Software Interrupt on line 15 */
5367 #define EXTI_SWIER_SWIER16 ((uint32_t)0x00010000) /*!< Software Interrupt on line 16 */
5368 #define EXTI_SWIER_SWIER17 ((uint32_t)0x00020000) /*!< Software Interrupt on line 17 */
5369 #define EXTI_SWIER_SWIER18 ((uint32_t)0x00040000) /*!< Software Interrupt on line 18 */
5370 #define EXTI_SWIER_SWIER19 ((uint32_t)0x00080000) /*!< Software Interrupt on line 19 */
5371 #define EXTI_SWIER_SWIER20 ((uint32_t)0x00100000) /*!< Software Interrupt on line 20 */
5372 #define EXTI_SWIER_SWIER21 ((uint32_t)0x00200000) /*!< Software Interrupt on line 21 */
5373 #define EXTI_SWIER_SWIER22 ((uint32_t)0x00400000) /*!< Software Interrupt on line 22 */
5374 #define EXTI_SWIER_SWIER23 ((uint32_t)0x00800000) /*!< Software Interrupt on line 23 */
5375 #define EXTI_SWIER_SWIER24 ((uint32_t)0x01000000) /*!< Software Interrupt on line 24 */
5376 #define EXTI_SWIER_SWIER25 ((uint32_t)0x02000000) /*!< Software Interrupt on line 25 */
5377 #define EXTI_SWIER_SWIER26 ((uint32_t)0x04000000) /*!< Software Interrupt on line 26 */
5378 #define EXTI_SWIER_SWIER27 ((uint32_t)0x08000000) /*!< Software Interrupt on line 27 */
5379 #define EXTI_SWIER_SWIER28 ((uint32_t)0x10000000) /*!< Software Interrupt on line 28 */
5380
5381 /******************* Bit definition for EXTI_PR register ********************/
5382 #define EXTI_PR_PR0 ((uint32_t)0x00000001) /*!< Pending bit for line 0 */
5383 #define EXTI_PR_PR1 ((uint32_t)0x00000002) /*!< Pending bit for line 1 */
5384 #define EXTI_PR_PR2 ((uint32_t)0x00000004) /*!< Pending bit for line 2 */
5385 #define EXTI_PR_PR3 ((uint32_t)0x00000008) /*!< Pending bit for line 3 */
5386 #define EXTI_PR_PR4 ((uint32_t)0x00000010) /*!< Pending bit for line 4 */
5387 #define EXTI_PR_PR5 ((uint32_t)0x00000020) /*!< Pending bit for line 5 */
5388 #define EXTI_PR_PR6 ((uint32_t)0x00000040) /*!< Pending bit for line 6 */
5389 #define EXTI_PR_PR7 ((uint32_t)0x00000080) /*!< Pending bit for line 7 */
5390 #define EXTI_PR_PR8 ((uint32_t)0x00000100) /*!< Pending bit for line 8 */
5391 #define EXTI_PR_PR9 ((uint32_t)0x00000200) /*!< Pending bit for line 9 */
5392 #define EXTI_PR_PR10 ((uint32_t)0x00000400) /*!< Pending bit for line 10 */
5393 #define EXTI_PR_PR11 ((uint32_t)0x00000800) /*!< Pending bit for line 11 */
5394 #define EXTI_PR_PR12 ((uint32_t)0x00001000) /*!< Pending bit for line 12 */
5395 #define EXTI_PR_PR13 ((uint32_t)0x00002000) /*!< Pending bit for line 13 */
5396 #define EXTI_PR_PR14 ((uint32_t)0x00004000) /*!< Pending bit for line 14 */
5397 #define EXTI_PR_PR15 ((uint32_t)0x00008000) /*!< Pending bit for line 15 */
5398 #define EXTI_PR_PR16 ((uint32_t)0x00010000) /*!< Pending bit for line 16 */
5399 #define EXTI_PR_PR17 ((uint32_t)0x00020000) /*!< Pending bit for line 17 */
5400 #define EXTI_PR_PR18 ((uint32_t)0x00040000) /*!< Pending bit for line 18 */
5401 #define EXTI_PR_PR19 ((uint32_t)0x00080000) /*!< Pending bit for line 19 */
5402 #define EXTI_PR_PR20 ((uint32_t)0x00100000) /*!< Pending bit for line 20 */
5403 #define EXTI_PR_PR21 ((uint32_t)0x00200000) /*!< Pending bit for line 21 */
5404 #define EXTI_PR_PR22 ((uint32_t)0x00400000) /*!< Pending bit for line 22 */
5405 #define EXTI_PR_PR23 ((uint32_t)0x00800000) /*!< Pending bit for line 23 */
5406 #define EXTI_PR_PR24 ((uint32_t)0x01000000) /*!< Pending bit for line 24 */
5407 #define EXTI_PR_PR25 ((uint32_t)0x02000000) /*!< Pending bit for line 25 */
5408 #define EXTI_PR_PR26 ((uint32_t)0x04000000) /*!< Pending bit for line 26 */
5409 #define EXTI_PR_PR27 ((uint32_t)0x08000000) /*!< Pending bit for line 27 */
5410 #define EXTI_PR_PR28 ((uint32_t)0x10000000) /*!< Pending bit for line 28 */
5411
5412 /******************************************************************************/
5413 /* */
5414 /* FLASH */
5415 /* */
5416 /******************************************************************************/
5417 /******************* Bit definition for FLASH_ACR register ******************/
5418 #define FLASH_ACR_LATENCY ((uint8_t)0x03) /*!< LATENCY[2:0] bits (Latency) */
5419 #define FLASH_ACR_LATENCY_0 ((uint8_t)0x01) /*!< Bit 0 */
5420 #define FLASH_ACR_LATENCY_1 ((uint8_t)0x02) /*!< Bit 1 */
5421
5422 #define FLASH_ACR_HLFCYA ((uint8_t)0x08) /*!< Flash Half Cycle Access Enable */
5423 #define FLASH_ACR_PRFTBE ((uint8_t)0x10) /*!< Prefetch Buffer Enable */
5424 #define FLASH_ACR_PRFTBS ((uint8_t)0x20)
5425
5426 /****************** Bit definition for FLASH_KEYR register ******************/
5427 #define FLASH_KEYR_FKEYR ((uint32_t)0xFFFFFFFF) /*!< FPEC Key */
5428
5429 #define RDP_KEY ((uint16_t)0x00A5) /*!< RDP Key */
5430 #define FLASH_KEY1 ((uint32_t)0x45670123) /*!< FPEC Key1 */
5431 #define FLASH_KEY2 ((uint32_t)0xCDEF89AB) /*!< FPEC Key2 */
5432
5433 /***************** Bit definition for FLASH_OPTKEYR register ****************/
5434 #define FLASH_OPTKEYR_OPTKEYR ((uint32_t)0xFFFFFFFF) /*!< Option Byte Key */
5435
5436 #define FLASH_OPTKEY1 FLASH_KEY1 /*!< Option Byte Key1 */
5437 #define FLASH_OPTKEY2 FLASH_KEY2 /*!< Option Byte Key2 */
5438
5439 /****************** Bit definition for FLASH_SR register *******************/
5440 #define FLASH_SR_BSY ((uint32_t)0x00000001) /*!< Busy */
5441 #define FLASH_SR_PGERR ((uint32_t)0x00000004) /*!< Programming Error */
5442 #define FLASH_SR_WRPERR ((uint32_t)0x00000010) /*!< Write Protection Error */
5443 #define FLASH_SR_EOP ((uint32_t)0x00000020) /*!< End of operation */
5444
5445 /******************* Bit definition for FLASH_CR register *******************/
5446 #define FLASH_CR_PG ((uint32_t)0x00000001) /*!< Programming */
5447 #define FLASH_CR_PER ((uint32_t)0x00000002) /*!< Page Erase */
5448 #define FLASH_CR_MER ((uint32_t)0x00000004) /*!< Mass Erase */
5449 #define FLASH_CR_OPTPG ((uint32_t)0x00000010) /*!< Option Byte Programming */
5450 #define FLASH_CR_OPTER ((uint32_t)0x00000020) /*!< Option Byte Erase */
5451 #define FLASH_CR_STRT ((uint32_t)0x00000040) /*!< Start */
5452 #define FLASH_CR_LOCK ((uint32_t)0x00000080) /*!< Lock */
5453 #define FLASH_CR_OPTWRE ((uint32_t)0x00000200) /*!< Option Bytes Write Enable */
5454 #define FLASH_CR_ERRIE ((uint32_t)0x00000400) /*!< Error Interrupt Enable */
5455 #define FLASH_CR_EOPIE ((uint32_t)0x00001000) /*!< End of operation interrupt enable */
5456 #define FLASH_CR_OBL_LAUNCH ((uint32_t)0x00002000) /*!< OptionBytes Loader Launch */
5457
5458 /******************* Bit definition for FLASH_AR register *******************/
5459 #define FLASH_AR_FAR ((uint32_t)0xFFFFFFFF) /*!< Flash Address */
5460
5461 /****************** Bit definition for FLASH_OBR register *******************/
5462 #define FLASH_OBR_OPTERR ((uint32_t)0x00000001) /*!< Option Byte Error */
5463 #define FLASH_OBR_RDPRT1 ((uint32_t)0x00000002) /*!< Read protection Level 1 */
5464 #define FLASH_OBR_RDPRT2 ((uint32_t)0x00000004) /*!< Read protection Level 2 */
5465
5466 #define FLASH_OBR_USER ((uint32_t)0x00003700) /*!< User Option Bytes */
5467 #define FLASH_OBR_IWDG_SW ((uint32_t)0x00000100) /*!< IWDG SW */
5468 #define FLASH_OBR_nRST_STOP ((uint32_t)0x00000200) /*!< nRST_STOP */
5469 #define FLASH_OBR_nRST_STDBY ((uint32_t)0x00000400) /*!< nRST_STDBY */
5470
5471 /****************** Bit definition for FLASH_WRPR register ******************/
5472 #define FLASH_WRPR_WRP ((uint32_t)0xFFFFFFFF) /*!< Write Protect */
5473
5474 /*----------------------------------------------------------------------------*/
5475
5476 /****************** Bit definition for OB_RDP register **********************/
5477 #define OB_RDP_RDP ((uint32_t)0x000000FF) /*!< Read protection option byte */
5478 #define OB_RDP_nRDP ((uint32_t)0x0000FF00) /*!< Read protection complemented option byte */
5479
5480 /****************** Bit definition for OB_USER register *********************/
5481 #define OB_USER_USER ((uint32_t)0x00FF0000) /*!< User option byte */
5482 #define OB_USER_nUSER ((uint32_t)0xFF000000) /*!< User complemented option byte */
5483
5484 /****************** Bit definition for FLASH_WRP0 register ******************/
5485 #define OB_WRP0_WRP0 ((uint32_t)0x000000FF) /*!< Flash memory write protection option bytes */
5486 #define OB_WRP0_nWRP0 ((uint32_t)0x0000FF00) /*!< Flash memory write protection complemented option bytes */
5487
5488 /****************** Bit definition for FLASH_WRP1 register ******************/
5489 #define OB_WRP1_WRP1 ((uint32_t)0x00FF0000) /*!< Flash memory write protection option bytes */
5490 #define OB_WRP1_nWRP1 ((uint32_t)0xFF000000) /*!< Flash memory write protection complemented option bytes */
5491
5492 /****************** Bit definition for FLASH_WRP2 register ******************/
5493 #define OB_WRP2_WRP2 ((uint32_t)0x000000FF) /*!< Flash memory write protection option bytes */
5494 #define OB_WRP2_nWRP2 ((uint32_t)0x0000FF00) /*!< Flash memory write protection complemented option bytes */
5495
5496 /****************** Bit definition for FLASH_WRP3 register ******************/
5497 #define OB_WRP3_WRP3 ((uint32_t)0x00FF0000) /*!< Flash memory write protection option bytes */
5498 #define OB_WRP3_nWRP3 ((uint32_t)0xFF000000) /*!< Flash memory write protection complemented option bytes */
5499 /******************************************************************************/
5500 /* */
5501 /* General Purpose I/O (GPIO) */
5502 /* */
5503 /******************************************************************************/
5504 /******************* Bit definition for GPIO_MODER register *****************/
5505 #define GPIO_MODER_MODER0 ((uint32_t)0x00000003)
5506 #define GPIO_MODER_MODER0_0 ((uint32_t)0x00000001)
5507 #define GPIO_MODER_MODER0_1 ((uint32_t)0x00000002)
5508 #define GPIO_MODER_MODER1 ((uint32_t)0x0000000C)
5509 #define GPIO_MODER_MODER1_0 ((uint32_t)0x00000004)
5510 #define GPIO_MODER_MODER1_1 ((uint32_t)0x00000008)
5511 #define GPIO_MODER_MODER2 ((uint32_t)0x00000030)
5512 #define GPIO_MODER_MODER2_0 ((uint32_t)0x00000010)
5513 #define GPIO_MODER_MODER2_1 ((uint32_t)0x00000020)
5514 #define GPIO_MODER_MODER3 ((uint32_t)0x000000C0)
5515 #define GPIO_MODER_MODER3_0 ((uint32_t)0x00000040)
5516 #define GPIO_MODER_MODER3_1 ((uint32_t)0x00000080)
5517 #define GPIO_MODER_MODER4 ((uint32_t)0x00000300)
5518 #define GPIO_MODER_MODER4_0 ((uint32_t)0x00000100)
5519 #define GPIO_MODER_MODER4_1 ((uint32_t)0x00000200)
5520 #define GPIO_MODER_MODER5 ((uint32_t)0x00000C00)
5521 #define GPIO_MODER_MODER5_0 ((uint32_t)0x00000400)
5522 #define GPIO_MODER_MODER5_1 ((uint32_t)0x00000800)
5523 #define GPIO_MODER_MODER6 ((uint32_t)0x00003000)
5524 #define GPIO_MODER_MODER6_0 ((uint32_t)0x00001000)
5525 #define GPIO_MODER_MODER6_1 ((uint32_t)0x00002000)
5526 #define GPIO_MODER_MODER7 ((uint32_t)0x0000C000)
5527 #define GPIO_MODER_MODER7_0 ((uint32_t)0x00004000)
5528 #define GPIO_MODER_MODER7_1 ((uint32_t)0x00008000)
5529 #define GPIO_MODER_MODER8 ((uint32_t)0x00030000)
5530 #define GPIO_MODER_MODER8_0 ((uint32_t)0x00010000)
5531 #define GPIO_MODER_MODER8_1 ((uint32_t)0x00020000)
5532 #define GPIO_MODER_MODER9 ((uint32_t)0x000C0000)
5533 #define GPIO_MODER_MODER9_0 ((uint32_t)0x00040000)
5534 #define GPIO_MODER_MODER9_1 ((uint32_t)0x00080000)
5535 #define GPIO_MODER_MODER10 ((uint32_t)0x00300000)
5536 #define GPIO_MODER_MODER10_0 ((uint32_t)0x00100000)
5537 #define GPIO_MODER_MODER10_1 ((uint32_t)0x00200000)
5538 #define GPIO_MODER_MODER11 ((uint32_t)0x00C00000)
5539 #define GPIO_MODER_MODER11_0 ((uint32_t)0x00400000)
5540 #define GPIO_MODER_MODER11_1 ((uint32_t)0x00800000)
5541 #define GPIO_MODER_MODER12 ((uint32_t)0x03000000)
5542 #define GPIO_MODER_MODER12_0 ((uint32_t)0x01000000)
5543 #define GPIO_MODER_MODER12_1 ((uint32_t)0x02000000)
5544 #define GPIO_MODER_MODER13 ((uint32_t)0x0C000000)
5545 #define GPIO_MODER_MODER13_0 ((uint32_t)0x04000000)
5546 #define GPIO_MODER_MODER13_1 ((uint32_t)0x08000000)
5547 #define GPIO_MODER_MODER14 ((uint32_t)0x30000000)
5548 #define GPIO_MODER_MODER14_0 ((uint32_t)0x10000000)
5549 #define GPIO_MODER_MODER14_1 ((uint32_t)0x20000000)
5550 #define GPIO_MODER_MODER15 ((uint32_t)0xC0000000)
5551 #define GPIO_MODER_MODER15_0 ((uint32_t)0x40000000)
5552 #define GPIO_MODER_MODER15_1 ((uint32_t)0x80000000)
5553
5554
5555 /****************** Bit definition for GPIO_OTYPER register *****************/
5556 #define GPIO_OTYPER_OT_0 ((uint32_t)0x00000001)
5557 #define GPIO_OTYPER_OT_1 ((uint32_t)0x00000002)
5558 #define GPIO_OTYPER_OT_2 ((uint32_t)0x00000004)
5559 #define GPIO_OTYPER_OT_3 ((uint32_t)0x00000008)
5560 #define GPIO_OTYPER_OT_4 ((uint32_t)0x00000010)
5561 #define GPIO_OTYPER_OT_5 ((uint32_t)0x00000020)
5562 #define GPIO_OTYPER_OT_6 ((uint32_t)0x00000040)
5563 #define GPIO_OTYPER_OT_7 ((uint32_t)0x00000080)
5564 #define GPIO_OTYPER_OT_8 ((uint32_t)0x00000100)
5565 #define GPIO_OTYPER_OT_9 ((uint32_t)0x00000200)
5566 #define GPIO_OTYPER_OT_10 ((uint32_t)0x00000400)
5567 #define GPIO_OTYPER_OT_11 ((uint32_t)0x00000800)
5568 #define GPIO_OTYPER_OT_12 ((uint32_t)0x00001000)
5569 #define GPIO_OTYPER_OT_13 ((uint32_t)0x00002000)
5570 #define GPIO_OTYPER_OT_14 ((uint32_t)0x00004000)
5571 #define GPIO_OTYPER_OT_15 ((uint32_t)0x00008000)
5572
5573
5574 /**************** Bit definition for GPIO_OSPEEDR register ******************/
5575 #define GPIO_OSPEEDER_OSPEEDR0 ((uint32_t)0x00000003)
5576 #define GPIO_OSPEEDER_OSPEEDR0_0 ((uint32_t)0x00000001)
5577 #define GPIO_OSPEEDER_OSPEEDR0_1 ((uint32_t)0x00000002)
5578 #define GPIO_OSPEEDER_OSPEEDR1 ((uint32_t)0x0000000C)
5579 #define GPIO_OSPEEDER_OSPEEDR1_0 ((uint32_t)0x00000004)
5580 #define GPIO_OSPEEDER_OSPEEDR1_1 ((uint32_t)0x00000008)
5581 #define GPIO_OSPEEDER_OSPEEDR2 ((uint32_t)0x00000030)
5582 #define GPIO_OSPEEDER_OSPEEDR2_0 ((uint32_t)0x00000010)
5583 #define GPIO_OSPEEDER_OSPEEDR2_1 ((uint32_t)0x00000020)
5584 #define GPIO_OSPEEDER_OSPEEDR3 ((uint32_t)0x000000C0)
5585 #define GPIO_OSPEEDER_OSPEEDR3_0 ((uint32_t)0x00000040)
5586 #define GPIO_OSPEEDER_OSPEEDR3_1 ((uint32_t)0x00000080)
5587 #define GPIO_OSPEEDER_OSPEEDR4 ((uint32_t)0x00000300)
5588 #define GPIO_OSPEEDER_OSPEEDR4_0 ((uint32_t)0x00000100)
5589 #define GPIO_OSPEEDER_OSPEEDR4_1 ((uint32_t)0x00000200)
5590 #define GPIO_OSPEEDER_OSPEEDR5 ((uint32_t)0x00000C00)
5591 #define GPIO_OSPEEDER_OSPEEDR5_0 ((uint32_t)0x00000400)
5592 #define GPIO_OSPEEDER_OSPEEDR5_1 ((uint32_t)0x00000800)
5593 #define GPIO_OSPEEDER_OSPEEDR6 ((uint32_t)0x00003000)
5594 #define GPIO_OSPEEDER_OSPEEDR6_0 ((uint32_t)0x00001000)
5595 #define GPIO_OSPEEDER_OSPEEDR6_1 ((uint32_t)0x00002000)
5596 #define GPIO_OSPEEDER_OSPEEDR7 ((uint32_t)0x0000C000)
5597 #define GPIO_OSPEEDER_OSPEEDR7_0 ((uint32_t)0x00004000)
5598 #define GPIO_OSPEEDER_OSPEEDR7_1 ((uint32_t)0x00008000)
5599 #define GPIO_OSPEEDER_OSPEEDR8 ((uint32_t)0x00030000)
5600 #define GPIO_OSPEEDER_OSPEEDR8_0 ((uint32_t)0x00010000)
5601 #define GPIO_OSPEEDER_OSPEEDR8_1 ((uint32_t)0x00020000)
5602 #define GPIO_OSPEEDER_OSPEEDR9 ((uint32_t)0x000C0000)
5603 #define GPIO_OSPEEDER_OSPEEDR9_0 ((uint32_t)0x00040000)
5604 #define GPIO_OSPEEDER_OSPEEDR9_1 ((uint32_t)0x00080000)
5605 #define GPIO_OSPEEDER_OSPEEDR10 ((uint32_t)0x00300000)
5606 #define GPIO_OSPEEDER_OSPEEDR10_0 ((uint32_t)0x00100000)
5607 #define GPIO_OSPEEDER_OSPEEDR10_1 ((uint32_t)0x00200000)
5608 #define GPIO_OSPEEDER_OSPEEDR11 ((uint32_t)0x00C00000)
5609 #define GPIO_OSPEEDER_OSPEEDR11_0 ((uint32_t)0x00400000)
5610 #define GPIO_OSPEEDER_OSPEEDR11_1 ((uint32_t)0x00800000)
5611 #define GPIO_OSPEEDER_OSPEEDR12 ((uint32_t)0x03000000)
5612 #define GPIO_OSPEEDER_OSPEEDR12_0 ((uint32_t)0x01000000)
5613 #define GPIO_OSPEEDER_OSPEEDR12_1 ((uint32_t)0x02000000)
5614 #define GPIO_OSPEEDER_OSPEEDR13 ((uint32_t)0x0C000000)
5615 #define GPIO_OSPEEDER_OSPEEDR13_0 ((uint32_t)0x04000000)
5616 #define GPIO_OSPEEDER_OSPEEDR13_1 ((uint32_t)0x08000000)
5617 #define GPIO_OSPEEDER_OSPEEDR14 ((uint32_t)0x30000000)
5618 #define GPIO_OSPEEDER_OSPEEDR14_0 ((uint32_t)0x10000000)
5619 #define GPIO_OSPEEDER_OSPEEDR14_1 ((uint32_t)0x20000000)
5620 #define GPIO_OSPEEDER_OSPEEDR15 ((uint32_t)0xC0000000)
5621 #define GPIO_OSPEEDER_OSPEEDR15_0 ((uint32_t)0x40000000)
5622 #define GPIO_OSPEEDER_OSPEEDR15_1 ((uint32_t)0x80000000)
5623
5624 /******************* Bit definition for GPIO_PUPDR register ******************/
5625 #define GPIO_PUPDR_PUPDR0 ((uint32_t)0x00000003)
5626 #define GPIO_PUPDR_PUPDR0_0 ((uint32_t)0x00000001)
5627 #define GPIO_PUPDR_PUPDR0_1 ((uint32_t)0x00000002)
5628 #define GPIO_PUPDR_PUPDR1 ((uint32_t)0x0000000C)
5629 #define GPIO_PUPDR_PUPDR1_0 ((uint32_t)0x00000004)
5630 #define GPIO_PUPDR_PUPDR1_1 ((uint32_t)0x00000008)
5631 #define GPIO_PUPDR_PUPDR2 ((uint32_t)0x00000030)
5632 #define GPIO_PUPDR_PUPDR2_0 ((uint32_t)0x00000010)
5633 #define GPIO_PUPDR_PUPDR2_1 ((uint32_t)0x00000020)
5634 #define GPIO_PUPDR_PUPDR3 ((uint32_t)0x000000C0)
5635 #define GPIO_PUPDR_PUPDR3_0 ((uint32_t)0x00000040)
5636 #define GPIO_PUPDR_PUPDR3_1 ((uint32_t)0x00000080)
5637 #define GPIO_PUPDR_PUPDR4 ((uint32_t)0x00000300)
5638 #define GPIO_PUPDR_PUPDR4_0 ((uint32_t)0x00000100)
5639 #define GPIO_PUPDR_PUPDR4_1 ((uint32_t)0x00000200)
5640 #define GPIO_PUPDR_PUPDR5 ((uint32_t)0x00000C00)
5641 #define GPIO_PUPDR_PUPDR5_0 ((uint32_t)0x00000400)
5642 #define GPIO_PUPDR_PUPDR5_1 ((uint32_t)0x00000800)
5643 #define GPIO_PUPDR_PUPDR6 ((uint32_t)0x00003000)
5644 #define GPIO_PUPDR_PUPDR6_0 ((uint32_t)0x00001000)
5645 #define GPIO_PUPDR_PUPDR6_1 ((uint32_t)0x00002000)
5646 #define GPIO_PUPDR_PUPDR7 ((uint32_t)0x0000C000)
5647 #define GPIO_PUPDR_PUPDR7_0 ((uint32_t)0x00004000)
5648 #define GPIO_PUPDR_PUPDR7_1 ((uint32_t)0x00008000)
5649 #define GPIO_PUPDR_PUPDR8 ((uint32_t)0x00030000)
5650 #define GPIO_PUPDR_PUPDR8_0 ((uint32_t)0x00010000)
5651 #define GPIO_PUPDR_PUPDR8_1 ((uint32_t)0x00020000)
5652 #define GPIO_PUPDR_PUPDR9 ((uint32_t)0x000C0000)
5653 #define GPIO_PUPDR_PUPDR9_0 ((uint32_t)0x00040000)
5654 #define GPIO_PUPDR_PUPDR9_1 ((uint32_t)0x00080000)
5655 #define GPIO_PUPDR_PUPDR10 ((uint32_t)0x00300000)
5656 #define GPIO_PUPDR_PUPDR10_0 ((uint32_t)0x00100000)
5657 #define GPIO_PUPDR_PUPDR10_1 ((uint32_t)0x00200000)
5658 #define GPIO_PUPDR_PUPDR11 ((uint32_t)0x00C00000)
5659 #define GPIO_PUPDR_PUPDR11_0 ((uint32_t)0x00400000)
5660 #define GPIO_PUPDR_PUPDR11_1 ((uint32_t)0x00800000)
5661 #define GPIO_PUPDR_PUPDR12 ((uint32_t)0x03000000)
5662 #define GPIO_PUPDR_PUPDR12_0 ((uint32_t)0x01000000)
5663 #define GPIO_PUPDR_PUPDR12_1 ((uint32_t)0x02000000)
5664 #define GPIO_PUPDR_PUPDR13 ((uint32_t)0x0C000000)
5665 #define GPIO_PUPDR_PUPDR13_0 ((uint32_t)0x04000000)
5666 #define GPIO_PUPDR_PUPDR13_1 ((uint32_t)0x08000000)
5667 #define GPIO_PUPDR_PUPDR14 ((uint32_t)0x30000000)
5668 #define GPIO_PUPDR_PUPDR14_0 ((uint32_t)0x10000000)
5669 #define GPIO_PUPDR_PUPDR14_1 ((uint32_t)0x20000000)
5670 #define GPIO_PUPDR_PUPDR15 ((uint32_t)0xC0000000)
5671 #define GPIO_PUPDR_PUPDR15_0 ((uint32_t)0x40000000)
5672 #define GPIO_PUPDR_PUPDR15_1 ((uint32_t)0x80000000)
5673
5674 /******************* Bit definition for GPIO_IDR register *******************/
5675 #define GPIO_IDR_0 ((uint32_t)0x00000001)
5676 #define GPIO_IDR_1 ((uint32_t)0x00000002)
5677 #define GPIO_IDR_2 ((uint32_t)0x00000004)
5678 #define GPIO_IDR_3 ((uint32_t)0x00000008)
5679 #define GPIO_IDR_4 ((uint32_t)0x00000010)
5680 #define GPIO_IDR_5 ((uint32_t)0x00000020)
5681 #define GPIO_IDR_6 ((uint32_t)0x00000040)
5682 #define GPIO_IDR_7 ((uint32_t)0x00000080)
5683 #define GPIO_IDR_8 ((uint32_t)0x00000100)
5684 #define GPIO_IDR_9 ((uint32_t)0x00000200)
5685 #define GPIO_IDR_10 ((uint32_t)0x00000400)
5686 #define GPIO_IDR_11 ((uint32_t)0x00000800)
5687 #define GPIO_IDR_12 ((uint32_t)0x00001000)
5688 #define GPIO_IDR_13 ((uint32_t)0x00002000)
5689 #define GPIO_IDR_14 ((uint32_t)0x00004000)
5690 #define GPIO_IDR_15 ((uint32_t)0x00008000)
5691
5692 /****************** Bit definition for GPIO_ODR register ********************/
5693 #define GPIO_ODR_0 ((uint32_t)0x00000001)
5694 #define GPIO_ODR_1 ((uint32_t)0x00000002)
5695 #define GPIO_ODR_2 ((uint32_t)0x00000004)
5696 #define GPIO_ODR_3 ((uint32_t)0x00000008)
5697 #define GPIO_ODR_4 ((uint32_t)0x00000010)
5698 #define GPIO_ODR_5 ((uint32_t)0x00000020)
5699 #define GPIO_ODR_6 ((uint32_t)0x00000040)
5700 #define GPIO_ODR_7 ((uint32_t)0x00000080)
5701 #define GPIO_ODR_8 ((uint32_t)0x00000100)
5702 #define GPIO_ODR_9 ((uint32_t)0x00000200)
5703 #define GPIO_ODR_10 ((uint32_t)0x00000400)
5704 #define GPIO_ODR_11 ((uint32_t)0x00000800)
5705 #define GPIO_ODR_12 ((uint32_t)0x00001000)
5706 #define GPIO_ODR_13 ((uint32_t)0x00002000)
5707 #define GPIO_ODR_14 ((uint32_t)0x00004000)
5708 #define GPIO_ODR_15 ((uint32_t)0x00008000)
5709
5710 /****************** Bit definition for GPIO_BSRR register ********************/
5711 #define GPIO_BSRR_BS_0 ((uint32_t)0x00000001)
5712 #define GPIO_BSRR_BS_1 ((uint32_t)0x00000002)
5713 #define GPIO_BSRR_BS_2 ((uint32_t)0x00000004)
5714 #define GPIO_BSRR_BS_3 ((uint32_t)0x00000008)
5715 #define GPIO_BSRR_BS_4 ((uint32_t)0x00000010)
5716 #define GPIO_BSRR_BS_5 ((uint32_t)0x00000020)
5717 #define GPIO_BSRR_BS_6 ((uint32_t)0x00000040)
5718 #define GPIO_BSRR_BS_7 ((uint32_t)0x00000080)
5719 #define GPIO_BSRR_BS_8 ((uint32_t)0x00000100)
5720 #define GPIO_BSRR_BS_9 ((uint32_t)0x00000200)
5721 #define GPIO_BSRR_BS_10 ((uint32_t)0x00000400)
5722 #define GPIO_BSRR_BS_11 ((uint32_t)0x00000800)
5723 #define GPIO_BSRR_BS_12 ((uint32_t)0x00001000)
5724 #define GPIO_BSRR_BS_13 ((uint32_t)0x00002000)
5725 #define GPIO_BSRR_BS_14 ((uint32_t)0x00004000)
5726 #define GPIO_BSRR_BS_15 ((uint32_t)0x00008000)
5727 #define GPIO_BSRR_BR_0 ((uint32_t)0x00010000)
5728 #define GPIO_BSRR_BR_1 ((uint32_t)0x00020000)
5729 #define GPIO_BSRR_BR_2 ((uint32_t)0x00040000)
5730 #define GPIO_BSRR_BR_3 ((uint32_t)0x00080000)
5731 #define GPIO_BSRR_BR_4 ((uint32_t)0x00100000)
5732 #define GPIO_BSRR_BR_5 ((uint32_t)0x00200000)
5733 #define GPIO_BSRR_BR_6 ((uint32_t)0x00400000)
5734 #define GPIO_BSRR_BR_7 ((uint32_t)0x00800000)
5735 #define GPIO_BSRR_BR_8 ((uint32_t)0x01000000)
5736 #define GPIO_BSRR_BR_9 ((uint32_t)0x02000000)
5737 #define GPIO_BSRR_BR_10 ((uint32_t)0x04000000)
5738 #define GPIO_BSRR_BR_11 ((uint32_t)0x08000000)
5739 #define GPIO_BSRR_BR_12 ((uint32_t)0x10000000)
5740 #define GPIO_BSRR_BR_13 ((uint32_t)0x20000000)
5741 #define GPIO_BSRR_BR_14 ((uint32_t)0x40000000)
5742 #define GPIO_BSRR_BR_15 ((uint32_t)0x80000000)
5743
5744 /****************** Bit definition for GPIO_LCKR register ********************/
5745 #define GPIO_LCKR_LCK0 ((uint32_t)0x00000001)
5746 #define GPIO_LCKR_LCK1 ((uint32_t)0x00000002)
5747 #define GPIO_LCKR_LCK2 ((uint32_t)0x00000004)
5748 #define GPIO_LCKR_LCK3 ((uint32_t)0x00000008)
5749 #define GPIO_LCKR_LCK4 ((uint32_t)0x00000010)
5750 #define GPIO_LCKR_LCK5 ((uint32_t)0x00000020)
5751 #define GPIO_LCKR_LCK6 ((uint32_t)0x00000040)
5752 #define GPIO_LCKR_LCK7 ((uint32_t)0x00000080)
5753 #define GPIO_LCKR_LCK8 ((uint32_t)0x00000100)
5754 #define GPIO_LCKR_LCK9 ((uint32_t)0x00000200)
5755 #define GPIO_LCKR_LCK10 ((uint32_t)0x00000400)
5756 #define GPIO_LCKR_LCK11 ((uint32_t)0x00000800)
5757 #define GPIO_LCKR_LCK12 ((uint32_t)0x00001000)
5758 #define GPIO_LCKR_LCK13 ((uint32_t)0x00002000)
5759 #define GPIO_LCKR_LCK14 ((uint32_t)0x00004000)
5760 #define GPIO_LCKR_LCK15 ((uint32_t)0x00008000)
5761 #define GPIO_LCKR_LCKK ((uint32_t)0x00010000)
5762
5763 /****************** Bit definition for GPIO_AFRL register ********************/
5764 #define GPIO_AFRL_AFRL0 ((uint32_t)0x0000000F)
5765 #define GPIO_AFRL_AFRL1 ((uint32_t)0x000000F0)
5766 #define GPIO_AFRL_AFRL2 ((uint32_t)0x00000F00)
5767 #define GPIO_AFRL_AFRL3 ((uint32_t)0x0000F000)
5768 #define GPIO_AFRL_AFRL4 ((uint32_t)0x000F0000)
5769 #define GPIO_AFRL_AFRL5 ((uint32_t)0x00F00000)
5770 #define GPIO_AFRL_AFRL6 ((uint32_t)0x0F000000)
5771 #define GPIO_AFRL_AFRL7 ((uint32_t)0xF0000000)
5772
5773 /****************** Bit definition for GPIO_AFRH register ********************/
5774 #define GPIO_AFRH_AFRH0 ((uint32_t)0x0000000F)
5775 #define GPIO_AFRH_AFRH1 ((uint32_t)0x000000F0)
5776 #define GPIO_AFRH_AFRH2 ((uint32_t)0x00000F00)
5777 #define GPIO_AFRH_AFRH3 ((uint32_t)0x0000F000)
5778 #define GPIO_AFRH_AFRH4 ((uint32_t)0x000F0000)
5779 #define GPIO_AFRH_AFRH5 ((uint32_t)0x00F00000)
5780 #define GPIO_AFRH_AFRH6 ((uint32_t)0x0F000000)
5781 #define GPIO_AFRH_AFRH7 ((uint32_t)0xF0000000)
5782
5783 /****************** Bit definition for GPIO_BRR register *********************/
5784 #define GPIO_BRR_BR_0 ((uint32_t)0x00000001)
5785 #define GPIO_BRR_BR_1 ((uint32_t)0x00000002)
5786 #define GPIO_BRR_BR_2 ((uint32_t)0x00000004)
5787 #define GPIO_BRR_BR_3 ((uint32_t)0x00000008)
5788 #define GPIO_BRR_BR_4 ((uint32_t)0x00000010)
5789 #define GPIO_BRR_BR_5 ((uint32_t)0x00000020)
5790 #define GPIO_BRR_BR_6 ((uint32_t)0x00000040)
5791 #define GPIO_BRR_BR_7 ((uint32_t)0x00000080)
5792 #define GPIO_BRR_BR_8 ((uint32_t)0x00000100)
5793 #define GPIO_BRR_BR_9 ((uint32_t)0x00000200)
5794 #define GPIO_BRR_BR_10 ((uint32_t)0x00000400)
5795 #define GPIO_BRR_BR_11 ((uint32_t)0x00000800)
5796 #define GPIO_BRR_BR_12 ((uint32_t)0x00001000)
5797 #define GPIO_BRR_BR_13 ((uint32_t)0x00002000)
5798 #define GPIO_BRR_BR_14 ((uint32_t)0x00004000)
5799 #define GPIO_BRR_BR_15 ((uint32_t)0x00008000)
5800
5801 /******************************************************************************/
5802 /* */
5803 /* Inter-integrated Circuit Interface (I2C) */
5804 /* */
5805 /******************************************************************************/
5806 /******************* Bit definition for I2C_CR1 register *******************/
5807 #define I2C_CR1_PE ((uint32_t)0x00000001) /*!< Peripheral enable */
5808 #define I2C_CR1_TXIE ((uint32_t)0x00000002) /*!< TX interrupt enable */
5809 #define I2C_CR1_RXIE ((uint32_t)0x00000004) /*!< RX interrupt enable */
5810 #define I2C_CR1_ADDRIE ((uint32_t)0x00000008) /*!< Address match interrupt enable */
5811 #define I2C_CR1_NACKIE ((uint32_t)0x00000010) /*!< NACK received interrupt enable */
5812 #define I2C_CR1_STOPIE ((uint32_t)0x00000020) /*!< STOP detection interrupt enable */
5813 #define I2C_CR1_TCIE ((uint32_t)0x00000040) /*!< Transfer complete interrupt enable */
5814 #define I2C_CR1_ERRIE ((uint32_t)0x00000080) /*!< Errors interrupt enable */
5815 #define I2C_CR1_DFN ((uint32_t)0x00000F00) /*!< Digital noise filter */
5816 #define I2C_CR1_ANFOFF ((uint32_t)0x00001000) /*!< Analog noise filter OFF */
5817 #define I2C_CR1_SWRST ((uint32_t)0x00002000) /*!< Software reset */
5818 #define I2C_CR1_TXDMAEN ((uint32_t)0x00004000) /*!< DMA transmission requests enable */
5819 #define I2C_CR1_RXDMAEN ((uint32_t)0x00008000) /*!< DMA reception requests enable */
5820 #define I2C_CR1_SBC ((uint32_t)0x00010000) /*!< Slave byte control */
5821 #define I2C_CR1_NOSTRETCH ((uint32_t)0x00020000) /*!< Clock stretching disable */
5822 #define I2C_CR1_WUPEN ((uint32_t)0x00040000) /*!< Wakeup from STOP enable */
5823 #define I2C_CR1_GCEN ((uint32_t)0x00080000) /*!< General call enable */
5824 #define I2C_CR1_SMBHEN ((uint32_t)0x00100000) /*!< SMBus host address enable */
5825 #define I2C_CR1_SMBDEN ((uint32_t)0x00200000) /*!< SMBus device default address enable */
5826 #define I2C_CR1_ALERTEN ((uint32_t)0x00400000) /*!< SMBus alert enable */
5827 #define I2C_CR1_PECEN ((uint32_t)0x00800000) /*!< PEC enable */
5828
5829 /****************** Bit definition for I2C_CR2 register ********************/
5830 #define I2C_CR2_SADD ((uint32_t)0x000003FF) /*!< Slave address (master mode) */
5831 #define I2C_CR2_RD_WRN ((uint32_t)0x00000400) /*!< Transfer direction (master mode) */
5832 #define I2C_CR2_ADD10 ((uint32_t)0x00000800) /*!< 10-bit addressing mode (master mode) */
5833 #define I2C_CR2_HEAD10R ((uint32_t)0x00001000) /*!< 10-bit address header only read direction (master mode) */
5834 #define I2C_CR2_START ((uint32_t)0x00002000) /*!< START generation */
5835 #define I2C_CR2_STOP ((uint32_t)0x00004000) /*!< STOP generation (master mode) */
5836 #define I2C_CR2_NACK ((uint32_t)0x00008000) /*!< NACK generation (slave mode) */
5837 #define I2C_CR2_NBYTES ((uint32_t)0x00FF0000) /*!< Number of bytes */
5838 #define I2C_CR2_RELOAD ((uint32_t)0x01000000) /*!< NBYTES reload mode */
5839 #define I2C_CR2_AUTOEND ((uint32_t)0x02000000) /*!< Automatic end mode (master mode) */
5840 #define I2C_CR2_PECBYTE ((uint32_t)0x04000000) /*!< Packet error checking byte */
5841
5842 /******************* Bit definition for I2C_OAR1 register ******************/
5843 #define I2C_OAR1_OA1 ((uint32_t)0x000003FF) /*!< Interface own address 1 */
5844 #define I2C_OAR1_OA1MODE ((uint32_t)0x00000400) /*!< Own address 1 10-bit mode */
5845 #define I2C_OAR1_OA1EN ((uint32_t)0x00008000) /*!< Own address 1 enable */
5846
5847 /******************* Bit definition for I2C_OAR2 register *******************/
5848 #define I2C_OAR2_OA2 ((uint32_t)0x000000FE) /*!< Interface own address 2 */
5849 #define I2C_OAR2_OA2MSK ((uint32_t)0x00000700) /*!< Own address 2 masks */
5850 #define I2C_OAR2_OA2EN ((uint32_t)0x00008000) /*!< Own address 2 enable */
5851
5852 /******************* Bit definition for I2C_TIMINGR register *****************/
5853 #define I2C_TIMINGR_SCLL ((uint32_t)0x000000FF) /*!< SCL low period (master mode) */
5854 #define I2C_TIMINGR_SCLH ((uint32_t)0x0000FF00) /*!< SCL high period (master mode) */
5855 #define I2C_TIMINGR_SDADEL ((uint32_t)0x000F0000) /*!< Data hold time */
5856 #define I2C_TIMINGR_SCLDEL ((uint32_t)0x00F00000) /*!< Data setup time */
5857 #define I2C_TIMINGR_PRESC ((uint32_t)0xF0000000) /*!< Timings prescaler */
5858
5859 /******************* Bit definition for I2C_TIMEOUTR register *****************/
5860 #define I2C_TIMEOUTR_TIMEOUTA ((uint32_t)0x00000FFF) /*!< Bus timeout A */
5861 #define I2C_TIMEOUTR_TIDLE ((uint32_t)0x00001000) /*!< Idle clock timeout detection */
5862 #define I2C_TIMEOUTR_TIMOUTEN ((uint32_t)0x00008000) /*!< Clock timeout enable */
5863 #define I2C_TIMEOUTR_TIMEOUTB ((uint32_t)0x0FFF0000) /*!< Bus timeout B*/
5864 #define I2C_TIMEOUTR_TEXTEN ((uint32_t)0x80000000) /*!< Extended clock timeout enable */
5865
5866 /****************** Bit definition for I2C_ISR register *********************/
5867 #define I2C_ISR_TXE ((uint32_t)0x00000001) /*!< Transmit data register empty */
5868 #define I2C_ISR_TXIS ((uint32_t)0x00000002) /*!< Transmit interrupt status */
5869 #define I2C_ISR_RXNE ((uint32_t)0x00000004) /*!< Receive data register not empty */
5870 #define I2C_ISR_ADDR ((uint32_t)0x00000008) /*!< Address matched (slave mode)*/
5871 #define I2C_ISR_NACKF ((uint32_t)0x00000010) /*!< NACK received flag */
5872 #define I2C_ISR_STOPF ((uint32_t)0x00000020) /*!< STOP detection flag */
5873 #define I2C_ISR_TC ((uint32_t)0x00000040) /*!< Transfer complete (master mode) */
5874 #define I2C_ISR_TCR ((uint32_t)0x00000080) /*!< Transfer complete reload */
5875 #define I2C_ISR_BERR ((uint32_t)0x00000100) /*!< Bus error */
5876 #define I2C_ISR_ARLO ((uint32_t)0x00000200) /*!< Arbitration lost */
5877 #define I2C_ISR_OVR ((uint32_t)0x00000400) /*!< Overrun/Underrun */
5878 #define I2C_ISR_PECERR ((uint32_t)0x00000800) /*!< PEC error in reception */
5879 #define I2C_ISR_TIMEOUT ((uint32_t)0x00001000) /*!< Timeout or Tlow detection flag */
5880 #define I2C_ISR_ALERT ((uint32_t)0x00002000) /*!< SMBus alert */
5881 #define I2C_ISR_BUSY ((uint32_t)0x00008000) /*!< Bus busy */
5882 #define I2C_ISR_DIR ((uint32_t)0x00010000) /*!< Transfer direction (slave mode) */
5883 #define I2C_ISR_ADDCODE ((uint32_t)0x00FE0000) /*!< Address match code (slave mode) */
5884
5885 /****************** Bit definition for I2C_ICR register *********************/
5886 #define I2C_ICR_ADDRCF ((uint32_t)0x00000008) /*!< Address matched clear flag */
5887 #define I2C_ICR_NACKCF ((uint32_t)0x00000010) /*!< NACK clear flag */
5888 #define I2C_ICR_STOPCF ((uint32_t)0x00000020) /*!< STOP detection clear flag */
5889 #define I2C_ICR_BERRCF ((uint32_t)0x00000100) /*!< Bus error clear flag */
5890 #define I2C_ICR_ARLOCF ((uint32_t)0x00000200) /*!< Arbitration lost clear flag */
5891 #define I2C_ICR_OVRCF ((uint32_t)0x00000400) /*!< Overrun/Underrun clear flag */
5892 #define I2C_ICR_PECCF ((uint32_t)0x00000800) /*!< PAC error clear flag */
5893 #define I2C_ICR_TIMOUTCF ((uint32_t)0x00001000) /*!< Timeout clear flag */
5894 #define I2C_ICR_ALERTCF ((uint32_t)0x00002000) /*!< Alert clear flag */
5895
5896 /****************** Bit definition for I2C_PECR register ********************/
5897 #define I2C_PECR_PEC ((uint32_t)0x000000FF) /*!< PEC register */
5898
5899 /****************** Bit definition for I2C_RXDR register *********************/
5900 #define I2C_RXDR_RXDATA ((uint32_t)0x000000FF) /*!< 8-bit receive data */
5901
5902 /****************** Bit definition for I2C_TXDR register *********************/
5903 #define I2C_TXDR_TXDATA ((uint32_t)0x000000FF) /*!< 8-bit transmit data */
5904
5905
5906 /******************************************************************************/
5907 /* */
5908 /* Independent WATCHDOG (IWDG) */
5909 /* */
5910 /******************************************************************************/
5911 /******************* Bit definition for IWDG_KR register ********************/
5912 #define IWDG_KR_KEY ((uint16_t)0xFFFF) /*!< Key value (write only, read 0000h) */
5913
5914 /******************* Bit definition for IWDG_PR register ********************/
5915 #define IWDG_PR_PR ((uint8_t)0x07) /*!< PR[2:0] (Prescaler divider) */
5916 #define IWDG_PR_PR_0 ((uint8_t)0x01) /*!< Bit 0 */
5917 #define IWDG_PR_PR_1 ((uint8_t)0x02) /*!< Bit 1 */
5918 #define IWDG_PR_PR_2 ((uint8_t)0x04) /*!< Bit 2 */
5919
5920 /******************* Bit definition for IWDG_RLR register *******************/
5921 #define IWDG_RLR_RL ((uint16_t)0x0FFF) /*!< Watchdog counter reload value */
5922
5923 /******************* Bit definition for IWDG_SR register ********************/
5924 #define IWDG_SR_PVU ((uint8_t)0x01) /*!< Watchdog prescaler value update */
5925 #define IWDG_SR_RVU ((uint8_t)0x02) /*!< Watchdog counter reload value update */
5926 #define IWDG_SR_WVU ((uint8_t)0x04) /*!< Watchdog counter window value update */
5927
5928 /******************* Bit definition for IWDG_KR register ********************/
5929 #define IWDG_WINR_WIN ((uint16_t)0x0FFF) /*!< Watchdog counter window value */
5930
5931 /******************************************************************************/
5932 /* */
5933 /* Power Control */
5934 /* */
5935 /******************************************************************************/
5936 /******************** Bit definition for PWR_CR register ********************/
5937 #define PWR_CR_LPSDSR ((uint16_t)0x0001) /*!< Low-power deepsleep/sleep/low power run */
5938 #define PWR_CR_PDDS ((uint16_t)0x0002) /*!< Power Down Deepsleep */
5939 #define PWR_CR_CWUF ((uint16_t)0x0004) /*!< Clear Wakeup Flag */
5940 #define PWR_CR_CSBF ((uint16_t)0x0008) /*!< Clear Standby Flag */
5941 #define PWR_CR_PVDE ((uint16_t)0x0010) /*!< Power Voltage Detector Enable */
5942
5943 #define PWR_CR_PLS ((uint16_t)0x00E0) /*!< PLS[2:0] bits (PVD Level Selection) */
5944 #define PWR_CR_PLS_0 ((uint16_t)0x0020) /*!< Bit 0 */
5945 #define PWR_CR_PLS_1 ((uint16_t)0x0040) /*!< Bit 1 */
5946 #define PWR_CR_PLS_2 ((uint16_t)0x0080) /*!< Bit 2 */
5947
5948 /*!< PVD level configuration */
5949 #define PWR_CR_PLS_LEV0 ((uint16_t)0x0000) /*!< PVD level 0 */
5950 #define PWR_CR_PLS_LEV1 ((uint16_t)0x0020) /*!< PVD level 1 */
5951 #define PWR_CR_PLS_LEV2 ((uint16_t)0x0040) /*!< PVD level 2 */
5952 #define PWR_CR_PLS_LEV3 ((uint16_t)0x0060) /*!< PVD level 3 */
5953 #define PWR_CR_PLS_LEV4 ((uint16_t)0x0080) /*!< PVD level 4 */
5954 #define PWR_CR_PLS_LEV5 ((uint16_t)0x00A0) /*!< PVD level 5 */
5955 #define PWR_CR_PLS_LEV6 ((uint16_t)0x00C0) /*!< PVD level 6 */
5956 #define PWR_CR_PLS_LEV7 ((uint16_t)0x00E0) /*!< PVD level 7 */
5957
5958 #define PWR_CR_DBP ((uint16_t)0x0100) /*!< Disable Backup Domain write protection */
5959
5960 /******************* Bit definition for PWR_CSR register ********************/
5961 #define PWR_CSR_WUF ((uint16_t)0x0001) /*!< Wakeup Flag */
5962 #define PWR_CSR_SBF ((uint16_t)0x0002) /*!< Standby Flag */
5963 #define PWR_CSR_PVDO ((uint16_t)0x0004) /*!< PVD Output */
5964 #define PWR_CSR_VREFINTRDYF ((uint16_t)0x0008) /*!< Internal voltage reference (VREFINT) ready flag */
5965
5966 #define PWR_CSR_EWUP1 ((uint16_t)0x0100) /*!< Enable WKUP pin 1 */
5967 #define PWR_CSR_EWUP2 ((uint16_t)0x0200) /*!< Enable WKUP pin 2 */
5968 #define PWR_CSR_EWUP3 ((uint16_t)0x0400) /*!< Enable WKUP pin 3 */
5969
5970 /******************************************************************************/
5971 /* */
5972 /* Reset and Clock Control */
5973 /* */
5974 /******************************************************************************/
5975 /******************** Bit definition for RCC_CR register ********************/
5976 #define RCC_CR_HSION ((uint32_t)0x00000001)
5977 #define RCC_CR_HSIRDY ((uint32_t)0x00000002)
5978
5979 #define RCC_CR_HSITRIM ((uint32_t)0x000000F8)
5980 #define RCC_CR_HSITRIM_0 ((uint32_t)0x00000008)/*!<Bit 0 */
5981 #define RCC_CR_HSITRIM_1 ((uint32_t)0x00000010)/*!<Bit 1 */
5982 #define RCC_CR_HSITRIM_2 ((uint32_t)0x00000020)/*!<Bit 2 */
5983 #define RCC_CR_HSITRIM_3 ((uint32_t)0x00000040)/*!<Bit 3 */
5984 #define RCC_CR_HSITRIM_4 ((uint32_t)0x00000080)/*!<Bit 4 */
5985
5986 #define RCC_CR_HSICAL ((uint32_t)0x0000FF00)
5987 #define RCC_CR_HSICAL_0 ((uint32_t)0x00000100)/*!<Bit 0 */
5988 #define RCC_CR_HSICAL_1 ((uint32_t)0x00000200)/*!<Bit 1 */
5989 #define RCC_CR_HSICAL_2 ((uint32_t)0x00000400)/*!<Bit 2 */
5990 #define RCC_CR_HSICAL_3 ((uint32_t)0x00000800)/*!<Bit 3 */
5991 #define RCC_CR_HSICAL_4 ((uint32_t)0x00001000)/*!<Bit 4 */
5992 #define RCC_CR_HSICAL_5 ((uint32_t)0x00002000)/*!<Bit 5 */
5993 #define RCC_CR_HSICAL_6 ((uint32_t)0x00004000)/*!<Bit 6 */
5994 #define RCC_CR_HSICAL_7 ((uint32_t)0x00008000)/*!<Bit 7 */
5995
5996 #define RCC_CR_HSEON ((uint32_t)0x00010000)
5997 #define RCC_CR_HSERDY ((uint32_t)0x00020000)
5998 #define RCC_CR_HSEBYP ((uint32_t)0x00040000)
5999 #define RCC_CR_CSSON ((uint32_t)0x00080000)
6000
6001 #define RCC_CR_PLLON ((uint32_t)0x01000000)
6002 #define RCC_CR_PLLRDY ((uint32_t)0x02000000)
6003
6004 /******************** Bit definition for RCC_CFGR register ******************/
6005 /*!< SW configuration */
6006 #define RCC_CFGR_SW ((uint32_t)0x00000003) /*!< SW[1:0] bits (System clock Switch) */
6007 #define RCC_CFGR_SW_0 ((uint32_t)0x00000001) /*!< Bit 0 */
6008 #define RCC_CFGR_SW_1 ((uint32_t)0x00000002) /*!< Bit 1 */
6009
6010 #define RCC_CFGR_SW_HSI ((uint32_t)0x00000000) /*!< HSI selected as system clock */
6011 #define RCC_CFGR_SW_HSE ((uint32_t)0x00000001) /*!< HSE selected as system clock */
6012 #define RCC_CFGR_SW_PLL ((uint32_t)0x00000002) /*!< PLL selected as system clock */
6013
6014 /*!< SWS configuration */
6015 #define RCC_CFGR_SWS ((uint32_t)0x0000000C) /*!< SWS[1:0] bits (System Clock Switch Status) */
6016 #define RCC_CFGR_SWS_0 ((uint32_t)0x00000004) /*!< Bit 0 */
6017 #define RCC_CFGR_SWS_1 ((uint32_t)0x00000008) /*!< Bit 1 */
6018
6019 #define RCC_CFGR_SWS_HSI ((uint32_t)0x00000000) /*!< HSI oscillator used as system clock */
6020 #define RCC_CFGR_SWS_HSE ((uint32_t)0x00000004) /*!< HSE oscillator used as system clock */
6021 #define RCC_CFGR_SWS_PLL ((uint32_t)0x00000008) /*!< PLL used as system clock */
6022
6023 /*!< HPRE configuration */
6024 #define RCC_CFGR_HPRE ((uint32_t)0x000000F0) /*!< HPRE[3:0] bits (AHB prescaler) */
6025 #define RCC_CFGR_HPRE_0 ((uint32_t)0x00000010) /*!< Bit 0 */
6026 #define RCC_CFGR_HPRE_1 ((uint32_t)0x00000020) /*!< Bit 1 */
6027 #define RCC_CFGR_HPRE_2 ((uint32_t)0x00000040) /*!< Bit 2 */
6028 #define RCC_CFGR_HPRE_3 ((uint32_t)0x00000080) /*!< Bit 3 */
6029
6030 #define RCC_CFGR_HPRE_DIV1 ((uint32_t)0x00000000) /*!< SYSCLK not divided */
6031 #define RCC_CFGR_HPRE_DIV2 ((uint32_t)0x00000080) /*!< SYSCLK divided by 2 */
6032 #define RCC_CFGR_HPRE_DIV4 ((uint32_t)0x00000090) /*!< SYSCLK divided by 4 */
6033 #define RCC_CFGR_HPRE_DIV8 ((uint32_t)0x000000A0) /*!< SYSCLK divided by 8 */
6034 #define RCC_CFGR_HPRE_DIV16 ((uint32_t)0x000000B0) /*!< SYSCLK divided by 16 */
6035 #define RCC_CFGR_HPRE_DIV64 ((uint32_t)0x000000C0) /*!< SYSCLK divided by 64 */
6036 #define RCC_CFGR_HPRE_DIV128 ((uint32_t)0x000000D0) /*!< SYSCLK divided by 128 */
6037 #define RCC_CFGR_HPRE_DIV256 ((uint32_t)0x000000E0) /*!< SYSCLK divided by 256 */
6038 #define RCC_CFGR_HPRE_DIV512 ((uint32_t)0x000000F0) /*!< SYSCLK divided by 512 */
6039
6040 /*!< PPRE1 configuration */
6041 #define RCC_CFGR_PPRE1 ((uint32_t)0x00000700) /*!< PRE1[2:0] bits (APB1 prescaler) */
6042 #define RCC_CFGR_PPRE1_0 ((uint32_t)0x00000100) /*!< Bit 0 */
6043 #define RCC_CFGR_PPRE1_1 ((uint32_t)0x00000200) /*!< Bit 1 */
6044 #define RCC_CFGR_PPRE1_2 ((uint32_t)0x00000400) /*!< Bit 2 */
6045
6046 #define RCC_CFGR_PPRE1_DIV1 ((uint32_t)0x00000000) /*!< HCLK not divided */
6047 #define RCC_CFGR_PPRE1_DIV2 ((uint32_t)0x00000400) /*!< HCLK divided by 2 */
6048 #define RCC_CFGR_PPRE1_DIV4 ((uint32_t)0x00000500) /*!< HCLK divided by 4 */
6049 #define RCC_CFGR_PPRE1_DIV8 ((uint32_t)0x00000600) /*!< HCLK divided by 8 */
6050 #define RCC_CFGR_PPRE1_DIV16 ((uint32_t)0x00000700) /*!< HCLK divided by 16 */
6051
6052 /*!< PPRE2 configuration */
6053 #define RCC_CFGR_PPRE2 ((uint32_t)0x00003800) /*!< PRE2[2:0] bits (APB2 prescaler) */
6054 #define RCC_CFGR_PPRE2_0 ((uint32_t)0x00000800) /*!< Bit 0 */
6055 #define RCC_CFGR_PPRE2_1 ((uint32_t)0x00001000) /*!< Bit 1 */
6056 #define RCC_CFGR_PPRE2_2 ((uint32_t)0x00002000) /*!< Bit 2 */
6057
6058 #define RCC_CFGR_PPRE2_DIV1 ((uint32_t)0x00000000) /*!< HCLK not divided */
6059 #define RCC_CFGR_PPRE2_DIV2 ((uint32_t)0x00002000) /*!< HCLK divided by 2 */
6060 #define RCC_CFGR_PPRE2_DIV4 ((uint32_t)0x00002800) /*!< HCLK divided by 4 */
6061 #define RCC_CFGR_PPRE2_DIV8 ((uint32_t)0x00003000) /*!< HCLK divided by 8 */
6062 #define RCC_CFGR_PPRE2_DIV16 ((uint32_t)0x00003800) /*!< HCLK divided by 16 */
6063
6064 #define RCC_CFGR_PLLSRC ((uint32_t)0x00010000) /*!< PLL entry clock source */
6065
6066 #define RCC_CFGR_PLLXTPRE ((uint32_t)0x00020000) /*!< HSE divider for PLL entry */
6067
6068 /*!< PLLMUL configuration */
6069 #define RCC_CFGR_PLLMULL ((uint32_t)0x003C0000) /*!< PLLMUL[3:0] bits (PLL multiplication factor) */
6070 #define RCC_CFGR_PLLMULL_0 ((uint32_t)0x00040000) /*!< Bit 0 */
6071 #define RCC_CFGR_PLLMULL_1 ((uint32_t)0x00080000) /*!< Bit 1 */
6072 #define RCC_CFGR_PLLMULL_2 ((uint32_t)0x00100000) /*!< Bit 2 */
6073 #define RCC_CFGR_PLLMULL_3 ((uint32_t)0x00200000) /*!< Bit 3 */
6074
6075 #define RCC_CFGR_PLLSRC_HSI_Div2 ((uint32_t)0x00000000) /*!< HSI clock divided by 2 selected as PLL entry clock source */
6076 #define RCC_CFGR_PLLSRC_PREDIV1 ((uint32_t)0x00010000) /*!< PREDIV1 clock selected as PLL entry clock source */
6077
6078 #define RCC_CFGR_PLLXTPRE_PREDIV1 ((uint32_t)0x00000000) /*!< PREDIV1 clock not divided for PLL entry */
6079 #define RCC_CFGR_PLLXTPRE_PREDIV1_Div2 ((uint32_t)0x00020000) /*!< PREDIV1 clock divided by 2 for PLL entry */
6080
6081 #define RCC_CFGR_PLLMULL2 ((uint32_t)0x00000000) /*!< PLL input clock*2 */
6082 #define RCC_CFGR_PLLMULL3 ((uint32_t)0x00040000) /*!< PLL input clock*3 */
6083 #define RCC_CFGR_PLLMULL4 ((uint32_t)0x00080000) /*!< PLL input clock*4 */
6084 #define RCC_CFGR_PLLMULL5 ((uint32_t)0x000C0000) /*!< PLL input clock*5 */
6085 #define RCC_CFGR_PLLMULL6 ((uint32_t)0x00100000) /*!< PLL input clock*6 */
6086 #define RCC_CFGR_PLLMULL7 ((uint32_t)0x00140000) /*!< PLL input clock*7 */
6087 #define RCC_CFGR_PLLMULL8 ((uint32_t)0x00180000) /*!< PLL input clock*8 */
6088 #define RCC_CFGR_PLLMULL9 ((uint32_t)0x001C0000) /*!< PLL input clock*9 */
6089 #define RCC_CFGR_PLLMULL10 ((uint32_t)0x00200000) /*!< PLL input clock10 */
6090 #define RCC_CFGR_PLLMULL11 ((uint32_t)0x00240000) /*!< PLL input clock*11 */
6091 #define RCC_CFGR_PLLMULL12 ((uint32_t)0x00280000) /*!< PLL input clock*12 */
6092 #define RCC_CFGR_PLLMULL13 ((uint32_t)0x002C0000) /*!< PLL input clock*13 */
6093 #define RCC_CFGR_PLLMULL14 ((uint32_t)0x00300000) /*!< PLL input clock*14 */
6094 #define RCC_CFGR_PLLMULL15 ((uint32_t)0x00340000) /*!< PLL input clock*15 */
6095 #define RCC_CFGR_PLLMULL16 ((uint32_t)0x00380000) /*!< PLL input clock*16 */
6096
6097 /*!< USB configuration */
6098 #define RCC_CFGR_USBPRE ((uint32_t)0x00400000) /*!< USB prescaler */
6099
6100 /*!< I2S configuration */
6101 #define RCC_CFGR_I2SSRC ((uint32_t)0x00800000) /*!< I2S external clock source selection */
6102
6103 /*!< MCO configuration */
6104 #define RCC_CFGR_MCO ((uint32_t)0x07000000) /*!< MCO[2:0] bits (Microcontroller Clock Output) */
6105 #define RCC_CFGR_MCO_0 ((uint32_t)0x01000000) /*!< Bit 0 */
6106 #define RCC_CFGR_MCO_1 ((uint32_t)0x02000000) /*!< Bit 1 */
6107 #define RCC_CFGR_MCO_2 ((uint32_t)0x04000000) /*!< Bit 2 */
6108
6109 #define RCC_CFGR_MCO_NOCLOCK ((uint32_t)0x00000000) /*!< No clock */
6110 #define RCC_CFGR_MCO_LSI ((uint32_t)0x02000000) /*!< LSI clock selected as MCO source */
6111 #define RCC_CFGR_MCO_LSE ((uint32_t)0x03000000) /*!< LSE clock selected as MCO source */
6112 #define RCC_CFGR_MCO_SYSCLK ((uint32_t)0x04000000) /*!< System clock selected as MCO source */
6113 #define RCC_CFGR_MCO_HSI ((uint32_t)0x05000000) /*!< HSI clock selected as MCO source */
6114 #define RCC_CFGR_MCO_HSE ((uint32_t)0x06000000) /*!< HSE clock selected as MCO source */
6115 #define RCC_CFGR_MCO_PLL ((uint32_t)0x07000000) /*!< PLL clock divided by 2 selected as MCO source */
6116
6117 #define RCC_CFGR_MCOF ((uint32_t)0x10000000) /*!< Microcontroller Clock Output Flag */
6118
6119 #define RCC_CFGR_MCO_PRE ((uint32_t)0x70000000) /*!< MCO prescaler */
6120 #define RCC_CFGR_MCO_PRE_1 ((uint32_t)0x00000000) /*!< MCO is divided by 1 */
6121 #define RCC_CFGR_MCO_PRE_2 ((uint32_t)0x10000000) /*!< MCO is divided by 2 */
6122 #define RCC_CFGR_MCO_PRE_4 ((uint32_t)0x20000000) /*!< MCO is divided by 4 */
6123 #define RCC_CFGR_MCO_PRE_8 ((uint32_t)0x30000000) /*!< MCO is divided by 8 */
6124 #define RCC_CFGR_MCO_PRE_16 ((uint32_t)0x40000000) /*!< MCO is divided by 16 */
6125 #define RCC_CFGR_MCO_PRE_32 ((uint32_t)0x50000000) /*!< MCO is divided by 32 */
6126 #define RCC_CFGR_MCO_PRE_64 ((uint32_t)0x60000000) /*!< MCO is divided by 64 */
6127 #define RCC_CFGR_MCO_PRE_128 ((uint32_t)0x70000000) /*!< MCO is divided by 128 */
6128
6129 #define RCC_CFGR_PLLNODIV ((uint32_t)0x80000000) /*!< PLL is not divided to MCO */
6130
6131 /********************* Bit definition for RCC_CIR register ********************/
6132 #define RCC_CIR_LSIRDYF ((uint32_t)0x00000001) /*!< LSI Ready Interrupt flag */
6133 #define RCC_CIR_LSERDYF ((uint32_t)0x00000002) /*!< LSE Ready Interrupt flag */
6134 #define RCC_CIR_HSIRDYF ((uint32_t)0x00000004) /*!< HSI Ready Interrupt flag */
6135 #define RCC_CIR_HSERDYF ((uint32_t)0x00000008) /*!< HSE Ready Interrupt flag */
6136 #define RCC_CIR_PLLRDYF ((uint32_t)0x00000010) /*!< PLL Ready Interrupt flag */
6137 #define RCC_CIR_CSSF ((uint32_t)0x00000080) /*!< Clock Security System Interrupt flag */
6138 #define RCC_CIR_LSIRDYIE ((uint32_t)0x00000100) /*!< LSI Ready Interrupt Enable */
6139 #define RCC_CIR_LSERDYIE ((uint32_t)0x00000200) /*!< LSE Ready Interrupt Enable */
6140 #define RCC_CIR_HSIRDYIE ((uint32_t)0x00000400) /*!< HSI Ready Interrupt Enable */
6141 #define RCC_CIR_HSERDYIE ((uint32_t)0x00000800) /*!< HSE Ready Interrupt Enable */
6142 #define RCC_CIR_PLLRDYIE ((uint32_t)0x00001000) /*!< PLL Ready Interrupt Enable */
6143 #define RCC_CIR_LSIRDYC ((uint32_t)0x00010000) /*!< LSI Ready Interrupt Clear */
6144 #define RCC_CIR_LSERDYC ((uint32_t)0x00020000) /*!< LSE Ready Interrupt Clear */
6145 #define RCC_CIR_HSIRDYC ((uint32_t)0x00040000) /*!< HSI Ready Interrupt Clear */
6146 #define RCC_CIR_HSERDYC ((uint32_t)0x00080000) /*!< HSE Ready Interrupt Clear */
6147 #define RCC_CIR_PLLRDYC ((uint32_t)0x00100000) /*!< PLL Ready Interrupt Clear */
6148 #define RCC_CIR_CSSC ((uint32_t)0x00800000) /*!< Clock Security System Interrupt Clear */
6149
6150 /****************** Bit definition for RCC_APB2RSTR register *****************/
6151 #define RCC_APB2RSTR_SYSCFGRST ((uint32_t)0x00000001) /*!< SYSCFG reset */
6152 #define RCC_APB2RSTR_TIM1RST ((uint32_t)0x00000200) /*!< TIM1 reset */
6153 #define RCC_APB2RSTR_SPI1RST ((uint32_t)0x00001000) /*!< SPI1 reset */
6154 #define RCC_APB2RSTR_TIM8RST ((uint32_t)0x00000200) /*!< TIM8 reset */
6155 #define RCC_APB2RSTR_USART1RST ((uint32_t)0x00004000) /*!< USART1 reset */
6156 #define RCC_APB2RSTR_TIM15RST ((uint32_t)0x00010000) /*!< TIM15 reset */
6157 #define RCC_APB2RSTR_TIM16RST ((uint32_t)0x00020000) /*!< TIM16 reset */
6158 #define RCC_APB2RSTR_TIM17RST ((uint32_t)0x00040000) /*!< TIM17 reset */
6159 #define RCC_APB2RSTR_HRTIM1RST ((uint32_t)0x20000000) /*!< HRTIM1 reset */
6160
6161 /****************** Bit definition for RCC_APB1RSTR register ******************/
6162 #define RCC_APB1RSTR_TIM2RST ((uint32_t)0x00000001) /*!< Timer 2 reset */
6163 #define RCC_APB1RSTR_TIM3RST ((uint32_t)0x00000002) /*!< Timer 3 reset */
6164 #define RCC_APB1RSTR_TIM4RST ((uint32_t)0x00000004) /*!< Timer 4 reset */
6165 #define RCC_APB1RSTR_TIM6RST ((uint32_t)0x00000010) /*!< Timer 6 reset */
6166 #define RCC_APB1RSTR_TIM7RST ((uint32_t)0x00000020) /*!< Timer 7 reset */
6167 #define RCC_APB1RSTR_WWDGRST ((uint32_t)0x00000800) /*!< Window Watchdog reset */
6168 #define RCC_APB1RSTR_SPI2RST ((uint32_t)0x00004000) /*!< SPI2 reset */
6169 #define RCC_APB1RSTR_SPI3RST ((uint32_t)0x00008000) /*!< SPI3 reset */
6170 #define RCC_APB1RSTR_USART2RST ((uint32_t)0x00020000) /*!< USART 2 reset */
6171 #define RCC_APB1RSTR_USART3RST ((uint32_t)0x00040000) /*!< USART 3 reset */
6172 #define RCC_APB1RSTR_UART4RST ((uint32_t)0x00080000) /*!< UART 4 reset */
6173 #define RCC_APB1RSTR_UART5RST ((uint32_t)0x00100000) /*!< UART 5 reset */
6174 #define RCC_APB1RSTR_I2C1RST ((uint32_t)0x00200000) /*!< I2C 1 reset */
6175 #define RCC_APB1RSTR_I2C2RST ((uint32_t)0x00400000) /*!< I2C 2 reset */
6176 #define RCC_APB1RSTR_USBRST ((uint32_t)0x00800000) /*!< USB reset */
6177 #define RCC_APB1RSTR_CAN1RST ((uint32_t)0x02000000) /*!< CAN reset */
6178 #define RCC_APB1RSTR_PWRRST ((uint32_t)0x10000000) /*!< PWR reset */
6179 #define RCC_APB1RSTR_DAC1RST ((uint32_t)0x20000000) /*!< DAC 1 reset */
6180 #define RCC_APB1RSTR_I2C3RST ((uint32_t)0x40000000) /*!< I2C 3 reset */
6181 #define RCC_APB1RSTR_DAC2RST ((uint32_t)0x04000000) /*!< DAC 2 reset */
6182 #define RCC_APB1RSTR_DACRST RCC_APB1RSTR_DAC1RST /*!< DAC reset */
6183
6184 /****************** Bit definition for RCC_AHBENR register ******************/
6185 #define RCC_AHBENR_DMA1EN ((uint32_t)0x00000001) /*!< DMA1 clock enable */
6186 #define RCC_AHBENR_DMA2EN ((uint32_t)0x00000002) /*!< DMA2 clock enable */
6187 #define RCC_AHBENR_SRAMEN ((uint32_t)0x00000004) /*!< SRAM interface clock enable */
6188 #define RCC_AHBENR_FLITFEN ((uint32_t)0x00000010) /*!< FLITF clock enable */
6189 #define RCC_AHBENR_CRCEN ((uint32_t)0x00000040) /*!< CRC clock enable */
6190 #define RCC_AHBENR_GPIOAEN ((uint32_t)0x00020000) /*!< GPIOA clock enable */
6191 #define RCC_AHBENR_GPIOBEN ((uint32_t)0x00040000) /*!< GPIOB clock enable */
6192 #define RCC_AHBENR_GPIOCEN ((uint32_t)0x00080000) /*!< GPIOC clock enable */
6193 #define RCC_AHBENR_GPIODEN ((uint32_t)0x00100000) /*!< GPIOD clock enable */
6194 #define RCC_AHBENR_GPIOEEN ((uint32_t)0x00200000) /*!< GPIOE clock enable */
6195 #define RCC_AHBENR_GPIOFEN ((uint32_t)0x00400000) /*!< GPIOF clock enable */
6196 #define RCC_AHBENR_TSEN ((uint32_t)0x01000000) /*!< TS clock enable */
6197 #define RCC_AHBENR_ADC12EN ((uint32_t)0x10000000) /*!< ADC1/ ADC2 clock enable */
6198 #define RCC_AHBENR_ADC34EN ((uint32_t)0x20000000) /*!< ADC1/ ADC2 clock enable */
6199
6200 /***************** Bit definition for RCC_APB2ENR register ******************/
6201 #define RCC_APB2ENR_SYSCFGEN ((uint32_t)0x00000001) /*!< SYSCFG clock enable */
6202 #define RCC_APB2ENR_TIM1EN ((uint32_t)0x00000800) /*!< TIM1 clock enable */
6203 #define RCC_APB2ENR_SPI1EN ((uint32_t)0x00001000) /*!< SPI1 clock enable */
6204 #define RCC_APB2ENR_TIM8EN ((uint32_t)0x00002000) /*!< TIM8 clock enable */
6205 #define RCC_APB2ENR_USART1EN ((uint32_t)0x00004000) /*!< USART1 clock enable */
6206 #define RCC_APB2ENR_TIM15EN ((uint32_t)0x00010000) /*!< TIM15 clock enable */
6207 #define RCC_APB2ENR_TIM16EN ((uint32_t)0x00020000) /*!< TIM16 clock enable */
6208 #define RCC_APB2ENR_TIM17EN ((uint32_t)0x00040000) /*!< TIM17 clock enable */
6209 #define RCC_APB2ENR_HRTIM1 ((uint32_t)0x20000000) /*!< HRTIM1 clock enable */
6210
6211 /****************** Bit definition for RCC_APB1ENR register ******************/
6212 #define RCC_APB1ENR_TIM2EN ((uint32_t)0x00000001) /*!< Timer 2 clock enable */
6213 #define RCC_APB1ENR_TIM3EN ((uint32_t)0x00000002) /*!< Timer 3 clock enable */
6214 #define RCC_APB1ENR_TIM4EN ((uint32_t)0x00000004) /*!< Timer 4 clock enable */
6215 #define RCC_APB1ENR_TIM6EN ((uint32_t)0x00000010) /*!< Timer 6 clock enable */
6216 #define RCC_APB1ENR_TIM7EN ((uint32_t)0x00000020) /*!< Timer 7 clock enable */
6217 #define RCC_APB1ENR_WWDGEN ((uint32_t)0x00000800) /*!< Window Watchdog clock enable */
6218 #define RCC_APB1ENR_SPI2EN ((uint32_t)0x00004000) /*!< SPI2 clock enable */
6219 #define RCC_APB1ENR_SPI3EN ((uint32_t)0x00008000) /*!< SPI3 clock enable */
6220 #define RCC_APB1ENR_USART2EN ((uint32_t)0x00020000) /*!< USART 2 clock enable */
6221 #define RCC_APB1ENR_USART3EN ((uint32_t)0x00040000) /*!< USART 3 clock enable */
6222 #define RCC_APB1ENR_UART4EN ((uint32_t)0x00080000) /*!< UART 4 clock enable */
6223 #define RCC_APB1ENR_UART5EN ((uint32_t)0x00100000) /*!< UART 5 clock enable */
6224 #define RCC_APB1ENR_I2C1EN ((uint32_t)0x00200000) /*!< I2C 1 clock enable */
6225 #define RCC_APB1ENR_I2C2EN ((uint32_t)0x00400000) /*!< I2C 2 clock enable */
6226 #define RCC_APB1ENR_USBEN ((uint32_t)0x00800000) /*!< USB clock enable */
6227 #define RCC_APB1ENR_CAN1EN ((uint32_t)0x02000000) /*!< CAN clock enable */
6228 #define RCC_APB1ENR_DAC2EN ((uint32_t)0x04000000) /*!< DAC 2 clock enable */
6229 #define RCC_APB1ENR_PWREN ((uint32_t)0x10000000) /*!< PWR clock enable */
6230 #define RCC_APB1ENR_DAC1EN ((uint32_t)0x20000000) /*!< DAC clock enable */
6231 #define RCC_APB1ENR_I2C3EN ((uint32_t)0x40000000) /*!< I2C 3 clock enable */
6232 #define RCC_APB1ENR_DACEN RCC_APB1ENR_DAC1EN
6233
6234 /******************** Bit definition for RCC_BDCR register ******************/
6235 #define RCC_BDCR_LSEON ((uint32_t)0x00000001) /*!< External Low Speed oscillator enable */
6236 #define RCC_BDCR_LSERDY ((uint32_t)0x00000002) /*!< External Low Speed oscillator Ready */
6237 #define RCC_BDCR_LSEBYP ((uint32_t)0x00000004) /*!< External Low Speed oscillator Bypass */
6238
6239 #define RCC_BDCR_LSEDRV ((uint32_t)0x00000018) /*!< LSEDRV[1:0] bits (LSE Osc. drive capability) */
6240 #define RCC_BDCR_LSEDRV_0 ((uint32_t)0x00000008) /*!< Bit 0 */
6241 #define RCC_BDCR_LSEDRV_1 ((uint32_t)0x00000010) /*!< Bit 1 */
6242
6243
6244 #define RCC_BDCR_RTCSEL ((uint32_t)0x00000300) /*!< RTCSEL[1:0] bits (RTC clock source selection) */
6245 #define RCC_BDCR_RTCSEL_0 ((uint32_t)0x00000100) /*!< Bit 0 */
6246 #define RCC_BDCR_RTCSEL_1 ((uint32_t)0x00000200) /*!< Bit 1 */
6247
6248 /*!< RTC configuration */
6249 #define RCC_BDCR_RTCSEL_NOCLOCK ((uint32_t)0x00000000) /*!< No clock */
6250 #define RCC_BDCR_RTCSEL_LSE ((uint32_t)0x00000100) /*!< LSE oscillator clock used as RTC clock */
6251 #define RCC_BDCR_RTCSEL_LSI ((uint32_t)0x00000200) /*!< LSI oscillator clock used as RTC clock */
6252 #define RCC_BDCR_RTCSEL_HSE ((uint32_t)0x00000300) /*!< HSE oscillator clock divided by 32 used as RTC clock */
6253
6254 #define RCC_BDCR_RTCEN ((uint32_t)0x00008000) /*!< RTC clock enable */
6255 #define RCC_BDCR_BDRST ((uint32_t)0x00010000) /*!< Backup domain software reset */
6256
6257 /******************** Bit definition for RCC_CSR register *******************/
6258 #define RCC_CSR_LSION ((uint32_t)0x00000001) /*!< Internal Low Speed oscillator enable */
6259 #define RCC_CSR_LSIRDY ((uint32_t)0x00000002) /*!< Internal Low Speed oscillator Ready */
6260 #define RCC_CSR_RMVF ((uint32_t)0x01000000) /*!< Remove reset flag */
6261 #define RCC_CSR_OBLRSTF ((uint32_t)0x02000000) /*!< OBL reset flag */
6262 #define RCC_CSR_PINRSTF ((uint32_t)0x04000000) /*!< PIN reset flag */
6263 #define RCC_CSR_PORRSTF ((uint32_t)0x08000000) /*!< POR/PDR reset flag */
6264 #define RCC_CSR_SFTRSTF ((uint32_t)0x10000000) /*!< Software Reset flag */
6265 #define RCC_CSR_IWDGRSTF ((uint32_t)0x20000000) /*!< Independent Watchdog reset flag */
6266 #define RCC_CSR_WWDGRSTF ((uint32_t)0x40000000) /*!< Window watchdog reset flag */
6267 #define RCC_CSR_LPWRRSTF ((uint32_t)0x80000000) /*!< Low-Power reset flag */
6268
6269 /******************* Bit definition for RCC_AHBRSTR register ****************/
6270 #define RCC_AHBRSTR_GPIOARST ((uint32_t)0x00020000) /*!< GPIOA reset */
6271 #define RCC_AHBRSTR_GPIOBRST ((uint32_t)0x00040000) /*!< GPIOB reset */
6272 #define RCC_AHBRSTR_GPIOCRST ((uint32_t)0x00080000) /*!< GPIOC reset */
6273 #define RCC_AHBRSTR_GPIODRST ((uint32_t)0x00010000) /*!< GPIOD reset */
6274 #define RCC_AHBRSTR_GPIOFRST ((uint32_t)0x00040000) /*!< GPIOF reset */
6275 #define RCC_AHBRSTR_TSRST ((uint32_t)0x00100000) /*!< TS reset */
6276 #define RCC_AHBRSTR_ADC12RST ((uint32_t)0x01000000) /*!< ADC1 & ADC2 reset */
6277 #define RCC_AHBRSTR_ADC34RST ((uint32_t)0x02000000) /*!< ADC3 & ADC4 reset */
6278
6279 /******************* Bit definition for RCC_CFGR2 register ******************/
6280 /*!< PREDIV1 configuration */
6281 #define RCC_CFGR2_PREDIV1 ((uint32_t)0x0000000F) /*!< PREDIV1[3:0] bits */
6282 #define RCC_CFGR2_PREDIV1_0 ((uint32_t)0x00000001) /*!< Bit 0 */
6283 #define RCC_CFGR2_PREDIV1_1 ((uint32_t)0x00000002) /*!< Bit 1 */
6284 #define RCC_CFGR2_PREDIV1_2 ((uint32_t)0x00000004) /*!< Bit 2 */
6285 #define RCC_CFGR2_PREDIV1_3 ((uint32_t)0x00000008) /*!< Bit 3 */
6286
6287 #define RCC_CFGR2_PREDIV1_DIV1 ((uint32_t)0x00000000) /*!< PREDIV1 input clock not divided */
6288 #define RCC_CFGR2_PREDIV1_DIV2 ((uint32_t)0x00000001) /*!< PREDIV1 input clock divided by 2 */
6289 #define RCC_CFGR2_PREDIV1_DIV3 ((uint32_t)0x00000002) /*!< PREDIV1 input clock divided by 3 */
6290 #define RCC_CFGR2_PREDIV1_DIV4 ((uint32_t)0x00000003) /*!< PREDIV1 input clock divided by 4 */
6291 #define RCC_CFGR2_PREDIV1_DIV5 ((uint32_t)0x00000004) /*!< PREDIV1 input clock divided by 5 */
6292 #define RCC_CFGR2_PREDIV1_DIV6 ((uint32_t)0x00000005) /*!< PREDIV1 input clock divided by 6 */
6293 #define RCC_CFGR2_PREDIV1_DIV7 ((uint32_t)0x00000006) /*!< PREDIV1 input clock divided by 7 */
6294 #define RCC_CFGR2_PREDIV1_DIV8 ((uint32_t)0x00000007) /*!< PREDIV1 input clock divided by 8 */
6295 #define RCC_CFGR2_PREDIV1_DIV9 ((uint32_t)0x00000008) /*!< PREDIV1 input clock divided by 9 */
6296 #define RCC_CFGR2_PREDIV1_DIV10 ((uint32_t)0x00000009) /*!< PREDIV1 input clock divided by 10 */
6297 #define RCC_CFGR2_PREDIV1_DIV11 ((uint32_t)0x0000000A) /*!< PREDIV1 input clock divided by 11 */
6298 #define RCC_CFGR2_PREDIV1_DIV12 ((uint32_t)0x0000000B) /*!< PREDIV1 input clock divided by 12 */
6299 #define RCC_CFGR2_PREDIV1_DIV13 ((uint32_t)0x0000000C) /*!< PREDIV1 input clock divided by 13 */
6300 #define RCC_CFGR2_PREDIV1_DIV14 ((uint32_t)0x0000000D) /*!< PREDIV1 input clock divided by 14 */
6301 #define RCC_CFGR2_PREDIV1_DIV15 ((uint32_t)0x0000000E) /*!< PREDIV1 input clock divided by 15 */
6302 #define RCC_CFGR2_PREDIV1_DIV16 ((uint32_t)0x0000000F) /*!< PREDIV1 input clock divided by 16 */
6303
6304 /*!< ADCPRE12 configuration */
6305 #define RCC_CFGR2_ADCPRE12 ((uint32_t)0x000001F0) /*!< ADCPRE12[8:4] bits */
6306 #define RCC_CFGR2_ADCPRE12_0 ((uint32_t)0x00000010) /*!< Bit 0 */
6307 #define RCC_CFGR2_ADCPRE12_1 ((uint32_t)0x00000020) /*!< Bit 1 */
6308 #define RCC_CFGR2_ADCPRE12_2 ((uint32_t)0x00000040) /*!< Bit 2 */
6309 #define RCC_CFGR2_ADCPRE12_3 ((uint32_t)0x00000080) /*!< Bit 3 */
6310 #define RCC_CFGR2_ADCPRE12_4 ((uint32_t)0x00000100) /*!< Bit 4 */
6311
6312 #define RCC_CFGR2_ADCPRE12_NO ((uint32_t)0x00000000) /*!< ADC12 clock disabled, ADC12 can use AHB clock */
6313 #define RCC_CFGR2_ADCPRE12_DIV1 ((uint32_t)0x00000100) /*!< ADC12 PLL clock divided by 1 */
6314 #define RCC_CFGR2_ADCPRE12_DIV2 ((uint32_t)0x00000110) /*!< ADC12 PLL clock divided by 2 */
6315 #define RCC_CFGR2_ADCPRE12_DIV4 ((uint32_t)0x00000120) /*!< ADC12 PLL clock divided by 4 */
6316 #define RCC_CFGR2_ADCPRE12_DIV6 ((uint32_t)0x00000130) /*!< ADC12 PLL clock divided by 6 */
6317 #define RCC_CFGR2_ADCPRE12_DIV8 ((uint32_t)0x00000140) /*!< ADC12 PLL clock divided by 8 */
6318 #define RCC_CFGR2_ADCPRE12_DIV10 ((uint32_t)0x00000150) /*!< ADC12 PLL clock divided by 10 */
6319 #define RCC_CFGR2_ADCPRE12_DIV12 ((uint32_t)0x00000160) /*!< ADC12 PLL clock divided by 12 */
6320 #define RCC_CFGR2_ADCPRE12_DIV16 ((uint32_t)0x00000170) /*!< ADC12 PLL clock divided by 16 */
6321 #define RCC_CFGR2_ADCPRE12_DIV32 ((uint32_t)0x00000180) /*!< ADC12 PLL clock divided by 32 */
6322 #define RCC_CFGR2_ADCPRE12_DIV64 ((uint32_t)0x00000190) /*!< ADC12 PLL clock divided by 64 */
6323 #define RCC_CFGR2_ADCPRE12_DIV128 ((uint32_t)0x000001A0) /*!< ADC12 PLL clock divided by 128 */
6324 #define RCC_CFGR2_ADCPRE12_DIV256 ((uint32_t)0x000001B0) /*!< ADC12 PLL clock divided by 256 */
6325
6326 /*!< ADCPRE34 configuration */
6327 #define RCC_CFGR2_ADCPRE34 ((uint32_t)0x00003E00) /*!< ADCPRE34[13:5] bits */
6328 #define RCC_CFGR2_ADCPRE34_0 ((uint32_t)0x00000200) /*!< Bit 0 */
6329 #define RCC_CFGR2_ADCPRE34_1 ((uint32_t)0x00000400) /*!< Bit 1 */
6330 #define RCC_CFGR2_ADCPRE34_2 ((uint32_t)0x00000800) /*!< Bit 2 */
6331 #define RCC_CFGR2_ADCPRE34_3 ((uint32_t)0x00001000) /*!< Bit 3 */
6332 #define RCC_CFGR2_ADCPRE34_4 ((uint32_t)0x00002000) /*!< Bit 4 */
6333
6334 #define RCC_CFGR2_ADCPRE34_NO ((uint32_t)0x00000000) /*!< ADC34 clock disabled, ADC34 can use AHB clock */
6335 #define RCC_CFGR2_ADCPRE34_DIV1 ((uint32_t)0x00002000) /*!< ADC34 PLL clock divided by 1 */
6336 #define RCC_CFGR2_ADCPRE34_DIV2 ((uint32_t)0x00002200) /*!< ADC34 PLL clock divided by 2 */
6337 #define RCC_CFGR2_ADCPRE34_DIV4 ((uint32_t)0x00002400) /*!< ADC34 PLL clock divided by 4 */
6338 #define RCC_CFGR2_ADCPRE34_DIV6 ((uint32_t)0x00002600) /*!< ADC34 PLL clock divided by 6 */
6339 #define RCC_CFGR2_ADCPRE34_DIV8 ((uint32_t)0x00002800) /*!< ADC34 PLL clock divided by 8 */
6340 #define RCC_CFGR2_ADCPRE34_DIV10 ((uint32_t)0x00002A00) /*!< ADC34 PLL clock divided by 10 */
6341 #define RCC_CFGR2_ADCPRE34_DIV12 ((uint32_t)0x00002C00) /*!< ADC34 PLL clock divided by 12 */
6342 #define RCC_CFGR2_ADCPRE34_DIV16 ((uint32_t)0x00002E00) /*!< ADC34 PLL clock divided by 16 */
6343 #define RCC_CFGR2_ADCPRE34_DIV32 ((uint32_t)0x00003000) /*!< ADC34 PLL clock divided by 32 */
6344 #define RCC_CFGR2_ADCPRE34_DIV64 ((uint32_t)0x00003200) /*!< ADC34 PLL clock divided by 64 */
6345 #define RCC_CFGR2_ADCPRE34_DIV128 ((uint32_t)0x00003400) /*!< ADC34 PLL clock divided by 128 */
6346 #define RCC_CFGR2_ADCPRE34_DIV256 ((uint32_t)0x00003600) /*!< ADC34 PLL clock divided by 256 */
6347
6348 /******************* Bit definition for RCC_CFGR3 register ******************/
6349 #define RCC_CFGR3_USART1SW ((uint32_t)0x00000003) /*!< USART1SW[1:0] bits */
6350 #define RCC_CFGR3_USART1SW_0 ((uint32_t)0x00000001) /*!< Bit 0 */
6351 #define RCC_CFGR3_USART1SW_1 ((uint32_t)0x00000002) /*!< Bit 1 */
6352
6353 #define RCC_CFGR3_I2CSW ((uint32_t)0x00000070) /*!< I2CSW bits */
6354 #define RCC_CFGR3_I2C1SW ((uint32_t)0x00000010) /*!< I2C1SW bits */
6355 #define RCC_CFGR3_I2C2SW ((uint32_t)0x00000020) /*!< I2C2SW bits */
6356 #define RCC_CFGR3_I2C3SW ((uint32_t)0x00000040) /*!< I2C3SW bits */
6357
6358 #define RCC_CFGR3_TIMSW ((uint32_t)0x00002F00) /*!< TIMSW bits */
6359 #define RCC_CFGR3_TIM1SW ((uint32_t)0x00000100) /*!< TIM1SW bits */
6360 #define RCC_CFGR3_TIM8SW ((uint32_t)0x00000200) /*!< TIM8SW bits */
6361 #define RCC_CFGR3_TIM15SW ((uint32_t)0x00000400) /*!< TIM15SW bits */
6362 #define RCC_CFGR3_TIM16SW ((uint32_t)0x00000800) /*!< TIM16SW bits */
6363 #define RCC_CFGR3_TIM17SW ((uint32_t)0x00002000) /*!< TIM17SW bits */
6364
6365 #define RCC_CFGR3_HRTIM1SW ((uint32_t)0x00001000) /*!< HRTIM1SW bits */
6366
6367 #define RCC_CFGR3_USART2SW ((uint32_t)0x00030000) /*!< USART2SW[1:0] bits */
6368 #define RCC_CFGR3_USART2SW_0 ((uint32_t)0x00010000) /*!< Bit 0 */
6369 #define RCC_CFGR3_USART2SW_1 ((uint32_t)0x00020000) /*!< Bit 1 */
6370
6371 #define RCC_CFGR3_USART3SW ((uint32_t)0x000C0000) /*!< USART3SW[1:0] bits */
6372 #define RCC_CFGR3_USART3SW_0 ((uint32_t)0x00040000) /*!< Bit 0 */
6373 #define RCC_CFGR3_USART3SW_1 ((uint32_t)0x00080000) /*!< Bit 1 */
6374
6375 #define RCC_CFGR3_UART4SW ((uint32_t)0x00300000) /*!< UART4SW[1:0] bits */
6376 #define RCC_CFGR3_UART4SW_0 ((uint32_t)0x00100000) /*!< Bit 0 */
6377 #define RCC_CFGR3_UART4SW_1 ((uint32_t)0x00200000) /*!< Bit 1 */
6378
6379 #define RCC_CFGR3_UART5SW ((uint32_t)0x00C00000) /*!< UART5SW[1:0] bits */
6380 #define RCC_CFGR3_UART5SW_0 ((uint32_t)0x00400000) /*!< Bit 0 */
6381 #define RCC_CFGR3_UART5SW_1 ((uint32_t)0x00800000) /*!< Bit 1 */
6382
6383 /******************************************************************************/
6384 /* */
6385 /* Real-Time Clock (RTC) */
6386 /* */
6387 /******************************************************************************/
6388 /******************** Bits definition for RTC_TR register *******************/
6389 #define RTC_TR_PM ((uint32_t)0x00400000)
6390 #define RTC_TR_HT ((uint32_t)0x00300000)
6391 #define RTC_TR_HT_0 ((uint32_t)0x00100000)
6392 #define RTC_TR_HT_1 ((uint32_t)0x00200000)
6393 #define RTC_TR_HU ((uint32_t)0x000F0000)
6394 #define RTC_TR_HU_0 ((uint32_t)0x00010000)
6395 #define RTC_TR_HU_1 ((uint32_t)0x00020000)
6396 #define RTC_TR_HU_2 ((uint32_t)0x00040000)
6397 #define RTC_TR_HU_3 ((uint32_t)0x00080000)
6398 #define RTC_TR_MNT ((uint32_t)0x00007000)
6399 #define RTC_TR_MNT_0 ((uint32_t)0x00001000)
6400 #define RTC_TR_MNT_1 ((uint32_t)0x00002000)
6401 #define RTC_TR_MNT_2 ((uint32_t)0x00004000)
6402 #define RTC_TR_MNU ((uint32_t)0x00000F00)
6403 #define RTC_TR_MNU_0 ((uint32_t)0x00000100)
6404 #define RTC_TR_MNU_1 ((uint32_t)0x00000200)
6405 #define RTC_TR_MNU_2 ((uint32_t)0x00000400)
6406 #define RTC_TR_MNU_3 ((uint32_t)0x00000800)
6407 #define RTC_TR_ST ((uint32_t)0x00000070)
6408 #define RTC_TR_ST_0 ((uint32_t)0x00000010)
6409 #define RTC_TR_ST_1 ((uint32_t)0x00000020)
6410 #define RTC_TR_ST_2 ((uint32_t)0x00000040)
6411 #define RTC_TR_SU ((uint32_t)0x0000000F)
6412 #define RTC_TR_SU_0 ((uint32_t)0x00000001)
6413 #define RTC_TR_SU_1 ((uint32_t)0x00000002)
6414 #define RTC_TR_SU_2 ((uint32_t)0x00000004)
6415 #define RTC_TR_SU_3 ((uint32_t)0x00000008)
6416
6417 /******************** Bits definition for RTC_DR register *******************/
6418 #define RTC_DR_YT ((uint32_t)0x00F00000)
6419 #define RTC_DR_YT_0 ((uint32_t)0x00100000)
6420 #define RTC_DR_YT_1 ((uint32_t)0x00200000)
6421 #define RTC_DR_YT_2 ((uint32_t)0x00400000)
6422 #define RTC_DR_YT_3 ((uint32_t)0x00800000)
6423 #define RTC_DR_YU ((uint32_t)0x000F0000)
6424 #define RTC_DR_YU_0 ((uint32_t)0x00010000)
6425 #define RTC_DR_YU_1 ((uint32_t)0x00020000)
6426 #define RTC_DR_YU_2 ((uint32_t)0x00040000)
6427 #define RTC_DR_YU_3 ((uint32_t)0x00080000)
6428 #define RTC_DR_WDU ((uint32_t)0x0000E000)
6429 #define RTC_DR_WDU_0 ((uint32_t)0x00002000)
6430 #define RTC_DR_WDU_1 ((uint32_t)0x00004000)
6431 #define RTC_DR_WDU_2 ((uint32_t)0x00008000)
6432 #define RTC_DR_MT ((uint32_t)0x00001000)
6433 #define RTC_DR_MU ((uint32_t)0x00000F00)
6434 #define RTC_DR_MU_0 ((uint32_t)0x00000100)
6435 #define RTC_DR_MU_1 ((uint32_t)0x00000200)
6436 #define RTC_DR_MU_2 ((uint32_t)0x00000400)
6437 #define RTC_DR_MU_3 ((uint32_t)0x00000800)
6438 #define RTC_DR_DT ((uint32_t)0x00000030)
6439 #define RTC_DR_DT_0 ((uint32_t)0x00000010)
6440 #define RTC_DR_DT_1 ((uint32_t)0x00000020)
6441 #define RTC_DR_DU ((uint32_t)0x0000000F)
6442 #define RTC_DR_DU_0 ((uint32_t)0x00000001)
6443 #define RTC_DR_DU_1 ((uint32_t)0x00000002)
6444 #define RTC_DR_DU_2 ((uint32_t)0x00000004)
6445 #define RTC_DR_DU_3 ((uint32_t)0x00000008)
6446
6447 /******************** Bits definition for RTC_CR register *******************/
6448 #define RTC_CR_COE ((uint32_t)0x00800000)
6449 #define RTC_CR_OSEL ((uint32_t)0x00600000)
6450 #define RTC_CR_OSEL_0 ((uint32_t)0x00200000)
6451 #define RTC_CR_OSEL_1 ((uint32_t)0x00400000)
6452 #define RTC_CR_POL ((uint32_t)0x00100000)
6453 #define RTC_CR_COSEL ((uint32_t)0x00080000)
6454 #define RTC_CR_BCK ((uint32_t)0x00040000)
6455 #define RTC_CR_SUB1H ((uint32_t)0x00020000)
6456 #define RTC_CR_ADD1H ((uint32_t)0x00010000)
6457 #define RTC_CR_TSIE ((uint32_t)0x00008000)
6458 #define RTC_CR_WUTIE ((uint32_t)0x00004000)
6459 #define RTC_CR_ALRBIE ((uint32_t)0x00002000)
6460 #define RTC_CR_ALRAIE ((uint32_t)0x00001000)
6461 #define RTC_CR_TSE ((uint32_t)0x00000800)
6462 #define RTC_CR_WUTE ((uint32_t)0x00000400)
6463 #define RTC_CR_ALRBE ((uint32_t)0x00000200)
6464 #define RTC_CR_ALRAE ((uint32_t)0x00000100)
6465 #define RTC_CR_FMT ((uint32_t)0x00000040)
6466 #define RTC_CR_BYPSHAD ((uint32_t)0x00000020)
6467 #define RTC_CR_REFCKON ((uint32_t)0x00000010)
6468 #define RTC_CR_TSEDGE ((uint32_t)0x00000008)
6469 #define RTC_CR_WUCKSEL ((uint32_t)0x00000007)
6470 #define RTC_CR_WUCKSEL_0 ((uint32_t)0x00000001)
6471 #define RTC_CR_WUCKSEL_1 ((uint32_t)0x00000002)
6472 #define RTC_CR_WUCKSEL_2 ((uint32_t)0x00000004)
6473
6474 /******************** Bits definition for RTC_ISR register ******************/
6475 #define RTC_ISR_RECALPF ((uint32_t)0x00010000)
6476 #define RTC_ISR_TAMP3F ((uint32_t)0x00008000)
6477 #define RTC_ISR_TAMP2F ((uint32_t)0x00004000)
6478 #define RTC_ISR_TAMP1F ((uint32_t)0x00002000)
6479 #define RTC_ISR_TSOVF ((uint32_t)0x00001000)
6480 #define RTC_ISR_TSF ((uint32_t)0x00000800)
6481 #define RTC_ISR_WUTF ((uint32_t)0x00000400)
6482 #define RTC_ISR_ALRBF ((uint32_t)0x00000200)
6483 #define RTC_ISR_ALRAF ((uint32_t)0x00000100)
6484 #define RTC_ISR_INIT ((uint32_t)0x00000080)
6485 #define RTC_ISR_INITF ((uint32_t)0x00000040)
6486 #define RTC_ISR_RSF ((uint32_t)0x00000020)
6487 #define RTC_ISR_INITS ((uint32_t)0x00000010)
6488 #define RTC_ISR_SHPF ((uint32_t)0x00000008)
6489 #define RTC_ISR_WUTWF ((uint32_t)0x00000004)
6490 #define RTC_ISR_ALRBWF ((uint32_t)0x00000002)
6491 #define RTC_ISR_ALRAWF ((uint32_t)0x00000001)
6492
6493 /******************** Bits definition for RTC_PRER register *****************/
6494 #define RTC_PRER_PREDIV_A ((uint32_t)0x007F0000)
6495 #define RTC_PRER_PREDIV_S ((uint32_t)0x00007FFF)
6496
6497 /******************** Bits definition for RTC_WUTR register *****************/
6498 #define RTC_WUTR_WUT ((uint32_t)0x0000FFFF)
6499
6500 /******************** Bits definition for RTC_ALRMAR register ***************/
6501 #define RTC_ALRMAR_MSK4 ((uint32_t)0x80000000)
6502 #define RTC_ALRMAR_WDSEL ((uint32_t)0x40000000)
6503 #define RTC_ALRMAR_DT ((uint32_t)0x30000000)
6504 #define RTC_ALRMAR_DT_0 ((uint32_t)0x10000000)
6505 #define RTC_ALRMAR_DT_1 ((uint32_t)0x20000000)
6506 #define RTC_ALRMAR_DU ((uint32_t)0x0F000000)
6507 #define RTC_ALRMAR_DU_0 ((uint32_t)0x01000000)
6508 #define RTC_ALRMAR_DU_1 ((uint32_t)0x02000000)
6509 #define RTC_ALRMAR_DU_2 ((uint32_t)0x04000000)
6510 #define RTC_ALRMAR_DU_3 ((uint32_t)0x08000000)
6511 #define RTC_ALRMAR_MSK3 ((uint32_t)0x00800000)
6512 #define RTC_ALRMAR_PM ((uint32_t)0x00400000)
6513 #define RTC_ALRMAR_HT ((uint32_t)0x00300000)
6514 #define RTC_ALRMAR_HT_0 ((uint32_t)0x00100000)
6515 #define RTC_ALRMAR_HT_1 ((uint32_t)0x00200000)
6516 #define RTC_ALRMAR_HU ((uint32_t)0x000F0000)
6517 #define RTC_ALRMAR_HU_0 ((uint32_t)0x00010000)
6518 #define RTC_ALRMAR_HU_1 ((uint32_t)0x00020000)
6519 #define RTC_ALRMAR_HU_2 ((uint32_t)0x00040000)
6520 #define RTC_ALRMAR_HU_3 ((uint32_t)0x00080000)
6521 #define RTC_ALRMAR_MSK2 ((uint32_t)0x00008000)
6522 #define RTC_ALRMAR_MNT ((uint32_t)0x00007000)
6523 #define RTC_ALRMAR_MNT_0 ((uint32_t)0x00001000)
6524 #define RTC_ALRMAR_MNT_1 ((uint32_t)0x00002000)
6525 #define RTC_ALRMAR_MNT_2 ((uint32_t)0x00004000)
6526 #define RTC_ALRMAR_MNU ((uint32_t)0x00000F00)
6527 #define RTC_ALRMAR_MNU_0 ((uint32_t)0x00000100)
6528 #define RTC_ALRMAR_MNU_1 ((uint32_t)0x00000200)
6529 #define RTC_ALRMAR_MNU_2 ((uint32_t)0x00000400)
6530 #define RTC_ALRMAR_MNU_3 ((uint32_t)0x00000800)
6531 #define RTC_ALRMAR_MSK1 ((uint32_t)0x00000080)
6532 #define RTC_ALRMAR_ST ((uint32_t)0x00000070)
6533 #define RTC_ALRMAR_ST_0 ((uint32_t)0x00000010)
6534 #define RTC_ALRMAR_ST_1 ((uint32_t)0x00000020)
6535 #define RTC_ALRMAR_ST_2 ((uint32_t)0x00000040)
6536 #define RTC_ALRMAR_SU ((uint32_t)0x0000000F)
6537 #define RTC_ALRMAR_SU_0 ((uint32_t)0x00000001)
6538 #define RTC_ALRMAR_SU_1 ((uint32_t)0x00000002)
6539 #define RTC_ALRMAR_SU_2 ((uint32_t)0x00000004)
6540 #define RTC_ALRMAR_SU_3 ((uint32_t)0x00000008)
6541
6542 /******************** Bits definition for RTC_ALRMBR register ***************/
6543 #define RTC_ALRMBR_MSK4 ((uint32_t)0x80000000)
6544 #define RTC_ALRMBR_WDSEL ((uint32_t)0x40000000)
6545 #define RTC_ALRMBR_DT ((uint32_t)0x30000000)
6546 #define RTC_ALRMBR_DT_0 ((uint32_t)0x10000000)
6547 #define RTC_ALRMBR_DT_1 ((uint32_t)0x20000000)
6548 #define RTC_ALRMBR_DU ((uint32_t)0x0F000000)
6549 #define RTC_ALRMBR_DU_0 ((uint32_t)0x01000000)
6550 #define RTC_ALRMBR_DU_1 ((uint32_t)0x02000000)
6551 #define RTC_ALRMBR_DU_2 ((uint32_t)0x04000000)
6552 #define RTC_ALRMBR_DU_3 ((uint32_t)0x08000000)
6553 #define RTC_ALRMBR_MSK3 ((uint32_t)0x00800000)
6554 #define RTC_ALRMBR_PM ((uint32_t)0x00400000)
6555 #define RTC_ALRMBR_HT ((uint32_t)0x00300000)
6556 #define RTC_ALRMBR_HT_0 ((uint32_t)0x00100000)
6557 #define RTC_ALRMBR_HT_1 ((uint32_t)0x00200000)
6558 #define RTC_ALRMBR_HU ((uint32_t)0x000F0000)
6559 #define RTC_ALRMBR_HU_0 ((uint32_t)0x00010000)
6560 #define RTC_ALRMBR_HU_1 ((uint32_t)0x00020000)
6561 #define RTC_ALRMBR_HU_2 ((uint32_t)0x00040000)
6562 #define RTC_ALRMBR_HU_3 ((uint32_t)0x00080000)
6563 #define RTC_ALRMBR_MSK2 ((uint32_t)0x00008000)
6564 #define RTC_ALRMBR_MNT ((uint32_t)0x00007000)
6565 #define RTC_ALRMBR_MNT_0 ((uint32_t)0x00001000)
6566 #define RTC_ALRMBR_MNT_1 ((uint32_t)0x00002000)
6567 #define RTC_ALRMBR_MNT_2 ((uint32_t)0x00004000)
6568 #define RTC_ALRMBR_MNU ((uint32_t)0x00000F00)
6569 #define RTC_ALRMBR_MNU_0 ((uint32_t)0x00000100)
6570 #define RTC_ALRMBR_MNU_1 ((uint32_t)0x00000200)
6571 #define RTC_ALRMBR_MNU_2 ((uint32_t)0x00000400)
6572 #define RTC_ALRMBR_MNU_3 ((uint32_t)0x00000800)
6573 #define RTC_ALRMBR_MSK1 ((uint32_t)0x00000080)
6574 #define RTC_ALRMBR_ST ((uint32_t)0x00000070)
6575 #define RTC_ALRMBR_ST_0 ((uint32_t)0x00000010)
6576 #define RTC_ALRMBR_ST_1 ((uint32_t)0x00000020)
6577 #define RTC_ALRMBR_ST_2 ((uint32_t)0x00000040)
6578 #define RTC_ALRMBR_SU ((uint32_t)0x0000000F)
6579 #define RTC_ALRMBR_SU_0 ((uint32_t)0x00000001)
6580 #define RTC_ALRMBR_SU_1 ((uint32_t)0x00000002)
6581 #define RTC_ALRMBR_SU_2 ((uint32_t)0x00000004)
6582 #define RTC_ALRMBR_SU_3 ((uint32_t)0x00000008)
6583
6584 /******************** Bits definition for RTC_WPR register ******************/
6585 #define RTC_WPR_KEY ((uint32_t)0x000000FF)
6586
6587 /******************** Bits definition for RTC_SSR register ******************/
6588 #define RTC_SSR_SS ((uint32_t)0x0000FFFF)
6589
6590 /******************** Bits definition for RTC_SHIFTR register ***************/
6591 #define RTC_SHIFTR_SUBFS ((uint32_t)0x00007FFF)
6592 #define RTC_SHIFTR_ADD1S ((uint32_t)0x80000000)
6593
6594 /******************** Bits definition for RTC_TSTR register *****************/
6595 #define RTC_TSTR_PM ((uint32_t)0x00400000)
6596 #define RTC_TSTR_HT ((uint32_t)0x00300000)
6597 #define RTC_TSTR_HT_0 ((uint32_t)0x00100000)
6598 #define RTC_TSTR_HT_1 ((uint32_t)0x00200000)
6599 #define RTC_TSTR_HU ((uint32_t)0x000F0000)
6600 #define RTC_TSTR_HU_0 ((uint32_t)0x00010000)
6601 #define RTC_TSTR_HU_1 ((uint32_t)0x00020000)
6602 #define RTC_TSTR_HU_2 ((uint32_t)0x00040000)
6603 #define RTC_TSTR_HU_3 ((uint32_t)0x00080000)
6604 #define RTC_TSTR_MNT ((uint32_t)0x00007000)
6605 #define RTC_TSTR_MNT_0 ((uint32_t)0x00001000)
6606 #define RTC_TSTR_MNT_1 ((uint32_t)0x00002000)
6607 #define RTC_TSTR_MNT_2 ((uint32_t)0x00004000)
6608 #define RTC_TSTR_MNU ((uint32_t)0x00000F00)
6609 #define RTC_TSTR_MNU_0 ((uint32_t)0x00000100)
6610 #define RTC_TSTR_MNU_1 ((uint32_t)0x00000200)
6611 #define RTC_TSTR_MNU_2 ((uint32_t)0x00000400)
6612 #define RTC_TSTR_MNU_3 ((uint32_t)0x00000800)
6613 #define RTC_TSTR_ST ((uint32_t)0x00000070)
6614 #define RTC_TSTR_ST_0 ((uint32_t)0x00000010)
6615 #define RTC_TSTR_ST_1 ((uint32_t)0x00000020)
6616 #define RTC_TSTR_ST_2 ((uint32_t)0x00000040)
6617 #define RTC_TSTR_SU ((uint32_t)0x0000000F)
6618 #define RTC_TSTR_SU_0 ((uint32_t)0x00000001)
6619 #define RTC_TSTR_SU_1 ((uint32_t)0x00000002)
6620 #define RTC_TSTR_SU_2 ((uint32_t)0x00000004)
6621 #define RTC_TSTR_SU_3 ((uint32_t)0x00000008)
6622
6623 /******************** Bits definition for RTC_TSDR register *****************/
6624 #define RTC_TSDR_WDU ((uint32_t)0x0000E000)
6625 #define RTC_TSDR_WDU_0 ((uint32_t)0x00002000)
6626 #define RTC_TSDR_WDU_1 ((uint32_t)0x00004000)
6627 #define RTC_TSDR_WDU_2 ((uint32_t)0x00008000)
6628 #define RTC_TSDR_MT ((uint32_t)0x00001000)
6629 #define RTC_TSDR_MU ((uint32_t)0x00000F00)
6630 #define RTC_TSDR_MU_0 ((uint32_t)0x00000100)
6631 #define RTC_TSDR_MU_1 ((uint32_t)0x00000200)
6632 #define RTC_TSDR_MU_2 ((uint32_t)0x00000400)
6633 #define RTC_TSDR_MU_3 ((uint32_t)0x00000800)
6634 #define RTC_TSDR_DT ((uint32_t)0x00000030)
6635 #define RTC_TSDR_DT_0 ((uint32_t)0x00000010)
6636 #define RTC_TSDR_DT_1 ((uint32_t)0x00000020)
6637 #define RTC_TSDR_DU ((uint32_t)0x0000000F)
6638 #define RTC_TSDR_DU_0 ((uint32_t)0x00000001)
6639 #define RTC_TSDR_DU_1 ((uint32_t)0x00000002)
6640 #define RTC_TSDR_DU_2 ((uint32_t)0x00000004)
6641 #define RTC_TSDR_DU_3 ((uint32_t)0x00000008)
6642
6643 /******************** Bits definition for RTC_TSSSR register ****************/
6644 #define RTC_TSSSR_SS ((uint32_t)0x0000FFFF)
6645
6646 /******************** Bits definition for RTC_CAL register *****************/
6647 #define RTC_CALR_CALP ((uint32_t)0x00008000)
6648 #define RTC_CALR_CALW8 ((uint32_t)0x00004000)
6649 #define RTC_CALR_CALW16 ((uint32_t)0x00002000)
6650 #define RTC_CALR_CALM ((uint32_t)0x000001FF)
6651 #define RTC_CALR_CALM_0 ((uint32_t)0x00000001)
6652 #define RTC_CALR_CALM_1 ((uint32_t)0x00000002)
6653 #define RTC_CALR_CALM_2 ((uint32_t)0x00000004)
6654 #define RTC_CALR_CALM_3 ((uint32_t)0x00000008)
6655 #define RTC_CALR_CALM_4 ((uint32_t)0x00000010)
6656 #define RTC_CALR_CALM_5 ((uint32_t)0x00000020)
6657 #define RTC_CALR_CALM_6 ((uint32_t)0x00000040)
6658 #define RTC_CALR_CALM_7 ((uint32_t)0x00000080)
6659 #define RTC_CALR_CALM_8 ((uint32_t)0x00000100)
6660
6661 /******************** Bits definition for RTC_TAFCR register ****************/
6662 #define RTC_TAFCR_ALARMOUTTYPE ((uint32_t)0x00040000)
6663 #define RTC_TAFCR_TAMPPUDIS ((uint32_t)0x00008000)
6664 #define RTC_TAFCR_TAMPPRCH ((uint32_t)0x00006000)
6665 #define RTC_TAFCR_TAMPPRCH_0 ((uint32_t)0x00002000)
6666 #define RTC_TAFCR_TAMPPRCH_1 ((uint32_t)0x00004000)
6667 #define RTC_TAFCR_TAMPFLT ((uint32_t)0x00001800)
6668 #define RTC_TAFCR_TAMPFLT_0 ((uint32_t)0x00000800)
6669 #define RTC_TAFCR_TAMPFLT_1 ((uint32_t)0x00001000)
6670 #define RTC_TAFCR_TAMPFREQ ((uint32_t)0x00000700)
6671 #define RTC_TAFCR_TAMPFREQ_0 ((uint32_t)0x00000100)
6672 #define RTC_TAFCR_TAMPFREQ_1 ((uint32_t)0x00000200)
6673 #define RTC_TAFCR_TAMPFREQ_2 ((uint32_t)0x00000400)
6674 #define RTC_TAFCR_TAMPTS ((uint32_t)0x00000080)
6675 #define RTC_TAFCR_TAMP3TRG ((uint32_t)0x00000040)
6676 #define RTC_TAFCR_TAMP3E ((uint32_t)0x00000020)
6677 #define RTC_TAFCR_TAMP2TRG ((uint32_t)0x00000010)
6678 #define RTC_TAFCR_TAMP2E ((uint32_t)0x00000008)
6679 #define RTC_TAFCR_TAMPIE ((uint32_t)0x00000004)
6680 #define RTC_TAFCR_TAMP1TRG ((uint32_t)0x00000002)
6681 #define RTC_TAFCR_TAMP1E ((uint32_t)0x00000001)
6682
6683 /******************** Bits definition for RTC_ALRMASSR register *************/
6684 #define RTC_ALRMASSR_MASKSS ((uint32_t)0x0F000000)
6685 #define RTC_ALRMASSR_MASKSS_0 ((uint32_t)0x01000000)
6686 #define RTC_ALRMASSR_MASKSS_1 ((uint32_t)0x02000000)
6687 #define RTC_ALRMASSR_MASKSS_2 ((uint32_t)0x04000000)
6688 #define RTC_ALRMASSR_MASKSS_3 ((uint32_t)0x08000000)
6689 #define RTC_ALRMASSR_SS ((uint32_t)0x00007FFF)
6690
6691 /******************** Bits definition for RTC_ALRMBSSR register *************/
6692 #define RTC_ALRMBSSR_MASKSS ((uint32_t)0x0F000000)
6693 #define RTC_ALRMBSSR_MASKSS_0 ((uint32_t)0x01000000)
6694 #define RTC_ALRMBSSR_MASKSS_1 ((uint32_t)0x02000000)
6695 #define RTC_ALRMBSSR_MASKSS_2 ((uint32_t)0x04000000)
6696 #define RTC_ALRMBSSR_MASKSS_3 ((uint32_t)0x08000000)
6697 #define RTC_ALRMBSSR_SS ((uint32_t)0x00007FFF)
6698
6699 /******************** Bits definition for RTC_BKP0R register ****************/
6700 #define RTC_BKP0R ((uint32_t)0xFFFFFFFF)
6701
6702 /******************** Bits definition for RTC_BKP1R register ****************/
6703 #define RTC_BKP1R ((uint32_t)0xFFFFFFFF)
6704
6705 /******************** Bits definition for RTC_BKP2R register ****************/
6706 #define RTC_BKP2R ((uint32_t)0xFFFFFFFF)
6707
6708 /******************** Bits definition for RTC_BKP3R register ****************/
6709 #define RTC_BKP3R ((uint32_t)0xFFFFFFFF)
6710
6711 /******************** Bits definition for RTC_BKP4R register ****************/
6712 #define RTC_BKP4R ((uint32_t)0xFFFFFFFF)
6713
6714 /******************** Bits definition for RTC_BKP5R register ****************/
6715 #define RTC_BKP5R ((uint32_t)0xFFFFFFFF)
6716
6717 /******************** Bits definition for RTC_BKP6R register ****************/
6718 #define RTC_BKP6R ((uint32_t)0xFFFFFFFF)
6719
6720 /******************** Bits definition for RTC_BKP7R register ****************/
6721 #define RTC_BKP7R ((uint32_t)0xFFFFFFFF)
6722
6723 /******************** Bits definition for RTC_BKP8R register ****************/
6724 #define RTC_BKP8R ((uint32_t)0xFFFFFFFF)
6725
6726 /******************** Bits definition for RTC_BKP9R register ****************/
6727 #define RTC_BKP9R ((uint32_t)0xFFFFFFFF)
6728
6729 /******************** Bits definition for RTC_BKP10R register ***************/
6730 #define RTC_BKP10R ((uint32_t)0xFFFFFFFF)
6731
6732 /******************** Bits definition for RTC_BKP11R register ***************/
6733 #define RTC_BKP11R ((uint32_t)0xFFFFFFFF)
6734
6735 /******************** Bits definition for RTC_BKP12R register ***************/
6736 #define RTC_BKP12R ((uint32_t)0xFFFFFFFF)
6737
6738 /******************** Bits definition for RTC_BKP13R register ***************/
6739 #define RTC_BKP13R ((uint32_t)0xFFFFFFFF)
6740
6741 /******************** Bits definition for RTC_BKP14R register ***************/
6742 #define RTC_BKP14R ((uint32_t)0xFFFFFFFF)
6743
6744 /******************** Bits definition for RTC_BKP15R register ***************/
6745 #define RTC_BKP15R ((uint32_t)0xFFFFFFFF)
6746
6747 /******************************************************************************/
6748 /* */
6749 /* Serial Peripheral Interface (SPI) */
6750 /* */
6751 /******************************************************************************/
6752 /******************* Bit definition for SPI_CR1 register ********************/
6753 #define SPI_CR1_CPHA ((uint16_t)0x0001) /*!< Clock Phase */
6754 #define SPI_CR1_CPOL ((uint16_t)0x0002) /*!< Clock Polarity */
6755 #define SPI_CR1_MSTR ((uint16_t)0x0004) /*!< Master Selection */
6756
6757 #define SPI_CR1_BR ((uint16_t)0x0038) /*!< BR[2:0] bits (Baud Rate Control) */
6758 #define SPI_CR1_BR_0 ((uint16_t)0x0008) /*!< Bit 0 */
6759 #define SPI_CR1_BR_1 ((uint16_t)0x0010) /*!< Bit 1 */
6760 #define SPI_CR1_BR_2 ((uint16_t)0x0020) /*!< Bit 2 */
6761
6762 #define SPI_CR1_SPE ((uint16_t)0x0040) /*!< SPI Enable */
6763 #define SPI_CR1_LSBFIRST ((uint16_t)0x0080) /*!< Frame Format */
6764 #define SPI_CR1_SSI ((uint16_t)0x0100) /*!< Internal slave select */
6765 #define SPI_CR1_SSM ((uint16_t)0x0200) /*!< Software slave management */
6766 #define SPI_CR1_RXONLY ((uint16_t)0x0400) /*!< Receive only */
6767 #define SPI_CR1_CRCL ((uint16_t)0x0800) /*!< CRC Length */
6768 #define SPI_CR1_CRCNEXT ((uint16_t)0x1000) /*!< Transmit CRC next */
6769 #define SPI_CR1_CRCEN ((uint16_t)0x2000) /*!< Hardware CRC calculation enable */
6770 #define SPI_CR1_BIDIOE ((uint16_t)0x4000) /*!< Output enable in bidirectional mode */
6771 #define SPI_CR1_BIDIMODE ((uint16_t)0x8000) /*!< Bidirectional data mode enable */
6772
6773 /******************* Bit definition for SPI_CR2 register ********************/
6774 #define SPI_CR2_RXDMAEN ((uint16_t)0x0001) /*!< Rx Buffer DMA Enable */
6775 #define SPI_CR2_TXDMAEN ((uint16_t)0x0002) /*!< Tx Buffer DMA Enable */
6776 #define SPI_CR2_SSOE ((uint16_t)0x0004) /*!< SS Output Enable */
6777 #define SPI_CR2_NSSP ((uint16_t)0x0008) /*!< NSS pulse management Enable */
6778 #define SPI_CR2_FRF ((uint16_t)0x0010) /*!< Frame Format Enable */
6779 #define SPI_CR2_ERRIE ((uint16_t)0x0020) /*!< Error Interrupt Enable */
6780 #define SPI_CR2_RXNEIE ((uint16_t)0x0040) /*!< RX buffer Not Empty Interrupt Enable */
6781 #define SPI_CR2_TXEIE ((uint16_t)0x0080) /*!< Tx buffer Empty Interrupt Enable */
6782
6783 #define SPI_CR2_DS ((uint16_t)0x0F00) /*!< DS[3:0] Data Size */
6784 #define SPI_CR2_DS_0 ((uint16_t)0x0100) /*!< Bit 0 */
6785 #define SPI_CR2_DS_1 ((uint16_t)0x0200) /*!< Bit 1 */
6786 #define SPI_CR2_DS_2 ((uint16_t)0x0400) /*!< Bit 2 */
6787 #define SPI_CR2_DS_3 ((uint16_t)0x0800) /*!< Bit 3 */
6788
6789 #define SPI_CR2_FRXTH ((uint16_t)0x1000) /*!< FIFO reception Threshold */
6790 #define SPI_CR2_LDMARX ((uint16_t)0x2000) /*!< Last DMA transfer for reception */
6791 #define SPI_CR2_LDMATX ((uint16_t)0x4000) /*!< Last DMA transfer for transmission */
6792
6793 /******************** Bit definition for SPI_SR register ********************/
6794 #define SPI_SR_RXNE ((uint16_t)0x0001) /*!< Receive buffer Not Empty */
6795 #define SPI_SR_TXE ((uint16_t)0x0002) /*!< Transmit buffer Empty */
6796 #define SPI_SR_CRCERR ((uint16_t)0x0010) /*!< CRC Error flag */
6797 #define SPI_SR_MODF ((uint16_t)0x0020) /*!< Mode fault */
6798 #define SPI_SR_OVR ((uint16_t)0x0040) /*!< Overrun flag */
6799 #define SPI_SR_BSY ((uint16_t)0x0080) /*!< Busy flag */
6800 #define SPI_SR_FRE ((uint16_t)0x0100) /*!< TI frame format error */
6801 #define SPI_SR_FRLVL ((uint16_t)0x0600) /*!< FIFO Reception Level */
6802 #define SPI_SR_FRLVL_0 ((uint16_t)0x0200) /*!< Bit 0 */
6803 #define SPI_SR_FRLVL_1 ((uint16_t)0x0400) /*!< Bit 1 */
6804 #define SPI_SR_FTLVL ((uint16_t)0x1800) /*!< FIFO Transmission Level */
6805 #define SPI_SR_FTLVL_0 ((uint16_t)0x0800) /*!< Bit 0 */
6806 #define SPI_SR_FTLVL_1 ((uint16_t)0x1000) /*!< Bit 1 */
6807
6808 /******************** Bit definition for SPI_DR register ********************/
6809 #define SPI_DR_DR ((uint16_t)0xFFFF) /*!< Data Register */
6810
6811 /******************* Bit definition for SPI_CRCPR register ******************/
6812 #define SPI_CRCPR_CRCPOLY ((uint16_t)0xFFFF) /*!< CRC polynomial register */
6813
6814 /****************** Bit definition for SPI_RXCRCR register ******************/
6815 #define SPI_RXCRCR_RXCRC ((uint16_t)0xFFFF) /*!< Rx CRC Register */
6816
6817 /****************** Bit definition for SPI_TXCRCR register ******************/
6818 #define SPI_TXCRCR_TXCRC ((uint16_t)0xFFFF) /*!< Tx CRC Register */
6819
6820 /****************** Bit definition for SPI_I2SCFGR register *****************/
6821 #define SPI_I2SCFGR_CHLEN ((uint16_t)0x0001) /*!<Channel length (number of bits per audio channel) */
6822
6823 #define SPI_I2SCFGR_DATLEN ((uint16_t)0x0006) /*!<DATLEN[1:0] bits (Data length to be transferred) */
6824 #define SPI_I2SCFGR_DATLEN_0 ((uint16_t)0x0002) /*!<Bit 0 */
6825 #define SPI_I2SCFGR_DATLEN_1 ((uint16_t)0x0004) /*!<Bit 1 */
6826
6827 #define SPI_I2SCFGR_CKPOL ((uint16_t)0x0008) /*!<steady state clock polarity */
6828
6829 #define SPI_I2SCFGR_I2SSTD ((uint16_t)0x0030) /*!<I2SSTD[1:0] bits (I2S standard selection) */
6830 #define SPI_I2SCFGR_I2SSTD_0 ((uint16_t)0x0010) /*!<Bit 0 */
6831 #define SPI_I2SCFGR_I2SSTD_1 ((uint16_t)0x0020) /*!<Bit 1 */
6832
6833 #define SPI_I2SCFGR_PCMSYNC ((uint16_t)0x0080) /*!<PCM frame synchronization */
6834
6835 #define SPI_I2SCFGR_I2SCFG ((uint16_t)0x0300) /*!<I2SCFG[1:0] bits (I2S configuration mode) */
6836 #define SPI_I2SCFGR_I2SCFG_0 ((uint16_t)0x0100) /*!<Bit 0 */
6837 #define SPI_I2SCFGR_I2SCFG_1 ((uint16_t)0x0200) /*!<Bit 1 */
6838
6839 #define SPI_I2SCFGR_I2SE ((uint16_t)0x0400) /*!<I2S Enable */
6840 #define SPI_I2SCFGR_I2SMOD ((uint16_t)0x0800) /*!<I2S mode selection */
6841
6842 /****************** Bit definition for SPI_I2SPR register *******************/
6843 #define SPI_I2SPR_I2SDIV ((uint16_t)0x00FF) /*!<I2S Linear prescaler */
6844 #define SPI_I2SPR_ODD ((uint16_t)0x0100) /*!<Odd factor for the prescaler */
6845 #define SPI_I2SPR_MCKOE ((uint16_t)0x0200) /*!<Master Clock Output Enable */
6846
6847 /******************************************************************************/
6848 /* */
6849 /* System Configuration(SYSCFG) */
6850 /* */
6851 /******************************************************************************/
6852 /***************** Bit definition for SYSCFG_CFGR1 register *****************/
6853 #define SYSCFG_CFGR1_MEM_MODE ((uint32_t)0x00000003) /*!< SYSCFG_Memory Remap Config */
6854 #define SYSCFG_CFGR1_MEM_MODE_0 ((uint32_t)0x00000001) /*!< Bit 0 */
6855 #define SYSCFG_CFGR1_MEM_MODE_1 ((uint32_t)0x00000002) /*!< Bit 1 */
6856 #define SYSCFG_CFGR1_USB_IT_RMP ((uint32_t)0x00000020) /*!< USB interrupt remap */
6857 #define SYSCFG_CFGR1_TIM1_ITR3_RMP ((uint32_t)0x00000040) /*!< Timer 1 ITR3 selection */
6858 #define SYSCFG_CFGR1_DAC1_TRIG1_RMP ((uint32_t)0x00000080) /*!< DAC1 Trigger1 remap */
6859 #define SYSCFG_CFGR1_ADC24_DMA_RMP ((uint32_t)0x00000100) /*!< ADC2 and ADC4 DMA remap */
6860 #define SYSCFG_CFGR1_TIM16_DMA_RMP ((uint32_t)0x00000800) /*!< Timer 16 DMA remap */
6861 #define SYSCFG_CFGR1_TIM17_DMA_RMP ((uint32_t)0x00001000) /*!< Timer 17 DMA remap */
6862 #define SYSCFG_CFGR1_TIM6DAC1Ch1_DMA_RMP ((uint32_t)0x00002000) /*!< Timer 6 / DAC1 CH1 DMA remap */
6863 #define SYSCFG_CFGR1_TIM7DAC1Ch2_DMA_RMP ((uint32_t)0x00004000) /*!< Timer 7 / DAC1 CH2 DMA remap */
6864 #define SYSCFG_CFGR1_DAC2Ch1_DMA_RMP ((uint32_t)0x00008000) /*!< DAC2 CH1 DMA remap */
6865 #define SYSCFG_CFGR1_I2C_PB6_FMP ((uint32_t)0x00010000) /*!< I2C PB6 Fast mode plus */
6866 #define SYSCFG_CFGR1_I2C_PB7_FMP ((uint32_t)0x00020000) /*!< I2C PB7 Fast mode plus */
6867 #define SYSCFG_CFGR1_I2C_PB8_FMP ((uint32_t)0x00040000) /*!< I2C PB8 Fast mode plus */
6868 #define SYSCFG_CFGR1_I2C_PB9_FMP ((uint32_t)0x00080000) /*!< I2C PB9 Fast mode plus */
6869 #define SYSCFG_CFGR1_I2C1_FMP ((uint32_t)0x00100000) /*!< I2C1 Fast mode plus */
6870 #define SYSCFG_CFGR1_I2C2_FMP ((uint32_t)0x00200000) /*!< I2C2 Fast mode plus */
6871 #define SYSCFG_CFGR1_ENCODER_MODE ((uint32_t)0x00C00000) /*!< Encoder Mode */
6872 #define SYSCFG_CFGR1_ENCODER_MODE_0 ((uint32_t)0x00400000) /*!< Encoder Mode 0 */
6873 #define SYSCFG_CFGR1_ENCODER_MODE_1 ((uint32_t)0x00800000) /*!< Encoder Mode 1 */
6874 #define SYSCFG_CFGR1_FPU_IE ((uint32_t)0xFC000000) /*!< Floating Point Unit Interrupt Enable */
6875 #define SYSCFG_CFGR1_FPU_IE_0 ((uint32_t)0x04000000) /*!< Floating Point Unit Interrupt Enable 0 */
6876 #define SYSCFG_CFGR1_FPU_IE_1 ((uint32_t)0x08000000) /*!< Floating Point Unit Interrupt Enable 1 */
6877 #define SYSCFG_CFGR1_FPU_IE_2 ((uint32_t)0x10000000) /*!< Floating Point Unit Interrupt Enable 2 */
6878 #define SYSCFG_CFGR1_FPU_IE_3 ((uint32_t)0x20000000) /*!< Floating Point Unit Interrupt Enable 3 */
6879 #define SYSCFG_CFGR1_FPU_IE_4 ((uint32_t)0x40000000) /*!< Floating Point Unit Interrupt Enable 4 */
6880 #define SYSCFG_CFGR1_FPU_IE_5 ((uint32_t)0x80000000) /*!< Floating Point Unit Interrupt Enable 5 */
6881 #define SYSCFG_CFGR1_DAC_TRIG_RMP SYSCFG_CFGR1_DAC1_TRIG1_RMP /*!< Old define maintained for legacy purpose */
6882 #define SYSCFG_CFGR1_TIM6DAC1 SYSCFG_CFGR1_TIM6DAC1Ch1_DMA_RMP /*!< Old define maintained for legacy purpose */
6883 #define SYSCFG_CFGR1_TIM7DAC2 SYSCFG_CFGR1_TIM7DAC1Ch2_DMA_RMP /*!< Old define maintained for legacy purpose */
6884 /***************** Bit definition for SYSCFG_RCR register *******************/
6885 #define SYSCFG_RCR_PAGE0 ((uint32_t)0x00000001) /*!< ICODE SRAM Write protection page 0 */
6886 #define SYSCFG_RCR_PAGE1 ((uint32_t)0x00000002) /*!< ICODE SRAM Write protection page 1 */
6887 #define SYSCFG_RCR_PAGE2 ((uint32_t)0x00000004) /*!< ICODE SRAM Write protection page 2 */
6888 #define SYSCFG_RCR_PAGE3 ((uint32_t)0x00000008) /*!< ICODE SRAM Write protection page 3 */
6889 #define SYSCFG_RCR_PAGE4 ((uint32_t)0x00000010) /*!< ICODE SRAM Write protection page 4 */
6890 #define SYSCFG_RCR_PAGE5 ((uint32_t)0x00000020) /*!< ICODE SRAM Write protection page 5 */
6891 #define SYSCFG_RCR_PAGE6 ((uint32_t)0x00000040) /*!< ICODE SRAM Write protection page 6 */
6892 #define SYSCFG_RCR_PAGE7 ((uint32_t)0x00000080) /*!< ICODE SRAM Write protection page 7 */
6893
6894 /***************** Bit definition for SYSCFG_EXTICR1 register ***************/
6895 #define SYSCFG_EXTICR1_EXTI0 ((uint16_t)0x000F) /*!< EXTI 0 configuration */
6896 #define SYSCFG_EXTICR1_EXTI1 ((uint16_t)0x00F0) /*!< EXTI 1 configuration */
6897 #define SYSCFG_EXTICR1_EXTI2 ((uint16_t)0x0F00) /*!< EXTI 2 configuration */
6898 #define SYSCFG_EXTICR1_EXTI3 ((uint16_t)0xF000) /*!< EXTI 3 configuration */
6899
6900 /**
6901 * @brief EXTI0 configuration
6902 */
6903 #define SYSCFG_EXTICR1_EXTI0_PA ((uint16_t)0x0000) /*!< PA[0] pin */
6904 #define SYSCFG_EXTICR1_EXTI0_PB ((uint16_t)0x0001) /*!< PB[0] pin */
6905 #define SYSCFG_EXTICR1_EXTI0_PC ((uint16_t)0x0002) /*!< PC[0] pin */
6906 #define SYSCFG_EXTICR1_EXTI0_PD ((uint16_t)0x0003) /*!< PD[0] pin */
6907 #define SYSCFG_EXTICR1_EXTI0_PE ((uint16_t)0x0004) /*!< PE[0] pin */
6908 #define SYSCFG_EXTICR1_EXTI0_PF ((uint16_t)0x0005) /*!< PF[0] pin */
6909
6910 /**
6911 * @brief EXTI1 configuration
6912 */
6913 #define SYSCFG_EXTICR1_EXTI1_PA ((uint16_t)0x0000) /*!< PA[1] pin */
6914 #define SYSCFG_EXTICR1_EXTI1_PB ((uint16_t)0x0010) /*!< PB[1] pin */
6915 #define SYSCFG_EXTICR1_EXTI1_PC ((uint16_t)0x0020) /*!< PC[1] pin */
6916 #define SYSCFG_EXTICR1_EXTI1_PD ((uint16_t)0x0030) /*!< PD[1] pin */
6917 #define SYSCFG_EXTICR1_EXTI1_PE ((uint16_t)0x0040) /*!< PE[1] pin */
6918 #define SYSCFG_EXTICR1_EXTI1_PF ((uint16_t)0x0050) /*!< PF[1] pin */
6919
6920 /**
6921 * @brief EXTI2 configuration
6922 */
6923 #define SYSCFG_EXTICR1_EXTI2_PA ((uint16_t)0x0000) /*!< PA[2] pin */
6924 #define SYSCFG_EXTICR1_EXTI2_PB ((uint16_t)0x0100) /*!< PB[2] pin */
6925 #define SYSCFG_EXTICR1_EXTI2_PC ((uint16_t)0x0200) /*!< PC[2] pin */
6926 #define SYSCFG_EXTICR1_EXTI2_PD ((uint16_t)0x0300) /*!< PD[2] pin */
6927 #define SYSCFG_EXTICR1_EXTI2_PE ((uint16_t)0x0400) /*!< PE[2] pin */
6928 #define SYSCFG_EXTICR1_EXTI2_PF ((uint16_t)0x0500) /*!< PF[2] pin */
6929
6930 /**
6931 * @brief EXTI3 configuration
6932 */
6933 #define SYSCFG_EXTICR1_EXTI3_PA ((uint16_t)0x0000) /*!< PA[3] pin */
6934 #define SYSCFG_EXTICR1_EXTI3_PB ((uint16_t)0x1000) /*!< PB[3] pin */
6935 #define SYSCFG_EXTICR1_EXTI3_PC ((uint16_t)0x2000) /*!< PC[3] pin */
6936 #define SYSCFG_EXTICR1_EXTI3_PD ((uint16_t)0x3000) /*!< PD[3] pin */
6937 #define SYSCFG_EXTICR1_EXTI3_PE ((uint16_t)0x4000) /*!< PE[3] pin */
6938
6939 /***************** Bit definition for SYSCFG_EXTICR2 register ***************/
6940 #define SYSCFG_EXTIRCR_EXTI4 ((uint16_t)0x000F) /*!< EXTI 4 configuration */
6941 #define SYSCFG_EXTIRCR_EXTI5 ((uint16_t)0x00F0) /*!< EXTI 5 configuration */
6942 #define SYSCFG_EXTIRCR_EXTI6 ((uint16_t)0x0F00) /*!< EXTI 6 configuration */
6943 #define SYSCFG_EXTIRCR_EXTI7 ((uint16_t)0xF000) /*!< EXTI 7 configuration */
6944
6945 /**
6946 * @brief EXTI4 configuration
6947 */
6948 #define SYSCFG_EXTIRCR_EXTI4_PA ((uint16_t)0x0000) /*!< PA[4] pin */
6949 #define SYSCFG_EXTIRCR_EXTI4_PB ((uint16_t)0x0001) /*!< PB[4] pin */
6950 #define SYSCFG_EXTIRCR_EXTI4_PC ((uint16_t)0x0002) /*!< PC[4] pin */
6951 #define SYSCFG_EXTIRCR_EXTI4_PD ((uint16_t)0x0003) /*!< PD[4] pin */
6952 #define SYSCFG_EXTIRCR_EXTI4_PE ((uint16_t)0x0004) /*!< PE[4] pin */
6953 #define SYSCFG_EXTIRCR_EXTI4_PF ((uint16_t)0x0005) /*!< PF[4] pin */
6954
6955 /**
6956 * @brief EXTI5 configuration
6957 */
6958 #define SYSCFG_EXTIRCR_EXTI5_PA ((uint16_t)0x0000) /*!< PA[5] pin */
6959 #define SYSCFG_EXTIRCR_EXTI5_PB ((uint16_t)0x0010) /*!< PB[5] pin */
6960 #define SYSCFG_EXTIRCR_EXTI5_PC ((uint16_t)0x0020) /*!< PC[5] pin */
6961 #define SYSCFG_EXTIRCR_EXTI5_PD ((uint16_t)0x0030) /*!< PD[5] pin */
6962 #define SYSCFG_EXTIRCR_EXTI5_PE ((uint16_t)0x0040) /*!< PE[5] pin */
6963 #define SYSCFG_EXTIRCR_EXTI5_PF ((uint16_t)0x0050) /*!< PF[5] pin */
6964
6965 /**
6966 * @brief EXTI6 configuration
6967 */
6968 #define SYSCFG_EXTIRCR_EXTI6_PA ((uint16_t)0x0000) /*!< PA[6] pin */
6969 #define SYSCFG_EXTIRCR_EXTI6_PB ((uint16_t)0x0100) /*!< PB[6] pin */
6970 #define SYSCFG_EXTIRCR_EXTI6_PC ((uint16_t)0x0200) /*!< PC[6] pin */
6971 #define SYSCFG_EXTIRCR_EXTI6_PD ((uint16_t)0x0300) /*!< PD[6] pin */
6972 #define SYSCFG_EXTIRCR_EXTI6_PE ((uint16_t)0x0400) /*!< PE[6] pin */
6973 #define SYSCFG_EXTIRCR_EXTI6_PF ((uint16_t)0x0500) /*!< PF[6] pin */
6974
6975 /**
6976 * @brief EXTI7 configuration
6977 */
6978 #define SYSCFG_EXTIRCR_EXTI7_PA ((uint16_t)0x0000) /*!< PA[7] pin */
6979 #define SYSCFG_EXTIRCR_EXTI7_PB ((uint16_t)0x1000) /*!< PB[7] pin */
6980 #define SYSCFG_EXTIRCR_EXTI7_PC ((uint16_t)0x2000) /*!< PC[7] pin */
6981 #define SYSCFG_EXTIRCR_EXTI7_PD ((uint16_t)0x3000) /*!< PD[7] pin */
6982 #define SYSCFG_EXTIRCR_EXTI7_PE ((uint16_t)0x4000) /*!< PE[7] pin */
6983
6984 /***************** Bit definition for SYSCFG_EXTICR3 register ***************/
6985 #define SYSCFG_EXTICR3_EXTI8 ((uint16_t)0x000F) /*!< EXTI 8 configuration */
6986 #define SYSCFG_EXTICR3_EXTI9 ((uint16_t)0x00F0) /*!< EXTI 9 configuration */
6987 #define SYSCFG_EXTICR3_EXTI10 ((uint16_t)0x0F00) /*!< EXTI 10 configuration */
6988 #define SYSCFG_EXTICR3_EXTI11 ((uint16_t)0xF000) /*!< EXTI 11 configuration */
6989
6990 /**
6991 * @brief EXTI8 configuration
6992 */
6993 #define SYSCFG_EXTICR3_EXTI8_PA ((uint16_t)0x0000) /*!< PA[8] pin */
6994 #define SYSCFG_EXTICR3_EXTI8_PB ((uint16_t)0x0001) /*!< PB[8] pin */
6995 #define SYSCFG_EXTICR3_EXTI8_PC ((uint16_t)0x0002) /*!< PC[8] pin */
6996 #define SYSCFG_EXTICR3_EXTI8_PD ((uint16_t)0x0003) /*!< PD[8] pin */
6997 #define SYSCFG_EXTICR3_EXTI8_PE ((uint16_t)0x0004) /*!< PE[8] pin */
6998
6999 /**
7000 * @brief EXTI9 configuration
7001 */
7002 #define SYSCFG_EXTICR3_EXTI9_PA ((uint16_t)0x0000) /*!< PA[9] pin */
7003 #define SYSCFG_EXTICR3_EXTI9_PB ((uint16_t)0x0010) /*!< PB[9] pin */
7004 #define SYSCFG_EXTICR3_EXTI9_PC ((uint16_t)0x0020) /*!< PC[9] pin */
7005 #define SYSCFG_EXTICR3_EXTI9_PD ((uint16_t)0x0030) /*!< PD[9] pin */
7006 #define SYSCFG_EXTICR3_EXTI9_PE ((uint16_t)0x0040) /*!< PE[9] pin */
7007 #define SYSCFG_EXTICR3_EXTI9_PF ((uint16_t)0x0050) /*!< PF[9] pin */
7008
7009 /**
7010 * @brief EXTI10 configuration
7011 */
7012 #define SYSCFG_EXTICR3_EXTI10_PA ((uint16_t)0x0000) /*!< PA[10] pin */
7013 #define SYSCFG_EXTICR3_EXTI10_PB ((uint16_t)0x0100) /*!< PB[10] pin */
7014 #define SYSCFG_EXTICR3_EXTI10_PC ((uint16_t)0x0200) /*!< PC[10] pin */
7015 #define SYSCFG_EXTICR3_EXTI10_PD ((uint16_t)0x0300) /*!< PD[10] pin */
7016 #define SYSCFG_EXTICR3_EXTI10_PE ((uint16_t)0x0400) /*!< PE[10] pin */
7017 #define SYSCFG_EXTICR3_EXTI10_PF ((uint16_t)0x0500) /*!< PF[10] pin */
7018
7019 /**
7020 * @brief EXTI11 configuration
7021 */
7022 #define SYSCFG_EXTICR3_EXTI11_PA ((uint16_t)0x0000) /*!< PA[11] pin */
7023 #define SYSCFG_EXTICR3_EXTI11_PB ((uint16_t)0x1000) /*!< PB[11] pin */
7024 #define SYSCFG_EXTICR3_EXTI11_PC ((uint16_t)0x2000) /*!< PC[11] pin */
7025 #define SYSCFG_EXTICR3_EXTI11_PD ((uint16_t)0x3000) /*!< PD[11] pin */
7026 #define SYSCFG_EXTICR3_EXTI11_PE ((uint16_t)0x4000) /*!< PE[11] pin */
7027
7028 /***************** Bit definition for SYSCFG_EXTICR4 register *****************/
7029 #define SYSCFG_EXTICR4_EXTI12 ((uint16_t)0x000F) /*!< EXTI 12 configuration */
7030 #define SYSCFG_EXTICR4_EXTI13 ((uint16_t)0x00F0) /*!< EXTI 13 configuration */
7031 #define SYSCFG_EXTICR4_EXTI14 ((uint16_t)0x0F00) /*!< EXTI 14 configuration */
7032 #define SYSCFG_EXTICR4_EXTI15 ((uint16_t)0xF000) /*!< EXTI 15 configuration */
7033
7034 /**
7035 * @brief EXTI12 configuration
7036 */
7037 #define SYSCFG_EXTICR4_EXTI12_PA ((uint16_t)0x0000) /*!< PA[12] pin */
7038 #define SYSCFG_EXTICR4_EXTI12_PB ((uint16_t)0x0001) /*!< PB[12] pin */
7039 #define SYSCFG_EXTICR4_EXTI12_PC ((uint16_t)0x0002) /*!< PC[12] pin */
7040 #define SYSCFG_EXTICR4_EXTI12_PD ((uint16_t)0x0003) /*!< PD[12] pin */
7041 #define SYSCFG_EXTICR4_EXTI12_PE ((uint16_t)0x0004) /*!< PE[12] pin */
7042
7043 /**
7044 * @brief EXTI13 configuration
7045 */
7046 #define SYSCFG_EXTICR4_EXTI13_PA ((uint16_t)0x0000) /*!< PA[13] pin */
7047 #define SYSCFG_EXTICR4_EXTI13_PB ((uint16_t)0x0010) /*!< PB[13] pin */
7048 #define SYSCFG_EXTICR4_EXTI13_PC ((uint16_t)0x0020) /*!< PC[13] pin */
7049 #define SYSCFG_EXTICR4_EXTI13_PD ((uint16_t)0x0030) /*!< PD[13] pin */
7050 #define SYSCFG_EXTICR4_EXTI13_PE ((uint16_t)0x0040) /*!< PE[13] pin */
7051
7052 /**
7053 * @brief EXTI14 configuration
7054 */
7055 #define SYSCFG_EXTICR4_EXTI14_PA ((uint16_t)0x0000) /*!< PA[14] pin */
7056 #define SYSCFG_EXTICR4_EXTI14_PB ((uint16_t)0x0100) /*!< PB[14] pin */
7057 #define SYSCFG_EXTICR4_EXTI14_PC ((uint16_t)0x0200) /*!< PC[14] pin */
7058 #define SYSCFG_EXTICR4_EXTI14_PD ((uint16_t)0x0300) /*!< PD[14] pin */
7059 #define SYSCFG_EXTICR4_EXTI14_PE ((uint16_t)0x0400) /*!< PE[14] pin */
7060
7061 /**
7062 * @brief EXTI15 configuration
7063 */
7064 #define SYSCFG_EXTICR4_EXTI15_PA ((uint16_t)0x0000) /*!< PA[15] pin */
7065 #define SYSCFG_EXTICR4_EXTI15_PB ((uint16_t)0x1000) /*!< PB[15] pin */
7066 #define SYSCFG_EXTICR4_EXTI15_PC ((uint16_t)0x2000) /*!< PC[15] pin */
7067 #define SYSCFG_EXTICR4_EXTI15_PD ((uint16_t)0x3000) /*!< PD[15] pin */
7068 #define SYSCFG_EXTICR4_EXTI15_PE ((uint16_t)0x4000) /*!< PE[15] pin */
7069
7070 /***************** Bit definition for SYSCFG_CFGR2 register *****************/
7071 #define SYSCFG_CFGR2_LOCKUP_LOCK ((uint32_t)0x00000001) /*!< Enables and locks the PVD connection with Timer1/8/15/16/17 Break Input and also the PVD_EN and PVDSEL[2:0] bits of the Power Control Interface */
7072 #define SYSCFG_CFGR2_SRAM_PARITY_LOCK ((uint32_t)0x00000002) /*!< Enables and locks the SRAM_PARITY error signal with Break Input of TIMER1/8/15/16/17 */
7073 #define SYSCFG_CFGR2_PVD_LOCK ((uint32_t)0x00000004) /*!< Enables and locks the LOCKUP (Hardfault) output of CortexM4 with Break Input of TIMER1/8/15/16/17 */
7074 #define SYSCFG_CFGR2_BYP_ADDR_PAR ((uint32_t)0x00000010) /*!< Disables the address parity check on RAM */
7075 #define SYSCFG_CFGR2_SRAM_PE ((uint32_t)0x00000100) /*!< SRAM Parity error flag */
7076
7077 /***************** Bit definition for SYSCFG_CFGR3 register *****************/
7078 #define SYSCFG_CFGR3_SPI1_RX_DMA_RMP ((uint32_t)0x00000003) /*!< SPI1 RX DMA remap */
7079 #define SYSCFG_CFGR3_SPI1_RX_DMA_RMP_0 ((uint32_t)0x00000001) /*!< SPI1 RX DMA remap bit 0 */
7080 #define SYSCFG_CFGR3_SPI1_RX_DMA_RMP_1 ((uint32_t)0x00000002) /*!< SPI1 RX DMA remap bit 1 */
7081 #define SYSCFG_CFGR3_SPI1_TX_DMA_RMP ((uint32_t)0x0000000C) /*!< SPI1 TX DMA remap */
7082 #define SYSCFG_CFGR3_SPI1_TX_DMA_RMP_0 ((uint32_t)0x00000004) /*!< SPI1 TX DMA remap bit 0 */
7083 #define SYSCFG_CFGR3_SPI1_TX_DMA_RMP_1 ((uint32_t)0x00000008) /*!< SPI1 TX DMA remap bit 1 */
7084 #define SYSCFG_CFGR3_I2C1_RX_DMA_RMP ((uint32_t)0x00000030) /*!< I2C1 RX DMA remap */
7085 #define SYSCFG_CFGR3_I2C1_RX_DMA_RMP_0 ((uint32_t)0x00000010) /*!< I2C1 RX DMA remap bit 0 */
7086 #define SYSCFG_CFGR3_I2C1_RX_DMA_RMP_1 ((uint32_t)0x00000020) /*!< I2C1 RX DMA remap bit 1 */
7087 #define SYSCFG_CFGR3_I2C1_TX_DMA_RMP ((uint32_t)0x000000C0) /*!< I2C1 RX DMA remap */
7088 #define SYSCFG_CFGR3_I2C1_TX_DMA_RMP_0 ((uint32_t)0x00000040) /*!< I2C1 TX DMA remap bit 0 */
7089 #define SYSCFG_CFGR3_I2C1_TX_DMA_RMP_1 ((uint32_t)0x00000080) /*!< I2C1 TX DMA remap bit 1 */
7090 #define SYSCFG_CFGR3_ADC2_DMA_RMP ((uint32_t)0x00000300) /*!< ADC2 DMA remap */
7091 #define SYSCFG_CFGR3_ADC2_DMA_RMP_0 ((uint32_t)0x00000100) /*!< ADC2 DMA remap bit 0 */
7092 #define SYSCFG_CFGR3_ADC2_DMA_RMP_1 ((uint32_t)0x00000200) /*!< ADC2 DMA remap bit 1 */
7093 #define SYSCFG_CFGR3_DAC1_TRG3_RMP ((uint32_t)0x00010000) /*!< DAC1 TRG3 remap */
7094 #define SYSCFG_CFGR3_DAC1_TRG5_RMP ((uint32_t)0x00020000) /*!< DAC1 TRG5 remap */
7095
7096 /******************************************************************************/
7097 /* */
7098 /* TIM */
7099 /* */
7100 /******************************************************************************/
7101 /******************* Bit definition for TIM_CR1 register ********************/
7102 #define TIM_CR1_CEN ((uint16_t)0x0001) /*!<Counter enable */
7103 #define TIM_CR1_UDIS ((uint16_t)0x0002) /*!<Update disable */
7104 #define TIM_CR1_URS ((uint16_t)0x0004) /*!<Update request source */
7105 #define TIM_CR1_OPM ((uint16_t)0x0008) /*!<One pulse mode */
7106 #define TIM_CR1_DIR ((uint16_t)0x0010) /*!<Direction */
7107
7108 #define TIM_CR1_CMS ((uint16_t)0x0060) /*!<CMS[1:0] bits (Center-aligned mode selection) */
7109 #define TIM_CR1_CMS_0 ((uint16_t)0x0020) /*!<Bit 0 */
7110 #define TIM_CR1_CMS_1 ((uint16_t)0x0040) /*!<Bit 1 */
7111
7112 #define TIM_CR1_ARPE ((uint16_t)0x0080) /*!<Auto-reload preload enable */
7113
7114 #define TIM_CR1_CKD ((uint16_t)0x0300) /*!<CKD[1:0] bits (clock division) */
7115 #define TIM_CR1_CKD_0 ((uint16_t)0x0100) /*!<Bit 0 */
7116 #define TIM_CR1_CKD_1 ((uint16_t)0x0200) /*!<Bit 1 */
7117
7118 #define TIM_CR1_UIFREMAP ((uint16_t)0x0800) /*!<Update interrupt flag remap */
7119
7120 /******************* Bit definition for TIM_CR2 register ********************/
7121 #define TIM_CR2_CCPC ((uint32_t)0x00000001) /*!<Capture/Compare Preloaded Control */
7122 #define TIM_CR2_CCUS ((uint32_t)0x00000004) /*!<Capture/Compare Control Update Selection */
7123 #define TIM_CR2_CCDS ((uint32_t)0x00000008) /*!<Capture/Compare DMA Selection */
7124
7125 #define TIM_CR2_MMS ((uint32_t)0x00000070) /*!<MMS[2:0] bits (Master Mode Selection) */
7126 #define TIM_CR2_MMS_0 ((uint32_t)0x00000010) /*!<Bit 0 */
7127 #define TIM_CR2_MMS_1 ((uint32_t)0x00000020) /*!<Bit 1 */
7128 #define TIM_CR2_MMS_2 ((uint32_t)0x00000040) /*!<Bit 2 */
7129
7130 #define TIM_CR2_TI1S ((uint32_t)0x00000080) /*!<TI1 Selection */
7131 #define TIM_CR2_OIS1 ((uint32_t)0x00000100) /*!<Output Idle state 1 (OC1 output) */
7132 #define TIM_CR2_OIS1N ((uint32_t)0x00000200) /*!<Output Idle state 1 (OC1N output) */
7133 #define TIM_CR2_OIS2 ((uint32_t)0x00000400) /*!<Output Idle state 2 (OC2 output) */
7134 #define TIM_CR2_OIS2N ((uint32_t)0x00000800) /*!<Output Idle state 2 (OC2N output) */
7135 #define TIM_CR2_OIS3 ((uint32_t)0x00001000) /*!<Output Idle state 3 (OC3 output) */
7136 #define TIM_CR2_OIS3N ((uint32_t)0x00002000) /*!<Output Idle state 3 (OC3N output) */
7137 #define TIM_CR2_OIS4 ((uint32_t)0x00004000) /*!<Output Idle state 4 (OC4 output) */
7138 #define TIM_CR2_OIS5 ((uint32_t)0x00010000) /*!<Output Idle state 4 (OC4 output) */
7139 #define TIM_CR2_OIS6 ((uint32_t)0x00020000) /*!<Output Idle state 4 (OC4 output) */
7140
7141 #define TIM_CR2_MMS2 ((uint32_t)0x00F00000) /*!<MMS[2:0] bits (Master Mode Selection) */
7142 #define TIM_CR2_MMS2_0 ((uint32_t)0x00100000) /*!<Bit 0 */
7143 #define TIM_CR2_MMS2_1 ((uint32_t)0x00200000) /*!<Bit 1 */
7144 #define TIM_CR2_MMS2_2 ((uint32_t)0x00400000) /*!<Bit 2 */
7145 #define TIM_CR2_MMS2_3 ((uint32_t)0x00800000) /*!<Bit 2 */
7146
7147 /******************* Bit definition for TIM_SMCR register *******************/
7148 #define TIM_SMCR_SMS ((uint32_t)0x00010007) /*!<SMS[2:0] bits (Slave mode selection) */
7149 #define TIM_SMCR_SMS_0 ((uint32_t)0x00000001) /*!<Bit 0 */
7150 #define TIM_SMCR_SMS_1 ((uint32_t)0x00000002) /*!<Bit 1 */
7151 #define TIM_SMCR_SMS_2 ((uint32_t)0x00000004) /*!<Bit 2 */
7152 #define TIM_SMCR_SMS_3 ((uint32_t)0x00010000) /*!<Bit 3 */
7153
7154 #define TIM_SMCR_OCCS ((uint32_t)0x00000008) /*!< OCREF clear selection */
7155
7156 #define TIM_SMCR_TS ((uint32_t)0x00000070) /*!<TS[2:0] bits (Trigger selection) */
7157 #define TIM_SMCR_TS_0 ((uint32_t)0x00000010) /*!<Bit 0 */
7158 #define TIM_SMCR_TS_1 ((uint32_t)0x00000020) /*!<Bit 1 */
7159 #define TIM_SMCR_TS_2 ((uint32_t)0x00000040) /*!<Bit 2 */
7160
7161 #define TIM_SMCR_MSM ((uint32_t)0x00000080) /*!<Master/slave mode */
7162
7163 #define TIM_SMCR_ETF ((uint32_t)0x00000F00) /*!<ETF[3:0] bits (External trigger filter) */
7164 #define TIM_SMCR_ETF_0 ((uint32_t)0x00000100) /*!<Bit 0 */
7165 #define TIM_SMCR_ETF_1 ((uint32_t)0x00000200) /*!<Bit 1 */
7166 #define TIM_SMCR_ETF_2 ((uint32_t)0x00000400) /*!<Bit 2 */
7167 #define TIM_SMCR_ETF_3 ((uint32_t)0x00000800) /*!<Bit 3 */
7168
7169 #define TIM_SMCR_ETPS ((uint32_t)0x00003000) /*!<ETPS[1:0] bits (External trigger prescaler) */
7170 #define TIM_SMCR_ETPS_0 ((uint32_t)0x00001000) /*!<Bit 0 */
7171 #define TIM_SMCR_ETPS_1 ((uint32_t)0x00002000) /*!<Bit 1 */
7172
7173 #define TIM_SMCR_ECE ((uint32_t)0x00004000) /*!<External clock enable */
7174 #define TIM_SMCR_ETP ((uint32_t)0x00008000) /*!<External trigger polarity */
7175
7176 /******************* Bit definition for TIM_DIER register *******************/
7177 #define TIM_DIER_UIE ((uint16_t)0x0001) /*!<Update interrupt enable */
7178 #define TIM_DIER_CC1IE ((uint16_t)0x0002) /*!<Capture/Compare 1 interrupt enable */
7179 #define TIM_DIER_CC2IE ((uint16_t)0x0004) /*!<Capture/Compare 2 interrupt enable */
7180 #define TIM_DIER_CC3IE ((uint16_t)0x0008) /*!<Capture/Compare 3 interrupt enable */
7181 #define TIM_DIER_CC4IE ((uint16_t)0x0010) /*!<Capture/Compare 4 interrupt enable */
7182 #define TIM_DIER_COMIE ((uint16_t)0x0020) /*!<COM interrupt enable */
7183 #define TIM_DIER_TIE ((uint16_t)0x0040) /*!<Trigger interrupt enable */
7184 #define TIM_DIER_BIE ((uint16_t)0x0080) /*!<Break interrupt enable */
7185 #define TIM_DIER_UDE ((uint16_t)0x0100) /*!<Update DMA request enable */
7186 #define TIM_DIER_CC1DE ((uint16_t)0x0200) /*!<Capture/Compare 1 DMA request enable */
7187 #define TIM_DIER_CC2DE ((uint16_t)0x0400) /*!<Capture/Compare 2 DMA request enable */
7188 #define TIM_DIER_CC3DE ((uint16_t)0x0800) /*!<Capture/Compare 3 DMA request enable */
7189 #define TIM_DIER_CC4DE ((uint16_t)0x1000) /*!<Capture/Compare 4 DMA request enable */
7190 #define TIM_DIER_COMDE ((uint16_t)0x2000) /*!<COM DMA request enable */
7191 #define TIM_DIER_TDE ((uint16_t)0x4000) /*!<Trigger DMA request enable */
7192
7193 /******************** Bit definition for TIM_SR register ********************/
7194 #define TIM_SR_UIF ((uint32_t)0x00000001) /*!<Update interrupt Flag */
7195 #define TIM_SR_CC1IF ((uint32_t)0x00000002) /*!<Capture/Compare 1 interrupt Flag */
7196 #define TIM_SR_CC2IF ((uint32_t)0x00000004) /*!<Capture/Compare 2 interrupt Flag */
7197 #define TIM_SR_CC3IF ((uint32_t)0x00000008) /*!<Capture/Compare 3 interrupt Flag */
7198 #define TIM_SR_CC4IF ((uint32_t)0x00000010) /*!<Capture/Compare 4 interrupt Flag */
7199 #define TIM_SR_COMIF ((uint32_t)0x00000020) /*!<COM interrupt Flag */
7200 #define TIM_SR_TIF ((uint32_t)0x00000040) /*!<Trigger interrupt Flag */
7201 #define TIM_SR_BIF ((uint32_t)0x00000080) /*!<Break interrupt Flag */
7202 #define TIM_SR_B2IF ((uint32_t)0x00000100) /*!<Break2 interrupt Flag */
7203 #define TIM_SR_CC1OF ((uint32_t)0x00000200) /*!<Capture/Compare 1 Over capture Flag */
7204 #define TIM_SR_CC2OF ((uint32_t)0x00000400) /*!<Capture/Compare 2 Over capture Flag */
7205 #define TIM_SR_CC3OF ((uint32_t)0x00000800) /*!<Capture/Compare 3 Over capture Flag */
7206 #define TIM_SR_CC4OF ((uint32_t)0x00001000) /*!<Capture/Compare 4 Over capture Flag */
7207 #define TIM_SR_CC5IF ((uint32_t)0x00010000) /*!<Capture/Compare 5 interrupt Flag */
7208 #define TIM_SR_CC6IF ((uint32_t)0x00020000) /*!<Capture/Compare 6 interrupt Flag */
7209
7210
7211 /******************* Bit definition for TIM_EGR register ********************/
7212 #define TIM_EGR_UG ((uint16_t)0x0001) /*!<Update Generation */
7213 #define TIM_EGR_CC1G ((uint16_t)0x0002) /*!<Capture/Compare 1 Generation */
7214 #define TIM_EGR_CC2G ((uint16_t)0x0004) /*!<Capture/Compare 2 Generation */
7215 #define TIM_EGR_CC3G ((uint16_t)0x0008) /*!<Capture/Compare 3 Generation */
7216 #define TIM_EGR_CC4G ((uint16_t)0x0010) /*!<Capture/Compare 4 Generation */
7217 #define TIM_EGR_COMG ((uint16_t)0x0020) /*!<Capture/Compare Control Update Generation */
7218 #define TIM_EGR_TG ((uint16_t)0x0040) /*!<Trigger Generation */
7219 #define TIM_EGR_BG ((uint16_t)0x0080) /*!<Break Generation */
7220 #define TIM_EGR_B2G ((uint16_t)0x0100) /*!<Break Generation */
7221
7222
7223 /****************** Bit definition for TIM_CCMR1 register *******************/
7224 #define TIM_CCMR1_CC1S ((uint32_t)0x00000003) /*!<CC1S[1:0] bits (Capture/Compare 1 Selection) */
7225 #define TIM_CCMR1_CC1S_0 ((uint32_t)0x00000001) /*!<Bit 0 */
7226 #define TIM_CCMR1_CC1S_1 ((uint32_t)0x00000002) /*!<Bit 1 */
7227
7228 #define TIM_CCMR1_OC1FE ((uint32_t)0x00000004) /*!<Output Compare 1 Fast enable */
7229 #define TIM_CCMR1_OC1PE ((uint32_t)0x00000008) /*!<Output Compare 1 Preload enable */
7230
7231 #define TIM_CCMR1_OC1M ((uint32_t)0x00010070) /*!<OC1M[2:0] bits (Output Compare 1 Mode) */
7232 #define TIM_CCMR1_OC1M_0 ((uint32_t)0x00000010) /*!<Bit 0 */
7233 #define TIM_CCMR1_OC1M_1 ((uint32_t)0x00000020) /*!<Bit 1 */
7234 #define TIM_CCMR1_OC1M_2 ((uint32_t)0x00000040) /*!<Bit 2 */
7235 #define TIM_CCMR1_OC1M_3 ((uint32_t)0x00010000) /*!<Bit 3 */
7236
7237 #define TIM_CCMR1_OC1CE ((uint32_t)0x00000080) /*!<Output Compare 1Clear Enable */
7238
7239 #define TIM_CCMR1_CC2S ((uint32_t)0x00000300) /*!<CC2S[1:0] bits (Capture/Compare 2 Selection) */
7240 #define TIM_CCMR1_CC2S_0 ((uint32_t)0x00000100) /*!<Bit 0 */
7241 #define TIM_CCMR1_CC2S_1 ((uint32_t)0x00000200) /*!<Bit 1 */
7242
7243 #define TIM_CCMR1_OC2FE ((uint32_t)0x00000400) /*!<Output Compare 2 Fast enable */
7244 #define TIM_CCMR1_OC2PE ((uint32_t)0x00000800) /*!<Output Compare 2 Preload enable */
7245
7246 #define TIM_CCMR1_OC2M ((uint32_t)0x01007000) /*!<OC2M[2:0] bits (Output Compare 2 Mode) */
7247 #define TIM_CCMR1_OC2M_0 ((uint32_t)0x00001000) /*!<Bit 0 */
7248 #define TIM_CCMR1_OC2M_1 ((uint32_t)0x00002000) /*!<Bit 1 */
7249 #define TIM_CCMR1_OC2M_2 ((uint32_t)0x00004000) /*!<Bit 2 */
7250 #define TIM_CCMR1_OC2M_3 ((uint32_t)0x01000000) /*!<Bit 3 */
7251
7252 #define TIM_CCMR1_OC2CE ((uint32_t)0x00008000) /*!<Output Compare 2 Clear Enable */
7253
7254 /*----------------------------------------------------------------------------*/
7255
7256 #define TIM_CCMR1_IC1PSC ((uint32_t)0x0000000C) /*!<IC1PSC[1:0] bits (Input Capture 1 Prescaler) */
7257 #define TIM_CCMR1_IC1PSC_0 ((uint32_t)0x00000004) /*!<Bit 0 */
7258 #define TIM_CCMR1_IC1PSC_1 ((uint32_t)0x00000008) /*!<Bit 1 */
7259
7260 #define TIM_CCMR1_IC1F ((uint32_t)0x000000F0) /*!<IC1F[3:0] bits (Input Capture 1 Filter) */
7261 #define TIM_CCMR1_IC1F_0 ((uint32_t)0x00000010) /*!<Bit 0 */
7262 #define TIM_CCMR1_IC1F_1 ((uint32_t)0x00000020) /*!<Bit 1 */
7263 #define TIM_CCMR1_IC1F_2 ((uint32_t)0x00000040) /*!<Bit 2 */
7264 #define TIM_CCMR1_IC1F_3 ((uint32_t)0x00000080) /*!<Bit 3 */
7265
7266 #define TIM_CCMR1_IC2PSC ((uint32_t)0x00000C00) /*!<IC2PSC[1:0] bits (Input Capture 2 Prescaler) */
7267 #define TIM_CCMR1_IC2PSC_0 ((uint32_t)0x00000400) /*!<Bit 0 */
7268 #define TIM_CCMR1_IC2PSC_1 ((uint32_t)0x00000800) /*!<Bit 1 */
7269
7270 #define TIM_CCMR1_IC2F ((uint32_t)0x0000F000) /*!<IC2F[3:0] bits (Input Capture 2 Filter) */
7271 #define TIM_CCMR1_IC2F_0 ((uint32_t)0x00001000) /*!<Bit 0 */
7272 #define TIM_CCMR1_IC2F_1 ((uint32_t)0x00002000) /*!<Bit 1 */
7273 #define TIM_CCMR1_IC2F_2 ((uint32_t)0x00004000) /*!<Bit 2 */
7274 #define TIM_CCMR1_IC2F_3 ((uint32_t)0x00008000) /*!<Bit 3 */
7275
7276 /****************** Bit definition for TIM_CCMR2 register *******************/
7277 #define TIM_CCMR2_CC3S ((uint32_t)0x00000003) /*!<CC3S[1:0] bits (Capture/Compare 3 Selection) */
7278 #define TIM_CCMR2_CC3S_0 ((uint32_t)0x00000001) /*!<Bit 0 */
7279 #define TIM_CCMR2_CC3S_1 ((uint32_t)0x00000002) /*!<Bit 1 */
7280
7281 #define TIM_CCMR2_OC3FE ((uint32_t)0x00000004) /*!<Output Compare 3 Fast enable */
7282 #define TIM_CCMR2_OC3PE ((uint32_t)0x00000008) /*!<Output Compare 3 Preload enable */
7283
7284 #define TIM_CCMR2_OC3M ((uint32_t)0x00000070) /*!<OC3M[2:0] bits (Output Compare 3 Mode) */
7285 #define TIM_CCMR2_OC3M_0 ((uint32_t)0x00000010) /*!<Bit 0 */
7286 #define TIM_CCMR2_OC3M_1 ((uint32_t)0x00000020) /*!<Bit 1 */
7287 #define TIM_CCMR2_OC3M_2 ((uint32_t)0x00000040) /*!<Bit 2 */
7288 #define TIM_CCMR2_OC3M_3 ((uint32_t)0x00010000) /*!<Bit 3 */
7289
7290 #define TIM_CCMR2_OC3CE ((uint32_t)0x00000080) /*!<Output Compare 3 Clear Enable */
7291
7292 #define TIM_CCMR2_CC4S ((uint32_t)0x00000300) /*!<CC4S[1:0] bits (Capture/Compare 4 Selection) */
7293 #define TIM_CCMR2_CC4S_0 ((uint32_t)0x00000100) /*!<Bit 0 */
7294 #define TIM_CCMR2_CC4S_1 ((uint32_t)0x00000200) /*!<Bit 1 */
7295
7296 #define TIM_CCMR2_OC4FE ((uint32_t)0x00000400) /*!<Output Compare 4 Fast enable */
7297 #define TIM_CCMR2_OC4PE ((uint32_t)0x00000800) /*!<Output Compare 4 Preload enable */
7298
7299 #define TIM_CCMR2_OC4M ((uint32_t)0x00007000) /*!<OC4M[2:0] bits (Output Compare 4 Mode) */
7300 #define TIM_CCMR2_OC4M_0 ((uint32_t)0x00001000) /*!<Bit 0 */
7301 #define TIM_CCMR2_OC4M_1 ((uint32_t)0x00002000) /*!<Bit 1 */
7302 #define TIM_CCMR2_OC4M_2 ((uint32_t)0x00004000) /*!<Bit 2 */
7303 #define TIM_CCMR2_OC4M_3 ((uint32_t)0x00100000) /*!<Bit 3 */
7304
7305 #define TIM_CCMR2_OC4CE ((uint32_t)0x00008000) /*!<Output Compare 4 Clear Enable */
7306
7307 /*----------------------------------------------------------------------------*/
7308
7309 #define TIM_CCMR2_IC3PSC ((uint16_t)0x0000000C) /*!<IC3PSC[1:0] bits (Input Capture 3 Prescaler) */
7310 #define TIM_CCMR2_IC3PSC_0 ((uint16_t)0x00000004) /*!<Bit 0 */
7311 #define TIM_CCMR2_IC3PSC_1 ((uint16_t)0x00000008) /*!<Bit 1 */
7312
7313 #define TIM_CCMR2_IC3F ((uint16_t)0x000000F0) /*!<IC3F[3:0] bits (Input Capture 3 Filter) */
7314 #define TIM_CCMR2_IC3F_0 ((uint16_t)0x00000010) /*!<Bit 0 */
7315 #define TIM_CCMR2_IC3F_1 ((uint16_t)0x00000020) /*!<Bit 1 */
7316 #define TIM_CCMR2_IC3F_2 ((uint16_t)0x00000040) /*!<Bit 2 */
7317 #define TIM_CCMR2_IC3F_3 ((uint16_t)0x00000080) /*!<Bit 3 */
7318
7319 #define TIM_CCMR2_IC4PSC ((uint16_t)0x00000C00) /*!<IC4PSC[1:0] bits (Input Capture 4 Prescaler) */
7320 #define TIM_CCMR2_IC4PSC_0 ((uint16_t)0x00000400) /*!<Bit 0 */
7321 #define TIM_CCMR2_IC4PSC_1 ((uint16_t)0x00000800) /*!<Bit 1 */
7322
7323 #define TIM_CCMR2_IC4F ((uint16_t)0x0000F000) /*!<IC4F[3:0] bits (Input Capture 4 Filter) */
7324 #define TIM_CCMR2_IC4F_0 ((uint16_t)0x00001000) /*!<Bit 0 */
7325 #define TIM_CCMR2_IC4F_1 ((uint16_t)0x00002000) /*!<Bit 1 */
7326 #define TIM_CCMR2_IC4F_2 ((uint16_t)0x00004000) /*!<Bit 2 */
7327 #define TIM_CCMR2_IC4F_3 ((uint16_t)0x00008000) /*!<Bit 3 */
7328
7329 /******************* Bit definition for TIM_CCER register *******************/
7330 #define TIM_CCER_CC1E ((uint32_t)0x00000001) /*!<Capture/Compare 1 output enable */
7331 #define TIM_CCER_CC1P ((uint32_t)0x00000002) /*!<Capture/Compare 1 output Polarity */
7332 #define TIM_CCER_CC1NE ((uint32_t)0x00000004) /*!<Capture/Compare 1 Complementary output enable */
7333 #define TIM_CCER_CC1NP ((uint32_t)0x00000008) /*!<Capture/Compare 1 Complementary output Polarity */
7334 #define TIM_CCER_CC2E ((uint32_t)0x00000010) /*!<Capture/Compare 2 output enable */
7335 #define TIM_CCER_CC2P ((uint32_t)0x00000020) /*!<Capture/Compare 2 output Polarity */
7336 #define TIM_CCER_CC2NE ((uint32_t)0x00000040) /*!<Capture/Compare 2 Complementary output enable */
7337 #define TIM_CCER_CC2NP ((uint32_t)0x00000080) /*!<Capture/Compare 2 Complementary output Polarity */
7338 #define TIM_CCER_CC3E ((uint32_t)0x00000100) /*!<Capture/Compare 3 output enable */
7339 #define TIM_CCER_CC3P ((uint32_t)0x00000200) /*!<Capture/Compare 3 output Polarity */
7340 #define TIM_CCER_CC3NE ((uint32_t)0x00000400) /*!<Capture/Compare 3 Complementary output enable */
7341 #define TIM_CCER_CC3NP ((uint32_t)0x00000800) /*!<Capture/Compare 3 Complementary output Polarity */
7342 #define TIM_CCER_CC4E ((uint32_t)0x00001000) /*!<Capture/Compare 4 output enable */
7343 #define TIM_CCER_CC4P ((uint32_t)0x00002000) /*!<Capture/Compare 4 output Polarity */
7344 #define TIM_CCER_CC4NP ((uint32_t)0x00008000) /*!<Capture/Compare 4 Complementary output Polarity */
7345 #define TIM_CCER_CC5E ((uint32_t)0x00010000) /*!<Capture/Compare 5 output enable */
7346 #define TIM_CCER_CC5P ((uint32_t)0x00020000) /*!<Capture/Compare 5 output Polarity */
7347 #define TIM_CCER_CC6E ((uint32_t)0x00100000) /*!<Capture/Compare 6 output enable */
7348 #define TIM_CCER_CC6P ((uint32_t)0x00200000) /*!<Capture/Compare 6 output Polarity */
7349 /******************* Bit definition for TIM_CNT register ********************/
7350 #define TIM_CNT_CNT ((uint32_t)0xFFFFFFFF) /*!<Counter Value */
7351 #define TIM_CNT_UIFCPY ((uint32_t)0x80000000) /*!<Update interrupt flag copy */
7352 /******************* Bit definition for TIM_PSC register ********************/
7353 #define TIM_PSC_PSC ((uint16_t)0xFFFF) /*!<Prescaler Value */
7354
7355 /******************* Bit definition for TIM_ARR register ********************/
7356 #define TIM_ARR_ARR ((uint32_t)0xFFFFFFFF) /*!<actual auto-reload Value */
7357
7358 /******************* Bit definition for TIM_RCR register ********************/
7359 #define TIM_RCR_REP ((uint8_t)0xFF) /*!<Repetition Counter Value */
7360
7361 /******************* Bit definition for TIM_CCR1 register *******************/
7362 #define TIM_CCR1_CCR1 ((uint16_t)0xFFFF) /*!<Capture/Compare 1 Value */
7363
7364 /******************* Bit definition for TIM_CCR2 register *******************/
7365 #define TIM_CCR2_CCR2 ((uint16_t)0xFFFF) /*!<Capture/Compare 2 Value */
7366
7367 /******************* Bit definition for TIM_CCR3 register *******************/
7368 #define TIM_CCR3_CCR3 ((uint16_t)0xFFFF) /*!<Capture/Compare 3 Value */
7369
7370 /******************* Bit definition for TIM_CCR4 register *******************/
7371 #define TIM_CCR4_CCR4 ((uint16_t)0xFFFF) /*!<Capture/Compare 4 Value */
7372
7373 /******************* Bit definition for TIM_CCR5 register *******************/
7374 #define TIM_CCR5_CCR5 ((uint32_t)0xFFFFFFFF) /*!<Capture/Compare 5 Value */
7375 #define TIM_CCR5_GC5C1 ((uint32_t)0x20000000) /*!<Group Channel 5 and Channel 1 */
7376 #define TIM_CCR5_GC5C2 ((uint32_t)0x40000000) /*!<Group Channel 5 and Channel 2 */
7377 #define TIM_CCR5_GC5C3 ((uint32_t)0x80000000) /*!<Group Channel 5 and Channel 3 */
7378
7379 /******************* Bit definition for TIM_CCR6 register *******************/
7380 #define TIM_CCR6_CCR6 ((uint16_t)0xFFFF) /*!<Capture/Compare 6 Value */
7381
7382 /******************* Bit definition for TIM_BDTR register *******************/
7383 #define TIM_BDTR_DTG ((uint32_t)0x000000FF) /*!<DTG[0:7] bits (Dead-Time Generator set-up) */
7384 #define TIM_BDTR_DTG_0 ((uint32_t)0x00000001) /*!<Bit 0 */
7385 #define TIM_BDTR_DTG_1 ((uint32_t)0x00000002) /*!<Bit 1 */
7386 #define TIM_BDTR_DTG_2 ((uint32_t)0x00000004) /*!<Bit 2 */
7387 #define TIM_BDTR_DTG_3 ((uint32_t)0x00000008) /*!<Bit 3 */
7388 #define TIM_BDTR_DTG_4 ((uint32_t)0x00000010) /*!<Bit 4 */
7389 #define TIM_BDTR_DTG_5 ((uint32_t)0x00000020) /*!<Bit 5 */
7390 #define TIM_BDTR_DTG_6 ((uint32_t)0x00000040) /*!<Bit 6 */
7391 #define TIM_BDTR_DTG_7 ((uint32_t)0x00000080) /*!<Bit 7 */
7392
7393 #define TIM_BDTR_LOCK ((uint32_t)0x00000300) /*!<LOCK[1:0] bits (Lock Configuration) */
7394 #define TIM_BDTR_LOCK_0 ((uint32_t)0x00000100) /*!<Bit 0 */
7395 #define TIM_BDTR_LOCK_1 ((uint32_t)0x00000200) /*!<Bit 1 */
7396
7397 #define TIM_BDTR_OSSI ((uint32_t)0x00000400) /*!<Off-State Selection for Idle mode */
7398 #define TIM_BDTR_OSSR ((uint32_t)0x00000800) /*!<Off-State Selection for Run mode */
7399 #define TIM_BDTR_BKE ((uint32_t)0x00001000) /*!<Break enable for Break1 */
7400 #define TIM_BDTR_BKP ((uint32_t)0x00002000) /*!<Break Polarity for Break1 */
7401 #define TIM_BDTR_AOE ((uint32_t)0x00004000) /*!<Automatic Output enable */
7402 #define TIM_BDTR_MOE ((uint32_t)0x00008000) /*!<Main Output enable */
7403
7404 #define TIM_BDTR_BKF ((uint32_t)0x000F0000) /*!<Break Filter for Break1 */
7405 #define TIM_BDTR_BK2F ((uint32_t)0x00F00000) /*!<Break Filter for Break2 */
7406
7407 #define TIM_BDTR_BK2E ((uint32_t)0x01000000) /*!<Break enable for Break2 */
7408 #define TIM_BDTR_BK2P ((uint32_t)0x02000000) /*!<Break Polarity for Break2 */
7409
7410 /******************* Bit definition for TIM_DCR register ********************/
7411 #define TIM_DCR_DBA ((uint16_t)0x001F) /*!<DBA[4:0] bits (DMA Base Address) */
7412 #define TIM_DCR_DBA_0 ((uint16_t)0x0001) /*!<Bit 0 */
7413 #define TIM_DCR_DBA_1 ((uint16_t)0x0002) /*!<Bit 1 */
7414 #define TIM_DCR_DBA_2 ((uint16_t)0x0004) /*!<Bit 2 */
7415 #define TIM_DCR_DBA_3 ((uint16_t)0x0008) /*!<Bit 3 */
7416 #define TIM_DCR_DBA_4 ((uint16_t)0x0010) /*!<Bit 4 */
7417
7418 #define TIM_DCR_DBL ((uint16_t)0x1F00) /*!<DBL[4:0] bits (DMA Burst Length) */
7419 #define TIM_DCR_DBL_0 ((uint16_t)0x0100) /*!<Bit 0 */
7420 #define TIM_DCR_DBL_1 ((uint16_t)0x0200) /*!<Bit 1 */
7421 #define TIM_DCR_DBL_2 ((uint16_t)0x0400) /*!<Bit 2 */
7422 #define TIM_DCR_DBL_3 ((uint16_t)0x0800) /*!<Bit 3 */
7423 #define TIM_DCR_DBL_4 ((uint16_t)0x1000) /*!<Bit 4 */
7424
7425 /******************* Bit definition for TIM_DMAR register *******************/
7426 #define TIM_DMAR_DMAB ((uint16_t)0xFFFF) /*!<DMA register for burst accesses */
7427
7428 /******************* Bit definition for TIM16_OR register *********************/
7429 #define TIM16_OR_TI1_RMP ((uint16_t)0x00C0) /*!<TI1_RMP[1:0] bits (TIM16 Input 1 remap) */
7430 #define TIM16_OR_TI1_RMP_0 ((uint16_t)0x0040) /*!<Bit 0 */
7431 #define TIM16_OR_TI1_RMP_1 ((uint16_t)0x0080) /*!<Bit 1 */
7432
7433 /******************* Bit definition for TIM1_OR register *********************/
7434 #define TIM1_OR_ETR_RMP ((uint16_t)0x000F) /*!<ETR_RMP[3:0] bits (TIM1 ETR remap) */
7435 #define TIM1_OR_ETR_RMP_0 ((uint16_t)0x0001) /*!<Bit 0 */
7436 #define TIM1_OR_ETR_RMP_1 ((uint16_t)0x0002) /*!<Bit 1 */
7437 #define TIM1_OR_ETR_RMP_2 ((uint16_t)0x0004) /*!<Bit 2 */
7438 #define TIM1_OR_ETR_RMP_3 ((uint16_t)0x0008) /*!<Bit 3 */
7439
7440 /******************* Bit definition for TIM8_OR register *********************/
7441 #define TIM8_OR_ETR_RMP ((uint16_t)0x000F) /*!<ETR_RMP[3:0] bits (TIM8 ETR remap) */
7442 #define TIM8_OR_ETR_RMP_0 ((uint16_t)0x0001) /*!<Bit 0 */
7443 #define TIM8_OR_ETR_RMP_1 ((uint16_t)0x0002) /*!<Bit 1 */
7444 #define TIM8_OR_ETR_RMP_2 ((uint16_t)0x0004) /*!<Bit 2 */
7445 #define TIM8_OR_ETR_RMP_3 ((uint16_t)0x0008) /*!<Bit 3 */
7446
7447 /****************** Bit definition for TIM_CCMR3 register *******************/
7448 #define TIM_CCMR3_OC5FE ((uint32_t)0x00000004) /*!<Output Compare 5 Fast enable */
7449 #define TIM_CCMR3_OC5PE ((uint32_t)0x00000008) /*!<Output Compare 5 Preload enable */
7450
7451 #define TIM_CCMR3_OC5M ((uint32_t)0x00000070) /*!<OC5M[2:0] bits (Output Compare 5 Mode) */
7452 #define TIM_CCMR3_OC5M_0 ((uint32_t)0x00000010) /*!<Bit 0 */
7453 #define TIM_CCMR3_OC5M_1 ((uint32_t)0x00000020) /*!<Bit 1 */
7454 #define TIM_CCMR3_OC5M_2 ((uint32_t)0x00000040) /*!<Bit 2 */
7455 #define TIM_CCMR3_OC5M_3 ((uint32_t)0x00010000) /*!<Bit 3 */
7456
7457 #define TIM_CCMR3_OC5CE ((uint32_t)0x00000080) /*!<Output Compare 5 Clear Enable */
7458
7459 #define TIM_CCMR3_OC6FE ((uint32_t)0x00000400) /*!<Output Compare 4 Fast enable */
7460 #define TIM_CCMR3_OC6PE ((uint32_t)0x00000800) /*!<Output Compare 4 Preload enable */
7461
7462 #define TIM_CCMR3_OC6M ((uint32_t)0x00007000) /*!<OC4M[2:0] bits (Output Compare 4 Mode) */
7463 #define TIM_CCMR3_OC6M_0 ((uint32_t)0x00001000) /*!<Bit 0 */
7464 #define TIM_CCMR3_OC6M_1 ((uint32_t)0x00002000) /*!<Bit 1 */
7465 #define TIM_CCMR3_OC6M_2 ((uint32_t)0x00004000) /*!<Bit 2 */
7466 #define TIM_CCMR3_OC6M_3 ((uint32_t)0x00100000) /*!<Bit 3 */
7467
7468 #define TIM_CCMR3_OC6CE ((uint32_t)0x00008000) /*!<Output Compare 4 Clear Enable */
7469
7470 /******************************************************************************/
7471 /* */
7472 /* Universal Synchronous Asynchronous Receiver Transmitter (USART) */
7473 /* */
7474 /******************************************************************************/
7475 /****************** Bit definition for USART_CR1 register *******************/
7476 #define USART_CR1_UE ((uint32_t)0x00000001) /*!< USART Enable */
7477 #define USART_CR1_UESM ((uint32_t)0x00000002) /*!< USART Enable in STOP Mode */
7478 #define USART_CR1_RE ((uint32_t)0x00000004) /*!< Receiver Enable */
7479 #define USART_CR1_TE ((uint32_t)0x00000008) /*!< Transmitter Enable */
7480 #define USART_CR1_IDLEIE ((uint32_t)0x00000010) /*!< IDLE Interrupt Enable */
7481 #define USART_CR1_RXNEIE ((uint32_t)0x00000020) /*!< RXNE Interrupt Enable */
7482 #define USART_CR1_TCIE ((uint32_t)0x00000040) /*!< Transmission Complete Interrupt Enable */
7483 #define USART_CR1_TXEIE ((uint32_t)0x00000080) /*!< TXE Interrupt Enable */
7484 #define USART_CR1_PEIE ((uint32_t)0x00000100) /*!< PE Interrupt Enable */
7485 #define USART_CR1_PS ((uint32_t)0x00000200) /*!< Parity Selection */
7486 #define USART_CR1_PCE ((uint32_t)0x00000400) /*!< Parity Control Enable */
7487 #define USART_CR1_WAKE ((uint32_t)0x00000800) /*!< Receiver Wakeup method */
7488 #define USART_CR1_M ((uint32_t)0x00001000) /*!< Word length */
7489 #define USART_CR1_MME ((uint32_t)0x00002000) /*!< Mute Mode Enable */
7490 #define USART_CR1_CMIE ((uint32_t)0x00004000) /*!< Character match interrupt enable */
7491 #define USART_CR1_OVER8 ((uint32_t)0x00008000) /*!< Oversampling by 8-bit or 16-bit mode */
7492 #define USART_CR1_DEDT ((uint32_t)0x001F0000) /*!< DEDT[4:0] bits (Driver Enable Deassertion Time) */
7493 #define USART_CR1_DEDT_0 ((uint32_t)0x00010000) /*!< Bit 0 */
7494 #define USART_CR1_DEDT_1 ((uint32_t)0x00020000) /*!< Bit 1 */
7495 #define USART_CR1_DEDT_2 ((uint32_t)0x00040000) /*!< Bit 2 */
7496 #define USART_CR1_DEDT_3 ((uint32_t)0x00080000) /*!< Bit 3 */
7497 #define USART_CR1_DEDT_4 ((uint32_t)0x00100000) /*!< Bit 4 */
7498 #define USART_CR1_DEAT ((uint32_t)0x03E00000) /*!< DEAT[4:0] bits (Driver Enable Assertion Time) */
7499 #define USART_CR1_DEAT_0 ((uint32_t)0x00200000) /*!< Bit 0 */
7500 #define USART_CR1_DEAT_1 ((uint32_t)0x00400000) /*!< Bit 1 */
7501 #define USART_CR1_DEAT_2 ((uint32_t)0x00800000) /*!< Bit 2 */
7502 #define USART_CR1_DEAT_3 ((uint32_t)0x01000000) /*!< Bit 3 */
7503 #define USART_CR1_DEAT_4 ((uint32_t)0x02000000) /*!< Bit 4 */
7504 #define USART_CR1_RTOIE ((uint32_t)0x04000000) /*!< Receive Time Out interrupt enable */
7505 #define USART_CR1_EOBIE ((uint32_t)0x08000000) /*!< End of Block interrupt enable */
7506
7507 /****************** Bit definition for USART_CR2 register *******************/
7508 #define USART_CR2_ADDM7 ((uint32_t)0x00000010) /*!< 7-bit or 4-bit Address Detection */
7509 #define USART_CR2_LBDL ((uint32_t)0x00000020) /*!< LIN Break Detection Length */
7510 #define USART_CR2_LBDIE ((uint32_t)0x00000040) /*!< LIN Break Detection Interrupt Enable */
7511 #define USART_CR2_LBCL ((uint32_t)0x00000100) /*!< Last Bit Clock pulse */
7512 #define USART_CR2_CPHA ((uint32_t)0x00000200) /*!< Clock Phase */
7513 #define USART_CR2_CPOL ((uint32_t)0x00000400) /*!< Clock Polarity */
7514 #define USART_CR2_CLKEN ((uint32_t)0x00000800) /*!< Clock Enable */
7515 #define USART_CR2_STOP ((uint32_t)0x00003000) /*!< STOP[1:0] bits (STOP bits) */
7516 #define USART_CR2_STOP_0 ((uint32_t)0x00001000) /*!< Bit 0 */
7517 #define USART_CR2_STOP_1 ((uint32_t)0x00002000) /*!< Bit 1 */
7518 #define USART_CR2_LINEN ((uint32_t)0x00004000) /*!< LIN mode enable */
7519 #define USART_CR2_SWAP ((uint32_t)0x00008000) /*!< SWAP TX/RX pins */
7520 #define USART_CR2_RXINV ((uint32_t)0x00010000) /*!< RX pin active level inversion */
7521 #define USART_CR2_TXINV ((uint32_t)0x00020000) /*!< TX pin active level inversion */
7522 #define USART_CR2_DATAINV ((uint32_t)0x00040000) /*!< Binary data inversion */
7523 #define USART_CR2_MSBFIRST ((uint32_t)0x00080000) /*!< Most Significant Bit First */
7524 #define USART_CR2_ABREN ((uint32_t)0x00100000) /*!< Auto Baud-Rate Enable*/
7525 #define USART_CR2_ABRMODE ((uint32_t)0x00600000) /*!< ABRMOD[1:0] bits (Auto Baud-Rate Mode) */
7526 #define USART_CR2_ABRMODE_0 ((uint32_t)0x00200000) /*!< Bit 0 */
7527 #define USART_CR2_ABRMODE_1 ((uint32_t)0x00400000) /*!< Bit 1 */
7528 #define USART_CR2_RTOEN ((uint32_t)0x00800000) /*!< Receiver Time-Out enable */
7529 #define USART_CR2_ADD ((uint32_t)0xFF000000) /*!< Address of the USART node */
7530
7531 /****************** Bit definition for USART_CR3 register *******************/
7532 #define USART_CR3_EIE ((uint32_t)0x00000001) /*!< Error Interrupt Enable */
7533 #define USART_CR3_IREN ((uint32_t)0x00000002) /*!< IrDA mode Enable */
7534 #define USART_CR3_IRLP ((uint32_t)0x00000004) /*!< IrDA Low-Power */
7535 #define USART_CR3_HDSEL ((uint32_t)0x00000008) /*!< Half-Duplex Selection */
7536 #define USART_CR3_NACK ((uint32_t)0x00000010) /*!< SmartCard NACK enable */
7537 #define USART_CR3_SCEN ((uint32_t)0x00000020) /*!< SmartCard mode enable */
7538 #define USART_CR3_DMAR ((uint32_t)0x00000040) /*!< DMA Enable Receiver */
7539 #define USART_CR3_DMAT ((uint32_t)0x00000080) /*!< DMA Enable Transmitter */
7540 #define USART_CR3_RTSE ((uint32_t)0x00000100) /*!< RTS Enable */
7541 #define USART_CR3_CTSE ((uint32_t)0x00000200) /*!< CTS Enable */
7542 #define USART_CR3_CTSIE ((uint32_t)0x00000400) /*!< CTS Interrupt Enable */
7543 #define USART_CR3_ONEBIT ((uint32_t)0x00000800) /*!< One sample bit method enable */
7544 #define USART_CR3_OVRDIS ((uint32_t)0x00001000) /*!< Overrun Disable */
7545 #define USART_CR3_DDRE ((uint32_t)0x00002000) /*!< DMA Disable on Reception Error */
7546 #define USART_CR3_DEM ((uint32_t)0x00004000) /*!< Driver Enable Mode */
7547 #define USART_CR3_DEP ((uint32_t)0x00008000) /*!< Driver Enable Polarity Selection */
7548 #define USART_CR3_SCARCNT ((uint32_t)0x000E0000) /*!< SCARCNT[2:0] bits (SmartCard Auto-Retry Count) */
7549 #define USART_CR3_SCARCNT_0 ((uint32_t)0x00020000) /*!< Bit 0 */
7550 #define USART_CR3_SCARCNT_1 ((uint32_t)0x00040000) /*!< Bit 1 */
7551 #define USART_CR3_SCARCNT_2 ((uint32_t)0x00080000) /*!< Bit 2 */
7552 #define USART_CR3_WUS ((uint32_t)0x00300000) /*!< WUS[1:0] bits (Wake UP Interrupt Flag Selection) */
7553 #define USART_CR3_WUS_0 ((uint32_t)0x00100000) /*!< Bit 0 */
7554 #define USART_CR3_WUS_1 ((uint32_t)0x00200000) /*!< Bit 1 */
7555 #define USART_CR3_WUFIE ((uint32_t)0x00400000) /*!< Wake Up Interrupt Enable */
7556
7557 /****************** Bit definition for USART_BRR register *******************/
7558 #define USART_BRR_DIV_FRACTION ((uint16_t)0x000F) /*!< Fraction of USARTDIV */
7559 #define USART_BRR_DIV_MANTISSA ((uint16_t)0xFFF0) /*!< Mantissa of USARTDIV */
7560
7561 /****************** Bit definition for USART_GTPR register ******************/
7562 #define USART_GTPR_PSC ((uint16_t)0x00FF) /*!< PSC[7:0] bits (Prescaler value) */
7563 #define USART_GTPR_GT ((uint16_t)0xFF00) /*!< GT[7:0] bits (Guard time value) */
7564
7565
7566 /******************* Bit definition for USART_RTOR register *****************/
7567 #define USART_RTOR_RTO ((uint32_t)0x00FFFFFF) /*!< Receiver Time Out Value */
7568 #define USART_RTOR_BLEN ((uint32_t)0xFF000000) /*!< Block Length */
7569
7570 /******************* Bit definition for USART_RQR register ******************/
7571 #define USART_RQR_ABRRQ ((uint16_t)0x0001) /*!< Auto-Baud Rate Request */
7572 #define USART_RQR_SBKRQ ((uint16_t)0x0002) /*!< Send Break Request */
7573 #define USART_RQR_MMRQ ((uint16_t)0x0004) /*!< Mute Mode Request */
7574 #define USART_RQR_RXFRQ ((uint16_t)0x0008) /*!< Receive Data flush Request */
7575 #define USART_RQR_TXFRQ ((uint16_t)0x0010) /*!< Transmit data flush Request */
7576
7577 /******************* Bit definition for USART_ISR register ******************/
7578 #define USART_ISR_PE ((uint32_t)0x00000001) /*!< Parity Error */
7579 #define USART_ISR_FE ((uint32_t)0x00000002) /*!< Framing Error */
7580 #define USART_ISR_NE ((uint32_t)0x00000004) /*!< Noise detected Flag */
7581 #define USART_ISR_ORE ((uint32_t)0x00000008) /*!< OverRun Error */
7582 #define USART_ISR_IDLE ((uint32_t)0x00000010) /*!< IDLE line detected */
7583 #define USART_ISR_RXNE ((uint32_t)0x00000020) /*!< Read Data Register Not Empty */
7584 #define USART_ISR_TC ((uint32_t)0x00000040) /*!< Transmission Complete */
7585 #define USART_ISR_TXE ((uint32_t)0x00000080) /*!< Transmit Data Register Empty */
7586 #define USART_ISR_LBD ((uint32_t)0x00000100) /*!< LIN Break Detection Flag */
7587 #define USART_ISR_CTSIF ((uint32_t)0x00000200) /*!< CTS interrupt flag */
7588 #define USART_ISR_CTS ((uint32_t)0x00000400) /*!< CTS flag */
7589 #define USART_ISR_RTOF ((uint32_t)0x00000800) /*!< Receiver Time Out */
7590 #define USART_ISR_EOBF ((uint32_t)0x00001000) /*!< End Of Block Flag */
7591 #define USART_ISR_ABRE ((uint32_t)0x00004000) /*!< Auto-Baud Rate Error */
7592 #define USART_ISR_ABRF ((uint32_t)0x00008000) /*!< Auto-Baud Rate Flag */
7593 #define USART_ISR_BUSY ((uint32_t)0x00010000) /*!< Busy Flag */
7594 #define USART_ISR_CMF ((uint32_t)0x00020000) /*!< Character Match Flag */
7595 #define USART_ISR_SBKF ((uint32_t)0x00040000) /*!< Send Break Flag */
7596 #define USART_ISR_RWU ((uint32_t)0x00080000) /*!< Receive Wake Up from mute mode Flag */
7597 #define USART_ISR_WUF ((uint32_t)0x00100000) /*!< Wake Up from stop mode Flag */
7598 #define USART_ISR_TEACK ((uint32_t)0x00200000) /*!< Transmit Enable Acknowledge Flag */
7599 #define USART_ISR_REACK ((uint32_t)0x00400000) /*!< Receive Enable Acknowledge Flag */
7600
7601 /******************* Bit definition for USART_ICR register ******************/
7602 #define USART_ICR_PECF ((uint32_t)0x00000001) /*!< Parity Error Clear Flag */
7603 #define USART_ICR_FECF ((uint32_t)0x00000002) /*!< Framing Error Clear Flag */
7604 #define USART_ICR_NCF ((uint32_t)0x00000004) /*!< Noise detected Clear Flag */
7605 #define USART_ICR_ORECF ((uint32_t)0x00000008) /*!< OverRun Error Clear Flag */
7606 #define USART_ICR_IDLECF ((uint32_t)0x00000010) /*!< IDLE line detected Clear Flag */
7607 #define USART_ICR_TCCF ((uint32_t)0x00000040) /*!< Transmission Complete Clear Flag */
7608 #define USART_ICR_LBDCF ((uint32_t)0x00000100) /*!< LIN Break Detection Clear Flag */
7609 #define USART_ICR_CTSCF ((uint32_t)0x00000200) /*!< CTS Interrupt Clear Flag */
7610 #define USART_ICR_RTOCF ((uint32_t)0x00000800) /*!< Receiver Time Out Clear Flag */
7611 #define USART_ICR_EOBCF ((uint32_t)0x00001000) /*!< End Of Block Clear Flag */
7612 #define USART_ICR_CMCF ((uint32_t)0x00020000) /*!< Character Match Clear Flag */
7613 #define USART_ICR_WUCF ((uint32_t)0x00100000) /*!< Wake Up from stop mode Clear Flag */
7614
7615 /******************* Bit definition for USART_RDR register ******************/
7616 #define USART_RDR_RDR ((uint16_t)0x01FF) /*!< RDR[8:0] bits (Receive Data value) */
7617
7618 /******************* Bit definition for USART_TDR register ******************/
7619 #define USART_TDR_TDR ((uint16_t)0x01FF) /*!< TDR[8:0] bits (Transmit Data value) */
7620
7621 /******************************************************************************/
7622 /* */
7623 /* Window WATCHDOG */
7624 /* */
7625 /******************************************************************************/
7626 /******************* Bit definition for WWDG_CR register ********************/
7627 #define WWDG_CR_T ((uint8_t)0x7F) /*!<T[6:0] bits (7-Bit counter (MSB to LSB)) */
7628 #define WWDG_CR_T0 ((uint8_t)0x01) /*!<Bit 0 */
7629 #define WWDG_CR_T1 ((uint8_t)0x02) /*!<Bit 1 */
7630 #define WWDG_CR_T2 ((uint8_t)0x04) /*!<Bit 2 */
7631 #define WWDG_CR_T3 ((uint8_t)0x08) /*!<Bit 3 */
7632 #define WWDG_CR_T4 ((uint8_t)0x10) /*!<Bit 4 */
7633 #define WWDG_CR_T5 ((uint8_t)0x20) /*!<Bit 5 */
7634 #define WWDG_CR_T6 ((uint8_t)0x40) /*!<Bit 6 */
7635
7636 #define WWDG_CR_WDGA ((uint8_t)0x80) /*!<Activation bit */
7637
7638 /******************* Bit definition for WWDG_CFR register *******************/
7639 #define WWDG_CFR_W ((uint16_t)0x007F) /*!<W[6:0] bits (7-bit window value) */
7640 #define WWDG_CFR_W0 ((uint16_t)0x0001) /*!<Bit 0 */
7641 #define WWDG_CFR_W1 ((uint16_t)0x0002) /*!<Bit 1 */
7642 #define WWDG_CFR_W2 ((uint16_t)0x0004) /*!<Bit 2 */
7643 #define WWDG_CFR_W3 ((uint16_t)0x0008) /*!<Bit 3 */
7644 #define WWDG_CFR_W4 ((uint16_t)0x0010) /*!<Bit 4 */
7645 #define WWDG_CFR_W5 ((uint16_t)0x0020) /*!<Bit 5 */
7646 #define WWDG_CFR_W6 ((uint16_t)0x0040) /*!<Bit 6 */
7647
7648 #define WWDG_CFR_WDGTB ((uint16_t)0x0180) /*!<WDGTB[1:0] bits (Timer Base) */
7649 #define WWDG_CFR_WDGTB0 ((uint16_t)0x0080) /*!<Bit 0 */
7650 #define WWDG_CFR_WDGTB1 ((uint16_t)0x0100) /*!<Bit 1 */
7651
7652 #define WWDG_CFR_EWI ((uint16_t)0x0200) /*!<Early Wakeup Interrupt */
7653
7654 /******************* Bit definition for WWDG_SR register ********************/
7655 #define WWDG_SR_EWIF ((uint8_t)0x01) /*!<Early Wakeup Interrupt Flag */
7656
7657 /**
7658 * @}
7659 */
7660
7661 /**
7662 * @}
7663 */
7664
7665 #ifdef USE_STDPERIPH_DRIVER
7666 #include "stm32f30x_conf.h"
7667 #endif /*!< USE_STDPERIPH_DRIVER */
7668
7669 /** @addtogroup Exported_macro
7670 * @{
7671 */
7672
7673 #define SET_BIT(REG, BIT) ((REG) |= (BIT))
7674
7675 #define CLEAR_BIT(REG, BIT) ((REG) &= ~(BIT))
7676
7677 #define READ_BIT(REG, BIT) ((REG) & (BIT))
7678
7679 #define CLEAR_REG(REG) ((REG) = (0x0))
7680
7681 #define WRITE_REG(REG, VAL) ((REG) = (VAL))
7682
7683 #define READ_REG(REG) ((REG))
7684
7685 #define MODIFY_REG(REG, CLEARMASK, SETMASK) WRITE_REG((REG), (((READ_REG(REG)) & (~(CLEARMASK))) | (SETMASK)))
7686
7687 /**
7688 * @}
7689 */
7690
7691 #ifdef __cplusplus
7692 }
7693 #endif /* __cplusplus */
7694
7695 #endif /* __STM32F30x_H */
7696
7697 /**
7698 * @}
7699 */
7700
7701 /**
7702 * @}
7703 */
7704
7705 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
Imprint / Impressum