Subversion Repositories DashDisplay

Rev

Rev 49 | Rev 61 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
30 mjames 1
/**
2
  ******************************************************************************
3
  * @file    stm32l151xc.h
4
  * @author  MCD Application Team
5
  * @brief   CMSIS Cortex-M3 Device Peripheral Access Layer Header File.
6
  *          This file contains all the peripheral register's definitions, bits
7
  *          definitions and memory mapping for STM32L1xx devices.            
8
  *            
9
  *          This file contains:
10
  *           - Data structures and the address mapping for all peripherals
11
  *           - Peripheral's registers declarations and bits definition
12
  *           - Macros to access peripheral’s registers hardware
13
  *  
14
  ******************************************************************************
15
  * @attention
16
  *
50 mjames 17
  * <h2><center>&copy; Copyright (c) 2017 STMicroelectronics.
18
  * All rights reserved.</center></h2>
30 mjames 19
  *
50 mjames 20
  * This software component is licensed by ST under BSD 3-Clause license,
21
  * the "License"; You may not use this file except in compliance with the
22
  * License. You may obtain a copy of the License at:
23
  *                        opensource.org/licenses/BSD-3-Clause
30 mjames 24
  *
25
  ******************************************************************************
26
  */
27
 
28
/** @addtogroup CMSIS
29
  * @{
30
  */
31
 
32
/** @addtogroup stm32l151xc
33
  * @{
34
  */
35
 
36
#ifndef __STM32L151xC_H
37
#define __STM32L151xC_H
38
 
39
#ifdef __cplusplus
40
 extern "C" {
41
#endif 
42
 
43
 
44
  /** @addtogroup Configuration_section_for_CMSIS
45
  * @{
46
  */
47
/**
48
  * @brief Configuration of the Cortex-M3 Processor and Core Peripherals
49
 */
50
#define __CM3_REV                 0x200U /*!< Cortex-M3 Revision r2p0                  */
51
#define __MPU_PRESENT             1U     /*!< STM32L1xx provides MPU                          */
52
#define __NVIC_PRIO_BITS          4U     /*!< STM32L1xx uses 4 Bits for the Priority Levels    */
53
#define __Vendor_SysTickConfig    0U     /*!< Set to 1 if different SysTick Config is used */
54
 
55
/**
56
  * @}
57
  */
58
 
59
/** @addtogroup Peripheral_interrupt_number_definition
60
  * @{
61
  */
62
 
63
/**
64
 * @brief STM32L1xx Interrupt Number Definition, according to the selected device
65
 *        in @ref Library_configuration_section
66
 */
67
 
68
 /*!< Interrupt Number Definition */
69
typedef enum
70
{
71
/******  Cortex-M3 Processor Exceptions Numbers ******************************************************/
72
  NonMaskableInt_IRQn         = -14,    /*!< 2 Non Maskable Interrupt                                */
73
  HardFault_IRQn              = -13,    /*!< 3 Cortex-M3 Hard Fault Interrupt                        */
74
  MemoryManagement_IRQn       = -12,    /*!< 4 Cortex-M3 Memory Management Interrupt                 */
75
  BusFault_IRQn               = -11,    /*!< 5 Cortex-M3 Bus Fault Interrupt                         */
76
  UsageFault_IRQn             = -10,    /*!< 6 Cortex-M3 Usage Fault Interrupt                       */
77
  SVC_IRQn                    = -5,     /*!< 11 Cortex-M3 SV Call Interrupt                          */
78
  DebugMonitor_IRQn           = -4,     /*!< 12 Cortex-M3 Debug Monitor Interrupt                    */
79
  PendSV_IRQn                 = -2,     /*!< 14 Cortex-M3 Pend SV Interrupt                          */
80
  SysTick_IRQn                = -1,     /*!< 15 Cortex-M3 System Tick Interrupt                      */
81
 
82
/******  STM32L specific Interrupt Numbers ***********************************************************/
83
  WWDG_IRQn                   = 0,      /*!< Window WatchDog Interrupt                               */
84
  PVD_IRQn                    = 1,      /*!< PVD through EXTI Line detection Interrupt               */
85
  TAMPER_STAMP_IRQn           = 2,      /*!< Tamper and TimeStamp interrupts through the EXTI line   */
86
  RTC_WKUP_IRQn               = 3,      /*!< RTC Wakeup Timer through EXTI Line Interrupt            */
87
  FLASH_IRQn                  = 4,      /*!< FLASH global Interrupt                                  */
88
  RCC_IRQn                    = 5,      /*!< RCC global Interrupt                                    */
89
  EXTI0_IRQn                  = 6,      /*!< EXTI Line0 Interrupt                                    */
90
  EXTI1_IRQn                  = 7,      /*!< EXTI Line1 Interrupt                                    */
91
  EXTI2_IRQn                  = 8,      /*!< EXTI Line2 Interrupt                                    */
92
  EXTI3_IRQn                  = 9,      /*!< EXTI Line3 Interrupt                                    */
93
  EXTI4_IRQn                  = 10,     /*!< EXTI Line4 Interrupt                                    */
94
  DMA1_Channel1_IRQn          = 11,     /*!< DMA1 Channel 1 global Interrupt                         */
95
  DMA1_Channel2_IRQn          = 12,     /*!< DMA1 Channel 2 global Interrupt                         */
96
  DMA1_Channel3_IRQn          = 13,     /*!< DMA1 Channel 3 global Interrupt                         */
97
  DMA1_Channel4_IRQn          = 14,     /*!< DMA1 Channel 4 global Interrupt                         */
98
  DMA1_Channel5_IRQn          = 15,     /*!< DMA1 Channel 5 global Interrupt                         */
99
  DMA1_Channel6_IRQn          = 16,     /*!< DMA1 Channel 6 global Interrupt                         */
100
  DMA1_Channel7_IRQn          = 17,     /*!< DMA1 Channel 7 global Interrupt                         */
101
  ADC1_IRQn                   = 18,     /*!< ADC1 global Interrupt                                   */
102
  USB_HP_IRQn                 = 19,     /*!< USB High Priority Interrupt                             */
103
  USB_LP_IRQn                 = 20,     /*!< USB Low Priority Interrupt                              */
104
  DAC_IRQn                    = 21,     /*!< DAC Interrupt                                           */
105
  COMP_IRQn                   = 22,     /*!< Comparator through EXTI Line Interrupt                  */
106
  EXTI9_5_IRQn                = 23,     /*!< External Line[9:5] Interrupts                           */
107
  TIM9_IRQn                   = 25,     /*!< TIM9 global Interrupt                                   */
108
  TIM10_IRQn                  = 26,     /*!< TIM10 global Interrupt                                  */
109
  TIM11_IRQn                  = 27,     /*!< TIM11 global Interrupt                                  */
110
  TIM2_IRQn                   = 28,     /*!< TIM2 global Interrupt                                   */
111
  TIM3_IRQn                   = 29,     /*!< TIM3 global Interrupt                                   */
112
  TIM4_IRQn                   = 30,     /*!< TIM4 global Interrupt                                   */
113
  I2C1_EV_IRQn                = 31,     /*!< I2C1 Event Interrupt                                    */
114
  I2C1_ER_IRQn                = 32,     /*!< I2C1 Error Interrupt                                    */
115
  I2C2_EV_IRQn                = 33,     /*!< I2C2 Event Interrupt                                    */
116
  I2C2_ER_IRQn                = 34,     /*!< I2C2 Error Interrupt                                    */
117
  SPI1_IRQn                   = 35,     /*!< SPI1 global Interrupt                                   */
118
  SPI2_IRQn                   = 36,     /*!< SPI2 global Interrupt                                   */
119
  USART1_IRQn                 = 37,     /*!< USART1 global Interrupt                                 */
120
  USART2_IRQn                 = 38,     /*!< USART2 global Interrupt                                 */
121
  USART3_IRQn                 = 39,     /*!< USART3 global Interrupt                                 */
122
  EXTI15_10_IRQn              = 40,     /*!< External Line[15:10] Interrupts                         */
123
  RTC_Alarm_IRQn              = 41,     /*!< RTC Alarm through EXTI Line Interrupt                   */
124
  USB_FS_WKUP_IRQn            = 42,     /*!< USB FS WakeUp from suspend through EXTI Line Interrupt  */
125
  TIM6_IRQn                   = 43,     /*!< TIM6 global Interrupt                                   */
126
  TIM7_IRQn                   = 44,     /*!< TIM7 global Interrupt                                   */
127
  TIM5_IRQn                   = 46,     /*!< TIM5 global Interrupt                                   */
128
  SPI3_IRQn                   = 47,     /*!< SPI3 global Interrupt                                   */
129
  DMA2_Channel1_IRQn          = 50,     /*!< DMA2 Channel 1 global Interrupt                         */
130
  DMA2_Channel2_IRQn          = 51,     /*!< DMA2 Channel 2 global Interrupt                         */
131
  DMA2_Channel3_IRQn          = 52,     /*!< DMA2 Channel 3 global Interrupt                         */
132
  DMA2_Channel4_IRQn          = 53,     /*!< DMA2 Channel 4 global Interrupt                         */
133
  DMA2_Channel5_IRQn          = 54,     /*!< DMA2 Channel 5 global Interrupt                         */
134
  COMP_ACQ_IRQn               = 56      /*!< Comparator Channel Acquisition global Interrupt         */
135
} IRQn_Type;
136
 
137
/**
138
  * @}
139
  */
140
 
141
#include "core_cm3.h"
142
#include "system_stm32l1xx.h"
143
#include <stdint.h>
144
 
145
/** @addtogroup Peripheral_registers_structures
146
  * @{
147
  */  
148
 
149
/**
150
  * @brief Analog to Digital Converter
151
  */
152
 
153
typedef struct
154
{
155
  __IO uint32_t SR;           /*!< ADC status register,                         Address offset: 0x00 */
156
  __IO uint32_t CR1;          /*!< ADC control register 1,                      Address offset: 0x04 */
157
  __IO uint32_t CR2;          /*!< ADC control register 2,                      Address offset: 0x08 */
158
  __IO uint32_t SMPR1;        /*!< ADC sample time register 1,                  Address offset: 0x0C */
159
  __IO uint32_t SMPR2;        /*!< ADC sample time register 2,                  Address offset: 0x10 */
160
  __IO uint32_t SMPR3;        /*!< ADC sample time register 3,                  Address offset: 0x14 */
161
  __IO uint32_t JOFR1;        /*!< ADC injected channel data offset register 1, Address offset: 0x18 */
162
  __IO uint32_t JOFR2;        /*!< ADC injected channel data offset register 2, Address offset: 0x1C */
163
  __IO uint32_t JOFR3;        /*!< ADC injected channel data offset register 3, Address offset: 0x20 */
164
  __IO uint32_t JOFR4;        /*!< ADC injected channel data offset register 4, Address offset: 0x24 */
165
  __IO uint32_t HTR;          /*!< ADC watchdog higher threshold register,      Address offset: 0x28 */
166
  __IO uint32_t LTR;          /*!< ADC watchdog lower threshold register,       Address offset: 0x2C */
167
  __IO uint32_t SQR1;         /*!< ADC regular sequence register 1,             Address offset: 0x30 */
168
  __IO uint32_t SQR2;         /*!< ADC regular sequence register 2,             Address offset: 0x34 */
169
  __IO uint32_t SQR3;         /*!< ADC regular sequence register 3,             Address offset: 0x38 */
170
  __IO uint32_t SQR4;         /*!< ADC regular sequence register 4,             Address offset: 0x3C */
171
  __IO uint32_t SQR5;         /*!< ADC regular sequence register 5,             Address offset: 0x40 */
172
  __IO uint32_t JSQR;         /*!< ADC injected sequence register,              Address offset: 0x44 */
173
  __IO uint32_t JDR1;         /*!< ADC injected data register 1,                Address offset: 0x48 */
174
  __IO uint32_t JDR2;         /*!< ADC injected data register 2,                Address offset: 0x4C */
175
  __IO uint32_t JDR3;         /*!< ADC injected data register 3,                Address offset: 0x50 */
176
  __IO uint32_t JDR4;         /*!< ADC injected data register 4,                Address offset: 0x54 */
177
  __IO uint32_t DR;           /*!< ADC regular data register,                   Address offset: 0x58 */
178
  uint32_t RESERVED;          /*!< Reserved,                                    Address offset: 0x5C */
179
} ADC_TypeDef;
180
 
181
typedef struct
182
{
183
  __IO uint32_t CSR;          /*!< ADC common status register,                  Address offset: ADC1 base address + 0x300 */
184
  __IO uint32_t CCR;          /*!< ADC common control register,                 Address offset: ADC1 base address + 0x304 */
185
} ADC_Common_TypeDef;
186
 
187
/**
188
  * @brief Comparator
189
  */
190
 
191
typedef struct
192
{
193
  __IO uint32_t CSR;         /*!< COMP control and status register, Address offset: 0x00 */
194
} COMP_TypeDef;
195
 
196
typedef struct
197
{
198
  __IO uint32_t CSR;         /*!< COMP control and status register, used for bits common to several COMP instances, Address offset: 0x00 */
199
} COMP_Common_TypeDef;
200
 
201
/**
202
  * @brief CRC calculation unit
203
  */
204
 
205
typedef struct
206
{
207
  __IO uint32_t DR;           /*!< CRC Data register,                           Address offset: 0x00 */
208
  __IO uint8_t  IDR;          /*!< CRC Independent data register,               Address offset: 0x04 */
209
  uint8_t       RESERVED0;    /*!< Reserved,                                    Address offset: 0x05 */
210
  uint16_t      RESERVED1;    /*!< Reserved,                                    Address offset: 0x06 */
211
  __IO uint32_t CR;           /*!< CRC Control register,                        Address offset: 0x08 */
212
} CRC_TypeDef;
213
 
214
/**
215
  * @brief Digital to Analog Converter
216
  */
217
 
218
typedef struct
219
{
220
  __IO uint32_t CR;           /*!< DAC control register,                                     Address offset: 0x00 */
221
  __IO uint32_t SWTRIGR;      /*!< DAC software trigger register,                            Address offset: 0x04 */
222
  __IO uint32_t DHR12R1;      /*!< DAC channel1 12-bit right-aligned data holding register,  Address offset: 0x08 */
223
  __IO uint32_t DHR12L1;      /*!< DAC channel1 12-bit left aligned data holding register,   Address offset: 0x0C */
224
  __IO uint32_t DHR8R1;       /*!< DAC channel1 8-bit right aligned data holding register,   Address offset: 0x10 */
225
  __IO uint32_t DHR12R2;      /*!< DAC channel2 12-bit right aligned data holding register,  Address offset: 0x14 */
226
  __IO uint32_t DHR12L2;      /*!< DAC channel2 12-bit left aligned data holding register,   Address offset: 0x18 */
227
  __IO uint32_t DHR8R2;       /*!< DAC channel2 8-bit right-aligned data holding register,   Address offset: 0x1C */
228
  __IO uint32_t DHR12RD;      /*!< Dual DAC 12-bit right-aligned data holding register,      Address offset: 0x20 */
229
  __IO uint32_t DHR12LD;      /*!< DUAL DAC 12-bit left aligned data holding register,       Address offset: 0x24 */
230
  __IO uint32_t DHR8RD;       /*!< DUAL DAC 8-bit right aligned data holding register,       Address offset: 0x28 */
231
  __IO uint32_t DOR1;         /*!< DAC channel1 data output register,                        Address offset: 0x2C */
232
  __IO uint32_t DOR2;         /*!< DAC channel2 data output register,                        Address offset: 0x30 */
233
  __IO uint32_t SR;           /*!< DAC status register,                                      Address offset: 0x34 */
234
} DAC_TypeDef;
235
 
236
/**
237
  * @brief Debug MCU
238
  */
239
 
240
typedef struct
241
{
242
  __IO uint32_t IDCODE;       /*!< MCU device ID code,                          Address offset: 0x00 */
243
  __IO uint32_t CR;           /*!< Debug MCU configuration register,            Address offset: 0x04 */
244
  __IO uint32_t APB1FZ;       /*!< Debug MCU APB1 freeze register,              Address offset: 0x08 */
245
  __IO uint32_t APB2FZ;       /*!< Debug MCU APB2 freeze register,              Address offset: 0x0C */
246
}DBGMCU_TypeDef;
247
 
248
/**
249
  * @brief DMA Controller
250
  */
251
 
252
typedef struct
253
{
254
  __IO uint32_t CCR;          /*!< DMA channel x configuration register        */
255
  __IO uint32_t CNDTR;        /*!< DMA channel x number of data register       */
256
  __IO uint32_t CPAR;         /*!< DMA channel x peripheral address register   */
257
  __IO uint32_t CMAR;         /*!< DMA channel x memory address register       */
258
} DMA_Channel_TypeDef;
259
 
260
typedef struct
261
{
262
  __IO uint32_t ISR;          /*!< DMA interrupt status register,               Address offset: 0x00 */
263
  __IO uint32_t IFCR;         /*!< DMA interrupt flag clear register,           Address offset: 0x04 */
264
} DMA_TypeDef;
265
 
266
/**
267
  * @brief External Interrupt/Event Controller
268
  */
269
 
270
typedef struct
271
{
272
  __IO uint32_t IMR;          /*!<EXTI Interrupt mask register,                 Address offset: 0x00 */
273
  __IO uint32_t EMR;          /*!<EXTI Event mask register,                     Address offset: 0x04 */
274
  __IO uint32_t RTSR;         /*!<EXTI Rising trigger selection register ,      Address offset: 0x08 */
275
  __IO uint32_t FTSR;         /*!<EXTI Falling trigger selection register,      Address offset: 0x0C */
276
  __IO uint32_t SWIER;        /*!<EXTI Software interrupt event register,       Address offset: 0x10 */
277
  __IO uint32_t PR;           /*!<EXTI Pending register,                        Address offset: 0x14 */
278
} EXTI_TypeDef;
279
 
280
/**
281
  * @brief FLASH Registers
282
  */
283
typedef struct
284
{
285
  __IO uint32_t ACR;          /*!< Access control register,                     Address offset: 0x00 */
286
  __IO uint32_t PECR;         /*!< Program/erase control register,              Address offset: 0x04 */
287
  __IO uint32_t PDKEYR;       /*!< Power down key register,                     Address offset: 0x08 */
288
  __IO uint32_t PEKEYR;       /*!< Program/erase key register,                  Address offset: 0x0c */
289
  __IO uint32_t PRGKEYR;      /*!< Program memory key register,                 Address offset: 0x10 */
290
  __IO uint32_t OPTKEYR;      /*!< Option byte key register,                    Address offset: 0x14 */
291
  __IO uint32_t SR;           /*!< Status register,                             Address offset: 0x18 */
292
  __IO uint32_t OBR;          /*!< Option byte register,                        Address offset: 0x1c */
293
  __IO uint32_t WRPR1;        /*!< Write protection register 1,                 Address offset: 0x20 */
294
  uint32_t   RESERVED[23];    /*!< Reserved,                                    Address offset: 0x24 */
295
  __IO uint32_t WRPR2;        /*!< Write protection register 2,                 Address offset: 0x80 */
296
} FLASH_TypeDef;
297
 
298
/**
299
  * @brief Option Bytes Registers
300
  */
301
typedef struct
302
{
303
  __IO uint32_t RDP;              /*!< Read protection register,               Address offset: 0x00 */
304
  __IO uint32_t USER;             /*!< user register,                          Address offset: 0x04 */
305
  __IO uint32_t WRP01;            /*!< write protection register 0 1,          Address offset: 0x08 */
306
  __IO uint32_t WRP23;            /*!< write protection register 2 3,          Address offset: 0x0C */
307
  __IO uint32_t WRP45;            /*!< write protection register 4 5,          Address offset: 0x10 */
308
  __IO uint32_t WRP67;            /*!< write protection register 6 7,          Address offset: 0x14 */
309
} OB_TypeDef;
310
 
311
/**
312
  * @brief Operational Amplifier (OPAMP)
313
  */
314
typedef struct
315
{
316
  __IO uint32_t CSR;          /*!< OPAMP control and status register,                 Address offset: 0x00 */
317
  __IO uint32_t OTR;          /*!< OPAMP offset trimming register for normal mode,    Address offset: 0x04 */
318
  __IO uint32_t LPOTR;        /*!< OPAMP offset trimming register for low power mode, Address offset: 0x08 */
319
} OPAMP_TypeDef;
320
 
321
typedef struct
322
{
323
  __IO uint32_t CSR;          /*!< OPAMP control and status register, used for bits common to several OPAMP instances,              Address offset: 0x00 */
324
  __IO uint32_t OTR;          /*!< OPAMP offset trimming register for normal mode, used for bits common to several OPAMP instances, Address offset: 0x04 */
325
} OPAMP_Common_TypeDef;
326
 
327
/**
328
  * @brief General Purpose IO
329
  */
330
 
331
typedef struct
332
{
333
  __IO uint32_t MODER;        /*!< GPIO port mode register,                     Address offset: 0x00      */
334
  __IO uint32_t OTYPER;       /*!< GPIO port output type register,              Address offset: 0x04      */
335
  __IO uint32_t OSPEEDR;      /*!< GPIO port output speed register,             Address offset: 0x08      */
336
  __IO uint32_t PUPDR;        /*!< GPIO port pull-up/pull-down register,        Address offset: 0x0C      */
337
  __IO uint32_t IDR;          /*!< GPIO port input data register,               Address offset: 0x10      */
338
  __IO uint32_t ODR;          /*!< GPIO port output data register,              Address offset: 0x14      */
339
  __IO uint32_t BSRR;         /*!< GPIO port bit set/reset registerBSRR,        Address offset: 0x18      */
340
  __IO uint32_t LCKR;         /*!< GPIO port configuration lock register,       Address offset: 0x1C      */
341
  __IO uint32_t AFR[2];       /*!< GPIO alternate function register,            Address offset: 0x20-0x24 */
342
} GPIO_TypeDef;
343
 
344
/**
345
  * @brief SysTem Configuration
346
  */
347
 
348
typedef struct
349
{
350
  __IO uint32_t MEMRMP;       /*!< SYSCFG memory remap register,                      Address offset: 0x00      */
351
  __IO uint32_t PMC;          /*!< SYSCFG peripheral mode configuration register,     Address offset: 0x04      */
352
  __IO uint32_t EXTICR[4];    /*!< SYSCFG external interrupt configuration registers, Address offset: 0x08-0x14 */
353
} SYSCFG_TypeDef;
354
 
355
/**
356
  * @brief Inter-integrated Circuit Interface
357
  */
358
 
359
typedef struct
360
{
361
  __IO uint32_t CR1;          /*!< I2C Control register 1,                      Address offset: 0x00 */
362
  __IO uint32_t CR2;          /*!< I2C Control register 2,                      Address offset: 0x04 */
363
  __IO uint32_t OAR1;         /*!< I2C Own address register 1,                  Address offset: 0x08 */
364
  __IO uint32_t OAR2;         /*!< I2C Own address register 2,                  Address offset: 0x0C */
365
  __IO uint32_t DR;           /*!< I2C Data register,                           Address offset: 0x10 */
366
  __IO uint32_t SR1;          /*!< I2C Status register 1,                       Address offset: 0x14 */
367
  __IO uint32_t SR2;          /*!< I2C Status register 2,                       Address offset: 0x18 */
368
  __IO uint32_t CCR;          /*!< I2C Clock control register,                  Address offset: 0x1C */
369
  __IO uint32_t TRISE;        /*!< I2C TRISE register,                          Address offset: 0x20 */
370
} I2C_TypeDef;
371
 
372
/**
373
  * @brief Independent WATCHDOG
374
  */
375
 
376
typedef struct
377
{
378
  __IO uint32_t KR;           /*!< Key register,                                Address offset: 0x00 */
379
  __IO uint32_t PR;           /*!< Prescaler register,                          Address offset: 0x04 */
380
  __IO uint32_t RLR;          /*!< Reload register,                             Address offset: 0x08 */
381
  __IO uint32_t SR;           /*!< Status register,                             Address offset: 0x0C */
382
} IWDG_TypeDef;
383
 
384
/**
385
  * @brief Power Control
386
  */
387
 
388
typedef struct
389
{
390
  __IO uint32_t CR;   /*!< PWR power control register,                          Address offset: 0x00 */
391
  __IO uint32_t CSR;  /*!< PWR power control/status register,                   Address offset: 0x04 */
392
} PWR_TypeDef;
393
 
394
/**
395
  * @brief Reset and Clock Control
396
  */
397
 
398
typedef struct
399
{
400
  __IO uint32_t CR;            /*!< RCC clock control register,                                   Address offset: 0x00 */
401
  __IO uint32_t ICSCR;         /*!< RCC Internal clock sources calibration register,              Address offset: 0x04 */
402
  __IO uint32_t CFGR;          /*!< RCC Clock configuration register,                             Address offset: 0x08 */
403
  __IO uint32_t CIR;           /*!< RCC Clock interrupt register,                                 Address offset: 0x0C */
404
  __IO uint32_t AHBRSTR;       /*!< RCC AHB peripheral reset register,                            Address offset: 0x10 */
405
  __IO uint32_t APB2RSTR;      /*!< RCC APB2 peripheral reset register,                           Address offset: 0x14 */
406
  __IO uint32_t APB1RSTR;      /*!< RCC APB1 peripheral reset register,                           Address offset: 0x18 */
407
  __IO uint32_t AHBENR;        /*!< RCC AHB peripheral clock enable register,                     Address offset: 0x1C */
408
  __IO uint32_t APB2ENR;       /*!< RCC APB2 peripheral clock enable register,                    Address offset: 0x20 */
409
  __IO uint32_t APB1ENR;       /*!< RCC APB1 peripheral clock enable register,                    Address offset: 0x24 */
410
  __IO uint32_t AHBLPENR;      /*!< RCC AHB peripheral clock enable in low power mode register,   Address offset: 0x28 */
411
  __IO uint32_t APB2LPENR;     /*!< RCC APB2 peripheral clock enable in low power mode register,  Address offset: 0x2C */
412
  __IO uint32_t APB1LPENR;     /*!< RCC APB1 peripheral clock enable in low power mode register,  Address offset: 0x30 */
413
  __IO uint32_t CSR;           /*!< RCC Control/status register,                                  Address offset: 0x34 */
414
} RCC_TypeDef;
415
 
416
/**
417
  * @brief Routing Interface
418
  */
419
 
420
typedef struct
421
{
422
  __IO uint32_t ICR;        /*!< RI input capture register,                     Address offset: 0x00 */
50 mjames 423
  __IO uint32_t ASCR1;      /*!< RI analog switches control register,           Address offset: 0x04 */
424
  __IO uint32_t ASCR2;      /*!< RI analog switch control register 2,           Address offset: 0x08 */
30 mjames 425
  __IO uint32_t HYSCR1;     /*!< RI hysteresis control register,                Address offset: 0x0C */
50 mjames 426
  __IO uint32_t HYSCR2;     /*!< RI Hysteresis control register,                Address offset: 0x10 */
427
  __IO uint32_t HYSCR3;     /*!< RI Hysteresis control register,                Address offset: 0x14 */
428
  __IO uint32_t HYSCR4;     /*!< RI Hysteresis control register,                Address offset: 0x18 */
429
  __IO uint32_t ASMR1;      /*!< RI Analog switch mode register 1,              Address offset: 0x1C */
430
  __IO uint32_t CMR1;       /*!< RI Channel mask register 1,                    Address offset: 0x20 */
431
  __IO uint32_t CICR1;      /*!< RI Channel Iden for capture register 1,        Address offset: 0x24 */
432
  __IO uint32_t ASMR2;      /*!< RI Analog switch mode register 2,              Address offset: 0x28 */
433
  __IO uint32_t CMR2;       /*!< RI Channel mask register 2,                    Address offset: 0x2C */
434
  __IO uint32_t CICR2;      /*!< RI Channel Iden for capture register 2,        Address offset: 0x30 */
435
  __IO uint32_t ASMR3;      /*!< RI Analog switch mode register 3,              Address offset: 0x34 */
436
  __IO uint32_t CMR3;       /*!< RI Channel mask register 3,                    Address offset: 0x38 */
437
  __IO uint32_t CICR3;      /*!< RI Channel Iden for capture register 3,        Address offset: 0x3C */
438
  __IO uint32_t ASMR4;      /*!< RI Analog switch mode register 4,              Address offset: 0x40 */
439
  __IO uint32_t CMR4;       /*!< RI Channel mask register 4,                    Address offset: 0x44 */
440
  __IO uint32_t CICR4;      /*!< RI Channel Iden for capture register 4,        Address offset: 0x48 */
441
  __IO uint32_t ASMR5;      /*!< RI Analog switch mode register 5,              Address offset: 0x4C */
442
  __IO uint32_t CMR5;       /*!< RI Channel mask register 5,                    Address offset: 0x50 */
443
  __IO uint32_t CICR5;      /*!< RI Channel Iden for capture register 5,        Address offset: 0x54 */
30 mjames 444
} RI_TypeDef;
445
 
446
/**
447
  * @brief Real-Time Clock
448
  */
449
typedef struct
450
{
451
  __IO uint32_t TR;         /*!< RTC time register,                                         Address offset: 0x00 */
452
  __IO uint32_t DR;         /*!< RTC date register,                                         Address offset: 0x04 */
453
  __IO uint32_t CR;         /*!< RTC control register,                                      Address offset: 0x08 */                                                                                            
454
  __IO uint32_t ISR;        /*!< RTC initialization and status register,                    Address offset: 0x0C */
455
  __IO uint32_t PRER;       /*!< RTC prescaler register,                                    Address offset: 0x10 */
456
  __IO uint32_t WUTR;       /*!< RTC wakeup timer register,                                 Address offset: 0x14 */
457
  __IO uint32_t CALIBR;     /*!< RTC calibration register,                                  Address offset: 0x18 */
458
  __IO uint32_t ALRMAR;     /*!< RTC alarm A register,                                      Address offset: 0x1C */
459
  __IO uint32_t ALRMBR;     /*!< RTC alarm B register,                                      Address offset: 0x20 */
460
  __IO uint32_t WPR;        /*!< RTC write protection register,                             Address offset: 0x24 */
461
  __IO uint32_t SSR;        /*!< RTC sub second register,                                   Address offset: 0x28 */
462
  __IO uint32_t SHIFTR;     /*!< RTC shift control register,                                Address offset: 0x2C */
463
  __IO uint32_t TSTR;       /*!< RTC time stamp time register,                              Address offset: 0x30 */
464
  __IO uint32_t TSDR;       /*!< RTC time stamp date register,                              Address offset: 0x34 */
465
  __IO uint32_t TSSSR;      /*!< RTC time-stamp sub second register,                        Address offset: 0x38 */
466
  __IO uint32_t CALR;       /*!< RRTC calibration register,                                 Address offset: 0x3C */
467
  __IO uint32_t TAFCR;      /*!< RTC tamper and alternate function configuration register,  Address offset: 0x40 */
468
  __IO uint32_t ALRMASSR;   /*!< RTC alarm A sub second register,                           Address offset: 0x44 */
469
  __IO uint32_t ALRMBSSR;   /*!< RTC alarm B sub second register,                           Address offset: 0x48 */
470
  uint32_t RESERVED7;       /*!< Reserved, 0x4C                                                                  */
471
  __IO uint32_t BKP0R;      /*!< RTC backup register 0,                                     Address offset: 0x50 */
472
  __IO uint32_t BKP1R;      /*!< RTC backup register 1,                                     Address offset: 0x54 */
473
  __IO uint32_t BKP2R;      /*!< RTC backup register 2,                                     Address offset: 0x58 */
474
  __IO uint32_t BKP3R;      /*!< RTC backup register 3,                                     Address offset: 0x5C */
475
  __IO uint32_t BKP4R;      /*!< RTC backup register 4,                                     Address offset: 0x60 */
476
  __IO uint32_t BKP5R;      /*!< RTC backup register 5,                                     Address offset: 0x64 */
477
  __IO uint32_t BKP6R;      /*!< RTC backup register 6,                                     Address offset: 0x68 */
478
  __IO uint32_t BKP7R;      /*!< RTC backup register 7,                                     Address offset: 0x6C */
479
  __IO uint32_t BKP8R;      /*!< RTC backup register 8,                                     Address offset: 0x70 */
480
  __IO uint32_t BKP9R;      /*!< RTC backup register 9,                                     Address offset: 0x74 */
481
  __IO uint32_t BKP10R;     /*!< RTC backup register 10,                                    Address offset: 0x78 */
482
  __IO uint32_t BKP11R;     /*!< RTC backup register 11,                                    Address offset: 0x7C */
483
  __IO uint32_t BKP12R;     /*!< RTC backup register 12,                                    Address offset: 0x80 */
484
  __IO uint32_t BKP13R;     /*!< RTC backup register 13,                                    Address offset: 0x84 */
485
  __IO uint32_t BKP14R;     /*!< RTC backup register 14,                                    Address offset: 0x88 */
486
  __IO uint32_t BKP15R;     /*!< RTC backup register 15,                                    Address offset: 0x8C */
487
  __IO uint32_t BKP16R;     /*!< RTC backup register 16,                                    Address offset: 0x90 */
488
  __IO uint32_t BKP17R;     /*!< RTC backup register 17,                                    Address offset: 0x94 */
489
  __IO uint32_t BKP18R;     /*!< RTC backup register 18,                                    Address offset: 0x98 */
490
  __IO uint32_t BKP19R;     /*!< RTC backup register 19,                                    Address offset: 0x9C */
491
  __IO uint32_t BKP20R;     /*!< RTC backup register 20,                                    Address offset: 0xA0 */
492
  __IO uint32_t BKP21R;     /*!< RTC backup register 21,                                    Address offset: 0xA4 */
493
  __IO uint32_t BKP22R;     /*!< RTC backup register 22,                                    Address offset: 0xA8 */
494
  __IO uint32_t BKP23R;     /*!< RTC backup register 23,                                    Address offset: 0xAC */
495
  __IO uint32_t BKP24R;     /*!< RTC backup register 24,                                    Address offset: 0xB0 */
496
  __IO uint32_t BKP25R;     /*!< RTC backup register 25,                                    Address offset: 0xB4 */
497
  __IO uint32_t BKP26R;     /*!< RTC backup register 26,                                    Address offset: 0xB8 */
498
  __IO uint32_t BKP27R;     /*!< RTC backup register 27,                                    Address offset: 0xBC */
499
  __IO uint32_t BKP28R;     /*!< RTC backup register 28,                                    Address offset: 0xC0 */
500
  __IO uint32_t BKP29R;     /*!< RTC backup register 29,                                    Address offset: 0xC4 */
501
  __IO uint32_t BKP30R;     /*!< RTC backup register 30,                                    Address offset: 0xC8 */
502
  __IO uint32_t BKP31R;     /*!< RTC backup register 31,                                    Address offset: 0xCC */
503
} RTC_TypeDef;
504
 
505
/**
506
  * @brief Serial Peripheral Interface
507
  */
508
 
509
typedef struct
510
{
511
  __IO uint32_t CR1;        /*!< SPI Control register 1 (not used in I2S mode),      Address offset: 0x00 */
512
  __IO uint32_t CR2;        /*!< SPI Control register 2,                             Address offset: 0x04 */
513
  __IO uint32_t SR;         /*!< SPI Status register,                                Address offset: 0x08 */
514
  __IO uint32_t DR;         /*!< SPI data register,                                  Address offset: 0x0C */
515
  __IO uint32_t CRCPR;      /*!< SPI CRC polynomial register (not used in I2S mode), Address offset: 0x10 */
516
  __IO uint32_t RXCRCR;     /*!< SPI Rx CRC register (not used in I2S mode),         Address offset: 0x14 */
517
  __IO uint32_t TXCRCR;     /*!< SPI Tx CRC register (not used in I2S mode),         Address offset: 0x18 */
518
  __IO uint32_t I2SCFGR;    /*!< SPI_I2S configuration register,                     Address offset: 0x1C */
519
  __IO uint32_t I2SPR;      /*!< SPI_I2S prescaler register,                         Address offset: 0x20 */
520
} SPI_TypeDef;
521
 
522
/**
523
  * @brief TIM
524
  */
525
typedef struct
526
{
527
  __IO uint32_t CR1;          /*!< TIM control register 1,              Address offset: 0x00 */
528
  __IO uint32_t CR2;          /*!< TIM control register 2,              Address offset: 0x04 */
529
  __IO uint32_t SMCR;         /*!< TIM slave Mode Control register,     Address offset: 0x08 */
530
  __IO uint32_t DIER;         /*!< TIM DMA/interrupt enable register,   Address offset: 0x0C */
531
  __IO uint32_t SR;           /*!< TIM status register,                 Address offset: 0x10 */
532
  __IO uint32_t EGR;          /*!< TIM event generation register,       Address offset: 0x14 */
533
  __IO uint32_t CCMR1;        /*!< TIM capture/compare mode register 1, Address offset: 0x18 */
534
  __IO uint32_t CCMR2;        /*!< TIM capture/compare mode register 2, Address offset: 0x1C */
535
  __IO uint32_t CCER;         /*!< TIM capture/compare enable register, Address offset: 0x20 */
536
  __IO uint32_t CNT;          /*!< TIM counter register,                Address offset: 0x24 */
537
  __IO uint32_t PSC;          /*!< TIM prescaler register,              Address offset: 0x28 */
538
  __IO uint32_t ARR;          /*!< TIM auto-reload register,            Address offset: 0x2C */
539
  uint32_t      RESERVED12;   /*!< Reserved, 0x30                                            */    
540
  __IO uint32_t CCR1;         /*!< TIM capture/compare register 1,      Address offset: 0x34 */    
541
  __IO uint32_t CCR2;         /*!< TIM capture/compare register 2,      Address offset: 0x38 */    
542
  __IO uint32_t CCR3;         /*!< TIM capture/compare register 3,      Address offset: 0x3C */
543
  __IO uint32_t CCR4;         /*!< TIM capture/compare register 4,      Address offset: 0x40 */
544
  uint32_t      RESERVED17;   /*!< Reserved, 0x44                                            */
545
  __IO uint32_t DCR;          /*!< TIM DMA control register,            Address offset: 0x48 */
546
  __IO uint32_t DMAR;         /*!< TIM DMA address for full transfer,   Address offset: 0x4C */
547
  __IO uint32_t OR;           /*!< TIM option register,                 Address offset: 0x50 */
548
} TIM_TypeDef;
549
/**
550
  * @brief Universal Synchronous Asynchronous Receiver Transmitter
551
  */
552
 
553
typedef struct
554
{
555
  __IO uint32_t SR;         /*!< USART Status register,                   Address offset: 0x00 */
556
  __IO uint32_t DR;         /*!< USART Data register,                     Address offset: 0x04 */
557
  __IO uint32_t BRR;        /*!< USART Baud rate register,                Address offset: 0x08 */
558
  __IO uint32_t CR1;        /*!< USART Control register 1,                Address offset: 0x0C */
559
  __IO uint32_t CR2;        /*!< USART Control register 2,                Address offset: 0x10 */
560
  __IO uint32_t CR3;        /*!< USART Control register 3,                Address offset: 0x14 */
561
  __IO uint32_t GTPR;       /*!< USART Guard time and prescaler register, Address offset: 0x18 */
562
} USART_TypeDef;
563
 
564
/**
565
  * @brief Universal Serial Bus Full Speed Device
566
  */
567
 
568
typedef struct
569
{
570
  __IO uint16_t EP0R;            /*!< USB Endpoint 0 register,                Address offset: 0x00 */
571
  __IO uint16_t RESERVED0;       /*!< Reserved */    
572
  __IO uint16_t EP1R;            /*!< USB Endpoint 1 register,                Address offset: 0x04 */
573
  __IO uint16_t RESERVED1;       /*!< Reserved */      
574
  __IO uint16_t EP2R;            /*!< USB Endpoint 2 register,                Address offset: 0x08 */
575
  __IO uint16_t RESERVED2;       /*!< Reserved */      
576
  __IO uint16_t EP3R;            /*!< USB Endpoint 3 register,                Address offset: 0x0C */
577
  __IO uint16_t RESERVED3;       /*!< Reserved */      
578
  __IO uint16_t EP4R;            /*!< USB Endpoint 4 register,                Address offset: 0x10 */
579
  __IO uint16_t RESERVED4;       /*!< Reserved */      
580
  __IO uint16_t EP5R;            /*!< USB Endpoint 5 register,                Address offset: 0x14 */
581
  __IO uint16_t RESERVED5;       /*!< Reserved */      
582
  __IO uint16_t EP6R;            /*!< USB Endpoint 6 register,                Address offset: 0x18 */
583
  __IO uint16_t RESERVED6;       /*!< Reserved */      
584
  __IO uint16_t EP7R;            /*!< USB Endpoint 7 register,                Address offset: 0x1C */
585
  __IO uint16_t RESERVED7[17];   /*!< Reserved */    
586
  __IO uint16_t CNTR;            /*!< Control register,                       Address offset: 0x40 */
587
  __IO uint16_t RESERVED8;       /*!< Reserved */      
588
  __IO uint16_t ISTR;            /*!< Interrupt status register,              Address offset: 0x44 */
589
  __IO uint16_t RESERVED9;       /*!< Reserved */      
590
  __IO uint16_t FNR;             /*!< Frame number register,                  Address offset: 0x48 */
591
  __IO uint16_t RESERVEDA;       /*!< Reserved */      
592
  __IO uint16_t DADDR;           /*!< Device address register,                Address offset: 0x4C */
593
  __IO uint16_t RESERVEDB;       /*!< Reserved */      
594
  __IO uint16_t BTABLE;          /*!< Buffer Table address register,          Address offset: 0x50 */
595
  __IO uint16_t RESERVEDC;       /*!< Reserved */      
596
} USB_TypeDef;
597
 
598
/**
599
  * @brief Window WATCHDOG
600
  */
601
typedef struct
602
{
603
  __IO uint32_t CR;   /*!< WWDG Control register,       Address offset: 0x00 */
604
  __IO uint32_t CFR;  /*!< WWDG Configuration register, Address offset: 0x04 */
605
  __IO uint32_t SR;   /*!< WWDG Status register,        Address offset: 0x08 */
606
} WWDG_TypeDef;
607
 
608
/**
609
  * @brief Universal Serial Bus Full Speed Device
610
  */
611
/**
612
  * @}
613
  */
614
 
615
/** @addtogroup Peripheral_memory_map
616
  * @{
617
  */
618
 
50 mjames 619
#define FLASH_BASE            (0x08000000UL)              /*!< FLASH base address in the alias region */
620
#define FLASH_EEPROM_BASE     (FLASH_BASE + 0x80000UL)    /*!< FLASH EEPROM base address in the alias region */
621
#define SRAM_BASE             (0x20000000UL)              /*!< SRAM base address in the alias region */
622
#define PERIPH_BASE           (0x40000000UL)              /*!< Peripheral base address in the alias region */
623
#define SRAM_BB_BASE          (0x22000000UL)              /*!< SRAM base address in the bit-band region */
624
#define PERIPH_BB_BASE        (0x42000000UL)              /*!< Peripheral base address in the bit-band region */
625
#define FLASH_END             (0x0803FFFFUL)              /*!< Program end FLASH address for Cat3 */
626
#define FLASH_EEPROM_END      (0x08081FFFUL)              /*!< FLASH EEPROM end address (8KB) */
30 mjames 627
 
628
/*!< Peripheral memory map */
629
#define APB1PERIPH_BASE       PERIPH_BASE
50 mjames 630
#define APB2PERIPH_BASE       (PERIPH_BASE + 0x00010000UL)
631
#define AHBPERIPH_BASE        (PERIPH_BASE + 0x00020000UL)
30 mjames 632
 
633
/*!< APB1 peripherals */
50 mjames 634
#define TIM2_BASE             (APB1PERIPH_BASE + 0x00000000UL)
635
#define TIM3_BASE             (APB1PERIPH_BASE + 0x00000400UL)
636
#define TIM4_BASE             (APB1PERIPH_BASE + 0x00000800UL)
637
#define TIM5_BASE             (APB1PERIPH_BASE + 0x00000C00UL)
638
#define TIM6_BASE             (APB1PERIPH_BASE + 0x00001000UL)
639
#define TIM7_BASE             (APB1PERIPH_BASE + 0x00001400UL)
640
#define RTC_BASE              (APB1PERIPH_BASE + 0x00002800UL)
641
#define WWDG_BASE             (APB1PERIPH_BASE + 0x00002C00UL)
642
#define IWDG_BASE             (APB1PERIPH_BASE + 0x00003000UL)
643
#define SPI2_BASE             (APB1PERIPH_BASE + 0x00003800UL)
644
#define SPI3_BASE             (APB1PERIPH_BASE + 0x00003C00UL)
645
#define USART2_BASE           (APB1PERIPH_BASE + 0x00004400UL)
646
#define USART3_BASE           (APB1PERIPH_BASE + 0x00004800UL)
647
#define I2C1_BASE             (APB1PERIPH_BASE + 0x00005400UL)
648
#define I2C2_BASE             (APB1PERIPH_BASE + 0x00005800UL)
30 mjames 649
 
650
/* USB device FS */
50 mjames 651
#define USB_BASE              (APB1PERIPH_BASE + 0x00005C00UL) /*!< USB_IP Peripheral Registers base address */
652
#define USB_PMAADDR           (APB1PERIPH_BASE + 0x00006000UL) /*!< USB_IP Packet Memory Area base address */
30 mjames 653
 
654
/* USB device FS SRAM */
50 mjames 655
#define PWR_BASE              (APB1PERIPH_BASE + 0x00007000UL)
656
#define DAC_BASE              (APB1PERIPH_BASE + 0x00007400UL)
657
#define COMP_BASE             (APB1PERIPH_BASE + 0x00007C00UL)
658
#define RI_BASE               (APB1PERIPH_BASE + 0x00007C04UL)
659
#define OPAMP_BASE            (APB1PERIPH_BASE + 0x00007C5CUL)
30 mjames 660
 
661
/*!< APB2 peripherals */
50 mjames 662
#define SYSCFG_BASE           (APB2PERIPH_BASE + 0x00000000UL)
663
#define EXTI_BASE             (APB2PERIPH_BASE + 0x00000400UL)
664
#define TIM9_BASE             (APB2PERIPH_BASE + 0x00000800UL)
665
#define TIM10_BASE            (APB2PERIPH_BASE + 0x00000C00UL)
666
#define TIM11_BASE            (APB2PERIPH_BASE + 0x00001000UL)
667
#define ADC1_BASE             (APB2PERIPH_BASE + 0x00002400UL)
668
#define ADC_BASE              (APB2PERIPH_BASE + 0x00002700UL)
669
#define SPI1_BASE             (APB2PERIPH_BASE + 0x00003000UL)
670
#define USART1_BASE           (APB2PERIPH_BASE + 0x00003800UL)
30 mjames 671
 
672
/*!< AHB peripherals */
50 mjames 673
#define GPIOA_BASE            (AHBPERIPH_BASE + 0x00000000UL)
674
#define GPIOB_BASE            (AHBPERIPH_BASE + 0x00000400UL)
675
#define GPIOC_BASE            (AHBPERIPH_BASE + 0x00000800UL)
676
#define GPIOD_BASE            (AHBPERIPH_BASE + 0x00000C00UL)
677
#define GPIOE_BASE            (AHBPERIPH_BASE + 0x00001000UL)
678
#define GPIOH_BASE            (AHBPERIPH_BASE + 0x00001400UL)
679
#define CRC_BASE              (AHBPERIPH_BASE + 0x00003000UL)
680
#define RCC_BASE              (AHBPERIPH_BASE + 0x00003800UL)
681
#define FLASH_R_BASE          (AHBPERIPH_BASE + 0x00003C00UL) /*!< FLASH registers base address */
682
#define OB_BASE               (0x1FF80000UL)                  /*!< FLASH Option Bytes base address */
683
#define FLASHSIZE_BASE        (0x1FF800CCUL)                  /*!< FLASH Size register base address for Cat.3, Cat.4, Cat.5 and Cat.6 devices */
684
#define UID_BASE              (0x1FF800D0UL)                  /*!< Unique device ID register base address for Cat.3, Cat.4, Cat.5 and Cat.6 devices */
685
#define DMA1_BASE             (AHBPERIPH_BASE + 0x00006000UL)
686
#define DMA1_Channel1_BASE    (DMA1_BASE + 0x00000008UL)
687
#define DMA1_Channel2_BASE    (DMA1_BASE + 0x0000001CUL)
688
#define DMA1_Channel3_BASE    (DMA1_BASE + 0x00000030UL)
689
#define DMA1_Channel4_BASE    (DMA1_BASE + 0x00000044UL)
690
#define DMA1_Channel5_BASE    (DMA1_BASE + 0x00000058UL)
691
#define DMA1_Channel6_BASE    (DMA1_BASE + 0x0000006CUL)
692
#define DMA1_Channel7_BASE    (DMA1_BASE + 0x00000080UL)
693
#define DMA2_BASE             (AHBPERIPH_BASE + 0x00006400UL)
694
#define DMA2_Channel1_BASE    (DMA2_BASE + 0x00000008UL)
695
#define DMA2_Channel2_BASE    (DMA2_BASE + 0x0000001CUL)
696
#define DMA2_Channel3_BASE    (DMA2_BASE + 0x00000030UL)
697
#define DMA2_Channel4_BASE    (DMA2_BASE + 0x00000044UL)
698
#define DMA2_Channel5_BASE    (DMA2_BASE + 0x00000058UL)
699
#define DBGMCU_BASE           (0xE0042000UL)     /*!< Debug MCU registers base address */
30 mjames 700
 
701
/**
702
  * @}
703
  */
704
 
705
/** @addtogroup Peripheral_declaration
706
  * @{
707
  */  
708
 
709
#define TIM2                ((TIM_TypeDef *) TIM2_BASE)
710
#define TIM3                ((TIM_TypeDef *) TIM3_BASE)
711
#define TIM4                ((TIM_TypeDef *) TIM4_BASE)
712
#define TIM5                ((TIM_TypeDef *) TIM5_BASE)
713
#define TIM6                ((TIM_TypeDef *) TIM6_BASE)
714
#define TIM7                ((TIM_TypeDef *) TIM7_BASE)
715
#define RTC                 ((RTC_TypeDef *) RTC_BASE)
716
#define WWDG                ((WWDG_TypeDef *) WWDG_BASE)
717
#define IWDG                ((IWDG_TypeDef *) IWDG_BASE)
718
#define SPI2                ((SPI_TypeDef *) SPI2_BASE)
719
#define SPI3                ((SPI_TypeDef *) SPI3_BASE)
720
#define USART2              ((USART_TypeDef *) USART2_BASE)
721
#define USART3              ((USART_TypeDef *) USART3_BASE)
722
#define I2C1                ((I2C_TypeDef *) I2C1_BASE)
723
#define I2C2                ((I2C_TypeDef *) I2C2_BASE)
724
/* USB device FS */
725
#define USB                   ((USB_TypeDef *) USB_BASE)
726
/* USB device FS SRAM */
727
#define PWR                 ((PWR_TypeDef *) PWR_BASE)
728
 
729
#define DAC1                ((DAC_TypeDef *) DAC_BASE)
730
/* Legacy define */
731
#define DAC                 DAC1
732
 
733
#define COMP                ((COMP_TypeDef *) COMP_BASE)                 /* COMP generic instance include bits of COMP1 and COMP2 mixed in the same register */
734
#define COMP1               ((COMP_TypeDef *) COMP_BASE)                 /* COMP1 instance definition to differentiate COMP1 and COMP2, not to be used to access comparator register */
735
#define COMP2               ((COMP_TypeDef *) (COMP_BASE + 0x00000001U)) /* COMP2 instance definition to differentiate COMP1 and COMP2, not to be used to access comparator register */
736
#define COMP12_COMMON       ((COMP_Common_TypeDef *) COMP_BASE)          /* COMP common instance definition to access comparator register bits used by both comparator instances (window mode) */
737
 
738
#define RI                  ((RI_TypeDef *) RI_BASE)
739
 
740
#define OPAMP               ((OPAMP_TypeDef *) OPAMP_BASE)
741
#define OPAMP1              ((OPAMP_TypeDef *) OPAMP_BASE)
742
#define OPAMP2              ((OPAMP_TypeDef *) (OPAMP_BASE + 0x00000001U))
743
#define OPAMP12_COMMON      ((OPAMP_Common_TypeDef *) OPAMP_BASE)
744
#define SYSCFG              ((SYSCFG_TypeDef *) SYSCFG_BASE)
745
#define EXTI                ((EXTI_TypeDef *) EXTI_BASE)
746
#define TIM9                ((TIM_TypeDef *) TIM9_BASE)
747
#define TIM10               ((TIM_TypeDef *) TIM10_BASE)
748
#define TIM11               ((TIM_TypeDef *) TIM11_BASE)
749
 
750
#define ADC1                ((ADC_TypeDef *) ADC1_BASE)
751
#define ADC1_COMMON         ((ADC_Common_TypeDef *) ADC_BASE)
752
/* Legacy defines */
753
#define ADC                 ADC1_COMMON
754
 
755
#define SPI1                ((SPI_TypeDef *) SPI1_BASE)
756
#define USART1              ((USART_TypeDef *) USART1_BASE)
757
#define GPIOA               ((GPIO_TypeDef *) GPIOA_BASE)
758
#define GPIOB               ((GPIO_TypeDef *) GPIOB_BASE)
759
#define GPIOC               ((GPIO_TypeDef *) GPIOC_BASE)
760
#define GPIOD               ((GPIO_TypeDef *) GPIOD_BASE)
761
#define GPIOE               ((GPIO_TypeDef *) GPIOE_BASE)
762
#define GPIOH               ((GPIO_TypeDef *) GPIOH_BASE)
763
#define CRC                 ((CRC_TypeDef *) CRC_BASE)
764
#define RCC                 ((RCC_TypeDef *) RCC_BASE)
765
#define FLASH               ((FLASH_TypeDef *) FLASH_R_BASE)
766
#define OB                  ((OB_TypeDef *) OB_BASE) 
767
#define DMA1                ((DMA_TypeDef *) DMA1_BASE)
768
#define DMA1_Channel1       ((DMA_Channel_TypeDef *) DMA1_Channel1_BASE)
769
#define DMA1_Channel2       ((DMA_Channel_TypeDef *) DMA1_Channel2_BASE)
770
#define DMA1_Channel3       ((DMA_Channel_TypeDef *) DMA1_Channel3_BASE)
771
#define DMA1_Channel4       ((DMA_Channel_TypeDef *) DMA1_Channel4_BASE)
772
#define DMA1_Channel5       ((DMA_Channel_TypeDef *) DMA1_Channel5_BASE)
773
#define DMA1_Channel6       ((DMA_Channel_TypeDef *) DMA1_Channel6_BASE)
774
#define DMA1_Channel7       ((DMA_Channel_TypeDef *) DMA1_Channel7_BASE)
775
#define DMA2                ((DMA_TypeDef *) DMA2_BASE)
776
#define DMA2_Channel1       ((DMA_Channel_TypeDef *) DMA2_Channel1_BASE)
777
#define DMA2_Channel2       ((DMA_Channel_TypeDef *) DMA2_Channel2_BASE)
778
#define DMA2_Channel3       ((DMA_Channel_TypeDef *) DMA2_Channel3_BASE)
779
#define DMA2_Channel4       ((DMA_Channel_TypeDef *) DMA2_Channel4_BASE)
780
#define DMA2_Channel5       ((DMA_Channel_TypeDef *) DMA2_Channel5_BASE)
781
#define DBGMCU              ((DBGMCU_TypeDef *) DBGMCU_BASE)
782
 
783
 /**
784
  * @}
785
  */
786
 
787
/** @addtogroup Exported_constants
788
  * @{
789
  */
790
 
791
/** @addtogroup Peripheral_Registers_Bits_Definition
792
  * @{
793
  */
794
 
795
/******************************************************************************/
796
/*                         Peripheral Registers Bits Definition               */
797
/******************************************************************************/
798
/******************************************************************************/
799
/*                                                                            */
800
/*                      Analog to Digital Converter (ADC)                     */
801
/*                                                                            */
802
/******************************************************************************/
50 mjames 803
#define VREFINT_CAL_ADDR_CMSIS                    0x1FF800F8      /*!<Internal voltage reference, address of parameter VREFINT_CAL: VrefInt ADC raw data acquired at temperature 30 DegC (tolerance: +-5 DegC), Vref+ = 3.0 V (tolerance: +-10 mV).                      */
804
#define TEMPSENSOR_CAL1_ADDR_CMSIS                0x1FF800FA      /*!<Internal temperature sensor, address of parameter TS_CAL1: On STM32L1, temperature sensor ADC raw data acquired at temperature  30 DegC (tolerance: +-5 DegC), Vref+ = 3.0 V (tolerance: +-10 mV). */
805
#define TEMPSENSOR_CAL2_ADDR_CMSIS                0x1FF800FE      /*!<Internal temperature sensor, address of parameter TS_CAL2: On STM32L1, temperature sensor ADC raw data acquired at temperature 110 DegC (tolerance: +-5 DegC), Vref+ = 3.0 V (tolerance: +-10 mV). */
30 mjames 806
 
807
/********************  Bit definition for ADC_SR register  ********************/
808
#define ADC_SR_AWD_Pos                       (0U)                              
50 mjames 809
#define ADC_SR_AWD_Msk                       (0x1UL << ADC_SR_AWD_Pos)          /*!< 0x00000001 */
30 mjames 810
#define ADC_SR_AWD                           ADC_SR_AWD_Msk                    /*!< ADC analog watchdog 1 flag */
811
#define ADC_SR_EOCS_Pos                      (1U)                              
50 mjames 812
#define ADC_SR_EOCS_Msk                      (0x1UL << ADC_SR_EOCS_Pos)         /*!< 0x00000002 */
30 mjames 813
#define ADC_SR_EOCS                          ADC_SR_EOCS_Msk                   /*!< ADC group regular end of unitary conversion or end of sequence conversions flag */
814
#define ADC_SR_JEOS_Pos                      (2U)                              
50 mjames 815
#define ADC_SR_JEOS_Msk                      (0x1UL << ADC_SR_JEOS_Pos)         /*!< 0x00000004 */
30 mjames 816
#define ADC_SR_JEOS                          ADC_SR_JEOS_Msk                   /*!< ADC group injected end of sequence conversions flag */
817
#define ADC_SR_JSTRT_Pos                     (3U)                              
50 mjames 818
#define ADC_SR_JSTRT_Msk                     (0x1UL << ADC_SR_JSTRT_Pos)        /*!< 0x00000008 */
30 mjames 819
#define ADC_SR_JSTRT                         ADC_SR_JSTRT_Msk                  /*!< ADC group injected conversion start flag */
820
#define ADC_SR_STRT_Pos                      (4U)                              
50 mjames 821
#define ADC_SR_STRT_Msk                      (0x1UL << ADC_SR_STRT_Pos)         /*!< 0x00000010 */
30 mjames 822
#define ADC_SR_STRT                          ADC_SR_STRT_Msk                   /*!< ADC group regular conversion start flag */
823
#define ADC_SR_OVR_Pos                       (5U)                              
50 mjames 824
#define ADC_SR_OVR_Msk                       (0x1UL << ADC_SR_OVR_Pos)          /*!< 0x00000020 */
30 mjames 825
#define ADC_SR_OVR                           ADC_SR_OVR_Msk                    /*!< ADC group regular overrun flag */
826
#define ADC_SR_ADONS_Pos                     (6U)                              
50 mjames 827
#define ADC_SR_ADONS_Msk                     (0x1UL << ADC_SR_ADONS_Pos)        /*!< 0x00000040 */
30 mjames 828
#define ADC_SR_ADONS                         ADC_SR_ADONS_Msk                  /*!< ADC ready flag */
829
#define ADC_SR_RCNR_Pos                      (8U)                              
50 mjames 830
#define ADC_SR_RCNR_Msk                      (0x1UL << ADC_SR_RCNR_Pos)         /*!< 0x00000100 */
30 mjames 831
#define ADC_SR_RCNR                          ADC_SR_RCNR_Msk                   /*!< ADC group regular not ready flag */
832
#define ADC_SR_JCNR_Pos                      (9U)                              
50 mjames 833
#define ADC_SR_JCNR_Msk                      (0x1UL << ADC_SR_JCNR_Pos)         /*!< 0x00000200 */
30 mjames 834
#define ADC_SR_JCNR                          ADC_SR_JCNR_Msk                   /*!< ADC group injected not ready flag */
835
 
836
/* Legacy defines */
837
#define  ADC_SR_EOC                          (ADC_SR_EOCS)
838
#define  ADC_SR_JEOC                         (ADC_SR_JEOS)
839
 
840
/*******************  Bit definition for ADC_CR1 register  ********************/
841
#define ADC_CR1_AWDCH_Pos                    (0U)                              
50 mjames 842
#define ADC_CR1_AWDCH_Msk                    (0x1FUL << ADC_CR1_AWDCH_Pos)      /*!< 0x0000001F */
30 mjames 843
#define ADC_CR1_AWDCH                        ADC_CR1_AWDCH_Msk                 /*!< ADC analog watchdog 1 monitored channel selection */
50 mjames 844
#define ADC_CR1_AWDCH_0                      (0x01UL << ADC_CR1_AWDCH_Pos)      /*!< 0x00000001 */
845
#define ADC_CR1_AWDCH_1                      (0x02UL << ADC_CR1_AWDCH_Pos)      /*!< 0x00000002 */
846
#define ADC_CR1_AWDCH_2                      (0x04UL << ADC_CR1_AWDCH_Pos)      /*!< 0x00000004 */
847
#define ADC_CR1_AWDCH_3                      (0x08UL << ADC_CR1_AWDCH_Pos)      /*!< 0x00000008 */
848
#define ADC_CR1_AWDCH_4                      (0x10UL << ADC_CR1_AWDCH_Pos)      /*!< 0x00000010 */
30 mjames 849
 
850
#define ADC_CR1_EOCSIE_Pos                   (5U)                              
50 mjames 851
#define ADC_CR1_EOCSIE_Msk                   (0x1UL << ADC_CR1_EOCSIE_Pos)      /*!< 0x00000020 */
30 mjames 852
#define ADC_CR1_EOCSIE                       ADC_CR1_EOCSIE_Msk                /*!< ADC group regular end of unitary conversion or end of sequence conversions interrupt */
853
#define ADC_CR1_AWDIE_Pos                    (6U)                              
50 mjames 854
#define ADC_CR1_AWDIE_Msk                    (0x1UL << ADC_CR1_AWDIE_Pos)       /*!< 0x00000040 */
30 mjames 855
#define ADC_CR1_AWDIE                        ADC_CR1_AWDIE_Msk                 /*!< ADC analog watchdog 1 interrupt */
856
#define ADC_CR1_JEOSIE_Pos                   (7U)                              
50 mjames 857
#define ADC_CR1_JEOSIE_Msk                   (0x1UL << ADC_CR1_JEOSIE_Pos)      /*!< 0x00000080 */
30 mjames 858
#define ADC_CR1_JEOSIE                       ADC_CR1_JEOSIE_Msk                /*!< ADC group injected end of sequence conversions interrupt */
859
#define ADC_CR1_SCAN_Pos                     (8U)                              
50 mjames 860
#define ADC_CR1_SCAN_Msk                     (0x1UL << ADC_CR1_SCAN_Pos)        /*!< 0x00000100 */
30 mjames 861
#define ADC_CR1_SCAN                         ADC_CR1_SCAN_Msk                  /*!< ADC scan mode */
862
#define ADC_CR1_AWDSGL_Pos                   (9U)                              
50 mjames 863
#define ADC_CR1_AWDSGL_Msk                   (0x1UL << ADC_CR1_AWDSGL_Pos)      /*!< 0x00000200 */
30 mjames 864
#define ADC_CR1_AWDSGL                       ADC_CR1_AWDSGL_Msk                /*!< ADC analog watchdog 1 monitoring a single channel or all channels */
865
#define ADC_CR1_JAUTO_Pos                    (10U)                             
50 mjames 866
#define ADC_CR1_JAUTO_Msk                    (0x1UL << ADC_CR1_JAUTO_Pos)       /*!< 0x00000400 */
30 mjames 867
#define ADC_CR1_JAUTO                        ADC_CR1_JAUTO_Msk                 /*!< ADC group injected automatic trigger mode */
868
#define ADC_CR1_DISCEN_Pos                   (11U)                             
50 mjames 869
#define ADC_CR1_DISCEN_Msk                   (0x1UL << ADC_CR1_DISCEN_Pos)      /*!< 0x00000800 */
30 mjames 870
#define ADC_CR1_DISCEN                       ADC_CR1_DISCEN_Msk                /*!< ADC group regular sequencer discontinuous mode */
871
#define ADC_CR1_JDISCEN_Pos                  (12U)                             
50 mjames 872
#define ADC_CR1_JDISCEN_Msk                  (0x1UL << ADC_CR1_JDISCEN_Pos)     /*!< 0x00001000 */
30 mjames 873
#define ADC_CR1_JDISCEN                      ADC_CR1_JDISCEN_Msk               /*!< ADC group injected sequencer discontinuous mode */
874
 
875
#define ADC_CR1_DISCNUM_Pos                  (13U)                             
50 mjames 876
#define ADC_CR1_DISCNUM_Msk                  (0x7UL << ADC_CR1_DISCNUM_Pos)     /*!< 0x0000E000 */
30 mjames 877
#define ADC_CR1_DISCNUM                      ADC_CR1_DISCNUM_Msk               /*!< ADC group regular sequencer discontinuous number of ranks */
50 mjames 878
#define ADC_CR1_DISCNUM_0                    (0x1UL << ADC_CR1_DISCNUM_Pos)     /*!< 0x00002000 */
879
#define ADC_CR1_DISCNUM_1                    (0x2UL << ADC_CR1_DISCNUM_Pos)     /*!< 0x00004000 */
880
#define ADC_CR1_DISCNUM_2                    (0x4UL << ADC_CR1_DISCNUM_Pos)     /*!< 0x00008000 */
30 mjames 881
 
882
#define ADC_CR1_PDD_Pos                      (16U)                             
50 mjames 883
#define ADC_CR1_PDD_Msk                      (0x1UL << ADC_CR1_PDD_Pos)         /*!< 0x00010000 */
30 mjames 884
#define ADC_CR1_PDD                          ADC_CR1_PDD_Msk                   /*!< ADC power down during auto delay phase */
885
#define ADC_CR1_PDI_Pos                      (17U)                             
50 mjames 886
#define ADC_CR1_PDI_Msk                      (0x1UL << ADC_CR1_PDI_Pos)         /*!< 0x00020000 */
30 mjames 887
#define ADC_CR1_PDI                          ADC_CR1_PDI_Msk                   /*!< ADC power down during idle phase */
888
 
889
#define ADC_CR1_JAWDEN_Pos                   (22U)                             
50 mjames 890
#define ADC_CR1_JAWDEN_Msk                   (0x1UL << ADC_CR1_JAWDEN_Pos)      /*!< 0x00400000 */
30 mjames 891
#define ADC_CR1_JAWDEN                       ADC_CR1_JAWDEN_Msk                /*!< ADC analog watchdog 1 enable on scope ADC group injected */
892
#define ADC_CR1_AWDEN_Pos                    (23U)                             
50 mjames 893
#define ADC_CR1_AWDEN_Msk                    (0x1UL << ADC_CR1_AWDEN_Pos)       /*!< 0x00800000 */
30 mjames 894
#define ADC_CR1_AWDEN                        ADC_CR1_AWDEN_Msk                 /*!< ADC analog watchdog 1 enable on scope ADC group regular */
895
 
896
#define ADC_CR1_RES_Pos                      (24U)                             
50 mjames 897
#define ADC_CR1_RES_Msk                      (0x3UL << ADC_CR1_RES_Pos)         /*!< 0x03000000 */
30 mjames 898
#define ADC_CR1_RES                          ADC_CR1_RES_Msk                   /*!< ADC resolution */
50 mjames 899
#define ADC_CR1_RES_0                        (0x1UL << ADC_CR1_RES_Pos)         /*!< 0x01000000 */
900
#define ADC_CR1_RES_1                        (0x2UL << ADC_CR1_RES_Pos)         /*!< 0x02000000 */
30 mjames 901
 
902
#define ADC_CR1_OVRIE_Pos                    (26U)                             
50 mjames 903
#define ADC_CR1_OVRIE_Msk                    (0x1UL << ADC_CR1_OVRIE_Pos)       /*!< 0x04000000 */
30 mjames 904
#define ADC_CR1_OVRIE                        ADC_CR1_OVRIE_Msk                 /*!< ADC group regular overrun interrupt */
905
 
906
/* Legacy defines */
907
#define  ADC_CR1_EOCIE                       (ADC_CR1_EOCSIE)
908
#define  ADC_CR1_JEOCIE                      (ADC_CR1_JEOSIE)
909
 
910
/*******************  Bit definition for ADC_CR2 register  ********************/
911
#define ADC_CR2_ADON_Pos                     (0U)                              
50 mjames 912
#define ADC_CR2_ADON_Msk                     (0x1UL << ADC_CR2_ADON_Pos)        /*!< 0x00000001 */
30 mjames 913
#define ADC_CR2_ADON                         ADC_CR2_ADON_Msk                  /*!< ADC enable */
914
#define ADC_CR2_CONT_Pos                     (1U)                              
50 mjames 915
#define ADC_CR2_CONT_Msk                     (0x1UL << ADC_CR2_CONT_Pos)        /*!< 0x00000002 */
30 mjames 916
#define ADC_CR2_CONT                         ADC_CR2_CONT_Msk                  /*!< ADC group regular continuous conversion mode */
917
#define ADC_CR2_CFG_Pos                      (2U)                              
50 mjames 918
#define ADC_CR2_CFG_Msk                      (0x1UL << ADC_CR2_CFG_Pos)         /*!< 0x00000004 */
30 mjames 919
#define ADC_CR2_CFG                          ADC_CR2_CFG_Msk                   /*!< ADC channels bank selection */
920
 
921
#define ADC_CR2_DELS_Pos                     (4U)                              
50 mjames 922
#define ADC_CR2_DELS_Msk                     (0x7UL << ADC_CR2_DELS_Pos)        /*!< 0x00000070 */
30 mjames 923
#define ADC_CR2_DELS                         ADC_CR2_DELS_Msk                  /*!< ADC auto delay selection */
50 mjames 924
#define ADC_CR2_DELS_0                       (0x1UL << ADC_CR2_DELS_Pos)        /*!< 0x00000010 */
925
#define ADC_CR2_DELS_1                       (0x2UL << ADC_CR2_DELS_Pos)        /*!< 0x00000020 */
926
#define ADC_CR2_DELS_2                       (0x4UL << ADC_CR2_DELS_Pos)        /*!< 0x00000040 */
30 mjames 927
 
928
#define ADC_CR2_DMA_Pos                      (8U)                              
50 mjames 929
#define ADC_CR2_DMA_Msk                      (0x1UL << ADC_CR2_DMA_Pos)         /*!< 0x00000100 */
30 mjames 930
#define ADC_CR2_DMA                          ADC_CR2_DMA_Msk                   /*!< ADC DMA transfer enable */
931
#define ADC_CR2_DDS_Pos                      (9U)                              
50 mjames 932
#define ADC_CR2_DDS_Msk                      (0x1UL << ADC_CR2_DDS_Pos)         /*!< 0x00000200 */
30 mjames 933
#define ADC_CR2_DDS                          ADC_CR2_DDS_Msk                   /*!< ADC DMA transfer configuration */
934
#define ADC_CR2_EOCS_Pos                     (10U)                             
50 mjames 935
#define ADC_CR2_EOCS_Msk                     (0x1UL << ADC_CR2_EOCS_Pos)        /*!< 0x00000400 */
30 mjames 936
#define ADC_CR2_EOCS                         ADC_CR2_EOCS_Msk                  /*!< ADC end of unitary or end of sequence conversions selection */
937
#define ADC_CR2_ALIGN_Pos                    (11U)                             
50 mjames 938
#define ADC_CR2_ALIGN_Msk                    (0x1UL << ADC_CR2_ALIGN_Pos)       /*!< 0x00000800 */
30 mjames 939
#define ADC_CR2_ALIGN                        ADC_CR2_ALIGN_Msk                 /*!< ADC data alignement */
940
 
941
#define ADC_CR2_JEXTSEL_Pos                  (16U)                             
50 mjames 942
#define ADC_CR2_JEXTSEL_Msk                  (0xFUL << ADC_CR2_JEXTSEL_Pos)     /*!< 0x000F0000 */
30 mjames 943
#define ADC_CR2_JEXTSEL                      ADC_CR2_JEXTSEL_Msk               /*!< ADC group injected external trigger source */
50 mjames 944
#define ADC_CR2_JEXTSEL_0                    (0x1UL << ADC_CR2_JEXTSEL_Pos)     /*!< 0x00010000 */
945
#define ADC_CR2_JEXTSEL_1                    (0x2UL << ADC_CR2_JEXTSEL_Pos)     /*!< 0x00020000 */
946
#define ADC_CR2_JEXTSEL_2                    (0x4UL << ADC_CR2_JEXTSEL_Pos)     /*!< 0x00040000 */
947
#define ADC_CR2_JEXTSEL_3                    (0x8UL << ADC_CR2_JEXTSEL_Pos)     /*!< 0x00080000 */
30 mjames 948
 
949
#define ADC_CR2_JEXTEN_Pos                   (20U)                             
50 mjames 950
#define ADC_CR2_JEXTEN_Msk                   (0x3UL << ADC_CR2_JEXTEN_Pos)      /*!< 0x00300000 */
30 mjames 951
#define ADC_CR2_JEXTEN                       ADC_CR2_JEXTEN_Msk                /*!< ADC group injected external trigger polarity */
50 mjames 952
#define ADC_CR2_JEXTEN_0                     (0x1UL << ADC_CR2_JEXTEN_Pos)      /*!< 0x00100000 */
953
#define ADC_CR2_JEXTEN_1                     (0x2UL << ADC_CR2_JEXTEN_Pos)      /*!< 0x00200000 */
30 mjames 954
 
955
#define ADC_CR2_JSWSTART_Pos                 (22U)                             
50 mjames 956
#define ADC_CR2_JSWSTART_Msk                 (0x1UL << ADC_CR2_JSWSTART_Pos)    /*!< 0x00400000 */
30 mjames 957
#define ADC_CR2_JSWSTART                     ADC_CR2_JSWSTART_Msk              /*!< ADC group injected conversion start */
958
 
959
#define ADC_CR2_EXTSEL_Pos                   (24U)                             
50 mjames 960
#define ADC_CR2_EXTSEL_Msk                   (0xFUL << ADC_CR2_EXTSEL_Pos)      /*!< 0x0F000000 */
30 mjames 961
#define ADC_CR2_EXTSEL                       ADC_CR2_EXTSEL_Msk                /*!< ADC group regular external trigger source */
50 mjames 962
#define ADC_CR2_EXTSEL_0                     (0x1UL << ADC_CR2_EXTSEL_Pos)      /*!< 0x01000000 */
963
#define ADC_CR2_EXTSEL_1                     (0x2UL << ADC_CR2_EXTSEL_Pos)      /*!< 0x02000000 */
964
#define ADC_CR2_EXTSEL_2                     (0x4UL << ADC_CR2_EXTSEL_Pos)      /*!< 0x04000000 */
965
#define ADC_CR2_EXTSEL_3                     (0x8UL << ADC_CR2_EXTSEL_Pos)      /*!< 0x08000000 */
30 mjames 966
 
967
#define ADC_CR2_EXTEN_Pos                    (28U)                             
50 mjames 968
#define ADC_CR2_EXTEN_Msk                    (0x3UL << ADC_CR2_EXTEN_Pos)       /*!< 0x30000000 */
30 mjames 969
#define ADC_CR2_EXTEN                        ADC_CR2_EXTEN_Msk                 /*!< ADC group regular external trigger polarity */
50 mjames 970
#define ADC_CR2_EXTEN_0                      (0x1UL << ADC_CR2_EXTEN_Pos)       /*!< 0x10000000 */
971
#define ADC_CR2_EXTEN_1                      (0x2UL << ADC_CR2_EXTEN_Pos)       /*!< 0x20000000 */
30 mjames 972
 
973
#define ADC_CR2_SWSTART_Pos                  (30U)                             
50 mjames 974
#define ADC_CR2_SWSTART_Msk                  (0x1UL << ADC_CR2_SWSTART_Pos)     /*!< 0x40000000 */
30 mjames 975
#define ADC_CR2_SWSTART                      ADC_CR2_SWSTART_Msk               /*!< ADC group regular conversion start */
976
 
977
/******************  Bit definition for ADC_SMPR1 register  *******************/
978
#define ADC_SMPR1_SMP20_Pos                  (0U)                              
50 mjames 979
#define ADC_SMPR1_SMP20_Msk                  (0x7UL << ADC_SMPR1_SMP20_Pos)     /*!< 0x00000007 */
30 mjames 980
#define ADC_SMPR1_SMP20                      ADC_SMPR1_SMP20_Msk               /*!< ADC channel 20 sampling time selection */
50 mjames 981
#define ADC_SMPR1_SMP20_0                    (0x1UL << ADC_SMPR1_SMP20_Pos)     /*!< 0x00000001 */
982
#define ADC_SMPR1_SMP20_1                    (0x2UL << ADC_SMPR1_SMP20_Pos)     /*!< 0x00000002 */
983
#define ADC_SMPR1_SMP20_2                    (0x4UL << ADC_SMPR1_SMP20_Pos)     /*!< 0x00000004 */
30 mjames 984
 
985
#define ADC_SMPR1_SMP21_Pos                  (3U)                              
50 mjames 986
#define ADC_SMPR1_SMP21_Msk                  (0x7UL << ADC_SMPR1_SMP21_Pos)     /*!< 0x00000038 */
30 mjames 987
#define ADC_SMPR1_SMP21                      ADC_SMPR1_SMP21_Msk               /*!< ADC channel 21 sampling time selection */
50 mjames 988
#define ADC_SMPR1_SMP21_0                    (0x1UL << ADC_SMPR1_SMP21_Pos)     /*!< 0x00000008 */
989
#define ADC_SMPR1_SMP21_1                    (0x2UL << ADC_SMPR1_SMP21_Pos)     /*!< 0x00000010 */
990
#define ADC_SMPR1_SMP21_2                    (0x4UL << ADC_SMPR1_SMP21_Pos)     /*!< 0x00000020 */
30 mjames 991
 
992
#define ADC_SMPR1_SMP22_Pos                  (6U)                              
50 mjames 993
#define ADC_SMPR1_SMP22_Msk                  (0x7UL << ADC_SMPR1_SMP22_Pos)     /*!< 0x000001C0 */
30 mjames 994
#define ADC_SMPR1_SMP22                      ADC_SMPR1_SMP22_Msk               /*!< ADC channel 22 sampling time selection */
50 mjames 995
#define ADC_SMPR1_SMP22_0                    (0x1UL << ADC_SMPR1_SMP22_Pos)     /*!< 0x00000040 */
996
#define ADC_SMPR1_SMP22_1                    (0x2UL << ADC_SMPR1_SMP22_Pos)     /*!< 0x00000080 */
997
#define ADC_SMPR1_SMP22_2                    (0x4UL << ADC_SMPR1_SMP22_Pos)     /*!< 0x00000100 */
30 mjames 998
 
999
#define ADC_SMPR1_SMP23_Pos                  (9U)                              
50 mjames 1000
#define ADC_SMPR1_SMP23_Msk                  (0x7UL << ADC_SMPR1_SMP23_Pos)     /*!< 0x00000E00 */
30 mjames 1001
#define ADC_SMPR1_SMP23                      ADC_SMPR1_SMP23_Msk               /*!< ADC channel 23 sampling time selection */
50 mjames 1002
#define ADC_SMPR1_SMP23_0                    (0x1UL << ADC_SMPR1_SMP23_Pos)     /*!< 0x00000200 */
1003
#define ADC_SMPR1_SMP23_1                    (0x2UL << ADC_SMPR1_SMP23_Pos)     /*!< 0x00000400 */
1004
#define ADC_SMPR1_SMP23_2                    (0x4UL << ADC_SMPR1_SMP23_Pos)     /*!< 0x00000800 */
30 mjames 1005
 
1006
#define ADC_SMPR1_SMP24_Pos                  (12U)                             
50 mjames 1007
#define ADC_SMPR1_SMP24_Msk                  (0x7UL << ADC_SMPR1_SMP24_Pos)     /*!< 0x00007000 */
30 mjames 1008
#define ADC_SMPR1_SMP24                      ADC_SMPR1_SMP24_Msk               /*!< ADC channel 24 sampling time selection */
50 mjames 1009
#define ADC_SMPR1_SMP24_0                    (0x1UL << ADC_SMPR1_SMP24_Pos)     /*!< 0x00001000 */
1010
#define ADC_SMPR1_SMP24_1                    (0x2UL << ADC_SMPR1_SMP24_Pos)     /*!< 0x00002000 */
1011
#define ADC_SMPR1_SMP24_2                    (0x4UL << ADC_SMPR1_SMP24_Pos)     /*!< 0x00004000 */
30 mjames 1012
 
1013
#define ADC_SMPR1_SMP25_Pos                  (15U)                             
50 mjames 1014
#define ADC_SMPR1_SMP25_Msk                  (0x7UL << ADC_SMPR1_SMP25_Pos)     /*!< 0x00038000 */
30 mjames 1015
#define ADC_SMPR1_SMP25                      ADC_SMPR1_SMP25_Msk               /*!< ADC channel 25 sampling time selection */
50 mjames 1016
#define ADC_SMPR1_SMP25_0                    (0x1UL << ADC_SMPR1_SMP25_Pos)     /*!< 0x00008000 */
1017
#define ADC_SMPR1_SMP25_1                    (0x2UL << ADC_SMPR1_SMP25_Pos)     /*!< 0x00010000 */
1018
#define ADC_SMPR1_SMP25_2                    (0x4UL << ADC_SMPR1_SMP25_Pos)     /*!< 0x00020000 */
30 mjames 1019
 
1020
#define ADC_SMPR1_SMP26_Pos                  (18U)                             
50 mjames 1021
#define ADC_SMPR1_SMP26_Msk                  (0x7UL << ADC_SMPR1_SMP26_Pos)     /*!< 0x001C0000 */
30 mjames 1022
#define ADC_SMPR1_SMP26                      ADC_SMPR1_SMP26_Msk               /*!< ADC channel 26 sampling time selection */
50 mjames 1023
#define ADC_SMPR1_SMP26_0                    (0x1UL << ADC_SMPR1_SMP26_Pos)     /*!< 0x00040000 */
1024
#define ADC_SMPR1_SMP26_1                    (0x2UL << ADC_SMPR1_SMP26_Pos)     /*!< 0x00080000 */
1025
#define ADC_SMPR1_SMP26_2                    (0x4UL << ADC_SMPR1_SMP26_Pos)     /*!< 0x00100000 */
30 mjames 1026
 
1027
/******************  Bit definition for ADC_SMPR2 register  *******************/
1028
#define ADC_SMPR2_SMP10_Pos                  (0U)                              
50 mjames 1029
#define ADC_SMPR2_SMP10_Msk                  (0x7UL << ADC_SMPR2_SMP10_Pos)     /*!< 0x00000007 */
30 mjames 1030
#define ADC_SMPR2_SMP10                      ADC_SMPR2_SMP10_Msk               /*!< ADC channel 10 sampling time selection */
50 mjames 1031
#define ADC_SMPR2_SMP10_0                    (0x1UL << ADC_SMPR2_SMP10_Pos)     /*!< 0x00000001 */
1032
#define ADC_SMPR2_SMP10_1                    (0x2UL << ADC_SMPR2_SMP10_Pos)     /*!< 0x00000002 */
1033
#define ADC_SMPR2_SMP10_2                    (0x4UL << ADC_SMPR2_SMP10_Pos)     /*!< 0x00000004 */
30 mjames 1034
 
1035
#define ADC_SMPR2_SMP11_Pos                  (3U)                              
50 mjames 1036
#define ADC_SMPR2_SMP11_Msk                  (0x7UL << ADC_SMPR2_SMP11_Pos)     /*!< 0x00000038 */
30 mjames 1037
#define ADC_SMPR2_SMP11                      ADC_SMPR2_SMP11_Msk               /*!< ADC channel 11 sampling time selection */
50 mjames 1038
#define ADC_SMPR2_SMP11_0                    (0x1UL << ADC_SMPR2_SMP11_Pos)     /*!< 0x00000008 */
1039
#define ADC_SMPR2_SMP11_1                    (0x2UL << ADC_SMPR2_SMP11_Pos)     /*!< 0x00000010 */
1040
#define ADC_SMPR2_SMP11_2                    (0x4UL << ADC_SMPR2_SMP11_Pos)     /*!< 0x00000020 */
30 mjames 1041
 
1042
#define ADC_SMPR2_SMP12_Pos                  (6U)                              
50 mjames 1043
#define ADC_SMPR2_SMP12_Msk                  (0x7UL << ADC_SMPR2_SMP12_Pos)     /*!< 0x000001C0 */
30 mjames 1044
#define ADC_SMPR2_SMP12                      ADC_SMPR2_SMP12_Msk               /*!< ADC channel 12 sampling time selection */
50 mjames 1045
#define ADC_SMPR2_SMP12_0                    (0x1UL << ADC_SMPR2_SMP12_Pos)     /*!< 0x00000040 */
1046
#define ADC_SMPR2_SMP12_1                    (0x2UL << ADC_SMPR2_SMP12_Pos)     /*!< 0x00000080 */
1047
#define ADC_SMPR2_SMP12_2                    (0x4UL << ADC_SMPR2_SMP12_Pos)     /*!< 0x00000100 */
30 mjames 1048
 
1049
#define ADC_SMPR2_SMP13_Pos                  (9U)                              
50 mjames 1050
#define ADC_SMPR2_SMP13_Msk                  (0x7UL << ADC_SMPR2_SMP13_Pos)     /*!< 0x00000E00 */
30 mjames 1051
#define ADC_SMPR2_SMP13                      ADC_SMPR2_SMP13_Msk               /*!< ADC channel 13 sampling time selection */
50 mjames 1052
#define ADC_SMPR2_SMP13_0                    (0x1UL << ADC_SMPR2_SMP13_Pos)     /*!< 0x00000200 */
1053
#define ADC_SMPR2_SMP13_1                    (0x2UL << ADC_SMPR2_SMP13_Pos)     /*!< 0x00000400 */
1054
#define ADC_SMPR2_SMP13_2                    (0x4UL << ADC_SMPR2_SMP13_Pos)     /*!< 0x00000800 */
30 mjames 1055
 
1056
#define ADC_SMPR2_SMP14_Pos                  (12U)                             
50 mjames 1057
#define ADC_SMPR2_SMP14_Msk                  (0x7UL << ADC_SMPR2_SMP14_Pos)     /*!< 0x00007000 */
30 mjames 1058
#define ADC_SMPR2_SMP14                      ADC_SMPR2_SMP14_Msk               /*!< ADC channel 14 sampling time selection */
50 mjames 1059
#define ADC_SMPR2_SMP14_0                    (0x1UL << ADC_SMPR2_SMP14_Pos)     /*!< 0x00001000 */
1060
#define ADC_SMPR2_SMP14_1                    (0x2UL << ADC_SMPR2_SMP14_Pos)     /*!< 0x00002000 */
1061
#define ADC_SMPR2_SMP14_2                    (0x4UL << ADC_SMPR2_SMP14_Pos)     /*!< 0x00004000 */
30 mjames 1062
 
1063
#define ADC_SMPR2_SMP15_Pos                  (15U)                             
50 mjames 1064
#define ADC_SMPR2_SMP15_Msk                  (0x7UL << ADC_SMPR2_SMP15_Pos)     /*!< 0x00038000 */
30 mjames 1065
#define ADC_SMPR2_SMP15                      ADC_SMPR2_SMP15_Msk               /*!< ADC channel 5 sampling time selection */
50 mjames 1066
#define ADC_SMPR2_SMP15_0                    (0x1UL << ADC_SMPR2_SMP15_Pos)     /*!< 0x00008000 */
1067
#define ADC_SMPR2_SMP15_1                    (0x2UL << ADC_SMPR2_SMP15_Pos)     /*!< 0x00010000 */
1068
#define ADC_SMPR2_SMP15_2                    (0x4UL << ADC_SMPR2_SMP15_Pos)     /*!< 0x00020000 */
30 mjames 1069
 
1070
#define ADC_SMPR2_SMP16_Pos                  (18U)                             
50 mjames 1071
#define ADC_SMPR2_SMP16_Msk                  (0x7UL << ADC_SMPR2_SMP16_Pos)     /*!< 0x001C0000 */
30 mjames 1072
#define ADC_SMPR2_SMP16                      ADC_SMPR2_SMP16_Msk               /*!< ADC channel 16 sampling time selection */
50 mjames 1073
#define ADC_SMPR2_SMP16_0                    (0x1UL << ADC_SMPR2_SMP16_Pos)     /*!< 0x00040000 */
1074
#define ADC_SMPR2_SMP16_1                    (0x2UL << ADC_SMPR2_SMP16_Pos)     /*!< 0x00080000 */
1075
#define ADC_SMPR2_SMP16_2                    (0x4UL << ADC_SMPR2_SMP16_Pos)     /*!< 0x00100000 */
30 mjames 1076
 
1077
#define ADC_SMPR2_SMP17_Pos                  (21U)                             
50 mjames 1078
#define ADC_SMPR2_SMP17_Msk                  (0x7UL << ADC_SMPR2_SMP17_Pos)     /*!< 0x00E00000 */
30 mjames 1079
#define ADC_SMPR2_SMP17                      ADC_SMPR2_SMP17_Msk               /*!< ADC channel 17 sampling time selection */
50 mjames 1080
#define ADC_SMPR2_SMP17_0                    (0x1UL << ADC_SMPR2_SMP17_Pos)     /*!< 0x00200000 */
1081
#define ADC_SMPR2_SMP17_1                    (0x2UL << ADC_SMPR2_SMP17_Pos)     /*!< 0x00400000 */
1082
#define ADC_SMPR2_SMP17_2                    (0x4UL << ADC_SMPR2_SMP17_Pos)     /*!< 0x00800000 */
30 mjames 1083
 
1084
#define ADC_SMPR2_SMP18_Pos                  (24U)                             
50 mjames 1085
#define ADC_SMPR2_SMP18_Msk                  (0x7UL << ADC_SMPR2_SMP18_Pos)     /*!< 0x07000000 */
30 mjames 1086
#define ADC_SMPR2_SMP18                      ADC_SMPR2_SMP18_Msk               /*!< ADC channel 18 sampling time selection */
50 mjames 1087
#define ADC_SMPR2_SMP18_0                    (0x1UL << ADC_SMPR2_SMP18_Pos)     /*!< 0x01000000 */
1088
#define ADC_SMPR2_SMP18_1                    (0x2UL << ADC_SMPR2_SMP18_Pos)     /*!< 0x02000000 */
1089
#define ADC_SMPR2_SMP18_2                    (0x4UL << ADC_SMPR2_SMP18_Pos)     /*!< 0x04000000 */
30 mjames 1090
 
1091
#define ADC_SMPR2_SMP19_Pos                  (27U)                             
50 mjames 1092
#define ADC_SMPR2_SMP19_Msk                  (0x7UL << ADC_SMPR2_SMP19_Pos)     /*!< 0x38000000 */
30 mjames 1093
#define ADC_SMPR2_SMP19                      ADC_SMPR2_SMP19_Msk               /*!< ADC channel 19 sampling time selection */
50 mjames 1094
#define ADC_SMPR2_SMP19_0                    (0x1UL << ADC_SMPR2_SMP19_Pos)     /*!< 0x08000000 */
1095
#define ADC_SMPR2_SMP19_1                    (0x2UL << ADC_SMPR2_SMP19_Pos)     /*!< 0x10000000 */
1096
#define ADC_SMPR2_SMP19_2                    (0x4UL << ADC_SMPR2_SMP19_Pos)     /*!< 0x20000000 */
30 mjames 1097
 
1098
/******************  Bit definition for ADC_SMPR3 register  *******************/
1099
#define ADC_SMPR3_SMP0_Pos                   (0U)                              
50 mjames 1100
#define ADC_SMPR3_SMP0_Msk                   (0x7UL << ADC_SMPR3_SMP0_Pos)      /*!< 0x00000007 */
30 mjames 1101
#define ADC_SMPR3_SMP0                       ADC_SMPR3_SMP0_Msk                /*!< ADC channel 0 sampling time selection */
50 mjames 1102
#define ADC_SMPR3_SMP0_0                     (0x1UL << ADC_SMPR3_SMP0_Pos)      /*!< 0x00000001 */
1103
#define ADC_SMPR3_SMP0_1                     (0x2UL << ADC_SMPR3_SMP0_Pos)      /*!< 0x00000002 */
1104
#define ADC_SMPR3_SMP0_2                     (0x4UL << ADC_SMPR3_SMP0_Pos)      /*!< 0x00000004 */
30 mjames 1105
 
1106
#define ADC_SMPR3_SMP1_Pos                   (3U)                              
50 mjames 1107
#define ADC_SMPR3_SMP1_Msk                   (0x7UL << ADC_SMPR3_SMP1_Pos)      /*!< 0x00000038 */
30 mjames 1108
#define ADC_SMPR3_SMP1                       ADC_SMPR3_SMP1_Msk                /*!< ADC channel 1 sampling time selection */
50 mjames 1109
#define ADC_SMPR3_SMP1_0                     (0x1UL << ADC_SMPR3_SMP1_Pos)      /*!< 0x00000008 */
1110
#define ADC_SMPR3_SMP1_1                     (0x2UL << ADC_SMPR3_SMP1_Pos)      /*!< 0x00000010 */
1111
#define ADC_SMPR3_SMP1_2                     (0x4UL << ADC_SMPR3_SMP1_Pos)      /*!< 0x00000020 */
30 mjames 1112
 
1113
#define ADC_SMPR3_SMP2_Pos                   (6U)                              
50 mjames 1114
#define ADC_SMPR3_SMP2_Msk                   (0x7UL << ADC_SMPR3_SMP2_Pos)      /*!< 0x000001C0 */
30 mjames 1115
#define ADC_SMPR3_SMP2                       ADC_SMPR3_SMP2_Msk                /*!< ADC channel 2 sampling time selection */
50 mjames 1116
#define ADC_SMPR3_SMP2_0                     (0x1UL << ADC_SMPR3_SMP2_Pos)      /*!< 0x00000040 */
1117
#define ADC_SMPR3_SMP2_1                     (0x2UL << ADC_SMPR3_SMP2_Pos)      /*!< 0x00000080 */
1118
#define ADC_SMPR3_SMP2_2                     (0x4UL << ADC_SMPR3_SMP2_Pos)      /*!< 0x00000100 */
30 mjames 1119
 
1120
#define ADC_SMPR3_SMP3_Pos                   (9U)                              
50 mjames 1121
#define ADC_SMPR3_SMP3_Msk                   (0x7UL << ADC_SMPR3_SMP3_Pos)      /*!< 0x00000E00 */
30 mjames 1122
#define ADC_SMPR3_SMP3                       ADC_SMPR3_SMP3_Msk                /*!< ADC channel 3 sampling time selection */
50 mjames 1123
#define ADC_SMPR3_SMP3_0                     (0x1UL << ADC_SMPR3_SMP3_Pos)      /*!< 0x00000200 */
1124
#define ADC_SMPR3_SMP3_1                     (0x2UL << ADC_SMPR3_SMP3_Pos)      /*!< 0x00000400 */
1125
#define ADC_SMPR3_SMP3_2                     (0x4UL << ADC_SMPR3_SMP3_Pos)      /*!< 0x00000800 */
30 mjames 1126
 
1127
#define ADC_SMPR3_SMP4_Pos                   (12U)                             
50 mjames 1128
#define ADC_SMPR3_SMP4_Msk                   (0x7UL << ADC_SMPR3_SMP4_Pos)      /*!< 0x00007000 */
30 mjames 1129
#define ADC_SMPR3_SMP4                       ADC_SMPR3_SMP4_Msk                /*!< ADC channel 4 sampling time selection */
50 mjames 1130
#define ADC_SMPR3_SMP4_0                     (0x1UL << ADC_SMPR3_SMP4_Pos)      /*!< 0x00001000 */
1131
#define ADC_SMPR3_SMP4_1                     (0x2UL << ADC_SMPR3_SMP4_Pos)      /*!< 0x00002000 */
1132
#define ADC_SMPR3_SMP4_2                     (0x4UL << ADC_SMPR3_SMP4_Pos)      /*!< 0x00004000 */
30 mjames 1133
 
1134
#define ADC_SMPR3_SMP5_Pos                   (15U)                             
50 mjames 1135
#define ADC_SMPR3_SMP5_Msk                   (0x7UL << ADC_SMPR3_SMP5_Pos)      /*!< 0x00038000 */
30 mjames 1136
#define ADC_SMPR3_SMP5                       ADC_SMPR3_SMP5_Msk                /*!< ADC channel 5 sampling time selection */
50 mjames 1137
#define ADC_SMPR3_SMP5_0                     (0x1UL << ADC_SMPR3_SMP5_Pos)      /*!< 0x00008000 */
1138
#define ADC_SMPR3_SMP5_1                     (0x2UL << ADC_SMPR3_SMP5_Pos)      /*!< 0x00010000 */
1139
#define ADC_SMPR3_SMP5_2                     (0x4UL << ADC_SMPR3_SMP5_Pos)      /*!< 0x00020000 */
30 mjames 1140
 
1141
#define ADC_SMPR3_SMP6_Pos                   (18U)                             
50 mjames 1142
#define ADC_SMPR3_SMP6_Msk                   (0x7UL << ADC_SMPR3_SMP6_Pos)      /*!< 0x001C0000 */
30 mjames 1143
#define ADC_SMPR3_SMP6                       ADC_SMPR3_SMP6_Msk                /*!< ADC channel 6 sampling time selection */
50 mjames 1144
#define ADC_SMPR3_SMP6_0                     (0x1UL << ADC_SMPR3_SMP6_Pos)      /*!< 0x00040000 */
1145
#define ADC_SMPR3_SMP6_1                     (0x2UL << ADC_SMPR3_SMP6_Pos)      /*!< 0x00080000 */
1146
#define ADC_SMPR3_SMP6_2                     (0x4UL << ADC_SMPR3_SMP6_Pos)      /*!< 0x00100000 */
30 mjames 1147
 
1148
#define ADC_SMPR3_SMP7_Pos                   (21U)                             
50 mjames 1149
#define ADC_SMPR3_SMP7_Msk                   (0x7UL << ADC_SMPR3_SMP7_Pos)      /*!< 0x00E00000 */
30 mjames 1150
#define ADC_SMPR3_SMP7                       ADC_SMPR3_SMP7_Msk                /*!< ADC channel 7 sampling time selection */
50 mjames 1151
#define ADC_SMPR3_SMP7_0                     (0x1UL << ADC_SMPR3_SMP7_Pos)      /*!< 0x00200000 */
1152
#define ADC_SMPR3_SMP7_1                     (0x2UL << ADC_SMPR3_SMP7_Pos)      /*!< 0x00400000 */
1153
#define ADC_SMPR3_SMP7_2                     (0x4UL << ADC_SMPR3_SMP7_Pos)      /*!< 0x00800000 */
30 mjames 1154
 
1155
#define ADC_SMPR3_SMP8_Pos                   (24U)                             
50 mjames 1156
#define ADC_SMPR3_SMP8_Msk                   (0x7UL << ADC_SMPR3_SMP8_Pos)      /*!< 0x07000000 */
30 mjames 1157
#define ADC_SMPR3_SMP8                       ADC_SMPR3_SMP8_Msk                /*!< ADC channel 8 sampling time selection */
50 mjames 1158
#define ADC_SMPR3_SMP8_0                     (0x1UL << ADC_SMPR3_SMP8_Pos)      /*!< 0x01000000 */
1159
#define ADC_SMPR3_SMP8_1                     (0x2UL << ADC_SMPR3_SMP8_Pos)      /*!< 0x02000000 */
1160
#define ADC_SMPR3_SMP8_2                     (0x4UL << ADC_SMPR3_SMP8_Pos)      /*!< 0x04000000 */
30 mjames 1161
 
1162
#define ADC_SMPR3_SMP9_Pos                   (27U)                             
50 mjames 1163
#define ADC_SMPR3_SMP9_Msk                   (0x7UL << ADC_SMPR3_SMP9_Pos)      /*!< 0x38000000 */
30 mjames 1164
#define ADC_SMPR3_SMP9                       ADC_SMPR3_SMP9_Msk                /*!< ADC channel 9 sampling time selection */
50 mjames 1165
#define ADC_SMPR3_SMP9_0                     (0x1UL << ADC_SMPR3_SMP9_Pos)      /*!< 0x08000000 */
1166
#define ADC_SMPR3_SMP9_1                     (0x2UL << ADC_SMPR3_SMP9_Pos)      /*!< 0x10000000 */
1167
#define ADC_SMPR3_SMP9_2                     (0x4UL << ADC_SMPR3_SMP9_Pos)      /*!< 0x20000000 */
30 mjames 1168
 
1169
/******************  Bit definition for ADC_JOFR1 register  *******************/
1170
#define ADC_JOFR1_JOFFSET1_Pos               (0U)                              
50 mjames 1171
#define ADC_JOFR1_JOFFSET1_Msk               (0xFFFUL << ADC_JOFR1_JOFFSET1_Pos) /*!< 0x00000FFF */
30 mjames 1172
#define ADC_JOFR1_JOFFSET1                   ADC_JOFR1_JOFFSET1_Msk            /*!< ADC group injected sequencer rank 1 offset value */
1173
 
1174
/******************  Bit definition for ADC_JOFR2 register  *******************/
1175
#define ADC_JOFR2_JOFFSET2_Pos               (0U)                              
50 mjames 1176
#define ADC_JOFR2_JOFFSET2_Msk               (0xFFFUL << ADC_JOFR2_JOFFSET2_Pos) /*!< 0x00000FFF */
30 mjames 1177
#define ADC_JOFR2_JOFFSET2                   ADC_JOFR2_JOFFSET2_Msk            /*!< ADC group injected sequencer rank 2 offset value */
1178
 
1179
/******************  Bit definition for ADC_JOFR3 register  *******************/
1180
#define ADC_JOFR3_JOFFSET3_Pos               (0U)                              
50 mjames 1181
#define ADC_JOFR3_JOFFSET3_Msk               (0xFFFUL << ADC_JOFR3_JOFFSET3_Pos) /*!< 0x00000FFF */
30 mjames 1182
#define ADC_JOFR3_JOFFSET3                   ADC_JOFR3_JOFFSET3_Msk            /*!< ADC group injected sequencer rank 3 offset value */
1183
 
1184
/******************  Bit definition for ADC_JOFR4 register  *******************/
1185
#define ADC_JOFR4_JOFFSET4_Pos               (0U)                              
50 mjames 1186
#define ADC_JOFR4_JOFFSET4_Msk               (0xFFFUL << ADC_JOFR4_JOFFSET4_Pos) /*!< 0x00000FFF */
30 mjames 1187
#define ADC_JOFR4_JOFFSET4                   ADC_JOFR4_JOFFSET4_Msk            /*!< ADC group injected sequencer rank 4 offset value */
1188
 
1189
/*******************  Bit definition for ADC_HTR register  ********************/
1190
#define ADC_HTR_HT_Pos                       (0U)                              
50 mjames 1191
#define ADC_HTR_HT_Msk                       (0xFFFUL << ADC_HTR_HT_Pos)        /*!< 0x00000FFF */
30 mjames 1192
#define ADC_HTR_HT                           ADC_HTR_HT_Msk                    /*!< ADC analog watchdog 1 threshold high */
1193
 
1194
/*******************  Bit definition for ADC_LTR register  ********************/
1195
#define ADC_LTR_LT_Pos                       (0U)                              
50 mjames 1196
#define ADC_LTR_LT_Msk                       (0xFFFUL << ADC_LTR_LT_Pos)        /*!< 0x00000FFF */
30 mjames 1197
#define ADC_LTR_LT                           ADC_LTR_LT_Msk                    /*!< ADC analog watchdog 1 threshold low */
1198
 
1199
/*******************  Bit definition for ADC_SQR1 register  *******************/
1200
#define ADC_SQR1_L_Pos                       (20U)                             
50 mjames 1201
#define ADC_SQR1_L_Msk                       (0x1FUL << ADC_SQR1_L_Pos)         /*!< 0x01F00000 */
30 mjames 1202
#define ADC_SQR1_L                           ADC_SQR1_L_Msk                    /*!< ADC group regular sequencer scan length */
50 mjames 1203
#define ADC_SQR1_L_0                         (0x01UL << ADC_SQR1_L_Pos)         /*!< 0x00100000 */
1204
#define ADC_SQR1_L_1                         (0x02UL << ADC_SQR1_L_Pos)         /*!< 0x00200000 */
1205
#define ADC_SQR1_L_2                         (0x04UL << ADC_SQR1_L_Pos)         /*!< 0x00400000 */
1206
#define ADC_SQR1_L_3                         (0x08UL << ADC_SQR1_L_Pos)         /*!< 0x00800000 */
1207
#define ADC_SQR1_L_4                         (0x10UL << ADC_SQR1_L_Pos)         /*!< 0x01000000 */
30 mjames 1208
 
1209
#define ADC_SQR1_SQ28_Pos                    (15U)                             
50 mjames 1210
#define ADC_SQR1_SQ28_Msk                    (0x1FUL << ADC_SQR1_SQ28_Pos)      /*!< 0x000F8000 */
30 mjames 1211
#define ADC_SQR1_SQ28                        ADC_SQR1_SQ28_Msk                 /*!< ADC group regular sequencer rank 28 */
50 mjames 1212
#define ADC_SQR1_SQ28_0                      (0x01UL << ADC_SQR1_SQ28_Pos)      /*!< 0x00008000 */
1213
#define ADC_SQR1_SQ28_1                      (0x02UL << ADC_SQR1_SQ28_Pos)      /*!< 0x00010000 */
1214
#define ADC_SQR1_SQ28_2                      (0x04UL << ADC_SQR1_SQ28_Pos)      /*!< 0x00020000 */
1215
#define ADC_SQR1_SQ28_3                      (0x08UL << ADC_SQR1_SQ28_Pos)      /*!< 0x00040000 */
1216
#define ADC_SQR1_SQ28_4                      (0x10UL << ADC_SQR1_SQ28_Pos)      /*!< 0x00080000 */
30 mjames 1217
 
1218
#define ADC_SQR1_SQ27_Pos                    (10U)                             
50 mjames 1219
#define ADC_SQR1_SQ27_Msk                    (0x1FUL << ADC_SQR1_SQ27_Pos)      /*!< 0x00007C00 */
30 mjames 1220
#define ADC_SQR1_SQ27                        ADC_SQR1_SQ27_Msk                 /*!< ADC group regular sequencer rank 27 */
50 mjames 1221
#define ADC_SQR1_SQ27_0                      (0x01UL << ADC_SQR1_SQ27_Pos)      /*!< 0x00000400 */
1222
#define ADC_SQR1_SQ27_1                      (0x02UL << ADC_SQR1_SQ27_Pos)      /*!< 0x00000800 */
1223
#define ADC_SQR1_SQ27_2                      (0x04UL << ADC_SQR1_SQ27_Pos)      /*!< 0x00001000 */
1224
#define ADC_SQR1_SQ27_3                      (0x08UL << ADC_SQR1_SQ27_Pos)      /*!< 0x00002000 */
1225
#define ADC_SQR1_SQ27_4                      (0x10UL << ADC_SQR1_SQ27_Pos)      /*!< 0x00004000 */
30 mjames 1226
 
1227
#define ADC_SQR1_SQ26_Pos                    (5U)                              
50 mjames 1228
#define ADC_SQR1_SQ26_Msk                    (0x1FUL << ADC_SQR1_SQ26_Pos)      /*!< 0x000003E0 */
30 mjames 1229
#define ADC_SQR1_SQ26                        ADC_SQR1_SQ26_Msk                 /*!< ADC group regular sequencer rank 26 */
50 mjames 1230
#define ADC_SQR1_SQ26_0                      (0x01UL << ADC_SQR1_SQ26_Pos)      /*!< 0x00000020 */
1231
#define ADC_SQR1_SQ26_1                      (0x02UL << ADC_SQR1_SQ26_Pos)      /*!< 0x00000040 */
1232
#define ADC_SQR1_SQ26_2                      (0x04UL << ADC_SQR1_SQ26_Pos)      /*!< 0x00000080 */
1233
#define ADC_SQR1_SQ26_3                      (0x08UL << ADC_SQR1_SQ26_Pos)      /*!< 0x00000100 */
1234
#define ADC_SQR1_SQ26_4                      (0x10UL << ADC_SQR1_SQ26_Pos)      /*!< 0x00000200 */
30 mjames 1235
 
1236
#define ADC_SQR1_SQ25_Pos                    (0U)                              
50 mjames 1237
#define ADC_SQR1_SQ25_Msk                    (0x1FUL << ADC_SQR1_SQ25_Pos)      /*!< 0x0000001F */
30 mjames 1238
#define ADC_SQR1_SQ25                        ADC_SQR1_SQ25_Msk                 /*!< ADC group regular sequencer rank 25 */
50 mjames 1239
#define ADC_SQR1_SQ25_0                      (0x01UL << ADC_SQR1_SQ25_Pos)      /*!< 0x00000001 */
1240
#define ADC_SQR1_SQ25_1                      (0x02UL << ADC_SQR1_SQ25_Pos)      /*!< 0x00000002 */
1241
#define ADC_SQR1_SQ25_2                      (0x04UL << ADC_SQR1_SQ25_Pos)      /*!< 0x00000004 */
1242
#define ADC_SQR1_SQ25_3                      (0x08UL << ADC_SQR1_SQ25_Pos)      /*!< 0x00000008 */
1243
#define ADC_SQR1_SQ25_4                      (0x10UL << ADC_SQR1_SQ25_Pos)      /*!< 0x00000010 */
30 mjames 1244
 
1245
/*******************  Bit definition for ADC_SQR2 register  *******************/
1246
#define ADC_SQR2_SQ19_Pos                    (0U)                              
50 mjames 1247
#define ADC_SQR2_SQ19_Msk                    (0x1FUL << ADC_SQR2_SQ19_Pos)      /*!< 0x0000001F */
30 mjames 1248
#define ADC_SQR2_SQ19                        ADC_SQR2_SQ19_Msk                 /*!< ADC group regular sequencer rank 19 */
50 mjames 1249
#define ADC_SQR2_SQ19_0                      (0x01UL << ADC_SQR2_SQ19_Pos)      /*!< 0x00000001 */
1250
#define ADC_SQR2_SQ19_1                      (0x02UL << ADC_SQR2_SQ19_Pos)      /*!< 0x00000002 */
1251
#define ADC_SQR2_SQ19_2                      (0x04UL << ADC_SQR2_SQ19_Pos)      /*!< 0x00000004 */
1252
#define ADC_SQR2_SQ19_3                      (0x08UL << ADC_SQR2_SQ19_Pos)      /*!< 0x00000008 */
1253
#define ADC_SQR2_SQ19_4                      (0x10UL << ADC_SQR2_SQ19_Pos)      /*!< 0x00000010 */
30 mjames 1254
 
1255
#define ADC_SQR2_SQ20_Pos                    (5U)                              
50 mjames 1256
#define ADC_SQR2_SQ20_Msk                    (0x1FUL << ADC_SQR2_SQ20_Pos)      /*!< 0x000003E0 */
30 mjames 1257
#define ADC_SQR2_SQ20                        ADC_SQR2_SQ20_Msk                 /*!< ADC group regular sequencer rank 20 */
50 mjames 1258
#define ADC_SQR2_SQ20_0                      (0x01UL << ADC_SQR2_SQ20_Pos)      /*!< 0x00000020 */
1259
#define ADC_SQR2_SQ20_1                      (0x02UL << ADC_SQR2_SQ20_Pos)      /*!< 0x00000040 */
1260
#define ADC_SQR2_SQ20_2                      (0x04UL << ADC_SQR2_SQ20_Pos)      /*!< 0x00000080 */
1261
#define ADC_SQR2_SQ20_3                      (0x08UL << ADC_SQR2_SQ20_Pos)      /*!< 0x00000100 */
1262
#define ADC_SQR2_SQ20_4                      (0x10UL << ADC_SQR2_SQ20_Pos)      /*!< 0x00000200 */
30 mjames 1263
 
1264
#define ADC_SQR2_SQ21_Pos                    (10U)                             
50 mjames 1265
#define ADC_SQR2_SQ21_Msk                    (0x1FUL << ADC_SQR2_SQ21_Pos)      /*!< 0x00007C00 */
30 mjames 1266
#define ADC_SQR2_SQ21                        ADC_SQR2_SQ21_Msk                 /*!< ADC group regular sequencer rank 21 */
50 mjames 1267
#define ADC_SQR2_SQ21_0                      (0x01UL << ADC_SQR2_SQ21_Pos)      /*!< 0x00000400 */
1268
#define ADC_SQR2_SQ21_1                      (0x02UL << ADC_SQR2_SQ21_Pos)      /*!< 0x00000800 */
1269
#define ADC_SQR2_SQ21_2                      (0x04UL << ADC_SQR2_SQ21_Pos)      /*!< 0x00001000 */
1270
#define ADC_SQR2_SQ21_3                      (0x08UL << ADC_SQR2_SQ21_Pos)      /*!< 0x00002000 */
1271
#define ADC_SQR2_SQ21_4                      (0x10UL << ADC_SQR2_SQ21_Pos)      /*!< 0x00004000 */
30 mjames 1272
 
1273
#define ADC_SQR2_SQ22_Pos                    (15U)                             
50 mjames 1274
#define ADC_SQR2_SQ22_Msk                    (0x1FUL << ADC_SQR2_SQ22_Pos)      /*!< 0x000F8000 */
30 mjames 1275
#define ADC_SQR2_SQ22                        ADC_SQR2_SQ22_Msk                 /*!< ADC group regular sequencer rank 22 */
50 mjames 1276
#define ADC_SQR2_SQ22_0                      (0x01UL << ADC_SQR2_SQ22_Pos)      /*!< 0x00008000 */
1277
#define ADC_SQR2_SQ22_1                      (0x02UL << ADC_SQR2_SQ22_Pos)      /*!< 0x00010000 */
1278
#define ADC_SQR2_SQ22_2                      (0x04UL << ADC_SQR2_SQ22_Pos)      /*!< 0x00020000 */
1279
#define ADC_SQR2_SQ22_3                      (0x08UL << ADC_SQR2_SQ22_Pos)      /*!< 0x00040000 */
1280
#define ADC_SQR2_SQ22_4                      (0x10UL << ADC_SQR2_SQ22_Pos)      /*!< 0x00080000 */
30 mjames 1281
 
1282
#define ADC_SQR2_SQ23_Pos                    (20U)                             
50 mjames 1283
#define ADC_SQR2_SQ23_Msk                    (0x1FUL << ADC_SQR2_SQ23_Pos)      /*!< 0x01F00000 */
30 mjames 1284
#define ADC_SQR2_SQ23                        ADC_SQR2_SQ23_Msk                 /*!< ADC group regular sequencer rank 23 */
50 mjames 1285
#define ADC_SQR2_SQ23_0                      (0x01UL << ADC_SQR2_SQ23_Pos)      /*!< 0x00100000 */
1286
#define ADC_SQR2_SQ23_1                      (0x02UL << ADC_SQR2_SQ23_Pos)      /*!< 0x00200000 */
1287
#define ADC_SQR2_SQ23_2                      (0x04UL << ADC_SQR2_SQ23_Pos)      /*!< 0x00400000 */
1288
#define ADC_SQR2_SQ23_3                      (0x08UL << ADC_SQR2_SQ23_Pos)      /*!< 0x00800000 */
1289
#define ADC_SQR2_SQ23_4                      (0x10UL << ADC_SQR2_SQ23_Pos)      /*!< 0x01000000 */
30 mjames 1290
 
1291
#define ADC_SQR2_SQ24_Pos                    (25U)                             
50 mjames 1292
#define ADC_SQR2_SQ24_Msk                    (0x1FUL << ADC_SQR2_SQ24_Pos)      /*!< 0x3E000000 */
30 mjames 1293
#define ADC_SQR2_SQ24                        ADC_SQR2_SQ24_Msk                 /*!< ADC group regular sequencer rank 24 */
50 mjames 1294
#define ADC_SQR2_SQ24_0                      (0x01UL << ADC_SQR2_SQ24_Pos)      /*!< 0x02000000 */
1295
#define ADC_SQR2_SQ24_1                      (0x02UL << ADC_SQR2_SQ24_Pos)      /*!< 0x04000000 */
1296
#define ADC_SQR2_SQ24_2                      (0x04UL << ADC_SQR2_SQ24_Pos)      /*!< 0x08000000 */
1297
#define ADC_SQR2_SQ24_3                      (0x08UL << ADC_SQR2_SQ24_Pos)      /*!< 0x10000000 */
1298
#define ADC_SQR2_SQ24_4                      (0x10UL << ADC_SQR2_SQ24_Pos)      /*!< 0x20000000 */
30 mjames 1299
 
1300
/*******************  Bit definition for ADC_SQR3 register  *******************/
1301
#define ADC_SQR3_SQ13_Pos                    (0U)                              
50 mjames 1302
#define ADC_SQR3_SQ13_Msk                    (0x1FUL << ADC_SQR3_SQ13_Pos)      /*!< 0x0000001F */
30 mjames 1303
#define ADC_SQR3_SQ13                        ADC_SQR3_SQ13_Msk                 /*!< ADC group regular sequencer rank 13 */
50 mjames 1304
#define ADC_SQR3_SQ13_0                      (0x01UL << ADC_SQR3_SQ13_Pos)      /*!< 0x00000001 */
1305
#define ADC_SQR3_SQ13_1                      (0x02UL << ADC_SQR3_SQ13_Pos)      /*!< 0x00000002 */
1306
#define ADC_SQR3_SQ13_2                      (0x04UL << ADC_SQR3_SQ13_Pos)      /*!< 0x00000004 */
1307
#define ADC_SQR3_SQ13_3                      (0x08UL << ADC_SQR3_SQ13_Pos)      /*!< 0x00000008 */
1308
#define ADC_SQR3_SQ13_4                      (0x10UL << ADC_SQR3_SQ13_Pos)      /*!< 0x00000010 */
30 mjames 1309
 
1310
#define ADC_SQR3_SQ14_Pos                    (5U)                              
50 mjames 1311
#define ADC_SQR3_SQ14_Msk                    (0x1FUL << ADC_SQR3_SQ14_Pos)      /*!< 0x000003E0 */
30 mjames 1312
#define ADC_SQR3_SQ14                        ADC_SQR3_SQ14_Msk                 /*!< ADC group regular sequencer rank 14 */
50 mjames 1313
#define ADC_SQR3_SQ14_0                      (0x01UL << ADC_SQR3_SQ14_Pos)      /*!< 0x00000020 */
1314
#define ADC_SQR3_SQ14_1                      (0x02UL << ADC_SQR3_SQ14_Pos)      /*!< 0x00000040 */
1315
#define ADC_SQR3_SQ14_2                      (0x04UL << ADC_SQR3_SQ14_Pos)      /*!< 0x00000080 */
1316
#define ADC_SQR3_SQ14_3                      (0x08UL << ADC_SQR3_SQ14_Pos)      /*!< 0x00000100 */
1317
#define ADC_SQR3_SQ14_4                      (0x10UL << ADC_SQR3_SQ14_Pos)      /*!< 0x00000200 */
30 mjames 1318
 
1319
#define ADC_SQR3_SQ15_Pos                    (10U)                             
50 mjames 1320
#define ADC_SQR3_SQ15_Msk                    (0x1FUL << ADC_SQR3_SQ15_Pos)      /*!< 0x00007C00 */
30 mjames 1321
#define ADC_SQR3_SQ15                        ADC_SQR3_SQ15_Msk                 /*!< ADC group regular sequencer rank 15 */
50 mjames 1322
#define ADC_SQR3_SQ15_0                      (0x01UL << ADC_SQR3_SQ15_Pos)      /*!< 0x00000400 */
1323
#define ADC_SQR3_SQ15_1                      (0x02UL << ADC_SQR3_SQ15_Pos)      /*!< 0x00000800 */
1324
#define ADC_SQR3_SQ15_2                      (0x04UL << ADC_SQR3_SQ15_Pos)      /*!< 0x00001000 */
1325
#define ADC_SQR3_SQ15_3                      (0x08UL << ADC_SQR3_SQ15_Pos)      /*!< 0x00002000 */
1326
#define ADC_SQR3_SQ15_4                      (0x10UL << ADC_SQR3_SQ15_Pos)      /*!< 0x00004000 */
30 mjames 1327
 
1328
#define ADC_SQR3_SQ16_Pos                    (15U)                             
50 mjames 1329
#define ADC_SQR3_SQ16_Msk                    (0x1FUL << ADC_SQR3_SQ16_Pos)      /*!< 0x000F8000 */
30 mjames 1330
#define ADC_SQR3_SQ16                        ADC_SQR3_SQ16_Msk                 /*!< ADC group regular sequencer rank 16 */
50 mjames 1331
#define ADC_SQR3_SQ16_0                      (0x01UL << ADC_SQR3_SQ16_Pos)      /*!< 0x00008000 */
1332
#define ADC_SQR3_SQ16_1                      (0x02UL << ADC_SQR3_SQ16_Pos)      /*!< 0x00010000 */
1333
#define ADC_SQR3_SQ16_2                      (0x04UL << ADC_SQR3_SQ16_Pos)      /*!< 0x00020000 */
1334
#define ADC_SQR3_SQ16_3                      (0x08UL << ADC_SQR3_SQ16_Pos)      /*!< 0x00040000 */
1335
#define ADC_SQR3_SQ16_4                      (0x10UL << ADC_SQR3_SQ16_Pos)      /*!< 0x00080000 */
30 mjames 1336
 
1337
#define ADC_SQR3_SQ17_Pos                    (20U)                             
50 mjames 1338
#define ADC_SQR3_SQ17_Msk                    (0x1FUL << ADC_SQR3_SQ17_Pos)      /*!< 0x01F00000 */
30 mjames 1339
#define ADC_SQR3_SQ17                        ADC_SQR3_SQ17_Msk                 /*!< ADC group regular sequencer rank 17 */
50 mjames 1340
#define ADC_SQR3_SQ17_0                      (0x01UL << ADC_SQR3_SQ17_Pos)      /*!< 0x00100000 */
1341
#define ADC_SQR3_SQ17_1                      (0x02UL << ADC_SQR3_SQ17_Pos)      /*!< 0x00200000 */
1342
#define ADC_SQR3_SQ17_2                      (0x04UL << ADC_SQR3_SQ17_Pos)      /*!< 0x00400000 */
1343
#define ADC_SQR3_SQ17_3                      (0x08UL << ADC_SQR3_SQ17_Pos)      /*!< 0x00800000 */
1344
#define ADC_SQR3_SQ17_4                      (0x10UL << ADC_SQR3_SQ17_Pos)      /*!< 0x01000000 */
30 mjames 1345
 
1346
#define ADC_SQR3_SQ18_Pos                    (25U)                             
50 mjames 1347
#define ADC_SQR3_SQ18_Msk                    (0x1FUL << ADC_SQR3_SQ18_Pos)      /*!< 0x3E000000 */
30 mjames 1348
#define ADC_SQR3_SQ18                        ADC_SQR3_SQ18_Msk                 /*!< ADC group regular sequencer rank 18 */
50 mjames 1349
#define ADC_SQR3_SQ18_0                      (0x01UL << ADC_SQR3_SQ18_Pos)      /*!< 0x02000000 */
1350
#define ADC_SQR3_SQ18_1                      (0x02UL << ADC_SQR3_SQ18_Pos)      /*!< 0x04000000 */
1351
#define ADC_SQR3_SQ18_2                      (0x04UL << ADC_SQR3_SQ18_Pos)      /*!< 0x08000000 */
1352
#define ADC_SQR3_SQ18_3                      (0x08UL << ADC_SQR3_SQ18_Pos)      /*!< 0x10000000 */
1353
#define ADC_SQR3_SQ18_4                      (0x10UL << ADC_SQR3_SQ18_Pos)      /*!< 0x20000000 */
30 mjames 1354
 
1355
/*******************  Bit definition for ADC_SQR4 register  *******************/
1356
#define ADC_SQR4_SQ7_Pos                     (0U)                              
50 mjames 1357
#define ADC_SQR4_SQ7_Msk                     (0x1FUL << ADC_SQR4_SQ7_Pos)       /*!< 0x0000001F */
30 mjames 1358
#define ADC_SQR4_SQ7                         ADC_SQR4_SQ7_Msk                  /*!< ADC group regular sequencer rank 7 */
50 mjames 1359
#define ADC_SQR4_SQ7_0                       (0x01UL << ADC_SQR4_SQ7_Pos)       /*!< 0x00000001 */
1360
#define ADC_SQR4_SQ7_1                       (0x02UL << ADC_SQR4_SQ7_Pos)       /*!< 0x00000002 */
1361
#define ADC_SQR4_SQ7_2                       (0x04UL << ADC_SQR4_SQ7_Pos)       /*!< 0x00000004 */
1362
#define ADC_SQR4_SQ7_3                       (0x08UL << ADC_SQR4_SQ7_Pos)       /*!< 0x00000008 */
1363
#define ADC_SQR4_SQ7_4                       (0x10UL << ADC_SQR4_SQ7_Pos)       /*!< 0x00000010 */
30 mjames 1364
 
1365
#define ADC_SQR4_SQ8_Pos                     (5U)                              
50 mjames 1366
#define ADC_SQR4_SQ8_Msk                     (0x1FUL << ADC_SQR4_SQ8_Pos)       /*!< 0x000003E0 */
30 mjames 1367
#define ADC_SQR4_SQ8                         ADC_SQR4_SQ8_Msk                  /*!< ADC group regular sequencer rank 8 */
50 mjames 1368
#define ADC_SQR4_SQ8_0                       (0x01UL << ADC_SQR4_SQ8_Pos)       /*!< 0x00000020 */
1369
#define ADC_SQR4_SQ8_1                       (0x02UL << ADC_SQR4_SQ8_Pos)       /*!< 0x00000040 */
1370
#define ADC_SQR4_SQ8_2                       (0x04UL << ADC_SQR4_SQ8_Pos)       /*!< 0x00000080 */
1371
#define ADC_SQR4_SQ8_3                       (0x08UL << ADC_SQR4_SQ8_Pos)       /*!< 0x00000100 */
1372
#define ADC_SQR4_SQ8_4                       (0x10UL << ADC_SQR4_SQ8_Pos)       /*!< 0x00000200 */
30 mjames 1373
 
1374
#define ADC_SQR4_SQ9_Pos                     (10U)                             
50 mjames 1375
#define ADC_SQR4_SQ9_Msk                     (0x1FUL << ADC_SQR4_SQ9_Pos)       /*!< 0x00007C00 */
30 mjames 1376
#define ADC_SQR4_SQ9                         ADC_SQR4_SQ9_Msk                  /*!< ADC group regular sequencer rank 9 */
50 mjames 1377
#define ADC_SQR4_SQ9_0                       (0x01UL << ADC_SQR4_SQ9_Pos)       /*!< 0x00000400 */
1378
#define ADC_SQR4_SQ9_1                       (0x02UL << ADC_SQR4_SQ9_Pos)       /*!< 0x00000800 */
1379
#define ADC_SQR4_SQ9_2                       (0x04UL << ADC_SQR4_SQ9_Pos)       /*!< 0x00001000 */
1380
#define ADC_SQR4_SQ9_3                       (0x08UL << ADC_SQR4_SQ9_Pos)       /*!< 0x00002000 */
1381
#define ADC_SQR4_SQ9_4                       (0x10UL << ADC_SQR4_SQ9_Pos)       /*!< 0x00004000 */
30 mjames 1382
 
1383
#define ADC_SQR4_SQ10_Pos                    (15U)                             
50 mjames 1384
#define ADC_SQR4_SQ10_Msk                    (0x1FUL << ADC_SQR4_SQ10_Pos)      /*!< 0x000F8000 */
30 mjames 1385
#define ADC_SQR4_SQ10                        ADC_SQR4_SQ10_Msk                 /*!< ADC group regular sequencer rank 10 */
50 mjames 1386
#define ADC_SQR4_SQ10_0                      (0x01UL << ADC_SQR4_SQ10_Pos)      /*!< 0x00008000 */
1387
#define ADC_SQR4_SQ10_1                      (0x02UL << ADC_SQR4_SQ10_Pos)      /*!< 0x00010000 */
1388
#define ADC_SQR4_SQ10_2                      (0x04UL << ADC_SQR4_SQ10_Pos)      /*!< 0x00020000 */
1389
#define ADC_SQR4_SQ10_3                      (0x08UL << ADC_SQR4_SQ10_Pos)      /*!< 0x00040000 */
1390
#define ADC_SQR4_SQ10_4                      (0x10UL << ADC_SQR4_SQ10_Pos)      /*!< 0x00080000 */
30 mjames 1391
 
1392
#define ADC_SQR4_SQ11_Pos                    (20U)                             
50 mjames 1393
#define ADC_SQR4_SQ11_Msk                    (0x1FUL << ADC_SQR4_SQ11_Pos)      /*!< 0x01F00000 */
30 mjames 1394
#define ADC_SQR4_SQ11                        ADC_SQR4_SQ11_Msk                 /*!< ADC group regular sequencer rank 11 */
50 mjames 1395
#define ADC_SQR4_SQ11_0                      (0x01UL << ADC_SQR4_SQ11_Pos)      /*!< 0x00100000 */
1396
#define ADC_SQR4_SQ11_1                      (0x02UL << ADC_SQR4_SQ11_Pos)      /*!< 0x00200000 */
1397
#define ADC_SQR4_SQ11_2                      (0x04UL << ADC_SQR4_SQ11_Pos)      /*!< 0x00400000 */
1398
#define ADC_SQR4_SQ11_3                      (0x08UL << ADC_SQR4_SQ11_Pos)      /*!< 0x00800000 */
1399
#define ADC_SQR4_SQ11_4                      (0x10UL << ADC_SQR4_SQ11_Pos)      /*!< 0x01000000 */
30 mjames 1400
 
1401
#define ADC_SQR4_SQ12_Pos                    (25U)                             
50 mjames 1402
#define ADC_SQR4_SQ12_Msk                    (0x1FUL << ADC_SQR4_SQ12_Pos)      /*!< 0x3E000000 */
30 mjames 1403
#define ADC_SQR4_SQ12                        ADC_SQR4_SQ12_Msk                 /*!< ADC group regular sequencer rank 12 */
50 mjames 1404
#define ADC_SQR4_SQ12_0                      (0x01UL << ADC_SQR4_SQ12_Pos)      /*!< 0x02000000 */
1405
#define ADC_SQR4_SQ12_1                      (0x02UL << ADC_SQR4_SQ12_Pos)      /*!< 0x04000000 */
1406
#define ADC_SQR4_SQ12_2                      (0x04UL << ADC_SQR4_SQ12_Pos)      /*!< 0x08000000 */
1407
#define ADC_SQR4_SQ12_3                      (0x08UL << ADC_SQR4_SQ12_Pos)      /*!< 0x10000000 */
1408
#define ADC_SQR4_SQ12_4                      (0x10UL << ADC_SQR4_SQ12_Pos)      /*!< 0x20000000 */
30 mjames 1409
 
1410
/*******************  Bit definition for ADC_SQR5 register  *******************/
1411
#define ADC_SQR5_SQ1_Pos                     (0U)                              
50 mjames 1412
#define ADC_SQR5_SQ1_Msk                     (0x1FUL << ADC_SQR5_SQ1_Pos)       /*!< 0x0000001F */
30 mjames 1413
#define ADC_SQR5_SQ1                         ADC_SQR5_SQ1_Msk                  /*!< ADC group regular sequencer rank 1 */
50 mjames 1414
#define ADC_SQR5_SQ1_0                       (0x01UL << ADC_SQR5_SQ1_Pos)       /*!< 0x00000001 */
1415
#define ADC_SQR5_SQ1_1                       (0x02UL << ADC_SQR5_SQ1_Pos)       /*!< 0x00000002 */
1416
#define ADC_SQR5_SQ1_2                       (0x04UL << ADC_SQR5_SQ1_Pos)       /*!< 0x00000004 */
1417
#define ADC_SQR5_SQ1_3                       (0x08UL << ADC_SQR5_SQ1_Pos)       /*!< 0x00000008 */
1418
#define ADC_SQR5_SQ1_4                       (0x10UL << ADC_SQR5_SQ1_Pos)       /*!< 0x00000010 */
30 mjames 1419
 
1420
#define ADC_SQR5_SQ2_Pos                     (5U)                              
50 mjames 1421
#define ADC_SQR5_SQ2_Msk                     (0x1FUL << ADC_SQR5_SQ2_Pos)       /*!< 0x000003E0 */
30 mjames 1422
#define ADC_SQR5_SQ2                         ADC_SQR5_SQ2_Msk                  /*!< ADC group regular sequencer rank 2 */
50 mjames 1423
#define ADC_SQR5_SQ2_0                       (0x01UL << ADC_SQR5_SQ2_Pos)       /*!< 0x00000020 */
1424
#define ADC_SQR5_SQ2_1                       (0x02UL << ADC_SQR5_SQ2_Pos)       /*!< 0x00000040 */
1425
#define ADC_SQR5_SQ2_2                       (0x04UL << ADC_SQR5_SQ2_Pos)       /*!< 0x00000080 */
1426
#define ADC_SQR5_SQ2_3                       (0x08UL << ADC_SQR5_SQ2_Pos)       /*!< 0x00000100 */
1427
#define ADC_SQR5_SQ2_4                       (0x10UL << ADC_SQR5_SQ2_Pos)       /*!< 0x00000200 */
30 mjames 1428
 
1429
#define ADC_SQR5_SQ3_Pos                     (10U)                             
50 mjames 1430
#define ADC_SQR5_SQ3_Msk                     (0x1FUL << ADC_SQR5_SQ3_Pos)       /*!< 0x00007C00 */
30 mjames 1431
#define ADC_SQR5_SQ3                         ADC_SQR5_SQ3_Msk                  /*!< ADC group regular sequencer rank 3 */
50 mjames 1432
#define ADC_SQR5_SQ3_0                       (0x01UL << ADC_SQR5_SQ3_Pos)       /*!< 0x00000400 */
1433
#define ADC_SQR5_SQ3_1                       (0x02UL << ADC_SQR5_SQ3_Pos)       /*!< 0x00000800 */
1434
#define ADC_SQR5_SQ3_2                       (0x04UL << ADC_SQR5_SQ3_Pos)       /*!< 0x00001000 */
1435
#define ADC_SQR5_SQ3_3                       (0x08UL << ADC_SQR5_SQ3_Pos)       /*!< 0x00002000 */
1436
#define ADC_SQR5_SQ3_4                       (0x10UL << ADC_SQR5_SQ3_Pos)       /*!< 0x00004000 */
30 mjames 1437
 
1438
#define ADC_SQR5_SQ4_Pos                     (15U)                             
50 mjames 1439
#define ADC_SQR5_SQ4_Msk                     (0x1FUL << ADC_SQR5_SQ4_Pos)       /*!< 0x000F8000 */
30 mjames 1440
#define ADC_SQR5_SQ4                         ADC_SQR5_SQ4_Msk                  /*!< ADC group regular sequencer rank 4 */
50 mjames 1441
#define ADC_SQR5_SQ4_0                       (0x01UL << ADC_SQR5_SQ4_Pos)       /*!< 0x00008000 */
1442
#define ADC_SQR5_SQ4_1                       (0x02UL << ADC_SQR5_SQ4_Pos)       /*!< 0x00010000 */
1443
#define ADC_SQR5_SQ4_2                       (0x04UL << ADC_SQR5_SQ4_Pos)       /*!< 0x00020000 */
1444
#define ADC_SQR5_SQ4_3                       (0x08UL << ADC_SQR5_SQ4_Pos)       /*!< 0x00040000 */
1445
#define ADC_SQR5_SQ4_4                       (0x10UL << ADC_SQR5_SQ4_Pos)       /*!< 0x00080000 */
30 mjames 1446
 
1447
#define ADC_SQR5_SQ5_Pos                     (20U)                             
50 mjames 1448
#define ADC_SQR5_SQ5_Msk                     (0x1FUL << ADC_SQR5_SQ5_Pos)       /*!< 0x01F00000 */
30 mjames 1449
#define ADC_SQR5_SQ5                         ADC_SQR5_SQ5_Msk                  /*!< ADC group regular sequencer rank 5 */
50 mjames 1450
#define ADC_SQR5_SQ5_0                       (0x01UL << ADC_SQR5_SQ5_Pos)       /*!< 0x00100000 */
1451
#define ADC_SQR5_SQ5_1                       (0x02UL << ADC_SQR5_SQ5_Pos)       /*!< 0x00200000 */
1452
#define ADC_SQR5_SQ5_2                       (0x04UL << ADC_SQR5_SQ5_Pos)       /*!< 0x00400000 */
1453
#define ADC_SQR5_SQ5_3                       (0x08UL << ADC_SQR5_SQ5_Pos)       /*!< 0x00800000 */
1454
#define ADC_SQR5_SQ5_4                       (0x10UL << ADC_SQR5_SQ5_Pos)       /*!< 0x01000000 */
30 mjames 1455
 
1456
#define ADC_SQR5_SQ6_Pos                     (25U)                             
50 mjames 1457
#define ADC_SQR5_SQ6_Msk                     (0x1FUL << ADC_SQR5_SQ6_Pos)       /*!< 0x3E000000 */
30 mjames 1458
#define ADC_SQR5_SQ6                         ADC_SQR5_SQ6_Msk                  /*!< ADC group regular sequencer rank 6 */
50 mjames 1459
#define ADC_SQR5_SQ6_0                       (0x01UL << ADC_SQR5_SQ6_Pos)       /*!< 0x02000000 */
1460
#define ADC_SQR5_SQ6_1                       (0x02UL << ADC_SQR5_SQ6_Pos)       /*!< 0x04000000 */
1461
#define ADC_SQR5_SQ6_2                       (0x04UL << ADC_SQR5_SQ6_Pos)       /*!< 0x08000000 */
1462
#define ADC_SQR5_SQ6_3                       (0x08UL << ADC_SQR5_SQ6_Pos)       /*!< 0x10000000 */
1463
#define ADC_SQR5_SQ6_4                       (0x10UL << ADC_SQR5_SQ6_Pos)       /*!< 0x20000000 */
30 mjames 1464
 
1465
 
1466
/*******************  Bit definition for ADC_JSQR register  *******************/
1467
#define ADC_JSQR_JSQ1_Pos                    (0U)                              
50 mjames 1468
#define ADC_JSQR_JSQ1_Msk                    (0x1FUL << ADC_JSQR_JSQ1_Pos)      /*!< 0x0000001F */
30 mjames 1469
#define ADC_JSQR_JSQ1                        ADC_JSQR_JSQ1_Msk                 /*!< ADC group injected sequencer rank 1 */
50 mjames 1470
#define ADC_JSQR_JSQ1_0                      (0x01UL << ADC_JSQR_JSQ1_Pos)      /*!< 0x00000001 */
1471
#define ADC_JSQR_JSQ1_1                      (0x02UL << ADC_JSQR_JSQ1_Pos)      /*!< 0x00000002 */
1472
#define ADC_JSQR_JSQ1_2                      (0x04UL << ADC_JSQR_JSQ1_Pos)      /*!< 0x00000004 */
1473
#define ADC_JSQR_JSQ1_3                      (0x08UL << ADC_JSQR_JSQ1_Pos)      /*!< 0x00000008 */
1474
#define ADC_JSQR_JSQ1_4                      (0x10UL << ADC_JSQR_JSQ1_Pos)      /*!< 0x00000010 */
30 mjames 1475
 
1476
#define ADC_JSQR_JSQ2_Pos                    (5U)                              
50 mjames 1477
#define ADC_JSQR_JSQ2_Msk                    (0x1FUL << ADC_JSQR_JSQ2_Pos)      /*!< 0x000003E0 */
30 mjames 1478
#define ADC_JSQR_JSQ2                        ADC_JSQR_JSQ2_Msk                 /*!< ADC group injected sequencer rank 2 */
50 mjames 1479
#define ADC_JSQR_JSQ2_0                      (0x01UL << ADC_JSQR_JSQ2_Pos)      /*!< 0x00000020 */
1480
#define ADC_JSQR_JSQ2_1                      (0x02UL << ADC_JSQR_JSQ2_Pos)      /*!< 0x00000040 */
1481
#define ADC_JSQR_JSQ2_2                      (0x04UL << ADC_JSQR_JSQ2_Pos)      /*!< 0x00000080 */
1482
#define ADC_JSQR_JSQ2_3                      (0x08UL << ADC_JSQR_JSQ2_Pos)      /*!< 0x00000100 */
1483
#define ADC_JSQR_JSQ2_4                      (0x10UL << ADC_JSQR_JSQ2_Pos)      /*!< 0x00000200 */
30 mjames 1484
 
1485
#define ADC_JSQR_JSQ3_Pos                    (10U)                             
50 mjames 1486
#define ADC_JSQR_JSQ3_Msk                    (0x1FUL << ADC_JSQR_JSQ3_Pos)      /*!< 0x00007C00 */
30 mjames 1487
#define ADC_JSQR_JSQ3                        ADC_JSQR_JSQ3_Msk                 /*!< ADC group injected sequencer rank 3 */
50 mjames 1488
#define ADC_JSQR_JSQ3_0                      (0x01UL << ADC_JSQR_JSQ3_Pos)      /*!< 0x00000400 */
1489
#define ADC_JSQR_JSQ3_1                      (0x02UL << ADC_JSQR_JSQ3_Pos)      /*!< 0x00000800 */
1490
#define ADC_JSQR_JSQ3_2                      (0x04UL << ADC_JSQR_JSQ3_Pos)      /*!< 0x00001000 */
1491
#define ADC_JSQR_JSQ3_3                      (0x08UL << ADC_JSQR_JSQ3_Pos)      /*!< 0x00002000 */
1492
#define ADC_JSQR_JSQ3_4                      (0x10UL << ADC_JSQR_JSQ3_Pos)      /*!< 0x00004000 */
30 mjames 1493
 
1494
#define ADC_JSQR_JSQ4_Pos                    (15U)                             
50 mjames 1495
#define ADC_JSQR_JSQ4_Msk                    (0x1FUL << ADC_JSQR_JSQ4_Pos)      /*!< 0x000F8000 */
30 mjames 1496
#define ADC_JSQR_JSQ4                        ADC_JSQR_JSQ4_Msk                 /*!< ADC group injected sequencer rank 4 */
50 mjames 1497
#define ADC_JSQR_JSQ4_0                      (0x01UL << ADC_JSQR_JSQ4_Pos)      /*!< 0x00008000 */
1498
#define ADC_JSQR_JSQ4_1                      (0x02UL << ADC_JSQR_JSQ4_Pos)      /*!< 0x00010000 */
1499
#define ADC_JSQR_JSQ4_2                      (0x04UL << ADC_JSQR_JSQ4_Pos)      /*!< 0x00020000 */
1500
#define ADC_JSQR_JSQ4_3                      (0x08UL << ADC_JSQR_JSQ4_Pos)      /*!< 0x00040000 */
1501
#define ADC_JSQR_JSQ4_4                      (0x10UL << ADC_JSQR_JSQ4_Pos)      /*!< 0x00080000 */
30 mjames 1502
 
1503
#define ADC_JSQR_JL_Pos                      (20U)                             
50 mjames 1504
#define ADC_JSQR_JL_Msk                      (0x3UL << ADC_JSQR_JL_Pos)         /*!< 0x00300000 */
30 mjames 1505
#define ADC_JSQR_JL                          ADC_JSQR_JL_Msk                   /*!< ADC group injected sequencer scan length */
50 mjames 1506
#define ADC_JSQR_JL_0                        (0x1UL << ADC_JSQR_JL_Pos)         /*!< 0x00100000 */
1507
#define ADC_JSQR_JL_1                        (0x2UL << ADC_JSQR_JL_Pos)         /*!< 0x00200000 */
30 mjames 1508
 
1509
/*******************  Bit definition for ADC_JDR1 register  *******************/
1510
#define ADC_JDR1_JDATA_Pos                   (0U)                              
50 mjames 1511
#define ADC_JDR1_JDATA_Msk                   (0xFFFFUL << ADC_JDR1_JDATA_Pos)   /*!< 0x0000FFFF */
30 mjames 1512
#define ADC_JDR1_JDATA                       ADC_JDR1_JDATA_Msk                /*!< ADC group injected sequencer rank 1 conversion data */
1513
 
1514
/*******************  Bit definition for ADC_JDR2 register  *******************/
1515
#define ADC_JDR2_JDATA_Pos                   (0U)                              
50 mjames 1516
#define ADC_JDR2_JDATA_Msk                   (0xFFFFUL << ADC_JDR2_JDATA_Pos)   /*!< 0x0000FFFF */
30 mjames 1517
#define ADC_JDR2_JDATA                       ADC_JDR2_JDATA_Msk                /*!< ADC group injected sequencer rank 2 conversion data */
1518
 
1519
/*******************  Bit definition for ADC_JDR3 register  *******************/
1520
#define ADC_JDR3_JDATA_Pos                   (0U)                              
50 mjames 1521
#define ADC_JDR3_JDATA_Msk                   (0xFFFFUL << ADC_JDR3_JDATA_Pos)   /*!< 0x0000FFFF */
30 mjames 1522
#define ADC_JDR3_JDATA                       ADC_JDR3_JDATA_Msk                /*!< ADC group injected sequencer rank 3 conversion data */
1523
 
1524
/*******************  Bit definition for ADC_JDR4 register  *******************/
1525
#define ADC_JDR4_JDATA_Pos                   (0U)                              
50 mjames 1526
#define ADC_JDR4_JDATA_Msk                   (0xFFFFUL << ADC_JDR4_JDATA_Pos)   /*!< 0x0000FFFF */
30 mjames 1527
#define ADC_JDR4_JDATA                       ADC_JDR4_JDATA_Msk                /*!< ADC group injected sequencer rank 4 conversion data */
1528
 
1529
/********************  Bit definition for ADC_DR register  ********************/
1530
#define ADC_DR_DATA_Pos                      (0U)                              
50 mjames 1531
#define ADC_DR_DATA_Msk                      (0xFFFFUL << ADC_DR_DATA_Pos)      /*!< 0x0000FFFF */
30 mjames 1532
#define ADC_DR_DATA                          ADC_DR_DATA_Msk                   /*!< ADC group regular conversion data */
1533
 
1534
/*******************  Bit definition for ADC_CSR register  ********************/
1535
#define ADC_CSR_AWD1_Pos                     (0U)                              
50 mjames 1536
#define ADC_CSR_AWD1_Msk                     (0x1UL << ADC_CSR_AWD1_Pos)        /*!< 0x00000001 */
30 mjames 1537
#define ADC_CSR_AWD1                         ADC_CSR_AWD1_Msk                  /*!< ADC multimode master analog watchdog 1 flag */
1538
#define ADC_CSR_EOCS1_Pos                    (1U)                              
50 mjames 1539
#define ADC_CSR_EOCS1_Msk                    (0x1UL << ADC_CSR_EOCS1_Pos)       /*!< 0x00000002 */
30 mjames 1540
#define ADC_CSR_EOCS1                        ADC_CSR_EOCS1_Msk                 /*!< ADC multimode master group regular end of unitary conversion or end of sequence conversions flag */
1541
#define ADC_CSR_JEOS1_Pos                    (2U)                              
50 mjames 1542
#define ADC_CSR_JEOS1_Msk                    (0x1UL << ADC_CSR_JEOS1_Pos)       /*!< 0x00000004 */
30 mjames 1543
#define ADC_CSR_JEOS1                        ADC_CSR_JEOS1_Msk                 /*!< ADC multimode master group injected end of sequence conversions flag */
1544
#define ADC_CSR_JSTRT1_Pos                   (3U)                              
50 mjames 1545
#define ADC_CSR_JSTRT1_Msk                   (0x1UL << ADC_CSR_JSTRT1_Pos)      /*!< 0x00000008 */
30 mjames 1546
#define ADC_CSR_JSTRT1                       ADC_CSR_JSTRT1_Msk                /*!< ADC multimode master group injected conversion start flag */
1547
#define ADC_CSR_STRT1_Pos                    (4U)                              
50 mjames 1548
#define ADC_CSR_STRT1_Msk                    (0x1UL << ADC_CSR_STRT1_Pos)       /*!< 0x00000010 */
30 mjames 1549
#define ADC_CSR_STRT1                        ADC_CSR_STRT1_Msk                 /*!< ADC multimode master group regular conversion start flag */
1550
#define ADC_CSR_OVR1_Pos                     (5U)                              
50 mjames 1551
#define ADC_CSR_OVR1_Msk                     (0x1UL << ADC_CSR_OVR1_Pos)        /*!< 0x00000020 */
30 mjames 1552
#define ADC_CSR_OVR1                         ADC_CSR_OVR1_Msk                  /*!< ADC multimode master group regular overrun flag */
1553
#define ADC_CSR_ADONS1_Pos                   (6U)                              
50 mjames 1554
#define ADC_CSR_ADONS1_Msk                   (0x1UL << ADC_CSR_ADONS1_Pos)      /*!< 0x00000040 */
30 mjames 1555
#define ADC_CSR_ADONS1                       ADC_CSR_ADONS1_Msk                /*!< ADC multimode master ready flag */
1556
 
1557
/* Legacy defines */
1558
#define  ADC_CSR_EOC1                        (ADC_CSR_EOCS1)
1559
#define  ADC_CSR_JEOC1                       (ADC_CSR_JEOS1)
1560
 
1561
/*******************  Bit definition for ADC_CCR register  ********************/
1562
#define ADC_CCR_ADCPRE_Pos                   (16U)                             
50 mjames 1563
#define ADC_CCR_ADCPRE_Msk                   (0x3UL << ADC_CCR_ADCPRE_Pos)      /*!< 0x00030000 */
30 mjames 1564
#define ADC_CCR_ADCPRE                       ADC_CCR_ADCPRE_Msk                /*!< ADC clock source asynchronous prescaler */
50 mjames 1565
#define ADC_CCR_ADCPRE_0                     (0x1UL << ADC_CCR_ADCPRE_Pos)      /*!< 0x00010000 */
1566
#define ADC_CCR_ADCPRE_1                     (0x2UL << ADC_CCR_ADCPRE_Pos)      /*!< 0x00020000 */
30 mjames 1567
#define ADC_CCR_TSVREFE_Pos                  (23U)                             
50 mjames 1568
#define ADC_CCR_TSVREFE_Msk                  (0x1UL << ADC_CCR_TSVREFE_Pos)     /*!< 0x00800000 */
30 mjames 1569
#define ADC_CCR_TSVREFE                      ADC_CCR_TSVREFE_Msk               /*!< ADC internal path to VrefInt and temperature sensor enable */
1570
 
1571
/******************************************************************************/
1572
/*                                                                            */
1573
/*                      Analog Comparators (COMP)                             */
1574
/*                                                                            */
1575
/******************************************************************************/
1576
 
1577
/******************  Bit definition for COMP_CSR register  ********************/
1578
#define COMP_CSR_10KPU                      (0x00000001U)                      /*!< Comparator 1 input plus 10K pull-up resistor */
1579
#define COMP_CSR_400KPU                     (0x00000002U)                      /*!< Comparator 1 input plus 400K pull-up resistor */
1580
#define COMP_CSR_10KPD                      (0x00000004U)                      /*!< Comparator 1 input plus 10K pull-down resistor */
1581
#define COMP_CSR_400KPD                     (0x00000008U)                      /*!< Comparator 1 input plus 400K pull-down resistor */
1582
#define COMP_CSR_CMP1EN_Pos                 (4U)                               
50 mjames 1583
#define COMP_CSR_CMP1EN_Msk                 (0x1UL << COMP_CSR_CMP1EN_Pos)      /*!< 0x00000010 */
30 mjames 1584
#define COMP_CSR_CMP1EN                     COMP_CSR_CMP1EN_Msk                /*!< Comparator 1 enable */
1585
#define COMP_CSR_CMP1OUT_Pos                (7U)                               
50 mjames 1586
#define COMP_CSR_CMP1OUT_Msk                (0x1UL << COMP_CSR_CMP1OUT_Pos)     /*!< 0x00000080 */
30 mjames 1587
#define COMP_CSR_CMP1OUT                    COMP_CSR_CMP1OUT_Msk               /*!< Comparator 1 output level */
1588
#define COMP_CSR_SPEED_Pos                  (12U)                              
50 mjames 1589
#define COMP_CSR_SPEED_Msk                  (0x1UL << COMP_CSR_SPEED_Pos)       /*!< 0x00001000 */
30 mjames 1590
#define COMP_CSR_SPEED                      COMP_CSR_SPEED_Msk                 /*!< Comparator 2 power mode */
1591
#define COMP_CSR_CMP2OUT_Pos                (13U)                              
50 mjames 1592
#define COMP_CSR_CMP2OUT_Msk                (0x1UL << COMP_CSR_CMP2OUT_Pos)     /*!< 0x00002000 */
30 mjames 1593
#define COMP_CSR_CMP2OUT                    COMP_CSR_CMP2OUT_Msk               /*!< Comparator 2 output level */
1594
 
1595
#define COMP_CSR_WNDWE_Pos                  (17U)                              
50 mjames 1596
#define COMP_CSR_WNDWE_Msk                  (0x1UL << COMP_CSR_WNDWE_Pos)       /*!< 0x00020000 */
30 mjames 1597
#define COMP_CSR_WNDWE                      COMP_CSR_WNDWE_Msk                 /*!< Pair of comparators window mode. Bit intended to be used with COMP common instance (COMP_Common_TypeDef)  */
1598
 
1599
#define COMP_CSR_INSEL_Pos                  (18U)                              
50 mjames 1600
#define COMP_CSR_INSEL_Msk                  (0x7UL << COMP_CSR_INSEL_Pos)       /*!< 0x001C0000 */
30 mjames 1601
#define COMP_CSR_INSEL                      COMP_CSR_INSEL_Msk                 /*!< Comparator 2 input minus selection */
50 mjames 1602
#define COMP_CSR_INSEL_0                    (0x1UL << COMP_CSR_INSEL_Pos)       /*!< 0x00040000 */
1603
#define COMP_CSR_INSEL_1                    (0x2UL << COMP_CSR_INSEL_Pos)       /*!< 0x00080000 */
1604
#define COMP_CSR_INSEL_2                    (0x4UL << COMP_CSR_INSEL_Pos)       /*!< 0x00100000 */
30 mjames 1605
#define COMP_CSR_OUTSEL_Pos                 (21U)                              
50 mjames 1606
#define COMP_CSR_OUTSEL_Msk                 (0x7UL << COMP_CSR_OUTSEL_Pos)      /*!< 0x00E00000 */
30 mjames 1607
#define COMP_CSR_OUTSEL                     COMP_CSR_OUTSEL_Msk                /*!< Comparator 2 output redirection */
50 mjames 1608
#define COMP_CSR_OUTSEL_0                   (0x1UL << COMP_CSR_OUTSEL_Pos)      /*!< 0x00200000 */
1609
#define COMP_CSR_OUTSEL_1                   (0x2UL << COMP_CSR_OUTSEL_Pos)      /*!< 0x00400000 */
1610
#define COMP_CSR_OUTSEL_2                   (0x4UL << COMP_CSR_OUTSEL_Pos)      /*!< 0x00800000 */
30 mjames 1611
 
1612
/* Bits present in COMP register but not related to comparator */
1613
/* (or partially related to comparator, in addition to other peripherals) */
1614
#define COMP_CSR_VREFOUTEN_Pos              (16U)                              
50 mjames 1615
#define COMP_CSR_VREFOUTEN_Msk              (0x1UL << COMP_CSR_VREFOUTEN_Pos)   /*!< 0x00010000 */
30 mjames 1616
#define COMP_CSR_VREFOUTEN                  COMP_CSR_VREFOUTEN_Msk             /*!< VrefInt output enable on GPIO group 3 */
1617
 
1618
#define COMP_CSR_FCH3_Pos                   (26U)                              
50 mjames 1619
#define COMP_CSR_FCH3_Msk                   (0x1UL << COMP_CSR_FCH3_Pos)        /*!< 0x04000000 */
30 mjames 1620
#define COMP_CSR_FCH3                       COMP_CSR_FCH3_Msk                  /*!< Bit 26 */
1621
#define COMP_CSR_FCH8_Pos                   (27U)                              
50 mjames 1622
#define COMP_CSR_FCH8_Msk                   (0x1UL << COMP_CSR_FCH8_Pos)        /*!< 0x08000000 */
30 mjames 1623
#define COMP_CSR_FCH8                       COMP_CSR_FCH8_Msk                  /*!< Bit 27 */
1624
#define COMP_CSR_RCH13_Pos                  (28U)                              
50 mjames 1625
#define COMP_CSR_RCH13_Msk                  (0x1UL << COMP_CSR_RCH13_Pos)       /*!< 0x10000000 */
30 mjames 1626
#define COMP_CSR_RCH13                      COMP_CSR_RCH13_Msk                 /*!< Bit 28 */
1627
 
1628
#define COMP_CSR_CAIE_Pos                   (29U)                              
50 mjames 1629
#define COMP_CSR_CAIE_Msk                   (0x1UL << COMP_CSR_CAIE_Pos)        /*!< 0x20000000 */
30 mjames 1630
#define COMP_CSR_CAIE                       COMP_CSR_CAIE_Msk                  /*!< Bit 29 */
1631
#define COMP_CSR_CAIF_Pos                   (30U)                              
50 mjames 1632
#define COMP_CSR_CAIF_Msk                   (0x1UL << COMP_CSR_CAIF_Pos)        /*!< 0x40000000 */
30 mjames 1633
#define COMP_CSR_CAIF                       COMP_CSR_CAIF_Msk                  /*!< Bit 30 */
1634
#define COMP_CSR_TSUSP_Pos                  (31U)                              
50 mjames 1635
#define COMP_CSR_TSUSP_Msk                  (0x1UL << COMP_CSR_TSUSP_Pos)       /*!< 0x80000000 */
30 mjames 1636
#define COMP_CSR_TSUSP                      COMP_CSR_TSUSP_Msk                 /*!< Bit 31 */
1637
 
1638
/******************************************************************************/
1639
/*                                                                            */
1640
/*                         Operational Amplifier (OPAMP)                      */
1641
/*                                                                            */
1642
/******************************************************************************/
1643
/*******************  Bit definition for OPAMP_CSR register  ******************/
1644
#define OPAMP_CSR_OPA1PD_Pos                  (0U)                             
50 mjames 1645
#define OPAMP_CSR_OPA1PD_Msk                  (0x1UL << OPAMP_CSR_OPA1PD_Pos)   /*!< 0x00000001 */
30 mjames 1646
#define OPAMP_CSR_OPA1PD                      OPAMP_CSR_OPA1PD_Msk             /*!< OPAMP1 disable */
1647
#define OPAMP_CSR_S3SEL1_Pos                  (1U)                             
50 mjames 1648
#define OPAMP_CSR_S3SEL1_Msk                  (0x1UL << OPAMP_CSR_S3SEL1_Pos)   /*!< 0x00000002 */
30 mjames 1649
#define OPAMP_CSR_S3SEL1                      OPAMP_CSR_S3SEL1_Msk             /*!< Switch 3 for OPAMP1 Enable */
1650
#define OPAMP_CSR_S4SEL1_Pos                  (2U)                             
50 mjames 1651
#define OPAMP_CSR_S4SEL1_Msk                  (0x1UL << OPAMP_CSR_S4SEL1_Pos)   /*!< 0x00000004 */
30 mjames 1652
#define OPAMP_CSR_S4SEL1                      OPAMP_CSR_S4SEL1_Msk             /*!< Switch 4 for OPAMP1 Enable */
1653
#define OPAMP_CSR_S5SEL1_Pos                  (3U)                             
50 mjames 1654
#define OPAMP_CSR_S5SEL1_Msk                  (0x1UL << OPAMP_CSR_S5SEL1_Pos)   /*!< 0x00000008 */
30 mjames 1655
#define OPAMP_CSR_S5SEL1                      OPAMP_CSR_S5SEL1_Msk             /*!< Switch 5 for OPAMP1 Enable */
1656
#define OPAMP_CSR_S6SEL1_Pos                  (4U)                             
50 mjames 1657
#define OPAMP_CSR_S6SEL1_Msk                  (0x1UL << OPAMP_CSR_S6SEL1_Pos)   /*!< 0x00000010 */
30 mjames 1658
#define OPAMP_CSR_S6SEL1                      OPAMP_CSR_S6SEL1_Msk             /*!< Switch 6 for OPAMP1 Enable */
1659
#define OPAMP_CSR_OPA1CAL_L_Pos               (5U)                             
50 mjames 1660
#define OPAMP_CSR_OPA1CAL_L_Msk               (0x1UL << OPAMP_CSR_OPA1CAL_L_Pos) /*!< 0x00000020 */
30 mjames 1661
#define OPAMP_CSR_OPA1CAL_L                   OPAMP_CSR_OPA1CAL_L_Msk          /*!< OPAMP1 Offset calibration for P differential pair */
1662
#define OPAMP_CSR_OPA1CAL_H_Pos               (6U)                             
50 mjames 1663
#define OPAMP_CSR_OPA1CAL_H_Msk               (0x1UL << OPAMP_CSR_OPA1CAL_H_Pos) /*!< 0x00000040 */
30 mjames 1664
#define OPAMP_CSR_OPA1CAL_H                   OPAMP_CSR_OPA1CAL_H_Msk          /*!< OPAMP1 Offset calibration for N differential pair */
1665
#define OPAMP_CSR_OPA1LPM_Pos                 (7U)                             
50 mjames 1666
#define OPAMP_CSR_OPA1LPM_Msk                 (0x1UL << OPAMP_CSR_OPA1LPM_Pos)  /*!< 0x00000080 */
30 mjames 1667
#define OPAMP_CSR_OPA1LPM                     OPAMP_CSR_OPA1LPM_Msk            /*!< OPAMP1 Low power enable */
1668
#define OPAMP_CSR_OPA2PD_Pos                  (8U)                             
50 mjames 1669
#define OPAMP_CSR_OPA2PD_Msk                  (0x1UL << OPAMP_CSR_OPA2PD_Pos)   /*!< 0x00000100 */
30 mjames 1670
#define OPAMP_CSR_OPA2PD                      OPAMP_CSR_OPA2PD_Msk             /*!< OPAMP2 disable */
1671
#define OPAMP_CSR_S3SEL2_Pos                  (9U)                             
50 mjames 1672
#define OPAMP_CSR_S3SEL2_Msk                  (0x1UL << OPAMP_CSR_S3SEL2_Pos)   /*!< 0x00000200 */
30 mjames 1673
#define OPAMP_CSR_S3SEL2                      OPAMP_CSR_S3SEL2_Msk             /*!< Switch 3 for OPAMP2 Enable */
1674
#define OPAMP_CSR_S4SEL2_Pos                  (10U)                            
50 mjames 1675
#define OPAMP_CSR_S4SEL2_Msk                  (0x1UL << OPAMP_CSR_S4SEL2_Pos)   /*!< 0x00000400 */
30 mjames 1676
#define OPAMP_CSR_S4SEL2                      OPAMP_CSR_S4SEL2_Msk             /*!< Switch 4 for OPAMP2 Enable */
1677
#define OPAMP_CSR_S5SEL2_Pos                  (11U)                            
50 mjames 1678
#define OPAMP_CSR_S5SEL2_Msk                  (0x1UL << OPAMP_CSR_S5SEL2_Pos)   /*!< 0x00000800 */
30 mjames 1679
#define OPAMP_CSR_S5SEL2                      OPAMP_CSR_S5SEL2_Msk             /*!< Switch 5 for OPAMP2 Enable */
1680
#define OPAMP_CSR_S6SEL2_Pos                  (12U)                            
50 mjames 1681
#define OPAMP_CSR_S6SEL2_Msk                  (0x1UL << OPAMP_CSR_S6SEL2_Pos)   /*!< 0x00001000 */
30 mjames 1682
#define OPAMP_CSR_S6SEL2                      OPAMP_CSR_S6SEL2_Msk             /*!< Switch 6 for OPAMP2 Enable */
1683
#define OPAMP_CSR_OPA2CAL_L_Pos               (13U)                            
50 mjames 1684
#define OPAMP_CSR_OPA2CAL_L_Msk               (0x1UL << OPAMP_CSR_OPA2CAL_L_Pos) /*!< 0x00002000 */
30 mjames 1685
#define OPAMP_CSR_OPA2CAL_L                   OPAMP_CSR_OPA2CAL_L_Msk          /*!< OPAMP2 Offset calibration for P differential pair */
1686
#define OPAMP_CSR_OPA2CAL_H_Pos               (14U)                            
50 mjames 1687
#define OPAMP_CSR_OPA2CAL_H_Msk               (0x1UL << OPAMP_CSR_OPA2CAL_H_Pos) /*!< 0x00004000 */
30 mjames 1688
#define OPAMP_CSR_OPA2CAL_H                   OPAMP_CSR_OPA2CAL_H_Msk          /*!< OPAMP2 Offset calibration for N differential pair */
1689
#define OPAMP_CSR_OPA2LPM_Pos                 (15U)                            
50 mjames 1690
#define OPAMP_CSR_OPA2LPM_Msk                 (0x1UL << OPAMP_CSR_OPA2LPM_Pos)  /*!< 0x00008000 */
30 mjames 1691
#define OPAMP_CSR_OPA2LPM                     OPAMP_CSR_OPA2LPM_Msk            /*!< OPAMP2 Low power enable */
1692
#define OPAMP_CSR_ANAWSEL1_Pos                (24U)                            
50 mjames 1693
#define OPAMP_CSR_ANAWSEL1_Msk                (0x1UL << OPAMP_CSR_ANAWSEL1_Pos) /*!< 0x01000000 */
30 mjames 1694
#define OPAMP_CSR_ANAWSEL1                    OPAMP_CSR_ANAWSEL1_Msk           /*!< Switch ANA Enable for OPAMP1 */ 
1695
#define OPAMP_CSR_ANAWSEL2_Pos                (25U)                            
50 mjames 1696
#define OPAMP_CSR_ANAWSEL2_Msk                (0x1UL << OPAMP_CSR_ANAWSEL2_Pos) /*!< 0x02000000 */
30 mjames 1697
#define OPAMP_CSR_ANAWSEL2                    OPAMP_CSR_ANAWSEL2_Msk           /*!< Switch ANA Enable for OPAMP2 */
1698
#define OPAMP_CSR_S7SEL2_Pos                  (27U)                            
50 mjames 1699
#define OPAMP_CSR_S7SEL2_Msk                  (0x1UL << OPAMP_CSR_S7SEL2_Pos)   /*!< 0x08000000 */
30 mjames 1700
#define OPAMP_CSR_S7SEL2                      OPAMP_CSR_S7SEL2_Msk             /*!< Switch 7 for OPAMP2 Enable */
1701
#define OPAMP_CSR_AOP_RANGE_Pos               (28U)                            
50 mjames 1702
#define OPAMP_CSR_AOP_RANGE_Msk               (0x1UL << OPAMP_CSR_AOP_RANGE_Pos) /*!< 0x10000000 */
30 mjames 1703
#define OPAMP_CSR_AOP_RANGE                   OPAMP_CSR_AOP_RANGE_Msk          /*!< Common to several OPAMP instances: Operational amplifier voltage supply range. Bit intended to be used with OPAMP common instance (OPAMP_Common_TypeDef) */
1704
#define OPAMP_CSR_OPA1CALOUT_Pos              (29U)                            
50 mjames 1705
#define OPAMP_CSR_OPA1CALOUT_Msk              (0x1UL << OPAMP_CSR_OPA1CALOUT_Pos) /*!< 0x20000000 */
30 mjames 1706
#define OPAMP_CSR_OPA1CALOUT                  OPAMP_CSR_OPA1CALOUT_Msk         /*!< OPAMP1 calibration output */
1707
#define OPAMP_CSR_OPA2CALOUT_Pos              (30U)                            
50 mjames 1708
#define OPAMP_CSR_OPA2CALOUT_Msk              (0x1UL << OPAMP_CSR_OPA2CALOUT_Pos) /*!< 0x40000000 */
30 mjames 1709
#define OPAMP_CSR_OPA2CALOUT                  OPAMP_CSR_OPA2CALOUT_Msk         /*!< OPAMP2 calibration output */
1710
 
1711
/*******************  Bit definition for OPAMP_OTR register  ******************/
1712
#define OPAMP_OTR_AO1_OPT_OFFSET_TRIM_LOW_Pos (0U)                             
50 mjames 1713
#define OPAMP_OTR_AO1_OPT_OFFSET_TRIM_LOW_Msk (0x1FUL << OPAMP_OTR_AO1_OPT_OFFSET_TRIM_LOW_Pos) /*!< 0x0000001F */
30 mjames 1714
#define OPAMP_OTR_AO1_OPT_OFFSET_TRIM_LOW     OPAMP_OTR_AO1_OPT_OFFSET_TRIM_LOW_Msk /*!< Offset trim for transistors differential pair PMOS of OPAMP1 */
1715
#define OPAMP_OTR_AO1_OPT_OFFSET_TRIM_HIGH_Pos (5U)                            
50 mjames 1716
#define OPAMP_OTR_AO1_OPT_OFFSET_TRIM_HIGH_Msk (0x1FUL << OPAMP_OTR_AO1_OPT_OFFSET_TRIM_HIGH_Pos) /*!< 0x000003E0 */
30 mjames 1717
#define OPAMP_OTR_AO1_OPT_OFFSET_TRIM_HIGH    OPAMP_OTR_AO1_OPT_OFFSET_TRIM_HIGH_Msk /*!< Offset trim for transistors differential pair NMOS of OPAMP1 */
1718
#define OPAMP_OTR_AO2_OPT_OFFSET_TRIM_LOW_Pos (10U)                            
50 mjames 1719
#define OPAMP_OTR_AO2_OPT_OFFSET_TRIM_LOW_Msk (0x1FUL << OPAMP_OTR_AO2_OPT_OFFSET_TRIM_LOW_Pos) /*!< 0x00007C00 */
30 mjames 1720
#define OPAMP_OTR_AO2_OPT_OFFSET_TRIM_LOW     OPAMP_OTR_AO2_OPT_OFFSET_TRIM_LOW_Msk /*!< Offset trim for transistors differential pair PMOS of OPAMP2 */
1721
#define OPAMP_OTR_AO2_OPT_OFFSET_TRIM_HIGH_Pos (15U)                           
50 mjames 1722
#define OPAMP_OTR_AO2_OPT_OFFSET_TRIM_HIGH_Msk (0x1FUL << OPAMP_OTR_AO2_OPT_OFFSET_TRIM_HIGH_Pos) /*!< 0x000F8000 */
30 mjames 1723
#define OPAMP_OTR_AO2_OPT_OFFSET_TRIM_HIGH    OPAMP_OTR_AO2_OPT_OFFSET_TRIM_HIGH_Msk /*!< Offset trim for transistors differential pair NMOS of OPAMP2 */
1724
#define OPAMP_OTR_OT_USER_Pos                 (31U)                            
50 mjames 1725
#define OPAMP_OTR_OT_USER_Msk                 (0x1UL << OPAMP_OTR_OT_USER_Pos)  /*!< 0x80000000 */
30 mjames 1726
#define OPAMP_OTR_OT_USER                     OPAMP_OTR_OT_USER_Msk            /*!< Switch to OPAMP offset user trimmed values */
1727
 
1728
/*******************  Bit definition for OPAMP_LPOTR register  ****************/
1729
#define OPAMP_OTR_AO1_OPT_OFFSET_TRIM_LP_LOW_Pos (0U)                          
50 mjames 1730
#define OPAMP_OTR_AO1_OPT_OFFSET_TRIM_LP_LOW_Msk (0x1FUL << OPAMP_OTR_AO1_OPT_OFFSET_TRIM_LP_LOW_Pos) /*!< 0x0000001F */
30 mjames 1731
#define OPAMP_OTR_AO1_OPT_OFFSET_TRIM_LP_LOW  OPAMP_OTR_AO1_OPT_OFFSET_TRIM_LP_LOW_Msk /*!< Offset trim for transistors differential pair PMOS of OPAMP1 */
1732
#define OPAMP_OTR_AO1_OPT_OFFSET_TRIM_LP_HIGH_Pos (5U)                         
50 mjames 1733
#define OPAMP_OTR_AO1_OPT_OFFSET_TRIM_LP_HIGH_Msk (0x1FUL << OPAMP_OTR_AO1_OPT_OFFSET_TRIM_LP_HIGH_Pos) /*!< 0x000003E0 */
30 mjames 1734
#define OPAMP_OTR_AO1_OPT_OFFSET_TRIM_LP_HIGH OPAMP_OTR_AO1_OPT_OFFSET_TRIM_LP_HIGH_Msk /*!< Offset trim for transistors differential pair NMOS of OPAMP1 */
1735
#define OPAMP_OTR_AO2_OPT_OFFSET_TRIM_LP_LOW_Pos (10U)                         
50 mjames 1736
#define OPAMP_OTR_AO2_OPT_OFFSET_TRIM_LP_LOW_Msk (0x1FUL << OPAMP_OTR_AO2_OPT_OFFSET_TRIM_LP_LOW_Pos) /*!< 0x00007C00 */
30 mjames 1737
#define OPAMP_OTR_AO2_OPT_OFFSET_TRIM_LP_LOW  OPAMP_OTR_AO2_OPT_OFFSET_TRIM_LP_LOW_Msk /*!< Offset trim for transistors differential pair PMOS of OPAMP2 */
1738
#define OPAMP_OTR_AO2_OPT_OFFSET_TRIM_LP_HIGH_Pos (15U)                        
50 mjames 1739
#define OPAMP_OTR_AO2_OPT_OFFSET_TRIM_LP_HIGH_Msk (0x1FUL << OPAMP_OTR_AO2_OPT_OFFSET_TRIM_LP_HIGH_Pos) /*!< 0x000F8000 */
30 mjames 1740
#define OPAMP_OTR_AO2_OPT_OFFSET_TRIM_LP_HIGH OPAMP_OTR_AO2_OPT_OFFSET_TRIM_LP_HIGH_Msk /*!< Offset trim for transistors differential pair NMOS of OPAMP2 */
1741
 
1742
/******************************************************************************/
1743
/*                                                                            */
1744
/*                       CRC calculation unit (CRC)                           */
1745
/*                                                                            */
1746
/******************************************************************************/
1747
 
1748
/*******************  Bit definition for CRC_DR register  *********************/
1749
#define CRC_DR_DR_Pos                       (0U)                               
50 mjames 1750
#define CRC_DR_DR_Msk                       (0xFFFFFFFFUL << CRC_DR_DR_Pos)     /*!< 0xFFFFFFFF */
30 mjames 1751
#define CRC_DR_DR                           CRC_DR_DR_Msk                      /*!< Data register bits */
1752
 
1753
/*******************  Bit definition for CRC_IDR register  ********************/
1754
#define CRC_IDR_IDR_Pos                     (0U)                               
50 mjames 1755
#define CRC_IDR_IDR_Msk                     (0xFFUL << CRC_IDR_IDR_Pos)         /*!< 0x000000FF */
30 mjames 1756
#define CRC_IDR_IDR                         CRC_IDR_IDR_Msk                    /*!< General-purpose 8-bit data register bits */
1757
 
1758
/********************  Bit definition for CRC_CR register  ********************/
1759
#define CRC_CR_RESET_Pos                    (0U)                               
50 mjames 1760
#define CRC_CR_RESET_Msk                    (0x1UL << CRC_CR_RESET_Pos)         /*!< 0x00000001 */
30 mjames 1761
#define CRC_CR_RESET                        CRC_CR_RESET_Msk                   /*!< RESET bit */
1762
 
1763
/******************************************************************************/
1764
/*                                                                            */
1765
/*                    Digital to Analog Converter (DAC)                       */
1766
/*                                                                            */
1767
/******************************************************************************/
1768
 
1769
/********************  Bit definition for DAC_CR register  ********************/
1770
#define DAC_CR_EN1_Pos                      (0U)                               
50 mjames 1771
#define DAC_CR_EN1_Msk                      (0x1UL << DAC_CR_EN1_Pos)           /*!< 0x00000001 */
30 mjames 1772
#define DAC_CR_EN1                          DAC_CR_EN1_Msk                     /*!<DAC channel1 enable */
1773
#define DAC_CR_BOFF1_Pos                    (1U)                               
50 mjames 1774
#define DAC_CR_BOFF1_Msk                    (0x1UL << DAC_CR_BOFF1_Pos)         /*!< 0x00000002 */
30 mjames 1775
#define DAC_CR_BOFF1                        DAC_CR_BOFF1_Msk                   /*!<DAC channel1 output buffer disable */
1776
#define DAC_CR_TEN1_Pos                     (2U)                               
50 mjames 1777
#define DAC_CR_TEN1_Msk                     (0x1UL << DAC_CR_TEN1_Pos)          /*!< 0x00000004 */
30 mjames 1778
#define DAC_CR_TEN1                         DAC_CR_TEN1_Msk                    /*!<DAC channel1 Trigger enable */
1779
 
1780
#define DAC_CR_TSEL1_Pos                    (3U)                               
50 mjames 1781
#define DAC_CR_TSEL1_Msk                    (0x7UL << DAC_CR_TSEL1_Pos)         /*!< 0x00000038 */
30 mjames 1782
#define DAC_CR_TSEL1                        DAC_CR_TSEL1_Msk                   /*!<TSEL1[2:0] (DAC channel1 Trigger selection) */
50 mjames 1783
#define DAC_CR_TSEL1_0                      (0x1UL << DAC_CR_TSEL1_Pos)         /*!< 0x00000008 */
1784
#define DAC_CR_TSEL1_1                      (0x2UL << DAC_CR_TSEL1_Pos)         /*!< 0x00000010 */
1785
#define DAC_CR_TSEL1_2                      (0x4UL << DAC_CR_TSEL1_Pos)         /*!< 0x00000020 */
30 mjames 1786
 
1787
#define DAC_CR_WAVE1_Pos                    (6U)                               
50 mjames 1788
#define DAC_CR_WAVE1_Msk                    (0x3UL << DAC_CR_WAVE1_Pos)         /*!< 0x000000C0 */
30 mjames 1789
#define DAC_CR_WAVE1                        DAC_CR_WAVE1_Msk                   /*!<WAVE1[1:0] (DAC channel1 noise/triangle wave generation enable) */
50 mjames 1790
#define DAC_CR_WAVE1_0                      (0x1UL << DAC_CR_WAVE1_Pos)         /*!< 0x00000040 */
1791
#define DAC_CR_WAVE1_1                      (0x2UL << DAC_CR_WAVE1_Pos)         /*!< 0x00000080 */
30 mjames 1792
 
1793
#define DAC_CR_MAMP1_Pos                    (8U)                               
50 mjames 1794
#define DAC_CR_MAMP1_Msk                    (0xFUL << DAC_CR_MAMP1_Pos)         /*!< 0x00000F00 */
30 mjames 1795
#define DAC_CR_MAMP1                        DAC_CR_MAMP1_Msk                   /*!<MAMP1[3:0] (DAC channel1 Mask/Amplitude selector) */
50 mjames 1796
#define DAC_CR_MAMP1_0                      (0x1UL << DAC_CR_MAMP1_Pos)         /*!< 0x00000100 */
1797
#define DAC_CR_MAMP1_1                      (0x2UL << DAC_CR_MAMP1_Pos)         /*!< 0x00000200 */
1798
#define DAC_CR_MAMP1_2                      (0x4UL << DAC_CR_MAMP1_Pos)         /*!< 0x00000400 */
1799
#define DAC_CR_MAMP1_3                      (0x8UL << DAC_CR_MAMP1_Pos)         /*!< 0x00000800 */
30 mjames 1800
 
1801
#define DAC_CR_DMAEN1_Pos                   (12U)                              
50 mjames 1802
#define DAC_CR_DMAEN1_Msk                   (0x1UL << DAC_CR_DMAEN1_Pos)        /*!< 0x00001000 */
30 mjames 1803
#define DAC_CR_DMAEN1                       DAC_CR_DMAEN1_Msk                  /*!<DAC channel1 DMA enable */
1804
#define DAC_CR_DMAUDRIE1_Pos                (13U)                              
50 mjames 1805
#define DAC_CR_DMAUDRIE1_Msk                (0x1UL << DAC_CR_DMAUDRIE1_Pos)     /*!< 0x00002000 */
30 mjames 1806
#define DAC_CR_DMAUDRIE1                    DAC_CR_DMAUDRIE1_Msk               /*!<DAC channel1 DMA Interrupt enable */
1807
#define DAC_CR_EN2_Pos                      (16U)                              
50 mjames 1808
#define DAC_CR_EN2_Msk                      (0x1UL << DAC_CR_EN2_Pos)           /*!< 0x00010000 */
30 mjames 1809
#define DAC_CR_EN2                          DAC_CR_EN2_Msk                     /*!<DAC channel2 enable */
1810
#define DAC_CR_BOFF2_Pos                    (17U)                              
50 mjames 1811
#define DAC_CR_BOFF2_Msk                    (0x1UL << DAC_CR_BOFF2_Pos)         /*!< 0x00020000 */
30 mjames 1812
#define DAC_CR_BOFF2                        DAC_CR_BOFF2_Msk                   /*!<DAC channel2 output buffer disable */
1813
#define DAC_CR_TEN2_Pos                     (18U)                              
50 mjames 1814
#define DAC_CR_TEN2_Msk                     (0x1UL << DAC_CR_TEN2_Pos)          /*!< 0x00040000 */
30 mjames 1815
#define DAC_CR_TEN2                         DAC_CR_TEN2_Msk                    /*!<DAC channel2 Trigger enable */
1816
 
1817
#define DAC_CR_TSEL2_Pos                    (19U)                              
50 mjames 1818
#define DAC_CR_TSEL2_Msk                    (0x7UL << DAC_CR_TSEL2_Pos)         /*!< 0x00380000 */
30 mjames 1819
#define DAC_CR_TSEL2                        DAC_CR_TSEL2_Msk                   /*!<TSEL2[2:0] (DAC channel2 Trigger selection) */
50 mjames 1820
#define DAC_CR_TSEL2_0                      (0x1UL << DAC_CR_TSEL2_Pos)         /*!< 0x00080000 */
1821
#define DAC_CR_TSEL2_1                      (0x2UL << DAC_CR_TSEL2_Pos)         /*!< 0x00100000 */
1822
#define DAC_CR_TSEL2_2                      (0x4UL << DAC_CR_TSEL2_Pos)         /*!< 0x00200000 */
30 mjames 1823
 
1824
#define DAC_CR_WAVE2_Pos                    (22U)                              
50 mjames 1825
#define DAC_CR_WAVE2_Msk                    (0x3UL << DAC_CR_WAVE2_Pos)         /*!< 0x00C00000 */
30 mjames 1826
#define DAC_CR_WAVE2                        DAC_CR_WAVE2_Msk                   /*!<WAVE2[1:0] (DAC channel2 noise/triangle wave generation enable) */
50 mjames 1827
#define DAC_CR_WAVE2_0                      (0x1UL << DAC_CR_WAVE2_Pos)         /*!< 0x00400000 */
1828
#define DAC_CR_WAVE2_1                      (0x2UL << DAC_CR_WAVE2_Pos)         /*!< 0x00800000 */
30 mjames 1829
 
1830
#define DAC_CR_MAMP2_Pos                    (24U)                              
50 mjames 1831
#define DAC_CR_MAMP2_Msk                    (0xFUL << DAC_CR_MAMP2_Pos)         /*!< 0x0F000000 */
30 mjames 1832
#define DAC_CR_MAMP2                        DAC_CR_MAMP2_Msk                   /*!<MAMP2[3:0] (DAC channel2 Mask/Amplitude selector) */
50 mjames 1833
#define DAC_CR_MAMP2_0                      (0x1UL << DAC_CR_MAMP2_Pos)         /*!< 0x01000000 */
1834
#define DAC_CR_MAMP2_1                      (0x2UL << DAC_CR_MAMP2_Pos)         /*!< 0x02000000 */
1835
#define DAC_CR_MAMP2_2                      (0x4UL << DAC_CR_MAMP2_Pos)         /*!< 0x04000000 */
1836
#define DAC_CR_MAMP2_3                      (0x8UL << DAC_CR_MAMP2_Pos)         /*!< 0x08000000 */
30 mjames 1837
 
1838
#define DAC_CR_DMAEN2_Pos                   (28U)                              
50 mjames 1839
#define DAC_CR_DMAEN2_Msk                   (0x1UL << DAC_CR_DMAEN2_Pos)        /*!< 0x10000000 */
30 mjames 1840
#define DAC_CR_DMAEN2                       DAC_CR_DMAEN2_Msk                  /*!<DAC channel2 DMA enabled */
1841
#define DAC_CR_DMAUDRIE2_Pos                (29U)                              
50 mjames 1842
#define DAC_CR_DMAUDRIE2_Msk                (0x1UL << DAC_CR_DMAUDRIE2_Pos)     /*!< 0x20000000 */
30 mjames 1843
#define DAC_CR_DMAUDRIE2                    DAC_CR_DMAUDRIE2_Msk               /*!<DAC channel2 DMA underrun interrupt enable */
1844
/*****************  Bit definition for DAC_SWTRIGR register  ******************/
1845
#define DAC_SWTRIGR_SWTRIG1_Pos             (0U)                               
50 mjames 1846
#define DAC_SWTRIGR_SWTRIG1_Msk             (0x1UL << DAC_SWTRIGR_SWTRIG1_Pos)  /*!< 0x00000001 */
30 mjames 1847
#define DAC_SWTRIGR_SWTRIG1                 DAC_SWTRIGR_SWTRIG1_Msk            /*!<DAC channel1 software trigger */
1848
#define DAC_SWTRIGR_SWTRIG2_Pos             (1U)                               
50 mjames 1849
#define DAC_SWTRIGR_SWTRIG2_Msk             (0x1UL << DAC_SWTRIGR_SWTRIG2_Pos)  /*!< 0x00000002 */
30 mjames 1850
#define DAC_SWTRIGR_SWTRIG2                 DAC_SWTRIGR_SWTRIG2_Msk            /*!<DAC channel2 software trigger */
1851
 
1852
/*****************  Bit definition for DAC_DHR12R1 register  ******************/
1853
#define DAC_DHR12R1_DACC1DHR_Pos            (0U)                               
50 mjames 1854
#define DAC_DHR12R1_DACC1DHR_Msk            (0xFFFUL << DAC_DHR12R1_DACC1DHR_Pos) /*!< 0x00000FFF */
30 mjames 1855
#define DAC_DHR12R1_DACC1DHR                DAC_DHR12R1_DACC1DHR_Msk           /*!<DAC channel1 12-bit Right aligned data */
1856
 
1857
/*****************  Bit definition for DAC_DHR12L1 register  ******************/
1858
#define DAC_DHR12L1_DACC1DHR_Pos            (4U)                               
50 mjames 1859
#define DAC_DHR12L1_DACC1DHR_Msk            (0xFFFUL << DAC_DHR12L1_DACC1DHR_Pos) /*!< 0x0000FFF0 */
30 mjames 1860
#define DAC_DHR12L1_DACC1DHR                DAC_DHR12L1_DACC1DHR_Msk           /*!<DAC channel1 12-bit Left aligned data */
1861
 
1862
/******************  Bit definition for DAC_DHR8R1 register  ******************/
1863
#define DAC_DHR8R1_DACC1DHR_Pos             (0U)                               
50 mjames 1864
#define DAC_DHR8R1_DACC1DHR_Msk             (0xFFUL << DAC_DHR8R1_DACC1DHR_Pos) /*!< 0x000000FF */
30 mjames 1865
#define DAC_DHR8R1_DACC1DHR                 DAC_DHR8R1_DACC1DHR_Msk            /*!<DAC channel1 8-bit Right aligned data */
1866
 
1867
/*****************  Bit definition for DAC_DHR12R2 register  ******************/
1868
#define DAC_DHR12R2_DACC2DHR_Pos            (0U)                               
50 mjames 1869
#define DAC_DHR12R2_DACC2DHR_Msk            (0xFFFUL << DAC_DHR12R2_DACC2DHR_Pos) /*!< 0x00000FFF */
30 mjames 1870
#define DAC_DHR12R2_DACC2DHR                DAC_DHR12R2_DACC2DHR_Msk           /*!<DAC channel2 12-bit Right aligned data */
1871
 
1872
/*****************  Bit definition for DAC_DHR12L2 register  ******************/
1873
#define DAC_DHR12L2_DACC2DHR_Pos            (4U)                               
50 mjames 1874
#define DAC_DHR12L2_DACC2DHR_Msk            (0xFFFUL << DAC_DHR12L2_DACC2DHR_Pos) /*!< 0x0000FFF0 */
30 mjames 1875
#define DAC_DHR12L2_DACC2DHR                DAC_DHR12L2_DACC2DHR_Msk           /*!<DAC channel2 12-bit Left aligned data */
1876
 
1877
/******************  Bit definition for DAC_DHR8R2 register  ******************/
1878
#define DAC_DHR8R2_DACC2DHR_Pos             (0U)                               
50 mjames 1879
#define DAC_DHR8R2_DACC2DHR_Msk             (0xFFUL << DAC_DHR8R2_DACC2DHR_Pos) /*!< 0x000000FF */
30 mjames 1880
#define DAC_DHR8R2_DACC2DHR                 DAC_DHR8R2_DACC2DHR_Msk            /*!<DAC channel2 8-bit Right aligned data */
1881
 
1882
/*****************  Bit definition for DAC_DHR12RD register  ******************/
1883
#define DAC_DHR12RD_DACC1DHR_Pos            (0U)                               
50 mjames 1884
#define DAC_DHR12RD_DACC1DHR_Msk            (0xFFFUL << DAC_DHR12RD_DACC1DHR_Pos) /*!< 0x00000FFF */
30 mjames 1885
#define DAC_DHR12RD_DACC1DHR                DAC_DHR12RD_DACC1DHR_Msk           /*!<DAC channel1 12-bit Right aligned data */
1886
#define DAC_DHR12RD_DACC2DHR_Pos            (16U)                              
50 mjames 1887
#define DAC_DHR12RD_DACC2DHR_Msk            (0xFFFUL << DAC_DHR12RD_DACC2DHR_Pos) /*!< 0x0FFF0000 */
30 mjames 1888
#define DAC_DHR12RD_DACC2DHR                DAC_DHR12RD_DACC2DHR_Msk           /*!<DAC channel2 12-bit Right aligned data */
1889
 
1890
/*****************  Bit definition for DAC_DHR12LD register  ******************/
1891
#define DAC_DHR12LD_DACC1DHR_Pos            (4U)                               
50 mjames 1892
#define DAC_DHR12LD_DACC1DHR_Msk            (0xFFFUL << DAC_DHR12LD_DACC1DHR_Pos) /*!< 0x0000FFF0 */
30 mjames 1893
#define DAC_DHR12LD_DACC1DHR                DAC_DHR12LD_DACC1DHR_Msk           /*!<DAC channel1 12-bit Left aligned data */
1894
#define DAC_DHR12LD_DACC2DHR_Pos            (20U)                              
50 mjames 1895
#define DAC_DHR12LD_DACC2DHR_Msk            (0xFFFUL << DAC_DHR12LD_DACC2DHR_Pos) /*!< 0xFFF00000 */
30 mjames 1896
#define DAC_DHR12LD_DACC2DHR                DAC_DHR12LD_DACC2DHR_Msk           /*!<DAC channel2 12-bit Left aligned data */
1897
 
1898
/******************  Bit definition for DAC_DHR8RD register  ******************/
1899
#define DAC_DHR8RD_DACC1DHR_Pos             (0U)                               
50 mjames 1900
#define DAC_DHR8RD_DACC1DHR_Msk             (0xFFUL << DAC_DHR8RD_DACC1DHR_Pos) /*!< 0x000000FF */
30 mjames 1901
#define DAC_DHR8RD_DACC1DHR                 DAC_DHR8RD_DACC1DHR_Msk            /*!<DAC channel1 8-bit Right aligned data */
1902
#define DAC_DHR8RD_DACC2DHR_Pos             (8U)                               
50 mjames 1903
#define DAC_DHR8RD_DACC2DHR_Msk             (0xFFUL << DAC_DHR8RD_DACC2DHR_Pos) /*!< 0x0000FF00 */
30 mjames 1904
#define DAC_DHR8RD_DACC2DHR                 DAC_DHR8RD_DACC2DHR_Msk            /*!<DAC channel2 8-bit Right aligned data */
1905
 
1906
/*******************  Bit definition for DAC_DOR1 register  *******************/
1907
#define DAC_DOR1_DACC1DOR_Pos               (0U)                               
50 mjames 1908
#define DAC_DOR1_DACC1DOR_Msk               (0xFFFUL << DAC_DOR1_DACC1DOR_Pos)  /*!< 0x00000FFF */
30 mjames 1909
#define DAC_DOR1_DACC1DOR                   DAC_DOR1_DACC1DOR_Msk              /*!<DAC channel1 data output */
1910
 
1911
/*******************  Bit definition for DAC_DOR2 register  *******************/
1912
#define DAC_DOR2_DACC2DOR_Pos               (0U)                               
50 mjames 1913
#define DAC_DOR2_DACC2DOR_Msk               (0xFFFUL << DAC_DOR2_DACC2DOR_Pos)  /*!< 0x00000FFF */
30 mjames 1914
#define DAC_DOR2_DACC2DOR                   DAC_DOR2_DACC2DOR_Msk              /*!<DAC channel2 data output */
1915
 
1916
/********************  Bit definition for DAC_SR register  ********************/
1917
#define DAC_SR_DMAUDR1_Pos                  (13U)                              
50 mjames 1918
#define DAC_SR_DMAUDR1_Msk                  (0x1UL << DAC_SR_DMAUDR1_Pos)       /*!< 0x00002000 */
30 mjames 1919
#define DAC_SR_DMAUDR1                      DAC_SR_DMAUDR1_Msk                 /*!<DAC channel1 DMA underrun flag */
1920
#define DAC_SR_DMAUDR2_Pos                  (29U)                              
50 mjames 1921
#define DAC_SR_DMAUDR2_Msk                  (0x1UL << DAC_SR_DMAUDR2_Pos)       /*!< 0x20000000 */
30 mjames 1922
#define DAC_SR_DMAUDR2                      DAC_SR_DMAUDR2_Msk                 /*!<DAC channel2 DMA underrun flag */
1923
 
1924
/******************************************************************************/
1925
/*                                                                            */
1926
/*                           Debug MCU (DBGMCU)                               */
1927
/*                                                                            */
1928
/******************************************************************************/
1929
 
1930
/****************  Bit definition for DBGMCU_IDCODE register  *****************/
1931
#define DBGMCU_IDCODE_DEV_ID_Pos                 (0U)                          
50 mjames 1932
#define DBGMCU_IDCODE_DEV_ID_Msk                 (0xFFFUL << DBGMCU_IDCODE_DEV_ID_Pos) /*!< 0x00000FFF */
30 mjames 1933
#define DBGMCU_IDCODE_DEV_ID                     DBGMCU_IDCODE_DEV_ID_Msk      /*!< Device Identifier */
1934
 
1935
#define DBGMCU_IDCODE_REV_ID_Pos                 (16U)                         
50 mjames 1936
#define DBGMCU_IDCODE_REV_ID_Msk                 (0xFFFFUL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0xFFFF0000 */
30 mjames 1937
#define DBGMCU_IDCODE_REV_ID                     DBGMCU_IDCODE_REV_ID_Msk      /*!< REV_ID[15:0] bits (Revision Identifier) */
50 mjames 1938
#define DBGMCU_IDCODE_REV_ID_0                   (0x0001UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00010000 */
1939
#define DBGMCU_IDCODE_REV_ID_1                   (0x0002UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00020000 */
1940
#define DBGMCU_IDCODE_REV_ID_2                   (0x0004UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00040000 */
1941
#define DBGMCU_IDCODE_REV_ID_3                   (0x0008UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00080000 */
1942
#define DBGMCU_IDCODE_REV_ID_4                   (0x0010UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00100000 */
1943
#define DBGMCU_IDCODE_REV_ID_5                   (0x0020UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00200000 */
1944
#define DBGMCU_IDCODE_REV_ID_6                   (0x0040UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00400000 */
1945
#define DBGMCU_IDCODE_REV_ID_7                   (0x0080UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00800000 */
1946
#define DBGMCU_IDCODE_REV_ID_8                   (0x0100UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x01000000 */
1947
#define DBGMCU_IDCODE_REV_ID_9                   (0x0200UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x02000000 */
1948
#define DBGMCU_IDCODE_REV_ID_10                  (0x0400UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x04000000 */
1949
#define DBGMCU_IDCODE_REV_ID_11                  (0x0800UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x08000000 */
1950
#define DBGMCU_IDCODE_REV_ID_12                  (0x1000UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x10000000 */
1951
#define DBGMCU_IDCODE_REV_ID_13                  (0x2000UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x20000000 */
1952
#define DBGMCU_IDCODE_REV_ID_14                  (0x4000UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x40000000 */
1953
#define DBGMCU_IDCODE_REV_ID_15                  (0x8000UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x80000000 */
30 mjames 1954
 
1955
/******************  Bit definition for DBGMCU_CR register  *******************/
1956
#define DBGMCU_CR_DBG_SLEEP_Pos                  (0U)                          
50 mjames 1957
#define DBGMCU_CR_DBG_SLEEP_Msk                  (0x1UL << DBGMCU_CR_DBG_SLEEP_Pos) /*!< 0x00000001 */
30 mjames 1958
#define DBGMCU_CR_DBG_SLEEP                      DBGMCU_CR_DBG_SLEEP_Msk       /*!< Debug Sleep Mode */
1959
#define DBGMCU_CR_DBG_STOP_Pos                   (1U)                          
50 mjames 1960
#define DBGMCU_CR_DBG_STOP_Msk                   (0x1UL << DBGMCU_CR_DBG_STOP_Pos) /*!< 0x00000002 */
30 mjames 1961
#define DBGMCU_CR_DBG_STOP                       DBGMCU_CR_DBG_STOP_Msk        /*!< Debug Stop Mode */
1962
#define DBGMCU_CR_DBG_STANDBY_Pos                (2U)                          
50 mjames 1963
#define DBGMCU_CR_DBG_STANDBY_Msk                (0x1UL << DBGMCU_CR_DBG_STANDBY_Pos) /*!< 0x00000004 */
30 mjames 1964
#define DBGMCU_CR_DBG_STANDBY                    DBGMCU_CR_DBG_STANDBY_Msk     /*!< Debug Standby mode */
1965
#define DBGMCU_CR_TRACE_IOEN_Pos                 (5U)                          
50 mjames 1966
#define DBGMCU_CR_TRACE_IOEN_Msk                 (0x1UL << DBGMCU_CR_TRACE_IOEN_Pos) /*!< 0x00000020 */
30 mjames 1967
#define DBGMCU_CR_TRACE_IOEN                     DBGMCU_CR_TRACE_IOEN_Msk      /*!< Trace Pin Assignment Control */
1968
 
1969
#define DBGMCU_CR_TRACE_MODE_Pos                 (6U)                          
50 mjames 1970
#define DBGMCU_CR_TRACE_MODE_Msk                 (0x3UL << DBGMCU_CR_TRACE_MODE_Pos) /*!< 0x000000C0 */
30 mjames 1971
#define DBGMCU_CR_TRACE_MODE                     DBGMCU_CR_TRACE_MODE_Msk      /*!< TRACE_MODE[1:0] bits (Trace Pin Assignment Control) */
50 mjames 1972
#define DBGMCU_CR_TRACE_MODE_0                   (0x1UL << DBGMCU_CR_TRACE_MODE_Pos) /*!< 0x00000040 */
1973
#define DBGMCU_CR_TRACE_MODE_1                   (0x2UL << DBGMCU_CR_TRACE_MODE_Pos) /*!< 0x00000080 */
30 mjames 1974
 
1975
/******************  Bit definition for DBGMCU_APB1_FZ register  **************/
1976
 
1977
#define DBGMCU_APB1_FZ_DBG_TIM2_STOP_Pos         (0U)                          
50 mjames 1978
#define DBGMCU_APB1_FZ_DBG_TIM2_STOP_Msk         (0x1UL << DBGMCU_APB1_FZ_DBG_TIM2_STOP_Pos) /*!< 0x00000001 */
30 mjames 1979
#define DBGMCU_APB1_FZ_DBG_TIM2_STOP             DBGMCU_APB1_FZ_DBG_TIM2_STOP_Msk /*!< TIM2 counter stopped when core is halted */
1980
#define DBGMCU_APB1_FZ_DBG_TIM3_STOP_Pos         (1U)                          
50 mjames 1981
#define DBGMCU_APB1_FZ_DBG_TIM3_STOP_Msk         (0x1UL << DBGMCU_APB1_FZ_DBG_TIM3_STOP_Pos) /*!< 0x00000002 */
30 mjames 1982
#define DBGMCU_APB1_FZ_DBG_TIM3_STOP             DBGMCU_APB1_FZ_DBG_TIM3_STOP_Msk /*!< TIM3 counter stopped when core is halted */
1983
#define DBGMCU_APB1_FZ_DBG_TIM4_STOP_Pos         (2U)                          
50 mjames 1984
#define DBGMCU_APB1_FZ_DBG_TIM4_STOP_Msk         (0x1UL << DBGMCU_APB1_FZ_DBG_TIM4_STOP_Pos) /*!< 0x00000004 */
30 mjames 1985
#define DBGMCU_APB1_FZ_DBG_TIM4_STOP             DBGMCU_APB1_FZ_DBG_TIM4_STOP_Msk /*!< TIM4 counter stopped when core is halted */
1986
#define DBGMCU_APB1_FZ_DBG_TIM5_STOP_Pos         (3U)                          
50 mjames 1987
#define DBGMCU_APB1_FZ_DBG_TIM5_STOP_Msk         (0x1UL << DBGMCU_APB1_FZ_DBG_TIM5_STOP_Pos) /*!< 0x00000008 */
30 mjames 1988
#define DBGMCU_APB1_FZ_DBG_TIM5_STOP             DBGMCU_APB1_FZ_DBG_TIM5_STOP_Msk /*!< TIM5 counter stopped when core is halted */
1989
#define DBGMCU_APB1_FZ_DBG_TIM6_STOP_Pos         (4U)                          
50 mjames 1990
#define DBGMCU_APB1_FZ_DBG_TIM6_STOP_Msk         (0x1UL << DBGMCU_APB1_FZ_DBG_TIM6_STOP_Pos) /*!< 0x00000010 */
30 mjames 1991
#define DBGMCU_APB1_FZ_DBG_TIM6_STOP             DBGMCU_APB1_FZ_DBG_TIM6_STOP_Msk /*!< TIM6 counter stopped when core is halted */
1992
#define DBGMCU_APB1_FZ_DBG_TIM7_STOP_Pos         (5U)                          
50 mjames 1993
#define DBGMCU_APB1_FZ_DBG_TIM7_STOP_Msk         (0x1UL << DBGMCU_APB1_FZ_DBG_TIM7_STOP_Pos) /*!< 0x00000020 */
30 mjames 1994
#define DBGMCU_APB1_FZ_DBG_TIM7_STOP             DBGMCU_APB1_FZ_DBG_TIM7_STOP_Msk /*!< TIM7 counter stopped when core is halted */
1995
#define DBGMCU_APB1_FZ_DBG_RTC_STOP_Pos          (10U)                         
50 mjames 1996
#define DBGMCU_APB1_FZ_DBG_RTC_STOP_Msk          (0x1UL << DBGMCU_APB1_FZ_DBG_RTC_STOP_Pos) /*!< 0x00000400 */
30 mjames 1997
#define DBGMCU_APB1_FZ_DBG_RTC_STOP              DBGMCU_APB1_FZ_DBG_RTC_STOP_Msk /*!< RTC Counter stopped when Core is halted */
1998
#define DBGMCU_APB1_FZ_DBG_WWDG_STOP_Pos         (11U)                         
50 mjames 1999
#define DBGMCU_APB1_FZ_DBG_WWDG_STOP_Msk         (0x1UL << DBGMCU_APB1_FZ_DBG_WWDG_STOP_Pos) /*!< 0x00000800 */
30 mjames 2000
#define DBGMCU_APB1_FZ_DBG_WWDG_STOP             DBGMCU_APB1_FZ_DBG_WWDG_STOP_Msk /*!< Debug Window Watchdog stopped when Core is halted */
2001
#define DBGMCU_APB1_FZ_DBG_IWDG_STOP_Pos         (12U)                         
50 mjames 2002
#define DBGMCU_APB1_FZ_DBG_IWDG_STOP_Msk         (0x1UL << DBGMCU_APB1_FZ_DBG_IWDG_STOP_Pos) /*!< 0x00001000 */
30 mjames 2003
#define DBGMCU_APB1_FZ_DBG_IWDG_STOP             DBGMCU_APB1_FZ_DBG_IWDG_STOP_Msk /*!< Debug Independent Watchdog stopped when Core is halted */
2004
#define DBGMCU_APB1_FZ_DBG_I2C1_SMBUS_TIMEOUT_Pos (21U)                        
50 mjames 2005
#define DBGMCU_APB1_FZ_DBG_I2C1_SMBUS_TIMEOUT_Msk (0x1UL << DBGMCU_APB1_FZ_DBG_I2C1_SMBUS_TIMEOUT_Pos) /*!< 0x00200000 */
30 mjames 2006
#define DBGMCU_APB1_FZ_DBG_I2C1_SMBUS_TIMEOUT    DBGMCU_APB1_FZ_DBG_I2C1_SMBUS_TIMEOUT_Msk /*!< SMBUS timeout mode stopped when Core is halted */
2007
#define DBGMCU_APB1_FZ_DBG_I2C2_SMBUS_TIMEOUT_Pos (22U)                        
50 mjames 2008
#define DBGMCU_APB1_FZ_DBG_I2C2_SMBUS_TIMEOUT_Msk (0x1UL << DBGMCU_APB1_FZ_DBG_I2C2_SMBUS_TIMEOUT_Pos) /*!< 0x00400000 */
30 mjames 2009
#define DBGMCU_APB1_FZ_DBG_I2C2_SMBUS_TIMEOUT    DBGMCU_APB1_FZ_DBG_I2C2_SMBUS_TIMEOUT_Msk /*!< SMBUS timeout mode stopped when Core is halted */
2010
 
2011
/******************  Bit definition for DBGMCU_APB2_FZ register  **************/
2012
 
2013
#define DBGMCU_APB2_FZ_DBG_TIM9_STOP_Pos         (2U)                          
50 mjames 2014
#define DBGMCU_APB2_FZ_DBG_TIM9_STOP_Msk         (0x1UL << DBGMCU_APB2_FZ_DBG_TIM9_STOP_Pos) /*!< 0x00000004 */
30 mjames 2015
#define DBGMCU_APB2_FZ_DBG_TIM9_STOP             DBGMCU_APB2_FZ_DBG_TIM9_STOP_Msk /*!< TIM9 counter stopped when core is halted */
2016
#define DBGMCU_APB2_FZ_DBG_TIM10_STOP_Pos        (3U)                          
50 mjames 2017
#define DBGMCU_APB2_FZ_DBG_TIM10_STOP_Msk        (0x1UL << DBGMCU_APB2_FZ_DBG_TIM10_STOP_Pos) /*!< 0x00000008 */
30 mjames 2018
#define DBGMCU_APB2_FZ_DBG_TIM10_STOP            DBGMCU_APB2_FZ_DBG_TIM10_STOP_Msk /*!< TIM10 counter stopped when core is halted */
2019
#define DBGMCU_APB2_FZ_DBG_TIM11_STOP_Pos        (4U)                          
50 mjames 2020
#define DBGMCU_APB2_FZ_DBG_TIM11_STOP_Msk        (0x1UL << DBGMCU_APB2_FZ_DBG_TIM11_STOP_Pos) /*!< 0x00000010 */
30 mjames 2021
#define DBGMCU_APB2_FZ_DBG_TIM11_STOP            DBGMCU_APB2_FZ_DBG_TIM11_STOP_Msk /*!< TIM11 counter stopped when core is halted */
2022
 
2023
/******************************************************************************/
2024
/*                                                                            */
2025
/*                           DMA Controller (DMA)                             */
2026
/*                                                                            */
2027
/******************************************************************************/
2028
 
2029
/*******************  Bit definition for DMA_ISR register  ********************/
2030
#define DMA_ISR_GIF1_Pos                    (0U)                               
50 mjames 2031
#define DMA_ISR_GIF1_Msk                    (0x1UL << DMA_ISR_GIF1_Pos)         /*!< 0x00000001 */
30 mjames 2032
#define DMA_ISR_GIF1                        DMA_ISR_GIF1_Msk                   /*!< Channel 1 Global interrupt flag */
2033
#define DMA_ISR_TCIF1_Pos                   (1U)                               
50 mjames 2034
#define DMA_ISR_TCIF1_Msk                   (0x1UL << DMA_ISR_TCIF1_Pos)        /*!< 0x00000002 */
30 mjames 2035
#define DMA_ISR_TCIF1                       DMA_ISR_TCIF1_Msk                  /*!< Channel 1 Transfer Complete flag */
2036
#define DMA_ISR_HTIF1_Pos                   (2U)                               
50 mjames 2037
#define DMA_ISR_HTIF1_Msk                   (0x1UL << DMA_ISR_HTIF1_Pos)        /*!< 0x00000004 */
30 mjames 2038
#define DMA_ISR_HTIF1                       DMA_ISR_HTIF1_Msk                  /*!< Channel 1 Half Transfer flag */
2039
#define DMA_ISR_TEIF1_Pos                   (3U)                               
50 mjames 2040
#define DMA_ISR_TEIF1_Msk                   (0x1UL << DMA_ISR_TEIF1_Pos)        /*!< 0x00000008 */
30 mjames 2041
#define DMA_ISR_TEIF1                       DMA_ISR_TEIF1_Msk                  /*!< Channel 1 Transfer Error flag */
2042
#define DMA_ISR_GIF2_Pos                    (4U)                               
50 mjames 2043
#define DMA_ISR_GIF2_Msk                    (0x1UL << DMA_ISR_GIF2_Pos)         /*!< 0x00000010 */
30 mjames 2044
#define DMA_ISR_GIF2                        DMA_ISR_GIF2_Msk                   /*!< Channel 2 Global interrupt flag */
2045
#define DMA_ISR_TCIF2_Pos                   (5U)                               
50 mjames 2046
#define DMA_ISR_TCIF2_Msk                   (0x1UL << DMA_ISR_TCIF2_Pos)        /*!< 0x00000020 */
30 mjames 2047
#define DMA_ISR_TCIF2                       DMA_ISR_TCIF2_Msk                  /*!< Channel 2 Transfer Complete flag */
2048
#define DMA_ISR_HTIF2_Pos                   (6U)                               
50 mjames 2049
#define DMA_ISR_HTIF2_Msk                   (0x1UL << DMA_ISR_HTIF2_Pos)        /*!< 0x00000040 */
30 mjames 2050
#define DMA_ISR_HTIF2                       DMA_ISR_HTIF2_Msk                  /*!< Channel 2 Half Transfer flag */
2051
#define DMA_ISR_TEIF2_Pos                   (7U)                               
50 mjames 2052
#define DMA_ISR_TEIF2_Msk                   (0x1UL << DMA_ISR_TEIF2_Pos)        /*!< 0x00000080 */
30 mjames 2053
#define DMA_ISR_TEIF2                       DMA_ISR_TEIF2_Msk                  /*!< Channel 2 Transfer Error flag */
2054
#define DMA_ISR_GIF3_Pos                    (8U)                               
50 mjames 2055
#define DMA_ISR_GIF3_Msk                    (0x1UL << DMA_ISR_GIF3_Pos)         /*!< 0x00000100 */
30 mjames 2056
#define DMA_ISR_GIF3                        DMA_ISR_GIF3_Msk                   /*!< Channel 3 Global interrupt flag */
2057
#define DMA_ISR_TCIF3_Pos                   (9U)                               
50 mjames 2058
#define DMA_ISR_TCIF3_Msk                   (0x1UL << DMA_ISR_TCIF3_Pos)        /*!< 0x00000200 */
30 mjames 2059
#define DMA_ISR_TCIF3                       DMA_ISR_TCIF3_Msk                  /*!< Channel 3 Transfer Complete flag */
2060
#define DMA_ISR_HTIF3_Pos                   (10U)                              
50 mjames 2061
#define DMA_ISR_HTIF3_Msk                   (0x1UL << DMA_ISR_HTIF3_Pos)        /*!< 0x00000400 */
30 mjames 2062
#define DMA_ISR_HTIF3                       DMA_ISR_HTIF3_Msk                  /*!< Channel 3 Half Transfer flag */
2063
#define DMA_ISR_TEIF3_Pos                   (11U)                              
50 mjames 2064
#define DMA_ISR_TEIF3_Msk                   (0x1UL << DMA_ISR_TEIF3_Pos)        /*!< 0x00000800 */
30 mjames 2065
#define DMA_ISR_TEIF3                       DMA_ISR_TEIF3_Msk                  /*!< Channel 3 Transfer Error flag */
2066
#define DMA_ISR_GIF4_Pos                    (12U)                              
50 mjames 2067
#define DMA_ISR_GIF4_Msk                    (0x1UL << DMA_ISR_GIF4_Pos)         /*!< 0x00001000 */
30 mjames 2068
#define DMA_ISR_GIF4                        DMA_ISR_GIF4_Msk                   /*!< Channel 4 Global interrupt flag */
2069
#define DMA_ISR_TCIF4_Pos                   (13U)                              
50 mjames 2070
#define DMA_ISR_TCIF4_Msk                   (0x1UL << DMA_ISR_TCIF4_Pos)        /*!< 0x00002000 */
30 mjames 2071
#define DMA_ISR_TCIF4                       DMA_ISR_TCIF4_Msk                  /*!< Channel 4 Transfer Complete flag */
2072
#define DMA_ISR_HTIF4_Pos                   (14U)                              
50 mjames 2073
#define DMA_ISR_HTIF4_Msk                   (0x1UL << DMA_ISR_HTIF4_Pos)        /*!< 0x00004000 */
30 mjames 2074
#define DMA_ISR_HTIF4                       DMA_ISR_HTIF4_Msk                  /*!< Channel 4 Half Transfer flag */
2075
#define DMA_ISR_TEIF4_Pos                   (15U)                              
50 mjames 2076
#define DMA_ISR_TEIF4_Msk                   (0x1UL << DMA_ISR_TEIF4_Pos)        /*!< 0x00008000 */
30 mjames 2077
#define DMA_ISR_TEIF4                       DMA_ISR_TEIF4_Msk                  /*!< Channel 4 Transfer Error flag */
2078
#define DMA_ISR_GIF5_Pos                    (16U)                              
50 mjames 2079
#define DMA_ISR_GIF5_Msk                    (0x1UL << DMA_ISR_GIF5_Pos)         /*!< 0x00010000 */
30 mjames 2080
#define DMA_ISR_GIF5                        DMA_ISR_GIF5_Msk                   /*!< Channel 5 Global interrupt flag */
2081
#define DMA_ISR_TCIF5_Pos                   (17U)                              
50 mjames 2082
#define DMA_ISR_TCIF5_Msk                   (0x1UL << DMA_ISR_TCIF5_Pos)        /*!< 0x00020000 */
30 mjames 2083
#define DMA_ISR_TCIF5                       DMA_ISR_TCIF5_Msk                  /*!< Channel 5 Transfer Complete flag */
2084
#define DMA_ISR_HTIF5_Pos                   (18U)                              
50 mjames 2085
#define DMA_ISR_HTIF5_Msk                   (0x1UL << DMA_ISR_HTIF5_Pos)        /*!< 0x00040000 */
30 mjames 2086
#define DMA_ISR_HTIF5                       DMA_ISR_HTIF5_Msk                  /*!< Channel 5 Half Transfer flag */
2087
#define DMA_ISR_TEIF5_Pos                   (19U)                              
50 mjames 2088
#define DMA_ISR_TEIF5_Msk                   (0x1UL << DMA_ISR_TEIF5_Pos)        /*!< 0x00080000 */
30 mjames 2089
#define DMA_ISR_TEIF5                       DMA_ISR_TEIF5_Msk                  /*!< Channel 5 Transfer Error flag */
2090
#define DMA_ISR_GIF6_Pos                    (20U)                              
50 mjames 2091
#define DMA_ISR_GIF6_Msk                    (0x1UL << DMA_ISR_GIF6_Pos)         /*!< 0x00100000 */
30 mjames 2092
#define DMA_ISR_GIF6                        DMA_ISR_GIF6_Msk                   /*!< Channel 6 Global interrupt flag */
2093
#define DMA_ISR_TCIF6_Pos                   (21U)                              
50 mjames 2094
#define DMA_ISR_TCIF6_Msk                   (0x1UL << DMA_ISR_TCIF6_Pos)        /*!< 0x00200000 */
30 mjames 2095
#define DMA_ISR_TCIF6                       DMA_ISR_TCIF6_Msk                  /*!< Channel 6 Transfer Complete flag */
2096
#define DMA_ISR_HTIF6_Pos                   (22U)                              
50 mjames 2097
#define DMA_ISR_HTIF6_Msk                   (0x1UL << DMA_ISR_HTIF6_Pos)        /*!< 0x00400000 */
30 mjames 2098
#define DMA_ISR_HTIF6                       DMA_ISR_HTIF6_Msk                  /*!< Channel 6 Half Transfer flag */
2099
#define DMA_ISR_TEIF6_Pos                   (23U)                              
50 mjames 2100
#define DMA_ISR_TEIF6_Msk                   (0x1UL << DMA_ISR_TEIF6_Pos)        /*!< 0x00800000 */
30 mjames 2101
#define DMA_ISR_TEIF6                       DMA_ISR_TEIF6_Msk                  /*!< Channel 6 Transfer Error flag */
2102
#define DMA_ISR_GIF7_Pos                    (24U)                              
50 mjames 2103
#define DMA_ISR_GIF7_Msk                    (0x1UL << DMA_ISR_GIF7_Pos)         /*!< 0x01000000 */
30 mjames 2104
#define DMA_ISR_GIF7                        DMA_ISR_GIF7_Msk                   /*!< Channel 7 Global interrupt flag */
2105
#define DMA_ISR_TCIF7_Pos                   (25U)                              
50 mjames 2106
#define DMA_ISR_TCIF7_Msk                   (0x1UL << DMA_ISR_TCIF7_Pos)        /*!< 0x02000000 */
30 mjames 2107
#define DMA_ISR_TCIF7                       DMA_ISR_TCIF7_Msk                  /*!< Channel 7 Transfer Complete flag */
2108
#define DMA_ISR_HTIF7_Pos                   (26U)                              
50 mjames 2109
#define DMA_ISR_HTIF7_Msk                   (0x1UL << DMA_ISR_HTIF7_Pos)        /*!< 0x04000000 */
30 mjames 2110
#define DMA_ISR_HTIF7                       DMA_ISR_HTIF7_Msk                  /*!< Channel 7 Half Transfer flag */
2111
#define DMA_ISR_TEIF7_Pos                   (27U)                              
50 mjames 2112
#define DMA_ISR_TEIF7_Msk                   (0x1UL << DMA_ISR_TEIF7_Pos)        /*!< 0x08000000 */
30 mjames 2113
#define DMA_ISR_TEIF7                       DMA_ISR_TEIF7_Msk                  /*!< Channel 7 Transfer Error flag */
2114
 
2115
/*******************  Bit definition for DMA_IFCR register  *******************/
2116
#define DMA_IFCR_CGIF1_Pos                  (0U)                               
50 mjames 2117
#define DMA_IFCR_CGIF1_Msk                  (0x1UL << DMA_IFCR_CGIF1_Pos)       /*!< 0x00000001 */
30 mjames 2118
#define DMA_IFCR_CGIF1                      DMA_IFCR_CGIF1_Msk                 /*!< Channel 1 Global interrupt clear */
2119
#define DMA_IFCR_CTCIF1_Pos                 (1U)                               
50 mjames 2120
#define DMA_IFCR_CTCIF1_Msk                 (0x1UL << DMA_IFCR_CTCIF1_Pos)      /*!< 0x00000002 */
30 mjames 2121
#define DMA_IFCR_CTCIF1                     DMA_IFCR_CTCIF1_Msk                /*!< Channel 1 Transfer Complete clear */
2122
#define DMA_IFCR_CHTIF1_Pos                 (2U)                               
50 mjames 2123
#define DMA_IFCR_CHTIF1_Msk                 (0x1UL << DMA_IFCR_CHTIF1_Pos)      /*!< 0x00000004 */
30 mjames 2124
#define DMA_IFCR_CHTIF1                     DMA_IFCR_CHTIF1_Msk                /*!< Channel 1 Half Transfer clear */
2125
#define DMA_IFCR_CTEIF1_Pos                 (3U)                               
50 mjames 2126
#define DMA_IFCR_CTEIF1_Msk                 (0x1UL << DMA_IFCR_CTEIF1_Pos)      /*!< 0x00000008 */
30 mjames 2127
#define DMA_IFCR_CTEIF1                     DMA_IFCR_CTEIF1_Msk                /*!< Channel 1 Transfer Error clear */
2128
#define DMA_IFCR_CGIF2_Pos                  (4U)                               
50 mjames 2129
#define DMA_IFCR_CGIF2_Msk                  (0x1UL << DMA_IFCR_CGIF2_Pos)       /*!< 0x00000010 */
30 mjames 2130
#define DMA_IFCR_CGIF2                      DMA_IFCR_CGIF2_Msk                 /*!< Channel 2 Global interrupt clear */
2131
#define DMA_IFCR_CTCIF2_Pos                 (5U)                               
50 mjames 2132
#define DMA_IFCR_CTCIF2_Msk                 (0x1UL << DMA_IFCR_CTCIF2_Pos)      /*!< 0x00000020 */
30 mjames 2133
#define DMA_IFCR_CTCIF2                     DMA_IFCR_CTCIF2_Msk                /*!< Channel 2 Transfer Complete clear */
2134
#define DMA_IFCR_CHTIF2_Pos                 (6U)                               
50 mjames 2135
#define DMA_IFCR_CHTIF2_Msk                 (0x1UL << DMA_IFCR_CHTIF2_Pos)      /*!< 0x00000040 */
30 mjames 2136
#define DMA_IFCR_CHTIF2                     DMA_IFCR_CHTIF2_Msk                /*!< Channel 2 Half Transfer clear */
2137
#define DMA_IFCR_CTEIF2_Pos                 (7U)                               
50 mjames 2138
#define DMA_IFCR_CTEIF2_Msk                 (0x1UL << DMA_IFCR_CTEIF2_Pos)      /*!< 0x00000080 */
30 mjames 2139
#define DMA_IFCR_CTEIF2                     DMA_IFCR_CTEIF2_Msk                /*!< Channel 2 Transfer Error clear */
2140
#define DMA_IFCR_CGIF3_Pos                  (8U)                               
50 mjames 2141
#define DMA_IFCR_CGIF3_Msk                  (0x1UL << DMA_IFCR_CGIF3_Pos)       /*!< 0x00000100 */
30 mjames 2142
#define DMA_IFCR_CGIF3                      DMA_IFCR_CGIF3_Msk                 /*!< Channel 3 Global interrupt clear */
2143
#define DMA_IFCR_CTCIF3_Pos                 (9U)                               
50 mjames 2144
#define DMA_IFCR_CTCIF3_Msk                 (0x1UL << DMA_IFCR_CTCIF3_Pos)      /*!< 0x00000200 */
30 mjames 2145
#define DMA_IFCR_CTCIF3                     DMA_IFCR_CTCIF3_Msk                /*!< Channel 3 Transfer Complete clear */
2146
#define DMA_IFCR_CHTIF3_Pos                 (10U)                              
50 mjames 2147
#define DMA_IFCR_CHTIF3_Msk                 (0x1UL << DMA_IFCR_CHTIF3_Pos)      /*!< 0x00000400 */
30 mjames 2148
#define DMA_IFCR_CHTIF3                     DMA_IFCR_CHTIF3_Msk                /*!< Channel 3 Half Transfer clear */
2149
#define DMA_IFCR_CTEIF3_Pos                 (11U)                              
50 mjames 2150
#define DMA_IFCR_CTEIF3_Msk                 (0x1UL << DMA_IFCR_CTEIF3_Pos)      /*!< 0x00000800 */
30 mjames 2151
#define DMA_IFCR_CTEIF3                     DMA_IFCR_CTEIF3_Msk                /*!< Channel 3 Transfer Error clear */
2152
#define DMA_IFCR_CGIF4_Pos                  (12U)                              
50 mjames 2153
#define DMA_IFCR_CGIF4_Msk                  (0x1UL << DMA_IFCR_CGIF4_Pos)       /*!< 0x00001000 */
30 mjames 2154
#define DMA_IFCR_CGIF4                      DMA_IFCR_CGIF4_Msk                 /*!< Channel 4 Global interrupt clear */
2155
#define DMA_IFCR_CTCIF4_Pos                 (13U)                              
50 mjames 2156
#define DMA_IFCR_CTCIF4_Msk                 (0x1UL << DMA_IFCR_CTCIF4_Pos)      /*!< 0x00002000 */
30 mjames 2157
#define DMA_IFCR_CTCIF4                     DMA_IFCR_CTCIF4_Msk                /*!< Channel 4 Transfer Complete clear */
2158
#define DMA_IFCR_CHTIF4_Pos                 (14U)                              
50 mjames 2159
#define DMA_IFCR_CHTIF4_Msk                 (0x1UL << DMA_IFCR_CHTIF4_Pos)      /*!< 0x00004000 */
30 mjames 2160
#define DMA_IFCR_CHTIF4                     DMA_IFCR_CHTIF4_Msk                /*!< Channel 4 Half Transfer clear */
2161
#define DMA_IFCR_CTEIF4_Pos                 (15U)                              
50 mjames 2162
#define DMA_IFCR_CTEIF4_Msk                 (0x1UL << DMA_IFCR_CTEIF4_Pos)      /*!< 0x00008000 */
30 mjames 2163
#define DMA_IFCR_CTEIF4                     DMA_IFCR_CTEIF4_Msk                /*!< Channel 4 Transfer Error clear */
2164
#define DMA_IFCR_CGIF5_Pos                  (16U)                              
50 mjames 2165
#define DMA_IFCR_CGIF5_Msk                  (0x1UL << DMA_IFCR_CGIF5_Pos)       /*!< 0x00010000 */
30 mjames 2166
#define DMA_IFCR_CGIF5                      DMA_IFCR_CGIF5_Msk                 /*!< Channel 5 Global interrupt clear */
2167
#define DMA_IFCR_CTCIF5_Pos                 (17U)                              
50 mjames 2168
#define DMA_IFCR_CTCIF5_Msk                 (0x1UL << DMA_IFCR_CTCIF5_Pos)      /*!< 0x00020000 */
30 mjames 2169
#define DMA_IFCR_CTCIF5                     DMA_IFCR_CTCIF5_Msk                /*!< Channel 5 Transfer Complete clear */
2170
#define DMA_IFCR_CHTIF5_Pos                 (18U)                              
50 mjames 2171
#define DMA_IFCR_CHTIF5_Msk                 (0x1UL << DMA_IFCR_CHTIF5_Pos)      /*!< 0x00040000 */
30 mjames 2172
#define DMA_IFCR_CHTIF5                     DMA_IFCR_CHTIF5_Msk                /*!< Channel 5 Half Transfer clear */
2173
#define DMA_IFCR_CTEIF5_Pos                 (19U)                              
50 mjames 2174
#define DMA_IFCR_CTEIF5_Msk                 (0x1UL << DMA_IFCR_CTEIF5_Pos)      /*!< 0x00080000 */
30 mjames 2175
#define DMA_IFCR_CTEIF5                     DMA_IFCR_CTEIF5_Msk                /*!< Channel 5 Transfer Error clear */
2176
#define DMA_IFCR_CGIF6_Pos                  (20U)                              
50 mjames 2177
#define DMA_IFCR_CGIF6_Msk                  (0x1UL << DMA_IFCR_CGIF6_Pos)       /*!< 0x00100000 */
30 mjames 2178
#define DMA_IFCR_CGIF6                      DMA_IFCR_CGIF6_Msk                 /*!< Channel 6 Global interrupt clear */
2179
#define DMA_IFCR_CTCIF6_Pos                 (21U)                              
50 mjames 2180
#define DMA_IFCR_CTCIF6_Msk                 (0x1UL << DMA_IFCR_CTCIF6_Pos)      /*!< 0x00200000 */
30 mjames 2181
#define DMA_IFCR_CTCIF6                     DMA_IFCR_CTCIF6_Msk                /*!< Channel 6 Transfer Complete clear */
2182
#define DMA_IFCR_CHTIF6_Pos                 (22U)                              
50 mjames 2183
#define DMA_IFCR_CHTIF6_Msk                 (0x1UL << DMA_IFCR_CHTIF6_Pos)      /*!< 0x00400000 */
30 mjames 2184
#define DMA_IFCR_CHTIF6                     DMA_IFCR_CHTIF6_Msk                /*!< Channel 6 Half Transfer clear */
2185
#define DMA_IFCR_CTEIF6_Pos                 (23U)                              
50 mjames 2186
#define DMA_IFCR_CTEIF6_Msk                 (0x1UL << DMA_IFCR_CTEIF6_Pos)      /*!< 0x00800000 */
30 mjames 2187
#define DMA_IFCR_CTEIF6                     DMA_IFCR_CTEIF6_Msk                /*!< Channel 6 Transfer Error clear */
2188
#define DMA_IFCR_CGIF7_Pos                  (24U)                              
50 mjames 2189
#define DMA_IFCR_CGIF7_Msk                  (0x1UL << DMA_IFCR_CGIF7_Pos)       /*!< 0x01000000 */
30 mjames 2190
#define DMA_IFCR_CGIF7                      DMA_IFCR_CGIF7_Msk                 /*!< Channel 7 Global interrupt clear */
2191
#define DMA_IFCR_CTCIF7_Pos                 (25U)                              
50 mjames 2192
#define DMA_IFCR_CTCIF7_Msk                 (0x1UL << DMA_IFCR_CTCIF7_Pos)      /*!< 0x02000000 */
30 mjames 2193
#define DMA_IFCR_CTCIF7                     DMA_IFCR_CTCIF7_Msk                /*!< Channel 7 Transfer Complete clear */
2194
#define DMA_IFCR_CHTIF7_Pos                 (26U)                              
50 mjames 2195
#define DMA_IFCR_CHTIF7_Msk                 (0x1UL << DMA_IFCR_CHTIF7_Pos)      /*!< 0x04000000 */
30 mjames 2196
#define DMA_IFCR_CHTIF7                     DMA_IFCR_CHTIF7_Msk                /*!< Channel 7 Half Transfer clear */
2197
#define DMA_IFCR_CTEIF7_Pos                 (27U)                              
50 mjames 2198
#define DMA_IFCR_CTEIF7_Msk                 (0x1UL << DMA_IFCR_CTEIF7_Pos)      /*!< 0x08000000 */
30 mjames 2199
#define DMA_IFCR_CTEIF7                     DMA_IFCR_CTEIF7_Msk                /*!< Channel 7 Transfer Error clear */
2200
 
2201
/*******************  Bit definition for DMA_CCR register  *******************/
2202
#define DMA_CCR_EN_Pos                      (0U)                               
50 mjames 2203
#define DMA_CCR_EN_Msk                      (0x1UL << DMA_CCR_EN_Pos)           /*!< 0x00000001 */
30 mjames 2204
#define DMA_CCR_EN                          DMA_CCR_EN_Msk                     /*!< Channel enable*/
2205
#define DMA_CCR_TCIE_Pos                    (1U)                               
50 mjames 2206
#define DMA_CCR_TCIE_Msk                    (0x1UL << DMA_CCR_TCIE_Pos)         /*!< 0x00000002 */
30 mjames 2207
#define DMA_CCR_TCIE                        DMA_CCR_TCIE_Msk                   /*!< Transfer complete interrupt enable */
2208
#define DMA_CCR_HTIE_Pos                    (2U)                               
50 mjames 2209
#define DMA_CCR_HTIE_Msk                    (0x1UL << DMA_CCR_HTIE_Pos)         /*!< 0x00000004 */
30 mjames 2210
#define DMA_CCR_HTIE                        DMA_CCR_HTIE_Msk                   /*!< Half Transfer interrupt enable */
2211
#define DMA_CCR_TEIE_Pos                    (3U)                               
50 mjames 2212
#define DMA_CCR_TEIE_Msk                    (0x1UL << DMA_CCR_TEIE_Pos)         /*!< 0x00000008 */
30 mjames 2213
#define DMA_CCR_TEIE                        DMA_CCR_TEIE_Msk                   /*!< Transfer error interrupt enable */
2214
#define DMA_CCR_DIR_Pos                     (4U)                               
50 mjames 2215
#define DMA_CCR_DIR_Msk                     (0x1UL << DMA_CCR_DIR_Pos)          /*!< 0x00000010 */
30 mjames 2216
#define DMA_CCR_DIR                         DMA_CCR_DIR_Msk                    /*!< Data transfer direction */
2217
#define DMA_CCR_CIRC_Pos                    (5U)                               
50 mjames 2218
#define DMA_CCR_CIRC_Msk                    (0x1UL << DMA_CCR_CIRC_Pos)         /*!< 0x00000020 */
30 mjames 2219
#define DMA_CCR_CIRC                        DMA_CCR_CIRC_Msk                   /*!< Circular mode */
2220
#define DMA_CCR_PINC_Pos                    (6U)                               
50 mjames 2221
#define DMA_CCR_PINC_Msk                    (0x1UL << DMA_CCR_PINC_Pos)         /*!< 0x00000040 */
30 mjames 2222
#define DMA_CCR_PINC                        DMA_CCR_PINC_Msk                   /*!< Peripheral increment mode */
2223
#define DMA_CCR_MINC_Pos                    (7U)                               
50 mjames 2224
#define DMA_CCR_MINC_Msk                    (0x1UL << DMA_CCR_MINC_Pos)         /*!< 0x00000080 */
30 mjames 2225
#define DMA_CCR_MINC                        DMA_CCR_MINC_Msk                   /*!< Memory increment mode */
2226
 
2227
#define DMA_CCR_PSIZE_Pos                   (8U)                               
50 mjames 2228
#define DMA_CCR_PSIZE_Msk                   (0x3UL << DMA_CCR_PSIZE_Pos)        /*!< 0x00000300 */
30 mjames 2229
#define DMA_CCR_PSIZE                       DMA_CCR_PSIZE_Msk                  /*!< PSIZE[1:0] bits (Peripheral size) */
50 mjames 2230
#define DMA_CCR_PSIZE_0                     (0x1UL << DMA_CCR_PSIZE_Pos)        /*!< 0x00000100 */
2231
#define DMA_CCR_PSIZE_1                     (0x2UL << DMA_CCR_PSIZE_Pos)        /*!< 0x00000200 */
30 mjames 2232
 
2233
#define DMA_CCR_MSIZE_Pos                   (10U)                              
50 mjames 2234
#define DMA_CCR_MSIZE_Msk                   (0x3UL << DMA_CCR_MSIZE_Pos)        /*!< 0x00000C00 */
30 mjames 2235
#define DMA_CCR_MSIZE                       DMA_CCR_MSIZE_Msk                  /*!< MSIZE[1:0] bits (Memory size) */
50 mjames 2236
#define DMA_CCR_MSIZE_0                     (0x1UL << DMA_CCR_MSIZE_Pos)        /*!< 0x00000400 */
2237
#define DMA_CCR_MSIZE_1                     (0x2UL << DMA_CCR_MSIZE_Pos)        /*!< 0x00000800 */
30 mjames 2238
 
2239
#define DMA_CCR_PL_Pos                      (12U)                              
50 mjames 2240
#define DMA_CCR_PL_Msk                      (0x3UL << DMA_CCR_PL_Pos)           /*!< 0x00003000 */
30 mjames 2241
#define DMA_CCR_PL                          DMA_CCR_PL_Msk                     /*!< PL[1:0] bits(Channel Priority level) */
50 mjames 2242
#define DMA_CCR_PL_0                        (0x1UL << DMA_CCR_PL_Pos)           /*!< 0x00001000 */
2243
#define DMA_CCR_PL_1                        (0x2UL << DMA_CCR_PL_Pos)           /*!< 0x00002000 */
30 mjames 2244
 
2245
#define DMA_CCR_MEM2MEM_Pos                 (14U)                              
50 mjames 2246
#define DMA_CCR_MEM2MEM_Msk                 (0x1UL << DMA_CCR_MEM2MEM_Pos)      /*!< 0x00004000 */
30 mjames 2247
#define DMA_CCR_MEM2MEM                     DMA_CCR_MEM2MEM_Msk                /*!< Memory to memory mode */
2248
 
2249
/******************  Bit definition generic for DMA_CNDTR register  *******************/
2250
#define DMA_CNDTR_NDT_Pos                   (0U)                               
50 mjames 2251
#define DMA_CNDTR_NDT_Msk                   (0xFFFFUL << DMA_CNDTR_NDT_Pos)     /*!< 0x0000FFFF */
30 mjames 2252
#define DMA_CNDTR_NDT                       DMA_CNDTR_NDT_Msk                  /*!< Number of data to Transfer */
2253
 
2254
/******************  Bit definition for DMA_CNDTR1 register  ******************/
2255
#define DMA_CNDTR1_NDT_Pos                  (0U)                               
50 mjames 2256
#define DMA_CNDTR1_NDT_Msk                  (0xFFFFUL << DMA_CNDTR1_NDT_Pos)    /*!< 0x0000FFFF */
30 mjames 2257
#define DMA_CNDTR1_NDT                      DMA_CNDTR1_NDT_Msk                 /*!< Number of data to Transfer */
2258
 
2259
/******************  Bit definition for DMA_CNDTR2 register  ******************/
2260
#define DMA_CNDTR2_NDT_Pos                  (0U)                               
50 mjames 2261
#define DMA_CNDTR2_NDT_Msk                  (0xFFFFUL << DMA_CNDTR2_NDT_Pos)    /*!< 0x0000FFFF */
30 mjames 2262
#define DMA_CNDTR2_NDT                      DMA_CNDTR2_NDT_Msk                 /*!< Number of data to Transfer */
2263
 
2264
/******************  Bit definition for DMA_CNDTR3 register  ******************/
2265
#define DMA_CNDTR3_NDT_Pos                  (0U)                               
50 mjames 2266
#define DMA_CNDTR3_NDT_Msk                  (0xFFFFUL << DMA_CNDTR3_NDT_Pos)    /*!< 0x0000FFFF */
30 mjames 2267
#define DMA_CNDTR3_NDT                      DMA_CNDTR3_NDT_Msk                 /*!< Number of data to Transfer */
2268
 
2269
/******************  Bit definition for DMA_CNDTR4 register  ******************/
2270
#define DMA_CNDTR4_NDT_Pos                  (0U)                               
50 mjames 2271
#define DMA_CNDTR4_NDT_Msk                  (0xFFFFUL << DMA_CNDTR4_NDT_Pos)    /*!< 0x0000FFFF */
30 mjames 2272
#define DMA_CNDTR4_NDT                      DMA_CNDTR4_NDT_Msk                 /*!< Number of data to Transfer */
2273
 
2274
/******************  Bit definition for DMA_CNDTR5 register  ******************/
2275
#define DMA_CNDTR5_NDT_Pos                  (0U)                               
50 mjames 2276
#define DMA_CNDTR5_NDT_Msk                  (0xFFFFUL << DMA_CNDTR5_NDT_Pos)    /*!< 0x0000FFFF */
30 mjames 2277
#define DMA_CNDTR5_NDT                      DMA_CNDTR5_NDT_Msk                 /*!< Number of data to Transfer */
2278
 
2279
/******************  Bit definition for DMA_CNDTR6 register  ******************/
2280
#define DMA_CNDTR6_NDT_Pos                  (0U)                               
50 mjames 2281
#define DMA_CNDTR6_NDT_Msk                  (0xFFFFUL << DMA_CNDTR6_NDT_Pos)    /*!< 0x0000FFFF */
30 mjames 2282
#define DMA_CNDTR6_NDT                      DMA_CNDTR6_NDT_Msk                 /*!< Number of data to Transfer */
2283
 
2284
/******************  Bit definition for DMA_CNDTR7 register  ******************/
2285
#define DMA_CNDTR7_NDT_Pos                  (0U)                               
50 mjames 2286
#define DMA_CNDTR7_NDT_Msk                  (0xFFFFUL << DMA_CNDTR7_NDT_Pos)    /*!< 0x0000FFFF */
30 mjames 2287
#define DMA_CNDTR7_NDT                      DMA_CNDTR7_NDT_Msk                 /*!< Number of data to Transfer */
2288
 
2289
/******************  Bit definition generic for DMA_CPAR register  ********************/
2290
#define DMA_CPAR_PA_Pos                     (0U)                               
50 mjames 2291
#define DMA_CPAR_PA_Msk                     (0xFFFFFFFFUL << DMA_CPAR_PA_Pos)   /*!< 0xFFFFFFFF */
30 mjames 2292
#define DMA_CPAR_PA                         DMA_CPAR_PA_Msk                    /*!< Peripheral Address */
2293
 
2294
/******************  Bit definition for DMA_CPAR1 register  *******************/
2295
#define DMA_CPAR1_PA_Pos                    (0U)                               
50 mjames 2296
#define DMA_CPAR1_PA_Msk                    (0xFFFFFFFFUL << DMA_CPAR1_PA_Pos)  /*!< 0xFFFFFFFF */
30 mjames 2297
#define DMA_CPAR1_PA                        DMA_CPAR1_PA_Msk                   /*!< Peripheral Address */
2298
 
2299
/******************  Bit definition for DMA_CPAR2 register  *******************/
2300
#define DMA_CPAR2_PA_Pos                    (0U)                               
50 mjames 2301
#define DMA_CPAR2_PA_Msk                    (0xFFFFFFFFUL << DMA_CPAR2_PA_Pos)  /*!< 0xFFFFFFFF */
30 mjames 2302
#define DMA_CPAR2_PA                        DMA_CPAR2_PA_Msk                   /*!< Peripheral Address */
2303
 
2304
/******************  Bit definition for DMA_CPAR3 register  *******************/
2305
#define DMA_CPAR3_PA_Pos                    (0U)                               
50 mjames 2306
#define DMA_CPAR3_PA_Msk                    (0xFFFFFFFFUL << DMA_CPAR3_PA_Pos)  /*!< 0xFFFFFFFF */
30 mjames 2307
#define DMA_CPAR3_PA                        DMA_CPAR3_PA_Msk                   /*!< Peripheral Address */
2308
 
2309
 
2310
/******************  Bit definition for DMA_CPAR4 register  *******************/
2311
#define DMA_CPAR4_PA_Pos                    (0U)                               
50 mjames 2312
#define DMA_CPAR4_PA_Msk                    (0xFFFFFFFFUL << DMA_CPAR4_PA_Pos)  /*!< 0xFFFFFFFF */
30 mjames 2313
#define DMA_CPAR4_PA                        DMA_CPAR4_PA_Msk                   /*!< Peripheral Address */
2314
 
2315
/******************  Bit definition for DMA_CPAR5 register  *******************/
2316
#define DMA_CPAR5_PA_Pos                    (0U)                               
50 mjames 2317
#define DMA_CPAR5_PA_Msk                    (0xFFFFFFFFUL << DMA_CPAR5_PA_Pos)  /*!< 0xFFFFFFFF */
30 mjames 2318
#define DMA_CPAR5_PA                        DMA_CPAR5_PA_Msk                   /*!< Peripheral Address */
2319
 
2320
/******************  Bit definition for DMA_CPAR6 register  *******************/
2321
#define DMA_CPAR6_PA_Pos                    (0U)                               
50 mjames 2322
#define DMA_CPAR6_PA_Msk                    (0xFFFFFFFFUL << DMA_CPAR6_PA_Pos)  /*!< 0xFFFFFFFF */
30 mjames 2323
#define DMA_CPAR6_PA                        DMA_CPAR6_PA_Msk                   /*!< Peripheral Address */
2324
 
2325
 
2326
/******************  Bit definition for DMA_CPAR7 register  *******************/
2327
#define DMA_CPAR7_PA_Pos                    (0U)                               
50 mjames 2328
#define DMA_CPAR7_PA_Msk                    (0xFFFFFFFFUL << DMA_CPAR7_PA_Pos)  /*!< 0xFFFFFFFF */
30 mjames 2329
#define DMA_CPAR7_PA                        DMA_CPAR7_PA_Msk                   /*!< Peripheral Address */
2330
 
2331
/******************  Bit definition generic for DMA_CMAR register  ********************/
2332
#define DMA_CMAR_MA_Pos                     (0U)                               
50 mjames 2333
#define DMA_CMAR_MA_Msk                     (0xFFFFFFFFUL << DMA_CMAR_MA_Pos)   /*!< 0xFFFFFFFF */
30 mjames 2334
#define DMA_CMAR_MA                         DMA_CMAR_MA_Msk                    /*!< Memory Address */
2335
 
2336
/******************  Bit definition for DMA_CMAR1 register  *******************/
2337
#define DMA_CMAR1_MA_Pos                    (0U)                               
50 mjames 2338
#define DMA_CMAR1_MA_Msk                    (0xFFFFFFFFUL << DMA_CMAR1_MA_Pos)  /*!< 0xFFFFFFFF */
30 mjames 2339
#define DMA_CMAR1_MA                        DMA_CMAR1_MA_Msk                   /*!< Memory Address */
2340
 
2341
/******************  Bit definition for DMA_CMAR2 register  *******************/
2342
#define DMA_CMAR2_MA_Pos                    (0U)                               
50 mjames 2343
#define DMA_CMAR2_MA_Msk                    (0xFFFFFFFFUL << DMA_CMAR2_MA_Pos)  /*!< 0xFFFFFFFF */
30 mjames 2344
#define DMA_CMAR2_MA                        DMA_CMAR2_MA_Msk                   /*!< Memory Address */
2345
 
2346
/******************  Bit definition for DMA_CMAR3 register  *******************/
2347
#define DMA_CMAR3_MA_Pos                    (0U)                               
50 mjames 2348
#define DMA_CMAR3_MA_Msk                    (0xFFFFFFFFUL << DMA_CMAR3_MA_Pos)  /*!< 0xFFFFFFFF */
30 mjames 2349
#define DMA_CMAR3_MA                        DMA_CMAR3_MA_Msk                   /*!< Memory Address */
2350
 
2351
 
2352
/******************  Bit definition for DMA_CMAR4 register  *******************/
2353
#define DMA_CMAR4_MA_Pos                    (0U)                               
50 mjames 2354
#define DMA_CMAR4_MA_Msk                    (0xFFFFFFFFUL << DMA_CMAR4_MA_Pos)  /*!< 0xFFFFFFFF */
30 mjames 2355
#define DMA_CMAR4_MA                        DMA_CMAR4_MA_Msk                   /*!< Memory Address */
2356
 
2357
/******************  Bit definition for DMA_CMAR5 register  *******************/
2358
#define DMA_CMAR5_MA_Pos                    (0U)                               
50 mjames 2359
#define DMA_CMAR5_MA_Msk                    (0xFFFFFFFFUL << DMA_CMAR5_MA_Pos)  /*!< 0xFFFFFFFF */
30 mjames 2360
#define DMA_CMAR5_MA                        DMA_CMAR5_MA_Msk                   /*!< Memory Address */
2361
 
2362
/******************  Bit definition for DMA_CMAR6 register  *******************/
2363
#define DMA_CMAR6_MA_Pos                    (0U)                               
50 mjames 2364
#define DMA_CMAR6_MA_Msk                    (0xFFFFFFFFUL << DMA_CMAR6_MA_Pos)  /*!< 0xFFFFFFFF */
30 mjames 2365
#define DMA_CMAR6_MA                        DMA_CMAR6_MA_Msk                   /*!< Memory Address */
2366
 
2367
/******************  Bit definition for DMA_CMAR7 register  *******************/
2368
#define DMA_CMAR7_MA_Pos                    (0U)                               
50 mjames 2369
#define DMA_CMAR7_MA_Msk                    (0xFFFFFFFFUL << DMA_CMAR7_MA_Pos)  /*!< 0xFFFFFFFF */
30 mjames 2370
#define DMA_CMAR7_MA                        DMA_CMAR7_MA_Msk                   /*!< Memory Address */
2371
 
2372
/******************************************************************************/
2373
/*                                                                            */
2374
/*                  External Interrupt/Event Controller (EXTI)                */
2375
/*                                                                            */
2376
/******************************************************************************/
2377
 
2378
/*******************  Bit definition for EXTI_IMR register  *******************/
2379
#define EXTI_IMR_MR0_Pos                    (0U)                               
50 mjames 2380
#define EXTI_IMR_MR0_Msk                    (0x1UL << EXTI_IMR_MR0_Pos)         /*!< 0x00000001 */
30 mjames 2381
#define EXTI_IMR_MR0                        EXTI_IMR_MR0_Msk                   /*!< Interrupt Mask on line 0 */
2382
#define EXTI_IMR_MR1_Pos                    (1U)                               
50 mjames 2383
#define EXTI_IMR_MR1_Msk                    (0x1UL << EXTI_IMR_MR1_Pos)         /*!< 0x00000002 */
30 mjames 2384
#define EXTI_IMR_MR1                        EXTI_IMR_MR1_Msk                   /*!< Interrupt Mask on line 1 */
2385
#define EXTI_IMR_MR2_Pos                    (2U)                               
50 mjames 2386
#define EXTI_IMR_MR2_Msk                    (0x1UL << EXTI_IMR_MR2_Pos)         /*!< 0x00000004 */
30 mjames 2387
#define EXTI_IMR_MR2                        EXTI_IMR_MR2_Msk                   /*!< Interrupt Mask on line 2 */
2388
#define EXTI_IMR_MR3_Pos                    (3U)                               
50 mjames 2389
#define EXTI_IMR_MR3_Msk                    (0x1UL << EXTI_IMR_MR3_Pos)         /*!< 0x00000008 */
30 mjames 2390
#define EXTI_IMR_MR3                        EXTI_IMR_MR3_Msk                   /*!< Interrupt Mask on line 3 */
2391
#define EXTI_IMR_MR4_Pos                    (4U)                               
50 mjames 2392
#define EXTI_IMR_MR4_Msk                    (0x1UL << EXTI_IMR_MR4_Pos)         /*!< 0x00000010 */
30 mjames 2393
#define EXTI_IMR_MR4                        EXTI_IMR_MR4_Msk                   /*!< Interrupt Mask on line 4 */
2394
#define EXTI_IMR_MR5_Pos                    (5U)                               
50 mjames 2395
#define EXTI_IMR_MR5_Msk                    (0x1UL << EXTI_IMR_MR5_Pos)         /*!< 0x00000020 */
30 mjames 2396
#define EXTI_IMR_MR5                        EXTI_IMR_MR5_Msk                   /*!< Interrupt Mask on line 5 */
2397
#define EXTI_IMR_MR6_Pos                    (6U)                               
50 mjames 2398
#define EXTI_IMR_MR6_Msk                    (0x1UL << EXTI_IMR_MR6_Pos)         /*!< 0x00000040 */
30 mjames 2399
#define EXTI_IMR_MR6                        EXTI_IMR_MR6_Msk                   /*!< Interrupt Mask on line 6 */
2400
#define EXTI_IMR_MR7_Pos                    (7U)                               
50 mjames 2401
#define EXTI_IMR_MR7_Msk                    (0x1UL << EXTI_IMR_MR7_Pos)         /*!< 0x00000080 */
30 mjames 2402
#define EXTI_IMR_MR7                        EXTI_IMR_MR7_Msk                   /*!< Interrupt Mask on line 7 */
2403
#define EXTI_IMR_MR8_Pos                    (8U)                               
50 mjames 2404
#define EXTI_IMR_MR8_Msk                    (0x1UL << EXTI_IMR_MR8_Pos)         /*!< 0x00000100 */
30 mjames 2405
#define EXTI_IMR_MR8                        EXTI_IMR_MR8_Msk                   /*!< Interrupt Mask on line 8 */
2406
#define EXTI_IMR_MR9_Pos                    (9U)                               
50 mjames 2407
#define EXTI_IMR_MR9_Msk                    (0x1UL << EXTI_IMR_MR9_Pos)         /*!< 0x00000200 */
30 mjames 2408
#define EXTI_IMR_MR9                        EXTI_IMR_MR9_Msk                   /*!< Interrupt Mask on line 9 */
2409
#define EXTI_IMR_MR10_Pos                   (10U)                              
50 mjames 2410
#define EXTI_IMR_MR10_Msk                   (0x1UL << EXTI_IMR_MR10_Pos)        /*!< 0x00000400 */
30 mjames 2411
#define EXTI_IMR_MR10                       EXTI_IMR_MR10_Msk                  /*!< Interrupt Mask on line 10 */
2412
#define EXTI_IMR_MR11_Pos                   (11U)                              
50 mjames 2413
#define EXTI_IMR_MR11_Msk                   (0x1UL << EXTI_IMR_MR11_Pos)        /*!< 0x00000800 */
30 mjames 2414
#define EXTI_IMR_MR11                       EXTI_IMR_MR11_Msk                  /*!< Interrupt Mask on line 11 */
2415
#define EXTI_IMR_MR12_Pos                   (12U)                              
50 mjames 2416
#define EXTI_IMR_MR12_Msk                   (0x1UL << EXTI_IMR_MR12_Pos)        /*!< 0x00001000 */
30 mjames 2417
#define EXTI_IMR_MR12                       EXTI_IMR_MR12_Msk                  /*!< Interrupt Mask on line 12 */
2418
#define EXTI_IMR_MR13_Pos                   (13U)                              
50 mjames 2419
#define EXTI_IMR_MR13_Msk                   (0x1UL << EXTI_IMR_MR13_Pos)        /*!< 0x00002000 */
30 mjames 2420
#define EXTI_IMR_MR13                       EXTI_IMR_MR13_Msk                  /*!< Interrupt Mask on line 13 */
2421
#define EXTI_IMR_MR14_Pos                   (14U)                              
50 mjames 2422
#define EXTI_IMR_MR14_Msk                   (0x1UL << EXTI_IMR_MR14_Pos)        /*!< 0x00004000 */
30 mjames 2423
#define EXTI_IMR_MR14                       EXTI_IMR_MR14_Msk                  /*!< Interrupt Mask on line 14 */
2424
#define EXTI_IMR_MR15_Pos                   (15U)                              
50 mjames 2425
#define EXTI_IMR_MR15_Msk                   (0x1UL << EXTI_IMR_MR15_Pos)        /*!< 0x00008000 */
30 mjames 2426
#define EXTI_IMR_MR15                       EXTI_IMR_MR15_Msk                  /*!< Interrupt Mask on line 15 */
2427
#define EXTI_IMR_MR16_Pos                   (16U)                              
50 mjames 2428
#define EXTI_IMR_MR16_Msk                   (0x1UL << EXTI_IMR_MR16_Pos)        /*!< 0x00010000 */
30 mjames 2429
#define EXTI_IMR_MR16                       EXTI_IMR_MR16_Msk                  /*!< Interrupt Mask on line 16 */
2430
#define EXTI_IMR_MR17_Pos                   (17U)                              
50 mjames 2431
#define EXTI_IMR_MR17_Msk                   (0x1UL << EXTI_IMR_MR17_Pos)        /*!< 0x00020000 */
30 mjames 2432
#define EXTI_IMR_MR17                       EXTI_IMR_MR17_Msk                  /*!< Interrupt Mask on line 17 */
2433
#define EXTI_IMR_MR18_Pos                   (18U)                              
50 mjames 2434
#define EXTI_IMR_MR18_Msk                   (0x1UL << EXTI_IMR_MR18_Pos)        /*!< 0x00040000 */
30 mjames 2435
#define EXTI_IMR_MR18                       EXTI_IMR_MR18_Msk                  /*!< Interrupt Mask on line 18 */
2436
#define EXTI_IMR_MR19_Pos                   (19U)                              
50 mjames 2437
#define EXTI_IMR_MR19_Msk                   (0x1UL << EXTI_IMR_MR19_Pos)        /*!< 0x00080000 */
30 mjames 2438
#define EXTI_IMR_MR19                       EXTI_IMR_MR19_Msk                  /*!< Interrupt Mask on line 19 */
2439
#define EXTI_IMR_MR20_Pos                   (20U)                              
50 mjames 2440
#define EXTI_IMR_MR20_Msk                   (0x1UL << EXTI_IMR_MR20_Pos)        /*!< 0x00100000 */
30 mjames 2441
#define EXTI_IMR_MR20                       EXTI_IMR_MR20_Msk                  /*!< Interrupt Mask on line 20 */
2442
#define EXTI_IMR_MR21_Pos                   (21U)                              
50 mjames 2443
#define EXTI_IMR_MR21_Msk                   (0x1UL << EXTI_IMR_MR21_Pos)        /*!< 0x00200000 */
30 mjames 2444
#define EXTI_IMR_MR21                       EXTI_IMR_MR21_Msk                  /*!< Interrupt Mask on line 21 */
2445
#define EXTI_IMR_MR22_Pos                   (22U)                              
50 mjames 2446
#define EXTI_IMR_MR22_Msk                   (0x1UL << EXTI_IMR_MR22_Pos)        /*!< 0x00400000 */
30 mjames 2447
#define EXTI_IMR_MR22                       EXTI_IMR_MR22_Msk                  /*!< Interrupt Mask on line 22 */
2448
#define EXTI_IMR_MR23_Pos                   (23U)                              
50 mjames 2449
#define EXTI_IMR_MR23_Msk                   (0x1UL << EXTI_IMR_MR23_Pos)        /*!< 0x00800000 */
30 mjames 2450
#define EXTI_IMR_MR23                       EXTI_IMR_MR23_Msk                  /*!< Interrupt Mask on line 23 */
2451
 
2452
/* References Defines */
2453
#define  EXTI_IMR_IM0 EXTI_IMR_MR0
2454
#define  EXTI_IMR_IM1 EXTI_IMR_MR1
2455
#define  EXTI_IMR_IM2 EXTI_IMR_MR2
2456
#define  EXTI_IMR_IM3 EXTI_IMR_MR3
2457
#define  EXTI_IMR_IM4 EXTI_IMR_MR4
2458
#define  EXTI_IMR_IM5 EXTI_IMR_MR5
2459
#define  EXTI_IMR_IM6 EXTI_IMR_MR6
2460
#define  EXTI_IMR_IM7 EXTI_IMR_MR7
2461
#define  EXTI_IMR_IM8 EXTI_IMR_MR8
2462
#define  EXTI_IMR_IM9 EXTI_IMR_MR9
2463
#define  EXTI_IMR_IM10 EXTI_IMR_MR10
2464
#define  EXTI_IMR_IM11 EXTI_IMR_MR11
2465
#define  EXTI_IMR_IM12 EXTI_IMR_MR12
2466
#define  EXTI_IMR_IM13 EXTI_IMR_MR13
2467
#define  EXTI_IMR_IM14 EXTI_IMR_MR14
2468
#define  EXTI_IMR_IM15 EXTI_IMR_MR15
2469
#define  EXTI_IMR_IM16 EXTI_IMR_MR16
2470
#define  EXTI_IMR_IM17 EXTI_IMR_MR17
2471
#define  EXTI_IMR_IM18 EXTI_IMR_MR18
2472
#define  EXTI_IMR_IM19 EXTI_IMR_MR19
2473
#define  EXTI_IMR_IM20 EXTI_IMR_MR20
2474
#define  EXTI_IMR_IM21 EXTI_IMR_MR21
2475
#define  EXTI_IMR_IM22 EXTI_IMR_MR22
2476
/* Category 3, 4 & 5 */
2477
#define  EXTI_IMR_IM23 EXTI_IMR_MR23
2478
#define EXTI_IMR_IM_Pos                     (0U)                               
50 mjames 2479
#define EXTI_IMR_IM_Msk                     (0xFFFFFFUL << EXTI_IMR_IM_Pos)     /*!< 0x00FFFFFF */
30 mjames 2480
#define EXTI_IMR_IM                         EXTI_IMR_IM_Msk                    /*!< Interrupt Mask All */
2481
 
2482
/*******************  Bit definition for EXTI_EMR register  *******************/
2483
#define EXTI_EMR_MR0_Pos                    (0U)                               
50 mjames 2484
#define EXTI_EMR_MR0_Msk                    (0x1UL << EXTI_EMR_MR0_Pos)         /*!< 0x00000001 */
30 mjames 2485
#define EXTI_EMR_MR0                        EXTI_EMR_MR0_Msk                   /*!< Event Mask on line 0 */
2486
#define EXTI_EMR_MR1_Pos                    (1U)                               
50 mjames 2487
#define EXTI_EMR_MR1_Msk                    (0x1UL << EXTI_EMR_MR1_Pos)         /*!< 0x00000002 */
30 mjames 2488
#define EXTI_EMR_MR1                        EXTI_EMR_MR1_Msk                   /*!< Event Mask on line 1 */
2489
#define EXTI_EMR_MR2_Pos                    (2U)                               
50 mjames 2490
#define EXTI_EMR_MR2_Msk                    (0x1UL << EXTI_EMR_MR2_Pos)         /*!< 0x00000004 */
30 mjames 2491
#define EXTI_EMR_MR2                        EXTI_EMR_MR2_Msk                   /*!< Event Mask on line 2 */
2492
#define EXTI_EMR_MR3_Pos                    (3U)                               
50 mjames 2493
#define EXTI_EMR_MR3_Msk                    (0x1UL << EXTI_EMR_MR3_Pos)         /*!< 0x00000008 */
30 mjames 2494
#define EXTI_EMR_MR3                        EXTI_EMR_MR3_Msk                   /*!< Event Mask on line 3 */
2495
#define EXTI_EMR_MR4_Pos                    (4U)                               
50 mjames 2496
#define EXTI_EMR_MR4_Msk                    (0x1UL << EXTI_EMR_MR4_Pos)         /*!< 0x00000010 */
30 mjames 2497
#define EXTI_EMR_MR4                        EXTI_EMR_MR4_Msk                   /*!< Event Mask on line 4 */
2498
#define EXTI_EMR_MR5_Pos                    (5U)                               
50 mjames 2499
#define EXTI_EMR_MR5_Msk                    (0x1UL << EXTI_EMR_MR5_Pos)         /*!< 0x00000020 */
30 mjames 2500
#define EXTI_EMR_MR5                        EXTI_EMR_MR5_Msk                   /*!< Event Mask on line 5 */
2501
#define EXTI_EMR_MR6_Pos                    (6U)                               
50 mjames 2502
#define EXTI_EMR_MR6_Msk                    (0x1UL << EXTI_EMR_MR6_Pos)         /*!< 0x00000040 */
30 mjames 2503
#define EXTI_EMR_MR6                        EXTI_EMR_MR6_Msk                   /*!< Event Mask on line 6 */
2504
#define EXTI_EMR_MR7_Pos                    (7U)                               
50 mjames 2505
#define EXTI_EMR_MR7_Msk                    (0x1UL << EXTI_EMR_MR7_Pos)         /*!< 0x00000080 */
30 mjames 2506
#define EXTI_EMR_MR7                        EXTI_EMR_MR7_Msk                   /*!< Event Mask on line 7 */
2507
#define EXTI_EMR_MR8_Pos                    (8U)                               
50 mjames 2508
#define EXTI_EMR_MR8_Msk                    (0x1UL << EXTI_EMR_MR8_Pos)         /*!< 0x00000100 */
30 mjames 2509
#define EXTI_EMR_MR8                        EXTI_EMR_MR8_Msk                   /*!< Event Mask on line 8 */
2510
#define EXTI_EMR_MR9_Pos                    (9U)                               
50 mjames 2511
#define EXTI_EMR_MR9_Msk                    (0x1UL << EXTI_EMR_MR9_Pos)         /*!< 0x00000200 */
30 mjames 2512
#define EXTI_EMR_MR9                        EXTI_EMR_MR9_Msk                   /*!< Event Mask on line 9 */
2513
#define EXTI_EMR_MR10_Pos                   (10U)                              
50 mjames 2514
#define EXTI_EMR_MR10_Msk                   (0x1UL << EXTI_EMR_MR10_Pos)        /*!< 0x00000400 */
30 mjames 2515
#define EXTI_EMR_MR10                       EXTI_EMR_MR10_Msk                  /*!< Event Mask on line 10 */
2516
#define EXTI_EMR_MR11_Pos                   (11U)                              
50 mjames 2517
#define EXTI_EMR_MR11_Msk                   (0x1UL << EXTI_EMR_MR11_Pos)        /*!< 0x00000800 */
30 mjames 2518
#define EXTI_EMR_MR11                       EXTI_EMR_MR11_Msk                  /*!< Event Mask on line 11 */
2519
#define EXTI_EMR_MR12_Pos                   (12U)                              
50 mjames 2520
#define EXTI_EMR_MR12_Msk                   (0x1UL << EXTI_EMR_MR12_Pos)        /*!< 0x00001000 */
30 mjames 2521
#define EXTI_EMR_MR12                       EXTI_EMR_MR12_Msk                  /*!< Event Mask on line 12 */
2522
#define EXTI_EMR_MR13_Pos                   (13U)                              
50 mjames 2523
#define EXTI_EMR_MR13_Msk                   (0x1UL << EXTI_EMR_MR13_Pos)        /*!< 0x00002000 */
30 mjames 2524
#define EXTI_EMR_MR13                       EXTI_EMR_MR13_Msk                  /*!< Event Mask on line 13 */
2525
#define EXTI_EMR_MR14_Pos                   (14U)                              
50 mjames 2526
#define EXTI_EMR_MR14_Msk                   (0x1UL << EXTI_EMR_MR14_Pos)        /*!< 0x00004000 */
30 mjames 2527
#define EXTI_EMR_MR14                       EXTI_EMR_MR14_Msk                  /*!< Event Mask on line 14 */
2528
#define EXTI_EMR_MR15_Pos                   (15U)                              
50 mjames 2529
#define EXTI_EMR_MR15_Msk                   (0x1UL << EXTI_EMR_MR15_Pos)        /*!< 0x00008000 */
30 mjames 2530
#define EXTI_EMR_MR15                       EXTI_EMR_MR15_Msk                  /*!< Event Mask on line 15 */
2531
#define EXTI_EMR_MR16_Pos                   (16U)                              
50 mjames 2532
#define EXTI_EMR_MR16_Msk                   (0x1UL << EXTI_EMR_MR16_Pos)        /*!< 0x00010000 */
30 mjames 2533
#define EXTI_EMR_MR16                       EXTI_EMR_MR16_Msk                  /*!< Event Mask on line 16 */
2534
#define EXTI_EMR_MR17_Pos                   (17U)                              
50 mjames 2535
#define EXTI_EMR_MR17_Msk                   (0x1UL << EXTI_EMR_MR17_Pos)        /*!< 0x00020000 */
30 mjames 2536
#define EXTI_EMR_MR17                       EXTI_EMR_MR17_Msk                  /*!< Event Mask on line 17 */
2537
#define EXTI_EMR_MR18_Pos                   (18U)                              
50 mjames 2538
#define EXTI_EMR_MR18_Msk                   (0x1UL << EXTI_EMR_MR18_Pos)        /*!< 0x00040000 */
30 mjames 2539
#define EXTI_EMR_MR18                       EXTI_EMR_MR18_Msk                  /*!< Event Mask on line 18 */
2540
#define EXTI_EMR_MR19_Pos                   (19U)                              
50 mjames 2541
#define EXTI_EMR_MR19_Msk                   (0x1UL << EXTI_EMR_MR19_Pos)        /*!< 0x00080000 */
30 mjames 2542
#define EXTI_EMR_MR19                       EXTI_EMR_MR19_Msk                  /*!< Event Mask on line 19 */
2543
#define EXTI_EMR_MR20_Pos                   (20U)                              
50 mjames 2544
#define EXTI_EMR_MR20_Msk                   (0x1UL << EXTI_EMR_MR20_Pos)        /*!< 0x00100000 */
30 mjames 2545
#define EXTI_EMR_MR20                       EXTI_EMR_MR20_Msk                  /*!< Event Mask on line 20 */
2546
#define EXTI_EMR_MR21_Pos                   (21U)                              
50 mjames 2547
#define EXTI_EMR_MR21_Msk                   (0x1UL << EXTI_EMR_MR21_Pos)        /*!< 0x00200000 */
30 mjames 2548
#define EXTI_EMR_MR21                       EXTI_EMR_MR21_Msk                  /*!< Event Mask on line 21 */
2549
#define EXTI_EMR_MR22_Pos                   (22U)                              
50 mjames 2550
#define EXTI_EMR_MR22_Msk                   (0x1UL << EXTI_EMR_MR22_Pos)        /*!< 0x00400000 */
30 mjames 2551
#define EXTI_EMR_MR22                       EXTI_EMR_MR22_Msk                  /*!< Event Mask on line 22 */
2552
#define EXTI_EMR_MR23_Pos                   (23U)                              
50 mjames 2553
#define EXTI_EMR_MR23_Msk                   (0x1UL << EXTI_EMR_MR23_Pos)        /*!< 0x00800000 */
30 mjames 2554
#define EXTI_EMR_MR23                       EXTI_EMR_MR23_Msk                  /*!< Event Mask on line 23 */
2555
 
2556
/* References Defines */
2557
#define  EXTI_EMR_EM0 EXTI_EMR_MR0
2558
#define  EXTI_EMR_EM1 EXTI_EMR_MR1
2559
#define  EXTI_EMR_EM2 EXTI_EMR_MR2
2560
#define  EXTI_EMR_EM3 EXTI_EMR_MR3
2561
#define  EXTI_EMR_EM4 EXTI_EMR_MR4
2562
#define  EXTI_EMR_EM5 EXTI_EMR_MR5
2563
#define  EXTI_EMR_EM6 EXTI_EMR_MR6
2564
#define  EXTI_EMR_EM7 EXTI_EMR_MR7
2565
#define  EXTI_EMR_EM8 EXTI_EMR_MR8
2566
#define  EXTI_EMR_EM9 EXTI_EMR_MR9
2567
#define  EXTI_EMR_EM10 EXTI_EMR_MR10
2568
#define  EXTI_EMR_EM11 EXTI_EMR_MR11
2569
#define  EXTI_EMR_EM12 EXTI_EMR_MR12
2570
#define  EXTI_EMR_EM13 EXTI_EMR_MR13
2571
#define  EXTI_EMR_EM14 EXTI_EMR_MR14
2572
#define  EXTI_EMR_EM15 EXTI_EMR_MR15
2573
#define  EXTI_EMR_EM16 EXTI_EMR_MR16
2574
#define  EXTI_EMR_EM17 EXTI_EMR_MR17
2575
#define  EXTI_EMR_EM18 EXTI_EMR_MR18
2576
#define  EXTI_EMR_EM19 EXTI_EMR_MR19
2577
#define  EXTI_EMR_EM20 EXTI_EMR_MR20
2578
#define  EXTI_EMR_EM21 EXTI_EMR_MR21
2579
#define  EXTI_EMR_EM22 EXTI_EMR_MR22
2580
#define  EXTI_EMR_EM23 EXTI_EMR_MR23
2581
 
2582
/******************  Bit definition for EXTI_RTSR register  *******************/
2583
#define EXTI_RTSR_TR0_Pos                   (0U)                               
50 mjames 2584
#define EXTI_RTSR_TR0_Msk                   (0x1UL << EXTI_RTSR_TR0_Pos)        /*!< 0x00000001 */
30 mjames 2585
#define EXTI_RTSR_TR0                       EXTI_RTSR_TR0_Msk                  /*!< Rising trigger event configuration bit of line 0 */
2586
#define EXTI_RTSR_TR1_Pos                   (1U)                               
50 mjames 2587
#define EXTI_RTSR_TR1_Msk                   (0x1UL << EXTI_RTSR_TR1_Pos)        /*!< 0x00000002 */
30 mjames 2588
#define EXTI_RTSR_TR1                       EXTI_RTSR_TR1_Msk                  /*!< Rising trigger event configuration bit of line 1 */
2589
#define EXTI_RTSR_TR2_Pos                   (2U)                               
50 mjames 2590
#define EXTI_RTSR_TR2_Msk                   (0x1UL << EXTI_RTSR_TR2_Pos)        /*!< 0x00000004 */
30 mjames 2591
#define EXTI_RTSR_TR2                       EXTI_RTSR_TR2_Msk                  /*!< Rising trigger event configuration bit of line 2 */
2592
#define EXTI_RTSR_TR3_Pos                   (3U)                               
50 mjames 2593
#define EXTI_RTSR_TR3_Msk                   (0x1UL << EXTI_RTSR_TR3_Pos)        /*!< 0x00000008 */
30 mjames 2594
#define EXTI_RTSR_TR3                       EXTI_RTSR_TR3_Msk                  /*!< Rising trigger event configuration bit of line 3 */
2595
#define EXTI_RTSR_TR4_Pos                   (4U)                               
50 mjames 2596
#define EXTI_RTSR_TR4_Msk                   (0x1UL << EXTI_RTSR_TR4_Pos)        /*!< 0x00000010 */
30 mjames 2597
#define EXTI_RTSR_TR4                       EXTI_RTSR_TR4_Msk                  /*!< Rising trigger event configuration bit of line 4 */
2598
#define EXTI_RTSR_TR5_Pos                   (5U)                               
50 mjames 2599
#define EXTI_RTSR_TR5_Msk                   (0x1UL << EXTI_RTSR_TR5_Pos)        /*!< 0x00000020 */
30 mjames 2600
#define EXTI_RTSR_TR5                       EXTI_RTSR_TR5_Msk                  /*!< Rising trigger event configuration bit of line 5 */
2601
#define EXTI_RTSR_TR6_Pos                   (6U)                               
50 mjames 2602
#define EXTI_RTSR_TR6_Msk                   (0x1UL << EXTI_RTSR_TR6_Pos)        /*!< 0x00000040 */
30 mjames 2603
#define EXTI_RTSR_TR6                       EXTI_RTSR_TR6_Msk                  /*!< Rising trigger event configuration bit of line 6 */
2604
#define EXTI_RTSR_TR7_Pos                   (7U)                               
50 mjames 2605
#define EXTI_RTSR_TR7_Msk                   (0x1UL << EXTI_RTSR_TR7_Pos)        /*!< 0x00000080 */
30 mjames 2606
#define EXTI_RTSR_TR7                       EXTI_RTSR_TR7_Msk                  /*!< Rising trigger event configuration bit of line 7 */
2607
#define EXTI_RTSR_TR8_Pos                   (8U)                               
50 mjames 2608
#define EXTI_RTSR_TR8_Msk                   (0x1UL << EXTI_RTSR_TR8_Pos)        /*!< 0x00000100 */
30 mjames 2609
#define EXTI_RTSR_TR8                       EXTI_RTSR_TR8_Msk                  /*!< Rising trigger event configuration bit of line 8 */
2610
#define EXTI_RTSR_TR9_Pos                   (9U)                               
50 mjames 2611
#define EXTI_RTSR_TR9_Msk                   (0x1UL << EXTI_RTSR_TR9_Pos)        /*!< 0x00000200 */
30 mjames 2612
#define EXTI_RTSR_TR9                       EXTI_RTSR_TR9_Msk                  /*!< Rising trigger event configuration bit of line 9 */
2613
#define EXTI_RTSR_TR10_Pos                  (10U)                              
50 mjames 2614
#define EXTI_RTSR_TR10_Msk                  (0x1UL << EXTI_RTSR_TR10_Pos)       /*!< 0x00000400 */
30 mjames 2615
#define EXTI_RTSR_TR10                      EXTI_RTSR_TR10_Msk                 /*!< Rising trigger event configuration bit of line 10 */
2616
#define EXTI_RTSR_TR11_Pos                  (11U)                              
50 mjames 2617
#define EXTI_RTSR_TR11_Msk                  (0x1UL << EXTI_RTSR_TR11_Pos)       /*!< 0x00000800 */
30 mjames 2618
#define EXTI_RTSR_TR11                      EXTI_RTSR_TR11_Msk                 /*!< Rising trigger event configuration bit of line 11 */
2619
#define EXTI_RTSR_TR12_Pos                  (12U)                              
50 mjames 2620
#define EXTI_RTSR_TR12_Msk                  (0x1UL << EXTI_RTSR_TR12_Pos)       /*!< 0x00001000 */
30 mjames 2621
#define EXTI_RTSR_TR12                      EXTI_RTSR_TR12_Msk                 /*!< Rising trigger event configuration bit of line 12 */
2622
#define EXTI_RTSR_TR13_Pos                  (13U)                              
50 mjames 2623
#define EXTI_RTSR_TR13_Msk                  (0x1UL << EXTI_RTSR_TR13_Pos)       /*!< 0x00002000 */
30 mjames 2624
#define EXTI_RTSR_TR13                      EXTI_RTSR_TR13_Msk                 /*!< Rising trigger event configuration bit of line 13 */
2625
#define EXTI_RTSR_TR14_Pos                  (14U)                              
50 mjames 2626
#define EXTI_RTSR_TR14_Msk                  (0x1UL << EXTI_RTSR_TR14_Pos)       /*!< 0x00004000 */
30 mjames 2627
#define EXTI_RTSR_TR14                      EXTI_RTSR_TR14_Msk                 /*!< Rising trigger event configuration bit of line 14 */
2628
#define EXTI_RTSR_TR15_Pos                  (15U)                              
50 mjames 2629
#define EXTI_RTSR_TR15_Msk                  (0x1UL << EXTI_RTSR_TR15_Pos)       /*!< 0x00008000 */
30 mjames 2630
#define EXTI_RTSR_TR15                      EXTI_RTSR_TR15_Msk                 /*!< Rising trigger event configuration bit of line 15 */
2631
#define EXTI_RTSR_TR16_Pos                  (16U)                              
50 mjames 2632
#define EXTI_RTSR_TR16_Msk                  (0x1UL << EXTI_RTSR_TR16_Pos)       /*!< 0x00010000 */
30 mjames 2633
#define EXTI_RTSR_TR16                      EXTI_RTSR_TR16_Msk                 /*!< Rising trigger event configuration bit of line 16 */
2634
#define EXTI_RTSR_TR17_Pos                  (17U)                              
50 mjames 2635
#define EXTI_RTSR_TR17_Msk                  (0x1UL << EXTI_RTSR_TR17_Pos)       /*!< 0x00020000 */
30 mjames 2636
#define EXTI_RTSR_TR17                      EXTI_RTSR_TR17_Msk                 /*!< Rising trigger event configuration bit of line 17 */
2637
#define EXTI_RTSR_TR18_Pos                  (18U)                              
50 mjames 2638
#define EXTI_RTSR_TR18_Msk                  (0x1UL << EXTI_RTSR_TR18_Pos)       /*!< 0x00040000 */
30 mjames 2639
#define EXTI_RTSR_TR18                      EXTI_RTSR_TR18_Msk                 /*!< Rising trigger event configuration bit of line 18 */
2640
#define EXTI_RTSR_TR19_Pos                  (19U)                              
50 mjames 2641
#define EXTI_RTSR_TR19_Msk                  (0x1UL << EXTI_RTSR_TR19_Pos)       /*!< 0x00080000 */
30 mjames 2642
#define EXTI_RTSR_TR19                      EXTI_RTSR_TR19_Msk                 /*!< Rising trigger event configuration bit of line 19 */
2643
#define EXTI_RTSR_TR20_Pos                  (20U)                              
50 mjames 2644
#define EXTI_RTSR_TR20_Msk                  (0x1UL << EXTI_RTSR_TR20_Pos)       /*!< 0x00100000 */
30 mjames 2645
#define EXTI_RTSR_TR20                      EXTI_RTSR_TR20_Msk                 /*!< Rising trigger event configuration bit of line 20 */
2646
#define EXTI_RTSR_TR21_Pos                  (21U)                              
50 mjames 2647
#define EXTI_RTSR_TR21_Msk                  (0x1UL << EXTI_RTSR_TR21_Pos)       /*!< 0x00200000 */
30 mjames 2648
#define EXTI_RTSR_TR21                      EXTI_RTSR_TR21_Msk                 /*!< Rising trigger event configuration bit of line 21 */
2649
#define EXTI_RTSR_TR22_Pos                  (22U)                              
50 mjames 2650
#define EXTI_RTSR_TR22_Msk                  (0x1UL << EXTI_RTSR_TR22_Pos)       /*!< 0x00400000 */
30 mjames 2651
#define EXTI_RTSR_TR22                      EXTI_RTSR_TR22_Msk                 /*!< Rising trigger event configuration bit of line 22 */
2652
#define EXTI_RTSR_TR23_Pos                  (23U)                              
50 mjames 2653
#define EXTI_RTSR_TR23_Msk                  (0x1UL << EXTI_RTSR_TR23_Pos)       /*!< 0x00800000 */
30 mjames 2654
#define EXTI_RTSR_TR23                      EXTI_RTSR_TR23_Msk                 /*!< Rising trigger event configuration bit of line 23 */
2655
 
2656
/* References Defines */
2657
#define  EXTI_RTSR_RT0 EXTI_RTSR_TR0
2658
#define  EXTI_RTSR_RT1 EXTI_RTSR_TR1
2659
#define  EXTI_RTSR_RT2 EXTI_RTSR_TR2
2660
#define  EXTI_RTSR_RT3 EXTI_RTSR_TR3
2661
#define  EXTI_RTSR_RT4 EXTI_RTSR_TR4
2662
#define  EXTI_RTSR_RT5 EXTI_RTSR_TR5
2663
#define  EXTI_RTSR_RT6 EXTI_RTSR_TR6
2664
#define  EXTI_RTSR_RT7 EXTI_RTSR_TR7
2665
#define  EXTI_RTSR_RT8 EXTI_RTSR_TR8
2666
#define  EXTI_RTSR_RT9 EXTI_RTSR_TR9
2667
#define  EXTI_RTSR_RT10 EXTI_RTSR_TR10
2668
#define  EXTI_RTSR_RT11 EXTI_RTSR_TR11
2669
#define  EXTI_RTSR_RT12 EXTI_RTSR_TR12
2670
#define  EXTI_RTSR_RT13 EXTI_RTSR_TR13
2671
#define  EXTI_RTSR_RT14 EXTI_RTSR_TR14
2672
#define  EXTI_RTSR_RT15 EXTI_RTSR_TR15
2673
#define  EXTI_RTSR_RT16 EXTI_RTSR_TR16
2674
#define  EXTI_RTSR_RT17 EXTI_RTSR_TR17
2675
#define  EXTI_RTSR_RT18 EXTI_RTSR_TR18
2676
#define  EXTI_RTSR_RT19 EXTI_RTSR_TR19
2677
#define  EXTI_RTSR_RT20 EXTI_RTSR_TR20
2678
#define  EXTI_RTSR_RT21 EXTI_RTSR_TR21
2679
#define  EXTI_RTSR_RT22 EXTI_RTSR_TR22
2680
#define  EXTI_RTSR_RT23 EXTI_RTSR_TR23
2681
 
2682
/******************  Bit definition for EXTI_FTSR register  *******************/
2683
#define EXTI_FTSR_TR0_Pos                   (0U)                               
50 mjames 2684
#define EXTI_FTSR_TR0_Msk                   (0x1UL << EXTI_FTSR_TR0_Pos)        /*!< 0x00000001 */
30 mjames 2685
#define EXTI_FTSR_TR0                       EXTI_FTSR_TR0_Msk                  /*!< Falling trigger event configuration bit of line 0 */
2686
#define EXTI_FTSR_TR1_Pos                   (1U)                               
50 mjames 2687
#define EXTI_FTSR_TR1_Msk                   (0x1UL << EXTI_FTSR_TR1_Pos)        /*!< 0x00000002 */
30 mjames 2688
#define EXTI_FTSR_TR1                       EXTI_FTSR_TR1_Msk                  /*!< Falling trigger event configuration bit of line 1 */
2689
#define EXTI_FTSR_TR2_Pos                   (2U)                               
50 mjames 2690
#define EXTI_FTSR_TR2_Msk                   (0x1UL << EXTI_FTSR_TR2_Pos)        /*!< 0x00000004 */
30 mjames 2691
#define EXTI_FTSR_TR2                       EXTI_FTSR_TR2_Msk                  /*!< Falling trigger event configuration bit of line 2 */
2692
#define EXTI_FTSR_TR3_Pos                   (3U)                               
50 mjames 2693
#define EXTI_FTSR_TR3_Msk                   (0x1UL << EXTI_FTSR_TR3_Pos)        /*!< 0x00000008 */
30 mjames 2694
#define EXTI_FTSR_TR3                       EXTI_FTSR_TR3_Msk                  /*!< Falling trigger event configuration bit of line 3 */
2695
#define EXTI_FTSR_TR4_Pos                   (4U)                               
50 mjames 2696
#define EXTI_FTSR_TR4_Msk                   (0x1UL << EXTI_FTSR_TR4_Pos)        /*!< 0x00000010 */
30 mjames 2697
#define EXTI_FTSR_TR4                       EXTI_FTSR_TR4_Msk                  /*!< Falling trigger event configuration bit of line 4 */
2698
#define EXTI_FTSR_TR5_Pos                   (5U)                               
50 mjames 2699
#define EXTI_FTSR_TR5_Msk                   (0x1UL << EXTI_FTSR_TR5_Pos)        /*!< 0x00000020 */
30 mjames 2700
#define EXTI_FTSR_TR5                       EXTI_FTSR_TR5_Msk                  /*!< Falling trigger event configuration bit of line 5 */
2701
#define EXTI_FTSR_TR6_Pos                   (6U)                               
50 mjames 2702
#define EXTI_FTSR_TR6_Msk                   (0x1UL << EXTI_FTSR_TR6_Pos)        /*!< 0x00000040 */
30 mjames 2703
#define EXTI_FTSR_TR6                       EXTI_FTSR_TR6_Msk                  /*!< Falling trigger event configuration bit of line 6 */
2704
#define EXTI_FTSR_TR7_Pos                   (7U)                               
50 mjames 2705
#define EXTI_FTSR_TR7_Msk                   (0x1UL << EXTI_FTSR_TR7_Pos)        /*!< 0x00000080 */
30 mjames 2706
#define EXTI_FTSR_TR7                       EXTI_FTSR_TR7_Msk                  /*!< Falling trigger event configuration bit of line 7 */
2707
#define EXTI_FTSR_TR8_Pos                   (8U)                               
50 mjames 2708
#define EXTI_FTSR_TR8_Msk                   (0x1UL << EXTI_FTSR_TR8_Pos)        /*!< 0x00000100 */
30 mjames 2709
#define EXTI_FTSR_TR8                       EXTI_FTSR_TR8_Msk                  /*!< Falling trigger event configuration bit of line 8 */
2710
#define EXTI_FTSR_TR9_Pos                   (9U)                               
50 mjames 2711
#define EXTI_FTSR_TR9_Msk                   (0x1UL << EXTI_FTSR_TR9_Pos)        /*!< 0x00000200 */
30 mjames 2712
#define EXTI_FTSR_TR9                       EXTI_FTSR_TR9_Msk                  /*!< Falling trigger event configuration bit of line 9 */
2713
#define EXTI_FTSR_TR10_Pos                  (10U)                              
50 mjames 2714
#define EXTI_FTSR_TR10_Msk                  (0x1UL << EXTI_FTSR_TR10_Pos)       /*!< 0x00000400 */
30 mjames 2715
#define EXTI_FTSR_TR10                      EXTI_FTSR_TR10_Msk                 /*!< Falling trigger event configuration bit of line 10 */
2716
#define EXTI_FTSR_TR11_Pos                  (11U)                              
50 mjames 2717
#define EXTI_FTSR_TR11_Msk                  (0x1UL << EXTI_FTSR_TR11_Pos)       /*!< 0x00000800 */
30 mjames 2718
#define EXTI_FTSR_TR11                      EXTI_FTSR_TR11_Msk                 /*!< Falling trigger event configuration bit of line 11 */
2719
#define EXTI_FTSR_TR12_Pos                  (12U)                              
50 mjames 2720
#define EXTI_FTSR_TR12_Msk                  (0x1UL << EXTI_FTSR_TR12_Pos)       /*!< 0x00001000 */
30 mjames 2721
#define EXTI_FTSR_TR12                      EXTI_FTSR_TR12_Msk                 /*!< Falling trigger event configuration bit of line 12 */
2722
#define EXTI_FTSR_TR13_Pos                  (13U)                              
50 mjames 2723
#define EXTI_FTSR_TR13_Msk                  (0x1UL << EXTI_FTSR_TR13_Pos)       /*!< 0x00002000 */
30 mjames 2724
#define EXTI_FTSR_TR13                      EXTI_FTSR_TR13_Msk                 /*!< Falling trigger event configuration bit of line 13 */
2725
#define EXTI_FTSR_TR14_Pos                  (14U)                              
50 mjames 2726
#define EXTI_FTSR_TR14_Msk                  (0x1UL << EXTI_FTSR_TR14_Pos)       /*!< 0x00004000 */
30 mjames 2727
#define EXTI_FTSR_TR14                      EXTI_FTSR_TR14_Msk                 /*!< Falling trigger event configuration bit of line 14 */
2728
#define EXTI_FTSR_TR15_Pos                  (15U)                              
50 mjames 2729
#define EXTI_FTSR_TR15_Msk                  (0x1UL << EXTI_FTSR_TR15_Pos)       /*!< 0x00008000 */
30 mjames 2730
#define EXTI_FTSR_TR15                      EXTI_FTSR_TR15_Msk                 /*!< Falling trigger event configuration bit of line 15 */
2731
#define EXTI_FTSR_TR16_Pos                  (16U)                              
50 mjames 2732
#define EXTI_FTSR_TR16_Msk                  (0x1UL << EXTI_FTSR_TR16_Pos)       /*!< 0x00010000 */
30 mjames 2733
#define EXTI_FTSR_TR16                      EXTI_FTSR_TR16_Msk                 /*!< Falling trigger event configuration bit of line 16 */
2734
#define EXTI_FTSR_TR17_Pos                  (17U)                              
50 mjames 2735
#define EXTI_FTSR_TR17_Msk                  (0x1UL << EXTI_FTSR_TR17_Pos)       /*!< 0x00020000 */
30 mjames 2736
#define EXTI_FTSR_TR17                      EXTI_FTSR_TR17_Msk                 /*!< Falling trigger event configuration bit of line 17 */
2737
#define EXTI_FTSR_TR18_Pos                  (18U)                              
50 mjames 2738
#define EXTI_FTSR_TR18_Msk                  (0x1UL << EXTI_FTSR_TR18_Pos)       /*!< 0x00040000 */
30 mjames 2739
#define EXTI_FTSR_TR18                      EXTI_FTSR_TR18_Msk                 /*!< Falling trigger event configuration bit of line 18 */
2740
#define EXTI_FTSR_TR19_Pos                  (19U)                              
50 mjames 2741
#define EXTI_FTSR_TR19_Msk                  (0x1UL << EXTI_FTSR_TR19_Pos)       /*!< 0x00080000 */
30 mjames 2742
#define EXTI_FTSR_TR19                      EXTI_FTSR_TR19_Msk                 /*!< Falling trigger event configuration bit of line 19 */
2743
#define EXTI_FTSR_TR20_Pos                  (20U)                              
50 mjames 2744
#define EXTI_FTSR_TR20_Msk                  (0x1UL << EXTI_FTSR_TR20_Pos)       /*!< 0x00100000 */
30 mjames 2745
#define EXTI_FTSR_TR20                      EXTI_FTSR_TR20_Msk                 /*!< Falling trigger event configuration bit of line 20 */
2746
#define EXTI_FTSR_TR21_Pos                  (21U)                              
50 mjames 2747
#define EXTI_FTSR_TR21_Msk                  (0x1UL << EXTI_FTSR_TR21_Pos)       /*!< 0x00200000 */
30 mjames 2748
#define EXTI_FTSR_TR21                      EXTI_FTSR_TR21_Msk                 /*!< Falling trigger event configuration bit of line 21 */
2749
#define EXTI_FTSR_TR22_Pos                  (22U)                              
50 mjames 2750
#define EXTI_FTSR_TR22_Msk                  (0x1UL << EXTI_FTSR_TR22_Pos)       /*!< 0x00400000 */
30 mjames 2751
#define EXTI_FTSR_TR22                      EXTI_FTSR_TR22_Msk                 /*!< Falling trigger event configuration bit of line 22 */
2752
#define EXTI_FTSR_TR23_Pos                  (23U)                              
50 mjames 2753
#define EXTI_FTSR_TR23_Msk                  (0x1UL << EXTI_FTSR_TR23_Pos)       /*!< 0x00800000 */
30 mjames 2754
#define EXTI_FTSR_TR23                      EXTI_FTSR_TR23_Msk                 /*!< Falling trigger event configuration bit of line 23 */
2755
 
2756
/* References Defines */
2757
#define  EXTI_FTSR_FT0 EXTI_FTSR_TR0
2758
#define  EXTI_FTSR_FT1 EXTI_FTSR_TR1
2759
#define  EXTI_FTSR_FT2 EXTI_FTSR_TR2
2760
#define  EXTI_FTSR_FT3 EXTI_FTSR_TR3
2761
#define  EXTI_FTSR_FT4 EXTI_FTSR_TR4
2762
#define  EXTI_FTSR_FT5 EXTI_FTSR_TR5
2763
#define  EXTI_FTSR_FT6 EXTI_FTSR_TR6
2764
#define  EXTI_FTSR_FT7 EXTI_FTSR_TR7
2765
#define  EXTI_FTSR_FT8 EXTI_FTSR_TR8
2766
#define  EXTI_FTSR_FT9 EXTI_FTSR_TR9
2767
#define  EXTI_FTSR_FT10 EXTI_FTSR_TR10
2768
#define  EXTI_FTSR_FT11 EXTI_FTSR_TR11
2769
#define  EXTI_FTSR_FT12 EXTI_FTSR_TR12
2770
#define  EXTI_FTSR_FT13 EXTI_FTSR_TR13
2771
#define  EXTI_FTSR_FT14 EXTI_FTSR_TR14
2772
#define  EXTI_FTSR_FT15 EXTI_FTSR_TR15
2773
#define  EXTI_FTSR_FT16 EXTI_FTSR_TR16
2774
#define  EXTI_FTSR_FT17 EXTI_FTSR_TR17
2775
#define  EXTI_FTSR_FT18 EXTI_FTSR_TR18
2776
#define  EXTI_FTSR_FT19 EXTI_FTSR_TR19
2777
#define  EXTI_FTSR_FT20 EXTI_FTSR_TR20
2778
#define  EXTI_FTSR_FT21 EXTI_FTSR_TR21
2779
#define  EXTI_FTSR_FT22 EXTI_FTSR_TR22
2780
#define  EXTI_FTSR_FT23 EXTI_FTSR_TR23
2781
 
2782
/******************  Bit definition for EXTI_SWIER register  ******************/
2783
#define EXTI_SWIER_SWIER0_Pos               (0U)                               
50 mjames 2784
#define EXTI_SWIER_SWIER0_Msk               (0x1UL << EXTI_SWIER_SWIER0_Pos)    /*!< 0x00000001 */
30 mjames 2785
#define EXTI_SWIER_SWIER0                   EXTI_SWIER_SWIER0_Msk              /*!< Software Interrupt on line 0 */
2786
#define EXTI_SWIER_SWIER1_Pos               (1U)                               
50 mjames 2787
#define EXTI_SWIER_SWIER1_Msk               (0x1UL << EXTI_SWIER_SWIER1_Pos)    /*!< 0x00000002 */
30 mjames 2788
#define EXTI_SWIER_SWIER1                   EXTI_SWIER_SWIER1_Msk              /*!< Software Interrupt on line 1 */
2789
#define EXTI_SWIER_SWIER2_Pos               (2U)                               
50 mjames 2790
#define EXTI_SWIER_SWIER2_Msk               (0x1UL << EXTI_SWIER_SWIER2_Pos)    /*!< 0x00000004 */
30 mjames 2791
#define EXTI_SWIER_SWIER2                   EXTI_SWIER_SWIER2_Msk              /*!< Software Interrupt on line 2 */
2792
#define EXTI_SWIER_SWIER3_Pos               (3U)                               
50 mjames 2793
#define EXTI_SWIER_SWIER3_Msk               (0x1UL << EXTI_SWIER_SWIER3_Pos)    /*!< 0x00000008 */
30 mjames 2794
#define EXTI_SWIER_SWIER3                   EXTI_SWIER_SWIER3_Msk              /*!< Software Interrupt on line 3 */
2795
#define EXTI_SWIER_SWIER4_Pos               (4U)                               
50 mjames 2796
#define EXTI_SWIER_SWIER4_Msk               (0x1UL << EXTI_SWIER_SWIER4_Pos)    /*!< 0x00000010 */
30 mjames 2797
#define EXTI_SWIER_SWIER4                   EXTI_SWIER_SWIER4_Msk              /*!< Software Interrupt on line 4 */
2798
#define EXTI_SWIER_SWIER5_Pos               (5U)                               
50 mjames 2799
#define EXTI_SWIER_SWIER5_Msk               (0x1UL << EXTI_SWIER_SWIER5_Pos)    /*!< 0x00000020 */
30 mjames 2800
#define EXTI_SWIER_SWIER5                   EXTI_SWIER_SWIER5_Msk              /*!< Software Interrupt on line 5 */
2801
#define EXTI_SWIER_SWIER6_Pos               (6U)                               
50 mjames 2802
#define EXTI_SWIER_SWIER6_Msk               (0x1UL << EXTI_SWIER_SWIER6_Pos)    /*!< 0x00000040 */
30 mjames 2803
#define EXTI_SWIER_SWIER6                   EXTI_SWIER_SWIER6_Msk              /*!< Software Interrupt on line 6 */
2804
#define EXTI_SWIER_SWIER7_Pos               (7U)                               
50 mjames 2805
#define EXTI_SWIER_SWIER7_Msk               (0x1UL << EXTI_SWIER_SWIER7_Pos)    /*!< 0x00000080 */
30 mjames 2806
#define EXTI_SWIER_SWIER7                   EXTI_SWIER_SWIER7_Msk              /*!< Software Interrupt on line 7 */
2807
#define EXTI_SWIER_SWIER8_Pos               (8U)                               
50 mjames 2808
#define EXTI_SWIER_SWIER8_Msk               (0x1UL << EXTI_SWIER_SWIER8_Pos)    /*!< 0x00000100 */
30 mjames 2809
#define EXTI_SWIER_SWIER8                   EXTI_SWIER_SWIER8_Msk              /*!< Software Interrupt on line 8 */
2810
#define EXTI_SWIER_SWIER9_Pos               (9U)                               
50 mjames 2811
#define EXTI_SWIER_SWIER9_Msk               (0x1UL << EXTI_SWIER_SWIER9_Pos)    /*!< 0x00000200 */
30 mjames 2812
#define EXTI_SWIER_SWIER9                   EXTI_SWIER_SWIER9_Msk              /*!< Software Interrupt on line 9 */
2813
#define EXTI_SWIER_SWIER10_Pos              (10U)                              
50 mjames 2814
#define EXTI_SWIER_SWIER10_Msk              (0x1UL << EXTI_SWIER_SWIER10_Pos)   /*!< 0x00000400 */
30 mjames 2815
#define EXTI_SWIER_SWIER10                  EXTI_SWIER_SWIER10_Msk             /*!< Software Interrupt on line 10 */
2816
#define EXTI_SWIER_SWIER11_Pos              (11U)                              
50 mjames 2817
#define EXTI_SWIER_SWIER11_Msk              (0x1UL << EXTI_SWIER_SWIER11_Pos)   /*!< 0x00000800 */
30 mjames 2818
#define EXTI_SWIER_SWIER11                  EXTI_SWIER_SWIER11_Msk             /*!< Software Interrupt on line 11 */
2819
#define EXTI_SWIER_SWIER12_Pos              (12U)                              
50 mjames 2820
#define EXTI_SWIER_SWIER12_Msk              (0x1UL << EXTI_SWIER_SWIER12_Pos)   /*!< 0x00001000 */
30 mjames 2821
#define EXTI_SWIER_SWIER12                  EXTI_SWIER_SWIER12_Msk             /*!< Software Interrupt on line 12 */
2822
#define EXTI_SWIER_SWIER13_Pos              (13U)                              
50 mjames 2823
#define EXTI_SWIER_SWIER13_Msk              (0x1UL << EXTI_SWIER_SWIER13_Pos)   /*!< 0x00002000 */
30 mjames 2824
#define EXTI_SWIER_SWIER13                  EXTI_SWIER_SWIER13_Msk             /*!< Software Interrupt on line 13 */
2825
#define EXTI_SWIER_SWIER14_Pos              (14U)                              
50 mjames 2826
#define EXTI_SWIER_SWIER14_Msk              (0x1UL << EXTI_SWIER_SWIER14_Pos)   /*!< 0x00004000 */
30 mjames 2827
#define EXTI_SWIER_SWIER14                  EXTI_SWIER_SWIER14_Msk             /*!< Software Interrupt on line 14 */
2828
#define EXTI_SWIER_SWIER15_Pos              (15U)                              
50 mjames 2829
#define EXTI_SWIER_SWIER15_Msk              (0x1UL << EXTI_SWIER_SWIER15_Pos)   /*!< 0x00008000 */
30 mjames 2830
#define EXTI_SWIER_SWIER15                  EXTI_SWIER_SWIER15_Msk             /*!< Software Interrupt on line 15 */
2831
#define EXTI_SWIER_SWIER16_Pos              (16U)                              
50 mjames 2832
#define EXTI_SWIER_SWIER16_Msk              (0x1UL << EXTI_SWIER_SWIER16_Pos)   /*!< 0x00010000 */
30 mjames 2833
#define EXTI_SWIER_SWIER16                  EXTI_SWIER_SWIER16_Msk             /*!< Software Interrupt on line 16 */
2834
#define EXTI_SWIER_SWIER17_Pos              (17U)                              
50 mjames 2835
#define EXTI_SWIER_SWIER17_Msk              (0x1UL << EXTI_SWIER_SWIER17_Pos)   /*!< 0x00020000 */
30 mjames 2836
#define EXTI_SWIER_SWIER17                  EXTI_SWIER_SWIER17_Msk             /*!< Software Interrupt on line 17 */
2837
#define EXTI_SWIER_SWIER18_Pos              (18U)                              
50 mjames 2838
#define EXTI_SWIER_SWIER18_Msk              (0x1UL << EXTI_SWIER_SWIER18_Pos)   /*!< 0x00040000 */
30 mjames 2839
#define EXTI_SWIER_SWIER18                  EXTI_SWIER_SWIER18_Msk             /*!< Software Interrupt on line 18 */
2840
#define EXTI_SWIER_SWIER19_Pos              (19U)                              
50 mjames 2841
#define EXTI_SWIER_SWIER19_Msk              (0x1UL << EXTI_SWIER_SWIER19_Pos)   /*!< 0x00080000 */
30 mjames 2842
#define EXTI_SWIER_SWIER19                  EXTI_SWIER_SWIER19_Msk             /*!< Software Interrupt on line 19 */
2843
#define EXTI_SWIER_SWIER20_Pos              (20U)                              
50 mjames 2844
#define EXTI_SWIER_SWIER20_Msk              (0x1UL << EXTI_SWIER_SWIER20_Pos)   /*!< 0x00100000 */
30 mjames 2845
#define EXTI_SWIER_SWIER20                  EXTI_SWIER_SWIER20_Msk             /*!< Software Interrupt on line 20 */
2846
#define EXTI_SWIER_SWIER21_Pos              (21U)                              
50 mjames 2847
#define EXTI_SWIER_SWIER21_Msk              (0x1UL << EXTI_SWIER_SWIER21_Pos)   /*!< 0x00200000 */
30 mjames 2848
#define EXTI_SWIER_SWIER21                  EXTI_SWIER_SWIER21_Msk             /*!< Software Interrupt on line 21 */
2849
#define EXTI_SWIER_SWIER22_Pos              (22U)                              
50 mjames 2850
#define EXTI_SWIER_SWIER22_Msk              (0x1UL << EXTI_SWIER_SWIER22_Pos)   /*!< 0x00400000 */
30 mjames 2851
#define EXTI_SWIER_SWIER22                  EXTI_SWIER_SWIER22_Msk             /*!< Software Interrupt on line 22 */
2852
#define EXTI_SWIER_SWIER23_Pos              (23U)                              
50 mjames 2853
#define EXTI_SWIER_SWIER23_Msk              (0x1UL << EXTI_SWIER_SWIER23_Pos)   /*!< 0x00800000 */
30 mjames 2854
#define EXTI_SWIER_SWIER23                  EXTI_SWIER_SWIER23_Msk             /*!< Software Interrupt on line 23 */
2855
 
2856
/* References Defines */
2857
#define  EXTI_SWIER_SWI0 EXTI_SWIER_SWIER0
2858
#define  EXTI_SWIER_SWI1 EXTI_SWIER_SWIER1
2859
#define  EXTI_SWIER_SWI2 EXTI_SWIER_SWIER2
2860
#define  EXTI_SWIER_SWI3 EXTI_SWIER_SWIER3
2861
#define  EXTI_SWIER_SWI4 EXTI_SWIER_SWIER4
2862
#define  EXTI_SWIER_SWI5 EXTI_SWIER_SWIER5
2863
#define  EXTI_SWIER_SWI6 EXTI_SWIER_SWIER6
2864
#define  EXTI_SWIER_SWI7 EXTI_SWIER_SWIER7
2865
#define  EXTI_SWIER_SWI8 EXTI_SWIER_SWIER8
2866
#define  EXTI_SWIER_SWI9 EXTI_SWIER_SWIER9
2867
#define  EXTI_SWIER_SWI10 EXTI_SWIER_SWIER10
2868
#define  EXTI_SWIER_SWI11 EXTI_SWIER_SWIER11
2869
#define  EXTI_SWIER_SWI12 EXTI_SWIER_SWIER12
2870
#define  EXTI_SWIER_SWI13 EXTI_SWIER_SWIER13
2871
#define  EXTI_SWIER_SWI14 EXTI_SWIER_SWIER14
2872
#define  EXTI_SWIER_SWI15 EXTI_SWIER_SWIER15
2873
#define  EXTI_SWIER_SWI16 EXTI_SWIER_SWIER16
2874
#define  EXTI_SWIER_SWI17 EXTI_SWIER_SWIER17
2875
#define  EXTI_SWIER_SWI18 EXTI_SWIER_SWIER18
2876
#define  EXTI_SWIER_SWI19 EXTI_SWIER_SWIER19
2877
#define  EXTI_SWIER_SWI20 EXTI_SWIER_SWIER20
2878
#define  EXTI_SWIER_SWI21 EXTI_SWIER_SWIER21
2879
#define  EXTI_SWIER_SWI22 EXTI_SWIER_SWIER22
2880
#define  EXTI_SWIER_SWI23 EXTI_SWIER_SWIER23
2881
 
2882
/*******************  Bit definition for EXTI_PR register  ********************/
2883
#define EXTI_PR_PR0_Pos                     (0U)                               
50 mjames 2884
#define EXTI_PR_PR0_Msk                     (0x1UL << EXTI_PR_PR0_Pos)          /*!< 0x00000001 */
30 mjames 2885
#define EXTI_PR_PR0                         EXTI_PR_PR0_Msk                    /*!< Pending bit for line 0 */
2886
#define EXTI_PR_PR1_Pos                     (1U)                               
50 mjames 2887
#define EXTI_PR_PR1_Msk                     (0x1UL << EXTI_PR_PR1_Pos)          /*!< 0x00000002 */
30 mjames 2888
#define EXTI_PR_PR1                         EXTI_PR_PR1_Msk                    /*!< Pending bit for line 1 */
2889
#define EXTI_PR_PR2_Pos                     (2U)                               
50 mjames 2890
#define EXTI_PR_PR2_Msk                     (0x1UL << EXTI_PR_PR2_Pos)          /*!< 0x00000004 */
30 mjames 2891
#define EXTI_PR_PR2                         EXTI_PR_PR2_Msk                    /*!< Pending bit for line 2 */
2892
#define EXTI_PR_PR3_Pos                     (3U)                               
50 mjames 2893
#define EXTI_PR_PR3_Msk                     (0x1UL << EXTI_PR_PR3_Pos)          /*!< 0x00000008 */
30 mjames 2894
#define EXTI_PR_PR3                         EXTI_PR_PR3_Msk                    /*!< Pending bit for line 3 */
2895
#define EXTI_PR_PR4_Pos                     (4U)                               
50 mjames 2896
#define EXTI_PR_PR4_Msk                     (0x1UL << EXTI_PR_PR4_Pos)          /*!< 0x00000010 */
30 mjames 2897
#define EXTI_PR_PR4                         EXTI_PR_PR4_Msk                    /*!< Pending bit for line 4 */
2898
#define EXTI_PR_PR5_Pos                     (5U)                               
50 mjames 2899
#define EXTI_PR_PR5_Msk                     (0x1UL << EXTI_PR_PR5_Pos)          /*!< 0x00000020 */
30 mjames 2900
#define EXTI_PR_PR5                         EXTI_PR_PR5_Msk                    /*!< Pending bit for line 5 */
2901
#define EXTI_PR_PR6_Pos                     (6U)                               
50 mjames 2902
#define EXTI_PR_PR6_Msk                     (0x1UL << EXTI_PR_PR6_Pos)          /*!< 0x00000040 */
30 mjames 2903
#define EXTI_PR_PR6                         EXTI_PR_PR6_Msk                    /*!< Pending bit for line 6 */
2904
#define EXTI_PR_PR7_Pos                     (7U)                               
50 mjames 2905
#define EXTI_PR_PR7_Msk                     (0x1UL << EXTI_PR_PR7_Pos)          /*!< 0x00000080 */
30 mjames 2906
#define EXTI_PR_PR7                         EXTI_PR_PR7_Msk                    /*!< Pending bit for line 7 */
2907
#define EXTI_PR_PR8_Pos                     (8U)                               
50 mjames 2908
#define EXTI_PR_PR8_Msk                     (0x1UL << EXTI_PR_PR8_Pos)          /*!< 0x00000100 */
30 mjames 2909
#define EXTI_PR_PR8                         EXTI_PR_PR8_Msk                    /*!< Pending bit for line 8 */
2910
#define EXTI_PR_PR9_Pos                     (9U)                               
50 mjames 2911
#define EXTI_PR_PR9_Msk                     (0x1UL << EXTI_PR_PR9_Pos)          /*!< 0x00000200 */
30 mjames 2912
#define EXTI_PR_PR9                         EXTI_PR_PR9_Msk                    /*!< Pending bit for line 9 */
2913
#define EXTI_PR_PR10_Pos                    (10U)                              
50 mjames 2914
#define EXTI_PR_PR10_Msk                    (0x1UL << EXTI_PR_PR10_Pos)         /*!< 0x00000400 */
30 mjames 2915
#define EXTI_PR_PR10                        EXTI_PR_PR10_Msk                   /*!< Pending bit for line 10 */
2916
#define EXTI_PR_PR11_Pos                    (11U)                              
50 mjames 2917
#define EXTI_PR_PR11_Msk                    (0x1UL << EXTI_PR_PR11_Pos)         /*!< 0x00000800 */
30 mjames 2918
#define EXTI_PR_PR11                        EXTI_PR_PR11_Msk                   /*!< Pending bit for line 11 */
2919
#define EXTI_PR_PR12_Pos                    (12U)                              
50 mjames 2920
#define EXTI_PR_PR12_Msk                    (0x1UL << EXTI_PR_PR12_Pos)         /*!< 0x00001000 */
30 mjames 2921
#define EXTI_PR_PR12                        EXTI_PR_PR12_Msk                   /*!< Pending bit for line 12 */
2922
#define EXTI_PR_PR13_Pos                    (13U)                              
50 mjames 2923
#define EXTI_PR_PR13_Msk                    (0x1UL << EXTI_PR_PR13_Pos)         /*!< 0x00002000 */
30 mjames 2924
#define EXTI_PR_PR13                        EXTI_PR_PR13_Msk                   /*!< Pending bit for line 13 */
2925
#define EXTI_PR_PR14_Pos                    (14U)                              
50 mjames 2926
#define EXTI_PR_PR14_Msk                    (0x1UL << EXTI_PR_PR14_Pos)         /*!< 0x00004000 */
30 mjames 2927
#define EXTI_PR_PR14                        EXTI_PR_PR14_Msk                   /*!< Pending bit for line 14 */
2928
#define EXTI_PR_PR15_Pos                    (15U)                              
50 mjames 2929
#define EXTI_PR_PR15_Msk                    (0x1UL << EXTI_PR_PR15_Pos)         /*!< 0x00008000 */
30 mjames 2930
#define EXTI_PR_PR15                        EXTI_PR_PR15_Msk                   /*!< Pending bit for line 15 */
2931
#define EXTI_PR_PR16_Pos                    (16U)                              
50 mjames 2932
#define EXTI_PR_PR16_Msk                    (0x1UL << EXTI_PR_PR16_Pos)         /*!< 0x00010000 */
30 mjames 2933
#define EXTI_PR_PR16                        EXTI_PR_PR16_Msk                   /*!< Pending bit for line 16 */
2934
#define EXTI_PR_PR17_Pos                    (17U)                              
50 mjames 2935
#define EXTI_PR_PR17_Msk                    (0x1UL << EXTI_PR_PR17_Pos)         /*!< 0x00020000 */
30 mjames 2936
#define EXTI_PR_PR17                        EXTI_PR_PR17_Msk                   /*!< Pending bit for line 17 */
2937
#define EXTI_PR_PR18_Pos                    (18U)                              
50 mjames 2938
#define EXTI_PR_PR18_Msk                    (0x1UL << EXTI_PR_PR18_Pos)         /*!< 0x00040000 */
30 mjames 2939
#define EXTI_PR_PR18                        EXTI_PR_PR18_Msk                   /*!< Pending bit for line 18 */
2940
#define EXTI_PR_PR19_Pos                    (19U)                              
50 mjames 2941
#define EXTI_PR_PR19_Msk                    (0x1UL << EXTI_PR_PR19_Pos)         /*!< 0x00080000 */
30 mjames 2942
#define EXTI_PR_PR19                        EXTI_PR_PR19_Msk                   /*!< Pending bit for line 19 */
2943
#define EXTI_PR_PR20_Pos                    (20U)                              
50 mjames 2944
#define EXTI_PR_PR20_Msk                    (0x1UL << EXTI_PR_PR20_Pos)         /*!< 0x00100000 */
30 mjames 2945
#define EXTI_PR_PR20                        EXTI_PR_PR20_Msk                   /*!< Pending bit for line 20 */
2946
#define EXTI_PR_PR21_Pos                    (21U)                              
50 mjames 2947
#define EXTI_PR_PR21_Msk                    (0x1UL << EXTI_PR_PR21_Pos)         /*!< 0x00200000 */
30 mjames 2948
#define EXTI_PR_PR21                        EXTI_PR_PR21_Msk                   /*!< Pending bit for line 21 */
2949
#define EXTI_PR_PR22_Pos                    (22U)                              
50 mjames 2950
#define EXTI_PR_PR22_Msk                    (0x1UL << EXTI_PR_PR22_Pos)         /*!< 0x00400000 */
30 mjames 2951
#define EXTI_PR_PR22                        EXTI_PR_PR22_Msk                   /*!< Pending bit for line 22 */
2952
#define EXTI_PR_PR23_Pos                    (23U)                              
50 mjames 2953
#define EXTI_PR_PR23_Msk                    (0x1UL << EXTI_PR_PR23_Pos)         /*!< 0x00800000 */
30 mjames 2954
#define EXTI_PR_PR23                        EXTI_PR_PR23_Msk                   /*!< Pending bit for line 23 */
2955
 
2956
/* References Defines */
2957
#define  EXTI_PR_PIF0 EXTI_PR_PR0
2958
#define  EXTI_PR_PIF1 EXTI_PR_PR1
2959
#define  EXTI_PR_PIF2 EXTI_PR_PR2
2960
#define  EXTI_PR_PIF3 EXTI_PR_PR3
2961
#define  EXTI_PR_PIF4 EXTI_PR_PR4
2962
#define  EXTI_PR_PIF5 EXTI_PR_PR5
2963
#define  EXTI_PR_PIF6 EXTI_PR_PR6
2964
#define  EXTI_PR_PIF7 EXTI_PR_PR7
2965
#define  EXTI_PR_PIF8 EXTI_PR_PR8
2966
#define  EXTI_PR_PIF9 EXTI_PR_PR9
2967
#define  EXTI_PR_PIF10 EXTI_PR_PR10
2968
#define  EXTI_PR_PIF11 EXTI_PR_PR11
2969
#define  EXTI_PR_PIF12 EXTI_PR_PR12
2970
#define  EXTI_PR_PIF13 EXTI_PR_PR13
2971
#define  EXTI_PR_PIF14 EXTI_PR_PR14
2972
#define  EXTI_PR_PIF15 EXTI_PR_PR15
2973
#define  EXTI_PR_PIF16 EXTI_PR_PR16
2974
#define  EXTI_PR_PIF17 EXTI_PR_PR17
2975
#define  EXTI_PR_PIF18 EXTI_PR_PR18
2976
#define  EXTI_PR_PIF19 EXTI_PR_PR19
2977
#define  EXTI_PR_PIF20 EXTI_PR_PR20
2978
#define  EXTI_PR_PIF21 EXTI_PR_PR21
2979
#define  EXTI_PR_PIF22 EXTI_PR_PR22
2980
#define  EXTI_PR_PIF23 EXTI_PR_PR23
2981
 
2982
/******************************************************************************/
2983
/*                                                                            */
2984
/*                FLASH, DATA EEPROM and Option Bytes Registers               */
2985
/*                        (FLASH, DATA_EEPROM, OB)                            */
2986
/*                                                                            */
2987
/******************************************************************************/
2988
 
2989
/*******************  Bit definition for FLASH_ACR register  ******************/
2990
#define FLASH_ACR_LATENCY_Pos                (0U)                              
50 mjames 2991
#define FLASH_ACR_LATENCY_Msk                (0x1UL << FLASH_ACR_LATENCY_Pos)   /*!< 0x00000001 */
30 mjames 2992
#define FLASH_ACR_LATENCY                    FLASH_ACR_LATENCY_Msk             /*!< Latency */
2993
#define FLASH_ACR_PRFTEN_Pos                 (1U)                              
50 mjames 2994
#define FLASH_ACR_PRFTEN_Msk                 (0x1UL << FLASH_ACR_PRFTEN_Pos)    /*!< 0x00000002 */
30 mjames 2995
#define FLASH_ACR_PRFTEN                     FLASH_ACR_PRFTEN_Msk              /*!< Prefetch Buffer Enable */
2996
#define FLASH_ACR_ACC64_Pos                  (2U)                              
50 mjames 2997
#define FLASH_ACR_ACC64_Msk                  (0x1UL << FLASH_ACR_ACC64_Pos)     /*!< 0x00000004 */
30 mjames 2998
#define FLASH_ACR_ACC64                      FLASH_ACR_ACC64_Msk               /*!< Access 64 bits */
2999
#define FLASH_ACR_SLEEP_PD_Pos               (3U)                              
50 mjames 3000
#define FLASH_ACR_SLEEP_PD_Msk               (0x1UL << FLASH_ACR_SLEEP_PD_Pos)  /*!< 0x00000008 */
30 mjames 3001
#define FLASH_ACR_SLEEP_PD                   FLASH_ACR_SLEEP_PD_Msk            /*!< Flash mode during sleep mode */
3002
#define FLASH_ACR_RUN_PD_Pos                 (4U)                              
50 mjames 3003
#define FLASH_ACR_RUN_PD_Msk                 (0x1UL << FLASH_ACR_RUN_PD_Pos)    /*!< 0x00000010 */
30 mjames 3004
#define FLASH_ACR_RUN_PD                     FLASH_ACR_RUN_PD_Msk              /*!< Flash mode during RUN mode */
3005
 
3006
/*******************  Bit definition for FLASH_PECR register  ******************/
3007
#define FLASH_PECR_PELOCK_Pos                (0U)                              
50 mjames 3008
#define FLASH_PECR_PELOCK_Msk                (0x1UL << FLASH_PECR_PELOCK_Pos)   /*!< 0x00000001 */
30 mjames 3009
#define FLASH_PECR_PELOCK                    FLASH_PECR_PELOCK_Msk             /*!< FLASH_PECR and Flash data Lock */
3010
#define FLASH_PECR_PRGLOCK_Pos               (1U)                              
50 mjames 3011
#define FLASH_PECR_PRGLOCK_Msk               (0x1UL << FLASH_PECR_PRGLOCK_Pos)  /*!< 0x00000002 */
30 mjames 3012
#define FLASH_PECR_PRGLOCK                   FLASH_PECR_PRGLOCK_Msk            /*!< Program matrix Lock */
3013
#define FLASH_PECR_OPTLOCK_Pos               (2U)                              
50 mjames 3014
#define FLASH_PECR_OPTLOCK_Msk               (0x1UL << FLASH_PECR_OPTLOCK_Pos)  /*!< 0x00000004 */
30 mjames 3015
#define FLASH_PECR_OPTLOCK                   FLASH_PECR_OPTLOCK_Msk            /*!< Option byte matrix Lock */
3016
#define FLASH_PECR_PROG_Pos                  (3U)                              
50 mjames 3017
#define FLASH_PECR_PROG_Msk                  (0x1UL << FLASH_PECR_PROG_Pos)     /*!< 0x00000008 */
30 mjames 3018
#define FLASH_PECR_PROG                      FLASH_PECR_PROG_Msk               /*!< Program matrix selection */
3019
#define FLASH_PECR_DATA_Pos                  (4U)                              
50 mjames 3020
#define FLASH_PECR_DATA_Msk                  (0x1UL << FLASH_PECR_DATA_Pos)     /*!< 0x00000010 */
30 mjames 3021
#define FLASH_PECR_DATA                      FLASH_PECR_DATA_Msk               /*!< Data matrix selection */
3022
#define FLASH_PECR_FTDW_Pos                  (8U)                              
50 mjames 3023
#define FLASH_PECR_FTDW_Msk                  (0x1UL << FLASH_PECR_FTDW_Pos)     /*!< 0x00000100 */
30 mjames 3024
#define FLASH_PECR_FTDW                      FLASH_PECR_FTDW_Msk               /*!< Fixed Time Data write for Word/Half Word/Byte programming */
3025
#define FLASH_PECR_ERASE_Pos                 (9U)                              
50 mjames 3026
#define FLASH_PECR_ERASE_Msk                 (0x1UL << FLASH_PECR_ERASE_Pos)    /*!< 0x00000200 */
30 mjames 3027
#define FLASH_PECR_ERASE                     FLASH_PECR_ERASE_Msk              /*!< Page erasing mode */
3028
#define FLASH_PECR_FPRG_Pos                  (10U)                             
50 mjames 3029
#define FLASH_PECR_FPRG_Msk                  (0x1UL << FLASH_PECR_FPRG_Pos)     /*!< 0x00000400 */
30 mjames 3030
#define FLASH_PECR_FPRG                      FLASH_PECR_FPRG_Msk               /*!< Fast Page/Half Page programming mode */
3031
#define FLASH_PECR_EOPIE_Pos                 (16U)                             
50 mjames 3032
#define FLASH_PECR_EOPIE_Msk                 (0x1UL << FLASH_PECR_EOPIE_Pos)    /*!< 0x00010000 */
30 mjames 3033
#define FLASH_PECR_EOPIE                     FLASH_PECR_EOPIE_Msk              /*!< End of programming interrupt */ 
3034
#define FLASH_PECR_ERRIE_Pos                 (17U)                             
50 mjames 3035
#define FLASH_PECR_ERRIE_Msk                 (0x1UL << FLASH_PECR_ERRIE_Pos)    /*!< 0x00020000 */
30 mjames 3036
#define FLASH_PECR_ERRIE                     FLASH_PECR_ERRIE_Msk              /*!< Error interrupt */ 
3037
#define FLASH_PECR_OBL_LAUNCH_Pos            (18U)                             
50 mjames 3038
#define FLASH_PECR_OBL_LAUNCH_Msk            (0x1UL << FLASH_PECR_OBL_LAUNCH_Pos) /*!< 0x00040000 */
30 mjames 3039
#define FLASH_PECR_OBL_LAUNCH                FLASH_PECR_OBL_LAUNCH_Msk         /*!< Launch the option byte loading */ 
3040
 
3041
/******************  Bit definition for FLASH_PDKEYR register  ******************/
3042
#define FLASH_PDKEYR_PDKEYR_Pos              (0U)                              
50 mjames 3043
#define FLASH_PDKEYR_PDKEYR_Msk              (0xFFFFFFFFUL << FLASH_PDKEYR_PDKEYR_Pos) /*!< 0xFFFFFFFF */
30 mjames 3044
#define FLASH_PDKEYR_PDKEYR                  FLASH_PDKEYR_PDKEYR_Msk           /*!< FLASH_PEC and data matrix Key */
3045
 
3046
/******************  Bit definition for FLASH_PEKEYR register  ******************/
3047
#define FLASH_PEKEYR_PEKEYR_Pos              (0U)                              
50 mjames 3048
#define FLASH_PEKEYR_PEKEYR_Msk              (0xFFFFFFFFUL << FLASH_PEKEYR_PEKEYR_Pos) /*!< 0xFFFFFFFF */
30 mjames 3049
#define FLASH_PEKEYR_PEKEYR                  FLASH_PEKEYR_PEKEYR_Msk           /*!< FLASH_PEC and data matrix Key */
3050
 
3051
/******************  Bit definition for FLASH_PRGKEYR register  ******************/
3052
#define FLASH_PRGKEYR_PRGKEYR_Pos            (0U)                              
50 mjames 3053
#define FLASH_PRGKEYR_PRGKEYR_Msk            (0xFFFFFFFFUL << FLASH_PRGKEYR_PRGKEYR_Pos) /*!< 0xFFFFFFFF */
30 mjames 3054
#define FLASH_PRGKEYR_PRGKEYR                FLASH_PRGKEYR_PRGKEYR_Msk         /*!< Program matrix Key */
3055
 
3056
/******************  Bit definition for FLASH_OPTKEYR register  ******************/
3057
#define FLASH_OPTKEYR_OPTKEYR_Pos            (0U)                              
50 mjames 3058
#define FLASH_OPTKEYR_OPTKEYR_Msk            (0xFFFFFFFFUL << FLASH_OPTKEYR_OPTKEYR_Pos) /*!< 0xFFFFFFFF */
30 mjames 3059
#define FLASH_OPTKEYR_OPTKEYR                FLASH_OPTKEYR_OPTKEYR_Msk         /*!< Option bytes matrix Key */
3060
 
3061
/******************  Bit definition for FLASH_SR register  *******************/
3062
#define FLASH_SR_BSY_Pos                     (0U)                              
50 mjames 3063
#define FLASH_SR_BSY_Msk                     (0x1UL << FLASH_SR_BSY_Pos)        /*!< 0x00000001 */
30 mjames 3064
#define FLASH_SR_BSY                         FLASH_SR_BSY_Msk                  /*!< Busy */
3065
#define FLASH_SR_EOP_Pos                     (1U)                              
50 mjames 3066
#define FLASH_SR_EOP_Msk                     (0x1UL << FLASH_SR_EOP_Pos)        /*!< 0x00000002 */
30 mjames 3067
#define FLASH_SR_EOP                         FLASH_SR_EOP_Msk                  /*!< End Of Programming*/
3068
#define FLASH_SR_ENDHV_Pos                   (2U)                              
50 mjames 3069
#define FLASH_SR_ENDHV_Msk                   (0x1UL << FLASH_SR_ENDHV_Pos)      /*!< 0x00000004 */
30 mjames 3070
#define FLASH_SR_ENDHV                       FLASH_SR_ENDHV_Msk                /*!< End of high voltage */
3071
#define FLASH_SR_READY_Pos                   (3U)                              
50 mjames 3072
#define FLASH_SR_READY_Msk                   (0x1UL << FLASH_SR_READY_Pos)      /*!< 0x00000008 */
30 mjames 3073
#define FLASH_SR_READY                       FLASH_SR_READY_Msk                /*!< Flash ready after low power mode */
3074
 
3075
#define FLASH_SR_WRPERR_Pos                  (8U)                              
50 mjames 3076
#define FLASH_SR_WRPERR_Msk                  (0x1UL << FLASH_SR_WRPERR_Pos)     /*!< 0x00000100 */
30 mjames 3077
#define FLASH_SR_WRPERR                      FLASH_SR_WRPERR_Msk               /*!< Write protected error */
3078
#define FLASH_SR_PGAERR_Pos                  (9U)                              
50 mjames 3079
#define FLASH_SR_PGAERR_Msk                  (0x1UL << FLASH_SR_PGAERR_Pos)     /*!< 0x00000200 */
30 mjames 3080
#define FLASH_SR_PGAERR                      FLASH_SR_PGAERR_Msk               /*!< Programming Alignment Error */
3081
#define FLASH_SR_SIZERR_Pos                  (10U)                             
50 mjames 3082
#define FLASH_SR_SIZERR_Msk                  (0x1UL << FLASH_SR_SIZERR_Pos)     /*!< 0x00000400 */
30 mjames 3083
#define FLASH_SR_SIZERR                      FLASH_SR_SIZERR_Msk               /*!< Size error */
3084
#define FLASH_SR_OPTVERR_Pos                 (11U)                             
50 mjames 3085
#define FLASH_SR_OPTVERR_Msk                 (0x1UL << FLASH_SR_OPTVERR_Pos)    /*!< 0x00000800 */
30 mjames 3086
#define FLASH_SR_OPTVERR                     FLASH_SR_OPTVERR_Msk              /*!< Option validity error */
3087
#define FLASH_SR_OPTVERRUSR_Pos              (12U)                             
50 mjames 3088
#define FLASH_SR_OPTVERRUSR_Msk              (0x1UL << FLASH_SR_OPTVERRUSR_Pos) /*!< 0x00001000 */
30 mjames 3089
#define FLASH_SR_OPTVERRUSR                  FLASH_SR_OPTVERRUSR_Msk           /*!< Option User validity error */
3090
#define FLASH_SR_RDERR_Pos                   (13U)                             
50 mjames 3091
#define FLASH_SR_RDERR_Msk                   (0x1UL << FLASH_SR_RDERR_Pos)      /*!< 0x00002000 */
30 mjames 3092
#define FLASH_SR_RDERR                       FLASH_SR_RDERR_Msk                /*!< Read protected error */
3093
 
3094
/******************  Bit definition for FLASH_OBR register  *******************/
3095
#define FLASH_OBR_RDPRT_Pos                  (0U)                              
50 mjames 3096
#define FLASH_OBR_RDPRT_Msk                  (0xFFUL << FLASH_OBR_RDPRT_Pos)    /*!< 0x000000FF */
30 mjames 3097
#define FLASH_OBR_RDPRT                      FLASH_OBR_RDPRT_Msk               /*!< Read Protection */
3098
#define FLASH_OBR_SPRMOD_Pos                 (8U)                              
50 mjames 3099
#define FLASH_OBR_SPRMOD_Msk                 (0x1UL << FLASH_OBR_SPRMOD_Pos)    /*!< 0x00000100 */
30 mjames 3100
#define FLASH_OBR_SPRMOD                     FLASH_OBR_SPRMOD_Msk              /*!< Selection of protection mode of WPRi bits */
3101
#define FLASH_OBR_BOR_LEV_Pos                (16U)                             
50 mjames 3102
#define FLASH_OBR_BOR_LEV_Msk                (0xFUL << FLASH_OBR_BOR_LEV_Pos)   /*!< 0x000F0000 */
30 mjames 3103
#define FLASH_OBR_BOR_LEV                    FLASH_OBR_BOR_LEV_Msk             /*!< BOR_LEV[3:0] Brown Out Reset Threshold Level*/
3104
#define FLASH_OBR_USER_Pos                   (20U)                             
50 mjames 3105
#define FLASH_OBR_USER_Msk                   (0x7UL << FLASH_OBR_USER_Pos)      /*!< 0x00700000 */
30 mjames 3106
#define FLASH_OBR_USER                       FLASH_OBR_USER_Msk                /*!< User Option Bytes */
3107
#define FLASH_OBR_IWDG_SW_Pos                (20U)                             
50 mjames 3108
#define FLASH_OBR_IWDG_SW_Msk                (0x1UL << FLASH_OBR_IWDG_SW_Pos)   /*!< 0x00100000 */
30 mjames 3109
#define FLASH_OBR_IWDG_SW                    FLASH_OBR_IWDG_SW_Msk             /*!< IWDG_SW */
3110
#define FLASH_OBR_nRST_STOP_Pos              (21U)                             
50 mjames 3111
#define FLASH_OBR_nRST_STOP_Msk              (0x1UL << FLASH_OBR_nRST_STOP_Pos) /*!< 0x00200000 */
30 mjames 3112
#define FLASH_OBR_nRST_STOP                  FLASH_OBR_nRST_STOP_Msk           /*!< nRST_STOP */
3113
#define FLASH_OBR_nRST_STDBY_Pos             (22U)                             
50 mjames 3114
#define FLASH_OBR_nRST_STDBY_Msk             (0x1UL << FLASH_OBR_nRST_STDBY_Pos) /*!< 0x00400000 */
30 mjames 3115
#define FLASH_OBR_nRST_STDBY                 FLASH_OBR_nRST_STDBY_Msk          /*!< nRST_STDBY */
3116
 
3117
/******************  Bit definition for FLASH_WRPR register  ******************/
3118
#define FLASH_WRPR1_WRP_Pos                  (0U)                              
50 mjames 3119
#define FLASH_WRPR1_WRP_Msk                  (0xFFFFFFFFUL << FLASH_WRPR1_WRP_Pos) /*!< 0xFFFFFFFF */
30 mjames 3120
#define FLASH_WRPR1_WRP                      FLASH_WRPR1_WRP_Msk               /*!< Write Protect sectors 0  to 31  */
3121
#define FLASH_WRPR2_WRP_Pos                  (0U)                              
50 mjames 3122
#define FLASH_WRPR2_WRP_Msk                  (0xFFFFFFFFUL << FLASH_WRPR2_WRP_Pos) /*!< 0xFFFFFFFF */
30 mjames 3123
#define FLASH_WRPR2_WRP                      FLASH_WRPR2_WRP_Msk               /*!< Write Protect sectors 32 to 63  */             
3124
 
3125
/******************************************************************************/
3126
/*                                                                            */
3127
/*                            General Purpose I/O                             */
3128
/*                                                                            */
3129
/******************************************************************************/
3130
/******************  Bits definition for GPIO_MODER register  *****************/
3131
#define GPIO_MODER_MODER0_Pos                (0U)                              
50 mjames 3132
#define GPIO_MODER_MODER0_Msk                (0x3UL << GPIO_MODER_MODER0_Pos)   /*!< 0x00000003 */
30 mjames 3133
#define GPIO_MODER_MODER0                    GPIO_MODER_MODER0_Msk             
50 mjames 3134
#define GPIO_MODER_MODER0_0                  (0x1UL << GPIO_MODER_MODER0_Pos)   /*!< 0x00000001 */
3135
#define GPIO_MODER_MODER0_1                  (0x2UL << GPIO_MODER_MODER0_Pos)   /*!< 0x00000002 */
30 mjames 3136
 
3137
#define GPIO_MODER_MODER1_Pos                (2U)                              
50 mjames 3138
#define GPIO_MODER_MODER1_Msk                (0x3UL << GPIO_MODER_MODER1_Pos)   /*!< 0x0000000C */
30 mjames 3139
#define GPIO_MODER_MODER1                    GPIO_MODER_MODER1_Msk             
50 mjames 3140
#define GPIO_MODER_MODER1_0                  (0x1UL << GPIO_MODER_MODER1_Pos)   /*!< 0x00000004 */
3141
#define GPIO_MODER_MODER1_1                  (0x2UL << GPIO_MODER_MODER1_Pos)   /*!< 0x00000008 */
30 mjames 3142
 
3143
#define GPIO_MODER_MODER2_Pos                (4U)                              
50 mjames 3144
#define GPIO_MODER_MODER2_Msk                (0x3UL << GPIO_MODER_MODER2_Pos)   /*!< 0x00000030 */
30 mjames 3145
#define GPIO_MODER_MODER2                    GPIO_MODER_MODER2_Msk             
50 mjames 3146
#define GPIO_MODER_MODER2_0                  (0x1UL << GPIO_MODER_MODER2_Pos)   /*!< 0x00000010 */
3147
#define GPIO_MODER_MODER2_1                  (0x2UL << GPIO_MODER_MODER2_Pos)   /*!< 0x00000020 */
30 mjames 3148
 
3149
#define GPIO_MODER_MODER3_Pos                (6U)                              
50 mjames 3150
#define GPIO_MODER_MODER3_Msk                (0x3UL << GPIO_MODER_MODER3_Pos)   /*!< 0x000000C0 */
30 mjames 3151
#define GPIO_MODER_MODER3                    GPIO_MODER_MODER3_Msk             
50 mjames 3152
#define GPIO_MODER_MODER3_0                  (0x1UL << GPIO_MODER_MODER3_Pos)   /*!< 0x00000040 */
3153
#define GPIO_MODER_MODER3_1                  (0x2UL << GPIO_MODER_MODER3_Pos)   /*!< 0x00000080 */
30 mjames 3154
 
3155
#define GPIO_MODER_MODER4_Pos                (8U)                              
50 mjames 3156
#define GPIO_MODER_MODER4_Msk                (0x3UL << GPIO_MODER_MODER4_Pos)   /*!< 0x00000300 */
30 mjames 3157
#define GPIO_MODER_MODER4                    GPIO_MODER_MODER4_Msk             
50 mjames 3158
#define GPIO_MODER_MODER4_0                  (0x1UL << GPIO_MODER_MODER4_Pos)   /*!< 0x00000100 */
3159
#define GPIO_MODER_MODER4_1                  (0x2UL << GPIO_MODER_MODER4_Pos)   /*!< 0x00000200 */
30 mjames 3160
 
3161
#define GPIO_MODER_MODER5_Pos                (10U)                             
50 mjames 3162
#define GPIO_MODER_MODER5_Msk                (0x3UL << GPIO_MODER_MODER5_Pos)   /*!< 0x00000C00 */
30 mjames 3163
#define GPIO_MODER_MODER5                    GPIO_MODER_MODER5_Msk             
50 mjames 3164
#define GPIO_MODER_MODER5_0                  (0x1UL << GPIO_MODER_MODER5_Pos)   /*!< 0x00000400 */
3165
#define GPIO_MODER_MODER5_1                  (0x2UL << GPIO_MODER_MODER5_Pos)   /*!< 0x00000800 */
30 mjames 3166
 
3167
#define GPIO_MODER_MODER6_Pos                (12U)                             
50 mjames 3168
#define GPIO_MODER_MODER6_Msk                (0x3UL << GPIO_MODER_MODER6_Pos)   /*!< 0x00003000 */
30 mjames 3169
#define GPIO_MODER_MODER6                    GPIO_MODER_MODER6_Msk             
50 mjames 3170
#define GPIO_MODER_MODER6_0                  (0x1UL << GPIO_MODER_MODER6_Pos)   /*!< 0x00001000 */
3171
#define GPIO_MODER_MODER6_1                  (0x2UL << GPIO_MODER_MODER6_Pos)   /*!< 0x00002000 */
30 mjames 3172
 
3173
#define GPIO_MODER_MODER7_Pos                (14U)                             
50 mjames 3174
#define GPIO_MODER_MODER7_Msk                (0x3UL << GPIO_MODER_MODER7_Pos)   /*!< 0x0000C000 */
30 mjames 3175
#define GPIO_MODER_MODER7                    GPIO_MODER_MODER7_Msk             
50 mjames 3176
#define GPIO_MODER_MODER7_0                  (0x1UL << GPIO_MODER_MODER7_Pos)   /*!< 0x00004000 */
3177
#define GPIO_MODER_MODER7_1                  (0x2UL << GPIO_MODER_MODER7_Pos)   /*!< 0x00008000 */
30 mjames 3178
 
3179
#define GPIO_MODER_MODER8_Pos                (16U)                             
50 mjames 3180
#define GPIO_MODER_MODER8_Msk                (0x3UL << GPIO_MODER_MODER8_Pos)   /*!< 0x00030000 */
30 mjames 3181
#define GPIO_MODER_MODER8                    GPIO_MODER_MODER8_Msk             
50 mjames 3182
#define GPIO_MODER_MODER8_0                  (0x1UL << GPIO_MODER_MODER8_Pos)   /*!< 0x00010000 */
3183
#define GPIO_MODER_MODER8_1                  (0x2UL << GPIO_MODER_MODER8_Pos)   /*!< 0x00020000 */
30 mjames 3184
 
3185
#define GPIO_MODER_MODER9_Pos                (18U)                             
50 mjames 3186
#define GPIO_MODER_MODER9_Msk                (0x3UL << GPIO_MODER_MODER9_Pos)   /*!< 0x000C0000 */
30 mjames 3187
#define GPIO_MODER_MODER9                    GPIO_MODER_MODER9_Msk             
50 mjames 3188
#define GPIO_MODER_MODER9_0                  (0x1UL << GPIO_MODER_MODER9_Pos)   /*!< 0x00040000 */
3189
#define GPIO_MODER_MODER9_1                  (0x2UL << GPIO_MODER_MODER9_Pos)   /*!< 0x00080000 */
30 mjames 3190
 
3191
#define GPIO_MODER_MODER10_Pos               (20U)                             
50 mjames 3192
#define GPIO_MODER_MODER10_Msk               (0x3UL << GPIO_MODER_MODER10_Pos)  /*!< 0x00300000 */
30 mjames 3193
#define GPIO_MODER_MODER10                   GPIO_MODER_MODER10_Msk            
50 mjames 3194
#define GPIO_MODER_MODER10_0                 (0x1UL << GPIO_MODER_MODER10_Pos)  /*!< 0x00100000 */
3195
#define GPIO_MODER_MODER10_1                 (0x2UL << GPIO_MODER_MODER10_Pos)  /*!< 0x00200000 */
30 mjames 3196
 
3197
#define GPIO_MODER_MODER11_Pos               (22U)                             
50 mjames 3198
#define GPIO_MODER_MODER11_Msk               (0x3UL << GPIO_MODER_MODER11_Pos)  /*!< 0x00C00000 */
30 mjames 3199
#define GPIO_MODER_MODER11                   GPIO_MODER_MODER11_Msk            
50 mjames 3200
#define GPIO_MODER_MODER11_0                 (0x1UL << GPIO_MODER_MODER11_Pos)  /*!< 0x00400000 */
3201
#define GPIO_MODER_MODER11_1                 (0x2UL << GPIO_MODER_MODER11_Pos)  /*!< 0x00800000 */
30 mjames 3202
 
3203
#define GPIO_MODER_MODER12_Pos               (24U)                             
50 mjames 3204
#define GPIO_MODER_MODER12_Msk               (0x3UL << GPIO_MODER_MODER12_Pos)  /*!< 0x03000000 */
30 mjames 3205
#define GPIO_MODER_MODER12                   GPIO_MODER_MODER12_Msk            
50 mjames 3206
#define GPIO_MODER_MODER12_0                 (0x1UL << GPIO_MODER_MODER12_Pos)  /*!< 0x01000000 */
3207
#define GPIO_MODER_MODER12_1                 (0x2UL << GPIO_MODER_MODER12_Pos)  /*!< 0x02000000 */
30 mjames 3208
 
3209
#define GPIO_MODER_MODER13_Pos               (26U)                             
50 mjames 3210
#define GPIO_MODER_MODER13_Msk               (0x3UL << GPIO_MODER_MODER13_Pos)  /*!< 0x0C000000 */
30 mjames 3211
#define GPIO_MODER_MODER13                   GPIO_MODER_MODER13_Msk            
50 mjames 3212
#define GPIO_MODER_MODER13_0                 (0x1UL << GPIO_MODER_MODER13_Pos)  /*!< 0x04000000 */
3213
#define GPIO_MODER_MODER13_1                 (0x2UL << GPIO_MODER_MODER13_Pos)  /*!< 0x08000000 */
30 mjames 3214
 
3215
#define GPIO_MODER_MODER14_Pos               (28U)                             
50 mjames 3216
#define GPIO_MODER_MODER14_Msk               (0x3UL << GPIO_MODER_MODER14_Pos)  /*!< 0x30000000 */
30 mjames 3217
#define GPIO_MODER_MODER14                   GPIO_MODER_MODER14_Msk            
50 mjames 3218
#define GPIO_MODER_MODER14_0                 (0x1UL << GPIO_MODER_MODER14_Pos)  /*!< 0x10000000 */
3219
#define GPIO_MODER_MODER14_1                 (0x2UL << GPIO_MODER_MODER14_Pos)  /*!< 0x20000000 */
30 mjames 3220
 
3221
#define GPIO_MODER_MODER15_Pos               (30U)                             
50 mjames 3222
#define GPIO_MODER_MODER15_Msk               (0x3UL << GPIO_MODER_MODER15_Pos)  /*!< 0xC0000000 */
30 mjames 3223
#define GPIO_MODER_MODER15                   GPIO_MODER_MODER15_Msk            
50 mjames 3224
#define GPIO_MODER_MODER15_0                 (0x1UL << GPIO_MODER_MODER15_Pos)  /*!< 0x40000000 */
3225
#define GPIO_MODER_MODER15_1                 (0x2UL << GPIO_MODER_MODER15_Pos)  /*!< 0x80000000 */
30 mjames 3226
 
3227
/******************  Bits definition for GPIO_OTYPER register  ****************/
3228
#define GPIO_OTYPER_OT_0                     (0x00000001U)                     
3229
#define GPIO_OTYPER_OT_1                     (0x00000002U)                     
3230
#define GPIO_OTYPER_OT_2                     (0x00000004U)                     
3231
#define GPIO_OTYPER_OT_3                     (0x00000008U)                     
3232
#define GPIO_OTYPER_OT_4                     (0x00000010U)                     
3233
#define GPIO_OTYPER_OT_5                     (0x00000020U)                     
3234
#define GPIO_OTYPER_OT_6                     (0x00000040U)                     
3235
#define GPIO_OTYPER_OT_7                     (0x00000080U)                     
3236
#define GPIO_OTYPER_OT_8                     (0x00000100U)                     
3237
#define GPIO_OTYPER_OT_9                     (0x00000200U)                     
3238
#define GPIO_OTYPER_OT_10                    (0x00000400U)                     
3239
#define GPIO_OTYPER_OT_11                    (0x00000800U)                     
3240
#define GPIO_OTYPER_OT_12                    (0x00001000U)                     
3241
#define GPIO_OTYPER_OT_13                    (0x00002000U)                     
3242
#define GPIO_OTYPER_OT_14                    (0x00004000U)                     
3243
#define GPIO_OTYPER_OT_15                    (0x00008000U)                     
3244
 
3245
/******************  Bits definition for GPIO_OSPEEDR register  ***************/
3246
#define GPIO_OSPEEDER_OSPEEDR0_Pos           (0U)                              
50 mjames 3247
#define GPIO_OSPEEDER_OSPEEDR0_Msk           (0x3UL << GPIO_OSPEEDER_OSPEEDR0_Pos) /*!< 0x00000003 */
30 mjames 3248
#define GPIO_OSPEEDER_OSPEEDR0               GPIO_OSPEEDER_OSPEEDR0_Msk        
50 mjames 3249
#define GPIO_OSPEEDER_OSPEEDR0_0             (0x1UL << GPIO_OSPEEDER_OSPEEDR0_Pos) /*!< 0x00000001 */
3250
#define GPIO_OSPEEDER_OSPEEDR0_1             (0x2UL << GPIO_OSPEEDER_OSPEEDR0_Pos) /*!< 0x00000002 */
30 mjames 3251
 
3252
#define GPIO_OSPEEDER_OSPEEDR1_Pos           (2U)                              
50 mjames 3253
#define GPIO_OSPEEDER_OSPEEDR1_Msk           (0x3UL << GPIO_OSPEEDER_OSPEEDR1_Pos) /*!< 0x0000000C */
30 mjames 3254
#define GPIO_OSPEEDER_OSPEEDR1               GPIO_OSPEEDER_OSPEEDR1_Msk        
50 mjames 3255
#define GPIO_OSPEEDER_OSPEEDR1_0             (0x1UL << GPIO_OSPEEDER_OSPEEDR1_Pos) /*!< 0x00000004 */
3256
#define GPIO_OSPEEDER_OSPEEDR1_1             (0x2UL << GPIO_OSPEEDER_OSPEEDR1_Pos) /*!< 0x00000008 */
30 mjames 3257
 
3258
#define GPIO_OSPEEDER_OSPEEDR2_Pos           (4U)                              
50 mjames 3259
#define GPIO_OSPEEDER_OSPEEDR2_Msk           (0x3UL << GPIO_OSPEEDER_OSPEEDR2_Pos) /*!< 0x00000030 */
30 mjames 3260
#define GPIO_OSPEEDER_OSPEEDR2               GPIO_OSPEEDER_OSPEEDR2_Msk        
50 mjames 3261
#define GPIO_OSPEEDER_OSPEEDR2_0             (0x1UL << GPIO_OSPEEDER_OSPEEDR2_Pos) /*!< 0x00000010 */
3262
#define GPIO_OSPEEDER_OSPEEDR2_1             (0x2UL << GPIO_OSPEEDER_OSPEEDR2_Pos) /*!< 0x00000020 */
30 mjames 3263
 
3264
#define GPIO_OSPEEDER_OSPEEDR3_Pos           (6U)                              
50 mjames 3265
#define GPIO_OSPEEDER_OSPEEDR3_Msk           (0x3UL << GPIO_OSPEEDER_OSPEEDR3_Pos) /*!< 0x000000C0 */
30 mjames 3266
#define GPIO_OSPEEDER_OSPEEDR3               GPIO_OSPEEDER_OSPEEDR3_Msk        
50 mjames 3267
#define GPIO_OSPEEDER_OSPEEDR3_0             (0x1UL << GPIO_OSPEEDER_OSPEEDR3_Pos) /*!< 0x00000040 */
3268
#define GPIO_OSPEEDER_OSPEEDR3_1             (0x2UL << GPIO_OSPEEDER_OSPEEDR3_Pos) /*!< 0x00000080 */
30 mjames 3269
 
3270
#define GPIO_OSPEEDER_OSPEEDR4_Pos           (8U)                              
50 mjames 3271
#define GPIO_OSPEEDER_OSPEEDR4_Msk           (0x3UL << GPIO_OSPEEDER_OSPEEDR4_Pos) /*!< 0x00000300 */
30 mjames 3272
#define GPIO_OSPEEDER_OSPEEDR4               GPIO_OSPEEDER_OSPEEDR4_Msk        
50 mjames 3273
#define GPIO_OSPEEDER_OSPEEDR4_0             (0x1UL << GPIO_OSPEEDER_OSPEEDR4_Pos) /*!< 0x00000100 */
3274
#define GPIO_OSPEEDER_OSPEEDR4_1             (0x2UL << GPIO_OSPEEDER_OSPEEDR4_Pos) /*!< 0x00000200 */
30 mjames 3275
 
3276
#define GPIO_OSPEEDER_OSPEEDR5_Pos           (10U)                             
50 mjames 3277
#define GPIO_OSPEEDER_OSPEEDR5_Msk           (0x3UL << GPIO_OSPEEDER_OSPEEDR5_Pos) /*!< 0x00000C00 */
30 mjames 3278
#define GPIO_OSPEEDER_OSPEEDR5               GPIO_OSPEEDER_OSPEEDR5_Msk        
50 mjames 3279
#define GPIO_OSPEEDER_OSPEEDR5_0             (0x1UL << GPIO_OSPEEDER_OSPEEDR5_Pos) /*!< 0x00000400 */
3280
#define GPIO_OSPEEDER_OSPEEDR5_1             (0x2UL << GPIO_OSPEEDER_OSPEEDR5_Pos) /*!< 0x00000800 */
30 mjames 3281
 
3282
#define GPIO_OSPEEDER_OSPEEDR6_Pos           (12U)                             
50 mjames 3283
#define GPIO_OSPEEDER_OSPEEDR6_Msk           (0x3UL << GPIO_OSPEEDER_OSPEEDR6_Pos) /*!< 0x00003000 */
30 mjames 3284
#define GPIO_OSPEEDER_OSPEEDR6               GPIO_OSPEEDER_OSPEEDR6_Msk        
50 mjames 3285
#define GPIO_OSPEEDER_OSPEEDR6_0             (0x1UL << GPIO_OSPEEDER_OSPEEDR6_Pos) /*!< 0x00001000 */
3286
#define GPIO_OSPEEDER_OSPEEDR6_1             (0x2UL << GPIO_OSPEEDER_OSPEEDR6_Pos) /*!< 0x00002000 */
30 mjames 3287
 
3288
#define GPIO_OSPEEDER_OSPEEDR7_Pos           (14U)                             
50 mjames 3289
#define GPIO_OSPEEDER_OSPEEDR7_Msk           (0x3UL << GPIO_OSPEEDER_OSPEEDR7_Pos) /*!< 0x0000C000 */
30 mjames 3290
#define GPIO_OSPEEDER_OSPEEDR7               GPIO_OSPEEDER_OSPEEDR7_Msk        
50 mjames 3291
#define GPIO_OSPEEDER_OSPEEDR7_0             (0x1UL << GPIO_OSPEEDER_OSPEEDR7_Pos) /*!< 0x00004000 */
3292
#define GPIO_OSPEEDER_OSPEEDR7_1             (0x2UL << GPIO_OSPEEDER_OSPEEDR7_Pos) /*!< 0x00008000 */
30 mjames 3293
 
3294
#define GPIO_OSPEEDER_OSPEEDR8_Pos           (16U)                             
50 mjames 3295
#define GPIO_OSPEEDER_OSPEEDR8_Msk           (0x3UL << GPIO_OSPEEDER_OSPEEDR8_Pos) /*!< 0x00030000 */
30 mjames 3296
#define GPIO_OSPEEDER_OSPEEDR8               GPIO_OSPEEDER_OSPEEDR8_Msk        
50 mjames 3297
#define GPIO_OSPEEDER_OSPEEDR8_0             (0x1UL << GPIO_OSPEEDER_OSPEEDR8_Pos) /*!< 0x00010000 */
3298
#define GPIO_OSPEEDER_OSPEEDR8_1             (0x2UL << GPIO_OSPEEDER_OSPEEDR8_Pos) /*!< 0x00020000 */
30 mjames 3299
 
3300
#define GPIO_OSPEEDER_OSPEEDR9_Pos           (18U)                             
50 mjames 3301
#define GPIO_OSPEEDER_OSPEEDR9_Msk           (0x3UL << GPIO_OSPEEDER_OSPEEDR9_Pos) /*!< 0x000C0000 */
30 mjames 3302
#define GPIO_OSPEEDER_OSPEEDR9               GPIO_OSPEEDER_OSPEEDR9_Msk        
50 mjames 3303
#define GPIO_OSPEEDER_OSPEEDR9_0             (0x1UL << GPIO_OSPEEDER_OSPEEDR9_Pos) /*!< 0x00040000 */
3304
#define GPIO_OSPEEDER_OSPEEDR9_1             (0x2UL << GPIO_OSPEEDER_OSPEEDR9_Pos) /*!< 0x00080000 */
30 mjames 3305
 
3306
#define GPIO_OSPEEDER_OSPEEDR10_Pos          (20U)                             
50 mjames 3307
#define GPIO_OSPEEDER_OSPEEDR10_Msk          (0x3UL << GPIO_OSPEEDER_OSPEEDR10_Pos) /*!< 0x00300000 */
30 mjames 3308
#define GPIO_OSPEEDER_OSPEEDR10              GPIO_OSPEEDER_OSPEEDR10_Msk       
50 mjames 3309
#define GPIO_OSPEEDER_OSPEEDR10_0            (0x1UL << GPIO_OSPEEDER_OSPEEDR10_Pos) /*!< 0x00100000 */
3310
#define GPIO_OSPEEDER_OSPEEDR10_1            (0x2UL << GPIO_OSPEEDER_OSPEEDR10_Pos) /*!< 0x00200000 */
30 mjames 3311
 
3312
#define GPIO_OSPEEDER_OSPEEDR11_Pos          (22U)                             
50 mjames 3313
#define GPIO_OSPEEDER_OSPEEDR11_Msk          (0x3UL << GPIO_OSPEEDER_OSPEEDR11_Pos) /*!< 0x00C00000 */
30 mjames 3314
#define GPIO_OSPEEDER_OSPEEDR11              GPIO_OSPEEDER_OSPEEDR11_Msk       
50 mjames 3315
#define GPIO_OSPEEDER_OSPEEDR11_0            (0x1UL << GPIO_OSPEEDER_OSPEEDR11_Pos) /*!< 0x00400000 */
3316
#define GPIO_OSPEEDER_OSPEEDR11_1            (0x2UL << GPIO_OSPEEDER_OSPEEDR11_Pos) /*!< 0x00800000 */
30 mjames 3317
 
3318
#define GPIO_OSPEEDER_OSPEEDR12_Pos          (24U)                             
50 mjames 3319
#define GPIO_OSPEEDER_OSPEEDR12_Msk          (0x3UL << GPIO_OSPEEDER_OSPEEDR12_Pos) /*!< 0x03000000 */
30 mjames 3320
#define GPIO_OSPEEDER_OSPEEDR12              GPIO_OSPEEDER_OSPEEDR12_Msk       
50 mjames 3321
#define GPIO_OSPEEDER_OSPEEDR12_0            (0x1UL << GPIO_OSPEEDER_OSPEEDR12_Pos) /*!< 0x01000000 */
3322
#define GPIO_OSPEEDER_OSPEEDR12_1            (0x2UL << GPIO_OSPEEDER_OSPEEDR12_Pos) /*!< 0x02000000 */
30 mjames 3323
 
3324
#define GPIO_OSPEEDER_OSPEEDR13_Pos          (26U)                             
50 mjames 3325
#define GPIO_OSPEEDER_OSPEEDR13_Msk          (0x3UL << GPIO_OSPEEDER_OSPEEDR13_Pos) /*!< 0x0C000000 */
30 mjames 3326
#define GPIO_OSPEEDER_OSPEEDR13              GPIO_OSPEEDER_OSPEEDR13_Msk       
50 mjames 3327
#define GPIO_OSPEEDER_OSPEEDR13_0            (0x1UL << GPIO_OSPEEDER_OSPEEDR13_Pos) /*!< 0x04000000 */
3328
#define GPIO_OSPEEDER_OSPEEDR13_1            (0x2UL << GPIO_OSPEEDER_OSPEEDR13_Pos) /*!< 0x08000000 */
30 mjames 3329
 
3330
#define GPIO_OSPEEDER_OSPEEDR14_Pos          (28U)                             
50 mjames 3331
#define GPIO_OSPEEDER_OSPEEDR14_Msk          (0x3UL << GPIO_OSPEEDER_OSPEEDR14_Pos) /*!< 0x30000000 */
30 mjames 3332
#define GPIO_OSPEEDER_OSPEEDR14              GPIO_OSPEEDER_OSPEEDR14_Msk       
50 mjames 3333
#define GPIO_OSPEEDER_OSPEEDR14_0            (0x1UL << GPIO_OSPEEDER_OSPEEDR14_Pos) /*!< 0x10000000 */
3334
#define GPIO_OSPEEDER_OSPEEDR14_1            (0x2UL << GPIO_OSPEEDER_OSPEEDR14_Pos) /*!< 0x20000000 */
30 mjames 3335
 
3336
#define GPIO_OSPEEDER_OSPEEDR15_Pos          (30U)                             
50 mjames 3337
#define GPIO_OSPEEDER_OSPEEDR15_Msk          (0x3UL << GPIO_OSPEEDER_OSPEEDR15_Pos) /*!< 0xC0000000 */
30 mjames 3338
#define GPIO_OSPEEDER_OSPEEDR15              GPIO_OSPEEDER_OSPEEDR15_Msk       
50 mjames 3339
#define GPIO_OSPEEDER_OSPEEDR15_0            (0x1UL << GPIO_OSPEEDER_OSPEEDR15_Pos) /*!< 0x40000000 */
3340
#define GPIO_OSPEEDER_OSPEEDR15_1            (0x2UL << GPIO_OSPEEDER_OSPEEDR15_Pos) /*!< 0x80000000 */
30 mjames 3341
 
3342
/******************  Bits definition for GPIO_PUPDR register  *****************/
3343
#define GPIO_PUPDR_PUPDR0_Pos                (0U)                              
50 mjames 3344
#define GPIO_PUPDR_PUPDR0_Msk                (0x3UL << GPIO_PUPDR_PUPDR0_Pos)   /*!< 0x00000003 */
30 mjames 3345
#define GPIO_PUPDR_PUPDR0                    GPIO_PUPDR_PUPDR0_Msk             
50 mjames 3346
#define GPIO_PUPDR_PUPDR0_0                  (0x1UL << GPIO_PUPDR_PUPDR0_Pos)   /*!< 0x00000001 */
3347
#define GPIO_PUPDR_PUPDR0_1                  (0x2UL << GPIO_PUPDR_PUPDR0_Pos)   /*!< 0x00000002 */
30 mjames 3348
 
3349
#define GPIO_PUPDR_PUPDR1_Pos                (2U)                              
50 mjames 3350
#define GPIO_PUPDR_PUPDR1_Msk                (0x3UL << GPIO_PUPDR_PUPDR1_Pos)   /*!< 0x0000000C */
30 mjames 3351
#define GPIO_PUPDR_PUPDR1                    GPIO_PUPDR_PUPDR1_Msk             
50 mjames 3352
#define GPIO_PUPDR_PUPDR1_0                  (0x1UL << GPIO_PUPDR_PUPDR1_Pos)   /*!< 0x00000004 */
3353
#define GPIO_PUPDR_PUPDR1_1                  (0x2UL << GPIO_PUPDR_PUPDR1_Pos)   /*!< 0x00000008 */
30 mjames 3354
 
3355
#define GPIO_PUPDR_PUPDR2_Pos                (4U)                              
50 mjames 3356
#define GPIO_PUPDR_PUPDR2_Msk                (0x3UL << GPIO_PUPDR_PUPDR2_Pos)   /*!< 0x00000030 */
30 mjames 3357
#define GPIO_PUPDR_PUPDR2                    GPIO_PUPDR_PUPDR2_Msk             
50 mjames 3358
#define GPIO_PUPDR_PUPDR2_0                  (0x1UL << GPIO_PUPDR_PUPDR2_Pos)   /*!< 0x00000010 */
3359
#define GPIO_PUPDR_PUPDR2_1                  (0x2UL << GPIO_PUPDR_PUPDR2_Pos)   /*!< 0x00000020 */
30 mjames 3360
 
3361
#define GPIO_PUPDR_PUPDR3_Pos                (6U)                              
50 mjames 3362
#define GPIO_PUPDR_PUPDR3_Msk                (0x3UL << GPIO_PUPDR_PUPDR3_Pos)   /*!< 0x000000C0 */
30 mjames 3363
#define GPIO_PUPDR_PUPDR3                    GPIO_PUPDR_PUPDR3_Msk             
50 mjames 3364
#define GPIO_PUPDR_PUPDR3_0                  (0x1UL << GPIO_PUPDR_PUPDR3_Pos)   /*!< 0x00000040 */
3365
#define GPIO_PUPDR_PUPDR3_1                  (0x2UL << GPIO_PUPDR_PUPDR3_Pos)   /*!< 0x00000080 */
30 mjames 3366
 
3367
#define GPIO_PUPDR_PUPDR4_Pos                (8U)                              
50 mjames 3368
#define GPIO_PUPDR_PUPDR4_Msk                (0x3UL << GPIO_PUPDR_PUPDR4_Pos)   /*!< 0x00000300 */
30 mjames 3369
#define GPIO_PUPDR_PUPDR4                    GPIO_PUPDR_PUPDR4_Msk             
50 mjames 3370
#define GPIO_PUPDR_PUPDR4_0                  (0x1UL << GPIO_PUPDR_PUPDR4_Pos)   /*!< 0x00000100 */
3371
#define GPIO_PUPDR_PUPDR4_1                  (0x2UL << GPIO_PUPDR_PUPDR4_Pos)   /*!< 0x00000200 */
30 mjames 3372
 
3373
#define GPIO_PUPDR_PUPDR5_Pos                (10U)                             
50 mjames 3374
#define GPIO_PUPDR_PUPDR5_Msk                (0x3UL << GPIO_PUPDR_PUPDR5_Pos)   /*!< 0x00000C00 */
30 mjames 3375
#define GPIO_PUPDR_PUPDR5                    GPIO_PUPDR_PUPDR5_Msk             
50 mjames 3376
#define GPIO_PUPDR_PUPDR5_0                  (0x1UL << GPIO_PUPDR_PUPDR5_Pos)   /*!< 0x00000400 */
3377
#define GPIO_PUPDR_PUPDR5_1                  (0x2UL << GPIO_PUPDR_PUPDR5_Pos)   /*!< 0x00000800 */
30 mjames 3378
 
3379
#define GPIO_PUPDR_PUPDR6_Pos                (12U)                             
50 mjames 3380
#define GPIO_PUPDR_PUPDR6_Msk                (0x3UL << GPIO_PUPDR_PUPDR6_Pos)   /*!< 0x00003000 */
30 mjames 3381
#define GPIO_PUPDR_PUPDR6                    GPIO_PUPDR_PUPDR6_Msk             
50 mjames 3382
#define GPIO_PUPDR_PUPDR6_0                  (0x1UL << GPIO_PUPDR_PUPDR6_Pos)   /*!< 0x00001000 */
3383
#define GPIO_PUPDR_PUPDR6_1                  (0x2UL << GPIO_PUPDR_PUPDR6_Pos)   /*!< 0x00002000 */
30 mjames 3384
 
3385
#define GPIO_PUPDR_PUPDR7_Pos                (14U)                             
50 mjames 3386
#define GPIO_PUPDR_PUPDR7_Msk                (0x3UL << GPIO_PUPDR_PUPDR7_Pos)   /*!< 0x0000C000 */
30 mjames 3387
#define GPIO_PUPDR_PUPDR7                    GPIO_PUPDR_PUPDR7_Msk             
50 mjames 3388
#define GPIO_PUPDR_PUPDR7_0                  (0x1UL << GPIO_PUPDR_PUPDR7_Pos)   /*!< 0x00004000 */
3389
#define GPIO_PUPDR_PUPDR7_1                  (0x2UL << GPIO_PUPDR_PUPDR7_Pos)   /*!< 0x00008000 */
30 mjames 3390
 
3391
#define GPIO_PUPDR_PUPDR8_Pos                (16U)                             
50 mjames 3392
#define GPIO_PUPDR_PUPDR8_Msk                (0x3UL << GPIO_PUPDR_PUPDR8_Pos)   /*!< 0x00030000 */
30 mjames 3393
#define GPIO_PUPDR_PUPDR8                    GPIO_PUPDR_PUPDR8_Msk             
50 mjames 3394
#define GPIO_PUPDR_PUPDR8_0                  (0x1UL << GPIO_PUPDR_PUPDR8_Pos)   /*!< 0x00010000 */
3395
#define GPIO_PUPDR_PUPDR8_1                  (0x2UL << GPIO_PUPDR_PUPDR8_Pos)   /*!< 0x00020000 */
30 mjames 3396
 
3397
#define GPIO_PUPDR_PUPDR9_Pos                (18U)                             
50 mjames 3398
#define GPIO_PUPDR_PUPDR9_Msk                (0x3UL << GPIO_PUPDR_PUPDR9_Pos)   /*!< 0x000C0000 */
30 mjames 3399
#define GPIO_PUPDR_PUPDR9                    GPIO_PUPDR_PUPDR9_Msk             
50 mjames 3400
#define GPIO_PUPDR_PUPDR9_0                  (0x1UL << GPIO_PUPDR_PUPDR9_Pos)   /*!< 0x00040000 */
3401
#define GPIO_PUPDR_PUPDR9_1                  (0x2UL << GPIO_PUPDR_PUPDR9_Pos)   /*!< 0x00080000 */
30 mjames 3402
 
3403
#define GPIO_PUPDR_PUPDR10_Pos               (20U)                             
50 mjames 3404
#define GPIO_PUPDR_PUPDR10_Msk               (0x3UL << GPIO_PUPDR_PUPDR10_Pos)  /*!< 0x00300000 */
30 mjames 3405
#define GPIO_PUPDR_PUPDR10                   GPIO_PUPDR_PUPDR10_Msk            
50 mjames 3406
#define GPIO_PUPDR_PUPDR10_0                 (0x1UL << GPIO_PUPDR_PUPDR10_Pos)  /*!< 0x00100000 */
3407
#define GPIO_PUPDR_PUPDR10_1                 (0x2UL << GPIO_PUPDR_PUPDR10_Pos)  /*!< 0x00200000 */
30 mjames 3408
 
3409
#define GPIO_PUPDR_PUPDR11_Pos               (22U)                             
50 mjames 3410
#define GPIO_PUPDR_PUPDR11_Msk               (0x3UL << GPIO_PUPDR_PUPDR11_Pos)  /*!< 0x00C00000 */
30 mjames 3411
#define GPIO_PUPDR_PUPDR11                   GPIO_PUPDR_PUPDR11_Msk            
50 mjames 3412
#define GPIO_PUPDR_PUPDR11_0                 (0x1UL << GPIO_PUPDR_PUPDR11_Pos)  /*!< 0x00400000 */
3413
#define GPIO_PUPDR_PUPDR11_1                 (0x2UL << GPIO_PUPDR_PUPDR11_Pos)  /*!< 0x00800000 */
30 mjames 3414
 
3415
#define GPIO_PUPDR_PUPDR12_Pos               (24U)                             
50 mjames 3416
#define GPIO_PUPDR_PUPDR12_Msk               (0x3UL << GPIO_PUPDR_PUPDR12_Pos)  /*!< 0x03000000 */
30 mjames 3417
#define GPIO_PUPDR_PUPDR12                   GPIO_PUPDR_PUPDR12_Msk            
50 mjames 3418
#define GPIO_PUPDR_PUPDR12_0                 (0x1UL << GPIO_PUPDR_PUPDR12_Pos)  /*!< 0x01000000 */
3419
#define GPIO_PUPDR_PUPDR12_1                 (0x2UL << GPIO_PUPDR_PUPDR12_Pos)  /*!< 0x02000000 */
30 mjames 3420
 
3421
#define GPIO_PUPDR_PUPDR13_Pos               (26U)                             
50 mjames 3422
#define GPIO_PUPDR_PUPDR13_Msk               (0x3UL << GPIO_PUPDR_PUPDR13_Pos)  /*!< 0x0C000000 */
30 mjames 3423
#define GPIO_PUPDR_PUPDR13                   GPIO_PUPDR_PUPDR13_Msk            
50 mjames 3424
#define GPIO_PUPDR_PUPDR13_0                 (0x1UL << GPIO_PUPDR_PUPDR13_Pos)  /*!< 0x04000000 */
3425
#define GPIO_PUPDR_PUPDR13_1                 (0x2UL << GPIO_PUPDR_PUPDR13_Pos)  /*!< 0x08000000 */
30 mjames 3426
 
3427
#define GPIO_PUPDR_PUPDR14_Pos               (28U)                             
50 mjames 3428
#define GPIO_PUPDR_PUPDR14_Msk               (0x3UL << GPIO_PUPDR_PUPDR14_Pos)  /*!< 0x30000000 */
30 mjames 3429
#define GPIO_PUPDR_PUPDR14                   GPIO_PUPDR_PUPDR14_Msk            
50 mjames 3430
#define GPIO_PUPDR_PUPDR14_0                 (0x1UL << GPIO_PUPDR_PUPDR14_Pos)  /*!< 0x10000000 */
3431
#define GPIO_PUPDR_PUPDR14_1                 (0x2UL << GPIO_PUPDR_PUPDR14_Pos)  /*!< 0x20000000 */
30 mjames 3432
#define GPIO_PUPDR_PUPDR15_Pos               (30U)                             
50 mjames 3433
#define GPIO_PUPDR_PUPDR15_Msk               (0x3UL << GPIO_PUPDR_PUPDR15_Pos)  /*!< 0xC0000000 */
30 mjames 3434
#define GPIO_PUPDR_PUPDR15                   GPIO_PUPDR_PUPDR15_Msk            
50 mjames 3435
#define GPIO_PUPDR_PUPDR15_0                 (0x1UL << GPIO_PUPDR_PUPDR15_Pos)  /*!< 0x40000000 */
3436
#define GPIO_PUPDR_PUPDR15_1                 (0x2UL << GPIO_PUPDR_PUPDR15_Pos)  /*!< 0x80000000 */
30 mjames 3437
 
3438
/******************  Bits definition for GPIO_IDR register  *******************/
3439
#define GPIO_IDR_IDR_0                       (0x00000001U)                     
3440
#define GPIO_IDR_IDR_1                       (0x00000002U)                     
3441
#define GPIO_IDR_IDR_2                       (0x00000004U)                     
3442
#define GPIO_IDR_IDR_3                       (0x00000008U)                     
3443
#define GPIO_IDR_IDR_4                       (0x00000010U)                     
3444
#define GPIO_IDR_IDR_5                       (0x00000020U)                     
3445
#define GPIO_IDR_IDR_6                       (0x00000040U)                     
3446
#define GPIO_IDR_IDR_7                       (0x00000080U)                     
3447
#define GPIO_IDR_IDR_8                       (0x00000100U)                     
3448
#define GPIO_IDR_IDR_9                       (0x00000200U)                     
3449
#define GPIO_IDR_IDR_10                      (0x00000400U)                     
3450
#define GPIO_IDR_IDR_11                      (0x00000800U)                     
3451
#define GPIO_IDR_IDR_12                      (0x00001000U)                     
3452
#define GPIO_IDR_IDR_13                      (0x00002000U)                     
3453
#define GPIO_IDR_IDR_14                      (0x00004000U)                     
3454
#define GPIO_IDR_IDR_15                      (0x00008000U)                     
3455
 
3456
/******************  Bits definition for GPIO_ODR register  *******************/
3457
#define GPIO_ODR_ODR_0                       (0x00000001U)                     
3458
#define GPIO_ODR_ODR_1                       (0x00000002U)                     
3459
#define GPIO_ODR_ODR_2                       (0x00000004U)                     
3460
#define GPIO_ODR_ODR_3                       (0x00000008U)                     
3461
#define GPIO_ODR_ODR_4                       (0x00000010U)                     
3462
#define GPIO_ODR_ODR_5                       (0x00000020U)                     
3463
#define GPIO_ODR_ODR_6                       (0x00000040U)                     
3464
#define GPIO_ODR_ODR_7                       (0x00000080U)                     
3465
#define GPIO_ODR_ODR_8                       (0x00000100U)                     
3466
#define GPIO_ODR_ODR_9                       (0x00000200U)                     
3467
#define GPIO_ODR_ODR_10                      (0x00000400U)                     
3468
#define GPIO_ODR_ODR_11                      (0x00000800U)                     
3469
#define GPIO_ODR_ODR_12                      (0x00001000U)                     
3470
#define GPIO_ODR_ODR_13                      (0x00002000U)                     
3471
#define GPIO_ODR_ODR_14                      (0x00004000U)                     
3472
#define GPIO_ODR_ODR_15                      (0x00008000U)                     
3473
 
3474
/******************  Bits definition for GPIO_BSRR register  ******************/
3475
#define GPIO_BSRR_BS_0                       (0x00000001U)                     
3476
#define GPIO_BSRR_BS_1                       (0x00000002U)                     
3477
#define GPIO_BSRR_BS_2                       (0x00000004U)                     
3478
#define GPIO_BSRR_BS_3                       (0x00000008U)                     
3479
#define GPIO_BSRR_BS_4                       (0x00000010U)                     
3480
#define GPIO_BSRR_BS_5                       (0x00000020U)                     
3481
#define GPIO_BSRR_BS_6                       (0x00000040U)                     
3482
#define GPIO_BSRR_BS_7                       (0x00000080U)                     
3483
#define GPIO_BSRR_BS_8                       (0x00000100U)                     
3484
#define GPIO_BSRR_BS_9                       (0x00000200U)                     
3485
#define GPIO_BSRR_BS_10                      (0x00000400U)                     
3486
#define GPIO_BSRR_BS_11                      (0x00000800U)                     
3487
#define GPIO_BSRR_BS_12                      (0x00001000U)                     
3488
#define GPIO_BSRR_BS_13                      (0x00002000U)                     
3489
#define GPIO_BSRR_BS_14                      (0x00004000U)                     
3490
#define GPIO_BSRR_BS_15                      (0x00008000U)                     
3491
#define GPIO_BSRR_BR_0                       (0x00010000U)                     
3492
#define GPIO_BSRR_BR_1                       (0x00020000U)                     
3493
#define GPIO_BSRR_BR_2                       (0x00040000U)                     
3494
#define GPIO_BSRR_BR_3                       (0x00080000U)                     
3495
#define GPIO_BSRR_BR_4                       (0x00100000U)                     
3496
#define GPIO_BSRR_BR_5                       (0x00200000U)                     
3497
#define GPIO_BSRR_BR_6                       (0x00400000U)                     
3498
#define GPIO_BSRR_BR_7                       (0x00800000U)                     
3499
#define GPIO_BSRR_BR_8                       (0x01000000U)                     
3500
#define GPIO_BSRR_BR_9                       (0x02000000U)                     
3501
#define GPIO_BSRR_BR_10                      (0x04000000U)                     
3502
#define GPIO_BSRR_BR_11                      (0x08000000U)                     
3503
#define GPIO_BSRR_BR_12                      (0x10000000U)                     
3504
#define GPIO_BSRR_BR_13                      (0x20000000U)                     
3505
#define GPIO_BSRR_BR_14                      (0x40000000U)                     
3506
#define GPIO_BSRR_BR_15                      (0x80000000U)                     
3507
 
3508
/****************** Bit definition for GPIO_LCKR register  ********************/
3509
#define GPIO_LCKR_LCK0_Pos                   (0U)                              
50 mjames 3510
#define GPIO_LCKR_LCK0_Msk                   (0x1UL << GPIO_LCKR_LCK0_Pos)      /*!< 0x00000001 */
30 mjames 3511
#define GPIO_LCKR_LCK0                       GPIO_LCKR_LCK0_Msk                
3512
#define GPIO_LCKR_LCK1_Pos                   (1U)                              
50 mjames 3513
#define GPIO_LCKR_LCK1_Msk                   (0x1UL << GPIO_LCKR_LCK1_Pos)      /*!< 0x00000002 */
30 mjames 3514
#define GPIO_LCKR_LCK1                       GPIO_LCKR_LCK1_Msk                
3515
#define GPIO_LCKR_LCK2_Pos                   (2U)                              
50 mjames 3516
#define GPIO_LCKR_LCK2_Msk                   (0x1UL << GPIO_LCKR_LCK2_Pos)      /*!< 0x00000004 */
30 mjames 3517
#define GPIO_LCKR_LCK2                       GPIO_LCKR_LCK2_Msk                
3518
#define GPIO_LCKR_LCK3_Pos                   (3U)                              
50 mjames 3519
#define GPIO_LCKR_LCK3_Msk                   (0x1UL << GPIO_LCKR_LCK3_Pos)      /*!< 0x00000008 */
30 mjames 3520
#define GPIO_LCKR_LCK3                       GPIO_LCKR_LCK3_Msk                
3521
#define GPIO_LCKR_LCK4_Pos                   (4U)                              
50 mjames 3522
#define GPIO_LCKR_LCK4_Msk                   (0x1UL << GPIO_LCKR_LCK4_Pos)      /*!< 0x00000010 */
30 mjames 3523
#define GPIO_LCKR_LCK4                       GPIO_LCKR_LCK4_Msk                
3524
#define GPIO_LCKR_LCK5_Pos                   (5U)                              
50 mjames 3525
#define GPIO_LCKR_LCK5_Msk                   (0x1UL << GPIO_LCKR_LCK5_Pos)      /*!< 0x00000020 */
30 mjames 3526
#define GPIO_LCKR_LCK5                       GPIO_LCKR_LCK5_Msk                
3527
#define GPIO_LCKR_LCK6_Pos                   (6U)                              
50 mjames 3528
#define GPIO_LCKR_LCK6_Msk                   (0x1UL << GPIO_LCKR_LCK6_Pos)      /*!< 0x00000040 */
30 mjames 3529
#define GPIO_LCKR_LCK6                       GPIO_LCKR_LCK6_Msk                
3530
#define GPIO_LCKR_LCK7_Pos                   (7U)                              
50 mjames 3531
#define GPIO_LCKR_LCK7_Msk                   (0x1UL << GPIO_LCKR_LCK7_Pos)      /*!< 0x00000080 */
30 mjames 3532
#define GPIO_LCKR_LCK7                       GPIO_LCKR_LCK7_Msk                
3533
#define GPIO_LCKR_LCK8_Pos                   (8U)                              
50 mjames 3534
#define GPIO_LCKR_LCK8_Msk                   (0x1UL << GPIO_LCKR_LCK8_Pos)      /*!< 0x00000100 */
30 mjames 3535
#define GPIO_LCKR_LCK8                       GPIO_LCKR_LCK8_Msk                
3536
#define GPIO_LCKR_LCK9_Pos                   (9U)                              
50 mjames 3537
#define GPIO_LCKR_LCK9_Msk                   (0x1UL << GPIO_LCKR_LCK9_Pos)      /*!< 0x00000200 */
30 mjames 3538
#define GPIO_LCKR_LCK9                       GPIO_LCKR_LCK9_Msk                
3539
#define GPIO_LCKR_LCK10_Pos                  (10U)                             
50 mjames 3540
#define GPIO_LCKR_LCK10_Msk                  (0x1UL << GPIO_LCKR_LCK10_Pos)     /*!< 0x00000400 */
30 mjames 3541
#define GPIO_LCKR_LCK10                      GPIO_LCKR_LCK10_Msk               
3542
#define GPIO_LCKR_LCK11_Pos                  (11U)                             
50 mjames 3543
#define GPIO_LCKR_LCK11_Msk                  (0x1UL << GPIO_LCKR_LCK11_Pos)     /*!< 0x00000800 */
30 mjames 3544
#define GPIO_LCKR_LCK11                      GPIO_LCKR_LCK11_Msk               
3545
#define GPIO_LCKR_LCK12_Pos                  (12U)                             
50 mjames 3546
#define GPIO_LCKR_LCK12_Msk                  (0x1UL << GPIO_LCKR_LCK12_Pos)     /*!< 0x00001000 */
30 mjames 3547
#define GPIO_LCKR_LCK12                      GPIO_LCKR_LCK12_Msk               
3548
#define GPIO_LCKR_LCK13_Pos                  (13U)                             
50 mjames 3549
#define GPIO_LCKR_LCK13_Msk                  (0x1UL << GPIO_LCKR_LCK13_Pos)     /*!< 0x00002000 */
30 mjames 3550
#define GPIO_LCKR_LCK13                      GPIO_LCKR_LCK13_Msk               
3551
#define GPIO_LCKR_LCK14_Pos                  (14U)                             
50 mjames 3552
#define GPIO_LCKR_LCK14_Msk                  (0x1UL << GPIO_LCKR_LCK14_Pos)     /*!< 0x00004000 */
30 mjames 3553
#define GPIO_LCKR_LCK14                      GPIO_LCKR_LCK14_Msk               
3554
#define GPIO_LCKR_LCK15_Pos                  (15U)                             
50 mjames 3555
#define GPIO_LCKR_LCK15_Msk                  (0x1UL << GPIO_LCKR_LCK15_Pos)     /*!< 0x00008000 */
30 mjames 3556
#define GPIO_LCKR_LCK15                      GPIO_LCKR_LCK15_Msk               
3557
#define GPIO_LCKR_LCKK_Pos                   (16U)                             
50 mjames 3558
#define GPIO_LCKR_LCKK_Msk                   (0x1UL << GPIO_LCKR_LCKK_Pos)      /*!< 0x00010000 */
30 mjames 3559
#define GPIO_LCKR_LCKK                       GPIO_LCKR_LCKK_Msk                
3560
 
3561
/****************** Bit definition for GPIO_AFRL register  ********************/
50 mjames 3562
#define GPIO_AFRL_AFSEL0_Pos                  (0U)                              
3563
#define GPIO_AFRL_AFSEL0_Msk                  (0xFUL << GPIO_AFRL_AFSEL0_Pos)     /*!< 0x0000000F */
3564
#define GPIO_AFRL_AFSEL0                      GPIO_AFRL_AFSEL0_Msk               
3565
#define GPIO_AFRL_AFSEL1_Pos                  (4U)                              
3566
#define GPIO_AFRL_AFSEL1_Msk                  (0xFUL << GPIO_AFRL_AFSEL1_Pos)     /*!< 0x000000F0 */
3567
#define GPIO_AFRL_AFSEL1                      GPIO_AFRL_AFSEL1_Msk               
3568
#define GPIO_AFRL_AFSEL2_Pos                  (8U)                              
3569
#define GPIO_AFRL_AFSEL2_Msk                  (0xFUL << GPIO_AFRL_AFSEL2_Pos)     /*!< 0x00000F00 */
3570
#define GPIO_AFRL_AFSEL2                      GPIO_AFRL_AFSEL2_Msk               
3571
#define GPIO_AFRL_AFSEL3_Pos                  (12U)                             
3572
#define GPIO_AFRL_AFSEL3_Msk                  (0xFUL << GPIO_AFRL_AFSEL3_Pos)     /*!< 0x0000F000 */
3573
#define GPIO_AFRL_AFSEL3                      GPIO_AFRL_AFSEL3_Msk               
3574
#define GPIO_AFRL_AFSEL4_Pos                  (16U)                             
3575
#define GPIO_AFRL_AFSEL4_Msk                  (0xFUL << GPIO_AFRL_AFSEL4_Pos)     /*!< 0x000F0000 */
3576
#define GPIO_AFRL_AFSEL4                      GPIO_AFRL_AFSEL4_Msk               
3577
#define GPIO_AFRL_AFSEL5_Pos                  (20U)                             
3578
#define GPIO_AFRL_AFSEL5_Msk                  (0xFUL << GPIO_AFRL_AFSEL5_Pos)     /*!< 0x00F00000 */
3579
#define GPIO_AFRL_AFSEL5                      GPIO_AFRL_AFSEL5_Msk               
3580
#define GPIO_AFRL_AFSEL6_Pos                  (24U)                             
3581
#define GPIO_AFRL_AFSEL6_Msk                  (0xFUL << GPIO_AFRL_AFSEL6_Pos)     /*!< 0x0F000000 */
3582
#define GPIO_AFRL_AFSEL6                      GPIO_AFRL_AFSEL6_Msk               
3583
#define GPIO_AFRL_AFSEL7_Pos                  (28U)                             
3584
#define GPIO_AFRL_AFSEL7_Msk                  (0xFUL << GPIO_AFRL_AFSEL7_Pos)     /*!< 0xF0000000 */
3585
#define GPIO_AFRL_AFSEL7                      GPIO_AFRL_AFSEL7_Msk               
30 mjames 3586
 
3587
/****************** Bit definition for GPIO_AFRH register  ********************/
50 mjames 3588
#define GPIO_AFRH_AFSEL8_Pos                  (0U)                              
3589
#define GPIO_AFRH_AFSEL8_Msk                  (0xFUL << GPIO_AFRH_AFSEL8_Pos)     /*!< 0x0000000F */
3590
#define GPIO_AFRH_AFSEL8                      GPIO_AFRH_AFSEL8_Msk               
3591
#define GPIO_AFRH_AFSEL9_Pos                  (4U)                              
3592
#define GPIO_AFRH_AFSEL9_Msk                  (0xFUL << GPIO_AFRH_AFSEL9_Pos)     /*!< 0x000000F0 */
3593
#define GPIO_AFRH_AFSEL9                      GPIO_AFRH_AFSEL9_Msk               
3594
#define GPIO_AFRH_AFSEL10_Pos                  (8U)                              
3595
#define GPIO_AFRH_AFSEL10_Msk                  (0xFUL << GPIO_AFRH_AFSEL10_Pos)     /*!< 0x00000F00 */
3596
#define GPIO_AFRH_AFSEL10                      GPIO_AFRH_AFSEL10_Msk               
3597
#define GPIO_AFRH_AFSEL11_Pos                  (12U)                             
3598
#define GPIO_AFRH_AFSEL11_Msk                  (0xFUL << GPIO_AFRH_AFSEL11_Pos)     /*!< 0x0000F000 */
3599
#define GPIO_AFRH_AFSEL11                      GPIO_AFRH_AFSEL11_Msk               
3600
#define GPIO_AFRH_AFSEL12_Pos                  (16U)                             
3601
#define GPIO_AFRH_AFSEL12_Msk                  (0xFUL << GPIO_AFRH_AFSEL12_Pos)     /*!< 0x000F0000 */
3602
#define GPIO_AFRH_AFSEL12                      GPIO_AFRH_AFSEL12_Msk               
3603
#define GPIO_AFRH_AFSEL13_Pos                  (20U)                             
3604
#define GPIO_AFRH_AFSEL13_Msk                  (0xFUL << GPIO_AFRH_AFSEL13_Pos)     /*!< 0x00F00000 */
3605
#define GPIO_AFRH_AFSEL13                      GPIO_AFRH_AFSEL13_Msk               
3606
#define GPIO_AFRH_AFSEL14_Pos                  (24U)                             
3607
#define GPIO_AFRH_AFSEL14_Msk                  (0xFUL << GPIO_AFRH_AFSEL14_Pos)     /*!< 0x0F000000 */
3608
#define GPIO_AFRH_AFSEL14                      GPIO_AFRH_AFSEL14_Msk               
3609
#define GPIO_AFRH_AFSEL15_Pos                  (28U)                             
3610
#define GPIO_AFRH_AFSEL15_Msk                  (0xFUL << GPIO_AFRH_AFSEL15_Pos)     /*!< 0xF0000000 */
3611
#define GPIO_AFRH_AFSEL15                      GPIO_AFRH_AFSEL15_Msk               
30 mjames 3612
 
3613
/******************************************************************************/
3614
/*                                                                            */
3615
/*                   Inter-integrated Circuit Interface (I2C)                 */
3616
/*                                                                            */
3617
/******************************************************************************/
3618
 
3619
/*******************  Bit definition for I2C_CR1 register  ********************/
3620
#define I2C_CR1_PE_Pos                      (0U)                               
50 mjames 3621
#define I2C_CR1_PE_Msk                      (0x1UL << I2C_CR1_PE_Pos)           /*!< 0x00000001 */
30 mjames 3622
#define I2C_CR1_PE                          I2C_CR1_PE_Msk                     /*!< Peripheral Enable */
3623
#define I2C_CR1_SMBUS_Pos                   (1U)                               
50 mjames 3624
#define I2C_CR1_SMBUS_Msk                   (0x1UL << I2C_CR1_SMBUS_Pos)        /*!< 0x00000002 */
30 mjames 3625
#define I2C_CR1_SMBUS                       I2C_CR1_SMBUS_Msk                  /*!< SMBus Mode */
3626
#define I2C_CR1_SMBTYPE_Pos                 (3U)                               
50 mjames 3627
#define I2C_CR1_SMBTYPE_Msk                 (0x1UL << I2C_CR1_SMBTYPE_Pos)      /*!< 0x00000008 */
30 mjames 3628
#define I2C_CR1_SMBTYPE                     I2C_CR1_SMBTYPE_Msk                /*!< SMBus Type */
3629
#define I2C_CR1_ENARP_Pos                   (4U)                               
50 mjames 3630
#define I2C_CR1_ENARP_Msk                   (0x1UL << I2C_CR1_ENARP_Pos)        /*!< 0x00000010 */
30 mjames 3631
#define I2C_CR1_ENARP                       I2C_CR1_ENARP_Msk                  /*!< ARP Enable */
3632
#define I2C_CR1_ENPEC_Pos                   (5U)                               
50 mjames 3633
#define I2C_CR1_ENPEC_Msk                   (0x1UL << I2C_CR1_ENPEC_Pos)        /*!< 0x00000020 */
30 mjames 3634
#define I2C_CR1_ENPEC                       I2C_CR1_ENPEC_Msk                  /*!< PEC Enable */
3635
#define I2C_CR1_ENGC_Pos                    (6U)                               
50 mjames 3636
#define I2C_CR1_ENGC_Msk                    (0x1UL << I2C_CR1_ENGC_Pos)         /*!< 0x00000040 */
30 mjames 3637
#define I2C_CR1_ENGC                        I2C_CR1_ENGC_Msk                   /*!< General Call Enable */
3638
#define I2C_CR1_NOSTRETCH_Pos               (7U)                               
50 mjames 3639
#define I2C_CR1_NOSTRETCH_Msk               (0x1UL << I2C_CR1_NOSTRETCH_Pos)    /*!< 0x00000080 */
30 mjames 3640
#define I2C_CR1_NOSTRETCH                   I2C_CR1_NOSTRETCH_Msk              /*!< Clock Stretching Disable (Slave mode) */
3641
#define I2C_CR1_START_Pos                   (8U)                               
50 mjames 3642
#define I2C_CR1_START_Msk                   (0x1UL << I2C_CR1_START_Pos)        /*!< 0x00000100 */
30 mjames 3643
#define I2C_CR1_START                       I2C_CR1_START_Msk                  /*!< Start Generation */
3644
#define I2C_CR1_STOP_Pos                    (9U)                               
50 mjames 3645
#define I2C_CR1_STOP_Msk                    (0x1UL << I2C_CR1_STOP_Pos)         /*!< 0x00000200 */
30 mjames 3646
#define I2C_CR1_STOP                        I2C_CR1_STOP_Msk                   /*!< Stop Generation */
3647
#define I2C_CR1_ACK_Pos                     (10U)                              
50 mjames 3648
#define I2C_CR1_ACK_Msk                     (0x1UL << I2C_CR1_ACK_Pos)          /*!< 0x00000400 */
30 mjames 3649
#define I2C_CR1_ACK                         I2C_CR1_ACK_Msk                    /*!< Acknowledge Enable */
3650
#define I2C_CR1_POS_Pos                     (11U)                              
50 mjames 3651
#define I2C_CR1_POS_Msk                     (0x1UL << I2C_CR1_POS_Pos)          /*!< 0x00000800 */
30 mjames 3652
#define I2C_CR1_POS                         I2C_CR1_POS_Msk                    /*!< Acknowledge/PEC Position (for data reception) */
3653
#define I2C_CR1_PEC_Pos                     (12U)                              
50 mjames 3654
#define I2C_CR1_PEC_Msk                     (0x1UL << I2C_CR1_PEC_Pos)          /*!< 0x00001000 */
30 mjames 3655
#define I2C_CR1_PEC                         I2C_CR1_PEC_Msk                    /*!< Packet Error Checking */
3656
#define I2C_CR1_ALERT_Pos                   (13U)                              
50 mjames 3657
#define I2C_CR1_ALERT_Msk                   (0x1UL << I2C_CR1_ALERT_Pos)        /*!< 0x00002000 */
30 mjames 3658
#define I2C_CR1_ALERT                       I2C_CR1_ALERT_Msk                  /*!< SMBus Alert */
3659
#define I2C_CR1_SWRST_Pos                   (15U)                              
50 mjames 3660
#define I2C_CR1_SWRST_Msk                   (0x1UL << I2C_CR1_SWRST_Pos)        /*!< 0x00008000 */
30 mjames 3661
#define I2C_CR1_SWRST                       I2C_CR1_SWRST_Msk                  /*!< Software Reset */
3662
 
3663
/*******************  Bit definition for I2C_CR2 register  ********************/
3664
#define I2C_CR2_FREQ_Pos                    (0U)                               
50 mjames 3665
#define I2C_CR2_FREQ_Msk                    (0x3FUL << I2C_CR2_FREQ_Pos)        /*!< 0x0000003F */
30 mjames 3666
#define I2C_CR2_FREQ                        I2C_CR2_FREQ_Msk                   /*!< FREQ[5:0] bits (Peripheral Clock Frequency) */
50 mjames 3667
#define I2C_CR2_FREQ_0                      (0x01UL << I2C_CR2_FREQ_Pos)        /*!< 0x00000001 */
3668
#define I2C_CR2_FREQ_1                      (0x02UL << I2C_CR2_FREQ_Pos)        /*!< 0x00000002 */
3669
#define I2C_CR2_FREQ_2                      (0x04UL << I2C_CR2_FREQ_Pos)        /*!< 0x00000004 */
3670
#define I2C_CR2_FREQ_3                      (0x08UL << I2C_CR2_FREQ_Pos)        /*!< 0x00000008 */
3671
#define I2C_CR2_FREQ_4                      (0x10UL << I2C_CR2_FREQ_Pos)        /*!< 0x00000010 */
3672
#define I2C_CR2_FREQ_5                      (0x20UL << I2C_CR2_FREQ_Pos)        /*!< 0x00000020 */
30 mjames 3673
 
3674
#define I2C_CR2_ITERREN_Pos                 (8U)                               
50 mjames 3675
#define I2C_CR2_ITERREN_Msk                 (0x1UL << I2C_CR2_ITERREN_Pos)      /*!< 0x00000100 */
30 mjames 3676
#define I2C_CR2_ITERREN                     I2C_CR2_ITERREN_Msk                /*!< Error Interrupt Enable */
3677
#define I2C_CR2_ITEVTEN_Pos                 (9U)                               
50 mjames 3678
#define I2C_CR2_ITEVTEN_Msk                 (0x1UL << I2C_CR2_ITEVTEN_Pos)      /*!< 0x00000200 */
30 mjames 3679
#define I2C_CR2_ITEVTEN                     I2C_CR2_ITEVTEN_Msk                /*!< Event Interrupt Enable */
3680
#define I2C_CR2_ITBUFEN_Pos                 (10U)                              
50 mjames 3681
#define I2C_CR2_ITBUFEN_Msk                 (0x1UL << I2C_CR2_ITBUFEN_Pos)      /*!< 0x00000400 */
30 mjames 3682
#define I2C_CR2_ITBUFEN                     I2C_CR2_ITBUFEN_Msk                /*!< Buffer Interrupt Enable */
3683
#define I2C_CR2_DMAEN_Pos                   (11U)                              
50 mjames 3684
#define I2C_CR2_DMAEN_Msk                   (0x1UL << I2C_CR2_DMAEN_Pos)        /*!< 0x00000800 */
30 mjames 3685
#define I2C_CR2_DMAEN                       I2C_CR2_DMAEN_Msk                  /*!< DMA Requests Enable */
3686
#define I2C_CR2_LAST_Pos                    (12U)                              
50 mjames 3687
#define I2C_CR2_LAST_Msk                    (0x1UL << I2C_CR2_LAST_Pos)         /*!< 0x00001000 */
30 mjames 3688
#define I2C_CR2_LAST                        I2C_CR2_LAST_Msk                   /*!< DMA Last Transfer */
3689
 
3690
/*******************  Bit definition for I2C_OAR1 register  *******************/
3691
#define I2C_OAR1_ADD1_7                     (0x000000FEU)                      /*!< Interface Address */
3692
#define I2C_OAR1_ADD8_9                     (0x00000300U)                      /*!< Interface Address */
3693
 
3694
#define I2C_OAR1_ADD0_Pos                   (0U)                               
50 mjames 3695
#define I2C_OAR1_ADD0_Msk                   (0x1UL << I2C_OAR1_ADD0_Pos)        /*!< 0x00000001 */
30 mjames 3696
#define I2C_OAR1_ADD0                       I2C_OAR1_ADD0_Msk                  /*!< Bit 0 */
3697
#define I2C_OAR1_ADD1_Pos                   (1U)                               
50 mjames 3698
#define I2C_OAR1_ADD1_Msk                   (0x1UL << I2C_OAR1_ADD1_Pos)        /*!< 0x00000002 */
30 mjames 3699
#define I2C_OAR1_ADD1                       I2C_OAR1_ADD1_Msk                  /*!< Bit 1 */
3700
#define I2C_OAR1_ADD2_Pos                   (2U)                               
50 mjames 3701
#define I2C_OAR1_ADD2_Msk                   (0x1UL << I2C_OAR1_ADD2_Pos)        /*!< 0x00000004 */
30 mjames 3702
#define I2C_OAR1_ADD2                       I2C_OAR1_ADD2_Msk                  /*!< Bit 2 */
3703
#define I2C_OAR1_ADD3_Pos                   (3U)                               
50 mjames 3704
#define I2C_OAR1_ADD3_Msk                   (0x1UL << I2C_OAR1_ADD3_Pos)        /*!< 0x00000008 */
30 mjames 3705
#define I2C_OAR1_ADD3                       I2C_OAR1_ADD3_Msk                  /*!< Bit 3 */
3706
#define I2C_OAR1_ADD4_Pos                   (4U)                               
50 mjames 3707
#define I2C_OAR1_ADD4_Msk                   (0x1UL << I2C_OAR1_ADD4_Pos)        /*!< 0x00000010 */
30 mjames 3708
#define I2C_OAR1_ADD4                       I2C_OAR1_ADD4_Msk                  /*!< Bit 4 */
3709
#define I2C_OAR1_ADD5_Pos                   (5U)                               
50 mjames 3710
#define I2C_OAR1_ADD5_Msk                   (0x1UL << I2C_OAR1_ADD5_Pos)        /*!< 0x00000020 */
30 mjames 3711
#define I2C_OAR1_ADD5                       I2C_OAR1_ADD5_Msk                  /*!< Bit 5 */
3712
#define I2C_OAR1_ADD6_Pos                   (6U)                               
50 mjames 3713
#define I2C_OAR1_ADD6_Msk                   (0x1UL << I2C_OAR1_ADD6_Pos)        /*!< 0x00000040 */
30 mjames 3714
#define I2C_OAR1_ADD6                       I2C_OAR1_ADD6_Msk                  /*!< Bit 6 */
3715
#define I2C_OAR1_ADD7_Pos                   (7U)                               
50 mjames 3716
#define I2C_OAR1_ADD7_Msk                   (0x1UL << I2C_OAR1_ADD7_Pos)        /*!< 0x00000080 */
30 mjames 3717
#define I2C_OAR1_ADD7                       I2C_OAR1_ADD7_Msk                  /*!< Bit 7 */
3718
#define I2C_OAR1_ADD8_Pos                   (8U)                               
50 mjames 3719
#define I2C_OAR1_ADD8_Msk                   (0x1UL << I2C_OAR1_ADD8_Pos)        /*!< 0x00000100 */
30 mjames 3720
#define I2C_OAR1_ADD8                       I2C_OAR1_ADD8_Msk                  /*!< Bit 8 */
3721
#define I2C_OAR1_ADD9_Pos                   (9U)                               
50 mjames 3722
#define I2C_OAR1_ADD9_Msk                   (0x1UL << I2C_OAR1_ADD9_Pos)        /*!< 0x00000200 */
30 mjames 3723
#define I2C_OAR1_ADD9                       I2C_OAR1_ADD9_Msk                  /*!< Bit 9 */
3724
 
3725
#define I2C_OAR1_ADDMODE_Pos                (15U)                              
50 mjames 3726
#define I2C_OAR1_ADDMODE_Msk                (0x1UL << I2C_OAR1_ADDMODE_Pos)     /*!< 0x00008000 */
30 mjames 3727
#define I2C_OAR1_ADDMODE                    I2C_OAR1_ADDMODE_Msk               /*!< Addressing Mode (Slave mode) */
3728
 
3729
/*******************  Bit definition for I2C_OAR2 register  *******************/
3730
#define I2C_OAR2_ENDUAL_Pos                 (0U)                               
50 mjames 3731
#define I2C_OAR2_ENDUAL_Msk                 (0x1UL << I2C_OAR2_ENDUAL_Pos)      /*!< 0x00000001 */
30 mjames 3732
#define I2C_OAR2_ENDUAL                     I2C_OAR2_ENDUAL_Msk                /*!< Dual addressing mode enable */
3733
#define I2C_OAR2_ADD2_Pos                   (1U)                               
50 mjames 3734
#define I2C_OAR2_ADD2_Msk                   (0x7FUL << I2C_OAR2_ADD2_Pos)       /*!< 0x000000FE */
30 mjames 3735
#define I2C_OAR2_ADD2                       I2C_OAR2_ADD2_Msk                  /*!< Interface address */
3736
 
3737
/********************  Bit definition for I2C_DR register  ********************/
3738
#define I2C_DR_DR_Pos                       (0U)                               
50 mjames 3739
#define I2C_DR_DR_Msk                       (0xFFUL << I2C_DR_DR_Pos)           /*!< 0x000000FF */
30 mjames 3740
#define I2C_DR_DR                           I2C_DR_DR_Msk                      /*!< 8-bit Data Register */
3741
 
3742
/*******************  Bit definition for I2C_SR1 register  ********************/
3743
#define I2C_SR1_SB_Pos                      (0U)                               
50 mjames 3744
#define I2C_SR1_SB_Msk                      (0x1UL << I2C_SR1_SB_Pos)           /*!< 0x00000001 */
30 mjames 3745
#define I2C_SR1_SB                          I2C_SR1_SB_Msk                     /*!< Start Bit (Master mode) */
3746
#define I2C_SR1_ADDR_Pos                    (1U)                               
50 mjames 3747
#define I2C_SR1_ADDR_Msk                    (0x1UL << I2C_SR1_ADDR_Pos)         /*!< 0x00000002 */
30 mjames 3748
#define I2C_SR1_ADDR                        I2C_SR1_ADDR_Msk                   /*!< Address sent (master mode)/matched (slave mode) */
3749
#define I2C_SR1_BTF_Pos                     (2U)                               
50 mjames 3750
#define I2C_SR1_BTF_Msk                     (0x1UL << I2C_SR1_BTF_Pos)          /*!< 0x00000004 */
30 mjames 3751
#define I2C_SR1_BTF                         I2C_SR1_BTF_Msk                    /*!< Byte Transfer Finished */
3752
#define I2C_SR1_ADD10_Pos                   (3U)                               
50 mjames 3753
#define I2C_SR1_ADD10_Msk                   (0x1UL << I2C_SR1_ADD10_Pos)        /*!< 0x00000008 */
30 mjames 3754
#define I2C_SR1_ADD10                       I2C_SR1_ADD10_Msk                  /*!< 10-bit header sent (Master mode) */
3755
#define I2C_SR1_STOPF_Pos                   (4U)                               
50 mjames 3756
#define I2C_SR1_STOPF_Msk                   (0x1UL << I2C_SR1_STOPF_Pos)        /*!< 0x00000010 */
30 mjames 3757
#define I2C_SR1_STOPF                       I2C_SR1_STOPF_Msk                  /*!< Stop detection (Slave mode) */
3758
#define I2C_SR1_RXNE_Pos                    (6U)                               
50 mjames 3759
#define I2C_SR1_RXNE_Msk                    (0x1UL << I2C_SR1_RXNE_Pos)         /*!< 0x00000040 */
30 mjames 3760
#define I2C_SR1_RXNE                        I2C_SR1_RXNE_Msk                   /*!< Data Register not Empty (receivers) */
3761
#define I2C_SR1_TXE_Pos                     (7U)                               
50 mjames 3762
#define I2C_SR1_TXE_Msk                     (0x1UL << I2C_SR1_TXE_Pos)          /*!< 0x00000080 */
30 mjames 3763
#define I2C_SR1_TXE                         I2C_SR1_TXE_Msk                    /*!< Data Register Empty (transmitters) */
3764
#define I2C_SR1_BERR_Pos                    (8U)                               
50 mjames 3765
#define I2C_SR1_BERR_Msk                    (0x1UL << I2C_SR1_BERR_Pos)         /*!< 0x00000100 */
30 mjames 3766
#define I2C_SR1_BERR                        I2C_SR1_BERR_Msk                   /*!< Bus Error */
3767
#define I2C_SR1_ARLO_Pos                    (9U)                               
50 mjames 3768
#define I2C_SR1_ARLO_Msk                    (0x1UL << I2C_SR1_ARLO_Pos)         /*!< 0x00000200 */
30 mjames 3769
#define I2C_SR1_ARLO                        I2C_SR1_ARLO_Msk                   /*!< Arbitration Lost (master mode) */
3770
#define I2C_SR1_AF_Pos                      (10U)                              
50 mjames 3771
#define I2C_SR1_AF_Msk                      (0x1UL << I2C_SR1_AF_Pos)           /*!< 0x00000400 */
30 mjames 3772
#define I2C_SR1_AF                          I2C_SR1_AF_Msk                     /*!< Acknowledge Failure */
3773
#define I2C_SR1_OVR_Pos                     (11U)                              
50 mjames 3774
#define I2C_SR1_OVR_Msk                     (0x1UL << I2C_SR1_OVR_Pos)          /*!< 0x00000800 */
30 mjames 3775
#define I2C_SR1_OVR                         I2C_SR1_OVR_Msk                    /*!< Overrun/Underrun */
3776
#define I2C_SR1_PECERR_Pos                  (12U)                              
50 mjames 3777
#define I2C_SR1_PECERR_Msk                  (0x1UL << I2C_SR1_PECERR_Pos)       /*!< 0x00001000 */
30 mjames 3778
#define I2C_SR1_PECERR                      I2C_SR1_PECERR_Msk                 /*!< PEC Error in reception */
3779
#define I2C_SR1_TIMEOUT_Pos                 (14U)                              
50 mjames 3780
#define I2C_SR1_TIMEOUT_Msk                 (0x1UL << I2C_SR1_TIMEOUT_Pos)      /*!< 0x00004000 */
30 mjames 3781
#define I2C_SR1_TIMEOUT                     I2C_SR1_TIMEOUT_Msk                /*!< Timeout or Tlow Error */
3782
#define I2C_SR1_SMBALERT_Pos                (15U)                              
50 mjames 3783
#define I2C_SR1_SMBALERT_Msk                (0x1UL << I2C_SR1_SMBALERT_Pos)     /*!< 0x00008000 */
30 mjames 3784
#define I2C_SR1_SMBALERT                    I2C_SR1_SMBALERT_Msk               /*!< SMBus Alert */
3785
 
3786
/*******************  Bit definition for I2C_SR2 register  ********************/
3787
#define I2C_SR2_MSL_Pos                     (0U)                               
50 mjames 3788
#define I2C_SR2_MSL_Msk                     (0x1UL << I2C_SR2_MSL_Pos)          /*!< 0x00000001 */
30 mjames 3789
#define I2C_SR2_MSL                         I2C_SR2_MSL_Msk                    /*!< Master/Slave */
3790
#define I2C_SR2_BUSY_Pos                    (1U)                               
50 mjames 3791
#define I2C_SR2_BUSY_Msk                    (0x1UL << I2C_SR2_BUSY_Pos)         /*!< 0x00000002 */
30 mjames 3792
#define I2C_SR2_BUSY                        I2C_SR2_BUSY_Msk                   /*!< Bus Busy */
3793
#define I2C_SR2_TRA_Pos                     (2U)                               
50 mjames 3794
#define I2C_SR2_TRA_Msk                     (0x1UL << I2C_SR2_TRA_Pos)          /*!< 0x00000004 */
30 mjames 3795
#define I2C_SR2_TRA                         I2C_SR2_TRA_Msk                    /*!< Transmitter/Receiver */
3796
#define I2C_SR2_GENCALL_Pos                 (4U)                               
50 mjames 3797
#define I2C_SR2_GENCALL_Msk                 (0x1UL << I2C_SR2_GENCALL_Pos)      /*!< 0x00000010 */
30 mjames 3798
#define I2C_SR2_GENCALL                     I2C_SR2_GENCALL_Msk                /*!< General Call Address (Slave mode) */
3799
#define I2C_SR2_SMBDEFAULT_Pos              (5U)                               
50 mjames 3800
#define I2C_SR2_SMBDEFAULT_Msk              (0x1UL << I2C_SR2_SMBDEFAULT_Pos)   /*!< 0x00000020 */
30 mjames 3801
#define I2C_SR2_SMBDEFAULT                  I2C_SR2_SMBDEFAULT_Msk             /*!< SMBus Device Default Address (Slave mode) */
3802
#define I2C_SR2_SMBHOST_Pos                 (6U)                               
50 mjames 3803
#define I2C_SR2_SMBHOST_Msk                 (0x1UL << I2C_SR2_SMBHOST_Pos)      /*!< 0x00000040 */
30 mjames 3804
#define I2C_SR2_SMBHOST                     I2C_SR2_SMBHOST_Msk                /*!< SMBus Host Header (Slave mode) */
3805
#define I2C_SR2_DUALF_Pos                   (7U)                               
50 mjames 3806
#define I2C_SR2_DUALF_Msk                   (0x1UL << I2C_SR2_DUALF_Pos)        /*!< 0x00000080 */
30 mjames 3807
#define I2C_SR2_DUALF                       I2C_SR2_DUALF_Msk                  /*!< Dual Flag (Slave mode) */
3808
#define I2C_SR2_PEC_Pos                     (8U)                               
50 mjames 3809
#define I2C_SR2_PEC_Msk                     (0xFFUL << I2C_SR2_PEC_Pos)         /*!< 0x0000FF00 */
30 mjames 3810
#define I2C_SR2_PEC                         I2C_SR2_PEC_Msk                    /*!< Packet Error Checking Register */
3811
 
3812
/*******************  Bit definition for I2C_CCR register  ********************/
3813
#define I2C_CCR_CCR_Pos                     (0U)                               
50 mjames 3814
#define I2C_CCR_CCR_Msk                     (0xFFFUL << I2C_CCR_CCR_Pos)        /*!< 0x00000FFF */
30 mjames 3815
#define I2C_CCR_CCR                         I2C_CCR_CCR_Msk                    /*!< Clock Control Register in Fast/Standard mode (Master mode) */
3816
#define I2C_CCR_DUTY_Pos                    (14U)                              
50 mjames 3817
#define I2C_CCR_DUTY_Msk                    (0x1UL << I2C_CCR_DUTY_Pos)         /*!< 0x00004000 */
30 mjames 3818
#define I2C_CCR_DUTY                        I2C_CCR_DUTY_Msk                   /*!< Fast Mode Duty Cycle */
3819
#define I2C_CCR_FS_Pos                      (15U)                              
50 mjames 3820
#define I2C_CCR_FS_Msk                      (0x1UL << I2C_CCR_FS_Pos)           /*!< 0x00008000 */
30 mjames 3821
#define I2C_CCR_FS                          I2C_CCR_FS_Msk                     /*!< I2C Master Mode Selection */
3822
 
3823
/******************  Bit definition for I2C_TRISE register  *******************/
3824
#define I2C_TRISE_TRISE_Pos                 (0U)                               
50 mjames 3825
#define I2C_TRISE_TRISE_Msk                 (0x3FUL << I2C_TRISE_TRISE_Pos)     /*!< 0x0000003F */
30 mjames 3826
#define I2C_TRISE_TRISE                     I2C_TRISE_TRISE_Msk                /*!< Maximum Rise Time in Fast/Standard mode (Master mode) */
3827
 
3828
/******************************************************************************/
3829
/*                                                                            */
3830
/*                        Independent WATCHDOG (IWDG)                         */
3831
/*                                                                            */
3832
/******************************************************************************/
3833
 
3834
/*******************  Bit definition for IWDG_KR register  ********************/
3835
#define IWDG_KR_KEY_Pos                     (0U)                               
50 mjames 3836
#define IWDG_KR_KEY_Msk                     (0xFFFFUL << IWDG_KR_KEY_Pos)       /*!< 0x0000FFFF */
30 mjames 3837
#define IWDG_KR_KEY                         IWDG_KR_KEY_Msk                    /*!< Key value (write only, read 0000h) */
3838
 
3839
/*******************  Bit definition for IWDG_PR register  ********************/
3840
#define IWDG_PR_PR_Pos                      (0U)                               
50 mjames 3841
#define IWDG_PR_PR_Msk                      (0x7UL << IWDG_PR_PR_Pos)           /*!< 0x00000007 */
30 mjames 3842
#define IWDG_PR_PR                          IWDG_PR_PR_Msk                     /*!< PR[2:0] (Prescaler divider) */
50 mjames 3843
#define IWDG_PR_PR_0                        (0x1UL << IWDG_PR_PR_Pos)           /*!< 0x00000001 */
3844
#define IWDG_PR_PR_1                        (0x2UL << IWDG_PR_PR_Pos)           /*!< 0x00000002 */
3845
#define IWDG_PR_PR_2                        (0x4UL << IWDG_PR_PR_Pos)           /*!< 0x00000004 */
30 mjames 3846
 
3847
/*******************  Bit definition for IWDG_RLR register  *******************/
3848
#define IWDG_RLR_RL_Pos                     (0U)                               
50 mjames 3849
#define IWDG_RLR_RL_Msk                     (0xFFFUL << IWDG_RLR_RL_Pos)        /*!< 0x00000FFF */
30 mjames 3850
#define IWDG_RLR_RL                         IWDG_RLR_RL_Msk                    /*!< Watchdog counter reload value */
3851
 
3852
/*******************  Bit definition for IWDG_SR register  ********************/
3853
#define IWDG_SR_PVU_Pos                     (0U)                               
50 mjames 3854
#define IWDG_SR_PVU_Msk                     (0x1UL << IWDG_SR_PVU_Pos)          /*!< 0x00000001 */
30 mjames 3855
#define IWDG_SR_PVU                         IWDG_SR_PVU_Msk                    /*!< Watchdog prescaler value update */
3856
#define IWDG_SR_RVU_Pos                     (1U)                               
50 mjames 3857
#define IWDG_SR_RVU_Msk                     (0x1UL << IWDG_SR_RVU_Pos)          /*!< 0x00000002 */
30 mjames 3858
#define IWDG_SR_RVU                         IWDG_SR_RVU_Msk                    /*!< Watchdog counter reload value update */
3859
 
3860
/******************************************************************************/
3861
/*                                                                            */
3862
/*                          Power Control (PWR)                               */
3863
/*                                                                            */
3864
/******************************************************************************/
3865
 
3866
#define PWR_PVD_SUPPORT                       /*!< PWR feature available only on specific devices: Power Voltage Detection feature */
3867
 
3868
/********************  Bit definition for PWR_CR register  ********************/
3869
#define PWR_CR_LPSDSR_Pos                   (0U)                               
50 mjames 3870
#define PWR_CR_LPSDSR_Msk                   (0x1UL << PWR_CR_LPSDSR_Pos)        /*!< 0x00000001 */
30 mjames 3871
#define PWR_CR_LPSDSR                       PWR_CR_LPSDSR_Msk                  /*!< Low-power deepsleep/sleep/low power run */
3872
#define PWR_CR_PDDS_Pos                     (1U)                               
50 mjames 3873
#define PWR_CR_PDDS_Msk                     (0x1UL << PWR_CR_PDDS_Pos)          /*!< 0x00000002 */
30 mjames 3874
#define PWR_CR_PDDS                         PWR_CR_PDDS_Msk                    /*!< Power Down Deepsleep */
3875
#define PWR_CR_CWUF_Pos                     (2U)                               
50 mjames 3876
#define PWR_CR_CWUF_Msk                     (0x1UL << PWR_CR_CWUF_Pos)          /*!< 0x00000004 */
30 mjames 3877
#define PWR_CR_CWUF                         PWR_CR_CWUF_Msk                    /*!< Clear Wakeup Flag */
3878
#define PWR_CR_CSBF_Pos                     (3U)                               
50 mjames 3879
#define PWR_CR_CSBF_Msk                     (0x1UL << PWR_CR_CSBF_Pos)          /*!< 0x00000008 */
30 mjames 3880
#define PWR_CR_CSBF                         PWR_CR_CSBF_Msk                    /*!< Clear Standby Flag */
3881
#define PWR_CR_PVDE_Pos                     (4U)                               
50 mjames 3882
#define PWR_CR_PVDE_Msk                     (0x1UL << PWR_CR_PVDE_Pos)          /*!< 0x00000010 */
30 mjames 3883
#define PWR_CR_PVDE                         PWR_CR_PVDE_Msk                    /*!< Power Voltage Detector Enable */
3884
 
3885
#define PWR_CR_PLS_Pos                      (5U)                               
50 mjames 3886
#define PWR_CR_PLS_Msk                      (0x7UL << PWR_CR_PLS_Pos)           /*!< 0x000000E0 */
30 mjames 3887
#define PWR_CR_PLS                          PWR_CR_PLS_Msk                     /*!< PLS[2:0] bits (PVD Level Selection) */
50 mjames 3888
#define PWR_CR_PLS_0                        (0x1UL << PWR_CR_PLS_Pos)           /*!< 0x00000020 */
3889
#define PWR_CR_PLS_1                        (0x2UL << PWR_CR_PLS_Pos)           /*!< 0x00000040 */
3890
#define PWR_CR_PLS_2                        (0x4UL << PWR_CR_PLS_Pos)           /*!< 0x00000080 */
30 mjames 3891
 
3892
/*!< PVD level configuration */
3893
#define PWR_CR_PLS_LEV0                     (0x00000000U)                      /*!< PVD level 0 */
3894
#define PWR_CR_PLS_LEV1                     (0x00000020U)                      /*!< PVD level 1 */
3895
#define PWR_CR_PLS_LEV2                     (0x00000040U)                      /*!< PVD level 2 */
3896
#define PWR_CR_PLS_LEV3                     (0x00000060U)                      /*!< PVD level 3 */
3897
#define PWR_CR_PLS_LEV4                     (0x00000080U)                      /*!< PVD level 4 */
3898
#define PWR_CR_PLS_LEV5                     (0x000000A0U)                      /*!< PVD level 5 */
3899
#define PWR_CR_PLS_LEV6                     (0x000000C0U)                      /*!< PVD level 6 */
3900
#define PWR_CR_PLS_LEV7                     (0x000000E0U)                      /*!< PVD level 7 */
3901
 
3902
#define PWR_CR_DBP_Pos                      (8U)                               
50 mjames 3903
#define PWR_CR_DBP_Msk                      (0x1UL << PWR_CR_DBP_Pos)           /*!< 0x00000100 */
30 mjames 3904
#define PWR_CR_DBP                          PWR_CR_DBP_Msk                     /*!< Disable Backup Domain write protection */
3905
#define PWR_CR_ULP_Pos                      (9U)                               
50 mjames 3906
#define PWR_CR_ULP_Msk                      (0x1UL << PWR_CR_ULP_Pos)           /*!< 0x00000200 */
30 mjames 3907
#define PWR_CR_ULP                          PWR_CR_ULP_Msk                     /*!< Ultra Low Power mode */
3908
#define PWR_CR_FWU_Pos                      (10U)                              
50 mjames 3909
#define PWR_CR_FWU_Msk                      (0x1UL << PWR_CR_FWU_Pos)           /*!< 0x00000400 */
30 mjames 3910
#define PWR_CR_FWU                          PWR_CR_FWU_Msk                     /*!< Fast wakeup */
3911
 
3912
#define PWR_CR_VOS_Pos                      (11U)                              
50 mjames 3913
#define PWR_CR_VOS_Msk                      (0x3UL << PWR_CR_VOS_Pos)           /*!< 0x00001800 */
30 mjames 3914
#define PWR_CR_VOS                          PWR_CR_VOS_Msk                     /*!< VOS[1:0] bits (Voltage scaling range selection) */
50 mjames 3915
#define PWR_CR_VOS_0                        (0x1UL << PWR_CR_VOS_Pos)           /*!< 0x00000800 */
3916
#define PWR_CR_VOS_1                        (0x2UL << PWR_CR_VOS_Pos)           /*!< 0x00001000 */
30 mjames 3917
#define PWR_CR_LPRUN_Pos                    (14U)                              
50 mjames 3918
#define PWR_CR_LPRUN_Msk                    (0x1UL << PWR_CR_LPRUN_Pos)         /*!< 0x00004000 */
30 mjames 3919
#define PWR_CR_LPRUN                        PWR_CR_LPRUN_Msk                   /*!< Low power run mode */
3920
 
3921
/*******************  Bit definition for PWR_CSR register  ********************/
3922
#define PWR_CSR_WUF_Pos                     (0U)                               
50 mjames 3923
#define PWR_CSR_WUF_Msk                     (0x1UL << PWR_CSR_WUF_Pos)          /*!< 0x00000001 */
30 mjames 3924
#define PWR_CSR_WUF                         PWR_CSR_WUF_Msk                    /*!< Wakeup Flag */
3925
#define PWR_CSR_SBF_Pos                     (1U)                               
50 mjames 3926
#define PWR_CSR_SBF_Msk                     (0x1UL << PWR_CSR_SBF_Pos)          /*!< 0x00000002 */
30 mjames 3927
#define PWR_CSR_SBF                         PWR_CSR_SBF_Msk                    /*!< Standby Flag */
3928
#define PWR_CSR_PVDO_Pos                    (2U)                               
50 mjames 3929
#define PWR_CSR_PVDO_Msk                    (0x1UL << PWR_CSR_PVDO_Pos)         /*!< 0x00000004 */
30 mjames 3930
#define PWR_CSR_PVDO                        PWR_CSR_PVDO_Msk                   /*!< PVD Output */
3931
#define PWR_CSR_VREFINTRDYF_Pos             (3U)                               
50 mjames 3932
#define PWR_CSR_VREFINTRDYF_Msk             (0x1UL << PWR_CSR_VREFINTRDYF_Pos)  /*!< 0x00000008 */
30 mjames 3933
#define PWR_CSR_VREFINTRDYF                 PWR_CSR_VREFINTRDYF_Msk            /*!< Internal voltage reference (VREFINT) ready flag */
3934
#define PWR_CSR_VOSF_Pos                    (4U)                               
50 mjames 3935
#define PWR_CSR_VOSF_Msk                    (0x1UL << PWR_CSR_VOSF_Pos)         /*!< 0x00000010 */
30 mjames 3936
#define PWR_CSR_VOSF                        PWR_CSR_VOSF_Msk                   /*!< Voltage Scaling select flag */
3937
#define PWR_CSR_REGLPF_Pos                  (5U)                               
50 mjames 3938
#define PWR_CSR_REGLPF_Msk                  (0x1UL << PWR_CSR_REGLPF_Pos)       /*!< 0x00000020 */
30 mjames 3939
#define PWR_CSR_REGLPF                      PWR_CSR_REGLPF_Msk                 /*!< Regulator LP flag */
3940
 
3941
#define PWR_CSR_EWUP1_Pos                   (8U)                               
50 mjames 3942
#define PWR_CSR_EWUP1_Msk                   (0x1UL << PWR_CSR_EWUP1_Pos)        /*!< 0x00000100 */
30 mjames 3943
#define PWR_CSR_EWUP1                       PWR_CSR_EWUP1_Msk                  /*!< Enable WKUP pin 1 */
3944
#define PWR_CSR_EWUP2_Pos                   (9U)                               
50 mjames 3945
#define PWR_CSR_EWUP2_Msk                   (0x1UL << PWR_CSR_EWUP2_Pos)        /*!< 0x00000200 */
30 mjames 3946
#define PWR_CSR_EWUP2                       PWR_CSR_EWUP2_Msk                  /*!< Enable WKUP pin 2 */
3947
#define PWR_CSR_EWUP3_Pos                   (10U)                              
50 mjames 3948
#define PWR_CSR_EWUP3_Msk                   (0x1UL << PWR_CSR_EWUP3_Pos)        /*!< 0x00000400 */
30 mjames 3949
#define PWR_CSR_EWUP3                       PWR_CSR_EWUP3_Msk                  /*!< Enable WKUP pin 3 */
3950
 
3951
/******************************************************************************/
3952
/*                                                                            */
3953
/*                      Reset and Clock Control (RCC)                         */
3954
/*                                                                            */
3955
/******************************************************************************/
3956
/*
3957
* @brief Specific device feature definitions  (not present on all devices in the STM32F0 serie)
3958
*/
3959
#define RCC_LSECSS_SUPPORT          /*!< LSE CSS feature support */
3960
 
3961
/********************  Bit definition for RCC_CR register  ********************/
3962
#define RCC_CR_HSION_Pos                    (0U)                               
50 mjames 3963
#define RCC_CR_HSION_Msk                    (0x1UL << RCC_CR_HSION_Pos)         /*!< 0x00000001 */
30 mjames 3964
#define RCC_CR_HSION                        RCC_CR_HSION_Msk                   /*!< Internal High Speed clock enable */
3965
#define RCC_CR_HSIRDY_Pos                   (1U)                               
50 mjames 3966
#define RCC_CR_HSIRDY_Msk                   (0x1UL << RCC_CR_HSIRDY_Pos)        /*!< 0x00000002 */
30 mjames 3967
#define RCC_CR_HSIRDY                       RCC_CR_HSIRDY_Msk                  /*!< Internal High Speed clock ready flag */
3968
 
3969
#define RCC_CR_MSION_Pos                    (8U)                               
50 mjames 3970
#define RCC_CR_MSION_Msk                    (0x1UL << RCC_CR_MSION_Pos)         /*!< 0x00000100 */
30 mjames 3971
#define RCC_CR_MSION                        RCC_CR_MSION_Msk                   /*!< Internal Multi Speed clock enable */
3972
#define RCC_CR_MSIRDY_Pos                   (9U)                               
50 mjames 3973
#define RCC_CR_MSIRDY_Msk                   (0x1UL << RCC_CR_MSIRDY_Pos)        /*!< 0x00000200 */
30 mjames 3974
#define RCC_CR_MSIRDY                       RCC_CR_MSIRDY_Msk                  /*!< Internal Multi Speed clock ready flag */
3975
 
3976
#define RCC_CR_HSEON_Pos                    (16U)                              
50 mjames 3977
#define RCC_CR_HSEON_Msk                    (0x1UL << RCC_CR_HSEON_Pos)         /*!< 0x00010000 */
30 mjames 3978
#define RCC_CR_HSEON                        RCC_CR_HSEON_Msk                   /*!< External High Speed clock enable */
3979
#define RCC_CR_HSERDY_Pos                   (17U)                              
50 mjames 3980
#define RCC_CR_HSERDY_Msk                   (0x1UL << RCC_CR_HSERDY_Pos)        /*!< 0x00020000 */
30 mjames 3981
#define RCC_CR_HSERDY                       RCC_CR_HSERDY_Msk                  /*!< External High Speed clock ready flag */
3982
#define RCC_CR_HSEBYP_Pos                   (18U)                              
50 mjames 3983
#define RCC_CR_HSEBYP_Msk                   (0x1UL << RCC_CR_HSEBYP_Pos)        /*!< 0x00040000 */
30 mjames 3984
#define RCC_CR_HSEBYP                       RCC_CR_HSEBYP_Msk                  /*!< External High Speed clock Bypass */
3985
 
3986
#define RCC_CR_PLLON_Pos                    (24U)                              
50 mjames 3987
#define RCC_CR_PLLON_Msk                    (0x1UL << RCC_CR_PLLON_Pos)         /*!< 0x01000000 */
30 mjames 3988
#define RCC_CR_PLLON                        RCC_CR_PLLON_Msk                   /*!< PLL enable */
3989
#define RCC_CR_PLLRDY_Pos                   (25U)                              
50 mjames 3990
#define RCC_CR_PLLRDY_Msk                   (0x1UL << RCC_CR_PLLRDY_Pos)        /*!< 0x02000000 */
30 mjames 3991
#define RCC_CR_PLLRDY                       RCC_CR_PLLRDY_Msk                  /*!< PLL clock ready flag */
3992
#define RCC_CR_CSSON_Pos                    (28U)                              
50 mjames 3993
#define RCC_CR_CSSON_Msk                    (0x1UL << RCC_CR_CSSON_Pos)         /*!< 0x10000000 */
30 mjames 3994
#define RCC_CR_CSSON                        RCC_CR_CSSON_Msk                   /*!< Clock Security System enable */
3995
 
3996
#define RCC_CR_RTCPRE_Pos                   (29U)                              
50 mjames 3997
#define RCC_CR_RTCPRE_Msk                   (0x3UL << RCC_CR_RTCPRE_Pos)        /*!< 0x60000000 */
30 mjames 3998
#define RCC_CR_RTCPRE                       RCC_CR_RTCPRE_Msk                  /*!< RTC Prescaler */
3999
#define RCC_CR_RTCPRE_0                     (0x20000000U)                      /*!< Bit0 */
4000
#define RCC_CR_RTCPRE_1                     (0x40000000U)                      /*!< Bit1 */
4001
 
4002
/********************  Bit definition for RCC_ICSCR register  *****************/
4003
#define RCC_ICSCR_HSICAL_Pos                (0U)                               
50 mjames 4004
#define RCC_ICSCR_HSICAL_Msk                (0xFFUL << RCC_ICSCR_HSICAL_Pos)    /*!< 0x000000FF */
30 mjames 4005
#define RCC_ICSCR_HSICAL                    RCC_ICSCR_HSICAL_Msk               /*!< Internal High Speed clock Calibration */
4006
#define RCC_ICSCR_HSITRIM_Pos               (8U)                               
50 mjames 4007
#define RCC_ICSCR_HSITRIM_Msk               (0x1FUL << RCC_ICSCR_HSITRIM_Pos)   /*!< 0x00001F00 */
30 mjames 4008
#define RCC_ICSCR_HSITRIM                   RCC_ICSCR_HSITRIM_Msk              /*!< Internal High Speed clock trimming */
4009
 
4010
#define RCC_ICSCR_MSIRANGE_Pos              (13U)                              
50 mjames 4011
#define RCC_ICSCR_MSIRANGE_Msk              (0x7UL << RCC_ICSCR_MSIRANGE_Pos)   /*!< 0x0000E000 */
30 mjames 4012
#define RCC_ICSCR_MSIRANGE                  RCC_ICSCR_MSIRANGE_Msk             /*!< Internal Multi Speed clock Range */
50 mjames 4013
#define RCC_ICSCR_MSIRANGE_0                (0x0UL << RCC_ICSCR_MSIRANGE_Pos)   /*!< 0x00000000 */
4014
#define RCC_ICSCR_MSIRANGE_1                (0x1UL << RCC_ICSCR_MSIRANGE_Pos)   /*!< 0x00002000 */
4015
#define RCC_ICSCR_MSIRANGE_2                (0x2UL << RCC_ICSCR_MSIRANGE_Pos)   /*!< 0x00004000 */
4016
#define RCC_ICSCR_MSIRANGE_3                (0x3UL << RCC_ICSCR_MSIRANGE_Pos)   /*!< 0x00006000 */
4017
#define RCC_ICSCR_MSIRANGE_4                (0x4UL << RCC_ICSCR_MSIRANGE_Pos)   /*!< 0x00008000 */
4018
#define RCC_ICSCR_MSIRANGE_5                (0x5UL << RCC_ICSCR_MSIRANGE_Pos)   /*!< 0x0000A000 */
4019
#define RCC_ICSCR_MSIRANGE_6                (0x6UL << RCC_ICSCR_MSIRANGE_Pos)   /*!< 0x0000C000 */
30 mjames 4020
#define RCC_ICSCR_MSICAL_Pos                (16U)                              
50 mjames 4021
#define RCC_ICSCR_MSICAL_Msk                (0xFFUL << RCC_ICSCR_MSICAL_Pos)    /*!< 0x00FF0000 */
30 mjames 4022
#define RCC_ICSCR_MSICAL                    RCC_ICSCR_MSICAL_Msk               /*!< Internal Multi Speed clock Calibration */
4023
#define RCC_ICSCR_MSITRIM_Pos               (24U)                              
50 mjames 4024
#define RCC_ICSCR_MSITRIM_Msk               (0xFFUL << RCC_ICSCR_MSITRIM_Pos)   /*!< 0xFF000000 */
30 mjames 4025
#define RCC_ICSCR_MSITRIM                   RCC_ICSCR_MSITRIM_Msk              /*!< Internal Multi Speed clock trimming */
4026
 
4027
/********************  Bit definition for RCC_CFGR register  ******************/
4028
#define RCC_CFGR_SW_Pos                     (0U)                               
50 mjames 4029
#define RCC_CFGR_SW_Msk                     (0x3UL << RCC_CFGR_SW_Pos)          /*!< 0x00000003 */
30 mjames 4030
#define RCC_CFGR_SW                         RCC_CFGR_SW_Msk                    /*!< SW[1:0] bits (System clock Switch) */
50 mjames 4031
#define RCC_CFGR_SW_0                       (0x1UL << RCC_CFGR_SW_Pos)          /*!< 0x00000001 */
4032
#define RCC_CFGR_SW_1                       (0x2UL << RCC_CFGR_SW_Pos)          /*!< 0x00000002 */
30 mjames 4033
 
4034
/*!< SW configuration */
4035
#define RCC_CFGR_SW_MSI                     (0x00000000U)                      /*!< MSI selected as system clock */
4036
#define RCC_CFGR_SW_HSI                     (0x00000001U)                      /*!< HSI selected as system clock */
4037
#define RCC_CFGR_SW_HSE                     (0x00000002U)                      /*!< HSE selected as system clock */
4038
#define RCC_CFGR_SW_PLL                     (0x00000003U)                      /*!< PLL selected as system clock */
4039
 
4040
#define RCC_CFGR_SWS_Pos                    (2U)                               
50 mjames 4041
#define RCC_CFGR_SWS_Msk                    (0x3UL << RCC_CFGR_SWS_Pos)         /*!< 0x0000000C */
30 mjames 4042
#define RCC_CFGR_SWS                        RCC_CFGR_SWS_Msk                   /*!< SWS[1:0] bits (System Clock Switch Status) */
50 mjames 4043
#define RCC_CFGR_SWS_0                      (0x1UL << RCC_CFGR_SWS_Pos)         /*!< 0x00000004 */
4044
#define RCC_CFGR_SWS_1                      (0x2UL << RCC_CFGR_SWS_Pos)         /*!< 0x00000008 */
30 mjames 4045
 
4046
/*!< SWS configuration */
4047
#define RCC_CFGR_SWS_MSI                    (0x00000000U)                      /*!< MSI oscillator used as system clock */
4048
#define RCC_CFGR_SWS_HSI                    (0x00000004U)                      /*!< HSI oscillator used as system clock */
4049
#define RCC_CFGR_SWS_HSE                    (0x00000008U)                      /*!< HSE oscillator used as system clock */
4050
#define RCC_CFGR_SWS_PLL                    (0x0000000CU)                      /*!< PLL used as system clock */
4051
 
4052
#define RCC_CFGR_HPRE_Pos                   (4U)                               
50 mjames 4053
#define RCC_CFGR_HPRE_Msk                   (0xFUL << RCC_CFGR_HPRE_Pos)        /*!< 0x000000F0 */
30 mjames 4054
#define RCC_CFGR_HPRE                       RCC_CFGR_HPRE_Msk                  /*!< HPRE[3:0] bits (AHB prescaler) */
50 mjames 4055
#define RCC_CFGR_HPRE_0                     (0x1UL << RCC_CFGR_HPRE_Pos)        /*!< 0x00000010 */
4056
#define RCC_CFGR_HPRE_1                     (0x2UL << RCC_CFGR_HPRE_Pos)        /*!< 0x00000020 */
4057
#define RCC_CFGR_HPRE_2                     (0x4UL << RCC_CFGR_HPRE_Pos)        /*!< 0x00000040 */
4058
#define RCC_CFGR_HPRE_3                     (0x8UL << RCC_CFGR_HPRE_Pos)        /*!< 0x00000080 */
30 mjames 4059
 
4060
/*!< HPRE configuration */
4061
#define RCC_CFGR_HPRE_DIV1                  (0x00000000U)                      /*!< SYSCLK not divided */
4062
#define RCC_CFGR_HPRE_DIV2                  (0x00000080U)                      /*!< SYSCLK divided by 2 */
4063
#define RCC_CFGR_HPRE_DIV4                  (0x00000090U)                      /*!< SYSCLK divided by 4 */
4064
#define RCC_CFGR_HPRE_DIV8                  (0x000000A0U)                      /*!< SYSCLK divided by 8 */
4065
#define RCC_CFGR_HPRE_DIV16                 (0x000000B0U)                      /*!< SYSCLK divided by 16 */
4066
#define RCC_CFGR_HPRE_DIV64                 (0x000000C0U)                      /*!< SYSCLK divided by 64 */
4067
#define RCC_CFGR_HPRE_DIV128                (0x000000D0U)                      /*!< SYSCLK divided by 128 */
4068
#define RCC_CFGR_HPRE_DIV256                (0x000000E0U)                      /*!< SYSCLK divided by 256 */
4069
#define RCC_CFGR_HPRE_DIV512                (0x000000F0U)                      /*!< SYSCLK divided by 512 */
4070
 
4071
#define RCC_CFGR_PPRE1_Pos                  (8U)                               
50 mjames 4072
#define RCC_CFGR_PPRE1_Msk                  (0x7UL << RCC_CFGR_PPRE1_Pos)       /*!< 0x00000700 */
30 mjames 4073
#define RCC_CFGR_PPRE1                      RCC_CFGR_PPRE1_Msk                 /*!< PRE1[2:0] bits (APB1 prescaler) */
50 mjames 4074
#define RCC_CFGR_PPRE1_0                    (0x1UL << RCC_CFGR_PPRE1_Pos)       /*!< 0x00000100 */
4075
#define RCC_CFGR_PPRE1_1                    (0x2UL << RCC_CFGR_PPRE1_Pos)       /*!< 0x00000200 */
4076
#define RCC_CFGR_PPRE1_2                    (0x4UL << RCC_CFGR_PPRE1_Pos)       /*!< 0x00000400 */
30 mjames 4077
 
4078
/*!< PPRE1 configuration */
4079
#define RCC_CFGR_PPRE1_DIV1                 (0x00000000U)                      /*!< HCLK not divided */
4080
#define RCC_CFGR_PPRE1_DIV2                 (0x00000400U)                      /*!< HCLK divided by 2 */
4081
#define RCC_CFGR_PPRE1_DIV4                 (0x00000500U)                      /*!< HCLK divided by 4 */
4082
#define RCC_CFGR_PPRE1_DIV8                 (0x00000600U)                      /*!< HCLK divided by 8 */
4083
#define RCC_CFGR_PPRE1_DIV16                (0x00000700U)                      /*!< HCLK divided by 16 */
4084
 
4085
#define RCC_CFGR_PPRE2_Pos                  (11U)                              
50 mjames 4086
#define RCC_CFGR_PPRE2_Msk                  (0x7UL << RCC_CFGR_PPRE2_Pos)       /*!< 0x00003800 */
30 mjames 4087
#define RCC_CFGR_PPRE2                      RCC_CFGR_PPRE2_Msk                 /*!< PRE2[2:0] bits (APB2 prescaler) */
50 mjames 4088
#define RCC_CFGR_PPRE2_0                    (0x1UL << RCC_CFGR_PPRE2_Pos)       /*!< 0x00000800 */
4089
#define RCC_CFGR_PPRE2_1                    (0x2UL << RCC_CFGR_PPRE2_Pos)       /*!< 0x00001000 */
4090
#define RCC_CFGR_PPRE2_2                    (0x4UL << RCC_CFGR_PPRE2_Pos)       /*!< 0x00002000 */
30 mjames 4091
 
4092
/*!< PPRE2 configuration */
4093
#define RCC_CFGR_PPRE2_DIV1                 (0x00000000U)                      /*!< HCLK not divided */
4094
#define RCC_CFGR_PPRE2_DIV2                 (0x00002000U)                      /*!< HCLK divided by 2 */
4095
#define RCC_CFGR_PPRE2_DIV4                 (0x00002800U)                      /*!< HCLK divided by 4 */
4096
#define RCC_CFGR_PPRE2_DIV8                 (0x00003000U)                      /*!< HCLK divided by 8 */
4097
#define RCC_CFGR_PPRE2_DIV16                (0x00003800U)                      /*!< HCLK divided by 16 */
4098
 
4099
/*!< PLL entry clock source*/
4100
#define RCC_CFGR_PLLSRC_Pos                 (16U)                              
50 mjames 4101
#define RCC_CFGR_PLLSRC_Msk                 (0x1UL << RCC_CFGR_PLLSRC_Pos)      /*!< 0x00010000 */
30 mjames 4102
#define RCC_CFGR_PLLSRC                     RCC_CFGR_PLLSRC_Msk                /*!< PLL entry clock source */
4103
 
4104
#define RCC_CFGR_PLLSRC_HSI                 (0x00000000U)                      /*!< HSI as PLL entry clock source */
4105
#define RCC_CFGR_PLLSRC_HSE                 (0x00010000U)                      /*!< HSE as PLL entry clock source */
4106
 
4107
 
4108
/*!< PLLMUL configuration */
4109
#define RCC_CFGR_PLLMUL_Pos                 (18U)                              
50 mjames 4110
#define RCC_CFGR_PLLMUL_Msk                 (0xFUL << RCC_CFGR_PLLMUL_Pos)      /*!< 0x003C0000 */
30 mjames 4111
#define RCC_CFGR_PLLMUL                     RCC_CFGR_PLLMUL_Msk                /*!< PLLMUL[3:0] bits (PLL multiplication factor) */
50 mjames 4112
#define RCC_CFGR_PLLMUL_0                   (0x1UL << RCC_CFGR_PLLMUL_Pos)      /*!< 0x00040000 */
4113
#define RCC_CFGR_PLLMUL_1                   (0x2UL << RCC_CFGR_PLLMUL_Pos)      /*!< 0x00080000 */
4114
#define RCC_CFGR_PLLMUL_2                   (0x4UL << RCC_CFGR_PLLMUL_Pos)      /*!< 0x00100000 */
4115
#define RCC_CFGR_PLLMUL_3                   (0x8UL << RCC_CFGR_PLLMUL_Pos)      /*!< 0x00200000 */
30 mjames 4116
 
4117
/*!< PLLMUL configuration */
4118
#define RCC_CFGR_PLLMUL3                    (0x00000000U)                      /*!< PLL input clock * 3 */
4119
#define RCC_CFGR_PLLMUL4                    (0x00040000U)                      /*!< PLL input clock * 4 */
4120
#define RCC_CFGR_PLLMUL6                    (0x00080000U)                      /*!< PLL input clock * 6 */
4121
#define RCC_CFGR_PLLMUL8                    (0x000C0000U)                      /*!< PLL input clock * 8 */
4122
#define RCC_CFGR_PLLMUL12                   (0x00100000U)                      /*!< PLL input clock * 12 */
4123
#define RCC_CFGR_PLLMUL16                   (0x00140000U)                      /*!< PLL input clock * 16 */
4124
#define RCC_CFGR_PLLMUL24                   (0x00180000U)                      /*!< PLL input clock * 24 */
4125
#define RCC_CFGR_PLLMUL32                   (0x001C0000U)                      /*!< PLL input clock * 32 */
4126
#define RCC_CFGR_PLLMUL48                   (0x00200000U)                      /*!< PLL input clock * 48 */
4127
 
4128
/*!< PLLDIV configuration */
4129
#define RCC_CFGR_PLLDIV_Pos                 (22U)                              
50 mjames 4130
#define RCC_CFGR_PLLDIV_Msk                 (0x3UL << RCC_CFGR_PLLDIV_Pos)      /*!< 0x00C00000 */
30 mjames 4131
#define RCC_CFGR_PLLDIV                     RCC_CFGR_PLLDIV_Msk                /*!< PLLDIV[1:0] bits (PLL Output Division) */
50 mjames 4132
#define RCC_CFGR_PLLDIV_0                   (0x1UL << RCC_CFGR_PLLDIV_Pos)      /*!< 0x00400000 */
4133
#define RCC_CFGR_PLLDIV_1                   (0x2UL << RCC_CFGR_PLLDIV_Pos)      /*!< 0x00800000 */
30 mjames 4134
 
4135
 
4136
/*!< PLLDIV configuration */
4137
#define RCC_CFGR_PLLDIV1                    (0x00000000U)                      /*!< PLL clock output = CKVCO / 1 */
4138
#define RCC_CFGR_PLLDIV2_Pos                (22U)                              
50 mjames 4139
#define RCC_CFGR_PLLDIV2_Msk                (0x1UL << RCC_CFGR_PLLDIV2_Pos)     /*!< 0x00400000 */
30 mjames 4140
#define RCC_CFGR_PLLDIV2                    RCC_CFGR_PLLDIV2_Msk               /*!< PLL clock output = CKVCO / 2 */
4141
#define RCC_CFGR_PLLDIV3_Pos                (23U)                              
50 mjames 4142
#define RCC_CFGR_PLLDIV3_Msk                (0x1UL << RCC_CFGR_PLLDIV3_Pos)     /*!< 0x00800000 */
30 mjames 4143
#define RCC_CFGR_PLLDIV3                    RCC_CFGR_PLLDIV3_Msk               /*!< PLL clock output = CKVCO / 3 */
4144
#define RCC_CFGR_PLLDIV4_Pos                (22U)                              
50 mjames 4145
#define RCC_CFGR_PLLDIV4_Msk                (0x3UL << RCC_CFGR_PLLDIV4_Pos)     /*!< 0x00C00000 */
30 mjames 4146
#define RCC_CFGR_PLLDIV4                    RCC_CFGR_PLLDIV4_Msk               /*!< PLL clock output = CKVCO / 4 */
4147
 
4148
 
4149
#define RCC_CFGR_MCOSEL_Pos                 (24U)                              
50 mjames 4150
#define RCC_CFGR_MCOSEL_Msk                 (0x7UL << RCC_CFGR_MCOSEL_Pos)      /*!< 0x07000000 */
30 mjames 4151
#define RCC_CFGR_MCOSEL                     RCC_CFGR_MCOSEL_Msk                /*!< MCO[2:0] bits (Microcontroller Clock Output) */
50 mjames 4152
#define RCC_CFGR_MCOSEL_0                   (0x1UL << RCC_CFGR_MCOSEL_Pos)      /*!< 0x01000000 */
4153
#define RCC_CFGR_MCOSEL_1                   (0x2UL << RCC_CFGR_MCOSEL_Pos)      /*!< 0x02000000 */
4154
#define RCC_CFGR_MCOSEL_2                   (0x4UL << RCC_CFGR_MCOSEL_Pos)      /*!< 0x04000000 */
30 mjames 4155
 
4156
/*!< MCO configuration */
4157
#define RCC_CFGR_MCOSEL_NOCLOCK             (0x00000000U)                      /*!< No clock */
4158
#define RCC_CFGR_MCOSEL_SYSCLK_Pos          (24U)                              
50 mjames 4159
#define RCC_CFGR_MCOSEL_SYSCLK_Msk          (0x1UL << RCC_CFGR_MCOSEL_SYSCLK_Pos) /*!< 0x01000000 */
30 mjames 4160
#define RCC_CFGR_MCOSEL_SYSCLK              RCC_CFGR_MCOSEL_SYSCLK_Msk         /*!< System clock selected */
4161
#define RCC_CFGR_MCOSEL_HSI_Pos             (25U)                              
50 mjames 4162
#define RCC_CFGR_MCOSEL_HSI_Msk             (0x1UL << RCC_CFGR_MCOSEL_HSI_Pos)  /*!< 0x02000000 */
30 mjames 4163
#define RCC_CFGR_MCOSEL_HSI                 RCC_CFGR_MCOSEL_HSI_Msk            /*!< Internal 16 MHz RC oscillator clock selected */
4164
#define RCC_CFGR_MCOSEL_MSI_Pos             (24U)                              
50 mjames 4165
#define RCC_CFGR_MCOSEL_MSI_Msk             (0x3UL << RCC_CFGR_MCOSEL_MSI_Pos)  /*!< 0x03000000 */
30 mjames 4166
#define RCC_CFGR_MCOSEL_MSI                 RCC_CFGR_MCOSEL_MSI_Msk            /*!< Internal Medium Speed RC oscillator clock selected */
4167
#define RCC_CFGR_MCOSEL_HSE_Pos             (26U)                              
50 mjames 4168
#define RCC_CFGR_MCOSEL_HSE_Msk             (0x1UL << RCC_CFGR_MCOSEL_HSE_Pos)  /*!< 0x04000000 */
30 mjames 4169
#define RCC_CFGR_MCOSEL_HSE                 RCC_CFGR_MCOSEL_HSE_Msk            /*!< External 1-25 MHz oscillator clock selected */
4170
#define RCC_CFGR_MCOSEL_PLL_Pos             (24U)                              
50 mjames 4171
#define RCC_CFGR_MCOSEL_PLL_Msk             (0x5UL << RCC_CFGR_MCOSEL_PLL_Pos)  /*!< 0x05000000 */
30 mjames 4172
#define RCC_CFGR_MCOSEL_PLL                 RCC_CFGR_MCOSEL_PLL_Msk            /*!< PLL clock divided */
4173
#define RCC_CFGR_MCOSEL_LSI_Pos             (25U)                              
50 mjames 4174
#define RCC_CFGR_MCOSEL_LSI_Msk             (0x3UL << RCC_CFGR_MCOSEL_LSI_Pos)  /*!< 0x06000000 */
30 mjames 4175
#define RCC_CFGR_MCOSEL_LSI                 RCC_CFGR_MCOSEL_LSI_Msk            /*!< LSI selected */
4176
#define RCC_CFGR_MCOSEL_LSE_Pos             (24U)                              
50 mjames 4177
#define RCC_CFGR_MCOSEL_LSE_Msk             (0x7UL << RCC_CFGR_MCOSEL_LSE_Pos)  /*!< 0x07000000 */
30 mjames 4178
#define RCC_CFGR_MCOSEL_LSE                 RCC_CFGR_MCOSEL_LSE_Msk            /*!< LSE selected */
4179
 
4180
#define RCC_CFGR_MCOPRE_Pos                 (28U)                              
50 mjames 4181
#define RCC_CFGR_MCOPRE_Msk                 (0x7UL << RCC_CFGR_MCOPRE_Pos)      /*!< 0x70000000 */
30 mjames 4182
#define RCC_CFGR_MCOPRE                     RCC_CFGR_MCOPRE_Msk                /*!< MCOPRE[2:0] bits (Microcontroller Clock Output Prescaler) */
50 mjames 4183
#define RCC_CFGR_MCOPRE_0                   (0x1UL << RCC_CFGR_MCOPRE_Pos)      /*!< 0x10000000 */
4184
#define RCC_CFGR_MCOPRE_1                   (0x2UL << RCC_CFGR_MCOPRE_Pos)      /*!< 0x20000000 */
4185
#define RCC_CFGR_MCOPRE_2                   (0x4UL << RCC_CFGR_MCOPRE_Pos)      /*!< 0x40000000 */
30 mjames 4186
 
4187
/*!< MCO Prescaler configuration */
4188
#define RCC_CFGR_MCOPRE_DIV1                (0x00000000U)                      /*!< MCO is divided by 1 */
4189
#define RCC_CFGR_MCOPRE_DIV2                (0x10000000U)                      /*!< MCO is divided by 2 */
4190
#define RCC_CFGR_MCOPRE_DIV4                (0x20000000U)                      /*!< MCO is divided by 4 */
4191
#define RCC_CFGR_MCOPRE_DIV8                (0x30000000U)                      /*!< MCO is divided by 8 */
4192
#define RCC_CFGR_MCOPRE_DIV16               (0x40000000U)                      /*!< MCO is divided by 16 */
4193
 
4194
/* Legacy aliases */
4195
#define  RCC_CFGR_MCO_DIV1                  RCC_CFGR_MCOPRE_DIV1
4196
#define  RCC_CFGR_MCO_DIV2                  RCC_CFGR_MCOPRE_DIV2
4197
#define  RCC_CFGR_MCO_DIV4                  RCC_CFGR_MCOPRE_DIV4
4198
#define  RCC_CFGR_MCO_DIV8                  RCC_CFGR_MCOPRE_DIV8
4199
#define  RCC_CFGR_MCO_DIV16                 RCC_CFGR_MCOPRE_DIV16
4200
#define  RCC_CFGR_MCO_NOCLOCK               RCC_CFGR_MCOSEL_NOCLOCK
4201
#define  RCC_CFGR_MCO_SYSCLK                RCC_CFGR_MCOSEL_SYSCLK
4202
#define  RCC_CFGR_MCO_HSI                   RCC_CFGR_MCOSEL_HSI
4203
#define  RCC_CFGR_MCO_MSI                   RCC_CFGR_MCOSEL_MSI
4204
#define  RCC_CFGR_MCO_HSE                   RCC_CFGR_MCOSEL_HSE
4205
#define  RCC_CFGR_MCO_PLL                   RCC_CFGR_MCOSEL_PLL
4206
#define  RCC_CFGR_MCO_LSI                   RCC_CFGR_MCOSEL_LSI
4207
#define  RCC_CFGR_MCO_LSE                   RCC_CFGR_MCOSEL_LSE
4208
 
4209
/*!<******************  Bit definition for RCC_CIR register  ********************/
4210
#define RCC_CIR_LSIRDYF_Pos                 (0U)                               
50 mjames 4211
#define RCC_CIR_LSIRDYF_Msk                 (0x1UL << RCC_CIR_LSIRDYF_Pos)      /*!< 0x00000001 */
30 mjames 4212
#define RCC_CIR_LSIRDYF                     RCC_CIR_LSIRDYF_Msk                /*!< LSI Ready Interrupt flag */
4213
#define RCC_CIR_LSERDYF_Pos                 (1U)                               
50 mjames 4214
#define RCC_CIR_LSERDYF_Msk                 (0x1UL << RCC_CIR_LSERDYF_Pos)      /*!< 0x00000002 */
30 mjames 4215
#define RCC_CIR_LSERDYF                     RCC_CIR_LSERDYF_Msk                /*!< LSE Ready Interrupt flag */
4216
#define RCC_CIR_HSIRDYF_Pos                 (2U)                               
50 mjames 4217
#define RCC_CIR_HSIRDYF_Msk                 (0x1UL << RCC_CIR_HSIRDYF_Pos)      /*!< 0x00000004 */
30 mjames 4218
#define RCC_CIR_HSIRDYF                     RCC_CIR_HSIRDYF_Msk                /*!< HSI Ready Interrupt flag */
4219
#define RCC_CIR_HSERDYF_Pos                 (3U)                               
50 mjames 4220
#define RCC_CIR_HSERDYF_Msk                 (0x1UL << RCC_CIR_HSERDYF_Pos)      /*!< 0x00000008 */
30 mjames 4221
#define RCC_CIR_HSERDYF                     RCC_CIR_HSERDYF_Msk                /*!< HSE Ready Interrupt flag */
4222
#define RCC_CIR_PLLRDYF_Pos                 (4U)                               
50 mjames 4223
#define RCC_CIR_PLLRDYF_Msk                 (0x1UL << RCC_CIR_PLLRDYF_Pos)      /*!< 0x00000010 */
30 mjames 4224
#define RCC_CIR_PLLRDYF                     RCC_CIR_PLLRDYF_Msk                /*!< PLL Ready Interrupt flag */
4225
#define RCC_CIR_MSIRDYF_Pos                 (5U)                               
50 mjames 4226
#define RCC_CIR_MSIRDYF_Msk                 (0x1UL << RCC_CIR_MSIRDYF_Pos)      /*!< 0x00000020 */
30 mjames 4227
#define RCC_CIR_MSIRDYF                     RCC_CIR_MSIRDYF_Msk                /*!< MSI Ready Interrupt flag */
4228
#define RCC_CIR_LSECSSF_Pos                 (6U)                               
50 mjames 4229
#define RCC_CIR_LSECSSF_Msk                 (0x1UL << RCC_CIR_LSECSSF_Pos)      /*!< 0x00000040 */
30 mjames 4230
#define RCC_CIR_LSECSSF                     RCC_CIR_LSECSSF_Msk                /*!< LSE CSS Interrupt flag */
4231
#define RCC_CIR_CSSF_Pos                    (7U)                               
50 mjames 4232
#define RCC_CIR_CSSF_Msk                    (0x1UL << RCC_CIR_CSSF_Pos)         /*!< 0x00000080 */
30 mjames 4233
#define RCC_CIR_CSSF                        RCC_CIR_CSSF_Msk                   /*!< Clock Security System Interrupt flag */
4234
 
4235
#define RCC_CIR_LSIRDYIE_Pos                (8U)                               
50 mjames 4236
#define RCC_CIR_LSIRDYIE_Msk                (0x1UL << RCC_CIR_LSIRDYIE_Pos)     /*!< 0x00000100 */
30 mjames 4237
#define RCC_CIR_LSIRDYIE                    RCC_CIR_LSIRDYIE_Msk               /*!< LSI Ready Interrupt Enable */
4238
#define RCC_CIR_LSERDYIE_Pos                (9U)                               
50 mjames 4239
#define RCC_CIR_LSERDYIE_Msk                (0x1UL << RCC_CIR_LSERDYIE_Pos)     /*!< 0x00000200 */
30 mjames 4240
#define RCC_CIR_LSERDYIE                    RCC_CIR_LSERDYIE_Msk               /*!< LSE Ready Interrupt Enable */
4241
#define RCC_CIR_HSIRDYIE_Pos                (10U)                              
50 mjames 4242
#define RCC_CIR_HSIRDYIE_Msk                (0x1UL << RCC_CIR_HSIRDYIE_Pos)     /*!< 0x00000400 */
30 mjames 4243
#define RCC_CIR_HSIRDYIE                    RCC_CIR_HSIRDYIE_Msk               /*!< HSI Ready Interrupt Enable */
4244
#define RCC_CIR_HSERDYIE_Pos                (11U)                              
50 mjames 4245
#define RCC_CIR_HSERDYIE_Msk                (0x1UL << RCC_CIR_HSERDYIE_Pos)     /*!< 0x00000800 */
30 mjames 4246
#define RCC_CIR_HSERDYIE                    RCC_CIR_HSERDYIE_Msk               /*!< HSE Ready Interrupt Enable */
4247
#define RCC_CIR_PLLRDYIE_Pos                (12U)                              
50 mjames 4248
#define RCC_CIR_PLLRDYIE_Msk                (0x1UL << RCC_CIR_PLLRDYIE_Pos)     /*!< 0x00001000 */
30 mjames 4249
#define RCC_CIR_PLLRDYIE                    RCC_CIR_PLLRDYIE_Msk               /*!< PLL Ready Interrupt Enable */
4250
#define RCC_CIR_MSIRDYIE_Pos                (13U)                              
50 mjames 4251
#define RCC_CIR_MSIRDYIE_Msk                (0x1UL << RCC_CIR_MSIRDYIE_Pos)     /*!< 0x00002000 */
30 mjames 4252
#define RCC_CIR_MSIRDYIE                    RCC_CIR_MSIRDYIE_Msk               /*!< MSI Ready Interrupt Enable */
4253
#define RCC_CIR_LSECSSIE_Pos                (14U)                              
50 mjames 4254
#define RCC_CIR_LSECSSIE_Msk                (0x1UL << RCC_CIR_LSECSSIE_Pos)     /*!< 0x00004000 */
30 mjames 4255
#define RCC_CIR_LSECSSIE                    RCC_CIR_LSECSSIE_Msk               /*!< LSE CSS Interrupt Enable */
4256
 
4257
#define RCC_CIR_LSIRDYC_Pos                 (16U)                              
50 mjames 4258
#define RCC_CIR_LSIRDYC_Msk                 (0x1UL << RCC_CIR_LSIRDYC_Pos)      /*!< 0x00010000 */
30 mjames 4259
#define RCC_CIR_LSIRDYC                     RCC_CIR_LSIRDYC_Msk                /*!< LSI Ready Interrupt Clear */
4260
#define RCC_CIR_LSERDYC_Pos                 (17U)                              
50 mjames 4261
#define RCC_CIR_LSERDYC_Msk                 (0x1UL << RCC_CIR_LSERDYC_Pos)      /*!< 0x00020000 */
30 mjames 4262
#define RCC_CIR_LSERDYC                     RCC_CIR_LSERDYC_Msk                /*!< LSE Ready Interrupt Clear */
4263
#define RCC_CIR_HSIRDYC_Pos                 (18U)                              
50 mjames 4264
#define RCC_CIR_HSIRDYC_Msk                 (0x1UL << RCC_CIR_HSIRDYC_Pos)      /*!< 0x00040000 */
30 mjames 4265
#define RCC_CIR_HSIRDYC                     RCC_CIR_HSIRDYC_Msk                /*!< HSI Ready Interrupt Clear */
4266
#define RCC_CIR_HSERDYC_Pos                 (19U)                              
50 mjames 4267
#define RCC_CIR_HSERDYC_Msk                 (0x1UL << RCC_CIR_HSERDYC_Pos)      /*!< 0x00080000 */
30 mjames 4268
#define RCC_CIR_HSERDYC                     RCC_CIR_HSERDYC_Msk                /*!< HSE Ready Interrupt Clear */
4269
#define RCC_CIR_PLLRDYC_Pos                 (20U)                              
50 mjames 4270
#define RCC_CIR_PLLRDYC_Msk                 (0x1UL << RCC_CIR_PLLRDYC_Pos)      /*!< 0x00100000 */
30 mjames 4271
#define RCC_CIR_PLLRDYC                     RCC_CIR_PLLRDYC_Msk                /*!< PLL Ready Interrupt Clear */
4272
#define RCC_CIR_MSIRDYC_Pos                 (21U)                              
50 mjames 4273
#define RCC_CIR_MSIRDYC_Msk                 (0x1UL << RCC_CIR_MSIRDYC_Pos)      /*!< 0x00200000 */
30 mjames 4274
#define RCC_CIR_MSIRDYC                     RCC_CIR_MSIRDYC_Msk                /*!< MSI Ready Interrupt Clear */
4275
#define RCC_CIR_LSECSSC_Pos                 (22U)                              
50 mjames 4276
#define RCC_CIR_LSECSSC_Msk                 (0x1UL << RCC_CIR_LSECSSC_Pos)      /*!< 0x00400000 */
30 mjames 4277
#define RCC_CIR_LSECSSC                     RCC_CIR_LSECSSC_Msk                /*!< LSE CSS Interrupt Clear */
4278
#define RCC_CIR_CSSC_Pos                    (23U)                              
50 mjames 4279
#define RCC_CIR_CSSC_Msk                    (0x1UL << RCC_CIR_CSSC_Pos)         /*!< 0x00800000 */
30 mjames 4280
#define RCC_CIR_CSSC                        RCC_CIR_CSSC_Msk                   /*!< Clock Security System Interrupt Clear */
4281
 
4282
/*****************  Bit definition for RCC_AHBRSTR register  ******************/
4283
#define RCC_AHBRSTR_GPIOARST_Pos            (0U)                               
50 mjames 4284
#define RCC_AHBRSTR_GPIOARST_Msk            (0x1UL << RCC_AHBRSTR_GPIOARST_Pos) /*!< 0x00000001 */
30 mjames 4285
#define RCC_AHBRSTR_GPIOARST                RCC_AHBRSTR_GPIOARST_Msk           /*!< GPIO port A reset */
4286
#define RCC_AHBRSTR_GPIOBRST_Pos            (1U)                               
50 mjames 4287
#define RCC_AHBRSTR_GPIOBRST_Msk            (0x1UL << RCC_AHBRSTR_GPIOBRST_Pos) /*!< 0x00000002 */
30 mjames 4288
#define RCC_AHBRSTR_GPIOBRST                RCC_AHBRSTR_GPIOBRST_Msk           /*!< GPIO port B reset */
4289
#define RCC_AHBRSTR_GPIOCRST_Pos            (2U)                               
50 mjames 4290
#define RCC_AHBRSTR_GPIOCRST_Msk            (0x1UL << RCC_AHBRSTR_GPIOCRST_Pos) /*!< 0x00000004 */
30 mjames 4291
#define RCC_AHBRSTR_GPIOCRST                RCC_AHBRSTR_GPIOCRST_Msk           /*!< GPIO port C reset */
4292
#define RCC_AHBRSTR_GPIODRST_Pos            (3U)                               
50 mjames 4293
#define RCC_AHBRSTR_GPIODRST_Msk            (0x1UL << RCC_AHBRSTR_GPIODRST_Pos) /*!< 0x00000008 */
30 mjames 4294
#define RCC_AHBRSTR_GPIODRST                RCC_AHBRSTR_GPIODRST_Msk           /*!< GPIO port D reset */
4295
#define RCC_AHBRSTR_GPIOERST_Pos            (4U)                               
50 mjames 4296
#define RCC_AHBRSTR_GPIOERST_Msk            (0x1UL << RCC_AHBRSTR_GPIOERST_Pos) /*!< 0x00000010 */
30 mjames 4297
#define RCC_AHBRSTR_GPIOERST                RCC_AHBRSTR_GPIOERST_Msk           /*!< GPIO port E reset */
4298
#define RCC_AHBRSTR_GPIOHRST_Pos            (5U)                               
50 mjames 4299
#define RCC_AHBRSTR_GPIOHRST_Msk            (0x1UL << RCC_AHBRSTR_GPIOHRST_Pos) /*!< 0x00000020 */
30 mjames 4300
#define RCC_AHBRSTR_GPIOHRST                RCC_AHBRSTR_GPIOHRST_Msk           /*!< GPIO port H reset */
4301
#define RCC_AHBRSTR_CRCRST_Pos              (12U)                              
50 mjames 4302
#define RCC_AHBRSTR_CRCRST_Msk              (0x1UL << RCC_AHBRSTR_CRCRST_Pos)   /*!< 0x00001000 */
30 mjames 4303
#define RCC_AHBRSTR_CRCRST                  RCC_AHBRSTR_CRCRST_Msk             /*!< CRC reset */
4304
#define RCC_AHBRSTR_FLITFRST_Pos            (15U)                              
50 mjames 4305
#define RCC_AHBRSTR_FLITFRST_Msk            (0x1UL << RCC_AHBRSTR_FLITFRST_Pos) /*!< 0x00008000 */
30 mjames 4306
#define RCC_AHBRSTR_FLITFRST                RCC_AHBRSTR_FLITFRST_Msk           /*!< FLITF reset */
4307
#define RCC_AHBRSTR_DMA1RST_Pos             (24U)                              
50 mjames 4308
#define RCC_AHBRSTR_DMA1RST_Msk             (0x1UL << RCC_AHBRSTR_DMA1RST_Pos)  /*!< 0x01000000 */
30 mjames 4309
#define RCC_AHBRSTR_DMA1RST                 RCC_AHBRSTR_DMA1RST_Msk            /*!< DMA1 reset */
4310
#define RCC_AHBRSTR_DMA2RST_Pos             (25U)                              
50 mjames 4311
#define RCC_AHBRSTR_DMA2RST_Msk             (0x1UL << RCC_AHBRSTR_DMA2RST_Pos)  /*!< 0x02000000 */
30 mjames 4312
#define RCC_AHBRSTR_DMA2RST                 RCC_AHBRSTR_DMA2RST_Msk            /*!< DMA2 reset */
4313
 
4314
/*****************  Bit definition for RCC_APB2RSTR register  *****************/
4315
#define RCC_APB2RSTR_SYSCFGRST_Pos          (0U)                               
50 mjames 4316
#define RCC_APB2RSTR_SYSCFGRST_Msk          (0x1UL << RCC_APB2RSTR_SYSCFGRST_Pos) /*!< 0x00000001 */
30 mjames 4317
#define RCC_APB2RSTR_SYSCFGRST              RCC_APB2RSTR_SYSCFGRST_Msk         /*!< System Configuration SYSCFG reset */
4318
#define RCC_APB2RSTR_TIM9RST_Pos            (2U)                               
50 mjames 4319
#define RCC_APB2RSTR_TIM9RST_Msk            (0x1UL << RCC_APB2RSTR_TIM9RST_Pos) /*!< 0x00000004 */
30 mjames 4320
#define RCC_APB2RSTR_TIM9RST                RCC_APB2RSTR_TIM9RST_Msk           /*!< TIM9 reset */
4321
#define RCC_APB2RSTR_TIM10RST_Pos           (3U)                               
50 mjames 4322
#define RCC_APB2RSTR_TIM10RST_Msk           (0x1UL << RCC_APB2RSTR_TIM10RST_Pos) /*!< 0x00000008 */
30 mjames 4323
#define RCC_APB2RSTR_TIM10RST               RCC_APB2RSTR_TIM10RST_Msk          /*!< TIM10 reset */
4324
#define RCC_APB2RSTR_TIM11RST_Pos           (4U)                               
50 mjames 4325
#define RCC_APB2RSTR_TIM11RST_Msk           (0x1UL << RCC_APB2RSTR_TIM11RST_Pos) /*!< 0x00000010 */
30 mjames 4326
#define RCC_APB2RSTR_TIM11RST               RCC_APB2RSTR_TIM11RST_Msk          /*!< TIM11 reset */
4327
#define RCC_APB2RSTR_ADC1RST_Pos            (9U)                               
50 mjames 4328
#define RCC_APB2RSTR_ADC1RST_Msk            (0x1UL << RCC_APB2RSTR_ADC1RST_Pos) /*!< 0x00000200 */
30 mjames 4329
#define RCC_APB2RSTR_ADC1RST                RCC_APB2RSTR_ADC1RST_Msk           /*!< ADC1 reset */
4330
#define RCC_APB2RSTR_SPI1RST_Pos            (12U)                              
50 mjames 4331
#define RCC_APB2RSTR_SPI1RST_Msk            (0x1UL << RCC_APB2RSTR_SPI1RST_Pos) /*!< 0x00001000 */
30 mjames 4332
#define RCC_APB2RSTR_SPI1RST                RCC_APB2RSTR_SPI1RST_Msk           /*!< SPI1 reset */
4333
#define RCC_APB2RSTR_USART1RST_Pos          (14U)                              
50 mjames 4334
#define RCC_APB2RSTR_USART1RST_Msk          (0x1UL << RCC_APB2RSTR_USART1RST_Pos) /*!< 0x00004000 */
30 mjames 4335
#define RCC_APB2RSTR_USART1RST              RCC_APB2RSTR_USART1RST_Msk         /*!< USART1 reset */
4336
 
4337
/*****************  Bit definition for RCC_APB1RSTR register  *****************/
4338
#define RCC_APB1RSTR_TIM2RST_Pos            (0U)                               
50 mjames 4339
#define RCC_APB1RSTR_TIM2RST_Msk            (0x1UL << RCC_APB1RSTR_TIM2RST_Pos) /*!< 0x00000001 */
30 mjames 4340
#define RCC_APB1RSTR_TIM2RST                RCC_APB1RSTR_TIM2RST_Msk           /*!< Timer 2 reset */
4341
#define RCC_APB1RSTR_TIM3RST_Pos            (1U)                               
50 mjames 4342
#define RCC_APB1RSTR_TIM3RST_Msk            (0x1UL << RCC_APB1RSTR_TIM3RST_Pos) /*!< 0x00000002 */
30 mjames 4343
#define RCC_APB1RSTR_TIM3RST                RCC_APB1RSTR_TIM3RST_Msk           /*!< Timer 3 reset */
4344
#define RCC_APB1RSTR_TIM4RST_Pos            (2U)                               
50 mjames 4345
#define RCC_APB1RSTR_TIM4RST_Msk            (0x1UL << RCC_APB1RSTR_TIM4RST_Pos) /*!< 0x00000004 */
30 mjames 4346
#define RCC_APB1RSTR_TIM4RST                RCC_APB1RSTR_TIM4RST_Msk           /*!< Timer 4 reset */
4347
#define RCC_APB1RSTR_TIM5RST_Pos            (3U)                               
50 mjames 4348
#define RCC_APB1RSTR_TIM5RST_Msk            (0x1UL << RCC_APB1RSTR_TIM5RST_Pos) /*!< 0x00000008 */
30 mjames 4349
#define RCC_APB1RSTR_TIM5RST                RCC_APB1RSTR_TIM5RST_Msk           /*!< Timer 5 reset */
4350
#define RCC_APB1RSTR_TIM6RST_Pos            (4U)                               
50 mjames 4351
#define RCC_APB1RSTR_TIM6RST_Msk            (0x1UL << RCC_APB1RSTR_TIM6RST_Pos) /*!< 0x00000010 */
30 mjames 4352
#define RCC_APB1RSTR_TIM6RST                RCC_APB1RSTR_TIM6RST_Msk           /*!< Timer 6 reset */
4353
#define RCC_APB1RSTR_TIM7RST_Pos            (5U)                               
50 mjames 4354
#define RCC_APB1RSTR_TIM7RST_Msk            (0x1UL << RCC_APB1RSTR_TIM7RST_Pos) /*!< 0x00000020 */
30 mjames 4355
#define RCC_APB1RSTR_TIM7RST                RCC_APB1RSTR_TIM7RST_Msk           /*!< Timer 7 reset */
4356
#define RCC_APB1RSTR_WWDGRST_Pos            (11U)                              
50 mjames 4357
#define RCC_APB1RSTR_WWDGRST_Msk            (0x1UL << RCC_APB1RSTR_WWDGRST_Pos) /*!< 0x00000800 */
30 mjames 4358
#define RCC_APB1RSTR_WWDGRST                RCC_APB1RSTR_WWDGRST_Msk           /*!< Window Watchdog reset */
4359
#define RCC_APB1RSTR_SPI2RST_Pos            (14U)                              
50 mjames 4360
#define RCC_APB1RSTR_SPI2RST_Msk            (0x1UL << RCC_APB1RSTR_SPI2RST_Pos) /*!< 0x00004000 */
30 mjames 4361
#define RCC_APB1RSTR_SPI2RST                RCC_APB1RSTR_SPI2RST_Msk           /*!< SPI 2 reset */
4362
#define RCC_APB1RSTR_SPI3RST_Pos            (15U)                              
50 mjames 4363
#define RCC_APB1RSTR_SPI3RST_Msk            (0x1UL << RCC_APB1RSTR_SPI3RST_Pos) /*!< 0x00008000 */
30 mjames 4364
#define RCC_APB1RSTR_SPI3RST                RCC_APB1RSTR_SPI3RST_Msk           /*!< SPI 3 reset */
4365
#define RCC_APB1RSTR_USART2RST_Pos          (17U)                              
50 mjames 4366
#define RCC_APB1RSTR_USART2RST_Msk          (0x1UL << RCC_APB1RSTR_USART2RST_Pos) /*!< 0x00020000 */
30 mjames 4367
#define RCC_APB1RSTR_USART2RST              RCC_APB1RSTR_USART2RST_Msk         /*!< USART 2 reset */
4368
#define RCC_APB1RSTR_USART3RST_Pos          (18U)                              
50 mjames 4369
#define RCC_APB1RSTR_USART3RST_Msk          (0x1UL << RCC_APB1RSTR_USART3RST_Pos) /*!< 0x00040000 */
30 mjames 4370
#define RCC_APB1RSTR_USART3RST              RCC_APB1RSTR_USART3RST_Msk         /*!< USART 3 reset */
4371
#define RCC_APB1RSTR_I2C1RST_Pos            (21U)                              
50 mjames 4372
#define RCC_APB1RSTR_I2C1RST_Msk            (0x1UL << RCC_APB1RSTR_I2C1RST_Pos) /*!< 0x00200000 */
30 mjames 4373
#define RCC_APB1RSTR_I2C1RST                RCC_APB1RSTR_I2C1RST_Msk           /*!< I2C 1 reset */
4374
#define RCC_APB1RSTR_I2C2RST_Pos            (22U)                              
50 mjames 4375
#define RCC_APB1RSTR_I2C2RST_Msk            (0x1UL << RCC_APB1RSTR_I2C2RST_Pos) /*!< 0x00400000 */
30 mjames 4376
#define RCC_APB1RSTR_I2C2RST                RCC_APB1RSTR_I2C2RST_Msk           /*!< I2C 2 reset */
4377
#define RCC_APB1RSTR_USBRST_Pos             (23U)                              
50 mjames 4378
#define RCC_APB1RSTR_USBRST_Msk             (0x1UL << RCC_APB1RSTR_USBRST_Pos)  /*!< 0x00800000 */
30 mjames 4379
#define RCC_APB1RSTR_USBRST                 RCC_APB1RSTR_USBRST_Msk            /*!< USB reset */
4380
#define RCC_APB1RSTR_PWRRST_Pos             (28U)                              
50 mjames 4381
#define RCC_APB1RSTR_PWRRST_Msk             (0x1UL << RCC_APB1RSTR_PWRRST_Pos)  /*!< 0x10000000 */
30 mjames 4382
#define RCC_APB1RSTR_PWRRST                 RCC_APB1RSTR_PWRRST_Msk            /*!< Power interface reset */
4383
#define RCC_APB1RSTR_DACRST_Pos             (29U)                              
50 mjames 4384
#define RCC_APB1RSTR_DACRST_Msk             (0x1UL << RCC_APB1RSTR_DACRST_Pos)  /*!< 0x20000000 */
30 mjames 4385
#define RCC_APB1RSTR_DACRST                 RCC_APB1RSTR_DACRST_Msk            /*!< DAC interface reset */
4386
#define RCC_APB1RSTR_COMPRST_Pos            (31U)                              
50 mjames 4387
#define RCC_APB1RSTR_COMPRST_Msk            (0x1UL << RCC_APB1RSTR_COMPRST_Pos) /*!< 0x80000000 */
30 mjames 4388
#define RCC_APB1RSTR_COMPRST                RCC_APB1RSTR_COMPRST_Msk           /*!< Comparator interface reset */
4389
 
4390
/******************  Bit definition for RCC_AHBENR register  ******************/
4391
#define RCC_AHBENR_GPIOAEN_Pos              (0U)                               
50 mjames 4392
#define RCC_AHBENR_GPIOAEN_Msk              (0x1UL << RCC_AHBENR_GPIOAEN_Pos)   /*!< 0x00000001 */
30 mjames 4393
#define RCC_AHBENR_GPIOAEN                  RCC_AHBENR_GPIOAEN_Msk             /*!< GPIO port A clock enable */
4394
#define RCC_AHBENR_GPIOBEN_Pos              (1U)                               
50 mjames 4395
#define RCC_AHBENR_GPIOBEN_Msk              (0x1UL << RCC_AHBENR_GPIOBEN_Pos)   /*!< 0x00000002 */
30 mjames 4396
#define RCC_AHBENR_GPIOBEN                  RCC_AHBENR_GPIOBEN_Msk             /*!< GPIO port B clock enable */
4397
#define RCC_AHBENR_GPIOCEN_Pos              (2U)                               
50 mjames 4398
#define RCC_AHBENR_GPIOCEN_Msk              (0x1UL << RCC_AHBENR_GPIOCEN_Pos)   /*!< 0x00000004 */
30 mjames 4399
#define RCC_AHBENR_GPIOCEN                  RCC_AHBENR_GPIOCEN_Msk             /*!< GPIO port C clock enable */
4400
#define RCC_AHBENR_GPIODEN_Pos              (3U)                               
50 mjames 4401
#define RCC_AHBENR_GPIODEN_Msk              (0x1UL << RCC_AHBENR_GPIODEN_Pos)   /*!< 0x00000008 */
30 mjames 4402
#define RCC_AHBENR_GPIODEN                  RCC_AHBENR_GPIODEN_Msk             /*!< GPIO port D clock enable */
4403
#define RCC_AHBENR_GPIOEEN_Pos              (4U)                               
50 mjames 4404
#define RCC_AHBENR_GPIOEEN_Msk              (0x1UL << RCC_AHBENR_GPIOEEN_Pos)   /*!< 0x00000010 */
30 mjames 4405
#define RCC_AHBENR_GPIOEEN                  RCC_AHBENR_GPIOEEN_Msk             /*!< GPIO port E clock enable */
4406
#define RCC_AHBENR_GPIOHEN_Pos              (5U)                               
50 mjames 4407
#define RCC_AHBENR_GPIOHEN_Msk              (0x1UL << RCC_AHBENR_GPIOHEN_Pos)   /*!< 0x00000020 */
30 mjames 4408
#define RCC_AHBENR_GPIOHEN                  RCC_AHBENR_GPIOHEN_Msk             /*!< GPIO port H clock enable */
4409
#define RCC_AHBENR_CRCEN_Pos                (12U)                              
50 mjames 4410
#define RCC_AHBENR_CRCEN_Msk                (0x1UL << RCC_AHBENR_CRCEN_Pos)     /*!< 0x00001000 */
30 mjames 4411
#define RCC_AHBENR_CRCEN                    RCC_AHBENR_CRCEN_Msk               /*!< CRC clock enable */
4412
#define RCC_AHBENR_FLITFEN_Pos              (15U)                              
50 mjames 4413
#define RCC_AHBENR_FLITFEN_Msk              (0x1UL << RCC_AHBENR_FLITFEN_Pos)   /*!< 0x00008000 */
30 mjames 4414
#define RCC_AHBENR_FLITFEN                  RCC_AHBENR_FLITFEN_Msk             /*!< FLITF clock enable (has effect only when
4415
                                                                                the Flash memory is in power down mode) */
4416
#define RCC_AHBENR_DMA1EN_Pos               (24U)                              
50 mjames 4417
#define RCC_AHBENR_DMA1EN_Msk               (0x1UL << RCC_AHBENR_DMA1EN_Pos)    /*!< 0x01000000 */
30 mjames 4418
#define RCC_AHBENR_DMA1EN                   RCC_AHBENR_DMA1EN_Msk              /*!< DMA1 clock enable */
4419
#define RCC_AHBENR_DMA2EN_Pos               (25U)                              
50 mjames 4420
#define RCC_AHBENR_DMA2EN_Msk               (0x1UL << RCC_AHBENR_DMA2EN_Pos)    /*!< 0x02000000 */
30 mjames 4421
#define RCC_AHBENR_DMA2EN                   RCC_AHBENR_DMA2EN_Msk              /*!< DMA2 clock enable */
4422
 
4423
/******************  Bit definition for RCC_APB2ENR register  *****************/
4424
#define RCC_APB2ENR_SYSCFGEN_Pos            (0U)                               
50 mjames 4425
#define RCC_APB2ENR_SYSCFGEN_Msk            (0x1UL << RCC_APB2ENR_SYSCFGEN_Pos) /*!< 0x00000001 */
30 mjames 4426
#define RCC_APB2ENR_SYSCFGEN                RCC_APB2ENR_SYSCFGEN_Msk           /*!< System Configuration SYSCFG clock enable */
4427
#define RCC_APB2ENR_TIM9EN_Pos              (2U)                               
50 mjames 4428
#define RCC_APB2ENR_TIM9EN_Msk              (0x1UL << RCC_APB2ENR_TIM9EN_Pos)   /*!< 0x00000004 */
30 mjames 4429
#define RCC_APB2ENR_TIM9EN                  RCC_APB2ENR_TIM9EN_Msk             /*!< TIM9 interface clock enable */
4430
#define RCC_APB2ENR_TIM10EN_Pos             (3U)                               
50 mjames 4431
#define RCC_APB2ENR_TIM10EN_Msk             (0x1UL << RCC_APB2ENR_TIM10EN_Pos)  /*!< 0x00000008 */
30 mjames 4432
#define RCC_APB2ENR_TIM10EN                 RCC_APB2ENR_TIM10EN_Msk            /*!< TIM10 interface clock enable */
4433
#define RCC_APB2ENR_TIM11EN_Pos             (4U)                               
50 mjames 4434
#define RCC_APB2ENR_TIM11EN_Msk             (0x1UL << RCC_APB2ENR_TIM11EN_Pos)  /*!< 0x00000010 */
30 mjames 4435
#define RCC_APB2ENR_TIM11EN                 RCC_APB2ENR_TIM11EN_Msk            /*!< TIM11 Timer clock enable */
4436
#define RCC_APB2ENR_ADC1EN_Pos              (9U)                               
50 mjames 4437
#define RCC_APB2ENR_ADC1EN_Msk              (0x1UL << RCC_APB2ENR_ADC1EN_Pos)   /*!< 0x00000200 */
30 mjames 4438
#define RCC_APB2ENR_ADC1EN                  RCC_APB2ENR_ADC1EN_Msk             /*!< ADC1 clock enable */
4439
#define RCC_APB2ENR_SPI1EN_Pos              (12U)                              
50 mjames 4440
#define RCC_APB2ENR_SPI1EN_Msk              (0x1UL << RCC_APB2ENR_SPI1EN_Pos)   /*!< 0x00001000 */
30 mjames 4441
#define RCC_APB2ENR_SPI1EN                  RCC_APB2ENR_SPI1EN_Msk             /*!< SPI1 clock enable */
4442
#define RCC_APB2ENR_USART1EN_Pos            (14U)                              
50 mjames 4443
#define RCC_APB2ENR_USART1EN_Msk            (0x1UL << RCC_APB2ENR_USART1EN_Pos) /*!< 0x00004000 */
30 mjames 4444
#define RCC_APB2ENR_USART1EN                RCC_APB2ENR_USART1EN_Msk           /*!< USART1 clock enable */
4445
 
4446
/*****************  Bit definition for RCC_APB1ENR register  ******************/
4447
#define RCC_APB1ENR_TIM2EN_Pos              (0U)                               
50 mjames 4448
#define RCC_APB1ENR_TIM2EN_Msk              (0x1UL << RCC_APB1ENR_TIM2EN_Pos)   /*!< 0x00000001 */
30 mjames 4449
#define RCC_APB1ENR_TIM2EN                  RCC_APB1ENR_TIM2EN_Msk             /*!< Timer 2 clock enabled*/
4450
#define RCC_APB1ENR_TIM3EN_Pos              (1U)                               
50 mjames 4451
#define RCC_APB1ENR_TIM3EN_Msk              (0x1UL << RCC_APB1ENR_TIM3EN_Pos)   /*!< 0x00000002 */
30 mjames 4452
#define RCC_APB1ENR_TIM3EN                  RCC_APB1ENR_TIM3EN_Msk             /*!< Timer 3 clock enable */
4453
#define RCC_APB1ENR_TIM4EN_Pos              (2U)                               
50 mjames 4454
#define RCC_APB1ENR_TIM4EN_Msk              (0x1UL << RCC_APB1ENR_TIM4EN_Pos)   /*!< 0x00000004 */
30 mjames 4455
#define RCC_APB1ENR_TIM4EN                  RCC_APB1ENR_TIM4EN_Msk             /*!< Timer 4 clock enable */
4456
#define RCC_APB1ENR_TIM5EN_Pos              (3U)                               
50 mjames 4457
#define RCC_APB1ENR_TIM5EN_Msk              (0x1UL << RCC_APB1ENR_TIM5EN_Pos)   /*!< 0x00000008 */
30 mjames 4458
#define RCC_APB1ENR_TIM5EN                  RCC_APB1ENR_TIM5EN_Msk             /*!< Timer 5 clock enable */
4459
#define RCC_APB1ENR_TIM6EN_Pos              (4U)                               
50 mjames 4460
#define RCC_APB1ENR_TIM6EN_Msk              (0x1UL << RCC_APB1ENR_TIM6EN_Pos)   /*!< 0x00000010 */
30 mjames 4461
#define RCC_APB1ENR_TIM6EN                  RCC_APB1ENR_TIM6EN_Msk             /*!< Timer 6 clock enable */
4462
#define RCC_APB1ENR_TIM7EN_Pos              (5U)                               
50 mjames 4463
#define RCC_APB1ENR_TIM7EN_Msk              (0x1UL << RCC_APB1ENR_TIM7EN_Pos)   /*!< 0x00000020 */
30 mjames 4464
#define RCC_APB1ENR_TIM7EN                  RCC_APB1ENR_TIM7EN_Msk             /*!< Timer 7 clock enable */
4465
#define RCC_APB1ENR_WWDGEN_Pos              (11U)                              
50 mjames 4466
#define RCC_APB1ENR_WWDGEN_Msk              (0x1UL << RCC_APB1ENR_WWDGEN_Pos)   /*!< 0x00000800 */
30 mjames 4467
#define RCC_APB1ENR_WWDGEN                  RCC_APB1ENR_WWDGEN_Msk             /*!< Window Watchdog clock enable */
4468
#define RCC_APB1ENR_SPI2EN_Pos              (14U)                              
50 mjames 4469
#define RCC_APB1ENR_SPI2EN_Msk              (0x1UL << RCC_APB1ENR_SPI2EN_Pos)   /*!< 0x00004000 */
30 mjames 4470
#define RCC_APB1ENR_SPI2EN                  RCC_APB1ENR_SPI2EN_Msk             /*!< SPI 2 clock enable */
4471
#define RCC_APB1ENR_SPI3EN_Pos              (15U)                              
50 mjames 4472
#define RCC_APB1ENR_SPI3EN_Msk              (0x1UL << RCC_APB1ENR_SPI3EN_Pos)   /*!< 0x00008000 */
30 mjames 4473
#define RCC_APB1ENR_SPI3EN                  RCC_APB1ENR_SPI3EN_Msk             /*!< SPI 3 clock enable */
4474
#define RCC_APB1ENR_USART2EN_Pos            (17U)                              
50 mjames 4475
#define RCC_APB1ENR_USART2EN_Msk            (0x1UL << RCC_APB1ENR_USART2EN_Pos) /*!< 0x00020000 */
30 mjames 4476
#define RCC_APB1ENR_USART2EN                RCC_APB1ENR_USART2EN_Msk           /*!< USART 2 clock enable */
4477
#define RCC_APB1ENR_USART3EN_Pos            (18U)                              
50 mjames 4478
#define RCC_APB1ENR_USART3EN_Msk            (0x1UL << RCC_APB1ENR_USART3EN_Pos) /*!< 0x00040000 */
30 mjames 4479
#define RCC_APB1ENR_USART3EN                RCC_APB1ENR_USART3EN_Msk           /*!< USART 3 clock enable */
4480
#define RCC_APB1ENR_I2C1EN_Pos              (21U)                              
50 mjames 4481
#define RCC_APB1ENR_I2C1EN_Msk              (0x1UL << RCC_APB1ENR_I2C1EN_Pos)   /*!< 0x00200000 */
30 mjames 4482
#define RCC_APB1ENR_I2C1EN                  RCC_APB1ENR_I2C1EN_Msk             /*!< I2C 1 clock enable */
4483
#define RCC_APB1ENR_I2C2EN_Pos              (22U)                              
50 mjames 4484
#define RCC_APB1ENR_I2C2EN_Msk              (0x1UL << RCC_APB1ENR_I2C2EN_Pos)   /*!< 0x00400000 */
30 mjames 4485
#define RCC_APB1ENR_I2C2EN                  RCC_APB1ENR_I2C2EN_Msk             /*!< I2C 2 clock enable */
4486
#define RCC_APB1ENR_USBEN_Pos               (23U)                              
50 mjames 4487
#define RCC_APB1ENR_USBEN_Msk               (0x1UL << RCC_APB1ENR_USBEN_Pos)    /*!< 0x00800000 */
30 mjames 4488
#define RCC_APB1ENR_USBEN                   RCC_APB1ENR_USBEN_Msk              /*!< USB clock enable */
4489
#define RCC_APB1ENR_PWREN_Pos               (28U)                              
50 mjames 4490
#define RCC_APB1ENR_PWREN_Msk               (0x1UL << RCC_APB1ENR_PWREN_Pos)    /*!< 0x10000000 */
30 mjames 4491
#define RCC_APB1ENR_PWREN                   RCC_APB1ENR_PWREN_Msk              /*!< Power interface clock enable */
4492
#define RCC_APB1ENR_DACEN_Pos               (29U)                              
50 mjames 4493
#define RCC_APB1ENR_DACEN_Msk               (0x1UL << RCC_APB1ENR_DACEN_Pos)    /*!< 0x20000000 */
30 mjames 4494
#define RCC_APB1ENR_DACEN                   RCC_APB1ENR_DACEN_Msk              /*!< DAC interface clock enable */
4495
#define RCC_APB1ENR_COMPEN_Pos              (31U)                              
50 mjames 4496
#define RCC_APB1ENR_COMPEN_Msk              (0x1UL << RCC_APB1ENR_COMPEN_Pos)   /*!< 0x80000000 */
30 mjames 4497
#define RCC_APB1ENR_COMPEN                  RCC_APB1ENR_COMPEN_Msk             /*!< Comparator interface clock enable */
4498
 
4499
/******************  Bit definition for RCC_AHBLPENR register  ****************/
4500
#define RCC_AHBLPENR_GPIOALPEN_Pos          (0U)                               
50 mjames 4501
#define RCC_AHBLPENR_GPIOALPEN_Msk          (0x1UL << RCC_AHBLPENR_GPIOALPEN_Pos) /*!< 0x00000001 */
30 mjames 4502
#define RCC_AHBLPENR_GPIOALPEN              RCC_AHBLPENR_GPIOALPEN_Msk         /*!< GPIO port A clock enabled in sleep mode */
4503
#define RCC_AHBLPENR_GPIOBLPEN_Pos          (1U)                               
50 mjames 4504
#define RCC_AHBLPENR_GPIOBLPEN_Msk          (0x1UL << RCC_AHBLPENR_GPIOBLPEN_Pos) /*!< 0x00000002 */
30 mjames 4505
#define RCC_AHBLPENR_GPIOBLPEN              RCC_AHBLPENR_GPIOBLPEN_Msk         /*!< GPIO port B clock enabled in sleep mode */
4506
#define RCC_AHBLPENR_GPIOCLPEN_Pos          (2U)                               
50 mjames 4507
#define RCC_AHBLPENR_GPIOCLPEN_Msk          (0x1UL << RCC_AHBLPENR_GPIOCLPEN_Pos) /*!< 0x00000004 */
30 mjames 4508
#define RCC_AHBLPENR_GPIOCLPEN              RCC_AHBLPENR_GPIOCLPEN_Msk         /*!< GPIO port C clock enabled in sleep mode */
4509
#define RCC_AHBLPENR_GPIODLPEN_Pos          (3U)                               
50 mjames 4510
#define RCC_AHBLPENR_GPIODLPEN_Msk          (0x1UL << RCC_AHBLPENR_GPIODLPEN_Pos) /*!< 0x00000008 */
30 mjames 4511
#define RCC_AHBLPENR_GPIODLPEN              RCC_AHBLPENR_GPIODLPEN_Msk         /*!< GPIO port D clock enabled in sleep mode */
4512
#define RCC_AHBLPENR_GPIOELPEN_Pos          (4U)                               
50 mjames 4513
#define RCC_AHBLPENR_GPIOELPEN_Msk          (0x1UL << RCC_AHBLPENR_GPIOELPEN_Pos) /*!< 0x00000010 */
30 mjames 4514
#define RCC_AHBLPENR_GPIOELPEN              RCC_AHBLPENR_GPIOELPEN_Msk         /*!< GPIO port E clock enabled in sleep mode */
4515
#define RCC_AHBLPENR_GPIOHLPEN_Pos          (5U)                               
50 mjames 4516
#define RCC_AHBLPENR_GPIOHLPEN_Msk          (0x1UL << RCC_AHBLPENR_GPIOHLPEN_Pos) /*!< 0x00000020 */
30 mjames 4517
#define RCC_AHBLPENR_GPIOHLPEN              RCC_AHBLPENR_GPIOHLPEN_Msk         /*!< GPIO port H clock enabled in sleep mode */
4518
#define RCC_AHBLPENR_CRCLPEN_Pos            (12U)                              
50 mjames 4519
#define RCC_AHBLPENR_CRCLPEN_Msk            (0x1UL << RCC_AHBLPENR_CRCLPEN_Pos) /*!< 0x00001000 */
30 mjames 4520
#define RCC_AHBLPENR_CRCLPEN                RCC_AHBLPENR_CRCLPEN_Msk           /*!< CRC clock enabled in sleep mode */
4521
#define RCC_AHBLPENR_FLITFLPEN_Pos          (15U)                              
50 mjames 4522
#define RCC_AHBLPENR_FLITFLPEN_Msk          (0x1UL << RCC_AHBLPENR_FLITFLPEN_Pos) /*!< 0x00008000 */
30 mjames 4523
#define RCC_AHBLPENR_FLITFLPEN              RCC_AHBLPENR_FLITFLPEN_Msk         /*!< Flash Interface clock enabled in sleep mode
4524
                                                                                (has effect only when the Flash memory is
4525
                                                                                 in power down mode) */
4526
#define RCC_AHBLPENR_SRAMLPEN_Pos           (16U)                              
50 mjames 4527
#define RCC_AHBLPENR_SRAMLPEN_Msk           (0x1UL << RCC_AHBLPENR_SRAMLPEN_Pos) /*!< 0x00010000 */
30 mjames 4528
#define RCC_AHBLPENR_SRAMLPEN               RCC_AHBLPENR_SRAMLPEN_Msk          /*!< SRAM clock enabled in sleep mode */
4529
#define RCC_AHBLPENR_DMA1LPEN_Pos           (24U)                              
50 mjames 4530
#define RCC_AHBLPENR_DMA1LPEN_Msk           (0x1UL << RCC_AHBLPENR_DMA1LPEN_Pos) /*!< 0x01000000 */
30 mjames 4531
#define RCC_AHBLPENR_DMA1LPEN               RCC_AHBLPENR_DMA1LPEN_Msk          /*!< DMA1 clock enabled in sleep mode */
4532
#define RCC_AHBLPENR_DMA2LPEN_Pos           (25U)                              
50 mjames 4533
#define RCC_AHBLPENR_DMA2LPEN_Msk           (0x1UL << RCC_AHBLPENR_DMA2LPEN_Pos) /*!< 0x02000000 */
30 mjames 4534
#define RCC_AHBLPENR_DMA2LPEN               RCC_AHBLPENR_DMA2LPEN_Msk          /*!< DMA2 clock enabled in sleep mode */
4535
 
4536
/******************  Bit definition for RCC_APB2LPENR register  ***************/
4537
#define RCC_APB2LPENR_SYSCFGLPEN_Pos        (0U)                               
50 mjames 4538
#define RCC_APB2LPENR_SYSCFGLPEN_Msk        (0x1UL << RCC_APB2LPENR_SYSCFGLPEN_Pos) /*!< 0x00000001 */
30 mjames 4539
#define RCC_APB2LPENR_SYSCFGLPEN            RCC_APB2LPENR_SYSCFGLPEN_Msk       /*!< System Configuration SYSCFG clock enabled in sleep mode */
4540
#define RCC_APB2LPENR_TIM9LPEN_Pos          (2U)                               
50 mjames 4541
#define RCC_APB2LPENR_TIM9LPEN_Msk          (0x1UL << RCC_APB2LPENR_TIM9LPEN_Pos) /*!< 0x00000004 */
30 mjames 4542
#define RCC_APB2LPENR_TIM9LPEN              RCC_APB2LPENR_TIM9LPEN_Msk         /*!< TIM9 interface clock enabled in sleep mode */
4543
#define RCC_APB2LPENR_TIM10LPEN_Pos         (3U)                               
50 mjames 4544
#define RCC_APB2LPENR_TIM10LPEN_Msk         (0x1UL << RCC_APB2LPENR_TIM10LPEN_Pos) /*!< 0x00000008 */
30 mjames 4545
#define RCC_APB2LPENR_TIM10LPEN             RCC_APB2LPENR_TIM10LPEN_Msk        /*!< TIM10 interface clock enabled in sleep mode */
4546
#define RCC_APB2LPENR_TIM11LPEN_Pos         (4U)                               
50 mjames 4547
#define RCC_APB2LPENR_TIM11LPEN_Msk         (0x1UL << RCC_APB2LPENR_TIM11LPEN_Pos) /*!< 0x00000010 */
30 mjames 4548
#define RCC_APB2LPENR_TIM11LPEN             RCC_APB2LPENR_TIM11LPEN_Msk        /*!< TIM11 Timer clock enabled in sleep mode */
4549
#define RCC_APB2LPENR_ADC1LPEN_Pos          (9U)                               
50 mjames 4550
#define RCC_APB2LPENR_ADC1LPEN_Msk          (0x1UL << RCC_APB2LPENR_ADC1LPEN_Pos) /*!< 0x00000200 */
30 mjames 4551
#define RCC_APB2LPENR_ADC1LPEN              RCC_APB2LPENR_ADC1LPEN_Msk         /*!< ADC1 clock enabled in sleep mode */
4552
#define RCC_APB2LPENR_SPI1LPEN_Pos          (12U)                              
50 mjames 4553
#define RCC_APB2LPENR_SPI1LPEN_Msk          (0x1UL << RCC_APB2LPENR_SPI1LPEN_Pos) /*!< 0x00001000 */
30 mjames 4554
#define RCC_APB2LPENR_SPI1LPEN              RCC_APB2LPENR_SPI1LPEN_Msk         /*!< SPI1 clock enabled in sleep mode */
4555
#define RCC_APB2LPENR_USART1LPEN_Pos        (14U)                              
50 mjames 4556
#define RCC_APB2LPENR_USART1LPEN_Msk        (0x1UL << RCC_APB2LPENR_USART1LPEN_Pos) /*!< 0x00004000 */
30 mjames 4557
#define RCC_APB2LPENR_USART1LPEN            RCC_APB2LPENR_USART1LPEN_Msk       /*!< USART1 clock enabled in sleep mode */
4558
 
4559
/*****************  Bit definition for RCC_APB1LPENR register  ****************/
4560
#define RCC_APB1LPENR_TIM2LPEN_Pos          (0U)                               
50 mjames 4561
#define RCC_APB1LPENR_TIM2LPEN_Msk          (0x1UL << RCC_APB1LPENR_TIM2LPEN_Pos) /*!< 0x00000001 */
30 mjames 4562
#define RCC_APB1LPENR_TIM2LPEN              RCC_APB1LPENR_TIM2LPEN_Msk         /*!< Timer 2 clock enabled in sleep mode */
4563
#define RCC_APB1LPENR_TIM3LPEN_Pos          (1U)                               
50 mjames 4564
#define RCC_APB1LPENR_TIM3LPEN_Msk          (0x1UL << RCC_APB1LPENR_TIM3LPEN_Pos) /*!< 0x00000002 */
30 mjames 4565
#define RCC_APB1LPENR_TIM3LPEN              RCC_APB1LPENR_TIM3LPEN_Msk         /*!< Timer 3 clock enabled in sleep mode */
4566
#define RCC_APB1LPENR_TIM4LPEN_Pos          (2U)                               
50 mjames 4567
#define RCC_APB1LPENR_TIM4LPEN_Msk          (0x1UL << RCC_APB1LPENR_TIM4LPEN_Pos) /*!< 0x00000004 */
30 mjames 4568
#define RCC_APB1LPENR_TIM4LPEN              RCC_APB1LPENR_TIM4LPEN_Msk         /*!< Timer 4 clock enabled in sleep mode */
4569
#define RCC_APB1LPENR_TIM5LPEN_Pos          (3U)                               
50 mjames 4570
#define RCC_APB1LPENR_TIM5LPEN_Msk          (0x1UL << RCC_APB1LPENR_TIM5LPEN_Pos) /*!< 0x00000008 */
30 mjames 4571
#define RCC_APB1LPENR_TIM5LPEN              RCC_APB1LPENR_TIM5LPEN_Msk         /*!< Timer 5 clock enabled in sleep mode */
4572
#define RCC_APB1LPENR_TIM6LPEN_Pos          (4U)                               
50 mjames 4573
#define RCC_APB1LPENR_TIM6LPEN_Msk          (0x1UL << RCC_APB1LPENR_TIM6LPEN_Pos) /*!< 0x00000010 */
30 mjames 4574
#define RCC_APB1LPENR_TIM6LPEN              RCC_APB1LPENR_TIM6LPEN_Msk         /*!< Timer 6 clock enabled in sleep mode */
4575
#define RCC_APB1LPENR_TIM7LPEN_Pos          (5U)                               
50 mjames 4576
#define RCC_APB1LPENR_TIM7LPEN_Msk          (0x1UL << RCC_APB1LPENR_TIM7LPEN_Pos) /*!< 0x00000020 */
30 mjames 4577
#define RCC_APB1LPENR_TIM7LPEN              RCC_APB1LPENR_TIM7LPEN_Msk         /*!< Timer 7 clock enabled in sleep mode */
4578
#define RCC_APB1LPENR_WWDGLPEN_Pos          (11U)                              
50 mjames 4579
#define RCC_APB1LPENR_WWDGLPEN_Msk          (0x1UL << RCC_APB1LPENR_WWDGLPEN_Pos) /*!< 0x00000800 */
30 mjames 4580
#define RCC_APB1LPENR_WWDGLPEN              RCC_APB1LPENR_WWDGLPEN_Msk         /*!< Window Watchdog clock enabled in sleep mode */
4581
#define RCC_APB1LPENR_SPI2LPEN_Pos          (14U)                              
50 mjames 4582
#define RCC_APB1LPENR_SPI2LPEN_Msk          (0x1UL << RCC_APB1LPENR_SPI2LPEN_Pos) /*!< 0x00004000 */
30 mjames 4583
#define RCC_APB1LPENR_SPI2LPEN              RCC_APB1LPENR_SPI2LPEN_Msk         /*!< SPI 2 clock enabled in sleep mode */
4584
#define RCC_APB1LPENR_SPI3LPEN_Pos          (15U)                              
50 mjames 4585
#define RCC_APB1LPENR_SPI3LPEN_Msk          (0x1UL << RCC_APB1LPENR_SPI3LPEN_Pos) /*!< 0x00008000 */
30 mjames 4586
#define RCC_APB1LPENR_SPI3LPEN              RCC_APB1LPENR_SPI3LPEN_Msk         /*!< SPI 3 clock enabled in sleep mode */
4587
#define RCC_APB1LPENR_USART2LPEN_Pos        (17U)                              
50 mjames 4588
#define RCC_APB1LPENR_USART2LPEN_Msk        (0x1UL << RCC_APB1LPENR_USART2LPEN_Pos) /*!< 0x00020000 */
30 mjames 4589
#define RCC_APB1LPENR_USART2LPEN            RCC_APB1LPENR_USART2LPEN_Msk       /*!< USART 2 clock enabled in sleep mode */
4590
#define RCC_APB1LPENR_USART3LPEN_Pos        (18U)                              
50 mjames 4591
#define RCC_APB1LPENR_USART3LPEN_Msk        (0x1UL << RCC_APB1LPENR_USART3LPEN_Pos) /*!< 0x00040000 */
30 mjames 4592
#define RCC_APB1LPENR_USART3LPEN            RCC_APB1LPENR_USART3LPEN_Msk       /*!< USART 3 clock enabled in sleep mode */
4593
#define RCC_APB1LPENR_I2C1LPEN_Pos          (21U)                              
50 mjames 4594
#define RCC_APB1LPENR_I2C1LPEN_Msk          (0x1UL << RCC_APB1LPENR_I2C1LPEN_Pos) /*!< 0x00200000 */
30 mjames 4595
#define RCC_APB1LPENR_I2C1LPEN              RCC_APB1LPENR_I2C1LPEN_Msk         /*!< I2C 1 clock enabled in sleep mode */
4596
#define RCC_APB1LPENR_I2C2LPEN_Pos          (22U)                              
50 mjames 4597
#define RCC_APB1LPENR_I2C2LPEN_Msk          (0x1UL << RCC_APB1LPENR_I2C2LPEN_Pos) /*!< 0x00400000 */
30 mjames 4598
#define RCC_APB1LPENR_I2C2LPEN              RCC_APB1LPENR_I2C2LPEN_Msk         /*!< I2C 2 clock enabled in sleep mode */
4599
#define RCC_APB1LPENR_USBLPEN_Pos           (23U)                              
50 mjames 4600
#define RCC_APB1LPENR_USBLPEN_Msk           (0x1UL << RCC_APB1LPENR_USBLPEN_Pos) /*!< 0x00800000 */
30 mjames 4601
#define RCC_APB1LPENR_USBLPEN               RCC_APB1LPENR_USBLPEN_Msk          /*!< USB clock enabled in sleep mode */
4602
#define RCC_APB1LPENR_PWRLPEN_Pos           (28U)                              
50 mjames 4603
#define RCC_APB1LPENR_PWRLPEN_Msk           (0x1UL << RCC_APB1LPENR_PWRLPEN_Pos) /*!< 0x10000000 */
30 mjames 4604
#define RCC_APB1LPENR_PWRLPEN               RCC_APB1LPENR_PWRLPEN_Msk          /*!< Power interface clock enabled in sleep mode */
4605
#define RCC_APB1LPENR_DACLPEN_Pos           (29U)                              
50 mjames 4606
#define RCC_APB1LPENR_DACLPEN_Msk           (0x1UL << RCC_APB1LPENR_DACLPEN_Pos) /*!< 0x20000000 */
30 mjames 4607
#define RCC_APB1LPENR_DACLPEN               RCC_APB1LPENR_DACLPEN_Msk          /*!< DAC interface clock enabled in sleep mode */
4608
#define RCC_APB1LPENR_COMPLPEN_Pos          (31U)                              
50 mjames 4609
#define RCC_APB1LPENR_COMPLPEN_Msk          (0x1UL << RCC_APB1LPENR_COMPLPEN_Pos) /*!< 0x80000000 */
30 mjames 4610
#define RCC_APB1LPENR_COMPLPEN              RCC_APB1LPENR_COMPLPEN_Msk         /*!< Comparator interface clock enabled in sleep mode*/
4611
 
4612
/*******************  Bit definition for RCC_CSR register  ********************/
4613
#define RCC_CSR_LSION_Pos                   (0U)                               
50 mjames 4614
#define RCC_CSR_LSION_Msk                   (0x1UL << RCC_CSR_LSION_Pos)        /*!< 0x00000001 */
30 mjames 4615
#define RCC_CSR_LSION                       RCC_CSR_LSION_Msk                  /*!< Internal Low Speed oscillator enable */
4616
#define RCC_CSR_LSIRDY_Pos                  (1U)                               
50 mjames 4617
#define RCC_CSR_LSIRDY_Msk                  (0x1UL << RCC_CSR_LSIRDY_Pos)       /*!< 0x00000002 */
30 mjames 4618
#define RCC_CSR_LSIRDY                      RCC_CSR_LSIRDY_Msk                 /*!< Internal Low Speed oscillator Ready */
4619
 
4620
#define RCC_CSR_LSEON_Pos                   (8U)                               
50 mjames 4621
#define RCC_CSR_LSEON_Msk                   (0x1UL << RCC_CSR_LSEON_Pos)        /*!< 0x00000100 */
30 mjames 4622
#define RCC_CSR_LSEON                       RCC_CSR_LSEON_Msk                  /*!< External Low Speed oscillator enable */
4623
#define RCC_CSR_LSERDY_Pos                  (9U)                               
50 mjames 4624
#define RCC_CSR_LSERDY_Msk                  (0x1UL << RCC_CSR_LSERDY_Pos)       /*!< 0x00000200 */
30 mjames 4625
#define RCC_CSR_LSERDY                      RCC_CSR_LSERDY_Msk                 /*!< External Low Speed oscillator Ready */
4626
#define RCC_CSR_LSEBYP_Pos                  (10U)                              
50 mjames 4627
#define RCC_CSR_LSEBYP_Msk                  (0x1UL << RCC_CSR_LSEBYP_Pos)       /*!< 0x00000400 */
30 mjames 4628
#define RCC_CSR_LSEBYP                      RCC_CSR_LSEBYP_Msk                 /*!< External Low Speed oscillator Bypass */
4629
 
4630
#define RCC_CSR_LSECSSON_Pos                (11U)                              
50 mjames 4631
#define RCC_CSR_LSECSSON_Msk                (0x1UL << RCC_CSR_LSECSSON_Pos)     /*!< 0x00000800 */
30 mjames 4632
#define RCC_CSR_LSECSSON                    RCC_CSR_LSECSSON_Msk               /*!< External Low Speed oscillator CSS Enable */
4633
#define RCC_CSR_LSECSSD_Pos                 (12U)                              
50 mjames 4634
#define RCC_CSR_LSECSSD_Msk                 (0x1UL << RCC_CSR_LSECSSD_Pos)      /*!< 0x00001000 */
30 mjames 4635
#define RCC_CSR_LSECSSD                     RCC_CSR_LSECSSD_Msk                /*!< External Low Speed oscillator CSS Detected */
4636
 
4637
#define RCC_CSR_RTCSEL_Pos                  (16U)                              
50 mjames 4638
#define RCC_CSR_RTCSEL_Msk                  (0x3UL << RCC_CSR_RTCSEL_Pos)       /*!< 0x00030000 */
30 mjames 4639
#define RCC_CSR_RTCSEL                      RCC_CSR_RTCSEL_Msk                 /*!< RTCSEL[1:0] bits (RTC clock source selection) */
50 mjames 4640
#define RCC_CSR_RTCSEL_0                    (0x1UL << RCC_CSR_RTCSEL_Pos)       /*!< 0x00010000 */
4641
#define RCC_CSR_RTCSEL_1                    (0x2UL << RCC_CSR_RTCSEL_Pos)       /*!< 0x00020000 */
30 mjames 4642
 
4643
/*!< RTC congiguration */
4644
#define RCC_CSR_RTCSEL_NOCLOCK              (0x00000000U)                      /*!< No clock */
4645
#define RCC_CSR_RTCSEL_LSE_Pos              (16U)                              
50 mjames 4646
#define RCC_CSR_RTCSEL_LSE_Msk              (0x1UL << RCC_CSR_RTCSEL_LSE_Pos)   /*!< 0x00010000 */
30 mjames 4647
#define RCC_CSR_RTCSEL_LSE                  RCC_CSR_RTCSEL_LSE_Msk             /*!< LSE oscillator clock used as RTC clock */
4648
#define RCC_CSR_RTCSEL_LSI_Pos              (17U)                              
50 mjames 4649
#define RCC_CSR_RTCSEL_LSI_Msk              (0x1UL << RCC_CSR_RTCSEL_LSI_Pos)   /*!< 0x00020000 */
30 mjames 4650
#define RCC_CSR_RTCSEL_LSI                  RCC_CSR_RTCSEL_LSI_Msk             /*!< LSI oscillator clock used as RTC clock */
4651
#define RCC_CSR_RTCSEL_HSE_Pos              (16U)                              
50 mjames 4652
#define RCC_CSR_RTCSEL_HSE_Msk              (0x3UL << RCC_CSR_RTCSEL_HSE_Pos)   /*!< 0x00030000 */
30 mjames 4653
#define RCC_CSR_RTCSEL_HSE                  RCC_CSR_RTCSEL_HSE_Msk             /*!< HSE oscillator clock divided by 2, 4, 8 or 16 by RTCPRE used as RTC clock */
4654
 
4655
#define RCC_CSR_RTCEN_Pos                   (22U)                              
50 mjames 4656
#define RCC_CSR_RTCEN_Msk                   (0x1UL << RCC_CSR_RTCEN_Pos)        /*!< 0x00400000 */
30 mjames 4657
#define RCC_CSR_RTCEN                       RCC_CSR_RTCEN_Msk                  /*!< RTC clock enable */
4658
#define RCC_CSR_RTCRST_Pos                  (23U)                              
50 mjames 4659
#define RCC_CSR_RTCRST_Msk                  (0x1UL << RCC_CSR_RTCRST_Pos)       /*!< 0x00800000 */
30 mjames 4660
#define RCC_CSR_RTCRST                      RCC_CSR_RTCRST_Msk                 /*!< RTC reset  */
4661
 
4662
#define RCC_CSR_RMVF_Pos                    (24U)                              
50 mjames 4663
#define RCC_CSR_RMVF_Msk                    (0x1UL << RCC_CSR_RMVF_Pos)         /*!< 0x01000000 */
30 mjames 4664
#define RCC_CSR_RMVF                        RCC_CSR_RMVF_Msk                   /*!< Remove reset flag */
4665
#define RCC_CSR_OBLRSTF_Pos                 (25U)                              
50 mjames 4666
#define RCC_CSR_OBLRSTF_Msk                 (0x1UL << RCC_CSR_OBLRSTF_Pos)      /*!< 0x02000000 */
30 mjames 4667
#define RCC_CSR_OBLRSTF                     RCC_CSR_OBLRSTF_Msk                /*!< Option Bytes Loader reset flag */
4668
#define RCC_CSR_PINRSTF_Pos                 (26U)                              
50 mjames 4669
#define RCC_CSR_PINRSTF_Msk                 (0x1UL << RCC_CSR_PINRSTF_Pos)      /*!< 0x04000000 */
30 mjames 4670
#define RCC_CSR_PINRSTF                     RCC_CSR_PINRSTF_Msk                /*!< PIN reset flag */
4671
#define RCC_CSR_PORRSTF_Pos                 (27U)                              
50 mjames 4672
#define RCC_CSR_PORRSTF_Msk                 (0x1UL << RCC_CSR_PORRSTF_Pos)      /*!< 0x08000000 */
30 mjames 4673
#define RCC_CSR_PORRSTF                     RCC_CSR_PORRSTF_Msk                /*!< POR/PDR reset flag */
4674
#define RCC_CSR_SFTRSTF_Pos                 (28U)                              
50 mjames 4675
#define RCC_CSR_SFTRSTF_Msk                 (0x1UL << RCC_CSR_SFTRSTF_Pos)      /*!< 0x10000000 */
30 mjames 4676
#define RCC_CSR_SFTRSTF                     RCC_CSR_SFTRSTF_Msk                /*!< Software Reset flag */
4677
#define RCC_CSR_IWDGRSTF_Pos                (29U)                              
50 mjames 4678
#define RCC_CSR_IWDGRSTF_Msk                (0x1UL << RCC_CSR_IWDGRSTF_Pos)     /*!< 0x20000000 */
30 mjames 4679
#define RCC_CSR_IWDGRSTF                    RCC_CSR_IWDGRSTF_Msk               /*!< Independent Watchdog reset flag */
4680
#define RCC_CSR_WWDGRSTF_Pos                (30U)                              
50 mjames 4681
#define RCC_CSR_WWDGRSTF_Msk                (0x1UL << RCC_CSR_WWDGRSTF_Pos)     /*!< 0x40000000 */
30 mjames 4682
#define RCC_CSR_WWDGRSTF                    RCC_CSR_WWDGRSTF_Msk               /*!< Window watchdog reset flag */
4683
#define RCC_CSR_LPWRRSTF_Pos                (31U)                              
50 mjames 4684
#define RCC_CSR_LPWRRSTF_Msk                (0x1UL << RCC_CSR_LPWRRSTF_Pos)     /*!< 0x80000000 */
30 mjames 4685
#define RCC_CSR_LPWRRSTF                    RCC_CSR_LPWRRSTF_Msk               /*!< Low-Power reset flag */
4686
 
4687
/******************************************************************************/
4688
/*                                                                            */
4689
/*                           Real-Time Clock (RTC)                            */
4690
/*                                                                            */
4691
/******************************************************************************/
4692
/*
4693
* @brief Specific device feature definitions  (not present on all devices in the STM32F0 serie)
4694
*/
4695
#define RTC_TAMPER1_SUPPORT       /*!< TAMPER 1 feature support */
4696
#define RTC_TAMPER2_SUPPORT       /*!< TAMPER 2 feature support */
4697
#define RTC_TAMPER3_SUPPORT       /*!< TAMPER 3 feature support */
4698
#define RTC_BACKUP_SUPPORT        /*!< BACKUP register feature support */
4699
#define RTC_WAKEUP_SUPPORT        /*!< WAKEUP feature support */
4700
#define RTC_SMOOTHCALIB_SUPPORT   /*!< Smooth digital calibration feature support */
4701
#define RTC_SUBSECOND_SUPPORT     /*!< Sub-second feature support */
4702
 
4703
/********************  Bits definition for RTC_TR register  *******************/
4704
#define RTC_TR_PM_Pos                        (22U)                             
50 mjames 4705
#define RTC_TR_PM_Msk                        (0x1UL << RTC_TR_PM_Pos)           /*!< 0x00400000 */
30 mjames 4706
#define RTC_TR_PM                            RTC_TR_PM_Msk                     
4707
#define RTC_TR_HT_Pos                        (20U)                             
50 mjames 4708
#define RTC_TR_HT_Msk                        (0x3UL << RTC_TR_HT_Pos)           /*!< 0x00300000 */
30 mjames 4709
#define RTC_TR_HT                            RTC_TR_HT_Msk                     
50 mjames 4710
#define RTC_TR_HT_0                          (0x1UL << RTC_TR_HT_Pos)           /*!< 0x00100000 */
4711
#define RTC_TR_HT_1                          (0x2UL << RTC_TR_HT_Pos)           /*!< 0x00200000 */
30 mjames 4712
#define RTC_TR_HU_Pos                        (16U)                             
50 mjames 4713
#define RTC_TR_HU_Msk                        (0xFUL << RTC_TR_HU_Pos)           /*!< 0x000F0000 */
30 mjames 4714
#define RTC_TR_HU                            RTC_TR_HU_Msk                     
50 mjames 4715
#define RTC_TR_HU_0                          (0x1UL << RTC_TR_HU_Pos)           /*!< 0x00010000 */
4716
#define RTC_TR_HU_1                          (0x2UL << RTC_TR_HU_Pos)           /*!< 0x00020000 */
4717
#define RTC_TR_HU_2                          (0x4UL << RTC_TR_HU_Pos)           /*!< 0x00040000 */
4718
#define RTC_TR_HU_3                          (0x8UL << RTC_TR_HU_Pos)           /*!< 0x00080000 */
30 mjames 4719
#define RTC_TR_MNT_Pos                       (12U)                             
50 mjames 4720
#define RTC_TR_MNT_Msk                       (0x7UL << RTC_TR_MNT_Pos)          /*!< 0x00007000 */
30 mjames 4721
#define RTC_TR_MNT                           RTC_TR_MNT_Msk                    
50 mjames 4722
#define RTC_TR_MNT_0                         (0x1UL << RTC_TR_MNT_Pos)          /*!< 0x00001000 */
4723
#define RTC_TR_MNT_1                         (0x2UL << RTC_TR_MNT_Pos)          /*!< 0x00002000 */
4724
#define RTC_TR_MNT_2                         (0x4UL << RTC_TR_MNT_Pos)          /*!< 0x00004000 */
30 mjames 4725
#define RTC_TR_MNU_Pos                       (8U)                              
50 mjames 4726
#define RTC_TR_MNU_Msk                       (0xFUL << RTC_TR_MNU_Pos)          /*!< 0x00000F00 */
30 mjames 4727
#define RTC_TR_MNU                           RTC_TR_MNU_Msk                    
50 mjames 4728
#define RTC_TR_MNU_0                         (0x1UL << RTC_TR_MNU_Pos)          /*!< 0x00000100 */
4729
#define RTC_TR_MNU_1                         (0x2UL << RTC_TR_MNU_Pos)          /*!< 0x00000200 */
4730
#define RTC_TR_MNU_2                         (0x4UL << RTC_TR_MNU_Pos)          /*!< 0x00000400 */
4731
#define RTC_TR_MNU_3                         (0x8UL << RTC_TR_MNU_Pos)          /*!< 0x00000800 */
30 mjames 4732
#define RTC_TR_ST_Pos                        (4U)                              
50 mjames 4733
#define RTC_TR_ST_Msk                        (0x7UL << RTC_TR_ST_Pos)           /*!< 0x00000070 */
30 mjames 4734
#define RTC_TR_ST                            RTC_TR_ST_Msk                     
50 mjames 4735
#define RTC_TR_ST_0                          (0x1UL << RTC_TR_ST_Pos)           /*!< 0x00000010 */
4736
#define RTC_TR_ST_1                          (0x2UL << RTC_TR_ST_Pos)           /*!< 0x00000020 */
4737
#define RTC_TR_ST_2                          (0x4UL << RTC_TR_ST_Pos)           /*!< 0x00000040 */
30 mjames 4738
#define RTC_TR_SU_Pos                        (0U)                              
50 mjames 4739
#define RTC_TR_SU_Msk                        (0xFUL << RTC_TR_SU_Pos)           /*!< 0x0000000F */
30 mjames 4740
#define RTC_TR_SU                            RTC_TR_SU_Msk                     
50 mjames 4741
#define RTC_TR_SU_0                          (0x1UL << RTC_TR_SU_Pos)           /*!< 0x00000001 */
4742
#define RTC_TR_SU_1                          (0x2UL << RTC_TR_SU_Pos)           /*!< 0x00000002 */
4743
#define RTC_TR_SU_2                          (0x4UL << RTC_TR_SU_Pos)           /*!< 0x00000004 */
4744
#define RTC_TR_SU_3                          (0x8UL << RTC_TR_SU_Pos)           /*!< 0x00000008 */
30 mjames 4745
 
4746
/********************  Bits definition for RTC_DR register  *******************/
4747
#define RTC_DR_YT_Pos                        (20U)                             
50 mjames 4748
#define RTC_DR_YT_Msk                        (0xFUL << RTC_DR_YT_Pos)           /*!< 0x00F00000 */
30 mjames 4749
#define RTC_DR_YT                            RTC_DR_YT_Msk                     
50 mjames 4750
#define RTC_DR_YT_0                          (0x1UL << RTC_DR_YT_Pos)           /*!< 0x00100000 */
4751
#define RTC_DR_YT_1                          (0x2UL << RTC_DR_YT_Pos)           /*!< 0x00200000 */
4752
#define RTC_DR_YT_2                          (0x4UL << RTC_DR_YT_Pos)           /*!< 0x00400000 */
4753
#define RTC_DR_YT_3                          (0x8UL << RTC_DR_YT_Pos)           /*!< 0x00800000 */
30 mjames 4754
#define RTC_DR_YU_Pos                        (16U)                             
50 mjames 4755
#define RTC_DR_YU_Msk                        (0xFUL << RTC_DR_YU_Pos)           /*!< 0x000F0000 */
30 mjames 4756
#define RTC_DR_YU                            RTC_DR_YU_Msk                     
50 mjames 4757
#define RTC_DR_YU_0                          (0x1UL << RTC_DR_YU_Pos)           /*!< 0x00010000 */
4758
#define RTC_DR_YU_1                          (0x2UL << RTC_DR_YU_Pos)           /*!< 0x00020000 */
4759
#define RTC_DR_YU_2                          (0x4UL << RTC_DR_YU_Pos)           /*!< 0x00040000 */
4760
#define RTC_DR_YU_3                          (0x8UL << RTC_DR_YU_Pos)           /*!< 0x00080000 */
30 mjames 4761
#define RTC_DR_WDU_Pos                       (13U)                             
50 mjames 4762
#define RTC_DR_WDU_Msk                       (0x7UL << RTC_DR_WDU_Pos)          /*!< 0x0000E000 */
30 mjames 4763
#define RTC_DR_WDU                           RTC_DR_WDU_Msk                    
50 mjames 4764
#define RTC_DR_WDU_0                         (0x1UL << RTC_DR_WDU_Pos)          /*!< 0x00002000 */
4765
#define RTC_DR_WDU_1                         (0x2UL << RTC_DR_WDU_Pos)          /*!< 0x00004000 */
4766
#define RTC_DR_WDU_2                         (0x4UL << RTC_DR_WDU_Pos)          /*!< 0x00008000 */
30 mjames 4767
#define RTC_DR_MT_Pos                        (12U)                             
50 mjames 4768
#define RTC_DR_MT_Msk                        (0x1UL << RTC_DR_MT_Pos)           /*!< 0x00001000 */
30 mjames 4769
#define RTC_DR_MT                            RTC_DR_MT_Msk                     
4770
#define RTC_DR_MU_Pos                        (8U)                              
50 mjames 4771
#define RTC_DR_MU_Msk                        (0xFUL << RTC_DR_MU_Pos)           /*!< 0x00000F00 */
30 mjames 4772
#define RTC_DR_MU                            RTC_DR_MU_Msk                     
50 mjames 4773
#define RTC_DR_MU_0                          (0x1UL << RTC_DR_MU_Pos)           /*!< 0x00000100 */
4774
#define RTC_DR_MU_1                          (0x2UL << RTC_DR_MU_Pos)           /*!< 0x00000200 */
4775
#define RTC_DR_MU_2                          (0x4UL << RTC_DR_MU_Pos)           /*!< 0x00000400 */
4776
#define RTC_DR_MU_3                          (0x8UL << RTC_DR_MU_Pos)           /*!< 0x00000800 */
30 mjames 4777
#define RTC_DR_DT_Pos                        (4U)                              
50 mjames 4778
#define RTC_DR_DT_Msk                        (0x3UL << RTC_DR_DT_Pos)           /*!< 0x00000030 */
30 mjames 4779
#define RTC_DR_DT                            RTC_DR_DT_Msk                     
50 mjames 4780
#define RTC_DR_DT_0                          (0x1UL << RTC_DR_DT_Pos)           /*!< 0x00000010 */
4781
#define RTC_DR_DT_1                          (0x2UL << RTC_DR_DT_Pos)           /*!< 0x00000020 */
30 mjames 4782
#define RTC_DR_DU_Pos                        (0U)                              
50 mjames 4783
#define RTC_DR_DU_Msk                        (0xFUL << RTC_DR_DU_Pos)           /*!< 0x0000000F */
30 mjames 4784
#define RTC_DR_DU                            RTC_DR_DU_Msk                     
50 mjames 4785
#define RTC_DR_DU_0                          (0x1UL << RTC_DR_DU_Pos)           /*!< 0x00000001 */
4786
#define RTC_DR_DU_1                          (0x2UL << RTC_DR_DU_Pos)           /*!< 0x00000002 */
4787
#define RTC_DR_DU_2                          (0x4UL << RTC_DR_DU_Pos)           /*!< 0x00000004 */
4788
#define RTC_DR_DU_3                          (0x8UL << RTC_DR_DU_Pos)           /*!< 0x00000008 */
30 mjames 4789
 
4790
/********************  Bits definition for RTC_CR register  *******************/
4791
#define RTC_CR_COE_Pos                       (23U)                             
50 mjames 4792
#define RTC_CR_COE_Msk                       (0x1UL << RTC_CR_COE_Pos)          /*!< 0x00800000 */
30 mjames 4793
#define RTC_CR_COE                           RTC_CR_COE_Msk                    
4794
#define RTC_CR_OSEL_Pos                      (21U)                             
50 mjames 4795
#define RTC_CR_OSEL_Msk                      (0x3UL << RTC_CR_OSEL_Pos)         /*!< 0x00600000 */
30 mjames 4796
#define RTC_CR_OSEL                          RTC_CR_OSEL_Msk                   
50 mjames 4797
#define RTC_CR_OSEL_0                        (0x1UL << RTC_CR_OSEL_Pos)         /*!< 0x00200000 */
4798
#define RTC_CR_OSEL_1                        (0x2UL << RTC_CR_OSEL_Pos)         /*!< 0x00400000 */
30 mjames 4799
#define RTC_CR_POL_Pos                       (20U)                             
50 mjames 4800
#define RTC_CR_POL_Msk                       (0x1UL << RTC_CR_POL_Pos)          /*!< 0x00100000 */
30 mjames 4801
#define RTC_CR_POL                           RTC_CR_POL_Msk                    
4802
#define RTC_CR_COSEL_Pos                     (19U)                             
50 mjames 4803
#define RTC_CR_COSEL_Msk                     (0x1UL << RTC_CR_COSEL_Pos)        /*!< 0x00080000 */
30 mjames 4804
#define RTC_CR_COSEL                         RTC_CR_COSEL_Msk                  
50 mjames 4805
#define RTC_CR_BKP_Pos                       (18U)                             
4806
#define RTC_CR_BKP_Msk                       (0x1UL << RTC_CR_BKP_Pos)          /*!< 0x00040000 */
4807
#define RTC_CR_BKP                           RTC_CR_BKP_Msk                    
30 mjames 4808
#define RTC_CR_SUB1H_Pos                     (17U)                             
50 mjames 4809
#define RTC_CR_SUB1H_Msk                     (0x1UL << RTC_CR_SUB1H_Pos)        /*!< 0x00020000 */
30 mjames 4810
#define RTC_CR_SUB1H                         RTC_CR_SUB1H_Msk                  
4811
#define RTC_CR_ADD1H_Pos                     (16U)                             
50 mjames 4812
#define RTC_CR_ADD1H_Msk                     (0x1UL << RTC_CR_ADD1H_Pos)        /*!< 0x00010000 */
30 mjames 4813
#define RTC_CR_ADD1H                         RTC_CR_ADD1H_Msk                  
4814
#define RTC_CR_TSIE_Pos                      (15U)                             
50 mjames 4815
#define RTC_CR_TSIE_Msk                      (0x1UL << RTC_CR_TSIE_Pos)         /*!< 0x00008000 */
30 mjames 4816
#define RTC_CR_TSIE                          RTC_CR_TSIE_Msk                   
4817
#define RTC_CR_WUTIE_Pos                     (14U)                             
50 mjames 4818
#define RTC_CR_WUTIE_Msk                     (0x1UL << RTC_CR_WUTIE_Pos)        /*!< 0x00004000 */
30 mjames 4819
#define RTC_CR_WUTIE                         RTC_CR_WUTIE_Msk                  
4820
#define RTC_CR_ALRBIE_Pos                    (13U)                             
50 mjames 4821
#define RTC_CR_ALRBIE_Msk                    (0x1UL << RTC_CR_ALRBIE_Pos)       /*!< 0x00002000 */
30 mjames 4822
#define RTC_CR_ALRBIE                        RTC_CR_ALRBIE_Msk                 
4823
#define RTC_CR_ALRAIE_Pos                    (12U)                             
50 mjames 4824
#define RTC_CR_ALRAIE_Msk                    (0x1UL << RTC_CR_ALRAIE_Pos)       /*!< 0x00001000 */
30 mjames 4825
#define RTC_CR_ALRAIE                        RTC_CR_ALRAIE_Msk                 
4826
#define RTC_CR_TSE_Pos                       (11U)                             
50 mjames 4827
#define RTC_CR_TSE_Msk                       (0x1UL << RTC_CR_TSE_Pos)          /*!< 0x00000800 */
30 mjames 4828
#define RTC_CR_TSE                           RTC_CR_TSE_Msk                    
4829
#define RTC_CR_WUTE_Pos                      (10U)                             
50 mjames 4830
#define RTC_CR_WUTE_Msk                      (0x1UL << RTC_CR_WUTE_Pos)         /*!< 0x00000400 */
30 mjames 4831
#define RTC_CR_WUTE                          RTC_CR_WUTE_Msk                   
4832
#define RTC_CR_ALRBE_Pos                     (9U)                              
50 mjames 4833
#define RTC_CR_ALRBE_Msk                     (0x1UL << RTC_CR_ALRBE_Pos)        /*!< 0x00000200 */
30 mjames 4834
#define RTC_CR_ALRBE                         RTC_CR_ALRBE_Msk                  
4835
#define RTC_CR_ALRAE_Pos                     (8U)                              
50 mjames 4836
#define RTC_CR_ALRAE_Msk                     (0x1UL << RTC_CR_ALRAE_Pos)        /*!< 0x00000100 */
30 mjames 4837
#define RTC_CR_ALRAE                         RTC_CR_ALRAE_Msk                  
4838
#define RTC_CR_DCE_Pos                       (7U)                              
50 mjames 4839
#define RTC_CR_DCE_Msk                       (0x1UL << RTC_CR_DCE_Pos)          /*!< 0x00000080 */
30 mjames 4840
#define RTC_CR_DCE                           RTC_CR_DCE_Msk                    
4841
#define RTC_CR_FMT_Pos                       (6U)                              
50 mjames 4842
#define RTC_CR_FMT_Msk                       (0x1UL << RTC_CR_FMT_Pos)          /*!< 0x00000040 */
30 mjames 4843
#define RTC_CR_FMT                           RTC_CR_FMT_Msk                    
4844
#define RTC_CR_BYPSHAD_Pos                   (5U)                              
50 mjames 4845
#define RTC_CR_BYPSHAD_Msk                   (0x1UL << RTC_CR_BYPSHAD_Pos)      /*!< 0x00000020 */
30 mjames 4846
#define RTC_CR_BYPSHAD                       RTC_CR_BYPSHAD_Msk                
4847
#define RTC_CR_REFCKON_Pos                   (4U)                              
50 mjames 4848
#define RTC_CR_REFCKON_Msk                   (0x1UL << RTC_CR_REFCKON_Pos)      /*!< 0x00000010 */
30 mjames 4849
#define RTC_CR_REFCKON                       RTC_CR_REFCKON_Msk                
4850
#define RTC_CR_TSEDGE_Pos                    (3U)                              
50 mjames 4851
#define RTC_CR_TSEDGE_Msk                    (0x1UL << RTC_CR_TSEDGE_Pos)       /*!< 0x00000008 */
30 mjames 4852
#define RTC_CR_TSEDGE                        RTC_CR_TSEDGE_Msk                 
4853
#define RTC_CR_WUCKSEL_Pos                   (0U)                              
50 mjames 4854
#define RTC_CR_WUCKSEL_Msk                   (0x7UL << RTC_CR_WUCKSEL_Pos)      /*!< 0x00000007 */
30 mjames 4855
#define RTC_CR_WUCKSEL                       RTC_CR_WUCKSEL_Msk                
50 mjames 4856
#define RTC_CR_WUCKSEL_0                     (0x1UL << RTC_CR_WUCKSEL_Pos)      /*!< 0x00000001 */
4857
#define RTC_CR_WUCKSEL_1                     (0x2UL << RTC_CR_WUCKSEL_Pos)      /*!< 0x00000002 */
4858
#define RTC_CR_WUCKSEL_2                     (0x4UL << RTC_CR_WUCKSEL_Pos)      /*!< 0x00000004 */
30 mjames 4859
 
50 mjames 4860
/* Legacy defines */
4861
#define  RTC_CR_BCK_Pos RTC_CR_BKP_Pos
4862
#define  RTC_CR_BCK_Msk RTC_CR_BKP_Msk
4863
#define  RTC_CR_BCK     RTC_CR_BKP
4864
 
30 mjames 4865
/********************  Bits definition for RTC_ISR register  ******************/
4866
#define RTC_ISR_RECALPF_Pos                  (16U)                             
50 mjames 4867
#define RTC_ISR_RECALPF_Msk                  (0x1UL << RTC_ISR_RECALPF_Pos)     /*!< 0x00010000 */
30 mjames 4868
#define RTC_ISR_RECALPF                      RTC_ISR_RECALPF_Msk               
4869
#define RTC_ISR_TAMP3F_Pos                   (15U)                             
50 mjames 4870
#define RTC_ISR_TAMP3F_Msk                   (0x1UL << RTC_ISR_TAMP3F_Pos)      /*!< 0x00008000 */
30 mjames 4871
#define RTC_ISR_TAMP3F                       RTC_ISR_TAMP3F_Msk                
4872
#define RTC_ISR_TAMP2F_Pos                   (14U)                             
50 mjames 4873
#define RTC_ISR_TAMP2F_Msk                   (0x1UL << RTC_ISR_TAMP2F_Pos)      /*!< 0x00004000 */
30 mjames 4874
#define RTC_ISR_TAMP2F                       RTC_ISR_TAMP2F_Msk                
4875
#define RTC_ISR_TAMP1F_Pos                   (13U)                             
50 mjames 4876
#define RTC_ISR_TAMP1F_Msk                   (0x1UL << RTC_ISR_TAMP1F_Pos)      /*!< 0x00002000 */
30 mjames 4877
#define RTC_ISR_TAMP1F                       RTC_ISR_TAMP1F_Msk                
4878
#define RTC_ISR_TSOVF_Pos                    (12U)                             
50 mjames 4879
#define RTC_ISR_TSOVF_Msk                    (0x1UL << RTC_ISR_TSOVF_Pos)       /*!< 0x00001000 */
30 mjames 4880
#define RTC_ISR_TSOVF                        RTC_ISR_TSOVF_Msk                 
4881
#define RTC_ISR_TSF_Pos                      (11U)                             
50 mjames 4882
#define RTC_ISR_TSF_Msk                      (0x1UL << RTC_ISR_TSF_Pos)         /*!< 0x00000800 */
30 mjames 4883
#define RTC_ISR_TSF                          RTC_ISR_TSF_Msk                   
4884
#define RTC_ISR_WUTF_Pos                     (10U)                             
50 mjames 4885
#define RTC_ISR_WUTF_Msk                     (0x1UL << RTC_ISR_WUTF_Pos)        /*!< 0x00000400 */
30 mjames 4886
#define RTC_ISR_WUTF                         RTC_ISR_WUTF_Msk                  
4887
#define RTC_ISR_ALRBF_Pos                    (9U)                              
50 mjames 4888
#define RTC_ISR_ALRBF_Msk                    (0x1UL << RTC_ISR_ALRBF_Pos)       /*!< 0x00000200 */
30 mjames 4889
#define RTC_ISR_ALRBF                        RTC_ISR_ALRBF_Msk                 
4890
#define RTC_ISR_ALRAF_Pos                    (8U)                              
50 mjames 4891
#define RTC_ISR_ALRAF_Msk                    (0x1UL << RTC_ISR_ALRAF_Pos)       /*!< 0x00000100 */
30 mjames 4892
#define RTC_ISR_ALRAF                        RTC_ISR_ALRAF_Msk                 
4893
#define RTC_ISR_INIT_Pos                     (7U)                              
50 mjames 4894
#define RTC_ISR_INIT_Msk                     (0x1UL << RTC_ISR_INIT_Pos)        /*!< 0x00000080 */
30 mjames 4895
#define RTC_ISR_INIT                         RTC_ISR_INIT_Msk                  
4896
#define RTC_ISR_INITF_Pos                    (6U)                              
50 mjames 4897
#define RTC_ISR_INITF_Msk                    (0x1UL << RTC_ISR_INITF_Pos)       /*!< 0x00000040 */
30 mjames 4898
#define RTC_ISR_INITF                        RTC_ISR_INITF_Msk                 
4899
#define RTC_ISR_RSF_Pos                      (5U)                              
50 mjames 4900
#define RTC_ISR_RSF_Msk                      (0x1UL << RTC_ISR_RSF_Pos)         /*!< 0x00000020 */
30 mjames 4901
#define RTC_ISR_RSF                          RTC_ISR_RSF_Msk                   
4902
#define RTC_ISR_INITS_Pos                    (4U)                              
50 mjames 4903
#define RTC_ISR_INITS_Msk                    (0x1UL << RTC_ISR_INITS_Pos)       /*!< 0x00000010 */
30 mjames 4904
#define RTC_ISR_INITS                        RTC_ISR_INITS_Msk                 
4905
#define RTC_ISR_SHPF_Pos                     (3U)                              
50 mjames 4906
#define RTC_ISR_SHPF_Msk                     (0x1UL << RTC_ISR_SHPF_Pos)        /*!< 0x00000008 */
30 mjames 4907
#define RTC_ISR_SHPF                         RTC_ISR_SHPF_Msk                  
4908
#define RTC_ISR_WUTWF_Pos                    (2U)                              
50 mjames 4909
#define RTC_ISR_WUTWF_Msk                    (0x1UL << RTC_ISR_WUTWF_Pos)       /*!< 0x00000004 */
30 mjames 4910
#define RTC_ISR_WUTWF                        RTC_ISR_WUTWF_Msk                 
4911
#define RTC_ISR_ALRBWF_Pos                   (1U)                              
50 mjames 4912
#define RTC_ISR_ALRBWF_Msk                   (0x1UL << RTC_ISR_ALRBWF_Pos)      /*!< 0x00000002 */
30 mjames 4913
#define RTC_ISR_ALRBWF                       RTC_ISR_ALRBWF_Msk                
4914
#define RTC_ISR_ALRAWF_Pos                   (0U)                              
50 mjames 4915
#define RTC_ISR_ALRAWF_Msk                   (0x1UL << RTC_ISR_ALRAWF_Pos)      /*!< 0x00000001 */
30 mjames 4916
#define RTC_ISR_ALRAWF                       RTC_ISR_ALRAWF_Msk                
4917
 
4918
/********************  Bits definition for RTC_PRER register  *****************/
4919
#define RTC_PRER_PREDIV_A_Pos                (16U)                             
50 mjames 4920
#define RTC_PRER_PREDIV_A_Msk                (0x7FUL << RTC_PRER_PREDIV_A_Pos)  /*!< 0x007F0000 */
30 mjames 4921
#define RTC_PRER_PREDIV_A                    RTC_PRER_PREDIV_A_Msk             
4922
#define RTC_PRER_PREDIV_S_Pos                (0U)                              
50 mjames 4923
#define RTC_PRER_PREDIV_S_Msk                (0x7FFFUL << RTC_PRER_PREDIV_S_Pos) /*!< 0x00007FFF */
30 mjames 4924
#define RTC_PRER_PREDIV_S                    RTC_PRER_PREDIV_S_Msk             
4925
 
4926
/********************  Bits definition for RTC_WUTR register  *****************/
4927
#define RTC_WUTR_WUT_Pos                     (0U)                              
50 mjames 4928
#define RTC_WUTR_WUT_Msk                     (0xFFFFUL << RTC_WUTR_WUT_Pos)     /*!< 0x0000FFFF */
30 mjames 4929
#define RTC_WUTR_WUT                         RTC_WUTR_WUT_Msk                  
4930
 
4931
/********************  Bits definition for RTC_CALIBR register  ***************/
4932
#define RTC_CALIBR_DCS_Pos                   (7U)                              
50 mjames 4933
#define RTC_CALIBR_DCS_Msk                   (0x1UL << RTC_CALIBR_DCS_Pos)      /*!< 0x00000080 */
30 mjames 4934
#define RTC_CALIBR_DCS                       RTC_CALIBR_DCS_Msk                
4935
#define RTC_CALIBR_DC_Pos                    (0U)                              
50 mjames 4936
#define RTC_CALIBR_DC_Msk                    (0x1FUL << RTC_CALIBR_DC_Pos)      /*!< 0x0000001F */
30 mjames 4937
#define RTC_CALIBR_DC                        RTC_CALIBR_DC_Msk                 
4938
 
4939
/********************  Bits definition for RTC_ALRMAR register  ***************/
4940
#define RTC_ALRMAR_MSK4_Pos                  (31U)                             
50 mjames 4941
#define RTC_ALRMAR_MSK4_Msk                  (0x1UL << RTC_ALRMAR_MSK4_Pos)     /*!< 0x80000000 */
30 mjames 4942
#define RTC_ALRMAR_MSK4                      RTC_ALRMAR_MSK4_Msk               
4943
#define RTC_ALRMAR_WDSEL_Pos                 (30U)                             
50 mjames 4944
#define RTC_ALRMAR_WDSEL_Msk                 (0x1UL << RTC_ALRMAR_WDSEL_Pos)    /*!< 0x40000000 */
30 mjames 4945
#define RTC_ALRMAR_WDSEL                     RTC_ALRMAR_WDSEL_Msk              
4946
#define RTC_ALRMAR_DT_Pos                    (28U)                             
50 mjames 4947
#define RTC_ALRMAR_DT_Msk                    (0x3UL << RTC_ALRMAR_DT_Pos)       /*!< 0x30000000 */
30 mjames 4948
#define RTC_ALRMAR_DT                        RTC_ALRMAR_DT_Msk                 
50 mjames 4949
#define RTC_ALRMAR_DT_0                      (0x1UL << RTC_ALRMAR_DT_Pos)       /*!< 0x10000000 */
4950
#define RTC_ALRMAR_DT_1                      (0x2UL << RTC_ALRMAR_DT_Pos)       /*!< 0x20000000 */
30 mjames 4951
#define RTC_ALRMAR_DU_Pos                    (24U)                             
50 mjames 4952
#define RTC_ALRMAR_DU_Msk                    (0xFUL << RTC_ALRMAR_DU_Pos)       /*!< 0x0F000000 */
30 mjames 4953
#define RTC_ALRMAR_DU                        RTC_ALRMAR_DU_Msk                 
50 mjames 4954
#define RTC_ALRMAR_DU_0                      (0x1UL << RTC_ALRMAR_DU_Pos)       /*!< 0x01000000 */
4955
#define RTC_ALRMAR_DU_1                      (0x2UL << RTC_ALRMAR_DU_Pos)       /*!< 0x02000000 */
4956
#define RTC_ALRMAR_DU_2                      (0x4UL << RTC_ALRMAR_DU_Pos)       /*!< 0x04000000 */
4957
#define RTC_ALRMAR_DU_3                      (0x8UL << RTC_ALRMAR_DU_Pos)       /*!< 0x08000000 */
30 mjames 4958
#define RTC_ALRMAR_MSK3_Pos                  (23U)                             
50 mjames 4959
#define RTC_ALRMAR_MSK3_Msk                  (0x1UL << RTC_ALRMAR_MSK3_Pos)     /*!< 0x00800000 */
30 mjames 4960
#define RTC_ALRMAR_MSK3                      RTC_ALRMAR_MSK3_Msk               
4961
#define RTC_ALRMAR_PM_Pos                    (22U)                             
50 mjames 4962
#define RTC_ALRMAR_PM_Msk                    (0x1UL << RTC_ALRMAR_PM_Pos)       /*!< 0x00400000 */
30 mjames 4963
#define RTC_ALRMAR_PM                        RTC_ALRMAR_PM_Msk                 
4964
#define RTC_ALRMAR_HT_Pos                    (20U)                             
50 mjames 4965
#define RTC_ALRMAR_HT_Msk                    (0x3UL << RTC_ALRMAR_HT_Pos)       /*!< 0x00300000 */
30 mjames 4966
#define RTC_ALRMAR_HT                        RTC_ALRMAR_HT_Msk                 
50 mjames 4967
#define RTC_ALRMAR_HT_0                      (0x1UL << RTC_ALRMAR_HT_Pos)       /*!< 0x00100000 */
4968
#define RTC_ALRMAR_HT_1                      (0x2UL << RTC_ALRMAR_HT_Pos)       /*!< 0x00200000 */
30 mjames 4969
#define RTC_ALRMAR_HU_Pos                    (16U)                             
50 mjames 4970
#define RTC_ALRMAR_HU_Msk                    (0xFUL << RTC_ALRMAR_HU_Pos)       /*!< 0x000F0000 */
30 mjames 4971
#define RTC_ALRMAR_HU                        RTC_ALRMAR_HU_Msk                 
50 mjames 4972
#define RTC_ALRMAR_HU_0                      (0x1UL << RTC_ALRMAR_HU_Pos)       /*!< 0x00010000 */
4973
#define RTC_ALRMAR_HU_1                      (0x2UL << RTC_ALRMAR_HU_Pos)       /*!< 0x00020000 */
4974
#define RTC_ALRMAR_HU_2                      (0x4UL << RTC_ALRMAR_HU_Pos)       /*!< 0x00040000 */
4975
#define RTC_ALRMAR_HU_3                      (0x8UL << RTC_ALRMAR_HU_Pos)       /*!< 0x00080000 */
30 mjames 4976
#define RTC_ALRMAR_MSK2_Pos                  (15U)                             
50 mjames 4977
#define RTC_ALRMAR_MSK2_Msk                  (0x1UL << RTC_ALRMAR_MSK2_Pos)     /*!< 0x00008000 */
30 mjames 4978
#define RTC_ALRMAR_MSK2                      RTC_ALRMAR_MSK2_Msk               
4979
#define RTC_ALRMAR_MNT_Pos                   (12U)                             
50 mjames 4980
#define RTC_ALRMAR_MNT_Msk                   (0x7UL << RTC_ALRMAR_MNT_Pos)      /*!< 0x00007000 */
30 mjames 4981
#define RTC_ALRMAR_MNT                       RTC_ALRMAR_MNT_Msk                
50 mjames 4982
#define RTC_ALRMAR_MNT_0                     (0x1UL << RTC_ALRMAR_MNT_Pos)      /*!< 0x00001000 */
4983
#define RTC_ALRMAR_MNT_1                     (0x2UL << RTC_ALRMAR_MNT_Pos)      /*!< 0x00002000 */
4984
#define RTC_ALRMAR_MNT_2                     (0x4UL << RTC_ALRMAR_MNT_Pos)      /*!< 0x00004000 */
30 mjames 4985
#define RTC_ALRMAR_MNU_Pos                   (8U)                              
50 mjames 4986
#define RTC_ALRMAR_MNU_Msk                   (0xFUL << RTC_ALRMAR_MNU_Pos)      /*!< 0x00000F00 */
30 mjames 4987
#define RTC_ALRMAR_MNU                       RTC_ALRMAR_MNU_Msk                
50 mjames 4988
#define RTC_ALRMAR_MNU_0                     (0x1UL << RTC_ALRMAR_MNU_Pos)      /*!< 0x00000100 */
4989
#define RTC_ALRMAR_MNU_1                     (0x2UL << RTC_ALRMAR_MNU_Pos)      /*!< 0x00000200 */
4990
#define RTC_ALRMAR_MNU_2                     (0x4UL << RTC_ALRMAR_MNU_Pos)      /*!< 0x00000400 */
4991
#define RTC_ALRMAR_MNU_3                     (0x8UL << RTC_ALRMAR_MNU_Pos)      /*!< 0x00000800 */
30 mjames 4992
#define RTC_ALRMAR_MSK1_Pos                  (7U)                              
50 mjames 4993
#define RTC_ALRMAR_MSK1_Msk                  (0x1UL << RTC_ALRMAR_MSK1_Pos)     /*!< 0x00000080 */
30 mjames 4994
#define RTC_ALRMAR_MSK1                      RTC_ALRMAR_MSK1_Msk               
4995
#define RTC_ALRMAR_ST_Pos                    (4U)                              
50 mjames 4996
#define RTC_ALRMAR_ST_Msk                    (0x7UL << RTC_ALRMAR_ST_Pos)       /*!< 0x00000070 */
30 mjames 4997
#define RTC_ALRMAR_ST                        RTC_ALRMAR_ST_Msk                 
50 mjames 4998
#define RTC_ALRMAR_ST_0                      (0x1UL << RTC_ALRMAR_ST_Pos)       /*!< 0x00000010 */
4999
#define RTC_ALRMAR_ST_1                      (0x2UL << RTC_ALRMAR_ST_Pos)       /*!< 0x00000020 */
5000
#define RTC_ALRMAR_ST_2                      (0x4UL << RTC_ALRMAR_ST_Pos)       /*!< 0x00000040 */
30 mjames 5001
#define RTC_ALRMAR_SU_Pos                    (0U)                              
50 mjames 5002
#define RTC_ALRMAR_SU_Msk                    (0xFUL << RTC_ALRMAR_SU_Pos)       /*!< 0x0000000F */
30 mjames 5003
#define RTC_ALRMAR_SU                        RTC_ALRMAR_SU_Msk                 
50 mjames 5004
#define RTC_ALRMAR_SU_0                      (0x1UL << RTC_ALRMAR_SU_Pos)       /*!< 0x00000001 */
5005
#define RTC_ALRMAR_SU_1                      (0x2UL << RTC_ALRMAR_SU_Pos)       /*!< 0x00000002 */
5006
#define RTC_ALRMAR_SU_2                      (0x4UL << RTC_ALRMAR_SU_Pos)       /*!< 0x00000004 */
5007
#define RTC_ALRMAR_SU_3                      (0x8UL << RTC_ALRMAR_SU_Pos)       /*!< 0x00000008 */
30 mjames 5008
 
5009
/********************  Bits definition for RTC_ALRMBR register  ***************/
5010
#define RTC_ALRMBR_MSK4_Pos                  (31U)                             
50 mjames 5011
#define RTC_ALRMBR_MSK4_Msk                  (0x1UL << RTC_ALRMBR_MSK4_Pos)     /*!< 0x80000000 */
30 mjames 5012
#define RTC_ALRMBR_MSK4                      RTC_ALRMBR_MSK4_Msk               
5013
#define RTC_ALRMBR_WDSEL_Pos                 (30U)                             
50 mjames 5014
#define RTC_ALRMBR_WDSEL_Msk                 (0x1UL << RTC_ALRMBR_WDSEL_Pos)    /*!< 0x40000000 */
30 mjames 5015
#define RTC_ALRMBR_WDSEL                     RTC_ALRMBR_WDSEL_Msk              
5016
#define RTC_ALRMBR_DT_Pos                    (28U)                             
50 mjames 5017
#define RTC_ALRMBR_DT_Msk                    (0x3UL << RTC_ALRMBR_DT_Pos)       /*!< 0x30000000 */
30 mjames 5018
#define RTC_ALRMBR_DT                        RTC_ALRMBR_DT_Msk                 
50 mjames 5019
#define RTC_ALRMBR_DT_0                      (0x1UL << RTC_ALRMBR_DT_Pos)       /*!< 0x10000000 */
5020
#define RTC_ALRMBR_DT_1                      (0x2UL << RTC_ALRMBR_DT_Pos)       /*!< 0x20000000 */
30 mjames 5021
#define RTC_ALRMBR_DU_Pos                    (24U)                             
50 mjames 5022
#define RTC_ALRMBR_DU_Msk                    (0xFUL << RTC_ALRMBR_DU_Pos)       /*!< 0x0F000000 */
30 mjames 5023
#define RTC_ALRMBR_DU                        RTC_ALRMBR_DU_Msk                 
50 mjames 5024
#define RTC_ALRMBR_DU_0                      (0x1UL << RTC_ALRMBR_DU_Pos)       /*!< 0x01000000 */
5025
#define RTC_ALRMBR_DU_1                      (0x2UL << RTC_ALRMBR_DU_Pos)       /*!< 0x02000000 */
5026
#define RTC_ALRMBR_DU_2                      (0x4UL << RTC_ALRMBR_DU_Pos)       /*!< 0x04000000 */
5027
#define RTC_ALRMBR_DU_3                      (0x8UL << RTC_ALRMBR_DU_Pos)       /*!< 0x08000000 */
30 mjames 5028
#define RTC_ALRMBR_MSK3_Pos                  (23U)                             
50 mjames 5029
#define RTC_ALRMBR_MSK3_Msk                  (0x1UL << RTC_ALRMBR_MSK3_Pos)     /*!< 0x00800000 */
30 mjames 5030
#define RTC_ALRMBR_MSK3                      RTC_ALRMBR_MSK3_Msk               
5031
#define RTC_ALRMBR_PM_Pos                    (22U)                             
50 mjames 5032
#define RTC_ALRMBR_PM_Msk                    (0x1UL << RTC_ALRMBR_PM_Pos)       /*!< 0x00400000 */
30 mjames 5033
#define RTC_ALRMBR_PM                        RTC_ALRMBR_PM_Msk                 
5034
#define RTC_ALRMBR_HT_Pos                    (20U)                             
50 mjames 5035
#define RTC_ALRMBR_HT_Msk                    (0x3UL << RTC_ALRMBR_HT_Pos)       /*!< 0x00300000 */
30 mjames 5036
#define RTC_ALRMBR_HT                        RTC_ALRMBR_HT_Msk                 
50 mjames 5037
#define RTC_ALRMBR_HT_0                      (0x1UL << RTC_ALRMBR_HT_Pos)       /*!< 0x00100000 */
5038
#define RTC_ALRMBR_HT_1                      (0x2UL << RTC_ALRMBR_HT_Pos)       /*!< 0x00200000 */
30 mjames 5039
#define RTC_ALRMBR_HU_Pos                    (16U)                             
50 mjames 5040
#define RTC_ALRMBR_HU_Msk                    (0xFUL << RTC_ALRMBR_HU_Pos)       /*!< 0x000F0000 */
30 mjames 5041
#define RTC_ALRMBR_HU                        RTC_ALRMBR_HU_Msk                 
50 mjames 5042
#define RTC_ALRMBR_HU_0                      (0x1UL << RTC_ALRMBR_HU_Pos)       /*!< 0x00010000 */
5043
#define RTC_ALRMBR_HU_1                      (0x2UL << RTC_ALRMBR_HU_Pos)       /*!< 0x00020000 */
5044
#define RTC_ALRMBR_HU_2                      (0x4UL << RTC_ALRMBR_HU_Pos)       /*!< 0x00040000 */
5045
#define RTC_ALRMBR_HU_3                      (0x8UL << RTC_ALRMBR_HU_Pos)       /*!< 0x00080000 */
30 mjames 5046
#define RTC_ALRMBR_MSK2_Pos                  (15U)                             
50 mjames 5047
#define RTC_ALRMBR_MSK2_Msk                  (0x1UL << RTC_ALRMBR_MSK2_Pos)     /*!< 0x00008000 */
30 mjames 5048
#define RTC_ALRMBR_MSK2                      RTC_ALRMBR_MSK2_Msk               
5049
#define RTC_ALRMBR_MNT_Pos                   (12U)                             
50 mjames 5050
#define RTC_ALRMBR_MNT_Msk                   (0x7UL << RTC_ALRMBR_MNT_Pos)      /*!< 0x00007000 */
30 mjames 5051
#define RTC_ALRMBR_MNT                       RTC_ALRMBR_MNT_Msk                
50 mjames 5052
#define RTC_ALRMBR_MNT_0                     (0x1UL << RTC_ALRMBR_MNT_Pos)      /*!< 0x00001000 */
5053
#define RTC_ALRMBR_MNT_1                     (0x2UL << RTC_ALRMBR_MNT_Pos)      /*!< 0x00002000 */
5054
#define RTC_ALRMBR_MNT_2                     (0x4UL << RTC_ALRMBR_MNT_Pos)      /*!< 0x00004000 */
30 mjames 5055
#define RTC_ALRMBR_MNU_Pos                   (8U)                              
50 mjames 5056
#define RTC_ALRMBR_MNU_Msk                   (0xFUL << RTC_ALRMBR_MNU_Pos)      /*!< 0x00000F00 */
30 mjames 5057
#define RTC_ALRMBR_MNU                       RTC_ALRMBR_MNU_Msk                
50 mjames 5058
#define RTC_ALRMBR_MNU_0                     (0x1UL << RTC_ALRMBR_MNU_Pos)      /*!< 0x00000100 */
5059
#define RTC_ALRMBR_MNU_1                     (0x2UL << RTC_ALRMBR_MNU_Pos)      /*!< 0x00000200 */
5060
#define RTC_ALRMBR_MNU_2                     (0x4UL << RTC_ALRMBR_MNU_Pos)      /*!< 0x00000400 */
5061
#define RTC_ALRMBR_MNU_3                     (0x8UL << RTC_ALRMBR_MNU_Pos)      /*!< 0x00000800 */
30 mjames 5062
#define RTC_ALRMBR_MSK1_Pos                  (7U)                              
50 mjames 5063
#define RTC_ALRMBR_MSK1_Msk                  (0x1UL << RTC_ALRMBR_MSK1_Pos)     /*!< 0x00000080 */
30 mjames 5064
#define RTC_ALRMBR_MSK1                      RTC_ALRMBR_MSK1_Msk               
5065
#define RTC_ALRMBR_ST_Pos                    (4U)                              
50 mjames 5066
#define RTC_ALRMBR_ST_Msk                    (0x7UL << RTC_ALRMBR_ST_Pos)       /*!< 0x00000070 */
30 mjames 5067
#define RTC_ALRMBR_ST                        RTC_ALRMBR_ST_Msk                 
50 mjames 5068
#define RTC_ALRMBR_ST_0                      (0x1UL << RTC_ALRMBR_ST_Pos)       /*!< 0x00000010 */
5069
#define RTC_ALRMBR_ST_1                      (0x2UL << RTC_ALRMBR_ST_Pos)       /*!< 0x00000020 */
5070
#define RTC_ALRMBR_ST_2                      (0x4UL << RTC_ALRMBR_ST_Pos)       /*!< 0x00000040 */
30 mjames 5071
#define RTC_ALRMBR_SU_Pos                    (0U)                              
50 mjames 5072
#define RTC_ALRMBR_SU_Msk                    (0xFUL << RTC_ALRMBR_SU_Pos)       /*!< 0x0000000F */
30 mjames 5073
#define RTC_ALRMBR_SU                        RTC_ALRMBR_SU_Msk                 
50 mjames 5074
#define RTC_ALRMBR_SU_0                      (0x1UL << RTC_ALRMBR_SU_Pos)       /*!< 0x00000001 */
5075
#define RTC_ALRMBR_SU_1                      (0x2UL << RTC_ALRMBR_SU_Pos)       /*!< 0x00000002 */
5076
#define RTC_ALRMBR_SU_2                      (0x4UL << RTC_ALRMBR_SU_Pos)       /*!< 0x00000004 */
5077
#define RTC_ALRMBR_SU_3                      (0x8UL << RTC_ALRMBR_SU_Pos)       /*!< 0x00000008 */
30 mjames 5078
 
5079
/********************  Bits definition for RTC_WPR register  ******************/
5080
#define RTC_WPR_KEY_Pos                      (0U)                              
50 mjames 5081
#define RTC_WPR_KEY_Msk                      (0xFFUL << RTC_WPR_KEY_Pos)        /*!< 0x000000FF */
30 mjames 5082
#define RTC_WPR_KEY                          RTC_WPR_KEY_Msk                   
5083
 
5084
/********************  Bits definition for RTC_SSR register  ******************/
5085
#define RTC_SSR_SS_Pos                       (0U)                              
50 mjames 5086
#define RTC_SSR_SS_Msk                       (0xFFFFUL << RTC_SSR_SS_Pos)       /*!< 0x0000FFFF */
30 mjames 5087
#define RTC_SSR_SS                           RTC_SSR_SS_Msk                    
5088
 
5089
/********************  Bits definition for RTC_SHIFTR register  ***************/
5090
#define RTC_SHIFTR_SUBFS_Pos                 (0U)                              
50 mjames 5091
#define RTC_SHIFTR_SUBFS_Msk                 (0x7FFFUL << RTC_SHIFTR_SUBFS_Pos) /*!< 0x00007FFF */
30 mjames 5092
#define RTC_SHIFTR_SUBFS                     RTC_SHIFTR_SUBFS_Msk              
5093
#define RTC_SHIFTR_ADD1S_Pos                 (31U)                             
50 mjames 5094
#define RTC_SHIFTR_ADD1S_Msk                 (0x1UL << RTC_SHIFTR_ADD1S_Pos)    /*!< 0x80000000 */
30 mjames 5095
#define RTC_SHIFTR_ADD1S                     RTC_SHIFTR_ADD1S_Msk              
5096
 
5097
/********************  Bits definition for RTC_TSTR register  *****************/
5098
#define RTC_TSTR_PM_Pos                      (22U)                             
50 mjames 5099
#define RTC_TSTR_PM_Msk                      (0x1UL << RTC_TSTR_PM_Pos)         /*!< 0x00400000 */
30 mjames 5100
#define RTC_TSTR_PM                          RTC_TSTR_PM_Msk                   
5101
#define RTC_TSTR_HT_Pos                      (20U)                             
50 mjames 5102
#define RTC_TSTR_HT_Msk                      (0x3UL << RTC_TSTR_HT_Pos)         /*!< 0x00300000 */
30 mjames 5103
#define RTC_TSTR_HT                          RTC_TSTR_HT_Msk                   
50 mjames 5104
#define RTC_TSTR_HT_0                        (0x1UL << RTC_TSTR_HT_Pos)         /*!< 0x00100000 */
5105
#define RTC_TSTR_HT_1                        (0x2UL << RTC_TSTR_HT_Pos)         /*!< 0x00200000 */
30 mjames 5106
#define RTC_TSTR_HU_Pos                      (16U)                             
50 mjames 5107
#define RTC_TSTR_HU_Msk                      (0xFUL << RTC_TSTR_HU_Pos)         /*!< 0x000F0000 */
30 mjames 5108
#define RTC_TSTR_HU                          RTC_TSTR_HU_Msk                   
50 mjames 5109
#define RTC_TSTR_HU_0                        (0x1UL << RTC_TSTR_HU_Pos)         /*!< 0x00010000 */
5110
#define RTC_TSTR_HU_1                        (0x2UL << RTC_TSTR_HU_Pos)         /*!< 0x00020000 */
5111
#define RTC_TSTR_HU_2                        (0x4UL << RTC_TSTR_HU_Pos)         /*!< 0x00040000 */
5112
#define RTC_TSTR_HU_3                        (0x8UL << RTC_TSTR_HU_Pos)         /*!< 0x00080000 */
30 mjames 5113
#define RTC_TSTR_MNT_Pos                     (12U)                             
50 mjames 5114
#define RTC_TSTR_MNT_Msk                     (0x7UL << RTC_TSTR_MNT_Pos)        /*!< 0x00007000 */
30 mjames 5115
#define RTC_TSTR_MNT                         RTC_TSTR_MNT_Msk                  
50 mjames 5116
#define RTC_TSTR_MNT_0                       (0x1UL << RTC_TSTR_MNT_Pos)        /*!< 0x00001000 */
5117
#define RTC_TSTR_MNT_1                       (0x2UL << RTC_TSTR_MNT_Pos)        /*!< 0x00002000 */
5118
#define RTC_TSTR_MNT_2                       (0x4UL << RTC_TSTR_MNT_Pos)        /*!< 0x00004000 */
30 mjames 5119
#define RTC_TSTR_MNU_Pos                     (8U)                              
50 mjames 5120
#define RTC_TSTR_MNU_Msk                     (0xFUL << RTC_TSTR_MNU_Pos)        /*!< 0x00000F00 */
30 mjames 5121
#define RTC_TSTR_MNU                         RTC_TSTR_MNU_Msk                  
50 mjames 5122
#define RTC_TSTR_MNU_0                       (0x1UL << RTC_TSTR_MNU_Pos)        /*!< 0x00000100 */
5123
#define RTC_TSTR_MNU_1                       (0x2UL << RTC_TSTR_MNU_Pos)        /*!< 0x00000200 */
5124
#define RTC_TSTR_MNU_2                       (0x4UL << RTC_TSTR_MNU_Pos)        /*!< 0x00000400 */
5125
#define RTC_TSTR_MNU_3                       (0x8UL << RTC_TSTR_MNU_Pos)        /*!< 0x00000800 */
30 mjames 5126
#define RTC_TSTR_ST_Pos                      (4U)                              
50 mjames 5127
#define RTC_TSTR_ST_Msk                      (0x7UL << RTC_TSTR_ST_Pos)         /*!< 0x00000070 */
30 mjames 5128
#define RTC_TSTR_ST                          RTC_TSTR_ST_Msk                   
50 mjames 5129
#define RTC_TSTR_ST_0                        (0x1UL << RTC_TSTR_ST_Pos)         /*!< 0x00000010 */
5130
#define RTC_TSTR_ST_1                        (0x2UL << RTC_TSTR_ST_Pos)         /*!< 0x00000020 */
5131
#define RTC_TSTR_ST_2                        (0x4UL << RTC_TSTR_ST_Pos)         /*!< 0x00000040 */
30 mjames 5132
#define RTC_TSTR_SU_Pos                      (0U)                              
50 mjames 5133
#define RTC_TSTR_SU_Msk                      (0xFUL << RTC_TSTR_SU_Pos)         /*!< 0x0000000F */
30 mjames 5134
#define RTC_TSTR_SU                          RTC_TSTR_SU_Msk                   
50 mjames 5135
#define RTC_TSTR_SU_0                        (0x1UL << RTC_TSTR_SU_Pos)         /*!< 0x00000001 */
5136
#define RTC_TSTR_SU_1                        (0x2UL << RTC_TSTR_SU_Pos)         /*!< 0x00000002 */
5137
#define RTC_TSTR_SU_2                        (0x4UL << RTC_TSTR_SU_Pos)         /*!< 0x00000004 */
5138
#define RTC_TSTR_SU_3                        (0x8UL << RTC_TSTR_SU_Pos)         /*!< 0x00000008 */
30 mjames 5139
 
5140
/********************  Bits definition for RTC_TSDR register  *****************/
5141
#define RTC_TSDR_WDU_Pos                     (13U)                             
50 mjames 5142
#define RTC_TSDR_WDU_Msk                     (0x7UL << RTC_TSDR_WDU_Pos)        /*!< 0x0000E000 */
30 mjames 5143
#define RTC_TSDR_WDU                         RTC_TSDR_WDU_Msk                  
50 mjames 5144
#define RTC_TSDR_WDU_0                       (0x1UL << RTC_TSDR_WDU_Pos)        /*!< 0x00002000 */
5145
#define RTC_TSDR_WDU_1                       (0x2UL << RTC_TSDR_WDU_Pos)        /*!< 0x00004000 */
5146
#define RTC_TSDR_WDU_2                       (0x4UL << RTC_TSDR_WDU_Pos)        /*!< 0x00008000 */
30 mjames 5147
#define RTC_TSDR_MT_Pos                      (12U)                             
50 mjames 5148
#define RTC_TSDR_MT_Msk                      (0x1UL << RTC_TSDR_MT_Pos)         /*!< 0x00001000 */
30 mjames 5149
#define RTC_TSDR_MT                          RTC_TSDR_MT_Msk                   
5150
#define RTC_TSDR_MU_Pos                      (8U)                              
50 mjames 5151
#define RTC_TSDR_MU_Msk                      (0xFUL << RTC_TSDR_MU_Pos)         /*!< 0x00000F00 */
30 mjames 5152
#define RTC_TSDR_MU                          RTC_TSDR_MU_Msk                   
50 mjames 5153
#define RTC_TSDR_MU_0                        (0x1UL << RTC_TSDR_MU_Pos)         /*!< 0x00000100 */
5154
#define RTC_TSDR_MU_1                        (0x2UL << RTC_TSDR_MU_Pos)         /*!< 0x00000200 */
5155
#define RTC_TSDR_MU_2                        (0x4UL << RTC_TSDR_MU_Pos)         /*!< 0x00000400 */
5156
#define RTC_TSDR_MU_3                        (0x8UL << RTC_TSDR_MU_Pos)         /*!< 0x00000800 */
30 mjames 5157
#define RTC_TSDR_DT_Pos                      (4U)                              
50 mjames 5158
#define RTC_TSDR_DT_Msk                      (0x3UL << RTC_TSDR_DT_Pos)         /*!< 0x00000030 */
30 mjames 5159
#define RTC_TSDR_DT                          RTC_TSDR_DT_Msk                   
50 mjames 5160
#define RTC_TSDR_DT_0                        (0x1UL << RTC_TSDR_DT_Pos)         /*!< 0x00000010 */
5161
#define RTC_TSDR_DT_1                        (0x2UL << RTC_TSDR_DT_Pos)         /*!< 0x00000020 */
30 mjames 5162
#define RTC_TSDR_DU_Pos                      (0U)                              
50 mjames 5163
#define RTC_TSDR_DU_Msk                      (0xFUL << RTC_TSDR_DU_Pos)         /*!< 0x0000000F */
30 mjames 5164
#define RTC_TSDR_DU                          RTC_TSDR_DU_Msk                   
50 mjames 5165
#define RTC_TSDR_DU_0                        (0x1UL << RTC_TSDR_DU_Pos)         /*!< 0x00000001 */
5166
#define RTC_TSDR_DU_1                        (0x2UL << RTC_TSDR_DU_Pos)         /*!< 0x00000002 */
5167
#define RTC_TSDR_DU_2                        (0x4UL << RTC_TSDR_DU_Pos)         /*!< 0x00000004 */
5168
#define RTC_TSDR_DU_3                        (0x8UL << RTC_TSDR_DU_Pos)         /*!< 0x00000008 */
30 mjames 5169
 
5170
/********************  Bits definition for RTC_TSSSR register  ****************/
5171
#define RTC_TSSSR_SS_Pos                     (0U)                              
50 mjames 5172
#define RTC_TSSSR_SS_Msk                     (0xFFFFUL << RTC_TSSSR_SS_Pos)     /*!< 0x0000FFFF */
30 mjames 5173
#define RTC_TSSSR_SS                         RTC_TSSSR_SS_Msk                  
5174
 
5175
/********************  Bits definition for RTC_CAL register  *****************/
5176
#define RTC_CALR_CALP_Pos                    (15U)                             
50 mjames 5177
#define RTC_CALR_CALP_Msk                    (0x1UL << RTC_CALR_CALP_Pos)       /*!< 0x00008000 */
30 mjames 5178
#define RTC_CALR_CALP                        RTC_CALR_CALP_Msk                 
5179
#define RTC_CALR_CALW8_Pos                   (14U)                             
50 mjames 5180
#define RTC_CALR_CALW8_Msk                   (0x1UL << RTC_CALR_CALW8_Pos)      /*!< 0x00004000 */
30 mjames 5181
#define RTC_CALR_CALW8                       RTC_CALR_CALW8_Msk                
5182
#define RTC_CALR_CALW16_Pos                  (13U)                             
50 mjames 5183
#define RTC_CALR_CALW16_Msk                  (0x1UL << RTC_CALR_CALW16_Pos)     /*!< 0x00002000 */
30 mjames 5184
#define RTC_CALR_CALW16                      RTC_CALR_CALW16_Msk               
5185
#define RTC_CALR_CALM_Pos                    (0U)                              
50 mjames 5186
#define RTC_CALR_CALM_Msk                    (0x1FFUL << RTC_CALR_CALM_Pos)     /*!< 0x000001FF */
30 mjames 5187
#define RTC_CALR_CALM                        RTC_CALR_CALM_Msk                 
50 mjames 5188
#define RTC_CALR_CALM_0                      (0x001UL << RTC_CALR_CALM_Pos)     /*!< 0x00000001 */
5189
#define RTC_CALR_CALM_1                      (0x002UL << RTC_CALR_CALM_Pos)     /*!< 0x00000002 */
5190
#define RTC_CALR_CALM_2                      (0x004UL << RTC_CALR_CALM_Pos)     /*!< 0x00000004 */
5191
#define RTC_CALR_CALM_3                      (0x008UL << RTC_CALR_CALM_Pos)     /*!< 0x00000008 */
5192
#define RTC_CALR_CALM_4                      (0x010UL << RTC_CALR_CALM_Pos)     /*!< 0x00000010 */
5193
#define RTC_CALR_CALM_5                      (0x020UL << RTC_CALR_CALM_Pos)     /*!< 0x00000020 */
5194
#define RTC_CALR_CALM_6                      (0x040UL << RTC_CALR_CALM_Pos)     /*!< 0x00000040 */
5195
#define RTC_CALR_CALM_7                      (0x080UL << RTC_CALR_CALM_Pos)     /*!< 0x00000080 */
5196
#define RTC_CALR_CALM_8                      (0x100UL << RTC_CALR_CALM_Pos)     /*!< 0x00000100 */
30 mjames 5197
 
5198
/********************  Bits definition for RTC_TAFCR register  ****************/
5199
#define RTC_TAFCR_ALARMOUTTYPE_Pos           (18U)                             
50 mjames 5200
#define RTC_TAFCR_ALARMOUTTYPE_Msk           (0x1UL << RTC_TAFCR_ALARMOUTTYPE_Pos) /*!< 0x00040000 */
30 mjames 5201
#define RTC_TAFCR_ALARMOUTTYPE               RTC_TAFCR_ALARMOUTTYPE_Msk        
5202
#define RTC_TAFCR_TAMPPUDIS_Pos              (15U)                             
50 mjames 5203
#define RTC_TAFCR_TAMPPUDIS_Msk              (0x1UL << RTC_TAFCR_TAMPPUDIS_Pos) /*!< 0x00008000 */
30 mjames 5204
#define RTC_TAFCR_TAMPPUDIS                  RTC_TAFCR_TAMPPUDIS_Msk           
5205
#define RTC_TAFCR_TAMPPRCH_Pos               (13U)                             
50 mjames 5206
#define RTC_TAFCR_TAMPPRCH_Msk               (0x3UL << RTC_TAFCR_TAMPPRCH_Pos)  /*!< 0x00006000 */
30 mjames 5207
#define RTC_TAFCR_TAMPPRCH                   RTC_TAFCR_TAMPPRCH_Msk            
50 mjames 5208
#define RTC_TAFCR_TAMPPRCH_0                 (0x1UL << RTC_TAFCR_TAMPPRCH_Pos)  /*!< 0x00002000 */
5209
#define RTC_TAFCR_TAMPPRCH_1                 (0x2UL << RTC_TAFCR_TAMPPRCH_Pos)  /*!< 0x00004000 */
30 mjames 5210
#define RTC_TAFCR_TAMPFLT_Pos                (11U)                             
50 mjames 5211
#define RTC_TAFCR_TAMPFLT_Msk                (0x3UL << RTC_TAFCR_TAMPFLT_Pos)   /*!< 0x00001800 */
30 mjames 5212
#define RTC_TAFCR_TAMPFLT                    RTC_TAFCR_TAMPFLT_Msk             
50 mjames 5213
#define RTC_TAFCR_TAMPFLT_0                  (0x1UL << RTC_TAFCR_TAMPFLT_Pos)   /*!< 0x00000800 */
5214
#define RTC_TAFCR_TAMPFLT_1                  (0x2UL << RTC_TAFCR_TAMPFLT_Pos)   /*!< 0x00001000 */
30 mjames 5215
#define RTC_TAFCR_TAMPFREQ_Pos               (8U)                              
50 mjames 5216
#define RTC_TAFCR_TAMPFREQ_Msk               (0x7UL << RTC_TAFCR_TAMPFREQ_Pos)  /*!< 0x00000700 */
30 mjames 5217
#define RTC_TAFCR_TAMPFREQ                   RTC_TAFCR_TAMPFREQ_Msk            
50 mjames 5218
#define RTC_TAFCR_TAMPFREQ_0                 (0x1UL << RTC_TAFCR_TAMPFREQ_Pos)  /*!< 0x00000100 */
5219
#define RTC_TAFCR_TAMPFREQ_1                 (0x2UL << RTC_TAFCR_TAMPFREQ_Pos)  /*!< 0x00000200 */
5220
#define RTC_TAFCR_TAMPFREQ_2                 (0x4UL << RTC_TAFCR_TAMPFREQ_Pos)  /*!< 0x00000400 */
30 mjames 5221
#define RTC_TAFCR_TAMPTS_Pos                 (7U)                              
50 mjames 5222
#define RTC_TAFCR_TAMPTS_Msk                 (0x1UL << RTC_TAFCR_TAMPTS_Pos)    /*!< 0x00000080 */
30 mjames 5223
#define RTC_TAFCR_TAMPTS                     RTC_TAFCR_TAMPTS_Msk              
5224
#define RTC_TAFCR_TAMP3TRG_Pos               (6U)                              
50 mjames 5225
#define RTC_TAFCR_TAMP3TRG_Msk               (0x1UL << RTC_TAFCR_TAMP3TRG_Pos)  /*!< 0x00000040 */
30 mjames 5226
#define RTC_TAFCR_TAMP3TRG                   RTC_TAFCR_TAMP3TRG_Msk            
5227
#define RTC_TAFCR_TAMP3E_Pos                 (5U)                              
50 mjames 5228
#define RTC_TAFCR_TAMP3E_Msk                 (0x1UL << RTC_TAFCR_TAMP3E_Pos)    /*!< 0x00000020 */
30 mjames 5229
#define RTC_TAFCR_TAMP3E                     RTC_TAFCR_TAMP3E_Msk              
5230
#define RTC_TAFCR_TAMP2TRG_Pos               (4U)                              
50 mjames 5231
#define RTC_TAFCR_TAMP2TRG_Msk               (0x1UL << RTC_TAFCR_TAMP2TRG_Pos)  /*!< 0x00000010 */
30 mjames 5232
#define RTC_TAFCR_TAMP2TRG                   RTC_TAFCR_TAMP2TRG_Msk            
5233
#define RTC_TAFCR_TAMP2E_Pos                 (3U)                              
50 mjames 5234
#define RTC_TAFCR_TAMP2E_Msk                 (0x1UL << RTC_TAFCR_TAMP2E_Pos)    /*!< 0x00000008 */
30 mjames 5235
#define RTC_TAFCR_TAMP2E                     RTC_TAFCR_TAMP2E_Msk              
5236
#define RTC_TAFCR_TAMPIE_Pos                 (2U)                              
50 mjames 5237
#define RTC_TAFCR_TAMPIE_Msk                 (0x1UL << RTC_TAFCR_TAMPIE_Pos)    /*!< 0x00000004 */
30 mjames 5238
#define RTC_TAFCR_TAMPIE                     RTC_TAFCR_TAMPIE_Msk              
5239
#define RTC_TAFCR_TAMP1TRG_Pos               (1U)                              
50 mjames 5240
#define RTC_TAFCR_TAMP1TRG_Msk               (0x1UL << RTC_TAFCR_TAMP1TRG_Pos)  /*!< 0x00000002 */
30 mjames 5241
#define RTC_TAFCR_TAMP1TRG                   RTC_TAFCR_TAMP1TRG_Msk            
5242
#define RTC_TAFCR_TAMP1E_Pos                 (0U)                              
50 mjames 5243
#define RTC_TAFCR_TAMP1E_Msk                 (0x1UL << RTC_TAFCR_TAMP1E_Pos)    /*!< 0x00000001 */
30 mjames 5244
#define RTC_TAFCR_TAMP1E                     RTC_TAFCR_TAMP1E_Msk              
5245
 
5246
/********************  Bits definition for RTC_ALRMASSR register  *************/
5247
#define RTC_ALRMASSR_MASKSS_Pos              (24U)                             
50 mjames 5248
#define RTC_ALRMASSR_MASKSS_Msk              (0xFUL << RTC_ALRMASSR_MASKSS_Pos) /*!< 0x0F000000 */
30 mjames 5249
#define RTC_ALRMASSR_MASKSS                  RTC_ALRMASSR_MASKSS_Msk           
50 mjames 5250
#define RTC_ALRMASSR_MASKSS_0                (0x1UL << RTC_ALRMASSR_MASKSS_Pos) /*!< 0x01000000 */
5251
#define RTC_ALRMASSR_MASKSS_1                (0x2UL << RTC_ALRMASSR_MASKSS_Pos) /*!< 0x02000000 */
5252
#define RTC_ALRMASSR_MASKSS_2                (0x4UL << RTC_ALRMASSR_MASKSS_Pos) /*!< 0x04000000 */
5253
#define RTC_ALRMASSR_MASKSS_3                (0x8UL << RTC_ALRMASSR_MASKSS_Pos) /*!< 0x08000000 */
30 mjames 5254
#define RTC_ALRMASSR_SS_Pos                  (0U)                              
50 mjames 5255
#define RTC_ALRMASSR_SS_Msk                  (0x7FFFUL << RTC_ALRMASSR_SS_Pos)  /*!< 0x00007FFF */
30 mjames 5256
#define RTC_ALRMASSR_SS                      RTC_ALRMASSR_SS_Msk               
5257
 
5258
/********************  Bits definition for RTC_ALRMBSSR register  *************/
5259
#define RTC_ALRMBSSR_MASKSS_Pos              (24U)                             
50 mjames 5260
#define RTC_ALRMBSSR_MASKSS_Msk              (0xFUL << RTC_ALRMBSSR_MASKSS_Pos) /*!< 0x0F000000 */
30 mjames 5261
#define RTC_ALRMBSSR_MASKSS                  RTC_ALRMBSSR_MASKSS_Msk           
50 mjames 5262
#define RTC_ALRMBSSR_MASKSS_0                (0x1UL << RTC_ALRMBSSR_MASKSS_Pos) /*!< 0x01000000 */
5263
#define RTC_ALRMBSSR_MASKSS_1                (0x2UL << RTC_ALRMBSSR_MASKSS_Pos) /*!< 0x02000000 */
5264
#define RTC_ALRMBSSR_MASKSS_2                (0x4UL << RTC_ALRMBSSR_MASKSS_Pos) /*!< 0x04000000 */
5265
#define RTC_ALRMBSSR_MASKSS_3                (0x8UL << RTC_ALRMBSSR_MASKSS_Pos) /*!< 0x08000000 */
30 mjames 5266
#define RTC_ALRMBSSR_SS_Pos                  (0U)                              
50 mjames 5267
#define RTC_ALRMBSSR_SS_Msk                  (0x7FFFUL << RTC_ALRMBSSR_SS_Pos)  /*!< 0x00007FFF */
30 mjames 5268
#define RTC_ALRMBSSR_SS                      RTC_ALRMBSSR_SS_Msk               
5269
 
5270
/********************  Bits definition for RTC_BKP0R register  ****************/
5271
#define RTC_BKP0R_Pos                        (0U)                              
50 mjames 5272
#define RTC_BKP0R_Msk                        (0xFFFFFFFFUL << RTC_BKP0R_Pos)    /*!< 0xFFFFFFFF */
30 mjames 5273
#define RTC_BKP0R                            RTC_BKP0R_Msk                     
5274
 
5275
/********************  Bits definition for RTC_BKP1R register  ****************/
5276
#define RTC_BKP1R_Pos                        (0U)                              
50 mjames 5277
#define RTC_BKP1R_Msk                        (0xFFFFFFFFUL << RTC_BKP1R_Pos)    /*!< 0xFFFFFFFF */
30 mjames 5278
#define RTC_BKP1R                            RTC_BKP1R_Msk                     
5279
 
5280
/********************  Bits definition for RTC_BKP2R register  ****************/
5281
#define RTC_BKP2R_Pos                        (0U)                              
50 mjames 5282
#define RTC_BKP2R_Msk                        (0xFFFFFFFFUL << RTC_BKP2R_Pos)    /*!< 0xFFFFFFFF */
30 mjames 5283
#define RTC_BKP2R                            RTC_BKP2R_Msk                     
5284
 
5285
/********************  Bits definition for RTC_BKP3R register  ****************/
5286
#define RTC_BKP3R_Pos                        (0U)                              
50 mjames 5287
#define RTC_BKP3R_Msk                        (0xFFFFFFFFUL << RTC_BKP3R_Pos)    /*!< 0xFFFFFFFF */
30 mjames 5288
#define RTC_BKP3R                            RTC_BKP3R_Msk                     
5289
 
5290
/********************  Bits definition for RTC_BKP4R register  ****************/
5291
#define RTC_BKP4R_Pos                        (0U)                              
50 mjames 5292
#define RTC_BKP4R_Msk                        (0xFFFFFFFFUL << RTC_BKP4R_Pos)    /*!< 0xFFFFFFFF */
30 mjames 5293
#define RTC_BKP4R                            RTC_BKP4R_Msk                     
5294
 
5295
/********************  Bits definition for RTC_BKP5R register  ****************/
5296
#define RTC_BKP5R_Pos                        (0U)                              
50 mjames 5297
#define RTC_BKP5R_Msk                        (0xFFFFFFFFUL << RTC_BKP5R_Pos)    /*!< 0xFFFFFFFF */
30 mjames 5298
#define RTC_BKP5R                            RTC_BKP5R_Msk                     
5299
 
5300
/********************  Bits definition for RTC_BKP6R register  ****************/
5301
#define RTC_BKP6R_Pos                        (0U)                              
50 mjames 5302
#define RTC_BKP6R_Msk                        (0xFFFFFFFFUL << RTC_BKP6R_Pos)    /*!< 0xFFFFFFFF */
30 mjames 5303
#define RTC_BKP6R                            RTC_BKP6R_Msk                     
5304
 
5305
/********************  Bits definition for RTC_BKP7R register  ****************/
5306
#define RTC_BKP7R_Pos                        (0U)                              
50 mjames 5307
#define RTC_BKP7R_Msk                        (0xFFFFFFFFUL << RTC_BKP7R_Pos)    /*!< 0xFFFFFFFF */
30 mjames 5308
#define RTC_BKP7R                            RTC_BKP7R_Msk                     
5309
 
5310
/********************  Bits definition for RTC_BKP8R register  ****************/
5311
#define RTC_BKP8R_Pos                        (0U)                              
50 mjames 5312
#define RTC_BKP8R_Msk                        (0xFFFFFFFFUL << RTC_BKP8R_Pos)    /*!< 0xFFFFFFFF */
30 mjames 5313
#define RTC_BKP8R                            RTC_BKP8R_Msk                     
5314
 
5315
/********************  Bits definition for RTC_BKP9R register  ****************/
5316
#define RTC_BKP9R_Pos                        (0U)                              
50 mjames 5317
#define RTC_BKP9R_Msk                        (0xFFFFFFFFUL << RTC_BKP9R_Pos)    /*!< 0xFFFFFFFF */
30 mjames 5318
#define RTC_BKP9R                            RTC_BKP9R_Msk                     
5319
 
5320
/********************  Bits definition for RTC_BKP10R register  ***************/
5321
#define RTC_BKP10R_Pos                       (0U)                              
50 mjames 5322
#define RTC_BKP10R_Msk                       (0xFFFFFFFFUL << RTC_BKP10R_Pos)   /*!< 0xFFFFFFFF */
30 mjames 5323
#define RTC_BKP10R                           RTC_BKP10R_Msk                    
5324
 
5325
/********************  Bits definition for RTC_BKP11R register  ***************/
5326
#define RTC_BKP11R_Pos                       (0U)                              
50 mjames 5327
#define RTC_BKP11R_Msk                       (0xFFFFFFFFUL << RTC_BKP11R_Pos)   /*!< 0xFFFFFFFF */
30 mjames 5328
#define RTC_BKP11R                           RTC_BKP11R_Msk                    
5329
 
5330
/********************  Bits definition for RTC_BKP12R register  ***************/
5331
#define RTC_BKP12R_Pos                       (0U)                              
50 mjames 5332
#define RTC_BKP12R_Msk                       (0xFFFFFFFFUL << RTC_BKP12R_Pos)   /*!< 0xFFFFFFFF */
30 mjames 5333
#define RTC_BKP12R                           RTC_BKP12R_Msk                    
5334
 
5335
/********************  Bits definition for RTC_BKP13R register  ***************/
5336
#define RTC_BKP13R_Pos                       (0U)                              
50 mjames 5337
#define RTC_BKP13R_Msk                       (0xFFFFFFFFUL << RTC_BKP13R_Pos)   /*!< 0xFFFFFFFF */
30 mjames 5338
#define RTC_BKP13R                           RTC_BKP13R_Msk                    
5339
 
5340
/********************  Bits definition for RTC_BKP14R register  ***************/
5341
#define RTC_BKP14R_Pos                       (0U)                              
50 mjames 5342
#define RTC_BKP14R_Msk                       (0xFFFFFFFFUL << RTC_BKP14R_Pos)   /*!< 0xFFFFFFFF */
30 mjames 5343
#define RTC_BKP14R                           RTC_BKP14R_Msk                    
5344
 
5345
/********************  Bits definition for RTC_BKP15R register  ***************/
5346
#define RTC_BKP15R_Pos                       (0U)                              
50 mjames 5347
#define RTC_BKP15R_Msk                       (0xFFFFFFFFUL << RTC_BKP15R_Pos)   /*!< 0xFFFFFFFF */
30 mjames 5348
#define RTC_BKP15R                           RTC_BKP15R_Msk                    
5349
 
5350
/********************  Bits definition for RTC_BKP16R register  ***************/
5351
#define RTC_BKP16R_Pos                       (0U)                              
50 mjames 5352
#define RTC_BKP16R_Msk                       (0xFFFFFFFFUL << RTC_BKP16R_Pos)   /*!< 0xFFFFFFFF */
30 mjames 5353
#define RTC_BKP16R                           RTC_BKP16R_Msk                    
5354
 
5355
/********************  Bits definition for RTC_BKP17R register  ***************/
5356
#define RTC_BKP17R_Pos                       (0U)                              
50 mjames 5357
#define RTC_BKP17R_Msk                       (0xFFFFFFFFUL << RTC_BKP17R_Pos)   /*!< 0xFFFFFFFF */
30 mjames 5358
#define RTC_BKP17R                           RTC_BKP17R_Msk                    
5359
 
5360
/********************  Bits definition for RTC_BKP18R register  ***************/
5361
#define RTC_BKP18R_Pos                       (0U)                              
50 mjames 5362
#define RTC_BKP18R_Msk                       (0xFFFFFFFFUL << RTC_BKP18R_Pos)   /*!< 0xFFFFFFFF */
30 mjames 5363
#define RTC_BKP18R                           RTC_BKP18R_Msk                    
5364
 
5365
/********************  Bits definition for RTC_BKP19R register  ***************/
5366
#define RTC_BKP19R_Pos                       (0U)                              
50 mjames 5367
#define RTC_BKP19R_Msk                       (0xFFFFFFFFUL << RTC_BKP19R_Pos)   /*!< 0xFFFFFFFF */
30 mjames 5368
#define RTC_BKP19R                           RTC_BKP19R_Msk                    
5369
 
5370
/********************  Bits definition for RTC_BKP20R register  ***************/
5371
#define RTC_BKP20R_Pos                       (0U)                              
50 mjames 5372
#define RTC_BKP20R_Msk                       (0xFFFFFFFFUL << RTC_BKP20R_Pos)   /*!< 0xFFFFFFFF */
30 mjames 5373
#define RTC_BKP20R                           RTC_BKP20R_Msk                    
5374
 
5375
/********************  Bits definition for RTC_BKP21R register  ***************/
5376
#define RTC_BKP21R_Pos                       (0U)                              
50 mjames 5377
#define RTC_BKP21R_Msk                       (0xFFFFFFFFUL << RTC_BKP21R_Pos)   /*!< 0xFFFFFFFF */
30 mjames 5378
#define RTC_BKP21R                           RTC_BKP21R_Msk                    
5379
 
5380
/********************  Bits definition for RTC_BKP22R register  ***************/
5381
#define RTC_BKP22R_Pos                       (0U)                              
50 mjames 5382
#define RTC_BKP22R_Msk                       (0xFFFFFFFFUL << RTC_BKP22R_Pos)   /*!< 0xFFFFFFFF */
30 mjames 5383
#define RTC_BKP22R                           RTC_BKP22R_Msk                    
5384
 
5385
/********************  Bits definition for RTC_BKP23R register  ***************/
5386
#define RTC_BKP23R_Pos                       (0U)                              
50 mjames 5387
#define RTC_BKP23R_Msk                       (0xFFFFFFFFUL << RTC_BKP23R_Pos)   /*!< 0xFFFFFFFF */
30 mjames 5388
#define RTC_BKP23R                           RTC_BKP23R_Msk                    
5389
 
5390
/********************  Bits definition for RTC_BKP24R register  ***************/
5391
#define RTC_BKP24R_Pos                       (0U)                              
50 mjames 5392
#define RTC_BKP24R_Msk                       (0xFFFFFFFFUL << RTC_BKP24R_Pos)   /*!< 0xFFFFFFFF */
30 mjames 5393
#define RTC_BKP24R                           RTC_BKP24R_Msk                    
5394
 
5395
/********************  Bits definition for RTC_BKP25R register  ***************/
5396
#define RTC_BKP25R_Pos                       (0U)                              
50 mjames 5397
#define RTC_BKP25R_Msk                       (0xFFFFFFFFUL << RTC_BKP25R_Pos)   /*!< 0xFFFFFFFF */
30 mjames 5398
#define RTC_BKP25R                           RTC_BKP25R_Msk                    
5399
 
5400
/********************  Bits definition for RTC_BKP26R register  ***************/
5401
#define RTC_BKP26R_Pos                       (0U)                              
50 mjames 5402
#define RTC_BKP26R_Msk                       (0xFFFFFFFFUL << RTC_BKP26R_Pos)   /*!< 0xFFFFFFFF */
30 mjames 5403
#define RTC_BKP26R                           RTC_BKP26R_Msk                    
5404
 
5405
/********************  Bits definition for RTC_BKP27R register  ***************/
5406
#define RTC_BKP27R_Pos                       (0U)                              
50 mjames 5407
#define RTC_BKP27R_Msk                       (0xFFFFFFFFUL << RTC_BKP27R_Pos)   /*!< 0xFFFFFFFF */
30 mjames 5408
#define RTC_BKP27R                           RTC_BKP27R_Msk                    
5409
 
5410
/********************  Bits definition for RTC_BKP28R register  ***************/
5411
#define RTC_BKP28R_Pos                       (0U)                              
50 mjames 5412
#define RTC_BKP28R_Msk                       (0xFFFFFFFFUL << RTC_BKP28R_Pos)   /*!< 0xFFFFFFFF */
30 mjames 5413
#define RTC_BKP28R                           RTC_BKP28R_Msk                    
5414
 
5415
/********************  Bits definition for RTC_BKP29R register  ***************/
5416
#define RTC_BKP29R_Pos                       (0U)                              
50 mjames 5417
#define RTC_BKP29R_Msk                       (0xFFFFFFFFUL << RTC_BKP29R_Pos)   /*!< 0xFFFFFFFF */
30 mjames 5418
#define RTC_BKP29R                           RTC_BKP29R_Msk                    
5419
 
5420
/********************  Bits definition for RTC_BKP30R register  ***************/
5421
#define RTC_BKP30R_Pos                       (0U)                              
50 mjames 5422
#define RTC_BKP30R_Msk                       (0xFFFFFFFFUL << RTC_BKP30R_Pos)   /*!< 0xFFFFFFFF */
30 mjames 5423
#define RTC_BKP30R                           RTC_BKP30R_Msk                    
5424
 
5425
/********************  Bits definition for RTC_BKP31R register  ***************/
5426
#define RTC_BKP31R_Pos                       (0U)                              
50 mjames 5427
#define RTC_BKP31R_Msk                       (0xFFFFFFFFUL << RTC_BKP31R_Pos)   /*!< 0xFFFFFFFF */
30 mjames 5428
#define RTC_BKP31R                           RTC_BKP31R_Msk                    
5429
 
5430
/******************** Number of backup registers ******************************/
5431
#define RTC_BKP_NUMBER 32
5432
 
5433
/******************************************************************************/
5434
/*                                                                            */
5435
/*                     Serial Peripheral Interface (SPI)                      */
5436
/*                                                                            */
5437
/******************************************************************************/
5438
 
5439
/*
5440
 * @brief Specific device feature definitions (not present on all devices in the STM32F3 serie)
5441
 */
5442
#define SPI_I2S_SUPPORT    
5443
 
5444
/*******************  Bit definition for SPI_CR1 register  ********************/
5445
#define SPI_CR1_CPHA_Pos                    (0U)                               
50 mjames 5446
#define SPI_CR1_CPHA_Msk                    (0x1UL << SPI_CR1_CPHA_Pos)         /*!< 0x00000001 */
30 mjames 5447
#define SPI_CR1_CPHA                        SPI_CR1_CPHA_Msk                   /*!< Clock Phase */
5448
#define SPI_CR1_CPOL_Pos                    (1U)                               
50 mjames 5449
#define SPI_CR1_CPOL_Msk                    (0x1UL << SPI_CR1_CPOL_Pos)         /*!< 0x00000002 */
30 mjames 5450
#define SPI_CR1_CPOL                        SPI_CR1_CPOL_Msk                   /*!< Clock Polarity */
5451
#define SPI_CR1_MSTR_Pos                    (2U)                               
50 mjames 5452
#define SPI_CR1_MSTR_Msk                    (0x1UL << SPI_CR1_MSTR_Pos)         /*!< 0x00000004 */
30 mjames 5453
#define SPI_CR1_MSTR                        SPI_CR1_MSTR_Msk                   /*!< Master Selection */
5454
 
5455
#define SPI_CR1_BR_Pos                      (3U)                               
50 mjames 5456
#define SPI_CR1_BR_Msk                      (0x7UL << SPI_CR1_BR_Pos)           /*!< 0x00000038 */
30 mjames 5457
#define SPI_CR1_BR                          SPI_CR1_BR_Msk                     /*!< BR[2:0] bits (Baud Rate Control) */
50 mjames 5458
#define SPI_CR1_BR_0                        (0x1UL << SPI_CR1_BR_Pos)           /*!< 0x00000008 */
5459
#define SPI_CR1_BR_1                        (0x2UL << SPI_CR1_BR_Pos)           /*!< 0x00000010 */
5460
#define SPI_CR1_BR_2                        (0x4UL << SPI_CR1_BR_Pos)           /*!< 0x00000020 */
30 mjames 5461
 
5462
#define SPI_CR1_SPE_Pos                     (6U)                               
50 mjames 5463
#define SPI_CR1_SPE_Msk                     (0x1UL << SPI_CR1_SPE_Pos)          /*!< 0x00000040 */
30 mjames 5464
#define SPI_CR1_SPE                         SPI_CR1_SPE_Msk                    /*!< SPI Enable */
5465
#define SPI_CR1_LSBFIRST_Pos                (7U)                               
50 mjames 5466
#define SPI_CR1_LSBFIRST_Msk                (0x1UL << SPI_CR1_LSBFIRST_Pos)     /*!< 0x00000080 */
30 mjames 5467
#define SPI_CR1_LSBFIRST                    SPI_CR1_LSBFIRST_Msk               /*!< Frame Format */
5468
#define SPI_CR1_SSI_Pos                     (8U)                               
50 mjames 5469
#define SPI_CR1_SSI_Msk                     (0x1UL << SPI_CR1_SSI_Pos)          /*!< 0x00000100 */
30 mjames 5470
#define SPI_CR1_SSI                         SPI_CR1_SSI_Msk                    /*!< Internal slave select */
5471
#define SPI_CR1_SSM_Pos                     (9U)                               
50 mjames 5472
#define SPI_CR1_SSM_Msk                     (0x1UL << SPI_CR1_SSM_Pos)          /*!< 0x00000200 */
30 mjames 5473
#define SPI_CR1_SSM                         SPI_CR1_SSM_Msk                    /*!< Software slave management */
5474
#define SPI_CR1_RXONLY_Pos                  (10U)                              
50 mjames 5475
#define SPI_CR1_RXONLY_Msk                  (0x1UL << SPI_CR1_RXONLY_Pos)       /*!< 0x00000400 */
30 mjames 5476
#define SPI_CR1_RXONLY                      SPI_CR1_RXONLY_Msk                 /*!< Receive only */
5477
#define SPI_CR1_DFF_Pos                     (11U)                              
50 mjames 5478
#define SPI_CR1_DFF_Msk                     (0x1UL << SPI_CR1_DFF_Pos)          /*!< 0x00000800 */
30 mjames 5479
#define SPI_CR1_DFF                         SPI_CR1_DFF_Msk                    /*!< Data Frame Format */
5480
#define SPI_CR1_CRCNEXT_Pos                 (12U)                              
50 mjames 5481
#define SPI_CR1_CRCNEXT_Msk                 (0x1UL << SPI_CR1_CRCNEXT_Pos)      /*!< 0x00001000 */
30 mjames 5482
#define SPI_CR1_CRCNEXT                     SPI_CR1_CRCNEXT_Msk                /*!< Transmit CRC next */
5483
#define SPI_CR1_CRCEN_Pos                   (13U)                              
50 mjames 5484
#define SPI_CR1_CRCEN_Msk                   (0x1UL << SPI_CR1_CRCEN_Pos)        /*!< 0x00002000 */
30 mjames 5485
#define SPI_CR1_CRCEN                       SPI_CR1_CRCEN_Msk                  /*!< Hardware CRC calculation enable */
5486
#define SPI_CR1_BIDIOE_Pos                  (14U)                              
50 mjames 5487
#define SPI_CR1_BIDIOE_Msk                  (0x1UL << SPI_CR1_BIDIOE_Pos)       /*!< 0x00004000 */
30 mjames 5488
#define SPI_CR1_BIDIOE                      SPI_CR1_BIDIOE_Msk                 /*!< Output enable in bidirectional mode */
5489
#define SPI_CR1_BIDIMODE_Pos                (15U)                              
50 mjames 5490
#define SPI_CR1_BIDIMODE_Msk                (0x1UL << SPI_CR1_BIDIMODE_Pos)     /*!< 0x00008000 */
30 mjames 5491
#define SPI_CR1_BIDIMODE                    SPI_CR1_BIDIMODE_Msk               /*!< Bidirectional data mode enable */
5492
 
5493
/*******************  Bit definition for SPI_CR2 register  ********************/
5494
#define SPI_CR2_RXDMAEN_Pos                 (0U)                               
50 mjames 5495
#define SPI_CR2_RXDMAEN_Msk                 (0x1UL << SPI_CR2_RXDMAEN_Pos)      /*!< 0x00000001 */
30 mjames 5496
#define SPI_CR2_RXDMAEN                     SPI_CR2_RXDMAEN_Msk                /*!< Rx Buffer DMA Enable */
5497
#define SPI_CR2_TXDMAEN_Pos                 (1U)                               
50 mjames 5498
#define SPI_CR2_TXDMAEN_Msk                 (0x1UL << SPI_CR2_TXDMAEN_Pos)      /*!< 0x00000002 */
30 mjames 5499
#define SPI_CR2_TXDMAEN                     SPI_CR2_TXDMAEN_Msk                /*!< Tx Buffer DMA Enable */
5500
#define SPI_CR2_SSOE_Pos                    (2U)                               
50 mjames 5501
#define SPI_CR2_SSOE_Msk                    (0x1UL << SPI_CR2_SSOE_Pos)         /*!< 0x00000004 */
30 mjames 5502
#define SPI_CR2_SSOE                        SPI_CR2_SSOE_Msk                   /*!< SS Output Enable */
5503
#define SPI_CR2_FRF_Pos                     (4U)                               
50 mjames 5504
#define SPI_CR2_FRF_Msk                     (0x1UL << SPI_CR2_FRF_Pos)          /*!< 0x00000010 */
30 mjames 5505
#define SPI_CR2_FRF                         SPI_CR2_FRF_Msk                    /*!< Frame format */
5506
#define SPI_CR2_ERRIE_Pos                   (5U)                               
50 mjames 5507
#define SPI_CR2_ERRIE_Msk                   (0x1UL << SPI_CR2_ERRIE_Pos)        /*!< 0x00000020 */
30 mjames 5508
#define SPI_CR2_ERRIE                       SPI_CR2_ERRIE_Msk                  /*!< Error Interrupt Enable */
5509
#define SPI_CR2_RXNEIE_Pos                  (6U)                               
50 mjames 5510
#define SPI_CR2_RXNEIE_Msk                  (0x1UL << SPI_CR2_RXNEIE_Pos)       /*!< 0x00000040 */
30 mjames 5511
#define SPI_CR2_RXNEIE                      SPI_CR2_RXNEIE_Msk                 /*!< RX buffer Not Empty Interrupt Enable */
5512
#define SPI_CR2_TXEIE_Pos                   (7U)                               
50 mjames 5513
#define SPI_CR2_TXEIE_Msk                   (0x1UL << SPI_CR2_TXEIE_Pos)        /*!< 0x00000080 */
30 mjames 5514
#define SPI_CR2_TXEIE                       SPI_CR2_TXEIE_Msk                  /*!< Tx buffer Empty Interrupt Enable */
5515
 
5516
/********************  Bit definition for SPI_SR register  ********************/
5517
#define SPI_SR_RXNE_Pos                     (0U)                               
50 mjames 5518
#define SPI_SR_RXNE_Msk                     (0x1UL << SPI_SR_RXNE_Pos)          /*!< 0x00000001 */
30 mjames 5519
#define SPI_SR_RXNE                         SPI_SR_RXNE_Msk                    /*!< Receive buffer Not Empty */
5520
#define SPI_SR_TXE_Pos                      (1U)                               
50 mjames 5521
#define SPI_SR_TXE_Msk                      (0x1UL << SPI_SR_TXE_Pos)           /*!< 0x00000002 */
30 mjames 5522
#define SPI_SR_TXE                          SPI_SR_TXE_Msk                     /*!< Transmit buffer Empty */
5523
#define SPI_SR_CHSIDE_Pos                   (2U)                               
50 mjames 5524
#define SPI_SR_CHSIDE_Msk                   (0x1UL << SPI_SR_CHSIDE_Pos)        /*!< 0x00000004 */
30 mjames 5525
#define SPI_SR_CHSIDE                       SPI_SR_CHSIDE_Msk                  /*!< Channel side */
5526
#define SPI_SR_UDR_Pos                      (3U)                               
50 mjames 5527
#define SPI_SR_UDR_Msk                      (0x1UL << SPI_SR_UDR_Pos)           /*!< 0x00000008 */
30 mjames 5528
#define SPI_SR_UDR                          SPI_SR_UDR_Msk                     /*!< Underrun flag */
5529
#define SPI_SR_CRCERR_Pos                   (4U)                               
50 mjames 5530
#define SPI_SR_CRCERR_Msk                   (0x1UL << SPI_SR_CRCERR_Pos)        /*!< 0x00000010 */
30 mjames 5531
#define SPI_SR_CRCERR                       SPI_SR_CRCERR_Msk                  /*!< CRC Error flag */
5532
#define SPI_SR_MODF_Pos                     (5U)                               
50 mjames 5533
#define SPI_SR_MODF_Msk                     (0x1UL << SPI_SR_MODF_Pos)          /*!< 0x00000020 */
30 mjames 5534
#define SPI_SR_MODF                         SPI_SR_MODF_Msk                    /*!< Mode fault */
5535
#define SPI_SR_OVR_Pos                      (6U)                               
50 mjames 5536
#define SPI_SR_OVR_Msk                      (0x1UL << SPI_SR_OVR_Pos)           /*!< 0x00000040 */
30 mjames 5537
#define SPI_SR_OVR                          SPI_SR_OVR_Msk                     /*!< Overrun flag */
5538
#define SPI_SR_BSY_Pos                      (7U)                               
50 mjames 5539
#define SPI_SR_BSY_Msk                      (0x1UL << SPI_SR_BSY_Pos)           /*!< 0x00000080 */
30 mjames 5540
#define SPI_SR_BSY                          SPI_SR_BSY_Msk                     /*!< Busy flag */
5541
#define SPI_SR_FRE_Pos                      (8U)                               
50 mjames 5542
#define SPI_SR_FRE_Msk                      (0x1UL << SPI_SR_FRE_Pos)           /*!< 0x00000100 */
30 mjames 5543
#define SPI_SR_FRE                          SPI_SR_FRE_Msk                     /*!<Frame format error flag  */
5544
 
5545
/********************  Bit definition for SPI_DR register  ********************/
5546
#define SPI_DR_DR_Pos                       (0U)                               
50 mjames 5547
#define SPI_DR_DR_Msk                       (0xFFFFUL << SPI_DR_DR_Pos)         /*!< 0x0000FFFF */
30 mjames 5548
#define SPI_DR_DR                           SPI_DR_DR_Msk                      /*!< Data Register */
5549
 
5550
/*******************  Bit definition for SPI_CRCPR register  ******************/
5551
#define SPI_CRCPR_CRCPOLY_Pos               (0U)                               
50 mjames 5552
#define SPI_CRCPR_CRCPOLY_Msk               (0xFFFFUL << SPI_CRCPR_CRCPOLY_Pos) /*!< 0x0000FFFF */
30 mjames 5553
#define SPI_CRCPR_CRCPOLY                   SPI_CRCPR_CRCPOLY_Msk              /*!< CRC polynomial register */
5554
 
5555
/******************  Bit definition for SPI_RXCRCR register  ******************/
5556
#define SPI_RXCRCR_RXCRC_Pos                (0U)                               
50 mjames 5557
#define SPI_RXCRCR_RXCRC_Msk                (0xFFFFUL << SPI_RXCRCR_RXCRC_Pos)  /*!< 0x0000FFFF */
30 mjames 5558
#define SPI_RXCRCR_RXCRC                    SPI_RXCRCR_RXCRC_Msk               /*!< Rx CRC Register */
5559
 
5560
/******************  Bit definition for SPI_TXCRCR register  ******************/
5561
#define SPI_TXCRCR_TXCRC_Pos                (0U)                               
50 mjames 5562
#define SPI_TXCRCR_TXCRC_Msk                (0xFFFFUL << SPI_TXCRCR_TXCRC_Pos)  /*!< 0x0000FFFF */
30 mjames 5563
#define SPI_TXCRCR_TXCRC                    SPI_TXCRCR_TXCRC_Msk               /*!< Tx CRC Register */
5564
 
5565
/******************  Bit definition for SPI_I2SCFGR register  *****************/
5566
#define SPI_I2SCFGR_CHLEN_Pos               (0U)                               
50 mjames 5567
#define SPI_I2SCFGR_CHLEN_Msk               (0x1UL << SPI_I2SCFGR_CHLEN_Pos)    /*!< 0x00000001 */
30 mjames 5568
#define SPI_I2SCFGR_CHLEN                   SPI_I2SCFGR_CHLEN_Msk              /*!<Channel length (number of bits per audio channel) */
5569
 
5570
#define SPI_I2SCFGR_DATLEN_Pos              (1U)                               
50 mjames 5571
#define SPI_I2SCFGR_DATLEN_Msk              (0x3UL << SPI_I2SCFGR_DATLEN_Pos)   /*!< 0x00000006 */
30 mjames 5572
#define SPI_I2SCFGR_DATLEN                  SPI_I2SCFGR_DATLEN_Msk             /*!<DATLEN[1:0] bits (Data length to be transferred) */
50 mjames 5573
#define SPI_I2SCFGR_DATLEN_0                (0x1UL << SPI_I2SCFGR_DATLEN_Pos)   /*!< 0x00000002 */
5574
#define SPI_I2SCFGR_DATLEN_1                (0x2UL << SPI_I2SCFGR_DATLEN_Pos)   /*!< 0x00000004 */
30 mjames 5575
 
5576
#define SPI_I2SCFGR_CKPOL_Pos               (3U)                               
50 mjames 5577
#define SPI_I2SCFGR_CKPOL_Msk               (0x1UL << SPI_I2SCFGR_CKPOL_Pos)    /*!< 0x00000008 */
30 mjames 5578
#define SPI_I2SCFGR_CKPOL                   SPI_I2SCFGR_CKPOL_Msk              /*!<steady state clock polarity */
5579
 
5580
#define SPI_I2SCFGR_I2SSTD_Pos              (4U)                               
50 mjames 5581
#define SPI_I2SCFGR_I2SSTD_Msk              (0x3UL << SPI_I2SCFGR_I2SSTD_Pos)   /*!< 0x00000030 */
30 mjames 5582
#define SPI_I2SCFGR_I2SSTD                  SPI_I2SCFGR_I2SSTD_Msk             /*!<I2SSTD[1:0] bits (I2S standard selection) */
50 mjames 5583
#define SPI_I2SCFGR_I2SSTD_0                (0x1UL << SPI_I2SCFGR_I2SSTD_Pos)   /*!< 0x00000010 */
5584
#define SPI_I2SCFGR_I2SSTD_1                (0x2UL << SPI_I2SCFGR_I2SSTD_Pos)   /*!< 0x00000020 */
30 mjames 5585
 
5586
#define SPI_I2SCFGR_PCMSYNC_Pos             (7U)                               
50 mjames 5587
#define SPI_I2SCFGR_PCMSYNC_Msk             (0x1UL << SPI_I2SCFGR_PCMSYNC_Pos)  /*!< 0x00000080 */
30 mjames 5588
#define SPI_I2SCFGR_PCMSYNC                 SPI_I2SCFGR_PCMSYNC_Msk            /*!<PCM frame synchronization */
5589
 
5590
#define SPI_I2SCFGR_I2SCFG_Pos              (8U)                               
50 mjames 5591
#define SPI_I2SCFGR_I2SCFG_Msk              (0x3UL << SPI_I2SCFGR_I2SCFG_Pos)   /*!< 0x00000300 */
30 mjames 5592
#define SPI_I2SCFGR_I2SCFG                  SPI_I2SCFGR_I2SCFG_Msk             /*!<I2SCFG[1:0] bits (I2S configuration mode) */
50 mjames 5593
#define SPI_I2SCFGR_I2SCFG_0                (0x1UL << SPI_I2SCFGR_I2SCFG_Pos)   /*!< 0x00000100 */
5594
#define SPI_I2SCFGR_I2SCFG_1                (0x2UL << SPI_I2SCFGR_I2SCFG_Pos)   /*!< 0x00000200 */
30 mjames 5595
 
5596
#define SPI_I2SCFGR_I2SE_Pos                (10U)                              
50 mjames 5597
#define SPI_I2SCFGR_I2SE_Msk                (0x1UL << SPI_I2SCFGR_I2SE_Pos)     /*!< 0x00000400 */
30 mjames 5598
#define SPI_I2SCFGR_I2SE                    SPI_I2SCFGR_I2SE_Msk               /*!<I2S Enable */
5599
#define SPI_I2SCFGR_I2SMOD_Pos              (11U)                              
50 mjames 5600
#define SPI_I2SCFGR_I2SMOD_Msk              (0x1UL << SPI_I2SCFGR_I2SMOD_Pos)   /*!< 0x00000800 */
30 mjames 5601
#define SPI_I2SCFGR_I2SMOD                  SPI_I2SCFGR_I2SMOD_Msk             /*!<I2S mode selection */
5602
 
5603
/******************  Bit definition for SPI_I2SPR register  *******************/
5604
#define SPI_I2SPR_I2SDIV_Pos                (0U)                               
50 mjames 5605
#define SPI_I2SPR_I2SDIV_Msk                (0xFFUL << SPI_I2SPR_I2SDIV_Pos)    /*!< 0x000000FF */
30 mjames 5606
#define SPI_I2SPR_I2SDIV                    SPI_I2SPR_I2SDIV_Msk               /*!<I2S Linear prescaler */
5607
#define SPI_I2SPR_ODD_Pos                   (8U)                               
50 mjames 5608
#define SPI_I2SPR_ODD_Msk                   (0x1UL << SPI_I2SPR_ODD_Pos)        /*!< 0x00000100 */
30 mjames 5609
#define SPI_I2SPR_ODD                       SPI_I2SPR_ODD_Msk                  /*!<Odd factor for the prescaler */
5610
#define SPI_I2SPR_MCKOE_Pos                 (9U)                               
50 mjames 5611
#define SPI_I2SPR_MCKOE_Msk                 (0x1UL << SPI_I2SPR_MCKOE_Pos)      /*!< 0x00000200 */
30 mjames 5612
#define SPI_I2SPR_MCKOE                     SPI_I2SPR_MCKOE_Msk                /*!<Master Clock Output Enable */
5613
 
5614
/******************************************************************************/
5615
/*                                                                            */
5616
/*                       System Configuration (SYSCFG)                        */
5617
/*                                                                            */
5618
/******************************************************************************/
5619
/*****************  Bit definition for SYSCFG_MEMRMP register  ****************/
5620
#define SYSCFG_MEMRMP_MEM_MODE_Pos      (0U)                                   
50 mjames 5621
#define SYSCFG_MEMRMP_MEM_MODE_Msk      (0x3UL << SYSCFG_MEMRMP_MEM_MODE_Pos)   /*!< 0x00000003 */
30 mjames 5622
#define SYSCFG_MEMRMP_MEM_MODE          SYSCFG_MEMRMP_MEM_MODE_Msk             /*!< SYSCFG_Memory Remap Config */
50 mjames 5623
#define SYSCFG_MEMRMP_MEM_MODE_0        (0x1UL << SYSCFG_MEMRMP_MEM_MODE_Pos)   /*!< 0x00000001 */
5624
#define SYSCFG_MEMRMP_MEM_MODE_1        (0x2UL << SYSCFG_MEMRMP_MEM_MODE_Pos)   /*!< 0x00000002 */
30 mjames 5625
#define SYSCFG_MEMRMP_BOOT_MODE_Pos     (8U)                                   
50 mjames 5626
#define SYSCFG_MEMRMP_BOOT_MODE_Msk     (0x3UL << SYSCFG_MEMRMP_BOOT_MODE_Pos)  /*!< 0x00000300 */
30 mjames 5627
#define SYSCFG_MEMRMP_BOOT_MODE         SYSCFG_MEMRMP_BOOT_MODE_Msk            /*!< Boot mode Config */
50 mjames 5628
#define SYSCFG_MEMRMP_BOOT_MODE_0       (0x1UL << SYSCFG_MEMRMP_BOOT_MODE_Pos)  /*!< 0x00000100 */
5629
#define SYSCFG_MEMRMP_BOOT_MODE_1       (0x2UL << SYSCFG_MEMRMP_BOOT_MODE_Pos)  /*!< 0x00000200 */
30 mjames 5630
 
5631
/*****************  Bit definition for SYSCFG_PMC register  *******************/
5632
#define SYSCFG_PMC_USB_PU_Pos           (0U)                                   
50 mjames 5633
#define SYSCFG_PMC_USB_PU_Msk           (0x1UL << SYSCFG_PMC_USB_PU_Pos)        /*!< 0x00000001 */
30 mjames 5634
#define SYSCFG_PMC_USB_PU               SYSCFG_PMC_USB_PU_Msk                  /*!< SYSCFG PMC */
5635
 
5636
/*****************  Bit definition for SYSCFG_EXTICR1 register  ***************/
5637
#define SYSCFG_EXTICR1_EXTI0_Pos        (0U)                                   
50 mjames 5638
#define SYSCFG_EXTICR1_EXTI0_Msk        (0xFUL << SYSCFG_EXTICR1_EXTI0_Pos)     /*!< 0x0000000F */
30 mjames 5639
#define SYSCFG_EXTICR1_EXTI0            SYSCFG_EXTICR1_EXTI0_Msk               /*!< EXTI 0 configuration */
5640
#define SYSCFG_EXTICR1_EXTI1_Pos        (4U)                                   
50 mjames 5641
#define SYSCFG_EXTICR1_EXTI1_Msk        (0xFUL << SYSCFG_EXTICR1_EXTI1_Pos)     /*!< 0x000000F0 */
30 mjames 5642
#define SYSCFG_EXTICR1_EXTI1            SYSCFG_EXTICR1_EXTI1_Msk               /*!< EXTI 1 configuration */
5643
#define SYSCFG_EXTICR1_EXTI2_Pos        (8U)                                   
50 mjames 5644
#define SYSCFG_EXTICR1_EXTI2_Msk        (0xFUL << SYSCFG_EXTICR1_EXTI2_Pos)     /*!< 0x00000F00 */
30 mjames 5645
#define SYSCFG_EXTICR1_EXTI2            SYSCFG_EXTICR1_EXTI2_Msk               /*!< EXTI 2 configuration */
5646
#define SYSCFG_EXTICR1_EXTI3_Pos        (12U)                                  
50 mjames 5647
#define SYSCFG_EXTICR1_EXTI3_Msk        (0xFUL << SYSCFG_EXTICR1_EXTI3_Pos)     /*!< 0x0000F000 */
30 mjames 5648
#define SYSCFG_EXTICR1_EXTI3            SYSCFG_EXTICR1_EXTI3_Msk               /*!< EXTI 3 configuration */
5649
 
5650
/**
5651
  * @brief  EXTI0 configuration  
5652
  */
5653
#define SYSCFG_EXTICR1_EXTI0_PA         (0x00000000U)                          /*!< PA[0] pin */
5654
#define SYSCFG_EXTICR1_EXTI0_PB         (0x00000001U)                          /*!< PB[0] pin */
5655
#define SYSCFG_EXTICR1_EXTI0_PC         (0x00000002U)                          /*!< PC[0] pin */
5656
#define SYSCFG_EXTICR1_EXTI0_PD         (0x00000003U)                          /*!< PD[0] pin */
5657
#define SYSCFG_EXTICR1_EXTI0_PE         (0x00000004U)                          /*!< PE[0] pin */
5658
#define SYSCFG_EXTICR1_EXTI0_PH         (0x00000005U)                          /*!< PH[0] pin */
5659
#define SYSCFG_EXTICR1_EXTI0_PF         (0x00000006U)                          /*!< PF[0] pin */
5660
#define SYSCFG_EXTICR1_EXTI0_PG         (0x00000007U)                          /*!< PG[0] pin */
5661
 
5662
/**
5663
  * @brief  EXTI1 configuration  
5664
  */
5665
#define SYSCFG_EXTICR1_EXTI1_PA         (0x00000000U)                          /*!< PA[1] pin */
5666
#define SYSCFG_EXTICR1_EXTI1_PB         (0x00000010U)                          /*!< PB[1] pin */
5667
#define SYSCFG_EXTICR1_EXTI1_PC         (0x00000020U)                          /*!< PC[1] pin */
5668
#define SYSCFG_EXTICR1_EXTI1_PD         (0x00000030U)                          /*!< PD[1] pin */
5669
#define SYSCFG_EXTICR1_EXTI1_PE         (0x00000040U)                          /*!< PE[1] pin */
5670
#define SYSCFG_EXTICR1_EXTI1_PH         (0x00000050U)                          /*!< PH[1] pin */
5671
#define SYSCFG_EXTICR1_EXTI1_PF         (0x00000060U)                          /*!< PF[1] pin */
5672
#define SYSCFG_EXTICR1_EXTI1_PG         (0x00000070U)                          /*!< PG[1] pin */
5673
 
5674
/**
5675
  * @brief  EXTI2 configuration  
5676
  */
5677
#define SYSCFG_EXTICR1_EXTI2_PA         (0x00000000U)                          /*!< PA[2] pin */
5678
#define SYSCFG_EXTICR1_EXTI2_PB         (0x00000100U)                          /*!< PB[2] pin */
5679
#define SYSCFG_EXTICR1_EXTI2_PC         (0x00000200U)                          /*!< PC[2] pin */
5680
#define SYSCFG_EXTICR1_EXTI2_PD         (0x00000300U)                          /*!< PD[2] pin */
5681
#define SYSCFG_EXTICR1_EXTI2_PE         (0x00000400U)                          /*!< PE[2] pin */
5682
#define SYSCFG_EXTICR1_EXTI2_PH         (0x00000500U)                          /*!< PH[2] pin */
5683
#define SYSCFG_EXTICR1_EXTI2_PF         (0x00000600U)                          /*!< PF[2] pin */
5684
#define SYSCFG_EXTICR1_EXTI2_PG         (0x00000700U)                          /*!< PG[2] pin */
5685
 
5686
/**
5687
  * @brief  EXTI3 configuration  
5688
  */
5689
#define SYSCFG_EXTICR1_EXTI3_PA         (0x00000000U)                          /*!< PA[3] pin */
5690
#define SYSCFG_EXTICR1_EXTI3_PB         (0x00001000U)                          /*!< PB[3] pin */
5691
#define SYSCFG_EXTICR1_EXTI3_PC         (0x00002000U)                          /*!< PC[3] pin */
5692
#define SYSCFG_EXTICR1_EXTI3_PD         (0x00003000U)                          /*!< PD[3] pin */
5693
#define SYSCFG_EXTICR1_EXTI3_PE         (0x00004000U)                          /*!< PE[3] pin */
5694
#define SYSCFG_EXTICR1_EXTI3_PF         (0x00003000U)                          /*!< PF[3] pin */
5695
#define SYSCFG_EXTICR1_EXTI3_PG         (0x00004000U)                          /*!< PG[3] pin */
5696
 
5697
/*****************  Bit definition for SYSCFG_EXTICR2 register  *****************/
5698
#define SYSCFG_EXTICR2_EXTI4_Pos        (0U)                                   
50 mjames 5699
#define SYSCFG_EXTICR2_EXTI4_Msk        (0xFUL << SYSCFG_EXTICR2_EXTI4_Pos)     /*!< 0x0000000F */
30 mjames 5700
#define SYSCFG_EXTICR2_EXTI4            SYSCFG_EXTICR2_EXTI4_Msk               /*!< EXTI 4 configuration */
5701
#define SYSCFG_EXTICR2_EXTI5_Pos        (4U)                                   
50 mjames 5702
#define SYSCFG_EXTICR2_EXTI5_Msk        (0xFUL << SYSCFG_EXTICR2_EXTI5_Pos)     /*!< 0x000000F0 */
30 mjames 5703
#define SYSCFG_EXTICR2_EXTI5            SYSCFG_EXTICR2_EXTI5_Msk               /*!< EXTI 5 configuration */
5704
#define SYSCFG_EXTICR2_EXTI6_Pos        (8U)                                   
50 mjames 5705
#define SYSCFG_EXTICR2_EXTI6_Msk        (0xFUL << SYSCFG_EXTICR2_EXTI6_Pos)     /*!< 0x00000F00 */
30 mjames 5706
#define SYSCFG_EXTICR2_EXTI6            SYSCFG_EXTICR2_EXTI6_Msk               /*!< EXTI 6 configuration */
5707
#define SYSCFG_EXTICR2_EXTI7_Pos        (12U)                                  
50 mjames 5708
#define SYSCFG_EXTICR2_EXTI7_Msk        (0xFUL << SYSCFG_EXTICR2_EXTI7_Pos)     /*!< 0x0000F000 */
30 mjames 5709
#define SYSCFG_EXTICR2_EXTI7            SYSCFG_EXTICR2_EXTI7_Msk               /*!< EXTI 7 configuration */
5710
 
5711
/**
5712
  * @brief  EXTI4 configuration  
5713
  */
5714
#define SYSCFG_EXTICR2_EXTI4_PA         (0x00000000U)                          /*!< PA[4] pin */
5715
#define SYSCFG_EXTICR2_EXTI4_PB         (0x00000001U)                          /*!< PB[4] pin */
5716
#define SYSCFG_EXTICR2_EXTI4_PC         (0x00000002U)                          /*!< PC[4] pin */
5717
#define SYSCFG_EXTICR2_EXTI4_PD         (0x00000003U)                          /*!< PD[4] pin */
5718
#define SYSCFG_EXTICR2_EXTI4_PE         (0x00000004U)                          /*!< PE[4] pin */
5719
#define SYSCFG_EXTICR2_EXTI4_PF         (0x00000006U)                          /*!< PF[4] pin */
5720
#define SYSCFG_EXTICR2_EXTI4_PG         (0x00000007U)                          /*!< PG[4] pin */
5721
 
5722
/**
5723
  * @brief  EXTI5 configuration  
5724
  */
5725
#define SYSCFG_EXTICR2_EXTI5_PA         (0x00000000U)                          /*!< PA[5] pin */
5726
#define SYSCFG_EXTICR2_EXTI5_PB         (0x00000010U)                          /*!< PB[5] pin */
5727
#define SYSCFG_EXTICR2_EXTI5_PC         (0x00000020U)                          /*!< PC[5] pin */
5728
#define SYSCFG_EXTICR2_EXTI5_PD         (0x00000030U)                          /*!< PD[5] pin */
5729
#define SYSCFG_EXTICR2_EXTI5_PE         (0x00000040U)                          /*!< PE[5] pin */
5730
#define SYSCFG_EXTICR2_EXTI5_PF         (0x00000060U)                          /*!< PF[5] pin */
5731
#define SYSCFG_EXTICR2_EXTI5_PG         (0x00000070U)                          /*!< PG[5] pin */
5732
 
5733
/**
5734
  * @brief  EXTI6 configuration  
5735
  */
5736
#define SYSCFG_EXTICR2_EXTI6_PA         (0x00000000U)                          /*!< PA[6] pin */
5737
#define SYSCFG_EXTICR2_EXTI6_PB         (0x00000100U)                          /*!< PB[6] pin */
5738
#define SYSCFG_EXTICR2_EXTI6_PC         (0x00000200U)                          /*!< PC[6] pin */
5739
#define SYSCFG_EXTICR2_EXTI6_PD         (0x00000300U)                          /*!< PD[6] pin */
5740
#define SYSCFG_EXTICR2_EXTI6_PE         (0x00000400U)                          /*!< PE[6] pin */
5741
#define SYSCFG_EXTICR2_EXTI6_PF         (0x00000600U)                          /*!< PF[6] pin */
5742
#define SYSCFG_EXTICR2_EXTI6_PG         (0x00000700U)                          /*!< PG[6] pin */
5743
 
5744
/**
5745
  * @brief  EXTI7 configuration  
5746
  */
5747
#define SYSCFG_EXTICR2_EXTI7_PA         (0x00000000U)                          /*!< PA[7] pin */
5748
#define SYSCFG_EXTICR2_EXTI7_PB         (0x00001000U)                          /*!< PB[7] pin */
5749
#define SYSCFG_EXTICR2_EXTI7_PC         (0x00002000U)                          /*!< PC[7] pin */
5750
#define SYSCFG_EXTICR2_EXTI7_PD         (0x00003000U)                          /*!< PD[7] pin */
5751
#define SYSCFG_EXTICR2_EXTI7_PE         (0x00004000U)                          /*!< PE[7] pin */
5752
#define SYSCFG_EXTICR2_EXTI7_PF         (0x00006000U)                          /*!< PF[7] pin */
5753
#define SYSCFG_EXTICR2_EXTI7_PG         (0x00007000U)                          /*!< PG[7] pin */
5754
 
5755
/*****************  Bit definition for SYSCFG_EXTICR3 register  *****************/
5756
#define SYSCFG_EXTICR3_EXTI8_Pos        (0U)                                   
50 mjames 5757
#define SYSCFG_EXTICR3_EXTI8_Msk        (0xFUL << SYSCFG_EXTICR3_EXTI8_Pos)     /*!< 0x0000000F */
30 mjames 5758
#define SYSCFG_EXTICR3_EXTI8            SYSCFG_EXTICR3_EXTI8_Msk               /*!< EXTI 8 configuration */
5759
#define SYSCFG_EXTICR3_EXTI9_Pos        (4U)                                   
50 mjames 5760
#define SYSCFG_EXTICR3_EXTI9_Msk        (0xFUL << SYSCFG_EXTICR3_EXTI9_Pos)     /*!< 0x000000F0 */
30 mjames 5761
#define SYSCFG_EXTICR3_EXTI9            SYSCFG_EXTICR3_EXTI9_Msk               /*!< EXTI 9 configuration */
5762
#define SYSCFG_EXTICR3_EXTI10_Pos       (8U)                                   
50 mjames 5763
#define SYSCFG_EXTICR3_EXTI10_Msk       (0xFUL << SYSCFG_EXTICR3_EXTI10_Pos)    /*!< 0x00000F00 */
30 mjames 5764
#define SYSCFG_EXTICR3_EXTI10           SYSCFG_EXTICR3_EXTI10_Msk              /*!< EXTI 10 configuration */
5765
#define SYSCFG_EXTICR3_EXTI11_Pos       (12U)                                  
50 mjames 5766
#define SYSCFG_EXTICR3_EXTI11_Msk       (0xFUL << SYSCFG_EXTICR3_EXTI11_Pos)    /*!< 0x0000F000 */
30 mjames 5767
#define SYSCFG_EXTICR3_EXTI11           SYSCFG_EXTICR3_EXTI11_Msk              /*!< EXTI 11 configuration */
5768
 
5769
/**
5770
  * @brief  EXTI8 configuration  
5771
  */
5772
#define SYSCFG_EXTICR3_EXTI8_PA         (0x00000000U)                          /*!< PA[8] pin */
5773
#define SYSCFG_EXTICR3_EXTI8_PB         (0x00000001U)                          /*!< PB[8] pin */
5774
#define SYSCFG_EXTICR3_EXTI8_PC         (0x00000002U)                          /*!< PC[8] pin */
5775
#define SYSCFG_EXTICR3_EXTI8_PD         (0x00000003U)                          /*!< PD[8] pin */
5776
#define SYSCFG_EXTICR3_EXTI8_PE         (0x00000004U)                          /*!< PE[8] pin */
5777
#define SYSCFG_EXTICR3_EXTI8_PF         (0x00000006U)                          /*!< PF[8] pin */
5778
#define SYSCFG_EXTICR3_EXTI8_PG         (0x00000007U)                          /*!< PG[8] pin */
5779
 
5780
/**
5781
  * @brief  EXTI9 configuration  
5782
  */
5783
#define SYSCFG_EXTICR3_EXTI9_PA         (0x00000000U)                          /*!< PA[9] pin */
5784
#define SYSCFG_EXTICR3_EXTI9_PB         (0x00000010U)                          /*!< PB[9] pin */
5785
#define SYSCFG_EXTICR3_EXTI9_PC         (0x00000020U)                          /*!< PC[9] pin */
5786
#define SYSCFG_EXTICR3_EXTI9_PD         (0x00000030U)                          /*!< PD[9] pin */
5787
#define SYSCFG_EXTICR3_EXTI9_PE         (0x00000040U)                          /*!< PE[9] pin */
5788
#define SYSCFG_EXTICR3_EXTI9_PF         (0x00000060U)                          /*!< PF[9] pin */
5789
#define SYSCFG_EXTICR3_EXTI9_PG         (0x00000070U)                          /*!< PG[9] pin */
5790
 
5791
/**
5792
  * @brief  EXTI10 configuration  
5793
  */
5794
#define SYSCFG_EXTICR3_EXTI10_PA        (0x00000000U)                          /*!< PA[10] pin */
5795
#define SYSCFG_EXTICR3_EXTI10_PB        (0x00000100U)                          /*!< PB[10] pin */
5796
#define SYSCFG_EXTICR3_EXTI10_PC        (0x00000200U)                          /*!< PC[10] pin */
5797
#define SYSCFG_EXTICR3_EXTI10_PD        (0x00000300U)                          /*!< PD[10] pin */
5798
#define SYSCFG_EXTICR3_EXTI10_PE        (0x00000400U)                          /*!< PE[10] pin */
5799
#define SYSCFG_EXTICR3_EXTI10_PF        (0x00000600U)                          /*!< PF[10] pin */
5800
#define SYSCFG_EXTICR3_EXTI10_PG        (0x00000700U)                          /*!< PG[10] pin */
5801
 
5802
/**
5803
  * @brief  EXTI11 configuration  
5804
  */
5805
#define SYSCFG_EXTICR3_EXTI11_PA        (0x00000000U)                          /*!< PA[11] pin */
5806
#define SYSCFG_EXTICR3_EXTI11_PB        (0x00001000U)                          /*!< PB[11] pin */
5807
#define SYSCFG_EXTICR3_EXTI11_PC        (0x00002000U)                          /*!< PC[11] pin */
5808
#define SYSCFG_EXTICR3_EXTI11_PD        (0x00003000U)                          /*!< PD[11] pin */
5809
#define SYSCFG_EXTICR3_EXTI11_PE        (0x00004000U)                          /*!< PE[11] pin */
5810
#define SYSCFG_EXTICR3_EXTI11_PF        (0x00006000U)                          /*!< PF[11] pin */
5811
#define SYSCFG_EXTICR3_EXTI11_PG        (0x00007000U)                          /*!< PG[11] pin */
5812
 
5813
/*****************  Bit definition for SYSCFG_EXTICR4 register  *****************/
5814
#define SYSCFG_EXTICR4_EXTI12_Pos       (0U)                                   
50 mjames 5815
#define SYSCFG_EXTICR4_EXTI12_Msk       (0xFUL << SYSCFG_EXTICR4_EXTI12_Pos)    /*!< 0x0000000F */
30 mjames 5816
#define SYSCFG_EXTICR4_EXTI12           SYSCFG_EXTICR4_EXTI12_Msk              /*!< EXTI 12 configuration */
5817
#define SYSCFG_EXTICR4_EXTI13_Pos       (4U)                                   
50 mjames 5818
#define SYSCFG_EXTICR4_EXTI13_Msk       (0xFUL << SYSCFG_EXTICR4_EXTI13_Pos)    /*!< 0x000000F0 */
30 mjames 5819
#define SYSCFG_EXTICR4_EXTI13           SYSCFG_EXTICR4_EXTI13_Msk              /*!< EXTI 13 configuration */
5820
#define SYSCFG_EXTICR4_EXTI14_Pos       (8U)                                   
50 mjames 5821
#define SYSCFG_EXTICR4_EXTI14_Msk       (0xFUL << SYSCFG_EXTICR4_EXTI14_Pos)    /*!< 0x00000F00 */
30 mjames 5822
#define SYSCFG_EXTICR4_EXTI14           SYSCFG_EXTICR4_EXTI14_Msk              /*!< EXTI 14 configuration */
5823
#define SYSCFG_EXTICR4_EXTI15_Pos       (12U)                                  
50 mjames 5824
#define SYSCFG_EXTICR4_EXTI15_Msk       (0xFUL << SYSCFG_EXTICR4_EXTI15_Pos)    /*!< 0x0000F000 */
30 mjames 5825
#define SYSCFG_EXTICR4_EXTI15           SYSCFG_EXTICR4_EXTI15_Msk              /*!< EXTI 15 configuration */
5826
 
5827
/**
5828
  * @brief  EXTI12 configuration  
5829
  */
5830
#define SYSCFG_EXTICR4_EXTI12_PA        (0x00000000U)                          /*!< PA[12] pin */
5831
#define SYSCFG_EXTICR4_EXTI12_PB        (0x00000001U)                          /*!< PB[12] pin */
5832
#define SYSCFG_EXTICR4_EXTI12_PC        (0x00000002U)                          /*!< PC[12] pin */
5833
#define SYSCFG_EXTICR4_EXTI12_PD        (0x00000003U)                          /*!< PD[12] pin */
5834
#define SYSCFG_EXTICR4_EXTI12_PE        (0x00000004U)                          /*!< PE[12] pin */
5835
#define SYSCFG_EXTICR4_EXTI12_PF        (0x00000006U)                          /*!< PF[12] pin */
5836
#define SYSCFG_EXTICR4_EXTI12_PG        (0x00000007U)                          /*!< PG[12] pin */
5837
 
5838
/**
5839
  * @brief  EXTI13 configuration  
5840
  */
5841
#define SYSCFG_EXTICR4_EXTI13_PA        (0x00000000U)                          /*!< PA[13] pin */
5842
#define SYSCFG_EXTICR4_EXTI13_PB        (0x00000010U)                          /*!< PB[13] pin */
5843
#define SYSCFG_EXTICR4_EXTI13_PC        (0x00000020U)                          /*!< PC[13] pin */
5844
#define SYSCFG_EXTICR4_EXTI13_PD        (0x00000030U)                          /*!< PD[13] pin */
5845
#define SYSCFG_EXTICR4_EXTI13_PE        (0x00000040U)                          /*!< PE[13] pin */
5846
#define SYSCFG_EXTICR4_EXTI13_PF        (0x00000060U)                          /*!< PF[13] pin */
5847
#define SYSCFG_EXTICR4_EXTI13_PG        (0x00000070U)                          /*!< PG[13] pin */
5848
 
5849
/**
5850
  * @brief  EXTI14 configuration  
5851
  */
5852
#define SYSCFG_EXTICR4_EXTI14_PA        (0x00000000U)                          /*!< PA[14] pin */
5853
#define SYSCFG_EXTICR4_EXTI14_PB        (0x00000100U)                          /*!< PB[14] pin */
5854
#define SYSCFG_EXTICR4_EXTI14_PC        (0x00000200U)                          /*!< PC[14] pin */
5855
#define SYSCFG_EXTICR4_EXTI14_PD        (0x00000300U)                          /*!< PD[14] pin */
5856
#define SYSCFG_EXTICR4_EXTI14_PE        (0x00000400U)                          /*!< PE[14] pin */
5857
#define SYSCFG_EXTICR4_EXTI14_PF        (0x00000600U)                          /*!< PF[14] pin */
5858
#define SYSCFG_EXTICR4_EXTI14_PG        (0x00000700U)                          /*!< PG[14] pin */
5859
 
5860
/**
5861
  * @brief  EXTI15 configuration  
5862
  */
5863
#define SYSCFG_EXTICR4_EXTI15_PA        (0x00000000U)                          /*!< PA[15] pin */
5864
#define SYSCFG_EXTICR4_EXTI15_PB        (0x00001000U)                          /*!< PB[15] pin */
5865
#define SYSCFG_EXTICR4_EXTI15_PC        (0x00002000U)                          /*!< PC[15] pin */
5866
#define SYSCFG_EXTICR4_EXTI15_PD        (0x00003000U)                          /*!< PD[15] pin */
5867
#define SYSCFG_EXTICR4_EXTI15_PE        (0x00004000U)                          /*!< PE[15] pin */
5868
#define SYSCFG_EXTICR4_EXTI15_PF        (0x00006000U)                          /*!< PF[15] pin */
5869
#define SYSCFG_EXTICR4_EXTI15_PG        (0x00007000U)                          /*!< PG[15] pin */
5870
 
5871
/******************************************************************************/
5872
/*                                                                            */
5873
/*                       Routing Interface (RI)                               */
5874
/*                                                                            */
5875
/******************************************************************************/
5876
 
5877
/********************  Bit definition for RI_ICR register  ********************/
5878
#define RI_ICR_IC1OS_Pos                (0U)                                   
50 mjames 5879
#define RI_ICR_IC1OS_Msk                (0xFUL << RI_ICR_IC1OS_Pos)             /*!< 0x0000000F */
30 mjames 5880
#define RI_ICR_IC1OS                    RI_ICR_IC1OS_Msk                       /*!< IC1OS[3:0] bits (Input Capture 1 select bits) */
50 mjames 5881
#define RI_ICR_IC1OS_0                  (0x1UL << RI_ICR_IC1OS_Pos)             /*!< 0x00000001 */
5882
#define RI_ICR_IC1OS_1                  (0x2UL << RI_ICR_IC1OS_Pos)             /*!< 0x00000002 */
5883
#define RI_ICR_IC1OS_2                  (0x4UL << RI_ICR_IC1OS_Pos)             /*!< 0x00000004 */
5884
#define RI_ICR_IC1OS_3                  (0x8UL << RI_ICR_IC1OS_Pos)             /*!< 0x00000008 */
30 mjames 5885
 
5886
#define RI_ICR_IC2OS_Pos                (4U)                                   
50 mjames 5887
#define RI_ICR_IC2OS_Msk                (0xFUL << RI_ICR_IC2OS_Pos)             /*!< 0x000000F0 */
30 mjames 5888
#define RI_ICR_IC2OS                    RI_ICR_IC2OS_Msk                       /*!< IC2OS[3:0] bits (Input Capture 2 select bits) */
50 mjames 5889
#define RI_ICR_IC2OS_0                  (0x1UL << RI_ICR_IC2OS_Pos)             /*!< 0x00000010 */
5890
#define RI_ICR_IC2OS_1                  (0x2UL << RI_ICR_IC2OS_Pos)             /*!< 0x00000020 */
5891
#define RI_ICR_IC2OS_2                  (0x4UL << RI_ICR_IC2OS_Pos)             /*!< 0x00000040 */
5892
#define RI_ICR_IC2OS_3                  (0x8UL << RI_ICR_IC2OS_Pos)             /*!< 0x00000080 */
30 mjames 5893
 
5894
#define RI_ICR_IC3OS_Pos                (8U)                                   
50 mjames 5895
#define RI_ICR_IC3OS_Msk                (0xFUL << RI_ICR_IC3OS_Pos)             /*!< 0x00000F00 */
30 mjames 5896
#define RI_ICR_IC3OS                    RI_ICR_IC3OS_Msk                       /*!< IC3OS[3:0] bits (Input Capture 3 select bits) */
50 mjames 5897
#define RI_ICR_IC3OS_0                  (0x1UL << RI_ICR_IC3OS_Pos)             /*!< 0x00000100 */
5898
#define RI_ICR_IC3OS_1                  (0x2UL << RI_ICR_IC3OS_Pos)             /*!< 0x00000200 */
5899
#define RI_ICR_IC3OS_2                  (0x4UL << RI_ICR_IC3OS_Pos)             /*!< 0x00000400 */
5900
#define RI_ICR_IC3OS_3                  (0x8UL << RI_ICR_IC3OS_Pos)             /*!< 0x00000800 */
30 mjames 5901
 
5902
#define RI_ICR_IC4OS_Pos                (12U)                                  
50 mjames 5903
#define RI_ICR_IC4OS_Msk                (0xFUL << RI_ICR_IC4OS_Pos)             /*!< 0x0000F000 */
30 mjames 5904
#define RI_ICR_IC4OS                    RI_ICR_IC4OS_Msk                       /*!< IC4OS[3:0] bits (Input Capture 4 select bits) */
50 mjames 5905
#define RI_ICR_IC4OS_0                  (0x1UL << RI_ICR_IC4OS_Pos)             /*!< 0x00001000 */
5906
#define RI_ICR_IC4OS_1                  (0x2UL << RI_ICR_IC4OS_Pos)             /*!< 0x00002000 */
5907
#define RI_ICR_IC4OS_2                  (0x4UL << RI_ICR_IC4OS_Pos)             /*!< 0x00004000 */
5908
#define RI_ICR_IC4OS_3                  (0x8UL << RI_ICR_IC4OS_Pos)             /*!< 0x00008000 */
30 mjames 5909
 
5910
#define RI_ICR_TIM_Pos                  (16U)                                  
50 mjames 5911
#define RI_ICR_TIM_Msk                  (0x3UL << RI_ICR_TIM_Pos)               /*!< 0x00030000 */
30 mjames 5912
#define RI_ICR_TIM                      RI_ICR_TIM_Msk                         /*!< TIM[3:0] bits (Timers select bits) */
50 mjames 5913
#define RI_ICR_TIM_0                    (0x1UL << RI_ICR_TIM_Pos)               /*!< 0x00010000 */
5914
#define RI_ICR_TIM_1                    (0x2UL << RI_ICR_TIM_Pos)               /*!< 0x00020000 */
30 mjames 5915
 
5916
#define RI_ICR_IC1_Pos                  (18U)                                  
50 mjames 5917
#define RI_ICR_IC1_Msk                  (0x1UL << RI_ICR_IC1_Pos)               /*!< 0x00040000 */
30 mjames 5918
#define RI_ICR_IC1                      RI_ICR_IC1_Msk                         /*!< Input capture 1 */
5919
#define RI_ICR_IC2_Pos                  (19U)                                  
50 mjames 5920
#define RI_ICR_IC2_Msk                  (0x1UL << RI_ICR_IC2_Pos)               /*!< 0x00080000 */
30 mjames 5921
#define RI_ICR_IC2                      RI_ICR_IC2_Msk                         /*!< Input capture 2 */
5922
#define RI_ICR_IC3_Pos                  (20U)                                  
50 mjames 5923
#define RI_ICR_IC3_Msk                  (0x1UL << RI_ICR_IC3_Pos)               /*!< 0x00100000 */
30 mjames 5924
#define RI_ICR_IC3                      RI_ICR_IC3_Msk                         /*!< Input capture 3 */
5925
#define RI_ICR_IC4_Pos                  (21U)                                  
50 mjames 5926
#define RI_ICR_IC4_Msk                  (0x1UL << RI_ICR_IC4_Pos)               /*!< 0x00200000 */
30 mjames 5927
#define RI_ICR_IC4                      RI_ICR_IC4_Msk                         /*!< Input capture 4 */
5928
 
5929
/********************  Bit definition for RI_ASCR1 register  ********************/
5930
#define RI_ASCR1_CH_Pos                 (0U)                                   
50 mjames 5931
#define RI_ASCR1_CH_Msk                 (0x7BFDFFFFUL << RI_ASCR1_CH_Pos)       /*!< 0x7BFDFFFF */
30 mjames 5932
#define RI_ASCR1_CH                     RI_ASCR1_CH_Msk                        /*!< AS_CH[25:18] & AS_CH[15:0] bits ( Analog switches selection bits) */
5933
#define RI_ASCR1_CH_0                   (0x00000001U)                          /*!< Bit 0 */
5934
#define RI_ASCR1_CH_1                   (0x00000002U)                          /*!< Bit 1 */
5935
#define RI_ASCR1_CH_2                   (0x00000004U)                          /*!< Bit 2 */
5936
#define RI_ASCR1_CH_3                   (0x00000008U)                          /*!< Bit 3 */
5937
#define RI_ASCR1_CH_4                   (0x00000010U)                          /*!< Bit 4 */
5938
#define RI_ASCR1_CH_5                   (0x00000020U)                          /*!< Bit 5 */
5939
#define RI_ASCR1_CH_6                   (0x00000040U)                          /*!< Bit 6 */
5940
#define RI_ASCR1_CH_7                   (0x00000080U)                          /*!< Bit 7 */
5941
#define RI_ASCR1_CH_8                   (0x00000100U)                          /*!< Bit 8 */
5942
#define RI_ASCR1_CH_9                   (0x00000200U)                          /*!< Bit 9 */
5943
#define RI_ASCR1_CH_10                  (0x00000400U)                          /*!< Bit 10 */
5944
#define RI_ASCR1_CH_11                  (0x00000800U)                          /*!< Bit 11 */
5945
#define RI_ASCR1_CH_12                  (0x00001000U)                          /*!< Bit 12 */
5946
#define RI_ASCR1_CH_13                  (0x00002000U)                          /*!< Bit 13 */
5947
#define RI_ASCR1_CH_14                  (0x00004000U)                          /*!< Bit 14 */
5948
#define RI_ASCR1_CH_15                  (0x00008000U)                          /*!< Bit 15 */
5949
#define RI_ASCR1_CH_31                  (0x00010000U)                          /*!< Bit 16 */
5950
#define RI_ASCR1_CH_18                  (0x00040000U)                          /*!< Bit 18 */
5951
#define RI_ASCR1_CH_19                  (0x00080000U)                          /*!< Bit 19 */
5952
#define RI_ASCR1_CH_20                  (0x00100000U)                          /*!< Bit 20 */
5953
#define RI_ASCR1_CH_21                  (0x00200000U)                          /*!< Bit 21 */
5954
#define RI_ASCR1_CH_22                  (0x00400000U)                          /*!< Bit 22 */
5955
#define RI_ASCR1_CH_23                  (0x00800000U)                          /*!< Bit 23 */
5956
#define RI_ASCR1_CH_24                  (0x01000000U)                          /*!< Bit 24 */
5957
#define RI_ASCR1_CH_25                  (0x02000000U)                          /*!< Bit 25 */
5958
#define RI_ASCR1_VCOMP_Pos              (26U)                                  
50 mjames 5959
#define RI_ASCR1_VCOMP_Msk              (0x1UL << RI_ASCR1_VCOMP_Pos)           /*!< 0x04000000 */
30 mjames 5960
#define RI_ASCR1_VCOMP                  RI_ASCR1_VCOMP_Msk                     /*!< ADC analog switch selection for internal node to COMP1 */
5961
#define RI_ASCR1_CH_27                  (0x08000000U)                          /*!< Bit 27 */
5962
#define RI_ASCR1_CH_28                  (0x10000000U)                          /*!< Bit 28 */
5963
#define RI_ASCR1_CH_29                  (0x20000000U)                          /*!< Bit 29 */
5964
#define RI_ASCR1_CH_30                  (0x40000000U)                          /*!< Bit 30 */
5965
#define RI_ASCR1_SCM_Pos                (31U)                                  
50 mjames 5966
#define RI_ASCR1_SCM_Msk                (0x1UL << RI_ASCR1_SCM_Pos)             /*!< 0x80000000 */
30 mjames 5967
#define RI_ASCR1_SCM                    RI_ASCR1_SCM_Msk                       /*!< I/O Switch control mode */
5968
 
5969
/********************  Bit definition for RI_ASCR2 register  ********************/
5970
#define RI_ASCR2_GR10_1                 (0x00000001U)                          /*!< GR10-1 selection bit */
5971
#define RI_ASCR2_GR10_2                 (0x00000002U)                          /*!< GR10-2 selection bit */
5972
#define RI_ASCR2_GR10_3                 (0x00000004U)                          /*!< GR10-3 selection bit */
5973
#define RI_ASCR2_GR10_4                 (0x00000008U)                          /*!< GR10-4 selection bit */
5974
#define RI_ASCR2_GR6_Pos                (4U)                                   
50 mjames 5975
#define RI_ASCR2_GR6_Msk                (0x1800003UL << RI_ASCR2_GR6_Pos)       /*!< 0x18000030 */
30 mjames 5976
#define RI_ASCR2_GR6                    RI_ASCR2_GR6_Msk                       /*!< GR6 selection bits */
50 mjames 5977
#define RI_ASCR2_GR6_1                  (0x0000001UL << RI_ASCR2_GR6_Pos)       /*!< 0x00000010 */
5978
#define RI_ASCR2_GR6_2                  (0x0000002UL << RI_ASCR2_GR6_Pos)       /*!< 0x00000020 */
5979
#define RI_ASCR2_GR6_3                  (0x0800000UL << RI_ASCR2_GR6_Pos)       /*!< 0x08000000 */
5980
#define RI_ASCR2_GR6_4                  (0x1000000UL << RI_ASCR2_GR6_Pos)       /*!< 0x10000000 */
30 mjames 5981
#define RI_ASCR2_GR5_1                  (0x00000040U)                          /*!< GR5-1 selection bit */
5982
#define RI_ASCR2_GR5_2                  (0x00000080U)                          /*!< GR5-2 selection bit */
5983
#define RI_ASCR2_GR5_3                  (0x00000100U)                          /*!< GR5-3 selection bit */
5984
#define RI_ASCR2_GR4_1                  (0x00000200U)                          /*!< GR4-1 selection bit */
5985
#define RI_ASCR2_GR4_2                  (0x00000400U)                          /*!< GR4-2 selection bit */
5986
#define RI_ASCR2_GR4_3                  (0x00000800U)                          /*!< GR4-3 selection bit */
5987
#define RI_ASCR2_GR4_4                  (0x00008000U)                          /*!< GR4-4 selection bit */
5988
#define RI_ASCR2_CH0b_Pos               (16U)                                  
50 mjames 5989
#define RI_ASCR2_CH0b_Msk               (0x1UL << RI_ASCR2_CH0b_Pos)            /*!< 0x00010000 */
30 mjames 5990
#define RI_ASCR2_CH0b                   RI_ASCR2_CH0b_Msk                      /*!< CH0b selection bit */
5991
 
5992
/********************  Bit definition for RI_HYSCR1 register  ********************/
5993
#define RI_HYSCR1_PA_Pos                (0U)                                   
50 mjames 5994
#define RI_HYSCR1_PA_Msk                (0xFFFFUL << RI_HYSCR1_PA_Pos)          /*!< 0x0000FFFF */
30 mjames 5995
#define RI_HYSCR1_PA                    RI_HYSCR1_PA_Msk                       /*!< PA[15:0] Port A Hysteresis selection */
50 mjames 5996
#define RI_HYSCR1_PA_0                  (0x0001UL << RI_HYSCR1_PA_Pos)          /*!< 0x00000001 */
5997
#define RI_HYSCR1_PA_1                  (0x0002UL << RI_HYSCR1_PA_Pos)          /*!< 0x00000002 */
5998
#define RI_HYSCR1_PA_2                  (0x0004UL << RI_HYSCR1_PA_Pos)          /*!< 0x00000004 */
5999
#define RI_HYSCR1_PA_3                  (0x0008UL << RI_HYSCR1_PA_Pos)          /*!< 0x00000008 */
6000
#define RI_HYSCR1_PA_4                  (0x0010UL << RI_HYSCR1_PA_Pos)          /*!< 0x00000010 */
6001
#define RI_HYSCR1_PA_5                  (0x0020UL << RI_HYSCR1_PA_Pos)          /*!< 0x00000020 */
6002
#define RI_HYSCR1_PA_6                  (0x0040UL << RI_HYSCR1_PA_Pos)          /*!< 0x00000040 */
6003
#define RI_HYSCR1_PA_7                  (0x0080UL << RI_HYSCR1_PA_Pos)          /*!< 0x00000080 */
6004
#define RI_HYSCR1_PA_8                  (0x0100UL << RI_HYSCR1_PA_Pos)          /*!< 0x00000100 */
6005
#define RI_HYSCR1_PA_9                  (0x0200UL << RI_HYSCR1_PA_Pos)          /*!< 0x00000200 */
6006
#define RI_HYSCR1_PA_10                 (0x0400UL << RI_HYSCR1_PA_Pos)          /*!< 0x00000400 */
6007
#define RI_HYSCR1_PA_11                 (0x0800UL << RI_HYSCR1_PA_Pos)          /*!< 0x00000800 */
6008
#define RI_HYSCR1_PA_12                 (0x1000UL << RI_HYSCR1_PA_Pos)          /*!< 0x00001000 */
6009
#define RI_HYSCR1_PA_13                 (0x2000UL << RI_HYSCR1_PA_Pos)          /*!< 0x00002000 */
6010
#define RI_HYSCR1_PA_14                 (0x4000UL << RI_HYSCR1_PA_Pos)          /*!< 0x00004000 */
6011
#define RI_HYSCR1_PA_15                 (0x8000UL << RI_HYSCR1_PA_Pos)          /*!< 0x00008000 */
30 mjames 6012
 
6013
#define RI_HYSCR1_PB_Pos                (16U)                                  
50 mjames 6014
#define RI_HYSCR1_PB_Msk                (0xFFFFUL << RI_HYSCR1_PB_Pos)          /*!< 0xFFFF0000 */
30 mjames 6015
#define RI_HYSCR1_PB                    RI_HYSCR1_PB_Msk                       /*!< PB[15:0] Port B Hysteresis selection */
50 mjames 6016
#define RI_HYSCR1_PB_0                  (0x0001UL << RI_HYSCR1_PB_Pos)          /*!< 0x00010000 */
6017
#define RI_HYSCR1_PB_1                  (0x0002UL << RI_HYSCR1_PB_Pos)          /*!< 0x00020000 */
6018
#define RI_HYSCR1_PB_2                  (0x0004UL << RI_HYSCR1_PB_Pos)          /*!< 0x00040000 */
6019
#define RI_HYSCR1_PB_3                  (0x0008UL << RI_HYSCR1_PB_Pos)          /*!< 0x00080000 */
6020
#define RI_HYSCR1_PB_4                  (0x0010UL << RI_HYSCR1_PB_Pos)          /*!< 0x00100000 */
6021
#define RI_HYSCR1_PB_5                  (0x0020UL << RI_HYSCR1_PB_Pos)          /*!< 0x00200000 */
6022
#define RI_HYSCR1_PB_6                  (0x0040UL << RI_HYSCR1_PB_Pos)          /*!< 0x00400000 */
6023
#define RI_HYSCR1_PB_7                  (0x0080UL << RI_HYSCR1_PB_Pos)          /*!< 0x00800000 */
6024
#define RI_HYSCR1_PB_8                  (0x0100UL << RI_HYSCR1_PB_Pos)          /*!< 0x01000000 */
6025
#define RI_HYSCR1_PB_9                  (0x0200UL << RI_HYSCR1_PB_Pos)          /*!< 0x02000000 */
6026
#define RI_HYSCR1_PB_10                 (0x0400UL << RI_HYSCR1_PB_Pos)          /*!< 0x04000000 */
6027
#define RI_HYSCR1_PB_11                 (0x0800UL << RI_HYSCR1_PB_Pos)          /*!< 0x08000000 */
6028
#define RI_HYSCR1_PB_12                 (0x1000UL << RI_HYSCR1_PB_Pos)          /*!< 0x10000000 */
6029
#define RI_HYSCR1_PB_13                 (0x2000UL << RI_HYSCR1_PB_Pos)          /*!< 0x20000000 */
6030
#define RI_HYSCR1_PB_14                 (0x4000UL << RI_HYSCR1_PB_Pos)          /*!< 0x40000000 */
6031
#define RI_HYSCR1_PB_15                 (0x8000UL << RI_HYSCR1_PB_Pos)          /*!< 0x80000000 */
30 mjames 6032
 
6033
/********************  Bit definition for RI_HYSCR2 register  ********************/
6034
#define RI_HYSCR2_PC_Pos                (0U)                                   
50 mjames 6035
#define RI_HYSCR2_PC_Msk                (0xFFFFUL << RI_HYSCR2_PC_Pos)          /*!< 0x0000FFFF */
30 mjames 6036
#define RI_HYSCR2_PC                    RI_HYSCR2_PC_Msk                       /*!< PC[15:0] Port C Hysteresis selection */
50 mjames 6037
#define RI_HYSCR2_PC_0                  (0x0001UL << RI_HYSCR2_PC_Pos)          /*!< 0x00000001 */
6038
#define RI_HYSCR2_PC_1                  (0x0002UL << RI_HYSCR2_PC_Pos)          /*!< 0x00000002 */
6039
#define RI_HYSCR2_PC_2                  (0x0004UL << RI_HYSCR2_PC_Pos)          /*!< 0x00000004 */
6040
#define RI_HYSCR2_PC_3                  (0x0008UL << RI_HYSCR2_PC_Pos)          /*!< 0x00000008 */
6041
#define RI_HYSCR2_PC_4                  (0x0010UL << RI_HYSCR2_PC_Pos)          /*!< 0x00000010 */
6042
#define RI_HYSCR2_PC_5                  (0x0020UL << RI_HYSCR2_PC_Pos)          /*!< 0x00000020 */
6043
#define RI_HYSCR2_PC_6                  (0x0040UL << RI_HYSCR2_PC_Pos)          /*!< 0x00000040 */
6044
#define RI_HYSCR2_PC_7                  (0x0080UL << RI_HYSCR2_PC_Pos)          /*!< 0x00000080 */
6045
#define RI_HYSCR2_PC_8                  (0x0100UL << RI_HYSCR2_PC_Pos)          /*!< 0x00000100 */
6046
#define RI_HYSCR2_PC_9                  (0x0200UL << RI_HYSCR2_PC_Pos)          /*!< 0x00000200 */
6047
#define RI_HYSCR2_PC_10                 (0x0400UL << RI_HYSCR2_PC_Pos)          /*!< 0x00000400 */
6048
#define RI_HYSCR2_PC_11                 (0x0800UL << RI_HYSCR2_PC_Pos)          /*!< 0x00000800 */
6049
#define RI_HYSCR2_PC_12                 (0x1000UL << RI_HYSCR2_PC_Pos)          /*!< 0x00001000 */
6050
#define RI_HYSCR2_PC_13                 (0x2000UL << RI_HYSCR2_PC_Pos)          /*!< 0x00002000 */
6051
#define RI_HYSCR2_PC_14                 (0x4000UL << RI_HYSCR2_PC_Pos)          /*!< 0x00004000 */
6052
#define RI_HYSCR2_PC_15                 (0x8000UL << RI_HYSCR2_PC_Pos)          /*!< 0x00008000 */
30 mjames 6053
 
6054
#define RI_HYSCR2_PD_Pos                (16U)                                  
50 mjames 6055
#define RI_HYSCR2_PD_Msk                (0xFFFFUL << RI_HYSCR2_PD_Pos)          /*!< 0xFFFF0000 */
30 mjames 6056
#define RI_HYSCR2_PD                    RI_HYSCR2_PD_Msk                       /*!< PD[15:0] Port D Hysteresis selection */
50 mjames 6057
#define RI_HYSCR2_PD_0                  (0x0001UL << RI_HYSCR2_PD_Pos)          /*!< 0x00010000 */
6058
#define RI_HYSCR2_PD_1                  (0x0002UL << RI_HYSCR2_PD_Pos)          /*!< 0x00020000 */
6059
#define RI_HYSCR2_PD_2                  (0x0004UL << RI_HYSCR2_PD_Pos)          /*!< 0x00040000 */
6060
#define RI_HYSCR2_PD_3                  (0x0008UL << RI_HYSCR2_PD_Pos)          /*!< 0x00080000 */
6061
#define RI_HYSCR2_PD_4                  (0x0010UL << RI_HYSCR2_PD_Pos)          /*!< 0x00100000 */
6062
#define RI_HYSCR2_PD_5                  (0x0020UL << RI_HYSCR2_PD_Pos)          /*!< 0x00200000 */
6063
#define RI_HYSCR2_PD_6                  (0x0040UL << RI_HYSCR2_PD_Pos)          /*!< 0x00400000 */
6064
#define RI_HYSCR2_PD_7                  (0x0080UL << RI_HYSCR2_PD_Pos)          /*!< 0x00800000 */
6065
#define RI_HYSCR2_PD_8                  (0x0100UL << RI_HYSCR2_PD_Pos)          /*!< 0x01000000 */
6066
#define RI_HYSCR2_PD_9                  (0x0200UL << RI_HYSCR2_PD_Pos)          /*!< 0x02000000 */
6067
#define RI_HYSCR2_PD_10                 (0x0400UL << RI_HYSCR2_PD_Pos)          /*!< 0x04000000 */
6068
#define RI_HYSCR2_PD_11                 (0x0800UL << RI_HYSCR2_PD_Pos)          /*!< 0x08000000 */
6069
#define RI_HYSCR2_PD_12                 (0x1000UL << RI_HYSCR2_PD_Pos)          /*!< 0x10000000 */
6070
#define RI_HYSCR2_PD_13                 (0x2000UL << RI_HYSCR2_PD_Pos)          /*!< 0x20000000 */
6071
#define RI_HYSCR2_PD_14                 (0x4000UL << RI_HYSCR2_PD_Pos)          /*!< 0x40000000 */
6072
#define RI_HYSCR2_PD_15                 (0x8000UL << RI_HYSCR2_PD_Pos)          /*!< 0x80000000 */
30 mjames 6073
 
6074
/********************  Bit definition for RI_HYSCR3 register  ********************/
6075
#define RI_HYSCR3_PE_Pos                (0U)                                   
50 mjames 6076
#define RI_HYSCR3_PE_Msk                (0xFFFFUL << RI_HYSCR3_PE_Pos)          /*!< 0x0000FFFF */
30 mjames 6077
#define RI_HYSCR3_PE                    RI_HYSCR3_PE_Msk                       /*!< PE[15:0] Port E Hysteresis selection */
50 mjames 6078
#define RI_HYSCR3_PE_0                  (0x0001UL << RI_HYSCR3_PE_Pos)          /*!< 0x00000001 */
6079
#define RI_HYSCR3_PE_1                  (0x0002UL << RI_HYSCR3_PE_Pos)          /*!< 0x00000002 */
6080
#define RI_HYSCR3_PE_2                  (0x0004UL << RI_HYSCR3_PE_Pos)          /*!< 0x00000004 */
6081
#define RI_HYSCR3_PE_3                  (0x0008UL << RI_HYSCR3_PE_Pos)          /*!< 0x00000008 */
6082
#define RI_HYSCR3_PE_4                  (0x0010UL << RI_HYSCR3_PE_Pos)          /*!< 0x00000010 */
6083
#define RI_HYSCR3_PE_5                  (0x0020UL << RI_HYSCR3_PE_Pos)          /*!< 0x00000020 */
6084
#define RI_HYSCR3_PE_6                  (0x0040UL << RI_HYSCR3_PE_Pos)          /*!< 0x00000040 */
6085
#define RI_HYSCR3_PE_7                  (0x0080UL << RI_HYSCR3_PE_Pos)          /*!< 0x00000080 */
6086
#define RI_HYSCR3_PE_8                  (0x0100UL << RI_HYSCR3_PE_Pos)          /*!< 0x00000100 */
6087
#define RI_HYSCR3_PE_9                  (0x0200UL << RI_HYSCR3_PE_Pos)          /*!< 0x00000200 */
6088
#define RI_HYSCR3_PE_10                 (0x0400UL << RI_HYSCR3_PE_Pos)          /*!< 0x00000400 */
6089
#define RI_HYSCR3_PE_11                 (0x0800UL << RI_HYSCR3_PE_Pos)          /*!< 0x00000800 */
6090
#define RI_HYSCR3_PE_12                 (0x1000UL << RI_HYSCR3_PE_Pos)          /*!< 0x00001000 */
6091
#define RI_HYSCR3_PE_13                 (0x2000UL << RI_HYSCR3_PE_Pos)          /*!< 0x00002000 */
6092
#define RI_HYSCR3_PE_14                 (0x4000UL << RI_HYSCR3_PE_Pos)          /*!< 0x00004000 */
6093
#define RI_HYSCR3_PE_15                 (0x8000UL << RI_HYSCR3_PE_Pos)          /*!< 0x00008000 */
6094
#define RI_HYSCR3_PF_Pos                (16U)                                  
6095
#define RI_HYSCR3_PF_Msk                (0xFFFFUL << RI_HYSCR3_PF_Pos)          /*!< 0xFFFF0000 */
6096
#define RI_HYSCR3_PF                    RI_HYSCR3_PF_Msk                       /*!< PF[15:0] Port F Hysteresis selection */
6097
#define RI_HYSCR3_PF_0                  (0x0001UL << RI_HYSCR3_PF_Pos)          /*!< 0x00010000 */
6098
#define RI_HYSCR3_PF_1                  (0x0002UL << RI_HYSCR3_PF_Pos)          /*!< 0x00020000 */
6099
#define RI_HYSCR3_PF_2                  (0x0004UL << RI_HYSCR3_PF_Pos)          /*!< 0x00040000 */
6100
#define RI_HYSCR3_PF_3                  (0x0008UL << RI_HYSCR3_PF_Pos)          /*!< 0x00080000 */
6101
#define RI_HYSCR3_PF_4                  (0x0010UL << RI_HYSCR3_PF_Pos)          /*!< 0x00100000 */
6102
#define RI_HYSCR3_PF_5                  (0x0020UL << RI_HYSCR3_PF_Pos)          /*!< 0x00200000 */
6103
#define RI_HYSCR3_PF_6                  (0x0040UL << RI_HYSCR3_PF_Pos)          /*!< 0x00400000 */
6104
#define RI_HYSCR3_PF_7                  (0x0080UL << RI_HYSCR3_PF_Pos)          /*!< 0x00800000 */
6105
#define RI_HYSCR3_PF_8                  (0x0100UL << RI_HYSCR3_PF_Pos)          /*!< 0x01000000 */
6106
#define RI_HYSCR3_PF_9                  (0x0200UL << RI_HYSCR3_PF_Pos)          /*!< 0x02000000 */
6107
#define RI_HYSCR3_PF_10                 (0x0400UL << RI_HYSCR3_PF_Pos)          /*!< 0x04000000 */
6108
#define RI_HYSCR3_PF_11                 (0x0800UL << RI_HYSCR3_PF_Pos)          /*!< 0x08000000 */
6109
#define RI_HYSCR3_PF_12                 (0x1000UL << RI_HYSCR3_PF_Pos)          /*!< 0x10000000 */
6110
#define RI_HYSCR3_PF_13                 (0x2000UL << RI_HYSCR3_PF_Pos)          /*!< 0x20000000 */
6111
#define RI_HYSCR3_PF_14                 (0x4000UL << RI_HYSCR3_PF_Pos)          /*!< 0x40000000 */
6112
#define RI_HYSCR3_PF_15                 (0x8000UL << RI_HYSCR3_PF_Pos)          /*!< 0x80000000 */
6113
/********************  Bit definition for RI_HYSCR4 register  ********************/
6114
#define RI_HYSCR4_PG_Pos                (0U)                                   
6115
#define RI_HYSCR4_PG_Msk                (0xFFFFUL << RI_HYSCR4_PG_Pos)          /*!< 0x0000FFFF */
6116
#define RI_HYSCR4_PG                    RI_HYSCR4_PG_Msk                       /*!< PG[15:0] Port G Hysteresis selection */
6117
#define RI_HYSCR4_PG_0                  (0x0001UL << RI_HYSCR4_PG_Pos)          /*!< 0x00000001 */
6118
#define RI_HYSCR4_PG_1                  (0x0002UL << RI_HYSCR4_PG_Pos)          /*!< 0x00000002 */
6119
#define RI_HYSCR4_PG_2                  (0x0004UL << RI_HYSCR4_PG_Pos)          /*!< 0x00000004 */
6120
#define RI_HYSCR4_PG_3                  (0x0008UL << RI_HYSCR4_PG_Pos)          /*!< 0x00000008 */
6121
#define RI_HYSCR4_PG_4                  (0x0010UL << RI_HYSCR4_PG_Pos)          /*!< 0x00000010 */
6122
#define RI_HYSCR4_PG_5                  (0x0020UL << RI_HYSCR4_PG_Pos)          /*!< 0x00000020 */
6123
#define RI_HYSCR4_PG_6                  (0x0040UL << RI_HYSCR4_PG_Pos)          /*!< 0x00000040 */
6124
#define RI_HYSCR4_PG_7                  (0x0080UL << RI_HYSCR4_PG_Pos)          /*!< 0x00000080 */
6125
#define RI_HYSCR4_PG_8                  (0x0100UL << RI_HYSCR4_PG_Pos)          /*!< 0x00000100 */
6126
#define RI_HYSCR4_PG_9                  (0x0200UL << RI_HYSCR4_PG_Pos)          /*!< 0x00000200 */
6127
#define RI_HYSCR4_PG_10                 (0x0400UL << RI_HYSCR4_PG_Pos)          /*!< 0x00000400 */
6128
#define RI_HYSCR4_PG_11                 (0x0800UL << RI_HYSCR4_PG_Pos)          /*!< 0x00000800 */
6129
#define RI_HYSCR4_PG_12                 (0x1000UL << RI_HYSCR4_PG_Pos)          /*!< 0x00001000 */
6130
#define RI_HYSCR4_PG_13                 (0x2000UL << RI_HYSCR4_PG_Pos)          /*!< 0x00002000 */
6131
#define RI_HYSCR4_PG_14                 (0x4000UL << RI_HYSCR4_PG_Pos)          /*!< 0x00004000 */
6132
#define RI_HYSCR4_PG_15                 (0x8000UL << RI_HYSCR4_PG_Pos)          /*!< 0x00008000 */
30 mjames 6133
 
6134
/********************  Bit definition for RI_ASMR1 register  ********************/
6135
#define RI_ASMR1_PA_Pos                 (0U)                                   
50 mjames 6136
#define RI_ASMR1_PA_Msk                 (0xFFFFUL << RI_ASMR1_PA_Pos)           /*!< 0x0000FFFF */
30 mjames 6137
#define RI_ASMR1_PA                     RI_ASMR1_PA_Msk                        /*!< PA[15:0] Port A selection*/
50 mjames 6138
#define RI_ASMR1_PA_0                   (0x0001UL << RI_ASMR1_PA_Pos)           /*!< 0x00000001 */
6139
#define RI_ASMR1_PA_1                   (0x0002UL << RI_ASMR1_PA_Pos)           /*!< 0x00000002 */
6140
#define RI_ASMR1_PA_2                   (0x0004UL << RI_ASMR1_PA_Pos)           /*!< 0x00000004 */
6141
#define RI_ASMR1_PA_3                   (0x0008UL << RI_ASMR1_PA_Pos)           /*!< 0x00000008 */
6142
#define RI_ASMR1_PA_4                   (0x0010UL << RI_ASMR1_PA_Pos)           /*!< 0x00000010 */
6143
#define RI_ASMR1_PA_5                   (0x0020UL << RI_ASMR1_PA_Pos)           /*!< 0x00000020 */
6144
#define RI_ASMR1_PA_6                   (0x0040UL << RI_ASMR1_PA_Pos)           /*!< 0x00000040 */
6145
#define RI_ASMR1_PA_7                   (0x0080UL << RI_ASMR1_PA_Pos)           /*!< 0x00000080 */
6146
#define RI_ASMR1_PA_8                   (0x0100UL << RI_ASMR1_PA_Pos)           /*!< 0x00000100 */
6147
#define RI_ASMR1_PA_9                   (0x0200UL << RI_ASMR1_PA_Pos)           /*!< 0x00000200 */
6148
#define RI_ASMR1_PA_10                  (0x0400UL << RI_ASMR1_PA_Pos)           /*!< 0x00000400 */
6149
#define RI_ASMR1_PA_11                  (0x0800UL << RI_ASMR1_PA_Pos)           /*!< 0x00000800 */
6150
#define RI_ASMR1_PA_12                  (0x1000UL << RI_ASMR1_PA_Pos)           /*!< 0x00001000 */
6151
#define RI_ASMR1_PA_13                  (0x2000UL << RI_ASMR1_PA_Pos)           /*!< 0x00002000 */
6152
#define RI_ASMR1_PA_14                  (0x4000UL << RI_ASMR1_PA_Pos)           /*!< 0x00004000 */
6153
#define RI_ASMR1_PA_15                  (0x8000UL << RI_ASMR1_PA_Pos)           /*!< 0x00008000 */
30 mjames 6154
 
6155
/********************  Bit definition for RI_CMR1 register  ********************/
6156
#define RI_CMR1_PA_Pos                  (0U)                                   
50 mjames 6157
#define RI_CMR1_PA_Msk                  (0xFFFFUL << RI_CMR1_PA_Pos)            /*!< 0x0000FFFF */
30 mjames 6158
#define RI_CMR1_PA                      RI_CMR1_PA_Msk                         /*!< PA[15:0] Port A selection*/
50 mjames 6159
#define RI_CMR1_PA_0                    (0x0001UL << RI_CMR1_PA_Pos)            /*!< 0x00000001 */
6160
#define RI_CMR1_PA_1                    (0x0002UL << RI_CMR1_PA_Pos)            /*!< 0x00000002 */
6161
#define RI_CMR1_PA_2                    (0x0004UL << RI_CMR1_PA_Pos)            /*!< 0x00000004 */
6162
#define RI_CMR1_PA_3                    (0x0008UL << RI_CMR1_PA_Pos)            /*!< 0x00000008 */
6163
#define RI_CMR1_PA_4                    (0x0010UL << RI_CMR1_PA_Pos)            /*!< 0x00000010 */
6164
#define RI_CMR1_PA_5                    (0x0020UL << RI_CMR1_PA_Pos)            /*!< 0x00000020 */
6165
#define RI_CMR1_PA_6                    (0x0040UL << RI_CMR1_PA_Pos)            /*!< 0x00000040 */
6166
#define RI_CMR1_PA_7                    (0x0080UL << RI_CMR1_PA_Pos)            /*!< 0x00000080 */
6167
#define RI_CMR1_PA_8                    (0x0100UL << RI_CMR1_PA_Pos)            /*!< 0x00000100 */
6168
#define RI_CMR1_PA_9                    (0x0200UL << RI_CMR1_PA_Pos)            /*!< 0x00000200 */
6169
#define RI_CMR1_PA_10                   (0x0400UL << RI_CMR1_PA_Pos)            /*!< 0x00000400 */
6170
#define RI_CMR1_PA_11                   (0x0800UL << RI_CMR1_PA_Pos)            /*!< 0x00000800 */
6171
#define RI_CMR1_PA_12                   (0x1000UL << RI_CMR1_PA_Pos)            /*!< 0x00001000 */
6172
#define RI_CMR1_PA_13                   (0x2000UL << RI_CMR1_PA_Pos)            /*!< 0x00002000 */
6173
#define RI_CMR1_PA_14                   (0x4000UL << RI_CMR1_PA_Pos)            /*!< 0x00004000 */
6174
#define RI_CMR1_PA_15                   (0x8000UL << RI_CMR1_PA_Pos)            /*!< 0x00008000 */
30 mjames 6175
 
6176
/********************  Bit definition for RI_CICR1 register  ********************/
6177
#define RI_CICR1_PA_Pos                 (0U)                                   
50 mjames 6178
#define RI_CICR1_PA_Msk                 (0xFFFFUL << RI_CICR1_PA_Pos)           /*!< 0x0000FFFF */
30 mjames 6179
#define RI_CICR1_PA                     RI_CICR1_PA_Msk                        /*!< PA[15:0] Port A selection*/
50 mjames 6180
#define RI_CICR1_PA_0                   (0x0001UL << RI_CICR1_PA_Pos)           /*!< 0x00000001 */
6181
#define RI_CICR1_PA_1                   (0x0002UL << RI_CICR1_PA_Pos)           /*!< 0x00000002 */
6182
#define RI_CICR1_PA_2                   (0x0004UL << RI_CICR1_PA_Pos)           /*!< 0x00000004 */
6183
#define RI_CICR1_PA_3                   (0x0008UL << RI_CICR1_PA_Pos)           /*!< 0x00000008 */
6184
#define RI_CICR1_PA_4                   (0x0010UL << RI_CICR1_PA_Pos)           /*!< 0x00000010 */
6185
#define RI_CICR1_PA_5                   (0x0020UL << RI_CICR1_PA_Pos)           /*!< 0x00000020 */
6186
#define RI_CICR1_PA_6                   (0x0040UL << RI_CICR1_PA_Pos)           /*!< 0x00000040 */
6187
#define RI_CICR1_PA_7                   (0x0080UL << RI_CICR1_PA_Pos)           /*!< 0x00000080 */
6188
#define RI_CICR1_PA_8                   (0x0100UL << RI_CICR1_PA_Pos)           /*!< 0x00000100 */
6189
#define RI_CICR1_PA_9                   (0x0200UL << RI_CICR1_PA_Pos)           /*!< 0x00000200 */
6190
#define RI_CICR1_PA_10                  (0x0400UL << RI_CICR1_PA_Pos)           /*!< 0x00000400 */
6191
#define RI_CICR1_PA_11                  (0x0800UL << RI_CICR1_PA_Pos)           /*!< 0x00000800 */
6192
#define RI_CICR1_PA_12                  (0x1000UL << RI_CICR1_PA_Pos)           /*!< 0x00001000 */
6193
#define RI_CICR1_PA_13                  (0x2000UL << RI_CICR1_PA_Pos)           /*!< 0x00002000 */
6194
#define RI_CICR1_PA_14                  (0x4000UL << RI_CICR1_PA_Pos)           /*!< 0x00004000 */
6195
#define RI_CICR1_PA_15                  (0x8000UL << RI_CICR1_PA_Pos)           /*!< 0x00008000 */
30 mjames 6196
 
6197
/********************  Bit definition for RI_ASMR2 register  ********************/
6198
#define RI_ASMR2_PB_Pos                 (0U)                                   
50 mjames 6199
#define RI_ASMR2_PB_Msk                 (0xFFFFUL << RI_ASMR2_PB_Pos)           /*!< 0x0000FFFF */
30 mjames 6200
#define RI_ASMR2_PB                     RI_ASMR2_PB_Msk                        /*!< PB[15:0] Port B selection */
50 mjames 6201
#define RI_ASMR2_PB_0                   (0x0001UL << RI_ASMR2_PB_Pos)           /*!< 0x00000001 */
6202
#define RI_ASMR2_PB_1                   (0x0002UL << RI_ASMR2_PB_Pos)           /*!< 0x00000002 */
6203
#define RI_ASMR2_PB_2                   (0x0004UL << RI_ASMR2_PB_Pos)           /*!< 0x00000004 */
6204
#define RI_ASMR2_PB_3                   (0x0008UL << RI_ASMR2_PB_Pos)           /*!< 0x00000008 */
6205
#define RI_ASMR2_PB_4                   (0x0010UL << RI_ASMR2_PB_Pos)           /*!< 0x00000010 */
6206
#define RI_ASMR2_PB_5                   (0x0020UL << RI_ASMR2_PB_Pos)           /*!< 0x00000020 */
6207
#define RI_ASMR2_PB_6                   (0x0040UL << RI_ASMR2_PB_Pos)           /*!< 0x00000040 */
6208
#define RI_ASMR2_PB_7                   (0x0080UL << RI_ASMR2_PB_Pos)           /*!< 0x00000080 */
6209
#define RI_ASMR2_PB_8                   (0x0100UL << RI_ASMR2_PB_Pos)           /*!< 0x00000100 */
6210
#define RI_ASMR2_PB_9                   (0x0200UL << RI_ASMR2_PB_Pos)           /*!< 0x00000200 */
6211
#define RI_ASMR2_PB_10                  (0x0400UL << RI_ASMR2_PB_Pos)           /*!< 0x00000400 */
6212
#define RI_ASMR2_PB_11                  (0x0800UL << RI_ASMR2_PB_Pos)           /*!< 0x00000800 */
6213
#define RI_ASMR2_PB_12                  (0x1000UL << RI_ASMR2_PB_Pos)           /*!< 0x00001000 */
6214
#define RI_ASMR2_PB_13                  (0x2000UL << RI_ASMR2_PB_Pos)           /*!< 0x00002000 */
6215
#define RI_ASMR2_PB_14                  (0x4000UL << RI_ASMR2_PB_Pos)           /*!< 0x00004000 */
6216
#define RI_ASMR2_PB_15                  (0x8000UL << RI_ASMR2_PB_Pos)           /*!< 0x00008000 */
30 mjames 6217
 
6218
/********************  Bit definition for RI_CMR2 register  ********************/
6219
#define RI_CMR2_PB_Pos                  (0U)                                   
50 mjames 6220
#define RI_CMR2_PB_Msk                  (0xFFFFUL << RI_CMR2_PB_Pos)            /*!< 0x0000FFFF */
30 mjames 6221
#define RI_CMR2_PB                      RI_CMR2_PB_Msk                         /*!< PB[15:0] Port B selection */
50 mjames 6222
#define RI_CMR2_PB_0                    (0x0001UL << RI_CMR2_PB_Pos)            /*!< 0x00000001 */
6223
#define RI_CMR2_PB_1                    (0x0002UL << RI_CMR2_PB_Pos)            /*!< 0x00000002 */
6224
#define RI_CMR2_PB_2                    (0x0004UL << RI_CMR2_PB_Pos)            /*!< 0x00000004 */
6225
#define RI_CMR2_PB_3                    (0x0008UL << RI_CMR2_PB_Pos)            /*!< 0x00000008 */
6226
#define RI_CMR2_PB_4                    (0x0010UL << RI_CMR2_PB_Pos)            /*!< 0x00000010 */
6227
#define RI_CMR2_PB_5                    (0x0020UL << RI_CMR2_PB_Pos)            /*!< 0x00000020 */
6228
#define RI_CMR2_PB_6                    (0x0040UL << RI_CMR2_PB_Pos)            /*!< 0x00000040 */
6229
#define RI_CMR2_PB_7                    (0x0080UL << RI_CMR2_PB_Pos)            /*!< 0x00000080 */
6230
#define RI_CMR2_PB_8                    (0x0100UL << RI_CMR2_PB_Pos)            /*!< 0x00000100 */
6231
#define RI_CMR2_PB_9                    (0x0200UL << RI_CMR2_PB_Pos)            /*!< 0x00000200 */
6232
#define RI_CMR2_PB_10                   (0x0400UL << RI_CMR2_PB_Pos)            /*!< 0x00000400 */
6233
#define RI_CMR2_PB_11                   (0x0800UL << RI_CMR2_PB_Pos)            /*!< 0x00000800 */
6234
#define RI_CMR2_PB_12                   (0x1000UL << RI_CMR2_PB_Pos)            /*!< 0x00001000 */
6235
#define RI_CMR2_PB_13                   (0x2000UL << RI_CMR2_PB_Pos)            /*!< 0x00002000 */
6236
#define RI_CMR2_PB_14                   (0x4000UL << RI_CMR2_PB_Pos)            /*!< 0x00004000 */
6237
#define RI_CMR2_PB_15                   (0x8000UL << RI_CMR2_PB_Pos)            /*!< 0x00008000 */
30 mjames 6238
 
6239
/********************  Bit definition for RI_CICR2 register  ********************/
6240
#define RI_CICR2_PB_Pos                 (0U)                                   
50 mjames 6241
#define RI_CICR2_PB_Msk                 (0xFFFFUL << RI_CICR2_PB_Pos)           /*!< 0x0000FFFF */
30 mjames 6242
#define RI_CICR2_PB                     RI_CICR2_PB_Msk                        /*!< PB[15:0] Port B selection */
50 mjames 6243
#define RI_CICR2_PB_0                   (0x0001UL << RI_CICR2_PB_Pos)           /*!< 0x00000001 */
6244
#define RI_CICR2_PB_1                   (0x0002UL << RI_CICR2_PB_Pos)           /*!< 0x00000002 */
6245
#define RI_CICR2_PB_2                   (0x0004UL << RI_CICR2_PB_Pos)           /*!< 0x00000004 */
6246
#define RI_CICR2_PB_3                   (0x0008UL << RI_CICR2_PB_Pos)           /*!< 0x00000008 */
6247
#define RI_CICR2_PB_4                   (0x0010UL << RI_CICR2_PB_Pos)           /*!< 0x00000010 */
6248
#define RI_CICR2_PB_5                   (0x0020UL << RI_CICR2_PB_Pos)           /*!< 0x00000020 */
6249
#define RI_CICR2_PB_6                   (0x0040UL << RI_CICR2_PB_Pos)           /*!< 0x00000040 */
6250
#define RI_CICR2_PB_7                   (0x0080UL << RI_CICR2_PB_Pos)           /*!< 0x00000080 */
6251
#define RI_CICR2_PB_8                   (0x0100UL << RI_CICR2_PB_Pos)           /*!< 0x00000100 */
6252
#define RI_CICR2_PB_9                   (0x0200UL << RI_CICR2_PB_Pos)           /*!< 0x00000200 */
6253
#define RI_CICR2_PB_10                  (0x0400UL << RI_CICR2_PB_Pos)           /*!< 0x00000400 */
6254
#define RI_CICR2_PB_11                  (0x0800UL << RI_CICR2_PB_Pos)           /*!< 0x00000800 */
6255
#define RI_CICR2_PB_12                  (0x1000UL << RI_CICR2_PB_Pos)           /*!< 0x00001000 */
6256
#define RI_CICR2_PB_13                  (0x2000UL << RI_CICR2_PB_Pos)           /*!< 0x00002000 */
6257
#define RI_CICR2_PB_14                  (0x4000UL << RI_CICR2_PB_Pos)           /*!< 0x00004000 */
6258
#define RI_CICR2_PB_15                  (0x8000UL << RI_CICR2_PB_Pos)           /*!< 0x00008000 */
30 mjames 6259
 
6260
/********************  Bit definition for RI_ASMR3 register  ********************/
6261
#define RI_ASMR3_PC_Pos                 (0U)                                   
50 mjames 6262
#define RI_ASMR3_PC_Msk                 (0xFFFFUL << RI_ASMR3_PC_Pos)           /*!< 0x0000FFFF */
30 mjames 6263
#define RI_ASMR3_PC                     RI_ASMR3_PC_Msk                        /*!< PC[15:0] Port C selection */
50 mjames 6264
#define RI_ASMR3_PC_0                   (0x0001UL << RI_ASMR3_PC_Pos)           /*!< 0x00000001 */
6265
#define RI_ASMR3_PC_1                   (0x0002UL << RI_ASMR3_PC_Pos)           /*!< 0x00000002 */
6266
#define RI_ASMR3_PC_2                   (0x0004UL << RI_ASMR3_PC_Pos)           /*!< 0x00000004 */
6267
#define RI_ASMR3_PC_3                   (0x0008UL << RI_ASMR3_PC_Pos)           /*!< 0x00000008 */
6268
#define RI_ASMR3_PC_4                   (0x0010UL << RI_ASMR3_PC_Pos)           /*!< 0x00000010 */
6269
#define RI_ASMR3_PC_5                   (0x0020UL << RI_ASMR3_PC_Pos)           /*!< 0x00000020 */
6270
#define RI_ASMR3_PC_6                   (0x0040UL << RI_ASMR3_PC_Pos)           /*!< 0x00000040 */
6271
#define RI_ASMR3_PC_7                   (0x0080UL << RI_ASMR3_PC_Pos)           /*!< 0x00000080 */
6272
#define RI_ASMR3_PC_8                   (0x0100UL << RI_ASMR3_PC_Pos)           /*!< 0x00000100 */
6273
#define RI_ASMR3_PC_9                   (0x0200UL << RI_ASMR3_PC_Pos)           /*!< 0x00000200 */
6274
#define RI_ASMR3_PC_10                  (0x0400UL << RI_ASMR3_PC_Pos)           /*!< 0x00000400 */
6275
#define RI_ASMR3_PC_11                  (0x0800UL << RI_ASMR3_PC_Pos)           /*!< 0x00000800 */
6276
#define RI_ASMR3_PC_12                  (0x1000UL << RI_ASMR3_PC_Pos)           /*!< 0x00001000 */
6277
#define RI_ASMR3_PC_13                  (0x2000UL << RI_ASMR3_PC_Pos)           /*!< 0x00002000 */
6278
#define RI_ASMR3_PC_14                  (0x4000UL << RI_ASMR3_PC_Pos)           /*!< 0x00004000 */
6279
#define RI_ASMR3_PC_15                  (0x8000UL << RI_ASMR3_PC_Pos)           /*!< 0x00008000 */
30 mjames 6280
 
6281
/********************  Bit definition for RI_CMR3 register  ********************/
6282
#define RI_CMR3_PC_Pos                  (0U)                                   
50 mjames 6283
#define RI_CMR3_PC_Msk                  (0xFFFFUL << RI_CMR3_PC_Pos)            /*!< 0x0000FFFF */
30 mjames 6284
#define RI_CMR3_PC                      RI_CMR3_PC_Msk                         /*!< PC[15:0] Port C selection */
50 mjames 6285
#define RI_CMR3_PC_0                    (0x0001UL << RI_CMR3_PC_Pos)            /*!< 0x00000001 */
6286
#define RI_CMR3_PC_1                    (0x0002UL << RI_CMR3_PC_Pos)            /*!< 0x00000002 */
6287
#define RI_CMR3_PC_2                    (0x0004UL << RI_CMR3_PC_Pos)            /*!< 0x00000004 */
6288
#define RI_CMR3_PC_3                    (0x0008UL << RI_CMR3_PC_Pos)            /*!< 0x00000008 */
6289
#define RI_CMR3_PC_4                    (0x0010UL << RI_CMR3_PC_Pos)            /*!< 0x00000010 */
6290
#define RI_CMR3_PC_5                    (0x0020UL << RI_CMR3_PC_Pos)            /*!< 0x00000020 */
6291
#define RI_CMR3_PC_6                    (0x0040UL << RI_CMR3_PC_Pos)            /*!< 0x00000040 */
6292
#define RI_CMR3_PC_7                    (0x0080UL << RI_CMR3_PC_Pos)            /*!< 0x00000080 */
6293
#define RI_CMR3_PC_8                    (0x0100UL << RI_CMR3_PC_Pos)            /*!< 0x00000100 */
6294
#define RI_CMR3_PC_9                    (0x0200UL << RI_CMR3_PC_Pos)            /*!< 0x00000200 */
6295
#define RI_CMR3_PC_10                   (0x0400UL << RI_CMR3_PC_Pos)            /*!< 0x00000400 */
6296
#define RI_CMR3_PC_11                   (0x0800UL << RI_CMR3_PC_Pos)            /*!< 0x00000800 */
6297
#define RI_CMR3_PC_12                   (0x1000UL << RI_CMR3_PC_Pos)            /*!< 0x00001000 */
6298
#define RI_CMR3_PC_13                   (0x2000UL << RI_CMR3_PC_Pos)            /*!< 0x00002000 */
6299
#define RI_CMR3_PC_14                   (0x4000UL << RI_CMR3_PC_Pos)            /*!< 0x00004000 */
6300
#define RI_CMR3_PC_15                   (0x8000UL << RI_CMR3_PC_Pos)            /*!< 0x00008000 */
30 mjames 6301
 
6302
/********************  Bit definition for RI_CICR3 register  ********************/
6303
#define RI_CICR3_PC_Pos                 (0U)                                   
50 mjames 6304
#define RI_CICR3_PC_Msk                 (0xFFFFUL << RI_CICR3_PC_Pos)           /*!< 0x0000FFFF */
30 mjames 6305
#define RI_CICR3_PC                     RI_CICR3_PC_Msk                        /*!< PC[15:0] Port C selection */
50 mjames 6306
#define RI_CICR3_PC_0                   (0x0001UL << RI_CICR3_PC_Pos)           /*!< 0x00000001 */
6307
#define RI_CICR3_PC_1                   (0x0002UL << RI_CICR3_PC_Pos)           /*!< 0x00000002 */
6308
#define RI_CICR3_PC_2                   (0x0004UL << RI_CICR3_PC_Pos)           /*!< 0x00000004 */
6309
#define RI_CICR3_PC_3                   (0x0008UL << RI_CICR3_PC_Pos)           /*!< 0x00000008 */
6310
#define RI_CICR3_PC_4                   (0x0010UL << RI_CICR3_PC_Pos)           /*!< 0x00000010 */
6311
#define RI_CICR3_PC_5                   (0x0020UL << RI_CICR3_PC_Pos)           /*!< 0x00000020 */
6312
#define RI_CICR3_PC_6                   (0x0040UL << RI_CICR3_PC_Pos)           /*!< 0x00000040 */
6313
#define RI_CICR3_PC_7                   (0x0080UL << RI_CICR3_PC_Pos)           /*!< 0x00000080 */
6314
#define RI_CICR3_PC_8                   (0x0100UL << RI_CICR3_PC_Pos)           /*!< 0x00000100 */
6315
#define RI_CICR3_PC_9                   (0x0200UL << RI_CICR3_PC_Pos)           /*!< 0x00000200 */
6316
#define RI_CICR3_PC_10                  (0x0400UL << RI_CICR3_PC_Pos)           /*!< 0x00000400 */
6317
#define RI_CICR3_PC_11                  (0x0800UL << RI_CICR3_PC_Pos)           /*!< 0x00000800 */
6318
#define RI_CICR3_PC_12                  (0x1000UL << RI_CICR3_PC_Pos)           /*!< 0x00001000 */
6319
#define RI_CICR3_PC_13                  (0x2000UL << RI_CICR3_PC_Pos)           /*!< 0x00002000 */
6320
#define RI_CICR3_PC_14                  (0x4000UL << RI_CICR3_PC_Pos)           /*!< 0x00004000 */
6321
#define RI_CICR3_PC_15                  (0x8000UL << RI_CICR3_PC_Pos)           /*!< 0x00008000 */
30 mjames 6322
 
50 mjames 6323
/********************  Bit definition for RI_ASMR4 register  ********************/
6324
#define RI_ASMR4_PF_Pos                 (0U)                                   
6325
#define RI_ASMR4_PF_Msk                 (0xFFFFUL << RI_ASMR4_PF_Pos)           /*!< 0x0000FFFF */
6326
#define RI_ASMR4_PF                     RI_ASMR4_PF_Msk                        /*!< PF[15:0] Port F selection */
6327
#define RI_ASMR4_PF_0                   (0x0001UL << RI_ASMR4_PF_Pos)           /*!< 0x00000001 */
6328
#define RI_ASMR4_PF_1                   (0x0002UL << RI_ASMR4_PF_Pos)           /*!< 0x00000002 */
6329
#define RI_ASMR4_PF_2                   (0x0004UL << RI_ASMR4_PF_Pos)           /*!< 0x00000004 */
6330
#define RI_ASMR4_PF_3                   (0x0008UL << RI_ASMR4_PF_Pos)           /*!< 0x00000008 */
6331
#define RI_ASMR4_PF_4                   (0x0010UL << RI_ASMR4_PF_Pos)           /*!< 0x00000010 */
6332
#define RI_ASMR4_PF_5                   (0x0020UL << RI_ASMR4_PF_Pos)           /*!< 0x00000020 */
6333
#define RI_ASMR4_PF_6                   (0x0040UL << RI_ASMR4_PF_Pos)           /*!< 0x00000040 */
6334
#define RI_ASMR4_PF_7                   (0x0080UL << RI_ASMR4_PF_Pos)           /*!< 0x00000080 */
6335
#define RI_ASMR4_PF_8                   (0x0100UL << RI_ASMR4_PF_Pos)           /*!< 0x00000100 */
6336
#define RI_ASMR4_PF_9                   (0x0200UL << RI_ASMR4_PF_Pos)           /*!< 0x00000200 */
6337
#define RI_ASMR4_PF_10                  (0x0400UL << RI_ASMR4_PF_Pos)           /*!< 0x00000400 */
6338
#define RI_ASMR4_PF_11                  (0x0800UL << RI_ASMR4_PF_Pos)           /*!< 0x00000800 */
6339
#define RI_ASMR4_PF_12                  (0x1000UL << RI_ASMR4_PF_Pos)           /*!< 0x00001000 */
6340
#define RI_ASMR4_PF_13                  (0x2000UL << RI_ASMR4_PF_Pos)           /*!< 0x00002000 */
6341
#define RI_ASMR4_PF_14                  (0x4000UL << RI_ASMR4_PF_Pos)           /*!< 0x00004000 */
6342
#define RI_ASMR4_PF_15                  (0x8000UL << RI_ASMR4_PF_Pos)           /*!< 0x00008000 */
6343
 
6344
/********************  Bit definition for RI_CMR4 register  ********************/
6345
#define RI_CMR4_PF_Pos                  (0U)                                   
6346
#define RI_CMR4_PF_Msk                  (0xFFFFUL << RI_CMR4_PF_Pos)            /*!< 0x0000FFFF */
6347
#define RI_CMR4_PF                      RI_CMR4_PF_Msk                         /*!< PF[15:0] Port F selection */
6348
#define RI_CMR4_PF_0                    (0x0001UL << RI_CMR4_PF_Pos)            /*!< 0x00000001 */
6349
#define RI_CMR4_PF_1                    (0x0002UL << RI_CMR4_PF_Pos)            /*!< 0x00000002 */
6350
#define RI_CMR4_PF_2                    (0x0004UL << RI_CMR4_PF_Pos)            /*!< 0x00000004 */
6351
#define RI_CMR4_PF_3                    (0x0008UL << RI_CMR4_PF_Pos)            /*!< 0x00000008 */
6352
#define RI_CMR4_PF_4                    (0x0010UL << RI_CMR4_PF_Pos)            /*!< 0x00000010 */
6353
#define RI_CMR4_PF_5                    (0x0020UL << RI_CMR4_PF_Pos)            /*!< 0x00000020 */
6354
#define RI_CMR4_PF_6                    (0x0040UL << RI_CMR4_PF_Pos)            /*!< 0x00000040 */
6355
#define RI_CMR4_PF_7                    (0x0080UL << RI_CMR4_PF_Pos)            /*!< 0x00000080 */
6356
#define RI_CMR4_PF_8                    (0x0100UL << RI_CMR4_PF_Pos)            /*!< 0x00000100 */
6357
#define RI_CMR4_PF_9                    (0x0200UL << RI_CMR4_PF_Pos)            /*!< 0x00000200 */
6358
#define RI_CMR4_PF_10                   (0x0400UL << RI_CMR4_PF_Pos)            /*!< 0x00000400 */
6359
#define RI_CMR4_PF_11                   (0x0800UL << RI_CMR4_PF_Pos)            /*!< 0x00000800 */
6360
#define RI_CMR4_PF_12                   (0x1000UL << RI_CMR4_PF_Pos)            /*!< 0x00001000 */
6361
#define RI_CMR4_PF_13                   (0x2000UL << RI_CMR4_PF_Pos)            /*!< 0x00002000 */
6362
#define RI_CMR4_PF_14                   (0x4000UL << RI_CMR4_PF_Pos)            /*!< 0x00004000 */
6363
#define RI_CMR4_PF_15                   (0x8000UL << RI_CMR4_PF_Pos)            /*!< 0x00008000 */
6364
 
6365
/********************  Bit definition for RI_CICR4 register  ********************/
6366
#define RI_CICR4_PF_Pos                 (0U)                                   
6367
#define RI_CICR4_PF_Msk                 (0xFFFFUL << RI_CICR4_PF_Pos)           /*!< 0x0000FFFF */
6368
#define RI_CICR4_PF                     RI_CICR4_PF_Msk                        /*!< PF[15:0] Port F selection */
6369
#define RI_CICR4_PF_0                   (0x0001UL << RI_CICR4_PF_Pos)           /*!< 0x00000001 */
6370
#define RI_CICR4_PF_1                   (0x0002UL << RI_CICR4_PF_Pos)           /*!< 0x00000002 */
6371
#define RI_CICR4_PF_2                   (0x0004UL << RI_CICR4_PF_Pos)           /*!< 0x00000004 */
6372
#define RI_CICR4_PF_3                   (0x0008UL << RI_CICR4_PF_Pos)           /*!< 0x00000008 */
6373
#define RI_CICR4_PF_4                   (0x0010UL << RI_CICR4_PF_Pos)           /*!< 0x00000010 */
6374
#define RI_CICR4_PF_5                   (0x0020UL << RI_CICR4_PF_Pos)           /*!< 0x00000020 */
6375
#define RI_CICR4_PF_6                   (0x0040UL << RI_CICR4_PF_Pos)           /*!< 0x00000040 */
6376
#define RI_CICR4_PF_7                   (0x0080UL << RI_CICR4_PF_Pos)           /*!< 0x00000080 */
6377
#define RI_CICR4_PF_8                   (0x0100UL << RI_CICR4_PF_Pos)           /*!< 0x00000100 */
6378
#define RI_CICR4_PF_9                   (0x0200UL << RI_CICR4_PF_Pos)           /*!< 0x00000200 */
6379
#define RI_CICR4_PF_10                  (0x0400UL << RI_CICR4_PF_Pos)           /*!< 0x00000400 */
6380
#define RI_CICR4_PF_11                  (0x0800UL << RI_CICR4_PF_Pos)           /*!< 0x00000800 */
6381
#define RI_CICR4_PF_12                  (0x1000UL << RI_CICR4_PF_Pos)           /*!< 0x00001000 */
6382
#define RI_CICR4_PF_13                  (0x2000UL << RI_CICR4_PF_Pos)           /*!< 0x00002000 */
6383
#define RI_CICR4_PF_14                  (0x4000UL << RI_CICR4_PF_Pos)           /*!< 0x00004000 */
6384
#define RI_CICR4_PF_15                  (0x8000UL << RI_CICR4_PF_Pos)           /*!< 0x00008000 */
6385
 
6386
/********************  Bit definition for RI_ASMR5 register  ********************/
6387
#define RI_ASMR5_PG_Pos                 (0U)                                   
6388
#define RI_ASMR5_PG_Msk                 (0xFFFFUL << RI_ASMR5_PG_Pos)           /*!< 0x0000FFFF */
6389
#define RI_ASMR5_PG                     RI_ASMR5_PG_Msk                        /*!< PG[15:0] Port G selection */
6390
#define RI_ASMR5_PG_0                   (0x0001UL << RI_ASMR5_PG_Pos)           /*!< 0x00000001 */
6391
#define RI_ASMR5_PG_1                   (0x0002UL << RI_ASMR5_PG_Pos)           /*!< 0x00000002 */
6392
#define RI_ASMR5_PG_2                   (0x0004UL << RI_ASMR5_PG_Pos)           /*!< 0x00000004 */
6393
#define RI_ASMR5_PG_3                   (0x0008UL << RI_ASMR5_PG_Pos)           /*!< 0x00000008 */
6394
#define RI_ASMR5_PG_4                   (0x0010UL << RI_ASMR5_PG_Pos)           /*!< 0x00000010 */
6395
#define RI_ASMR5_PG_5                   (0x0020UL << RI_ASMR5_PG_Pos)           /*!< 0x00000020 */
6396
#define RI_ASMR5_PG_6                   (0x0040UL << RI_ASMR5_PG_Pos)           /*!< 0x00000040 */
6397
#define RI_ASMR5_PG_7                   (0x0080UL << RI_ASMR5_PG_Pos)           /*!< 0x00000080 */
6398
#define RI_ASMR5_PG_8                   (0x0100UL << RI_ASMR5_PG_Pos)           /*!< 0x00000100 */
6399
#define RI_ASMR5_PG_9                   (0x0200UL << RI_ASMR5_PG_Pos)           /*!< 0x00000200 */
6400
#define RI_ASMR5_PG_10                  (0x0400UL << RI_ASMR5_PG_Pos)           /*!< 0x00000400 */
6401
#define RI_ASMR5_PG_11                  (0x0800UL << RI_ASMR5_PG_Pos)           /*!< 0x00000800 */
6402
#define RI_ASMR5_PG_12                  (0x1000UL << RI_ASMR5_PG_Pos)           /*!< 0x00001000 */
6403
#define RI_ASMR5_PG_13                  (0x2000UL << RI_ASMR5_PG_Pos)           /*!< 0x00002000 */
6404
#define RI_ASMR5_PG_14                  (0x4000UL << RI_ASMR5_PG_Pos)           /*!< 0x00004000 */
6405
#define RI_ASMR5_PG_15                  (0x8000UL << RI_ASMR5_PG_Pos)           /*!< 0x00008000 */
6406
 
6407
/********************  Bit definition for RI_CMR5 register  ********************/
6408
#define RI_CMR5_PG_Pos                  (0U)                                   
6409
#define RI_CMR5_PG_Msk                  (0xFFFFUL << RI_CMR5_PG_Pos)            /*!< 0x0000FFFF */
6410
#define RI_CMR5_PG                      RI_CMR5_PG_Msk                         /*!< PG[15:0] Port G selection */
6411
#define RI_CMR5_PG_0                    (0x0001UL << RI_CMR5_PG_Pos)            /*!< 0x00000001 */
6412
#define RI_CMR5_PG_1                    (0x0002UL << RI_CMR5_PG_Pos)            /*!< 0x00000002 */
6413
#define RI_CMR5_PG_2                    (0x0004UL << RI_CMR5_PG_Pos)            /*!< 0x00000004 */
6414
#define RI_CMR5_PG_3                    (0x0008UL << RI_CMR5_PG_Pos)            /*!< 0x00000008 */
6415
#define RI_CMR5_PG_4                    (0x0010UL << RI_CMR5_PG_Pos)            /*!< 0x00000010 */
6416
#define RI_CMR5_PG_5                    (0x0020UL << RI_CMR5_PG_Pos)            /*!< 0x00000020 */
6417
#define RI_CMR5_PG_6                    (0x0040UL << RI_CMR5_PG_Pos)            /*!< 0x00000040 */
6418
#define RI_CMR5_PG_7                    (0x0080UL << RI_CMR5_PG_Pos)            /*!< 0x00000080 */
6419
#define RI_CMR5_PG_8                    (0x0100UL << RI_CMR5_PG_Pos)            /*!< 0x00000100 */
6420
#define RI_CMR5_PG_9                    (0x0200UL << RI_CMR5_PG_Pos)            /*!< 0x00000200 */
6421
#define RI_CMR5_PG_10                   (0x0400UL << RI_CMR5_PG_Pos)            /*!< 0x00000400 */
6422
#define RI_CMR5_PG_11                   (0x0800UL << RI_CMR5_PG_Pos)            /*!< 0x00000800 */
6423
#define RI_CMR5_PG_12                   (0x1000UL << RI_CMR5_PG_Pos)            /*!< 0x00001000 */
6424
#define RI_CMR5_PG_13                   (0x2000UL << RI_CMR5_PG_Pos)            /*!< 0x00002000 */
6425
#define RI_CMR5_PG_14                   (0x4000UL << RI_CMR5_PG_Pos)            /*!< 0x00004000 */
6426
#define RI_CMR5_PG_15                   (0x8000UL << RI_CMR5_PG_Pos)            /*!< 0x00008000 */
6427
 
6428
/********************  Bit definition for RI_CICR5 register  ********************/
6429
#define RI_CICR5_PG_Pos                 (0U)                                   
6430
#define RI_CICR5_PG_Msk                 (0xFFFFUL << RI_CICR5_PG_Pos)           /*!< 0x0000FFFF */
6431
#define RI_CICR5_PG                     RI_CICR5_PG_Msk                        /*!< PG[15:0] Port G selection */
6432
#define RI_CICR5_PG_0                   (0x0001UL << RI_CICR5_PG_Pos)           /*!< 0x00000001 */
6433
#define RI_CICR5_PG_1                   (0x0002UL << RI_CICR5_PG_Pos)           /*!< 0x00000002 */
6434
#define RI_CICR5_PG_2                   (0x0004UL << RI_CICR5_PG_Pos)           /*!< 0x00000004 */
6435
#define RI_CICR5_PG_3                   (0x0008UL << RI_CICR5_PG_Pos)           /*!< 0x00000008 */
6436
#define RI_CICR5_PG_4                   (0x0010UL << RI_CICR5_PG_Pos)           /*!< 0x00000010 */
6437
#define RI_CICR5_PG_5                   (0x0020UL << RI_CICR5_PG_Pos)           /*!< 0x00000020 */
6438
#define RI_CICR5_PG_6                   (0x0040UL << RI_CICR5_PG_Pos)           /*!< 0x00000040 */
6439
#define RI_CICR5_PG_7                   (0x0080UL << RI_CICR5_PG_Pos)           /*!< 0x00000080 */
6440
#define RI_CICR5_PG_8                   (0x0100UL << RI_CICR5_PG_Pos)           /*!< 0x00000100 */
6441
#define RI_CICR5_PG_9                   (0x0200UL << RI_CICR5_PG_Pos)           /*!< 0x00000200 */
6442
#define RI_CICR5_PG_10                  (0x0400UL << RI_CICR5_PG_Pos)           /*!< 0x00000400 */
6443
#define RI_CICR5_PG_11                  (0x0800UL << RI_CICR5_PG_Pos)           /*!< 0x00000800 */
6444
#define RI_CICR5_PG_12                  (0x1000UL << RI_CICR5_PG_Pos)           /*!< 0x00001000 */
6445
#define RI_CICR5_PG_13                  (0x2000UL << RI_CICR5_PG_Pos)           /*!< 0x00002000 */
6446
#define RI_CICR5_PG_14                  (0x4000UL << RI_CICR5_PG_Pos)           /*!< 0x00004000 */
6447
#define RI_CICR5_PG_15                  (0x8000UL << RI_CICR5_PG_Pos)           /*!< 0x00008000 */
6448
 
30 mjames 6449
/******************************************************************************/
6450
/*                                                                            */
6451
/*                               Timers (TIM)                                 */
6452
/*                                                                            */
6453
/******************************************************************************/
6454
 
6455
/*******************  Bit definition for TIM_CR1 register  ********************/
6456
#define TIM_CR1_CEN_Pos                     (0U)                               
50 mjames 6457
#define TIM_CR1_CEN_Msk                     (0x1UL << TIM_CR1_CEN_Pos)          /*!< 0x00000001 */
30 mjames 6458
#define TIM_CR1_CEN                         TIM_CR1_CEN_Msk                    /*!<Counter enable */
6459
#define TIM_CR1_UDIS_Pos                    (1U)                               
50 mjames 6460
#define TIM_CR1_UDIS_Msk                    (0x1UL << TIM_CR1_UDIS_Pos)         /*!< 0x00000002 */
30 mjames 6461
#define TIM_CR1_UDIS                        TIM_CR1_UDIS_Msk                   /*!<Update disable */
6462
#define TIM_CR1_URS_Pos                     (2U)                               
50 mjames 6463
#define TIM_CR1_URS_Msk                     (0x1UL << TIM_CR1_URS_Pos)          /*!< 0x00000004 */
30 mjames 6464
#define TIM_CR1_URS                         TIM_CR1_URS_Msk                    /*!<Update request source */
6465
#define TIM_CR1_OPM_Pos                     (3U)                               
50 mjames 6466
#define TIM_CR1_OPM_Msk                     (0x1UL << TIM_CR1_OPM_Pos)          /*!< 0x00000008 */
30 mjames 6467
#define TIM_CR1_OPM                         TIM_CR1_OPM_Msk                    /*!<One pulse mode */
6468
#define TIM_CR1_DIR_Pos                     (4U)                               
50 mjames 6469
#define TIM_CR1_DIR_Msk                     (0x1UL << TIM_CR1_DIR_Pos)          /*!< 0x00000010 */
30 mjames 6470
#define TIM_CR1_DIR                         TIM_CR1_DIR_Msk                    /*!<Direction */
6471
 
6472
#define TIM_CR1_CMS_Pos                     (5U)                               
50 mjames 6473
#define TIM_CR1_CMS_Msk                     (0x3UL << TIM_CR1_CMS_Pos)          /*!< 0x00000060 */
30 mjames 6474
#define TIM_CR1_CMS                         TIM_CR1_CMS_Msk                    /*!<CMS[1:0] bits (Center-aligned mode selection) */
50 mjames 6475
#define TIM_CR1_CMS_0                       (0x1UL << TIM_CR1_CMS_Pos)          /*!< 0x00000020 */
6476
#define TIM_CR1_CMS_1                       (0x2UL << TIM_CR1_CMS_Pos)          /*!< 0x00000040 */
30 mjames 6477
 
6478
#define TIM_CR1_ARPE_Pos                    (7U)                               
50 mjames 6479
#define TIM_CR1_ARPE_Msk                    (0x1UL << TIM_CR1_ARPE_Pos)         /*!< 0x00000080 */
30 mjames 6480
#define TIM_CR1_ARPE                        TIM_CR1_ARPE_Msk                   /*!<Auto-reload preload enable */
6481
 
6482
#define TIM_CR1_CKD_Pos                     (8U)                               
50 mjames 6483
#define TIM_CR1_CKD_Msk                     (0x3UL << TIM_CR1_CKD_Pos)          /*!< 0x00000300 */
30 mjames 6484
#define TIM_CR1_CKD                         TIM_CR1_CKD_Msk                    /*!<CKD[1:0] bits (clock division) */
50 mjames 6485
#define TIM_CR1_CKD_0                       (0x1UL << TIM_CR1_CKD_Pos)          /*!< 0x00000100 */
6486
#define TIM_CR1_CKD_1                       (0x2UL << TIM_CR1_CKD_Pos)          /*!< 0x00000200 */
30 mjames 6487
 
6488
/*******************  Bit definition for TIM_CR2 register  ********************/
6489
#define TIM_CR2_CCDS_Pos                    (3U)                               
50 mjames 6490
#define TIM_CR2_CCDS_Msk                    (0x1UL << TIM_CR2_CCDS_Pos)         /*!< 0x00000008 */
30 mjames 6491
#define TIM_CR2_CCDS                        TIM_CR2_CCDS_Msk                   /*!<Capture/Compare DMA Selection */
6492
 
6493
#define TIM_CR2_MMS_Pos                     (4U)                               
50 mjames 6494
#define TIM_CR2_MMS_Msk                     (0x7UL << TIM_CR2_MMS_Pos)          /*!< 0x00000070 */
30 mjames 6495
#define TIM_CR2_MMS                         TIM_CR2_MMS_Msk                    /*!<MMS[2:0] bits (Master Mode Selection) */
50 mjames 6496
#define TIM_CR2_MMS_0                       (0x1UL << TIM_CR2_MMS_Pos)          /*!< 0x00000010 */
6497
#define TIM_CR2_MMS_1                       (0x2UL << TIM_CR2_MMS_Pos)          /*!< 0x00000020 */
6498
#define TIM_CR2_MMS_2                       (0x4UL << TIM_CR2_MMS_Pos)          /*!< 0x00000040 */
30 mjames 6499
 
6500
#define TIM_CR2_TI1S_Pos                    (7U)                               
50 mjames 6501
#define TIM_CR2_TI1S_Msk                    (0x1UL << TIM_CR2_TI1S_Pos)         /*!< 0x00000080 */
30 mjames 6502
#define TIM_CR2_TI1S                        TIM_CR2_TI1S_Msk                   /*!<TI1 Selection */
6503
 
6504
/*******************  Bit definition for TIM_SMCR register  *******************/
6505
#define TIM_SMCR_SMS_Pos                    (0U)                               
50 mjames 6506
#define TIM_SMCR_SMS_Msk                    (0x7UL << TIM_SMCR_SMS_Pos)         /*!< 0x00000007 */
30 mjames 6507
#define TIM_SMCR_SMS                        TIM_SMCR_SMS_Msk                   /*!<SMS[2:0] bits (Slave mode selection) */
50 mjames 6508
#define TIM_SMCR_SMS_0                      (0x1UL << TIM_SMCR_SMS_Pos)         /*!< 0x00000001 */
6509
#define TIM_SMCR_SMS_1                      (0x2UL << TIM_SMCR_SMS_Pos)         /*!< 0x00000002 */
6510
#define TIM_SMCR_SMS_2                      (0x4UL << TIM_SMCR_SMS_Pos)         /*!< 0x00000004 */
30 mjames 6511
 
6512
#define TIM_SMCR_OCCS_Pos                   (3U)                               
50 mjames 6513
#define TIM_SMCR_OCCS_Msk                   (0x1UL << TIM_SMCR_OCCS_Pos)        /*!< 0x00000008 */
30 mjames 6514
#define TIM_SMCR_OCCS                       TIM_SMCR_OCCS_Msk                  /*!< OCREF clear selection */
6515
 
6516
#define TIM_SMCR_TS_Pos                     (4U)                               
50 mjames 6517
#define TIM_SMCR_TS_Msk                     (0x7UL << TIM_SMCR_TS_Pos)          /*!< 0x00000070 */
30 mjames 6518
#define TIM_SMCR_TS                         TIM_SMCR_TS_Msk                    /*!<TS[2:0] bits (Trigger selection) */
50 mjames 6519
#define TIM_SMCR_TS_0                       (0x1UL << TIM_SMCR_TS_Pos)          /*!< 0x00000010 */
6520
#define TIM_SMCR_TS_1                       (0x2UL << TIM_SMCR_TS_Pos)          /*!< 0x00000020 */
6521
#define TIM_SMCR_TS_2                       (0x4UL << TIM_SMCR_TS_Pos)          /*!< 0x00000040 */
30 mjames 6522
 
6523
#define TIM_SMCR_MSM_Pos                    (7U)                               
50 mjames 6524
#define TIM_SMCR_MSM_Msk                    (0x1UL << TIM_SMCR_MSM_Pos)         /*!< 0x00000080 */
30 mjames 6525
#define TIM_SMCR_MSM                        TIM_SMCR_MSM_Msk                   /*!<Master/slave mode */
6526
 
6527
#define TIM_SMCR_ETF_Pos                    (8U)                               
50 mjames 6528
#define TIM_SMCR_ETF_Msk                    (0xFUL << TIM_SMCR_ETF_Pos)         /*!< 0x00000F00 */
30 mjames 6529
#define TIM_SMCR_ETF                        TIM_SMCR_ETF_Msk                   /*!<ETF[3:0] bits (External trigger filter) */
50 mjames 6530
#define TIM_SMCR_ETF_0                      (0x1UL << TIM_SMCR_ETF_Pos)         /*!< 0x00000100 */
6531
#define TIM_SMCR_ETF_1                      (0x2UL << TIM_SMCR_ETF_Pos)         /*!< 0x00000200 */
6532
#define TIM_SMCR_ETF_2                      (0x4UL << TIM_SMCR_ETF_Pos)         /*!< 0x00000400 */
6533
#define TIM_SMCR_ETF_3                      (0x8UL << TIM_SMCR_ETF_Pos)         /*!< 0x00000800 */
30 mjames 6534
 
6535
#define TIM_SMCR_ETPS_Pos                   (12U)                              
50 mjames 6536
#define TIM_SMCR_ETPS_Msk                   (0x3UL << TIM_SMCR_ETPS_Pos)        /*!< 0x00003000 */
30 mjames 6537
#define TIM_SMCR_ETPS                       TIM_SMCR_ETPS_Msk                  /*!<ETPS[1:0] bits (External trigger prescaler) */
50 mjames 6538
#define TIM_SMCR_ETPS_0                     (0x1UL << TIM_SMCR_ETPS_Pos)        /*!< 0x00001000 */
6539
#define TIM_SMCR_ETPS_1                     (0x2UL << TIM_SMCR_ETPS_Pos)        /*!< 0x00002000 */
30 mjames 6540
 
6541
#define TIM_SMCR_ECE_Pos                    (14U)                              
50 mjames 6542
#define TIM_SMCR_ECE_Msk                    (0x1UL << TIM_SMCR_ECE_Pos)         /*!< 0x00004000 */
30 mjames 6543
#define TIM_SMCR_ECE                        TIM_SMCR_ECE_Msk                   /*!<External clock enable */
6544
#define TIM_SMCR_ETP_Pos                    (15U)                              
50 mjames 6545
#define TIM_SMCR_ETP_Msk                    (0x1UL << TIM_SMCR_ETP_Pos)         /*!< 0x00008000 */
30 mjames 6546
#define TIM_SMCR_ETP                        TIM_SMCR_ETP_Msk                   /*!<External trigger polarity */
6547
 
6548
/*******************  Bit definition for TIM_DIER register  *******************/
6549
#define TIM_DIER_UIE_Pos                    (0U)                               
50 mjames 6550
#define TIM_DIER_UIE_Msk                    (0x1UL << TIM_DIER_UIE_Pos)         /*!< 0x00000001 */
30 mjames 6551
#define TIM_DIER_UIE                        TIM_DIER_UIE_Msk                   /*!<Update interrupt enable */
6552
#define TIM_DIER_CC1IE_Pos                  (1U)                               
50 mjames 6553
#define TIM_DIER_CC1IE_Msk                  (0x1UL << TIM_DIER_CC1IE_Pos)       /*!< 0x00000002 */
30 mjames 6554
#define TIM_DIER_CC1IE                      TIM_DIER_CC1IE_Msk                 /*!<Capture/Compare 1 interrupt enable */
6555
#define TIM_DIER_CC2IE_Pos                  (2U)                               
50 mjames 6556
#define TIM_DIER_CC2IE_Msk                  (0x1UL << TIM_DIER_CC2IE_Pos)       /*!< 0x00000004 */
30 mjames 6557
#define TIM_DIER_CC2IE                      TIM_DIER_CC2IE_Msk                 /*!<Capture/Compare 2 interrupt enable */
6558
#define TIM_DIER_CC3IE_Pos                  (3U)                               
50 mjames 6559
#define TIM_DIER_CC3IE_Msk                  (0x1UL << TIM_DIER_CC3IE_Pos)       /*!< 0x00000008 */
30 mjames 6560
#define TIM_DIER_CC3IE                      TIM_DIER_CC3IE_Msk                 /*!<Capture/Compare 3 interrupt enable */
6561
#define TIM_DIER_CC4IE_Pos                  (4U)                               
50 mjames 6562
#define TIM_DIER_CC4IE_Msk                  (0x1UL << TIM_DIER_CC4IE_Pos)       /*!< 0x00000010 */
30 mjames 6563
#define TIM_DIER_CC4IE                      TIM_DIER_CC4IE_Msk                 /*!<Capture/Compare 4 interrupt enable */
6564
#define TIM_DIER_TIE_Pos                    (6U)                               
50 mjames 6565
#define TIM_DIER_TIE_Msk                    (0x1UL << TIM_DIER_TIE_Pos)         /*!< 0x00000040 */
30 mjames 6566
#define TIM_DIER_TIE                        TIM_DIER_TIE_Msk                   /*!<Trigger interrupt enable */
6567
#define TIM_DIER_UDE_Pos                    (8U)                               
50 mjames 6568
#define TIM_DIER_UDE_Msk                    (0x1UL << TIM_DIER_UDE_Pos)         /*!< 0x00000100 */
30 mjames 6569
#define TIM_DIER_UDE                        TIM_DIER_UDE_Msk                   /*!<Update DMA request enable */
6570
#define TIM_DIER_CC1DE_Pos                  (9U)                               
50 mjames 6571
#define TIM_DIER_CC1DE_Msk                  (0x1UL << TIM_DIER_CC1DE_Pos)       /*!< 0x00000200 */
30 mjames 6572
#define TIM_DIER_CC1DE                      TIM_DIER_CC1DE_Msk                 /*!<Capture/Compare 1 DMA request enable */
6573
#define TIM_DIER_CC2DE_Pos                  (10U)                              
50 mjames 6574
#define TIM_DIER_CC2DE_Msk                  (0x1UL << TIM_DIER_CC2DE_Pos)       /*!< 0x00000400 */
30 mjames 6575
#define TIM_DIER_CC2DE                      TIM_DIER_CC2DE_Msk                 /*!<Capture/Compare 2 DMA request enable */
6576
#define TIM_DIER_CC3DE_Pos                  (11U)                              
50 mjames 6577
#define TIM_DIER_CC3DE_Msk                  (0x1UL << TIM_DIER_CC3DE_Pos)       /*!< 0x00000800 */
30 mjames 6578
#define TIM_DIER_CC3DE                      TIM_DIER_CC3DE_Msk                 /*!<Capture/Compare 3 DMA request enable */
6579
#define TIM_DIER_CC4DE_Pos                  (12U)                              
50 mjames 6580
#define TIM_DIER_CC4DE_Msk                  (0x1UL << TIM_DIER_CC4DE_Pos)       /*!< 0x00001000 */
30 mjames 6581
#define TIM_DIER_CC4DE                      TIM_DIER_CC4DE_Msk                 /*!<Capture/Compare 4 DMA request enable */
6582
#define TIM_DIER_COMDE                      ((uint16_t)0x2000U)                /*!<COM DMA request enable */
6583
#define TIM_DIER_TDE_Pos                    (14U)                              
50 mjames 6584
#define TIM_DIER_TDE_Msk                    (0x1UL << TIM_DIER_TDE_Pos)         /*!< 0x00004000 */
30 mjames 6585
#define TIM_DIER_TDE                        TIM_DIER_TDE_Msk                   /*!<Trigger DMA request enable */
6586
 
6587
/********************  Bit definition for TIM_SR register  ********************/
6588
#define TIM_SR_UIF_Pos                      (0U)                               
50 mjames 6589
#define TIM_SR_UIF_Msk                      (0x1UL << TIM_SR_UIF_Pos)           /*!< 0x00000001 */
30 mjames 6590
#define TIM_SR_UIF                          TIM_SR_UIF_Msk                     /*!<Update interrupt Flag */
6591
#define TIM_SR_CC1IF_Pos                    (1U)                               
50 mjames 6592
#define TIM_SR_CC1IF_Msk                    (0x1UL << TIM_SR_CC1IF_Pos)         /*!< 0x00000002 */
30 mjames 6593
#define TIM_SR_CC1IF                        TIM_SR_CC1IF_Msk                   /*!<Capture/Compare 1 interrupt Flag */
6594
#define TIM_SR_CC2IF_Pos                    (2U)                               
50 mjames 6595
#define TIM_SR_CC2IF_Msk                    (0x1UL << TIM_SR_CC2IF_Pos)         /*!< 0x00000004 */
30 mjames 6596
#define TIM_SR_CC2IF                        TIM_SR_CC2IF_Msk                   /*!<Capture/Compare 2 interrupt Flag */
6597
#define TIM_SR_CC3IF_Pos                    (3U)                               
50 mjames 6598
#define TIM_SR_CC3IF_Msk                    (0x1UL << TIM_SR_CC3IF_Pos)         /*!< 0x00000008 */
30 mjames 6599
#define TIM_SR_CC3IF                        TIM_SR_CC3IF_Msk                   /*!<Capture/Compare 3 interrupt Flag */
6600
#define TIM_SR_CC4IF_Pos                    (4U)                               
50 mjames 6601
#define TIM_SR_CC4IF_Msk                    (0x1UL << TIM_SR_CC4IF_Pos)         /*!< 0x00000010 */
30 mjames 6602
#define TIM_SR_CC4IF                        TIM_SR_CC4IF_Msk                   /*!<Capture/Compare 4 interrupt Flag */
6603
#define TIM_SR_TIF_Pos                      (6U)                               
50 mjames 6604
#define TIM_SR_TIF_Msk                      (0x1UL << TIM_SR_TIF_Pos)           /*!< 0x00000040 */
30 mjames 6605
#define TIM_SR_TIF                          TIM_SR_TIF_Msk                     /*!<Trigger interrupt Flag */
6606
#define TIM_SR_CC1OF_Pos                    (9U)                               
50 mjames 6607
#define TIM_SR_CC1OF_Msk                    (0x1UL << TIM_SR_CC1OF_Pos)         /*!< 0x00000200 */
30 mjames 6608
#define TIM_SR_CC1OF                        TIM_SR_CC1OF_Msk                   /*!<Capture/Compare 1 Overcapture Flag */
6609
#define TIM_SR_CC2OF_Pos                    (10U)                              
50 mjames 6610
#define TIM_SR_CC2OF_Msk                    (0x1UL << TIM_SR_CC2OF_Pos)         /*!< 0x00000400 */
30 mjames 6611
#define TIM_SR_CC2OF                        TIM_SR_CC2OF_Msk                   /*!<Capture/Compare 2 Overcapture Flag */
6612
#define TIM_SR_CC3OF_Pos                    (11U)                              
50 mjames 6613
#define TIM_SR_CC3OF_Msk                    (0x1UL << TIM_SR_CC3OF_Pos)         /*!< 0x00000800 */
30 mjames 6614
#define TIM_SR_CC3OF                        TIM_SR_CC3OF_Msk                   /*!<Capture/Compare 3 Overcapture Flag */
6615
#define TIM_SR_CC4OF_Pos                    (12U)                              
50 mjames 6616
#define TIM_SR_CC4OF_Msk                    (0x1UL << TIM_SR_CC4OF_Pos)         /*!< 0x00001000 */
30 mjames 6617
#define TIM_SR_CC4OF                        TIM_SR_CC4OF_Msk                   /*!<Capture/Compare 4 Overcapture Flag */
6618
 
6619
/*******************  Bit definition for TIM_EGR register  ********************/
6620
#define TIM_EGR_UG_Pos                      (0U)                               
50 mjames 6621
#define TIM_EGR_UG_Msk                      (0x1UL << TIM_EGR_UG_Pos)           /*!< 0x00000001 */
30 mjames 6622
#define TIM_EGR_UG                          TIM_EGR_UG_Msk                     /*!<Update Generation */
6623
#define TIM_EGR_CC1G_Pos                    (1U)                               
50 mjames 6624
#define TIM_EGR_CC1G_Msk                    (0x1UL << TIM_EGR_CC1G_Pos)         /*!< 0x00000002 */
30 mjames 6625
#define TIM_EGR_CC1G                        TIM_EGR_CC1G_Msk                   /*!<Capture/Compare 1 Generation */
6626
#define TIM_EGR_CC2G_Pos                    (2U)                               
50 mjames 6627
#define TIM_EGR_CC2G_Msk                    (0x1UL << TIM_EGR_CC2G_Pos)         /*!< 0x00000004 */
30 mjames 6628
#define TIM_EGR_CC2G                        TIM_EGR_CC2G_Msk                   /*!<Capture/Compare 2 Generation */
6629
#define TIM_EGR_CC3G_Pos                    (3U)                               
50 mjames 6630
#define TIM_EGR_CC3G_Msk                    (0x1UL << TIM_EGR_CC3G_Pos)         /*!< 0x00000008 */
30 mjames 6631
#define TIM_EGR_CC3G                        TIM_EGR_CC3G_Msk                   /*!<Capture/Compare 3 Generation */
6632
#define TIM_EGR_CC4G_Pos                    (4U)                               
50 mjames 6633
#define TIM_EGR_CC4G_Msk                    (0x1UL << TIM_EGR_CC4G_Pos)         /*!< 0x00000010 */
30 mjames 6634
#define TIM_EGR_CC4G                        TIM_EGR_CC4G_Msk                   /*!<Capture/Compare 4 Generation */
6635
#define TIM_EGR_TG_Pos                      (6U)                               
50 mjames 6636
#define TIM_EGR_TG_Msk                      (0x1UL << TIM_EGR_TG_Pos)           /*!< 0x00000040 */
30 mjames 6637
#define TIM_EGR_TG                          TIM_EGR_TG_Msk                     /*!<Trigger Generation */
6638
 
6639
/******************  Bit definition for TIM_CCMR1 register  *******************/
6640
#define TIM_CCMR1_CC1S_Pos                  (0U)                               
50 mjames 6641
#define TIM_CCMR1_CC1S_Msk                  (0x3UL << TIM_CCMR1_CC1S_Pos)       /*!< 0x00000003 */
30 mjames 6642
#define TIM_CCMR1_CC1S                      TIM_CCMR1_CC1S_Msk                 /*!<CC1S[1:0] bits (Capture/Compare 1 Selection) */
50 mjames 6643
#define TIM_CCMR1_CC1S_0                    (0x1UL << TIM_CCMR1_CC1S_Pos)       /*!< 0x00000001 */
6644
#define TIM_CCMR1_CC1S_1                    (0x2UL << TIM_CCMR1_CC1S_Pos)       /*!< 0x00000002 */
30 mjames 6645
 
6646
#define TIM_CCMR1_OC1FE_Pos                 (2U)                               
50 mjames 6647
#define TIM_CCMR1_OC1FE_Msk                 (0x1UL << TIM_CCMR1_OC1FE_Pos)      /*!< 0x00000004 */
30 mjames 6648
#define TIM_CCMR1_OC1FE                     TIM_CCMR1_OC1FE_Msk                /*!<Output Compare 1 Fast enable */
6649
#define TIM_CCMR1_OC1PE_Pos                 (3U)                               
50 mjames 6650
#define TIM_CCMR1_OC1PE_Msk                 (0x1UL << TIM_CCMR1_OC1PE_Pos)      /*!< 0x00000008 */
30 mjames 6651
#define TIM_CCMR1_OC1PE                     TIM_CCMR1_OC1PE_Msk                /*!<Output Compare 1 Preload enable */
6652
 
6653
#define TIM_CCMR1_OC1M_Pos                  (4U)                               
50 mjames 6654
#define TIM_CCMR1_OC1M_Msk                  (0x7UL << TIM_CCMR1_OC1M_Pos)       /*!< 0x00000070 */
30 mjames 6655
#define TIM_CCMR1_OC1M                      TIM_CCMR1_OC1M_Msk                 /*!<OC1M[2:0] bits (Output Compare 1 Mode) */
50 mjames 6656
#define TIM_CCMR1_OC1M_0                    (0x1UL << TIM_CCMR1_OC1M_Pos)       /*!< 0x00000010 */
6657
#define TIM_CCMR1_OC1M_1                    (0x2UL << TIM_CCMR1_OC1M_Pos)       /*!< 0x00000020 */
6658
#define TIM_CCMR1_OC1M_2                    (0x4UL << TIM_CCMR1_OC1M_Pos)       /*!< 0x00000040 */
30 mjames 6659
 
6660
#define TIM_CCMR1_OC1CE_Pos                 (7U)                               
50 mjames 6661
#define TIM_CCMR1_OC1CE_Msk                 (0x1UL << TIM_CCMR1_OC1CE_Pos)      /*!< 0x00000080 */
30 mjames 6662
#define TIM_CCMR1_OC1CE                     TIM_CCMR1_OC1CE_Msk                /*!<Output Compare 1Clear Enable */
6663
 
6664
#define TIM_CCMR1_CC2S_Pos                  (8U)                               
50 mjames 6665
#define TIM_CCMR1_CC2S_Msk                  (0x3UL << TIM_CCMR1_CC2S_Pos)       /*!< 0x00000300 */
30 mjames 6666
#define TIM_CCMR1_CC2S                      TIM_CCMR1_CC2S_Msk                 /*!<CC2S[1:0] bits (Capture/Compare 2 Selection) */
50 mjames 6667
#define TIM_CCMR1_CC2S_0                    (0x1UL << TIM_CCMR1_CC2S_Pos)       /*!< 0x00000100 */
6668
#define TIM_CCMR1_CC2S_1                    (0x2UL << TIM_CCMR1_CC2S_Pos)       /*!< 0x00000200 */
30 mjames 6669
 
6670
#define TIM_CCMR1_OC2FE_Pos                 (10U)                              
50 mjames 6671
#define TIM_CCMR1_OC2FE_Msk                 (0x1UL << TIM_CCMR1_OC2FE_Pos)      /*!< 0x00000400 */
30 mjames 6672
#define TIM_CCMR1_OC2FE                     TIM_CCMR1_OC2FE_Msk                /*!<Output Compare 2 Fast enable */
6673
#define TIM_CCMR1_OC2PE_Pos                 (11U)                              
50 mjames 6674
#define TIM_CCMR1_OC2PE_Msk                 (0x1UL << TIM_CCMR1_OC2PE_Pos)      /*!< 0x00000800 */
30 mjames 6675
#define TIM_CCMR1_OC2PE                     TIM_CCMR1_OC2PE_Msk                /*!<Output Compare 2 Preload enable */
6676
 
6677
#define TIM_CCMR1_OC2M_Pos                  (12U)                              
50 mjames 6678
#define TIM_CCMR1_OC2M_Msk                  (0x7UL << TIM_CCMR1_OC2M_Pos)       /*!< 0x00007000 */
30 mjames 6679
#define TIM_CCMR1_OC2M                      TIM_CCMR1_OC2M_Msk                 /*!<OC2M[2:0] bits (Output Compare 2 Mode) */
50 mjames 6680
#define TIM_CCMR1_OC2M_0                    (0x1UL << TIM_CCMR1_OC2M_Pos)       /*!< 0x00001000 */
6681
#define TIM_CCMR1_OC2M_1                    (0x2UL << TIM_CCMR1_OC2M_Pos)       /*!< 0x00002000 */
6682
#define TIM_CCMR1_OC2M_2                    (0x4UL << TIM_CCMR1_OC2M_Pos)       /*!< 0x00004000 */
30 mjames 6683
 
6684
#define TIM_CCMR1_OC2CE_Pos                 (15U)                              
50 mjames 6685
#define TIM_CCMR1_OC2CE_Msk                 (0x1UL << TIM_CCMR1_OC2CE_Pos)      /*!< 0x00008000 */
30 mjames 6686
#define TIM_CCMR1_OC2CE                     TIM_CCMR1_OC2CE_Msk                /*!<Output Compare 2 Clear Enable */
6687
 
6688
/*----------------------------------------------------------------------------*/
6689
 
6690
#define TIM_CCMR1_IC1PSC_Pos                (2U)                               
50 mjames 6691
#define TIM_CCMR1_IC1PSC_Msk                (0x3UL << TIM_CCMR1_IC1PSC_Pos)     /*!< 0x0000000C */
30 mjames 6692
#define TIM_CCMR1_IC1PSC                    TIM_CCMR1_IC1PSC_Msk               /*!<IC1PSC[1:0] bits (Input Capture 1 Prescaler) */
50 mjames 6693
#define TIM_CCMR1_IC1PSC_0                  (0x1UL << TIM_CCMR1_IC1PSC_Pos)     /*!< 0x00000004 */
6694
#define TIM_CCMR1_IC1PSC_1                  (0x2UL << TIM_CCMR1_IC1PSC_Pos)     /*!< 0x00000008 */
30 mjames 6695
 
6696
#define TIM_CCMR1_IC1F_Pos                  (4U)                               
50 mjames 6697
#define TIM_CCMR1_IC1F_Msk                  (0xFUL << TIM_CCMR1_IC1F_Pos)       /*!< 0x000000F0 */
30 mjames 6698
#define TIM_CCMR1_IC1F                      TIM_CCMR1_IC1F_Msk                 /*!<IC1F[3:0] bits (Input Capture 1 Filter) */
50 mjames 6699
#define TIM_CCMR1_IC1F_0                    (0x1UL << TIM_CCMR1_IC1F_Pos)       /*!< 0x00000010 */
6700
#define TIM_CCMR1_IC1F_1                    (0x2UL << TIM_CCMR1_IC1F_Pos)       /*!< 0x00000020 */
6701
#define TIM_CCMR1_IC1F_2                    (0x4UL << TIM_CCMR1_IC1F_Pos)       /*!< 0x00000040 */
6702
#define TIM_CCMR1_IC1F_3                    (0x8UL << TIM_CCMR1_IC1F_Pos)       /*!< 0x00000080 */
30 mjames 6703
 
6704
#define TIM_CCMR1_IC2PSC_Pos                (10U)                              
50 mjames 6705
#define TIM_CCMR1_IC2PSC_Msk                (0x3UL << TIM_CCMR1_IC2PSC_Pos)     /*!< 0x00000C00 */
30 mjames 6706
#define TIM_CCMR1_IC2PSC                    TIM_CCMR1_IC2PSC_Msk               /*!<IC2PSC[1:0] bits (Input Capture 2 Prescaler) */
50 mjames 6707
#define TIM_CCMR1_IC2PSC_0                  (0x1UL << TIM_CCMR1_IC2PSC_Pos)     /*!< 0x00000400 */
6708
#define TIM_CCMR1_IC2PSC_1                  (0x2UL << TIM_CCMR1_IC2PSC_Pos)     /*!< 0x00000800 */
30 mjames 6709
 
6710
#define TIM_CCMR1_IC2F_Pos                  (12U)                              
50 mjames 6711
#define TIM_CCMR1_IC2F_Msk                  (0xFUL << TIM_CCMR1_IC2F_Pos)       /*!< 0x0000F000 */
30 mjames 6712
#define TIM_CCMR1_IC2F                      TIM_CCMR1_IC2F_Msk                 /*!<IC2F[3:0] bits (Input Capture 2 Filter) */
50 mjames 6713
#define TIM_CCMR1_IC2F_0                    (0x1UL << TIM_CCMR1_IC2F_Pos)       /*!< 0x00001000 */
6714
#define TIM_CCMR1_IC2F_1                    (0x2UL << TIM_CCMR1_IC2F_Pos)       /*!< 0x00002000 */
6715
#define TIM_CCMR1_IC2F_2                    (0x4UL << TIM_CCMR1_IC2F_Pos)       /*!< 0x00004000 */
6716
#define TIM_CCMR1_IC2F_3                    (0x8UL << TIM_CCMR1_IC2F_Pos)       /*!< 0x00008000 */
30 mjames 6717
 
6718
/******************  Bit definition for TIM_CCMR2 register  *******************/
6719
#define TIM_CCMR2_CC3S_Pos                  (0U)                               
50 mjames 6720
#define TIM_CCMR2_CC3S_Msk                  (0x3UL << TIM_CCMR2_CC3S_Pos)       /*!< 0x00000003 */
30 mjames 6721
#define TIM_CCMR2_CC3S                      TIM_CCMR2_CC3S_Msk                 /*!<CC3S[1:0] bits (Capture/Compare 3 Selection) */
50 mjames 6722
#define TIM_CCMR2_CC3S_0                    (0x1UL << TIM_CCMR2_CC3S_Pos)       /*!< 0x00000001 */
6723
#define TIM_CCMR2_CC3S_1                    (0x2UL << TIM_CCMR2_CC3S_Pos)       /*!< 0x00000002 */
30 mjames 6724
 
6725
#define TIM_CCMR2_OC3FE_Pos                 (2U)                               
50 mjames 6726
#define TIM_CCMR2_OC3FE_Msk                 (0x1UL << TIM_CCMR2_OC3FE_Pos)      /*!< 0x00000004 */
30 mjames 6727
#define TIM_CCMR2_OC3FE                     TIM_CCMR2_OC3FE_Msk                /*!<Output Compare 3 Fast enable */
6728
#define TIM_CCMR2_OC3PE_Pos                 (3U)                               
50 mjames 6729
#define TIM_CCMR2_OC3PE_Msk                 (0x1UL << TIM_CCMR2_OC3PE_Pos)      /*!< 0x00000008 */
30 mjames 6730
#define TIM_CCMR2_OC3PE                     TIM_CCMR2_OC3PE_Msk                /*!<Output Compare 3 Preload enable */
6731
 
6732
#define TIM_CCMR2_OC3M_Pos                  (4U)                               
50 mjames 6733
#define TIM_CCMR2_OC3M_Msk                  (0x7UL << TIM_CCMR2_OC3M_Pos)       /*!< 0x00000070 */
30 mjames 6734
#define TIM_CCMR2_OC3M                      TIM_CCMR2_OC3M_Msk                 /*!<OC3M[2:0] bits (Output Compare 3 Mode) */
50 mjames 6735
#define TIM_CCMR2_OC3M_0                    (0x1UL << TIM_CCMR2_OC3M_Pos)       /*!< 0x00000010 */
6736
#define TIM_CCMR2_OC3M_1                    (0x2UL << TIM_CCMR2_OC3M_Pos)       /*!< 0x00000020 */
6737
#define TIM_CCMR2_OC3M_2                    (0x4UL << TIM_CCMR2_OC3M_Pos)       /*!< 0x00000040 */
30 mjames 6738
 
6739
#define TIM_CCMR2_OC3CE_Pos                 (7U)                               
50 mjames 6740
#define TIM_CCMR2_OC3CE_Msk                 (0x1UL << TIM_CCMR2_OC3CE_Pos)      /*!< 0x00000080 */
30 mjames 6741
#define TIM_CCMR2_OC3CE                     TIM_CCMR2_OC3CE_Msk                /*!<Output Compare 3 Clear Enable */
6742
 
6743
#define TIM_CCMR2_CC4S_Pos                  (8U)                               
50 mjames 6744
#define TIM_CCMR2_CC4S_Msk                  (0x3UL << TIM_CCMR2_CC4S_Pos)       /*!< 0x00000300 */
30 mjames 6745
#define TIM_CCMR2_CC4S                      TIM_CCMR2_CC4S_Msk                 /*!<CC4S[1:0] bits (Capture/Compare 4 Selection) */
50 mjames 6746
#define TIM_CCMR2_CC4S_0                    (0x1UL << TIM_CCMR2_CC4S_Pos)       /*!< 0x00000100 */
6747
#define TIM_CCMR2_CC4S_1                    (0x2UL << TIM_CCMR2_CC4S_Pos)       /*!< 0x00000200 */
30 mjames 6748
 
6749
#define TIM_CCMR2_OC4FE_Pos                 (10U)                              
50 mjames 6750
#define TIM_CCMR2_OC4FE_Msk                 (0x1UL << TIM_CCMR2_OC4FE_Pos)      /*!< 0x00000400 */
30 mjames 6751
#define TIM_CCMR2_OC4FE                     TIM_CCMR2_OC4FE_Msk                /*!<Output Compare 4 Fast enable */
6752
#define TIM_CCMR2_OC4PE_Pos                 (11U)                              
50 mjames 6753
#define TIM_CCMR2_OC4PE_Msk                 (0x1UL << TIM_CCMR2_OC4PE_Pos)      /*!< 0x00000800 */
30 mjames 6754
#define TIM_CCMR2_OC4PE                     TIM_CCMR2_OC4PE_Msk                /*!<Output Compare 4 Preload enable */
6755
 
6756
#define TIM_CCMR2_OC4M_Pos                  (12U)                              
50 mjames 6757
#define TIM_CCMR2_OC4M_Msk                  (0x7UL << TIM_CCMR2_OC4M_Pos)       /*!< 0x00007000 */
30 mjames 6758
#define TIM_CCMR2_OC4M                      TIM_CCMR2_OC4M_Msk                 /*!<OC4M[2:0] bits (Output Compare 4 Mode) */
50 mjames 6759
#define TIM_CCMR2_OC4M_0                    (0x1UL << TIM_CCMR2_OC4M_Pos)       /*!< 0x00001000 */
6760
#define TIM_CCMR2_OC4M_1                    (0x2UL << TIM_CCMR2_OC4M_Pos)       /*!< 0x00002000 */
6761
#define TIM_CCMR2_OC4M_2                    (0x4UL << TIM_CCMR2_OC4M_Pos)       /*!< 0x00004000 */
30 mjames 6762
 
6763
#define TIM_CCMR2_OC4CE_Pos                 (15U)                              
50 mjames 6764
#define TIM_CCMR2_OC4CE_Msk                 (0x1UL << TIM_CCMR2_OC4CE_Pos)      /*!< 0x00008000 */
30 mjames 6765
#define TIM_CCMR2_OC4CE                     TIM_CCMR2_OC4CE_Msk                /*!<Output Compare 4 Clear Enable */
6766
 
6767
/*----------------------------------------------------------------------------*/
6768
 
6769
#define TIM_CCMR2_IC3PSC_Pos                (2U)                               
50 mjames 6770
#define TIM_CCMR2_IC3PSC_Msk                (0x3UL << TIM_CCMR2_IC3PSC_Pos)     /*!< 0x0000000C */
30 mjames 6771
#define TIM_CCMR2_IC3PSC                    TIM_CCMR2_IC3PSC_Msk               /*!<IC3PSC[1:0] bits (Input Capture 3 Prescaler) */
50 mjames 6772
#define TIM_CCMR2_IC3PSC_0                  (0x1UL << TIM_CCMR2_IC3PSC_Pos)     /*!< 0x00000004 */
6773
#define TIM_CCMR2_IC3PSC_1                  (0x2UL << TIM_CCMR2_IC3PSC_Pos)     /*!< 0x00000008 */
30 mjames 6774
 
6775
#define TIM_CCMR2_IC3F_Pos                  (4U)                               
50 mjames 6776
#define TIM_CCMR2_IC3F_Msk                  (0xFUL << TIM_CCMR2_IC3F_Pos)       /*!< 0x000000F0 */
30 mjames 6777
#define TIM_CCMR2_IC3F                      TIM_CCMR2_IC3F_Msk                 /*!<IC3F[3:0] bits (Input Capture 3 Filter) */
50 mjames 6778
#define TIM_CCMR2_IC3F_0                    (0x1UL << TIM_CCMR2_IC3F_Pos)       /*!< 0x00000010 */
6779
#define TIM_CCMR2_IC3F_1                    (0x2UL << TIM_CCMR2_IC3F_Pos)       /*!< 0x00000020 */
6780
#define TIM_CCMR2_IC3F_2                    (0x4UL << TIM_CCMR2_IC3F_Pos)       /*!< 0x00000040 */
6781
#define TIM_CCMR2_IC3F_3                    (0x8UL << TIM_CCMR2_IC3F_Pos)       /*!< 0x00000080 */
30 mjames 6782
 
6783
#define TIM_CCMR2_IC4PSC_Pos                (10U)                              
50 mjames 6784
#define TIM_CCMR2_IC4PSC_Msk                (0x3UL << TIM_CCMR2_IC4PSC_Pos)     /*!< 0x00000C00 */
30 mjames 6785
#define TIM_CCMR2_IC4PSC                    TIM_CCMR2_IC4PSC_Msk               /*!<IC4PSC[1:0] bits (Input Capture 4 Prescaler) */
50 mjames 6786
#define TIM_CCMR2_IC4PSC_0                  (0x1UL << TIM_CCMR2_IC4PSC_Pos)     /*!< 0x00000400 */
6787
#define TIM_CCMR2_IC4PSC_1                  (0x2UL << TIM_CCMR2_IC4PSC_Pos)     /*!< 0x00000800 */
30 mjames 6788
 
6789
#define TIM_CCMR2_IC4F_Pos                  (12U)                              
50 mjames 6790
#define TIM_CCMR2_IC4F_Msk                  (0xFUL << TIM_CCMR2_IC4F_Pos)       /*!< 0x0000F000 */
30 mjames 6791
#define TIM_CCMR2_IC4F                      TIM_CCMR2_IC4F_Msk                 /*!<IC4F[3:0] bits (Input Capture 4 Filter) */
50 mjames 6792
#define TIM_CCMR2_IC4F_0                    (0x1UL << TIM_CCMR2_IC4F_Pos)       /*!< 0x00001000 */
6793
#define TIM_CCMR2_IC4F_1                    (0x2UL << TIM_CCMR2_IC4F_Pos)       /*!< 0x00002000 */
6794
#define TIM_CCMR2_IC4F_2                    (0x4UL << TIM_CCMR2_IC4F_Pos)       /*!< 0x00004000 */
6795
#define TIM_CCMR2_IC4F_3                    (0x8UL << TIM_CCMR2_IC4F_Pos)       /*!< 0x00008000 */
30 mjames 6796
 
6797
/*******************  Bit definition for TIM_CCER register  *******************/
6798
#define TIM_CCER_CC1E_Pos                   (0U)                               
50 mjames 6799
#define TIM_CCER_CC1E_Msk                   (0x1UL << TIM_CCER_CC1E_Pos)        /*!< 0x00000001 */
30 mjames 6800
#define TIM_CCER_CC1E                       TIM_CCER_CC1E_Msk                  /*!<Capture/Compare 1 output enable */
6801
#define TIM_CCER_CC1P_Pos                   (1U)                               
50 mjames 6802
#define TIM_CCER_CC1P_Msk                   (0x1UL << TIM_CCER_CC1P_Pos)        /*!< 0x00000002 */
30 mjames 6803
#define TIM_CCER_CC1P                       TIM_CCER_CC1P_Msk                  /*!<Capture/Compare 1 output Polarity */
6804
#define TIM_CCER_CC1NP_Pos                  (3U)                               
50 mjames 6805
#define TIM_CCER_CC1NP_Msk                  (0x1UL << TIM_CCER_CC1NP_Pos)       /*!< 0x00000008 */
30 mjames 6806
#define TIM_CCER_CC1NP                      TIM_CCER_CC1NP_Msk                 /*!<Capture/Compare 1 Complementary output Polarity */
6807
#define TIM_CCER_CC2E_Pos                   (4U)                               
50 mjames 6808
#define TIM_CCER_CC2E_Msk                   (0x1UL << TIM_CCER_CC2E_Pos)        /*!< 0x00000010 */
30 mjames 6809
#define TIM_CCER_CC2E                       TIM_CCER_CC2E_Msk                  /*!<Capture/Compare 2 output enable */
6810
#define TIM_CCER_CC2P_Pos                   (5U)                               
50 mjames 6811
#define TIM_CCER_CC2P_Msk                   (0x1UL << TIM_CCER_CC2P_Pos)        /*!< 0x00000020 */
30 mjames 6812
#define TIM_CCER_CC2P                       TIM_CCER_CC2P_Msk                  /*!<Capture/Compare 2 output Polarity */
6813
#define TIM_CCER_CC2NP_Pos                  (7U)                               
50 mjames 6814
#define TIM_CCER_CC2NP_Msk                  (0x1UL << TIM_CCER_CC2NP_Pos)       /*!< 0x00000080 */
30 mjames 6815
#define TIM_CCER_CC2NP                      TIM_CCER_CC2NP_Msk                 /*!<Capture/Compare 2 Complementary output Polarity */
6816
#define TIM_CCER_CC3E_Pos                   (8U)                               
50 mjames 6817
#define TIM_CCER_CC3E_Msk                   (0x1UL << TIM_CCER_CC3E_Pos)        /*!< 0x00000100 */
30 mjames 6818
#define TIM_CCER_CC3E                       TIM_CCER_CC3E_Msk                  /*!<Capture/Compare 3 output enable */
6819
#define TIM_CCER_CC3P_Pos                   (9U)                               
50 mjames 6820
#define TIM_CCER_CC3P_Msk                   (0x1UL << TIM_CCER_CC3P_Pos)        /*!< 0x00000200 */
30 mjames 6821
#define TIM_CCER_CC3P                       TIM_CCER_CC3P_Msk                  /*!<Capture/Compare 3 output Polarity */
6822
#define TIM_CCER_CC3NP_Pos                  (11U)                              
50 mjames 6823
#define TIM_CCER_CC3NP_Msk                  (0x1UL << TIM_CCER_CC3NP_Pos)       /*!< 0x00000800 */
30 mjames 6824
#define TIM_CCER_CC3NP                      TIM_CCER_CC3NP_Msk                 /*!<Capture/Compare 3 Complementary output Polarity */
6825
#define TIM_CCER_CC4E_Pos                   (12U)                              
50 mjames 6826
#define TIM_CCER_CC4E_Msk                   (0x1UL << TIM_CCER_CC4E_Pos)        /*!< 0x00001000 */
30 mjames 6827
#define TIM_CCER_CC4E                       TIM_CCER_CC4E_Msk                  /*!<Capture/Compare 4 output enable */
6828
#define TIM_CCER_CC4P_Pos                   (13U)                              
50 mjames 6829
#define TIM_CCER_CC4P_Msk                   (0x1UL << TIM_CCER_CC4P_Pos)        /*!< 0x00002000 */
30 mjames 6830
#define TIM_CCER_CC4P                       TIM_CCER_CC4P_Msk                  /*!<Capture/Compare 4 output Polarity */
6831
#define TIM_CCER_CC4NP_Pos                  (15U)                              
50 mjames 6832
#define TIM_CCER_CC4NP_Msk                  (0x1UL << TIM_CCER_CC4NP_Pos)       /*!< 0x00008000 */
30 mjames 6833
#define TIM_CCER_CC4NP                      TIM_CCER_CC4NP_Msk                 /*!<Capture/Compare 4 Complementary output Polarity */
6834
 
6835
/*******************  Bit definition for TIM_CNT register  ********************/
6836
#define TIM_CNT_CNT_Pos                     (0U)                               
50 mjames 6837
#define TIM_CNT_CNT_Msk                     (0xFFFFFFFFUL << TIM_CNT_CNT_Pos)   /*!< 0xFFFFFFFF */
30 mjames 6838
#define TIM_CNT_CNT                         TIM_CNT_CNT_Msk                    /*!<Counter Value */
6839
 
6840
/*******************  Bit definition for TIM_PSC register  ********************/
6841
#define TIM_PSC_PSC_Pos                     (0U)                               
50 mjames 6842
#define TIM_PSC_PSC_Msk                     (0xFFFFUL << TIM_PSC_PSC_Pos)       /*!< 0x0000FFFF */
30 mjames 6843
#define TIM_PSC_PSC                         TIM_PSC_PSC_Msk                    /*!<Prescaler Value */
6844
 
6845
/*******************  Bit definition for TIM_ARR register  ********************/
6846
#define TIM_ARR_ARR_Pos                     (0U)                               
50 mjames 6847
#define TIM_ARR_ARR_Msk                     (0xFFFFFFFFUL << TIM_ARR_ARR_Pos)   /*!< 0xFFFFFFFF */
30 mjames 6848
#define TIM_ARR_ARR                         TIM_ARR_ARR_Msk                    /*!<actual auto-reload Value */
6849
 
6850
/*******************  Bit definition for TIM_CCR1 register  *******************/
6851
#define TIM_CCR1_CCR1_Pos                   (0U)                               
50 mjames 6852
#define TIM_CCR1_CCR1_Msk                   (0xFFFFUL << TIM_CCR1_CCR1_Pos)     /*!< 0x0000FFFF */
30 mjames 6853
#define TIM_CCR1_CCR1                       TIM_CCR1_CCR1_Msk                  /*!<Capture/Compare 1 Value */
6854
 
6855
/*******************  Bit definition for TIM_CCR2 register  *******************/
6856
#define TIM_CCR2_CCR2_Pos                   (0U)                               
50 mjames 6857
#define TIM_CCR2_CCR2_Msk                   (0xFFFFUL << TIM_CCR2_CCR2_Pos)     /*!< 0x0000FFFF */
30 mjames 6858
#define TIM_CCR2_CCR2                       TIM_CCR2_CCR2_Msk                  /*!<Capture/Compare 2 Value */
6859
 
6860
/*******************  Bit definition for TIM_CCR3 register  *******************/
6861
#define TIM_CCR3_CCR3_Pos                   (0U)                               
50 mjames 6862
#define TIM_CCR3_CCR3_Msk                   (0xFFFFUL << TIM_CCR3_CCR3_Pos)     /*!< 0x0000FFFF */
30 mjames 6863
#define TIM_CCR3_CCR3                       TIM_CCR3_CCR3_Msk                  /*!<Capture/Compare 3 Value */
6864
 
6865
/*******************  Bit definition for TIM_CCR4 register  *******************/
6866
#define TIM_CCR4_CCR4_Pos                   (0U)                               
50 mjames 6867
#define TIM_CCR4_CCR4_Msk                   (0xFFFFUL << TIM_CCR4_CCR4_Pos)     /*!< 0x0000FFFF */
30 mjames 6868
#define TIM_CCR4_CCR4                       TIM_CCR4_CCR4_Msk                  /*!<Capture/Compare 4 Value */
6869
 
6870
/*******************  Bit definition for TIM_DCR register  ********************/
6871
#define TIM_DCR_DBA_Pos                     (0U)                               
50 mjames 6872
#define TIM_DCR_DBA_Msk                     (0x1FUL << TIM_DCR_DBA_Pos)         /*!< 0x0000001F */
30 mjames 6873
#define TIM_DCR_DBA                         TIM_DCR_DBA_Msk                    /*!<DBA[4:0] bits (DMA Base Address) */
50 mjames 6874
#define TIM_DCR_DBA_0                       (0x01UL << TIM_DCR_DBA_Pos)         /*!< 0x00000001 */
6875
#define TIM_DCR_DBA_1                       (0x02UL << TIM_DCR_DBA_Pos)         /*!< 0x00000002 */
6876
#define TIM_DCR_DBA_2                       (0x04UL << TIM_DCR_DBA_Pos)         /*!< 0x00000004 */
6877
#define TIM_DCR_DBA_3                       (0x08UL << TIM_DCR_DBA_Pos)         /*!< 0x00000008 */
6878
#define TIM_DCR_DBA_4                       (0x10UL << TIM_DCR_DBA_Pos)         /*!< 0x00000010 */
30 mjames 6879
 
6880
#define TIM_DCR_DBL_Pos                     (8U)                               
50 mjames 6881
#define TIM_DCR_DBL_Msk                     (0x1FUL << TIM_DCR_DBL_Pos)         /*!< 0x00001F00 */
30 mjames 6882
#define TIM_DCR_DBL                         TIM_DCR_DBL_Msk                    /*!<DBL[4:0] bits (DMA Burst Length) */
50 mjames 6883
#define TIM_DCR_DBL_0                       (0x01UL << TIM_DCR_DBL_Pos)         /*!< 0x00000100 */
6884
#define TIM_DCR_DBL_1                       (0x02UL << TIM_DCR_DBL_Pos)         /*!< 0x00000200 */
6885
#define TIM_DCR_DBL_2                       (0x04UL << TIM_DCR_DBL_Pos)         /*!< 0x00000400 */
6886
#define TIM_DCR_DBL_3                       (0x08UL << TIM_DCR_DBL_Pos)         /*!< 0x00000800 */
6887
#define TIM_DCR_DBL_4                       (0x10UL << TIM_DCR_DBL_Pos)         /*!< 0x00001000 */
30 mjames 6888
 
6889
/*******************  Bit definition for TIM_DMAR register  *******************/
6890
#define TIM_DMAR_DMAB_Pos                   (0U)                               
50 mjames 6891
#define TIM_DMAR_DMAB_Msk                   (0xFFFFUL << TIM_DMAR_DMAB_Pos)     /*!< 0x0000FFFF */
30 mjames 6892
#define TIM_DMAR_DMAB                       TIM_DMAR_DMAB_Msk                  /*!<DMA register for burst accesses */
6893
 
6894
/*******************  Bit definition for TIM_OR register  *********************/
6895
#define TIM_OR_TI1RMP_Pos                   (0U)                               
50 mjames 6896
#define TIM_OR_TI1RMP_Msk                   (0x3UL << TIM_OR_TI1RMP_Pos)        /*!< 0x00000003 */
30 mjames 6897
#define TIM_OR_TI1RMP                       TIM_OR_TI1RMP_Msk                  /*!<TI1_RMP[1:0] bits (TIM Input 1 remap) */
50 mjames 6898
#define TIM_OR_TI1RMP_0                     (0x1UL << TIM_OR_TI1RMP_Pos)        /*!< 0x00000001 */
6899
#define TIM_OR_TI1RMP_1                     (0x2UL << TIM_OR_TI1RMP_Pos)        /*!< 0x00000002 */
30 mjames 6900
 
6901
#define TIM_OR_ETR_RMP_Pos                  (2U)                               
50 mjames 6902
#define TIM_OR_ETR_RMP_Msk                  (0x1UL << TIM_OR_ETR_RMP_Pos)       /*!< 0x00000004 */
30 mjames 6903
#define TIM_OR_ETR_RMP                      TIM_OR_ETR_RMP_Msk                 /*!<ETR_RMP bit (TIM10/11 ETR remap)*/
6904
#define TIM_OR_TI1_RMP_RI_Pos               (3U)                               
50 mjames 6905
#define TIM_OR_TI1_RMP_RI_Msk               (0x1UL << TIM_OR_TI1_RMP_RI_Pos)    /*!< 0x00000008 */
30 mjames 6906
#define TIM_OR_TI1_RMP_RI                   TIM_OR_TI1_RMP_RI_Msk              /*!<TI1_RMP_RI bit (TIM10/11 Input 1 remap for Routing interface) */
6907
 
6908
/*----------------------------------------------------------------------------*/
6909
#define TIM9_OR_ITR1_RMP_Pos                (2U)                               
50 mjames 6910
#define TIM9_OR_ITR1_RMP_Msk                (0x1UL << TIM9_OR_ITR1_RMP_Pos)     /*!< 0x00000004 */
30 mjames 6911
#define TIM9_OR_ITR1_RMP                    TIM9_OR_ITR1_RMP_Msk               /*!<ITR1_RMP bit (TIM9 Internal trigger 1 remap) */
6912
 
6913
/*----------------------------------------------------------------------------*/
6914
#define TIM2_OR_ITR1_RMP_Pos                (0U)                               
50 mjames 6915
#define TIM2_OR_ITR1_RMP_Msk                (0x1UL << TIM2_OR_ITR1_RMP_Pos)     /*!< 0x00000001 */
30 mjames 6916
#define TIM2_OR_ITR1_RMP                    TIM2_OR_ITR1_RMP_Msk               /*!<ITR1_RMP bit (TIM2 Internal trigger 1 remap) */
6917
 
6918
/*----------------------------------------------------------------------------*/
6919
#define TIM3_OR_ITR2_RMP_Pos                (0U)                               
50 mjames 6920
#define TIM3_OR_ITR2_RMP_Msk                (0x1UL << TIM3_OR_ITR2_RMP_Pos)     /*!< 0x00000001 */
30 mjames 6921
#define TIM3_OR_ITR2_RMP                    TIM3_OR_ITR2_RMP_Msk               /*!<ITR2_RMP bit (TIM3 Internal trigger 2 remap) */
6922
 
6923
/*----------------------------------------------------------------------------*/
6924
 
6925
/******************************************************************************/
6926
/*                                                                            */
6927
/*      Universal Synchronous Asynchronous Receiver Transmitter (USART)       */
6928
/*                                                                            */
6929
/******************************************************************************/
6930
 
6931
/*******************  Bit definition for USART_SR register  *******************/
6932
#define USART_SR_PE_Pos                     (0U)                               
50 mjames 6933
#define USART_SR_PE_Msk                     (0x1UL << USART_SR_PE_Pos)          /*!< 0x00000001 */
30 mjames 6934
#define USART_SR_PE                         USART_SR_PE_Msk                    /*!< Parity Error */
6935
#define USART_SR_FE_Pos                     (1U)                               
50 mjames 6936
#define USART_SR_FE_Msk                     (0x1UL << USART_SR_FE_Pos)          /*!< 0x00000002 */
30 mjames 6937
#define USART_SR_FE                         USART_SR_FE_Msk                    /*!< Framing Error */
6938
#define USART_SR_NE_Pos                     (2U)                               
50 mjames 6939
#define USART_SR_NE_Msk                     (0x1UL << USART_SR_NE_Pos)          /*!< 0x00000004 */
30 mjames 6940
#define USART_SR_NE                         USART_SR_NE_Msk                    /*!< Noise Error Flag */
6941
#define USART_SR_ORE_Pos                    (3U)                               
50 mjames 6942
#define USART_SR_ORE_Msk                    (0x1UL << USART_SR_ORE_Pos)         /*!< 0x00000008 */
30 mjames 6943
#define USART_SR_ORE                        USART_SR_ORE_Msk                   /*!< OverRun Error */
6944
#define USART_SR_IDLE_Pos                   (4U)                               
50 mjames 6945
#define USART_SR_IDLE_Msk                   (0x1UL << USART_SR_IDLE_Pos)        /*!< 0x00000010 */
30 mjames 6946
#define USART_SR_IDLE                       USART_SR_IDLE_Msk                  /*!< IDLE line detected */
6947
#define USART_SR_RXNE_Pos                   (5U)                               
50 mjames 6948
#define USART_SR_RXNE_Msk                   (0x1UL << USART_SR_RXNE_Pos)        /*!< 0x00000020 */
30 mjames 6949
#define USART_SR_RXNE                       USART_SR_RXNE_Msk                  /*!< Read Data Register Not Empty */
6950
#define USART_SR_TC_Pos                     (6U)                               
50 mjames 6951
#define USART_SR_TC_Msk                     (0x1UL << USART_SR_TC_Pos)          /*!< 0x00000040 */
30 mjames 6952
#define USART_SR_TC                         USART_SR_TC_Msk                    /*!< Transmission Complete */
6953
#define USART_SR_TXE_Pos                    (7U)                               
50 mjames 6954
#define USART_SR_TXE_Msk                    (0x1UL << USART_SR_TXE_Pos)         /*!< 0x00000080 */
30 mjames 6955
#define USART_SR_TXE                        USART_SR_TXE_Msk                   /*!< Transmit Data Register Empty */
6956
#define USART_SR_LBD_Pos                    (8U)                               
50 mjames 6957
#define USART_SR_LBD_Msk                    (0x1UL << USART_SR_LBD_Pos)         /*!< 0x00000100 */
30 mjames 6958
#define USART_SR_LBD                        USART_SR_LBD_Msk                   /*!< LIN Break Detection Flag */
6959
#define USART_SR_CTS_Pos                    (9U)                               
50 mjames 6960
#define USART_SR_CTS_Msk                    (0x1UL << USART_SR_CTS_Pos)         /*!< 0x00000200 */
30 mjames 6961
#define USART_SR_CTS                        USART_SR_CTS_Msk                   /*!< CTS Flag */
6962
 
6963
/*******************  Bit definition for USART_DR register  *******************/
6964
#define USART_DR_DR_Pos                     (0U)                               
50 mjames 6965
#define USART_DR_DR_Msk                     (0x1FFUL << USART_DR_DR_Pos)        /*!< 0x000001FF */
30 mjames 6966
#define USART_DR_DR                         USART_DR_DR_Msk                    /*!< Data value */
6967
 
6968
/******************  Bit definition for USART_BRR register  *******************/
6969
#define USART_BRR_DIV_FRACTION_Pos          (0U)                               
50 mjames 6970
#define USART_BRR_DIV_FRACTION_Msk          (0xFUL << USART_BRR_DIV_FRACTION_Pos) /*!< 0x0000000F */
30 mjames 6971
#define USART_BRR_DIV_FRACTION              USART_BRR_DIV_FRACTION_Msk         /*!< Fraction of USARTDIV */
6972
#define USART_BRR_DIV_MANTISSA_Pos          (4U)                               
50 mjames 6973
#define USART_BRR_DIV_MANTISSA_Msk          (0xFFFUL << USART_BRR_DIV_MANTISSA_Pos) /*!< 0x0000FFF0 */
30 mjames 6974
#define USART_BRR_DIV_MANTISSA              USART_BRR_DIV_MANTISSA_Msk         /*!< Mantissa of USARTDIV */
6975
 
6976
/******************  Bit definition for USART_CR1 register  *******************/
6977
#define USART_CR1_SBK_Pos                   (0U)                               
50 mjames 6978
#define USART_CR1_SBK_Msk                   (0x1UL << USART_CR1_SBK_Pos)        /*!< 0x00000001 */
30 mjames 6979
#define USART_CR1_SBK                       USART_CR1_SBK_Msk                  /*!< Send Break */
6980
#define USART_CR1_RWU_Pos                   (1U)                               
50 mjames 6981
#define USART_CR1_RWU_Msk                   (0x1UL << USART_CR1_RWU_Pos)        /*!< 0x00000002 */
30 mjames 6982
#define USART_CR1_RWU                       USART_CR1_RWU_Msk                  /*!< Receiver wakeup */
6983
#define USART_CR1_RE_Pos                    (2U)                               
50 mjames 6984
#define USART_CR1_RE_Msk                    (0x1UL << USART_CR1_RE_Pos)         /*!< 0x00000004 */
30 mjames 6985
#define USART_CR1_RE                        USART_CR1_RE_Msk                   /*!< Receiver Enable */
6986
#define USART_CR1_TE_Pos                    (3U)                               
50 mjames 6987
#define USART_CR1_TE_Msk                    (0x1UL << USART_CR1_TE_Pos)         /*!< 0x00000008 */
30 mjames 6988
#define USART_CR1_TE                        USART_CR1_TE_Msk                   /*!< Transmitter Enable */
6989
#define USART_CR1_IDLEIE_Pos                (4U)                               
50 mjames 6990
#define USART_CR1_IDLEIE_Msk                (0x1UL << USART_CR1_IDLEIE_Pos)     /*!< 0x00000010 */
30 mjames 6991
#define USART_CR1_IDLEIE                    USART_CR1_IDLEIE_Msk               /*!< IDLE Interrupt Enable */
6992
#define USART_CR1_RXNEIE_Pos                (5U)                               
50 mjames 6993
#define USART_CR1_RXNEIE_Msk                (0x1UL << USART_CR1_RXNEIE_Pos)     /*!< 0x00000020 */
30 mjames 6994
#define USART_CR1_RXNEIE                    USART_CR1_RXNEIE_Msk               /*!< RXNE Interrupt Enable */
6995
#define USART_CR1_TCIE_Pos                  (6U)                               
50 mjames 6996
#define USART_CR1_TCIE_Msk                  (0x1UL << USART_CR1_TCIE_Pos)       /*!< 0x00000040 */
30 mjames 6997
#define USART_CR1_TCIE                      USART_CR1_TCIE_Msk                 /*!< Transmission Complete Interrupt Enable */
6998
#define USART_CR1_TXEIE_Pos                 (7U)                               
50 mjames 6999
#define USART_CR1_TXEIE_Msk                 (0x1UL << USART_CR1_TXEIE_Pos)      /*!< 0x00000080 */
30 mjames 7000
#define USART_CR1_TXEIE                     USART_CR1_TXEIE_Msk                /*!< PE Interrupt Enable */
7001
#define USART_CR1_PEIE_Pos                  (8U)                               
50 mjames 7002
#define USART_CR1_PEIE_Msk                  (0x1UL << USART_CR1_PEIE_Pos)       /*!< 0x00000100 */
30 mjames 7003
#define USART_CR1_PEIE                      USART_CR1_PEIE_Msk                 /*!< PE Interrupt Enable */
7004
#define USART_CR1_PS_Pos                    (9U)                               
50 mjames 7005
#define USART_CR1_PS_Msk                    (0x1UL << USART_CR1_PS_Pos)         /*!< 0x00000200 */
30 mjames 7006
#define USART_CR1_PS                        USART_CR1_PS_Msk                   /*!< Parity Selection */
7007
#define USART_CR1_PCE_Pos                   (10U)                              
50 mjames 7008
#define USART_CR1_PCE_Msk                   (0x1UL << USART_CR1_PCE_Pos)        /*!< 0x00000400 */
30 mjames 7009
#define USART_CR1_PCE                       USART_CR1_PCE_Msk                  /*!< Parity Control Enable */
7010
#define USART_CR1_WAKE_Pos                  (11U)                              
50 mjames 7011
#define USART_CR1_WAKE_Msk                  (0x1UL << USART_CR1_WAKE_Pos)       /*!< 0x00000800 */
30 mjames 7012
#define USART_CR1_WAKE                      USART_CR1_WAKE_Msk                 /*!< Wakeup method */
7013
#define USART_CR1_M_Pos                     (12U)                              
50 mjames 7014
#define USART_CR1_M_Msk                     (0x1UL << USART_CR1_M_Pos)          /*!< 0x00001000 */
30 mjames 7015
#define USART_CR1_M                         USART_CR1_M_Msk                    /*!< Word length */
7016
#define USART_CR1_UE_Pos                    (13U)                              
50 mjames 7017
#define USART_CR1_UE_Msk                    (0x1UL << USART_CR1_UE_Pos)         /*!< 0x00002000 */
30 mjames 7018
#define USART_CR1_UE                        USART_CR1_UE_Msk                   /*!< USART Enable */
7019
#define USART_CR1_OVER8_Pos                 (15U)                              
50 mjames 7020
#define USART_CR1_OVER8_Msk                 (0x1UL << USART_CR1_OVER8_Pos)      /*!< 0x00008000 */
30 mjames 7021
#define USART_CR1_OVER8                     USART_CR1_OVER8_Msk                /*!< Oversampling by 8-bit mode */
7022
 
7023
/******************  Bit definition for USART_CR2 register  *******************/
7024
#define USART_CR2_ADD_Pos                   (0U)                               
50 mjames 7025
#define USART_CR2_ADD_Msk                   (0xFUL << USART_CR2_ADD_Pos)        /*!< 0x0000000F */
30 mjames 7026
#define USART_CR2_ADD                       USART_CR2_ADD_Msk                  /*!< Address of the USART node */
7027
#define USART_CR2_LBDL_Pos                  (5U)                               
50 mjames 7028
#define USART_CR2_LBDL_Msk                  (0x1UL << USART_CR2_LBDL_Pos)       /*!< 0x00000020 */
30 mjames 7029
#define USART_CR2_LBDL                      USART_CR2_LBDL_Msk                 /*!< LIN Break Detection Length */
7030
#define USART_CR2_LBDIE_Pos                 (6U)                               
50 mjames 7031
#define USART_CR2_LBDIE_Msk                 (0x1UL << USART_CR2_LBDIE_Pos)      /*!< 0x00000040 */
30 mjames 7032
#define USART_CR2_LBDIE                     USART_CR2_LBDIE_Msk                /*!< LIN Break Detection Interrupt Enable */
7033
#define USART_CR2_LBCL_Pos                  (8U)                               
50 mjames 7034
#define USART_CR2_LBCL_Msk                  (0x1UL << USART_CR2_LBCL_Pos)       /*!< 0x00000100 */
30 mjames 7035
#define USART_CR2_LBCL                      USART_CR2_LBCL_Msk                 /*!< Last Bit Clock pulse */
7036
#define USART_CR2_CPHA_Pos                  (9U)                               
50 mjames 7037
#define USART_CR2_CPHA_Msk                  (0x1UL << USART_CR2_CPHA_Pos)       /*!< 0x00000200 */
30 mjames 7038
#define USART_CR2_CPHA                      USART_CR2_CPHA_Msk                 /*!< Clock Phase */
7039
#define USART_CR2_CPOL_Pos                  (10U)                              
50 mjames 7040
#define USART_CR2_CPOL_Msk                  (0x1UL << USART_CR2_CPOL_Pos)       /*!< 0x00000400 */
30 mjames 7041
#define USART_CR2_CPOL                      USART_CR2_CPOL_Msk                 /*!< Clock Polarity */
7042
#define USART_CR2_CLKEN_Pos                 (11U)                              
50 mjames 7043
#define USART_CR2_CLKEN_Msk                 (0x1UL << USART_CR2_CLKEN_Pos)      /*!< 0x00000800 */
30 mjames 7044
#define USART_CR2_CLKEN                     USART_CR2_CLKEN_Msk                /*!< Clock Enable */
7045
 
7046
#define USART_CR2_STOP_Pos                  (12U)                              
50 mjames 7047
#define USART_CR2_STOP_Msk                  (0x3UL << USART_CR2_STOP_Pos)       /*!< 0x00003000 */
30 mjames 7048
#define USART_CR2_STOP                      USART_CR2_STOP_Msk                 /*!< STOP[1:0] bits (STOP bits) */
50 mjames 7049
#define USART_CR2_STOP_0                    (0x1UL << USART_CR2_STOP_Pos)       /*!< 0x00001000 */
7050
#define USART_CR2_STOP_1                    (0x2UL << USART_CR2_STOP_Pos)       /*!< 0x00002000 */
30 mjames 7051
 
7052
#define USART_CR2_LINEN_Pos                 (14U)                              
50 mjames 7053
#define USART_CR2_LINEN_Msk                 (0x1UL << USART_CR2_LINEN_Pos)      /*!< 0x00004000 */
30 mjames 7054
#define USART_CR2_LINEN                     USART_CR2_LINEN_Msk                /*!< LIN mode enable */
7055
 
7056
/******************  Bit definition for USART_CR3 register  *******************/
7057
#define USART_CR3_EIE_Pos                   (0U)                               
50 mjames 7058
#define USART_CR3_EIE_Msk                   (0x1UL << USART_CR3_EIE_Pos)        /*!< 0x00000001 */
30 mjames 7059
#define USART_CR3_EIE                       USART_CR3_EIE_Msk                  /*!< Error Interrupt Enable */
7060
#define USART_CR3_IREN_Pos                  (1U)                               
50 mjames 7061
#define USART_CR3_IREN_Msk                  (0x1UL << USART_CR3_IREN_Pos)       /*!< 0x00000002 */
30 mjames 7062
#define USART_CR3_IREN                      USART_CR3_IREN_Msk                 /*!< IrDA mode Enable */
7063
#define USART_CR3_IRLP_Pos                  (2U)                               
50 mjames 7064
#define USART_CR3_IRLP_Msk                  (0x1UL << USART_CR3_IRLP_Pos)       /*!< 0x00000004 */
30 mjames 7065
#define USART_CR3_IRLP                      USART_CR3_IRLP_Msk                 /*!< IrDA Low-Power */
7066
#define USART_CR3_HDSEL_Pos                 (3U)                               
50 mjames 7067
#define USART_CR3_HDSEL_Msk                 (0x1UL << USART_CR3_HDSEL_Pos)      /*!< 0x00000008 */
30 mjames 7068
#define USART_CR3_HDSEL                     USART_CR3_HDSEL_Msk                /*!< Half-Duplex Selection */
7069
#define USART_CR3_NACK_Pos                  (4U)                               
50 mjames 7070
#define USART_CR3_NACK_Msk                  (0x1UL << USART_CR3_NACK_Pos)       /*!< 0x00000010 */
30 mjames 7071
#define USART_CR3_NACK                      USART_CR3_NACK_Msk                 /*!< Smartcard NACK enable */
7072
#define USART_CR3_SCEN_Pos                  (5U)                               
50 mjames 7073
#define USART_CR3_SCEN_Msk                  (0x1UL << USART_CR3_SCEN_Pos)       /*!< 0x00000020 */
30 mjames 7074
#define USART_CR3_SCEN                      USART_CR3_SCEN_Msk                 /*!< Smartcard mode enable */
7075
#define USART_CR3_DMAR_Pos                  (6U)                               
50 mjames 7076
#define USART_CR3_DMAR_Msk                  (0x1UL << USART_CR3_DMAR_Pos)       /*!< 0x00000040 */
30 mjames 7077
#define USART_CR3_DMAR                      USART_CR3_DMAR_Msk                 /*!< DMA Enable Receiver */
7078
#define USART_CR3_DMAT_Pos                  (7U)                               
50 mjames 7079
#define USART_CR3_DMAT_Msk                  (0x1UL << USART_CR3_DMAT_Pos)       /*!< 0x00000080 */
30 mjames 7080
#define USART_CR3_DMAT                      USART_CR3_DMAT_Msk                 /*!< DMA Enable Transmitter */
7081
#define USART_CR3_RTSE_Pos                  (8U)                               
50 mjames 7082
#define USART_CR3_RTSE_Msk                  (0x1UL << USART_CR3_RTSE_Pos)       /*!< 0x00000100 */
30 mjames 7083
#define USART_CR3_RTSE                      USART_CR3_RTSE_Msk                 /*!< RTS Enable */
7084
#define USART_CR3_CTSE_Pos                  (9U)                               
50 mjames 7085
#define USART_CR3_CTSE_Msk                  (0x1UL << USART_CR3_CTSE_Pos)       /*!< 0x00000200 */
30 mjames 7086
#define USART_CR3_CTSE                      USART_CR3_CTSE_Msk                 /*!< CTS Enable */
7087
#define USART_CR3_CTSIE_Pos                 (10U)                              
50 mjames 7088
#define USART_CR3_CTSIE_Msk                 (0x1UL << USART_CR3_CTSIE_Pos)      /*!< 0x00000400 */
30 mjames 7089
#define USART_CR3_CTSIE                     USART_CR3_CTSIE_Msk                /*!< CTS Interrupt Enable */
7090
#define USART_CR3_ONEBIT_Pos                (11U)                              
50 mjames 7091
#define USART_CR3_ONEBIT_Msk                (0x1UL << USART_CR3_ONEBIT_Pos)     /*!< 0x00000800 */
30 mjames 7092
#define USART_CR3_ONEBIT                    USART_CR3_ONEBIT_Msk               /*!< One sample bit method enable */
7093
 
7094
/******************  Bit definition for USART_GTPR register  ******************/
7095
#define USART_GTPR_PSC_Pos                  (0U)                               
50 mjames 7096
#define USART_GTPR_PSC_Msk                  (0xFFUL << USART_GTPR_PSC_Pos)      /*!< 0x000000FF */
30 mjames 7097
#define USART_GTPR_PSC                      USART_GTPR_PSC_Msk                 /*!< PSC[7:0] bits (Prescaler value) */
50 mjames 7098
#define USART_GTPR_PSC_0                    (0x01UL << USART_GTPR_PSC_Pos)      /*!< 0x00000001 */
7099
#define USART_GTPR_PSC_1                    (0x02UL << USART_GTPR_PSC_Pos)      /*!< 0x00000002 */
7100
#define USART_GTPR_PSC_2                    (0x04UL << USART_GTPR_PSC_Pos)      /*!< 0x00000004 */
7101
#define USART_GTPR_PSC_3                    (0x08UL << USART_GTPR_PSC_Pos)      /*!< 0x00000008 */
7102
#define USART_GTPR_PSC_4                    (0x10UL << USART_GTPR_PSC_Pos)      /*!< 0x00000010 */
7103
#define USART_GTPR_PSC_5                    (0x20UL << USART_GTPR_PSC_Pos)      /*!< 0x00000020 */
7104
#define USART_GTPR_PSC_6                    (0x40UL << USART_GTPR_PSC_Pos)      /*!< 0x00000040 */
7105
#define USART_GTPR_PSC_7                    (0x80UL << USART_GTPR_PSC_Pos)      /*!< 0x00000080 */
30 mjames 7106
 
7107
#define USART_GTPR_GT_Pos                   (8U)                               
50 mjames 7108
#define USART_GTPR_GT_Msk                   (0xFFUL << USART_GTPR_GT_Pos)       /*!< 0x0000FF00 */
30 mjames 7109
#define USART_GTPR_GT                       USART_GTPR_GT_Msk                  /*!< Guard time value */
7110
 
7111
/******************************************************************************/
7112
/*                                                                            */
7113
/*                     Universal Serial Bus (USB)                             */
7114
/*                                                                            */
7115
/******************************************************************************/
7116
 
7117
/*!<Endpoint-specific registers */
7118
 
7119
#define  USB_EP0R                              USB_BASE                        /*!< endpoint 0 register address */
7120
#define  USB_EP1R                             (USB_BASE + 0x00000004U)         /*!< endpoint 1 register address */
7121
#define  USB_EP2R                             (USB_BASE + 0x00000008U)         /*!< endpoint 2 register address */
7122
#define  USB_EP3R                             (USB_BASE + 0x0000000CU)         /*!< endpoint 3 register address */
7123
#define  USB_EP4R                             (USB_BASE + 0x00000010U)         /*!< endpoint 4 register address */
7124
#define  USB_EP5R                             (USB_BASE + 0x00000014U)         /*!< endpoint 5 register address */
7125
#define  USB_EP6R                             (USB_BASE + 0x00000018U)         /*!< endpoint 6 register address */
7126
#define  USB_EP7R                             (USB_BASE + 0x0000001CU)         /*!< endpoint 7 register address */
7127
 
7128
/* bit positions */
7129
#define USB_EP_CTR_RX_Pos                     (15U)                            
50 mjames 7130
#define USB_EP_CTR_RX_Msk                     (0x1UL << USB_EP_CTR_RX_Pos)      /*!< 0x00008000 */
30 mjames 7131
#define USB_EP_CTR_RX                         USB_EP_CTR_RX_Msk                /*!<  EndPoint Correct TRansfer RX */
7132
#define USB_EP_DTOG_RX_Pos                    (14U)                            
50 mjames 7133
#define USB_EP_DTOG_RX_Msk                    (0x1UL << USB_EP_DTOG_RX_Pos)     /*!< 0x00004000 */
30 mjames 7134
#define USB_EP_DTOG_RX                        USB_EP_DTOG_RX_Msk               /*!<  EndPoint Data TOGGLE RX */
7135
#define USB_EPRX_STAT_Pos                     (12U)                            
50 mjames 7136
#define USB_EPRX_STAT_Msk                     (0x3UL << USB_EPRX_STAT_Pos)      /*!< 0x00003000 */
30 mjames 7137
#define USB_EPRX_STAT                         USB_EPRX_STAT_Msk                /*!<  EndPoint RX STATus bit field */
7138
#define USB_EP_SETUP_Pos                      (11U)                            
50 mjames 7139
#define USB_EP_SETUP_Msk                      (0x1UL << USB_EP_SETUP_Pos)       /*!< 0x00000800 */
30 mjames 7140
#define USB_EP_SETUP                          USB_EP_SETUP_Msk                 /*!<  EndPoint SETUP */
7141
#define USB_EP_T_FIELD_Pos                    (9U)                             
50 mjames 7142
#define USB_EP_T_FIELD_Msk                    (0x3UL << USB_EP_T_FIELD_Pos)     /*!< 0x00000600 */
30 mjames 7143
#define USB_EP_T_FIELD                        USB_EP_T_FIELD_Msk               /*!<  EndPoint TYPE */
7144
#define USB_EP_KIND_Pos                       (8U)                             
50 mjames 7145
#define USB_EP_KIND_Msk                       (0x1UL << USB_EP_KIND_Pos)        /*!< 0x00000100 */
30 mjames 7146
#define USB_EP_KIND                           USB_EP_KIND_Msk                  /*!<  EndPoint KIND */
7147
#define USB_EP_CTR_TX_Pos                     (7U)                             
50 mjames 7148
#define USB_EP_CTR_TX_Msk                     (0x1UL << USB_EP_CTR_TX_Pos)      /*!< 0x00000080 */
30 mjames 7149
#define USB_EP_CTR_TX                         USB_EP_CTR_TX_Msk                /*!<  EndPoint Correct TRansfer TX */
7150
#define USB_EP_DTOG_TX_Pos                    (6U)                             
50 mjames 7151
#define USB_EP_DTOG_TX_Msk                    (0x1UL << USB_EP_DTOG_TX_Pos)     /*!< 0x00000040 */
30 mjames 7152
#define USB_EP_DTOG_TX                        USB_EP_DTOG_TX_Msk               /*!<  EndPoint Data TOGGLE TX */
7153
#define USB_EPTX_STAT_Pos                     (4U)                             
50 mjames 7154
#define USB_EPTX_STAT_Msk                     (0x3UL << USB_EPTX_STAT_Pos)      /*!< 0x00000030 */
30 mjames 7155
#define USB_EPTX_STAT                         USB_EPTX_STAT_Msk                /*!<  EndPoint TX STATus bit field */
7156
#define USB_EPADDR_FIELD_Pos                  (0U)                             
50 mjames 7157
#define USB_EPADDR_FIELD_Msk                  (0xFUL << USB_EPADDR_FIELD_Pos)   /*!< 0x0000000F */
30 mjames 7158
#define USB_EPADDR_FIELD                      USB_EPADDR_FIELD_Msk             /*!<  EndPoint ADDRess FIELD */
7159
 
7160
/* EndPoint REGister MASK (no toggle fields) */
7161
#define  USB_EPREG_MASK     (USB_EP_CTR_RX|USB_EP_SETUP|USB_EP_T_FIELD|USB_EP_KIND|USB_EP_CTR_TX|USB_EPADDR_FIELD)
7162
                                                                               /*!< EP_TYPE[1:0] EndPoint TYPE */
7163
#define USB_EP_TYPE_MASK_Pos                  (9U)                             
50 mjames 7164
#define USB_EP_TYPE_MASK_Msk                  (0x3UL << USB_EP_TYPE_MASK_Pos)   /*!< 0x00000600 */
30 mjames 7165
#define USB_EP_TYPE_MASK                      USB_EP_TYPE_MASK_Msk             /*!< EndPoint TYPE Mask */
7166
#define USB_EP_BULK                           (0x00000000U)                    /*!< EndPoint BULK */
7167
#define USB_EP_CONTROL                        (0x00000200U)                    /*!< EndPoint CONTROL */
7168
#define USB_EP_ISOCHRONOUS                    (0x00000400U)                    /*!< EndPoint ISOCHRONOUS */
7169
#define USB_EP_INTERRUPT                      (0x00000600U)                    /*!< EndPoint INTERRUPT */
7170
#define  USB_EP_T_MASK      (~USB_EP_T_FIELD & USB_EPREG_MASK)
7171
 
7172
#define  USB_EPKIND_MASK    (~USB_EP_KIND & USB_EPREG_MASK)            /*!< EP_KIND EndPoint KIND */
7173
                                                                               /*!< STAT_TX[1:0] STATus for TX transfer */
7174
#define USB_EP_TX_DIS                         (0x00000000U)                    /*!< EndPoint TX DISabled */
7175
#define USB_EP_TX_STALL                       (0x00000010U)                    /*!< EndPoint TX STALLed */
7176
#define USB_EP_TX_NAK                         (0x00000020U)                    /*!< EndPoint TX NAKed */
7177
#define USB_EP_TX_VALID                       (0x00000030U)                    /*!< EndPoint TX VALID */
7178
#define USB_EPTX_DTOG1                        (0x00000010U)                    /*!< EndPoint TX Data TOGgle bit1 */
7179
#define USB_EPTX_DTOG2                        (0x00000020U)                    /*!< EndPoint TX Data TOGgle bit2 */
7180
#define  USB_EPTX_DTOGMASK  (USB_EPTX_STAT|USB_EPREG_MASK)
7181
                                                                               /*!< STAT_RX[1:0] STATus for RX transfer */
7182
#define USB_EP_RX_DIS                         (0x00000000U)                    /*!< EndPoint RX DISabled */
7183
#define USB_EP_RX_STALL                       (0x00001000U)                    /*!< EndPoint RX STALLed */
7184
#define USB_EP_RX_NAK                         (0x00002000U)                    /*!< EndPoint RX NAKed */
7185
#define USB_EP_RX_VALID                       (0x00003000U)                    /*!< EndPoint RX VALID */
7186
#define USB_EPRX_DTOG1                        (0x00001000U)                    /*!< EndPoint RX Data TOGgle bit1 */
7187
#define USB_EPRX_DTOG2                        (0x00002000U)                    /*!< EndPoint RX Data TOGgle bit1 */
7188
#define  USB_EPRX_DTOGMASK  (USB_EPRX_STAT|USB_EPREG_MASK)
7189
 
7190
/*******************  Bit definition for USB_EP0R register  *******************/
7191
#define USB_EP0R_EA_Pos                       (0U)                             
50 mjames 7192
#define USB_EP0R_EA_Msk                       (0xFUL << USB_EP0R_EA_Pos)        /*!< 0x0000000F */
30 mjames 7193
#define USB_EP0R_EA                           USB_EP0R_EA_Msk                  /*!<Endpoint Address */
7194
 
7195
#define USB_EP0R_STAT_TX_Pos                  (4U)                             
50 mjames 7196
#define USB_EP0R_STAT_TX_Msk                  (0x3UL << USB_EP0R_STAT_TX_Pos)   /*!< 0x00000030 */
30 mjames 7197
#define USB_EP0R_STAT_TX                      USB_EP0R_STAT_TX_Msk             /*!<STAT_TX[1:0] bits (Status bits, for transmission transfers) */
50 mjames 7198
#define USB_EP0R_STAT_TX_0                    (0x1UL << USB_EP0R_STAT_TX_Pos)   /*!< 0x00000010 */
7199
#define USB_EP0R_STAT_TX_1                    (0x2UL << USB_EP0R_STAT_TX_Pos)   /*!< 0x00000020 */
30 mjames 7200
 
7201
#define USB_EP0R_DTOG_TX_Pos                  (6U)                             
50 mjames 7202
#define USB_EP0R_DTOG_TX_Msk                  (0x1UL << USB_EP0R_DTOG_TX_Pos)   /*!< 0x00000040 */
30 mjames 7203
#define USB_EP0R_DTOG_TX                      USB_EP0R_DTOG_TX_Msk             /*!<Data Toggle, for transmission transfers */
7204
#define USB_EP0R_CTR_TX_Pos                   (7U)                             
50 mjames 7205
#define USB_EP0R_CTR_TX_Msk                   (0x1UL << USB_EP0R_CTR_TX_Pos)    /*!< 0x00000080 */
30 mjames 7206
#define USB_EP0R_CTR_TX                       USB_EP0R_CTR_TX_Msk              /*!<Correct Transfer for transmission */
7207
#define USB_EP0R_EP_KIND_Pos                  (8U)                             
50 mjames 7208
#define USB_EP0R_EP_KIND_Msk                  (0x1UL << USB_EP0R_EP_KIND_Pos)   /*!< 0x00000100 */
30 mjames 7209
#define USB_EP0R_EP_KIND                      USB_EP0R_EP_KIND_Msk             /*!<Endpoint Kind */
7210
 
7211
#define USB_EP0R_EP_TYPE_Pos                  (9U)                             
50 mjames 7212
#define USB_EP0R_EP_TYPE_Msk                  (0x3UL << USB_EP0R_EP_TYPE_Pos)   /*!< 0x00000600 */
30 mjames 7213
#define USB_EP0R_EP_TYPE                      USB_EP0R_EP_TYPE_Msk             /*!<EP_TYPE[1:0] bits (Endpoint type) */
50 mjames 7214
#define USB_EP0R_EP_TYPE_0                    (0x1UL << USB_EP0R_EP_TYPE_Pos)   /*!< 0x00000200 */
7215
#define USB_EP0R_EP_TYPE_1                    (0x2UL << USB_EP0R_EP_TYPE_Pos)   /*!< 0x00000400 */
30 mjames 7216
 
7217
#define USB_EP0R_SETUP_Pos                    (11U)                            
50 mjames 7218
#define USB_EP0R_SETUP_Msk                    (0x1UL << USB_EP0R_SETUP_Pos)     /*!< 0x00000800 */
30 mjames 7219
#define USB_EP0R_SETUP                        USB_EP0R_SETUP_Msk               /*!<Setup transaction completed */
7220
 
7221
#define USB_EP0R_STAT_RX_Pos                  (12U)                            
50 mjames 7222
#define USB_EP0R_STAT_RX_Msk                  (0x3UL << USB_EP0R_STAT_RX_Pos)   /*!< 0x00003000 */
30 mjames 7223
#define USB_EP0R_STAT_RX                      USB_EP0R_STAT_RX_Msk             /*!<STAT_RX[1:0] bits (Status bits, for reception transfers) */
50 mjames 7224
#define USB_EP0R_STAT_RX_0                    (0x1UL << USB_EP0R_STAT_RX_Pos)   /*!< 0x00001000 */
7225
#define USB_EP0R_STAT_RX_1                    (0x2UL << USB_EP0R_STAT_RX_Pos)   /*!< 0x00002000 */
30 mjames 7226
 
7227
#define USB_EP0R_DTOG_RX_Pos                  (14U)                            
50 mjames 7228
#define USB_EP0R_DTOG_RX_Msk                  (0x1UL << USB_EP0R_DTOG_RX_Pos)   /*!< 0x00004000 */
30 mjames 7229
#define USB_EP0R_DTOG_RX                      USB_EP0R_DTOG_RX_Msk             /*!<Data Toggle, for reception transfers */
7230
#define USB_EP0R_CTR_RX_Pos                   (15U)                            
50 mjames 7231
#define USB_EP0R_CTR_RX_Msk                   (0x1UL << USB_EP0R_CTR_RX_Pos)    /*!< 0x00008000 */
30 mjames 7232
#define USB_EP0R_CTR_RX                       USB_EP0R_CTR_RX_Msk              /*!<Correct Transfer for reception */
7233
 
7234
/*******************  Bit definition for USB_EP1R register  *******************/
7235
#define USB_EP1R_EA_Pos                       (0U)                             
50 mjames 7236
#define USB_EP1R_EA_Msk                       (0xFUL << USB_EP1R_EA_Pos)        /*!< 0x0000000F */
30 mjames 7237
#define USB_EP1R_EA                           USB_EP1R_EA_Msk                  /*!<Endpoint Address */
7238
 
7239
#define USB_EP1R_STAT_TX_Pos                  (4U)                             
50 mjames 7240
#define USB_EP1R_STAT_TX_Msk                  (0x3UL << USB_EP1R_STAT_TX_Pos)   /*!< 0x00000030 */
30 mjames 7241
#define USB_EP1R_STAT_TX                      USB_EP1R_STAT_TX_Msk             /*!<STAT_TX[1:0] bits (Status bits, for transmission transfers) */
50 mjames 7242
#define USB_EP1R_STAT_TX_0                    (0x1UL << USB_EP1R_STAT_TX_Pos)   /*!< 0x00000010 */
7243
#define USB_EP1R_STAT_TX_1                    (0x2UL << USB_EP1R_STAT_TX_Pos)   /*!< 0x00000020 */
30 mjames 7244
 
7245
#define USB_EP1R_DTOG_TX_Pos                  (6U)                             
50 mjames 7246
#define USB_EP1R_DTOG_TX_Msk                  (0x1UL << USB_EP1R_DTOG_TX_Pos)   /*!< 0x00000040 */
30 mjames 7247
#define USB_EP1R_DTOG_TX                      USB_EP1R_DTOG_TX_Msk             /*!<Data Toggle, for transmission transfers */
7248
#define USB_EP1R_CTR_TX_Pos                   (7U)                             
50 mjames 7249
#define USB_EP1R_CTR_TX_Msk                   (0x1UL << USB_EP1R_CTR_TX_Pos)    /*!< 0x00000080 */
30 mjames 7250
#define USB_EP1R_CTR_TX                       USB_EP1R_CTR_TX_Msk              /*!<Correct Transfer for transmission */
7251
#define USB_EP1R_EP_KIND_Pos                  (8U)                             
50 mjames 7252
#define USB_EP1R_EP_KIND_Msk                  (0x1UL << USB_EP1R_EP_KIND_Pos)   /*!< 0x00000100 */
30 mjames 7253
#define USB_EP1R_EP_KIND                      USB_EP1R_EP_KIND_Msk             /*!<Endpoint Kind */
7254
 
7255
#define USB_EP1R_EP_TYPE_Pos                  (9U)                             
50 mjames 7256
#define USB_EP1R_EP_TYPE_Msk                  (0x3UL << USB_EP1R_EP_TYPE_Pos)   /*!< 0x00000600 */
30 mjames 7257
#define USB_EP1R_EP_TYPE                      USB_EP1R_EP_TYPE_Msk             /*!<EP_TYPE[1:0] bits (Endpoint type) */
50 mjames 7258
#define USB_EP1R_EP_TYPE_0                    (0x1UL << USB_EP1R_EP_TYPE_Pos)   /*!< 0x00000200 */
7259
#define USB_EP1R_EP_TYPE_1                    (0x2UL << USB_EP1R_EP_TYPE_Pos)   /*!< 0x00000400 */
30 mjames 7260
 
7261
#define USB_EP1R_SETUP_Pos                    (11U)                            
50 mjames 7262
#define USB_EP1R_SETUP_Msk                    (0x1UL << USB_EP1R_SETUP_Pos)     /*!< 0x00000800 */
30 mjames 7263
#define USB_EP1R_SETUP                        USB_EP1R_SETUP_Msk               /*!<Setup transaction completed */
7264
 
7265
#define USB_EP1R_STAT_RX_Pos                  (12U)                            
50 mjames 7266
#define USB_EP1R_STAT_RX_Msk                  (0x3UL << USB_EP1R_STAT_RX_Pos)   /*!< 0x00003000 */
30 mjames 7267
#define USB_EP1R_STAT_RX                      USB_EP1R_STAT_RX_Msk             /*!<STAT_RX[1:0] bits (Status bits, for reception transfers) */
50 mjames 7268
#define USB_EP1R_STAT_RX_0                    (0x1UL << USB_EP1R_STAT_RX_Pos)   /*!< 0x00001000 */
7269
#define USB_EP1R_STAT_RX_1                    (0x2UL << USB_EP1R_STAT_RX_Pos)   /*!< 0x00002000 */
30 mjames 7270
 
7271
#define USB_EP1R_DTOG_RX_Pos                  (14U)                            
50 mjames 7272
#define USB_EP1R_DTOG_RX_Msk                  (0x1UL << USB_EP1R_DTOG_RX_Pos)   /*!< 0x00004000 */
30 mjames 7273
#define USB_EP1R_DTOG_RX                      USB_EP1R_DTOG_RX_Msk             /*!<Data Toggle, for reception transfers */
7274
#define USB_EP1R_CTR_RX_Pos                   (15U)                            
50 mjames 7275
#define USB_EP1R_CTR_RX_Msk                   (0x1UL << USB_EP1R_CTR_RX_Pos)    /*!< 0x00008000 */
30 mjames 7276
#define USB_EP1R_CTR_RX                       USB_EP1R_CTR_RX_Msk              /*!<Correct Transfer for reception */
7277
 
7278
/*******************  Bit definition for USB_EP2R register  *******************/
7279
#define USB_EP2R_EA_Pos                       (0U)                             
50 mjames 7280
#define USB_EP2R_EA_Msk                       (0xFUL << USB_EP2R_EA_Pos)        /*!< 0x0000000F */
30 mjames 7281
#define USB_EP2R_EA                           USB_EP2R_EA_Msk                  /*!<Endpoint Address */
7282
 
7283
#define USB_EP2R_STAT_TX_Pos                  (4U)                             
50 mjames 7284
#define USB_EP2R_STAT_TX_Msk                  (0x3UL << USB_EP2R_STAT_TX_Pos)   /*!< 0x00000030 */
30 mjames 7285
#define USB_EP2R_STAT_TX                      USB_EP2R_STAT_TX_Msk             /*!<STAT_TX[1:0] bits (Status bits, for transmission transfers) */
50 mjames 7286
#define USB_EP2R_STAT_TX_0                    (0x1UL << USB_EP2R_STAT_TX_Pos)   /*!< 0x00000010 */
7287
#define USB_EP2R_STAT_TX_1                    (0x2UL << USB_EP2R_STAT_TX_Pos)   /*!< 0x00000020 */
30 mjames 7288
 
7289
#define USB_EP2R_DTOG_TX_Pos                  (6U)                             
50 mjames 7290
#define USB_EP2R_DTOG_TX_Msk                  (0x1UL << USB_EP2R_DTOG_TX_Pos)   /*!< 0x00000040 */
30 mjames 7291
#define USB_EP2R_DTOG_TX                      USB_EP2R_DTOG_TX_Msk             /*!<Data Toggle, for transmission transfers */
7292
#define USB_EP2R_CTR_TX_Pos                   (7U)                             
50 mjames 7293
#define USB_EP2R_CTR_TX_Msk                   (0x1UL << USB_EP2R_CTR_TX_Pos)    /*!< 0x00000080 */
30 mjames 7294
#define USB_EP2R_CTR_TX                       USB_EP2R_CTR_TX_Msk              /*!<Correct Transfer for transmission */
7295
#define USB_EP2R_EP_KIND_Pos                  (8U)                             
50 mjames 7296
#define USB_EP2R_EP_KIND_Msk                  (0x1UL << USB_EP2R_EP_KIND_Pos)   /*!< 0x00000100 */
30 mjames 7297
#define USB_EP2R_EP_KIND                      USB_EP2R_EP_KIND_Msk             /*!<Endpoint Kind */
7298
 
7299
#define USB_EP2R_EP_TYPE_Pos                  (9U)                             
50 mjames 7300
#define USB_EP2R_EP_TYPE_Msk                  (0x3UL << USB_EP2R_EP_TYPE_Pos)   /*!< 0x00000600 */
30 mjames 7301
#define USB_EP2R_EP_TYPE                      USB_EP2R_EP_TYPE_Msk             /*!<EP_TYPE[1:0] bits (Endpoint type) */
50 mjames 7302
#define USB_EP2R_EP_TYPE_0                    (0x1UL << USB_EP2R_EP_TYPE_Pos)   /*!< 0x00000200 */
7303
#define USB_EP2R_EP_TYPE_1                    (0x2UL << USB_EP2R_EP_TYPE_Pos)   /*!< 0x00000400 */
30 mjames 7304
 
7305
#define USB_EP2R_SETUP_Pos                    (11U)                            
50 mjames 7306
#define USB_EP2R_SETUP_Msk                    (0x1UL << USB_EP2R_SETUP_Pos)     /*!< 0x00000800 */
30 mjames 7307
#define USB_EP2R_SETUP                        USB_EP2R_SETUP_Msk               /*!<Setup transaction completed */
7308
 
7309
#define USB_EP2R_STAT_RX_Pos                  (12U)                            
50 mjames 7310
#define USB_EP2R_STAT_RX_Msk                  (0x3UL << USB_EP2R_STAT_RX_Pos)   /*!< 0x00003000 */
30 mjames 7311
#define USB_EP2R_STAT_RX                      USB_EP2R_STAT_RX_Msk             /*!<STAT_RX[1:0] bits (Status bits, for reception transfers) */
50 mjames 7312
#define USB_EP2R_STAT_RX_0                    (0x1UL << USB_EP2R_STAT_RX_Pos)   /*!< 0x00001000 */
7313
#define USB_EP2R_STAT_RX_1                    (0x2UL << USB_EP2R_STAT_RX_Pos)   /*!< 0x00002000 */
30 mjames 7314
 
7315
#define USB_EP2R_DTOG_RX_Pos                  (14U)                            
50 mjames 7316
#define USB_EP2R_DTOG_RX_Msk                  (0x1UL << USB_EP2R_DTOG_RX_Pos)   /*!< 0x00004000 */
30 mjames 7317
#define USB_EP2R_DTOG_RX                      USB_EP2R_DTOG_RX_Msk             /*!<Data Toggle, for reception transfers */
7318
#define USB_EP2R_CTR_RX_Pos                   (15U)                            
50 mjames 7319
#define USB_EP2R_CTR_RX_Msk                   (0x1UL << USB_EP2R_CTR_RX_Pos)    /*!< 0x00008000 */
30 mjames 7320
#define USB_EP2R_CTR_RX                       USB_EP2R_CTR_RX_Msk              /*!<Correct Transfer for reception */
7321
 
7322
/*******************  Bit definition for USB_EP3R register  *******************/
7323
#define USB_EP3R_EA_Pos                       (0U)                             
50 mjames 7324
#define USB_EP3R_EA_Msk                       (0xFUL << USB_EP3R_EA_Pos)        /*!< 0x0000000F */
30 mjames 7325
#define USB_EP3R_EA                           USB_EP3R_EA_Msk                  /*!<Endpoint Address */
7326
 
7327
#define USB_EP3R_STAT_TX_Pos                  (4U)                             
50 mjames 7328
#define USB_EP3R_STAT_TX_Msk                  (0x3UL << USB_EP3R_STAT_TX_Pos)   /*!< 0x00000030 */
30 mjames 7329
#define USB_EP3R_STAT_TX                      USB_EP3R_STAT_TX_Msk             /*!<STAT_TX[1:0] bits (Status bits, for transmission transfers) */
50 mjames 7330
#define USB_EP3R_STAT_TX_0                    (0x1UL << USB_EP3R_STAT_TX_Pos)   /*!< 0x00000010 */
7331
#define USB_EP3R_STAT_TX_1                    (0x2UL << USB_EP3R_STAT_TX_Pos)   /*!< 0x00000020 */
30 mjames 7332
 
7333
#define USB_EP3R_DTOG_TX_Pos                  (6U)                             
50 mjames 7334
#define USB_EP3R_DTOG_TX_Msk                  (0x1UL << USB_EP3R_DTOG_TX_Pos)   /*!< 0x00000040 */
30 mjames 7335
#define USB_EP3R_DTOG_TX                      USB_EP3R_DTOG_TX_Msk             /*!<Data Toggle, for transmission transfers */
7336
#define USB_EP3R_CTR_TX_Pos                   (7U)                             
50 mjames 7337
#define USB_EP3R_CTR_TX_Msk                   (0x1UL << USB_EP3R_CTR_TX_Pos)    /*!< 0x00000080 */
30 mjames 7338
#define USB_EP3R_CTR_TX                       USB_EP3R_CTR_TX_Msk              /*!<Correct Transfer for transmission */
7339
#define USB_EP3R_EP_KIND_Pos                  (8U)                             
50 mjames 7340
#define USB_EP3R_EP_KIND_Msk                  (0x1UL << USB_EP3R_EP_KIND_Pos)   /*!< 0x00000100 */
30 mjames 7341
#define USB_EP3R_EP_KIND                      USB_EP3R_EP_KIND_Msk             /*!<Endpoint Kind */
7342
 
7343
#define USB_EP3R_EP_TYPE_Pos                  (9U)                             
50 mjames 7344
#define USB_EP3R_EP_TYPE_Msk                  (0x3UL << USB_EP3R_EP_TYPE_Pos)   /*!< 0x00000600 */
30 mjames 7345
#define USB_EP3R_EP_TYPE                      USB_EP3R_EP_TYPE_Msk             /*!<EP_TYPE[1:0] bits (Endpoint type) */
50 mjames 7346
#define USB_EP3R_EP_TYPE_0                    (0x1UL << USB_EP3R_EP_TYPE_Pos)   /*!< 0x00000200 */
7347
#define USB_EP3R_EP_TYPE_1                    (0x2UL << USB_EP3R_EP_TYPE_Pos)   /*!< 0x00000400 */
30 mjames 7348
 
7349
#define USB_EP3R_SETUP_Pos                    (11U)                            
50 mjames 7350
#define USB_EP3R_SETUP_Msk                    (0x1UL << USB_EP3R_SETUP_Pos)     /*!< 0x00000800 */
30 mjames 7351
#define USB_EP3R_SETUP                        USB_EP3R_SETUP_Msk               /*!<Setup transaction completed */
7352
 
7353
#define USB_EP3R_STAT_RX_Pos                  (12U)                            
50 mjames 7354
#define USB_EP3R_STAT_RX_Msk                  (0x3UL << USB_EP3R_STAT_RX_Pos)   /*!< 0x00003000 */
30 mjames 7355
#define USB_EP3R_STAT_RX                      USB_EP3R_STAT_RX_Msk             /*!<STAT_RX[1:0] bits (Status bits, for reception transfers) */
50 mjames 7356
#define USB_EP3R_STAT_RX_0                    (0x1UL << USB_EP3R_STAT_RX_Pos)   /*!< 0x00001000 */
7357
#define USB_EP3R_STAT_RX_1                    (0x2UL << USB_EP3R_STAT_RX_Pos)   /*!< 0x00002000 */
30 mjames 7358
 
7359
#define USB_EP3R_DTOG_RX_Pos                  (14U)                            
50 mjames 7360
#define USB_EP3R_DTOG_RX_Msk                  (0x1UL << USB_EP3R_DTOG_RX_Pos)   /*!< 0x00004000 */
30 mjames 7361
#define USB_EP3R_DTOG_RX                      USB_EP3R_DTOG_RX_Msk             /*!<Data Toggle, for reception transfers */
7362
#define USB_EP3R_CTR_RX_Pos                   (15U)                            
50 mjames 7363
#define USB_EP3R_CTR_RX_Msk                   (0x1UL << USB_EP3R_CTR_RX_Pos)    /*!< 0x00008000 */
30 mjames 7364
#define USB_EP3R_CTR_RX                       USB_EP3R_CTR_RX_Msk              /*!<Correct Transfer for reception */
7365
 
7366
/*******************  Bit definition for USB_EP4R register  *******************/
7367
#define USB_EP4R_EA_Pos                       (0U)                             
50 mjames 7368
#define USB_EP4R_EA_Msk                       (0xFUL << USB_EP4R_EA_Pos)        /*!< 0x0000000F */
30 mjames 7369
#define USB_EP4R_EA                           USB_EP4R_EA_Msk                  /*!<Endpoint Address */
7370
 
7371
#define USB_EP4R_STAT_TX_Pos                  (4U)                             
50 mjames 7372
#define USB_EP4R_STAT_TX_Msk                  (0x3UL << USB_EP4R_STAT_TX_Pos)   /*!< 0x00000030 */
30 mjames 7373
#define USB_EP4R_STAT_TX                      USB_EP4R_STAT_TX_Msk             /*!<STAT_TX[1:0] bits (Status bits, for transmission transfers) */
50 mjames 7374
#define USB_EP4R_STAT_TX_0                    (0x1UL << USB_EP4R_STAT_TX_Pos)   /*!< 0x00000010 */
7375
#define USB_EP4R_STAT_TX_1                    (0x2UL << USB_EP4R_STAT_TX_Pos)   /*!< 0x00000020 */
30 mjames 7376
 
7377
#define USB_EP4R_DTOG_TX_Pos                  (6U)                             
50 mjames 7378
#define USB_EP4R_DTOG_TX_Msk                  (0x1UL << USB_EP4R_DTOG_TX_Pos)   /*!< 0x00000040 */
30 mjames 7379
#define USB_EP4R_DTOG_TX                      USB_EP4R_DTOG_TX_Msk             /*!<Data Toggle, for transmission transfers */
7380
#define USB_EP4R_CTR_TX_Pos                   (7U)                             
50 mjames 7381
#define USB_EP4R_CTR_TX_Msk                   (0x1UL << USB_EP4R_CTR_TX_Pos)    /*!< 0x00000080 */
30 mjames 7382
#define USB_EP4R_CTR_TX                       USB_EP4R_CTR_TX_Msk              /*!<Correct Transfer for transmission */
7383
#define USB_EP4R_EP_KIND_Pos                  (8U)                             
50 mjames 7384
#define USB_EP4R_EP_KIND_Msk                  (0x1UL << USB_EP4R_EP_KIND_Pos)   /*!< 0x00000100 */
30 mjames 7385
#define USB_EP4R_EP_KIND                      USB_EP4R_EP_KIND_Msk             /*!<Endpoint Kind */
7386
 
7387
#define USB_EP4R_EP_TYPE_Pos                  (9U)                             
50 mjames 7388
#define USB_EP4R_EP_TYPE_Msk                  (0x3UL << USB_EP4R_EP_TYPE_Pos)   /*!< 0x00000600 */
30 mjames 7389
#define USB_EP4R_EP_TYPE                      USB_EP4R_EP_TYPE_Msk             /*!<EP_TYPE[1:0] bits (Endpoint type) */
50 mjames 7390
#define USB_EP4R_EP_TYPE_0                    (0x1UL << USB_EP4R_EP_TYPE_Pos)   /*!< 0x00000200 */
7391
#define USB_EP4R_EP_TYPE_1                    (0x2UL << USB_EP4R_EP_TYPE_Pos)   /*!< 0x00000400 */
30 mjames 7392
 
7393
#define USB_EP4R_SETUP_Pos                    (11U)                            
50 mjames 7394
#define USB_EP4R_SETUP_Msk                    (0x1UL << USB_EP4R_SETUP_Pos)     /*!< 0x00000800 */
30 mjames 7395
#define USB_EP4R_SETUP                        USB_EP4R_SETUP_Msk               /*!<Setup transaction completed */
7396
 
7397
#define USB_EP4R_STAT_RX_Pos                  (12U)                            
50 mjames 7398
#define USB_EP4R_STAT_RX_Msk                  (0x3UL << USB_EP4R_STAT_RX_Pos)   /*!< 0x00003000 */
30 mjames 7399
#define USB_EP4R_STAT_RX                      USB_EP4R_STAT_RX_Msk             /*!<STAT_RX[1:0] bits (Status bits, for reception transfers) */
50 mjames 7400
#define USB_EP4R_STAT_RX_0                    (0x1UL << USB_EP4R_STAT_RX_Pos)   /*!< 0x00001000 */
7401
#define USB_EP4R_STAT_RX_1                    (0x2UL << USB_EP4R_STAT_RX_Pos)   /*!< 0x00002000 */
30 mjames 7402
 
7403
#define USB_EP4R_DTOG_RX_Pos                  (14U)                            
50 mjames 7404
#define USB_EP4R_DTOG_RX_Msk                  (0x1UL << USB_EP4R_DTOG_RX_Pos)   /*!< 0x00004000 */
30 mjames 7405
#define USB_EP4R_DTOG_RX                      USB_EP4R_DTOG_RX_Msk             /*!<Data Toggle, for reception transfers */
7406
#define USB_EP4R_CTR_RX_Pos                   (15U)                            
50 mjames 7407
#define USB_EP4R_CTR_RX_Msk                   (0x1UL << USB_EP4R_CTR_RX_Pos)    /*!< 0x00008000 */
30 mjames 7408
#define USB_EP4R_CTR_RX                       USB_EP4R_CTR_RX_Msk              /*!<Correct Transfer for reception */
7409
 
7410
/*******************  Bit definition for USB_EP5R register  *******************/
7411
#define USB_EP5R_EA_Pos                       (0U)                             
50 mjames 7412
#define USB_EP5R_EA_Msk                       (0xFUL << USB_EP5R_EA_Pos)        /*!< 0x0000000F */
30 mjames 7413
#define USB_EP5R_EA                           USB_EP5R_EA_Msk                  /*!<Endpoint Address */
7414
 
7415
#define USB_EP5R_STAT_TX_Pos                  (4U)                             
50 mjames 7416
#define USB_EP5R_STAT_TX_Msk                  (0x3UL << USB_EP5R_STAT_TX_Pos)   /*!< 0x00000030 */
30 mjames 7417
#define USB_EP5R_STAT_TX                      USB_EP5R_STAT_TX_Msk             /*!<STAT_TX[1:0] bits (Status bits, for transmission transfers) */
50 mjames 7418
#define USB_EP5R_STAT_TX_0                    (0x1UL << USB_EP5R_STAT_TX_Pos)   /*!< 0x00000010 */
7419
#define USB_EP5R_STAT_TX_1                    (0x2UL << USB_EP5R_STAT_TX_Pos)   /*!< 0x00000020 */
30 mjames 7420
 
7421
#define USB_EP5R_DTOG_TX_Pos                  (6U)                             
50 mjames 7422
#define USB_EP5R_DTOG_TX_Msk                  (0x1UL << USB_EP5R_DTOG_TX_Pos)   /*!< 0x00000040 */
30 mjames 7423
#define USB_EP5R_DTOG_TX                      USB_EP5R_DTOG_TX_Msk             /*!<Data Toggle, for transmission transfers */
7424
#define USB_EP5R_CTR_TX_Pos                   (7U)                             
50 mjames 7425
#define USB_EP5R_CTR_TX_Msk                   (0x1UL << USB_EP5R_CTR_TX_Pos)    /*!< 0x00000080 */
30 mjames 7426
#define USB_EP5R_CTR_TX                       USB_EP5R_CTR_TX_Msk              /*!<Correct Transfer for transmission */
7427
#define USB_EP5R_EP_KIND_Pos                  (8U)                             
50 mjames 7428
#define USB_EP5R_EP_KIND_Msk                  (0x1UL << USB_EP5R_EP_KIND_Pos)   /*!< 0x00000100 */
30 mjames 7429
#define USB_EP5R_EP_KIND                      USB_EP5R_EP_KIND_Msk             /*!<Endpoint Kind */
7430
 
7431
#define USB_EP5R_EP_TYPE_Pos                  (9U)                             
50 mjames 7432
#define USB_EP5R_EP_TYPE_Msk                  (0x3UL << USB_EP5R_EP_TYPE_Pos)   /*!< 0x00000600 */
30 mjames 7433
#define USB_EP5R_EP_TYPE                      USB_EP5R_EP_TYPE_Msk             /*!<EP_TYPE[1:0] bits (Endpoint type) */
50 mjames 7434
#define USB_EP5R_EP_TYPE_0                    (0x1UL << USB_EP5R_EP_TYPE_Pos)   /*!< 0x00000200 */
7435
#define USB_EP5R_EP_TYPE_1                    (0x2UL << USB_EP5R_EP_TYPE_Pos)   /*!< 0x00000400 */
30 mjames 7436
 
7437
#define USB_EP5R_SETUP_Pos                    (11U)                            
50 mjames 7438
#define USB_EP5R_SETUP_Msk                    (0x1UL << USB_EP5R_SETUP_Pos)     /*!< 0x00000800 */
30 mjames 7439
#define USB_EP5R_SETUP                        USB_EP5R_SETUP_Msk               /*!<Setup transaction completed */
7440
 
7441
#define USB_EP5R_STAT_RX_Pos                  (12U)                            
50 mjames 7442
#define USB_EP5R_STAT_RX_Msk                  (0x3UL << USB_EP5R_STAT_RX_Pos)   /*!< 0x00003000 */
30 mjames 7443
#define USB_EP5R_STAT_RX                      USB_EP5R_STAT_RX_Msk             /*!<STAT_RX[1:0] bits (Status bits, for reception transfers) */
50 mjames 7444
#define USB_EP5R_STAT_RX_0                    (0x1UL << USB_EP5R_STAT_RX_Pos)   /*!< 0x00001000 */
7445
#define USB_EP5R_STAT_RX_1                    (0x2UL << USB_EP5R_STAT_RX_Pos)   /*!< 0x00002000 */
30 mjames 7446
 
7447
#define USB_EP5R_DTOG_RX_Pos                  (14U)                            
50 mjames 7448
#define USB_EP5R_DTOG_RX_Msk                  (0x1UL << USB_EP5R_DTOG_RX_Pos)   /*!< 0x00004000 */
30 mjames 7449
#define USB_EP5R_DTOG_RX                      USB_EP5R_DTOG_RX_Msk             /*!<Data Toggle, for reception transfers */
7450
#define USB_EP5R_CTR_RX_Pos                   (15U)                            
50 mjames 7451
#define USB_EP5R_CTR_RX_Msk                   (0x1UL << USB_EP5R_CTR_RX_Pos)    /*!< 0x00008000 */
30 mjames 7452
#define USB_EP5R_CTR_RX                       USB_EP5R_CTR_RX_Msk              /*!<Correct Transfer for reception */
7453
 
7454
/*******************  Bit definition for USB_EP6R register  *******************/
7455
#define USB_EP6R_EA_Pos                       (0U)                             
50 mjames 7456
#define USB_EP6R_EA_Msk                       (0xFUL << USB_EP6R_EA_Pos)        /*!< 0x0000000F */
30 mjames 7457
#define USB_EP6R_EA                           USB_EP6R_EA_Msk                  /*!<Endpoint Address */
7458
 
7459
#define USB_EP6R_STAT_TX_Pos                  (4U)                             
50 mjames 7460
#define USB_EP6R_STAT_TX_Msk                  (0x3UL << USB_EP6R_STAT_TX_Pos)   /*!< 0x00000030 */
30 mjames 7461
#define USB_EP6R_STAT_TX                      USB_EP6R_STAT_TX_Msk             /*!<STAT_TX[1:0] bits (Status bits, for transmission transfers) */
50 mjames 7462
#define USB_EP6R_STAT_TX_0                    (0x1UL << USB_EP6R_STAT_TX_Pos)   /*!< 0x00000010 */
7463
#define USB_EP6R_STAT_TX_1                    (0x2UL << USB_EP6R_STAT_TX_Pos)   /*!< 0x00000020 */
30 mjames 7464
 
7465
#define USB_EP6R_DTOG_TX_Pos                  (6U)                             
50 mjames 7466
#define USB_EP6R_DTOG_TX_Msk                  (0x1UL << USB_EP6R_DTOG_TX_Pos)   /*!< 0x00000040 */
30 mjames 7467
#define USB_EP6R_DTOG_TX                      USB_EP6R_DTOG_TX_Msk             /*!<Data Toggle, for transmission transfers */
7468
#define USB_EP6R_CTR_TX_Pos                   (7U)                             
50 mjames 7469
#define USB_EP6R_CTR_TX_Msk                   (0x1UL << USB_EP6R_CTR_TX_Pos)    /*!< 0x00000080 */
30 mjames 7470
#define USB_EP6R_CTR_TX                       USB_EP6R_CTR_TX_Msk              /*!<Correct Transfer for transmission */
7471
#define USB_EP6R_EP_KIND_Pos                  (8U)                             
50 mjames 7472
#define USB_EP6R_EP_KIND_Msk                  (0x1UL << USB_EP6R_EP_KIND_Pos)   /*!< 0x00000100 */
30 mjames 7473
#define USB_EP6R_EP_KIND                      USB_EP6R_EP_KIND_Msk             /*!<Endpoint Kind */
7474
 
7475
#define USB_EP6R_EP_TYPE_Pos                  (9U)                             
50 mjames 7476
#define USB_EP6R_EP_TYPE_Msk                  (0x3UL << USB_EP6R_EP_TYPE_Pos)   /*!< 0x00000600 */
30 mjames 7477
#define USB_EP6R_EP_TYPE                      USB_EP6R_EP_TYPE_Msk             /*!<EP_TYPE[1:0] bits (Endpoint type) */
50 mjames 7478
#define USB_EP6R_EP_TYPE_0                    (0x1UL << USB_EP6R_EP_TYPE_Pos)   /*!< 0x00000200 */
7479
#define USB_EP6R_EP_TYPE_1                    (0x2UL << USB_EP6R_EP_TYPE_Pos)   /*!< 0x00000400 */
30 mjames 7480
 
7481
#define USB_EP6R_SETUP_Pos                    (11U)                            
50 mjames 7482
#define USB_EP6R_SETUP_Msk                    (0x1UL << USB_EP6R_SETUP_Pos)     /*!< 0x00000800 */
30 mjames 7483
#define USB_EP6R_SETUP                        USB_EP6R_SETUP_Msk               /*!<Setup transaction completed */
7484
 
7485
#define USB_EP6R_STAT_RX_Pos                  (12U)                            
50 mjames 7486
#define USB_EP6R_STAT_RX_Msk                  (0x3UL << USB_EP6R_STAT_RX_Pos)   /*!< 0x00003000 */
30 mjames 7487
#define USB_EP6R_STAT_RX                      USB_EP6R_STAT_RX_Msk             /*!<STAT_RX[1:0] bits (Status bits, for reception transfers) */
50 mjames 7488
#define USB_EP6R_STAT_RX_0                    (0x1UL << USB_EP6R_STAT_RX_Pos)   /*!< 0x00001000 */
7489
#define USB_EP6R_STAT_RX_1                    (0x2UL << USB_EP6R_STAT_RX_Pos)   /*!< 0x00002000 */
30 mjames 7490
 
7491
#define USB_EP6R_DTOG_RX_Pos                  (14U)                            
50 mjames 7492
#define USB_EP6R_DTOG_RX_Msk                  (0x1UL << USB_EP6R_DTOG_RX_Pos)   /*!< 0x00004000 */
30 mjames 7493
#define USB_EP6R_DTOG_RX                      USB_EP6R_DTOG_RX_Msk             /*!<Data Toggle, for reception transfers */
7494
#define USB_EP6R_CTR_RX_Pos                   (15U)                            
50 mjames 7495
#define USB_EP6R_CTR_RX_Msk                   (0x1UL << USB_EP6R_CTR_RX_Pos)    /*!< 0x00008000 */
30 mjames 7496
#define USB_EP6R_CTR_RX                       USB_EP6R_CTR_RX_Msk              /*!<Correct Transfer for reception */
7497
 
7498
/*******************  Bit definition for USB_EP7R register  *******************/
7499
#define USB_EP7R_EA_Pos                       (0U)                             
50 mjames 7500
#define USB_EP7R_EA_Msk                       (0xFUL << USB_EP7R_EA_Pos)        /*!< 0x0000000F */
30 mjames 7501
#define USB_EP7R_EA                           USB_EP7R_EA_Msk                  /*!<Endpoint Address */
7502
 
7503
#define USB_EP7R_STAT_TX_Pos                  (4U)                             
50 mjames 7504
#define USB_EP7R_STAT_TX_Msk                  (0x3UL << USB_EP7R_STAT_TX_Pos)   /*!< 0x00000030 */
30 mjames 7505
#define USB_EP7R_STAT_TX                      USB_EP7R_STAT_TX_Msk             /*!<STAT_TX[1:0] bits (Status bits, for transmission transfers) */
50 mjames 7506
#define USB_EP7R_STAT_TX_0                    (0x1UL << USB_EP7R_STAT_TX_Pos)   /*!< 0x00000010 */
7507
#define USB_EP7R_STAT_TX_1                    (0x2UL << USB_EP7R_STAT_TX_Pos)   /*!< 0x00000020 */
30 mjames 7508
 
7509
#define USB_EP7R_DTOG_TX_Pos                  (6U)                             
50 mjames 7510
#define USB_EP7R_DTOG_TX_Msk                  (0x1UL << USB_EP7R_DTOG_TX_Pos)   /*!< 0x00000040 */
30 mjames 7511
#define USB_EP7R_DTOG_TX                      USB_EP7R_DTOG_TX_Msk             /*!<Data Toggle, for transmission transfers */
7512
#define USB_EP7R_CTR_TX_Pos                   (7U)                             
50 mjames 7513
#define USB_EP7R_CTR_TX_Msk                   (0x1UL << USB_EP7R_CTR_TX_Pos)    /*!< 0x00000080 */
30 mjames 7514
#define USB_EP7R_CTR_TX                       USB_EP7R_CTR_TX_Msk              /*!<Correct Transfer for transmission */
7515
#define USB_EP7R_EP_KIND_Pos                  (8U)                             
50 mjames 7516
#define USB_EP7R_EP_KIND_Msk                  (0x1UL << USB_EP7R_EP_KIND_Pos)   /*!< 0x00000100 */
30 mjames 7517
#define USB_EP7R_EP_KIND                      USB_EP7R_EP_KIND_Msk             /*!<Endpoint Kind */
7518
 
7519
#define USB_EP7R_EP_TYPE_Pos                  (9U)                             
50 mjames 7520
#define USB_EP7R_EP_TYPE_Msk                  (0x3UL << USB_EP7R_EP_TYPE_Pos)   /*!< 0x00000600 */
30 mjames 7521
#define USB_EP7R_EP_TYPE                      USB_EP7R_EP_TYPE_Msk             /*!<EP_TYPE[1:0] bits (Endpoint type) */
50 mjames 7522
#define USB_EP7R_EP_TYPE_0                    (0x1UL << USB_EP7R_EP_TYPE_Pos)   /*!< 0x00000200 */
7523
#define USB_EP7R_EP_TYPE_1                    (0x2UL << USB_EP7R_EP_TYPE_Pos)   /*!< 0x00000400 */
30 mjames 7524
 
7525
#define USB_EP7R_SETUP_Pos                    (11U)                            
50 mjames 7526
#define USB_EP7R_SETUP_Msk                    (0x1UL << USB_EP7R_SETUP_Pos)     /*!< 0x00000800 */
30 mjames 7527
#define USB_EP7R_SETUP                        USB_EP7R_SETUP_Msk               /*!<Setup transaction completed */
7528
 
7529
#define USB_EP7R_STAT_RX_Pos                  (12U)                            
50 mjames 7530
#define USB_EP7R_STAT_RX_Msk                  (0x3UL << USB_EP7R_STAT_RX_Pos)   /*!< 0x00003000 */
30 mjames 7531
#define USB_EP7R_STAT_RX                      USB_EP7R_STAT_RX_Msk             /*!<STAT_RX[1:0] bits (Status bits, for reception transfers) */
50 mjames 7532
#define USB_EP7R_STAT_RX_0                    (0x1UL << USB_EP7R_STAT_RX_Pos)   /*!< 0x00001000 */
7533
#define USB_EP7R_STAT_RX_1                    (0x2UL << USB_EP7R_STAT_RX_Pos)   /*!< 0x00002000 */
30 mjames 7534
 
7535
#define USB_EP7R_DTOG_RX_Pos                  (14U)                            
50 mjames 7536
#define USB_EP7R_DTOG_RX_Msk                  (0x1UL << USB_EP7R_DTOG_RX_Pos)   /*!< 0x00004000 */
30 mjames 7537
#define USB_EP7R_DTOG_RX                      USB_EP7R_DTOG_RX_Msk             /*!<Data Toggle, for reception transfers */
7538
#define USB_EP7R_CTR_RX_Pos                   (15U)                            
50 mjames 7539
#define USB_EP7R_CTR_RX_Msk                   (0x1UL << USB_EP7R_CTR_RX_Pos)    /*!< 0x00008000 */
30 mjames 7540
#define USB_EP7R_CTR_RX                       USB_EP7R_CTR_RX_Msk              /*!<Correct Transfer for reception */
7541
 
7542
/*!<Common registers */
7543
 
7544
#define  USB_CNTR                             (USB_BASE + 0x00000040U)          /*!< Control register */
7545
#define  USB_ISTR                             (USB_BASE + 0x00000044U)          /*!< Interrupt status register */
7546
#define  USB_FNR                              (USB_BASE + 0x00000048U)          /*!< Frame number register */
7547
#define  USB_DADDR                            (USB_BASE + 0x0000004CU)          /*!< Device address register */
7548
#define  USB_BTABLE                           (USB_BASE + 0x00000050U)          /*!< Buffer Table address register */
7549
 
7550
 
7551
 
7552
/*******************  Bit definition for USB_CNTR register  *******************/
7553
#define USB_CNTR_FRES_Pos                     (0U)                             
50 mjames 7554
#define USB_CNTR_FRES_Msk                     (0x1UL << USB_CNTR_FRES_Pos)      /*!< 0x00000001 */
30 mjames 7555
#define USB_CNTR_FRES                         USB_CNTR_FRES_Msk                /*!<Force USB Reset */
7556
#define USB_CNTR_PDWN_Pos                     (1U)                             
50 mjames 7557
#define USB_CNTR_PDWN_Msk                     (0x1UL << USB_CNTR_PDWN_Pos)      /*!< 0x00000002 */
30 mjames 7558
#define USB_CNTR_PDWN                         USB_CNTR_PDWN_Msk                /*!<Power down */
7559
#define USB_CNTR_LPMODE_Pos                   (2U)                             
50 mjames 7560
#define USB_CNTR_LPMODE_Msk                   (0x1UL << USB_CNTR_LPMODE_Pos)    /*!< 0x00000004 */
30 mjames 7561
#define USB_CNTR_LPMODE                       USB_CNTR_LPMODE_Msk              /*!<Low-power mode */
7562
#define USB_CNTR_FSUSP_Pos                    (3U)                             
50 mjames 7563
#define USB_CNTR_FSUSP_Msk                    (0x1UL << USB_CNTR_FSUSP_Pos)     /*!< 0x00000008 */
30 mjames 7564
#define USB_CNTR_FSUSP                        USB_CNTR_FSUSP_Msk               /*!<Force suspend */
7565
#define USB_CNTR_RESUME_Pos                   (4U)                             
50 mjames 7566
#define USB_CNTR_RESUME_Msk                   (0x1UL << USB_CNTR_RESUME_Pos)    /*!< 0x00000010 */
30 mjames 7567
#define USB_CNTR_RESUME                       USB_CNTR_RESUME_Msk              /*!<Resume request */
7568
#define USB_CNTR_ESOFM_Pos                    (8U)                             
50 mjames 7569
#define USB_CNTR_ESOFM_Msk                    (0x1UL << USB_CNTR_ESOFM_Pos)     /*!< 0x00000100 */
30 mjames 7570
#define USB_CNTR_ESOFM                        USB_CNTR_ESOFM_Msk               /*!<Expected Start Of Frame Interrupt Mask */
7571
#define USB_CNTR_SOFM_Pos                     (9U)                             
50 mjames 7572
#define USB_CNTR_SOFM_Msk                     (0x1UL << USB_CNTR_SOFM_Pos)      /*!< 0x00000200 */
30 mjames 7573
#define USB_CNTR_SOFM                         USB_CNTR_SOFM_Msk                /*!<Start Of Frame Interrupt Mask */
7574
#define USB_CNTR_RESETM_Pos                   (10U)                            
50 mjames 7575
#define USB_CNTR_RESETM_Msk                   (0x1UL << USB_CNTR_RESETM_Pos)    /*!< 0x00000400 */
30 mjames 7576
#define USB_CNTR_RESETM                       USB_CNTR_RESETM_Msk              /*!<RESET Interrupt Mask */
7577
#define USB_CNTR_SUSPM_Pos                    (11U)                            
50 mjames 7578
#define USB_CNTR_SUSPM_Msk                    (0x1UL << USB_CNTR_SUSPM_Pos)     /*!< 0x00000800 */
30 mjames 7579
#define USB_CNTR_SUSPM                        USB_CNTR_SUSPM_Msk               /*!<Suspend mode Interrupt Mask */
7580
#define USB_CNTR_WKUPM_Pos                    (12U)                            
50 mjames 7581
#define USB_CNTR_WKUPM_Msk                    (0x1UL << USB_CNTR_WKUPM_Pos)     /*!< 0x00001000 */
30 mjames 7582
#define USB_CNTR_WKUPM                        USB_CNTR_WKUPM_Msk               /*!<Wakeup Interrupt Mask */
7583
#define USB_CNTR_ERRM_Pos                     (13U)                            
50 mjames 7584
#define USB_CNTR_ERRM_Msk                     (0x1UL << USB_CNTR_ERRM_Pos)      /*!< 0x00002000 */
30 mjames 7585
#define USB_CNTR_ERRM                         USB_CNTR_ERRM_Msk                /*!<Error Interrupt Mask */
7586
#define USB_CNTR_PMAOVRM_Pos                  (14U)                            
50 mjames 7587
#define USB_CNTR_PMAOVRM_Msk                  (0x1UL << USB_CNTR_PMAOVRM_Pos)   /*!< 0x00004000 */
30 mjames 7588
#define USB_CNTR_PMAOVRM                      USB_CNTR_PMAOVRM_Msk             /*!<Packet Memory Area Over / Underrun Interrupt Mask */
7589
#define USB_CNTR_CTRM_Pos                     (15U)                            
50 mjames 7590
#define USB_CNTR_CTRM_Msk                     (0x1UL << USB_CNTR_CTRM_Pos)      /*!< 0x00008000 */
30 mjames 7591
#define USB_CNTR_CTRM                         USB_CNTR_CTRM_Msk                /*!<Correct Transfer Interrupt Mask */
7592
 
7593
/*******************  Bit definition for USB_ISTR register  *******************/
7594
#define USB_ISTR_EP_ID_Pos                    (0U)                             
50 mjames 7595
#define USB_ISTR_EP_ID_Msk                    (0xFUL << USB_ISTR_EP_ID_Pos)     /*!< 0x0000000F */
30 mjames 7596
#define USB_ISTR_EP_ID                        USB_ISTR_EP_ID_Msk               /*!<Endpoint Identifier */
7597
#define USB_ISTR_DIR_Pos                      (4U)                             
50 mjames 7598
#define USB_ISTR_DIR_Msk                      (0x1UL << USB_ISTR_DIR_Pos)       /*!< 0x00000010 */
30 mjames 7599
#define USB_ISTR_DIR                          USB_ISTR_DIR_Msk                 /*!<Direction of transaction */
7600
#define USB_ISTR_ESOF_Pos                     (8U)                             
50 mjames 7601
#define USB_ISTR_ESOF_Msk                     (0x1UL << USB_ISTR_ESOF_Pos)      /*!< 0x00000100 */
30 mjames 7602
#define USB_ISTR_ESOF                         USB_ISTR_ESOF_Msk                /*!<Expected Start Of Frame */
7603
#define USB_ISTR_SOF_Pos                      (9U)                             
50 mjames 7604
#define USB_ISTR_SOF_Msk                      (0x1UL << USB_ISTR_SOF_Pos)       /*!< 0x00000200 */
30 mjames 7605
#define USB_ISTR_SOF                          USB_ISTR_SOF_Msk                 /*!<Start Of Frame */
7606
#define USB_ISTR_RESET_Pos                    (10U)                            
50 mjames 7607
#define USB_ISTR_RESET_Msk                    (0x1UL << USB_ISTR_RESET_Pos)     /*!< 0x00000400 */
30 mjames 7608
#define USB_ISTR_RESET                        USB_ISTR_RESET_Msk               /*!<USB RESET request */
7609
#define USB_ISTR_SUSP_Pos                     (11U)                            
50 mjames 7610
#define USB_ISTR_SUSP_Msk                     (0x1UL << USB_ISTR_SUSP_Pos)      /*!< 0x00000800 */
30 mjames 7611
#define USB_ISTR_SUSP                         USB_ISTR_SUSP_Msk                /*!<Suspend mode request */
7612
#define USB_ISTR_WKUP_Pos                     (12U)                            
50 mjames 7613
#define USB_ISTR_WKUP_Msk                     (0x1UL << USB_ISTR_WKUP_Pos)      /*!< 0x00001000 */
30 mjames 7614
#define USB_ISTR_WKUP                         USB_ISTR_WKUP_Msk                /*!<Wake up */
7615
#define USB_ISTR_ERR_Pos                      (13U)                            
50 mjames 7616
#define USB_ISTR_ERR_Msk                      (0x1UL << USB_ISTR_ERR_Pos)       /*!< 0x00002000 */
30 mjames 7617
#define USB_ISTR_ERR                          USB_ISTR_ERR_Msk                 /*!<Error */
7618
#define USB_ISTR_PMAOVR_Pos                   (14U)                            
50 mjames 7619
#define USB_ISTR_PMAOVR_Msk                   (0x1UL << USB_ISTR_PMAOVR_Pos)    /*!< 0x00004000 */
30 mjames 7620
#define USB_ISTR_PMAOVR                       USB_ISTR_PMAOVR_Msk              /*!<Packet Memory Area Over / Underrun */
7621
#define USB_ISTR_CTR_Pos                      (15U)                            
50 mjames 7622
#define USB_ISTR_CTR_Msk                      (0x1UL << USB_ISTR_CTR_Pos)       /*!< 0x00008000 */
30 mjames 7623
#define USB_ISTR_CTR                          USB_ISTR_CTR_Msk                 /*!<Correct Transfer */
7624
 
7625
#define  USB_CLR_CTR                          (~USB_ISTR_CTR)                  /*!< clear Correct TRansfer bit */
7626
#define  USB_CLR_PMAOVRM                      (~USB_ISTR_PMAOVR)               /*!< clear DMA OVeR/underrun bit*/
7627
#define  USB_CLR_ERR                          (~USB_ISTR_ERR)                  /*!< clear ERRor bit */
7628
#define  USB_CLR_WKUP                         (~USB_ISTR_WKUP)                 /*!< clear WaKe UP bit */
7629
#define  USB_CLR_SUSP                         (~USB_ISTR_SUSP)                 /*!< clear SUSPend bit */
7630
#define  USB_CLR_RESET                        (~USB_ISTR_RESET)                /*!< clear RESET bit */
7631
#define  USB_CLR_SOF                          (~USB_ISTR_SOF)                  /*!< clear Start Of Frame bit */
7632
#define  USB_CLR_ESOF                         (~USB_ISTR_ESOF)                 /*!< clear Expected Start Of Frame bit */
7633
 
7634
 
7635
/*******************  Bit definition for USB_FNR register  ********************/
7636
#define USB_FNR_FN_Pos                        (0U)                             
50 mjames 7637
#define USB_FNR_FN_Msk                        (0x7FFUL << USB_FNR_FN_Pos)       /*!< 0x000007FF */
30 mjames 7638
#define USB_FNR_FN                            USB_FNR_FN_Msk                   /*!<Frame Number */
7639
#define USB_FNR_LSOF_Pos                      (11U)                            
50 mjames 7640
#define USB_FNR_LSOF_Msk                      (0x3UL << USB_FNR_LSOF_Pos)       /*!< 0x00001800 */
30 mjames 7641
#define USB_FNR_LSOF                          USB_FNR_LSOF_Msk                 /*!<Lost SOF */
7642
#define USB_FNR_LCK_Pos                       (13U)                            
50 mjames 7643
#define USB_FNR_LCK_Msk                       (0x1UL << USB_FNR_LCK_Pos)        /*!< 0x00002000 */
30 mjames 7644
#define USB_FNR_LCK                           USB_FNR_LCK_Msk                  /*!<Locked */
7645
#define USB_FNR_RXDM_Pos                      (14U)                            
50 mjames 7646
#define USB_FNR_RXDM_Msk                      (0x1UL << USB_FNR_RXDM_Pos)       /*!< 0x00004000 */
30 mjames 7647
#define USB_FNR_RXDM                          USB_FNR_RXDM_Msk                 /*!<Receive Data - Line Status */
7648
#define USB_FNR_RXDP_Pos                      (15U)                            
50 mjames 7649
#define USB_FNR_RXDP_Msk                      (0x1UL << USB_FNR_RXDP_Pos)       /*!< 0x00008000 */
30 mjames 7650
#define USB_FNR_RXDP                          USB_FNR_RXDP_Msk                 /*!<Receive Data + Line Status */
7651
 
7652
/******************  Bit definition for USB_DADDR register  *******************/
7653
#define USB_DADDR_ADD_Pos                     (0U)                             
50 mjames 7654
#define USB_DADDR_ADD_Msk                     (0x7FUL << USB_DADDR_ADD_Pos)     /*!< 0x0000007F */
30 mjames 7655
#define USB_DADDR_ADD                         USB_DADDR_ADD_Msk                /*!<ADD[6:0] bits (Device Address) */
7656
#define USB_DADDR_ADD0_Pos                    (0U)                             
50 mjames 7657
#define USB_DADDR_ADD0_Msk                    (0x1UL << USB_DADDR_ADD0_Pos)     /*!< 0x00000001 */
30 mjames 7658
#define USB_DADDR_ADD0                        USB_DADDR_ADD0_Msk               /*!<Bit 0 */
7659
#define USB_DADDR_ADD1_Pos                    (1U)                             
50 mjames 7660
#define USB_DADDR_ADD1_Msk                    (0x1UL << USB_DADDR_ADD1_Pos)     /*!< 0x00000002 */
30 mjames 7661
#define USB_DADDR_ADD1                        USB_DADDR_ADD1_Msk               /*!<Bit 1 */
7662
#define USB_DADDR_ADD2_Pos                    (2U)                             
50 mjames 7663
#define USB_DADDR_ADD2_Msk                    (0x1UL << USB_DADDR_ADD2_Pos)     /*!< 0x00000004 */
30 mjames 7664
#define USB_DADDR_ADD2                        USB_DADDR_ADD2_Msk               /*!<Bit 2 */
7665
#define USB_DADDR_ADD3_Pos                    (3U)                             
50 mjames 7666
#define USB_DADDR_ADD3_Msk                    (0x1UL << USB_DADDR_ADD3_Pos)     /*!< 0x00000008 */
30 mjames 7667
#define USB_DADDR_ADD3                        USB_DADDR_ADD3_Msk               /*!<Bit 3 */
7668
#define USB_DADDR_ADD4_Pos                    (4U)                             
50 mjames 7669
#define USB_DADDR_ADD4_Msk                    (0x1UL << USB_DADDR_ADD4_Pos)     /*!< 0x00000010 */
30 mjames 7670
#define USB_DADDR_ADD4                        USB_DADDR_ADD4_Msk               /*!<Bit 4 */
7671
#define USB_DADDR_ADD5_Pos                    (5U)                             
50 mjames 7672
#define USB_DADDR_ADD5_Msk                    (0x1UL << USB_DADDR_ADD5_Pos)     /*!< 0x00000020 */
30 mjames 7673
#define USB_DADDR_ADD5                        USB_DADDR_ADD5_Msk               /*!<Bit 5 */
7674
#define USB_DADDR_ADD6_Pos                    (6U)                             
50 mjames 7675
#define USB_DADDR_ADD6_Msk                    (0x1UL << USB_DADDR_ADD6_Pos)     /*!< 0x00000040 */
30 mjames 7676
#define USB_DADDR_ADD6                        USB_DADDR_ADD6_Msk               /*!<Bit 6 */
7677
 
7678
#define USB_DADDR_EF_Pos                      (7U)                             
50 mjames 7679
#define USB_DADDR_EF_Msk                      (0x1UL << USB_DADDR_EF_Pos)       /*!< 0x00000080 */
30 mjames 7680
#define USB_DADDR_EF                          USB_DADDR_EF_Msk                 /*!<Enable Function */
7681
 
7682
/******************  Bit definition for USB_BTABLE register  ******************/    
7683
#define USB_BTABLE_BTABLE_Pos                 (3U)                             
50 mjames 7684
#define USB_BTABLE_BTABLE_Msk                 (0x1FFFUL << USB_BTABLE_BTABLE_Pos) /*!< 0x0000FFF8 */
30 mjames 7685
#define USB_BTABLE_BTABLE                     USB_BTABLE_BTABLE_Msk            /*!<Buffer Table */
7686
 
7687
/*!< Buffer descriptor table */
7688
/*****************  Bit definition for USB_ADDR0_TX register  *****************/
7689
#define USB_ADDR0_TX_ADDR0_TX_Pos             (1U)                             
50 mjames 7690
#define USB_ADDR0_TX_ADDR0_TX_Msk             (0x7FFFUL << USB_ADDR0_TX_ADDR0_TX_Pos) /*!< 0x0000FFFE */
30 mjames 7691
#define USB_ADDR0_TX_ADDR0_TX                 USB_ADDR0_TX_ADDR0_TX_Msk        /*!< Transmission Buffer Address 0 */
7692
 
7693
/*****************  Bit definition for USB_ADDR1_TX register  *****************/
7694
#define USB_ADDR1_TX_ADDR1_TX_Pos             (1U)                             
50 mjames 7695
#define USB_ADDR1_TX_ADDR1_TX_Msk             (0x7FFFUL << USB_ADDR1_TX_ADDR1_TX_Pos) /*!< 0x0000FFFE */
30 mjames 7696
#define USB_ADDR1_TX_ADDR1_TX                 USB_ADDR1_TX_ADDR1_TX_Msk        /*!< Transmission Buffer Address 1 */
7697
 
7698
/*****************  Bit definition for USB_ADDR2_TX register  *****************/
7699
#define USB_ADDR2_TX_ADDR2_TX_Pos             (1U)                             
50 mjames 7700
#define USB_ADDR2_TX_ADDR2_TX_Msk             (0x7FFFUL << USB_ADDR2_TX_ADDR2_TX_Pos) /*!< 0x0000FFFE */
30 mjames 7701
#define USB_ADDR2_TX_ADDR2_TX                 USB_ADDR2_TX_ADDR2_TX_Msk        /*!< Transmission Buffer Address 2 */
7702
 
7703
/*****************  Bit definition for USB_ADDR3_TX register  *****************/
7704
#define USB_ADDR3_TX_ADDR3_TX_Pos             (1U)                             
50 mjames 7705
#define USB_ADDR3_TX_ADDR3_TX_Msk             (0x7FFFUL << USB_ADDR3_TX_ADDR3_TX_Pos) /*!< 0x0000FFFE */
30 mjames 7706
#define USB_ADDR3_TX_ADDR3_TX                 USB_ADDR3_TX_ADDR3_TX_Msk        /*!< Transmission Buffer Address 3 */
7707
 
7708
/*****************  Bit definition for USB_ADDR4_TX register  *****************/
7709
#define USB_ADDR4_TX_ADDR4_TX_Pos             (1U)                             
50 mjames 7710
#define USB_ADDR4_TX_ADDR4_TX_Msk             (0x7FFFUL << USB_ADDR4_TX_ADDR4_TX_Pos) /*!< 0x0000FFFE */
30 mjames 7711
#define USB_ADDR4_TX_ADDR4_TX                 USB_ADDR4_TX_ADDR4_TX_Msk        /*!< Transmission Buffer Address 4 */
7712
 
7713
/*****************  Bit definition for USB_ADDR5_TX register  *****************/
7714
#define USB_ADDR5_TX_ADDR5_TX_Pos             (1U)                             
50 mjames 7715
#define USB_ADDR5_TX_ADDR5_TX_Msk             (0x7FFFUL << USB_ADDR5_TX_ADDR5_TX_Pos) /*!< 0x0000FFFE */
30 mjames 7716
#define USB_ADDR5_TX_ADDR5_TX                 USB_ADDR5_TX_ADDR5_TX_Msk        /*!< Transmission Buffer Address 5 */
7717
 
7718
/*****************  Bit definition for USB_ADDR6_TX register  *****************/
7719
#define USB_ADDR6_TX_ADDR6_TX_Pos             (1U)                             
50 mjames 7720
#define USB_ADDR6_TX_ADDR6_TX_Msk             (0x7FFFUL << USB_ADDR6_TX_ADDR6_TX_Pos) /*!< 0x0000FFFE */
30 mjames 7721
#define USB_ADDR6_TX_ADDR6_TX                 USB_ADDR6_TX_ADDR6_TX_Msk        /*!< Transmission Buffer Address 6 */
7722
 
7723
/*****************  Bit definition for USB_ADDR7_TX register  *****************/
7724
#define USB_ADDR7_TX_ADDR7_TX_Pos             (1U)                             
50 mjames 7725
#define USB_ADDR7_TX_ADDR7_TX_Msk             (0x7FFFUL << USB_ADDR7_TX_ADDR7_TX_Pos) /*!< 0x0000FFFE */
30 mjames 7726
#define USB_ADDR7_TX_ADDR7_TX                 USB_ADDR7_TX_ADDR7_TX_Msk        /*!< Transmission Buffer Address 7 */
7727
 
7728
/*----------------------------------------------------------------------------*/
7729
 
7730
/*****************  Bit definition for USB_COUNT0_TX register  ****************/
7731
#define USB_COUNT0_TX_COUNT0_TX_Pos           (0U)                             
50 mjames 7732
#define USB_COUNT0_TX_COUNT0_TX_Msk           (0x3FFUL << USB_COUNT0_TX_COUNT0_TX_Pos) /*!< 0x000003FF */
30 mjames 7733
#define USB_COUNT0_TX_COUNT0_TX               USB_COUNT0_TX_COUNT0_TX_Msk      /*!< Transmission Byte Count 0 */
7734
 
7735
/*****************  Bit definition for USB_COUNT1_TX register  ****************/
7736
#define USB_COUNT1_TX_COUNT1_TX_Pos           (0U)                             
50 mjames 7737
#define USB_COUNT1_TX_COUNT1_TX_Msk           (0x3FFUL << USB_COUNT1_TX_COUNT1_TX_Pos) /*!< 0x000003FF */
30 mjames 7738
#define USB_COUNT1_TX_COUNT1_TX               USB_COUNT1_TX_COUNT1_TX_Msk      /*!< Transmission Byte Count 1 */
7739
 
7740
/*****************  Bit definition for USB_COUNT2_TX register  ****************/
7741
#define USB_COUNT2_TX_COUNT2_TX_Pos           (0U)                             
50 mjames 7742
#define USB_COUNT2_TX_COUNT2_TX_Msk           (0x3FFUL << USB_COUNT2_TX_COUNT2_TX_Pos) /*!< 0x000003FF */
30 mjames 7743
#define USB_COUNT2_TX_COUNT2_TX               USB_COUNT2_TX_COUNT2_TX_Msk      /*!< Transmission Byte Count 2 */
7744
 
7745
/*****************  Bit definition for USB_COUNT3_TX register  ****************/
7746
#define USB_COUNT3_TX_COUNT3_TX_Pos           (0U)                             
50 mjames 7747
#define USB_COUNT3_TX_COUNT3_TX_Msk           (0x3FFUL << USB_COUNT3_TX_COUNT3_TX_Pos) /*!< 0x000003FF */
30 mjames 7748
#define USB_COUNT3_TX_COUNT3_TX               USB_COUNT3_TX_COUNT3_TX_Msk      /*!< Transmission Byte Count 3 */
7749
 
7750
/*****************  Bit definition for USB_COUNT4_TX register  ****************/
7751
#define USB_COUNT4_TX_COUNT4_TX_Pos           (0U)                             
50 mjames 7752
#define USB_COUNT4_TX_COUNT4_TX_Msk           (0x3FFUL << USB_COUNT4_TX_COUNT4_TX_Pos) /*!< 0x000003FF */
30 mjames 7753
#define USB_COUNT4_TX_COUNT4_TX               USB_COUNT4_TX_COUNT4_TX_Msk      /*!< Transmission Byte Count 4 */
7754
 
7755
/*****************  Bit definition for USB_COUNT5_TX register  ****************/
7756
#define USB_COUNT5_TX_COUNT5_TX_Pos           (0U)                             
50 mjames 7757
#define USB_COUNT5_TX_COUNT5_TX_Msk           (0x3FFUL << USB_COUNT5_TX_COUNT5_TX_Pos) /*!< 0x000003FF */
30 mjames 7758
#define USB_COUNT5_TX_COUNT5_TX               USB_COUNT5_TX_COUNT5_TX_Msk      /*!< Transmission Byte Count 5 */
7759
 
7760
/*****************  Bit definition for USB_COUNT6_TX register  ****************/
7761
#define USB_COUNT6_TX_COUNT6_TX_Pos           (0U)                             
50 mjames 7762
#define USB_COUNT6_TX_COUNT6_TX_Msk           (0x3FFUL << USB_COUNT6_TX_COUNT6_TX_Pos) /*!< 0x000003FF */
30 mjames 7763
#define USB_COUNT6_TX_COUNT6_TX               USB_COUNT6_TX_COUNT6_TX_Msk      /*!< Transmission Byte Count 6 */
7764
 
7765
/*****************  Bit definition for USB_COUNT7_TX register  ****************/
7766
#define USB_COUNT7_TX_COUNT7_TX_Pos           (0U)                             
50 mjames 7767
#define USB_COUNT7_TX_COUNT7_TX_Msk           (0x3FFUL << USB_COUNT7_TX_COUNT7_TX_Pos) /*!< 0x000003FF */
30 mjames 7768
#define USB_COUNT7_TX_COUNT7_TX               USB_COUNT7_TX_COUNT7_TX_Msk      /*!< Transmission Byte Count 7 */
7769
 
7770
/*----------------------------------------------------------------------------*/
7771
 
7772
/****************  Bit definition for USB_COUNT0_TX_0 register  ***************/
7773
#define USB_COUNT0_TX_0_COUNT0_TX_0           (0x000003FFU)                    /*!< Transmission Byte Count 0 (low) */
7774
 
7775
/****************  Bit definition for USB_COUNT0_TX_1 register  ***************/
7776
#define USB_COUNT0_TX_1_COUNT0_TX_1           (0x03FF0000U)                    /*!< Transmission Byte Count 0 (high) */
7777
 
7778
/****************  Bit definition for USB_COUNT1_TX_0 register  ***************/
7779
#define USB_COUNT1_TX_0_COUNT1_TX_0           (0x000003FFU)                    /*!< Transmission Byte Count 1 (low) */
7780
 
7781
/****************  Bit definition for USB_COUNT1_TX_1 register  ***************/
7782
#define USB_COUNT1_TX_1_COUNT1_TX_1           (0x03FF0000U)                    /*!< Transmission Byte Count 1 (high) */
7783
 
7784
/****************  Bit definition for USB_COUNT2_TX_0 register  ***************/
7785
#define USB_COUNT2_TX_0_COUNT2_TX_0           (0x000003FFU)                    /*!< Transmission Byte Count 2 (low) */
7786
 
7787
/****************  Bit definition for USB_COUNT2_TX_1 register  ***************/
7788
#define USB_COUNT2_TX_1_COUNT2_TX_1           (0x03FF0000U)                    /*!< Transmission Byte Count 2 (high) */
7789
 
7790
/****************  Bit definition for USB_COUNT3_TX_0 register  ***************/
50 mjames 7791
#define USB_COUNT3_TX_0_COUNT3_TX_0           (0x000003FFU)                    /*!< Transmission Byte Count 3 (low) */
30 mjames 7792
 
7793
/****************  Bit definition for USB_COUNT3_TX_1 register  ***************/
50 mjames 7794
#define USB_COUNT3_TX_1_COUNT3_TX_1           (0x03FF0000U)                    /*!< Transmission Byte Count 3 (high) */
30 mjames 7795
 
7796
/****************  Bit definition for USB_COUNT4_TX_0 register  ***************/
7797
#define USB_COUNT4_TX_0_COUNT4_TX_0           (0x000003FFU)                    /*!< Transmission Byte Count 4 (low) */
7798
 
7799
/****************  Bit definition for USB_COUNT4_TX_1 register  ***************/
7800
#define USB_COUNT4_TX_1_COUNT4_TX_1           (0x03FF0000U)                    /*!< Transmission Byte Count 4 (high) */
7801
 
7802
/****************  Bit definition for USB_COUNT5_TX_0 register  ***************/
7803
#define USB_COUNT5_TX_0_COUNT5_TX_0           (0x000003FFU)                    /*!< Transmission Byte Count 5 (low) */
7804
 
7805
/****************  Bit definition for USB_COUNT5_TX_1 register  ***************/
7806
#define USB_COUNT5_TX_1_COUNT5_TX_1           (0x03FF0000U)                    /*!< Transmission Byte Count 5 (high) */
7807
 
7808
/****************  Bit definition for USB_COUNT6_TX_0 register  ***************/
7809
#define USB_COUNT6_TX_0_COUNT6_TX_0           (0x000003FFU)                    /*!< Transmission Byte Count 6 (low) */
7810
 
7811
/****************  Bit definition for USB_COUNT6_TX_1 register  ***************/
7812
#define USB_COUNT6_TX_1_COUNT6_TX_1           (0x03FF0000U)                    /*!< Transmission Byte Count 6 (high) */
7813
 
7814
/****************  Bit definition for USB_COUNT7_TX_0 register  ***************/
7815
#define USB_COUNT7_TX_0_COUNT7_TX_0           (0x000003FFU)                    /*!< Transmission Byte Count 7 (low) */
7816
 
7817
/****************  Bit definition for USB_COUNT7_TX_1 register  ***************/
7818
#define USB_COUNT7_TX_1_COUNT7_TX_1           (0x03FF0000U)                    /*!< Transmission Byte Count 7 (high) */
7819
 
7820
/*----------------------------------------------------------------------------*/
7821
 
7822
/*****************  Bit definition for USB_ADDR0_RX register  *****************/
7823
#define USB_ADDR0_RX_ADDR0_RX_Pos             (1U)                             
50 mjames 7824
#define USB_ADDR0_RX_ADDR0_RX_Msk             (0x7FFFUL << USB_ADDR0_RX_ADDR0_RX_Pos) /*!< 0x0000FFFE */
30 mjames 7825
#define USB_ADDR0_RX_ADDR0_RX                 USB_ADDR0_RX_ADDR0_RX_Msk        /*!< Reception Buffer Address 0 */
7826
 
7827
/*****************  Bit definition for USB_ADDR1_RX register  *****************/
7828
#define USB_ADDR1_RX_ADDR1_RX_Pos             (1U)                             
50 mjames 7829
#define USB_ADDR1_RX_ADDR1_RX_Msk             (0x7FFFUL << USB_ADDR1_RX_ADDR1_RX_Pos) /*!< 0x0000FFFE */
30 mjames 7830
#define USB_ADDR1_RX_ADDR1_RX                 USB_ADDR1_RX_ADDR1_RX_Msk        /*!< Reception Buffer Address 1 */
7831
 
7832
/*****************  Bit definition for USB_ADDR2_RX register  *****************/
7833
#define USB_ADDR2_RX_ADDR2_RX_Pos             (1U)                             
50 mjames 7834
#define USB_ADDR2_RX_ADDR2_RX_Msk             (0x7FFFUL << USB_ADDR2_RX_ADDR2_RX_Pos) /*!< 0x0000FFFE */
30 mjames 7835
#define USB_ADDR2_RX_ADDR2_RX                 USB_ADDR2_RX_ADDR2_RX_Msk        /*!< Reception Buffer Address 2 */
7836
 
7837
/*****************  Bit definition for USB_ADDR3_RX register  *****************/
7838
#define USB_ADDR3_RX_ADDR3_RX_Pos             (1U)                             
50 mjames 7839
#define USB_ADDR3_RX_ADDR3_RX_Msk             (0x7FFFUL << USB_ADDR3_RX_ADDR3_RX_Pos) /*!< 0x0000FFFE */
30 mjames 7840
#define USB_ADDR3_RX_ADDR3_RX                 USB_ADDR3_RX_ADDR3_RX_Msk        /*!< Reception Buffer Address 3 */
7841
 
7842
/*****************  Bit definition for USB_ADDR4_RX register  *****************/
7843
#define USB_ADDR4_RX_ADDR4_RX_Pos             (1U)                             
50 mjames 7844
#define USB_ADDR4_RX_ADDR4_RX_Msk             (0x7FFFUL << USB_ADDR4_RX_ADDR4_RX_Pos) /*!< 0x0000FFFE */
30 mjames 7845
#define USB_ADDR4_RX_ADDR4_RX                 USB_ADDR4_RX_ADDR4_RX_Msk        /*!< Reception Buffer Address 4 */
7846
 
7847
/*****************  Bit definition for USB_ADDR5_RX register  *****************/
7848
#define USB_ADDR5_RX_ADDR5_RX_Pos             (1U)                             
50 mjames 7849
#define USB_ADDR5_RX_ADDR5_RX_Msk             (0x7FFFUL << USB_ADDR5_RX_ADDR5_RX_Pos) /*!< 0x0000FFFE */
30 mjames 7850
#define USB_ADDR5_RX_ADDR5_RX                 USB_ADDR5_RX_ADDR5_RX_Msk        /*!< Reception Buffer Address 5 */
7851
 
7852
/*****************  Bit definition for USB_ADDR6_RX register  *****************/
7853
#define USB_ADDR6_RX_ADDR6_RX_Pos             (1U)                             
50 mjames 7854
#define USB_ADDR6_RX_ADDR6_RX_Msk             (0x7FFFUL << USB_ADDR6_RX_ADDR6_RX_Pos) /*!< 0x0000FFFE */
30 mjames 7855
#define USB_ADDR6_RX_ADDR6_RX                 USB_ADDR6_RX_ADDR6_RX_Msk        /*!< Reception Buffer Address 6 */
7856
 
7857
/*****************  Bit definition for USB_ADDR7_RX register  *****************/
7858
#define USB_ADDR7_RX_ADDR7_RX_Pos             (1U)                             
50 mjames 7859
#define USB_ADDR7_RX_ADDR7_RX_Msk             (0x7FFFUL << USB_ADDR7_RX_ADDR7_RX_Pos) /*!< 0x0000FFFE */
30 mjames 7860
#define USB_ADDR7_RX_ADDR7_RX                 USB_ADDR7_RX_ADDR7_RX_Msk        /*!< Reception Buffer Address 7 */
7861
 
7862
/*----------------------------------------------------------------------------*/
7863
 
7864
/*****************  Bit definition for USB_COUNT0_RX register  ****************/
7865
#define USB_COUNT0_RX_COUNT0_RX_Pos           (0U)                             
50 mjames 7866
#define USB_COUNT0_RX_COUNT0_RX_Msk           (0x3FFUL << USB_COUNT0_RX_COUNT0_RX_Pos) /*!< 0x000003FF */
30 mjames 7867
#define USB_COUNT0_RX_COUNT0_RX               USB_COUNT0_RX_COUNT0_RX_Msk      /*!< Reception Byte Count */
7868
 
7869
#define USB_COUNT0_RX_NUM_BLOCK_Pos           (10U)                            
50 mjames 7870
#define USB_COUNT0_RX_NUM_BLOCK_Msk           (0x1FUL << USB_COUNT0_RX_NUM_BLOCK_Pos) /*!< 0x00007C00 */
30 mjames 7871
#define USB_COUNT0_RX_NUM_BLOCK               USB_COUNT0_RX_NUM_BLOCK_Msk      /*!< NUM_BLOCK[4:0] bits (Number of blocks) */
50 mjames 7872
#define USB_COUNT0_RX_NUM_BLOCK_0             (0x01UL << USB_COUNT0_RX_NUM_BLOCK_Pos) /*!< 0x00000400 */
7873
#define USB_COUNT0_RX_NUM_BLOCK_1             (0x02UL << USB_COUNT0_RX_NUM_BLOCK_Pos) /*!< 0x00000800 */
7874
#define USB_COUNT0_RX_NUM_BLOCK_2             (0x04UL << USB_COUNT0_RX_NUM_BLOCK_Pos) /*!< 0x00001000 */
7875
#define USB_COUNT0_RX_NUM_BLOCK_3             (0x08UL << USB_COUNT0_RX_NUM_BLOCK_Pos) /*!< 0x00002000 */
7876
#define USB_COUNT0_RX_NUM_BLOCK_4             (0x10UL << USB_COUNT0_RX_NUM_BLOCK_Pos) /*!< 0x00004000 */
30 mjames 7877
 
7878
#define USB_COUNT0_RX_BLSIZE_Pos              (15U)                            
50 mjames 7879
#define USB_COUNT0_RX_BLSIZE_Msk              (0x1UL << USB_COUNT0_RX_BLSIZE_Pos) /*!< 0x00008000 */
30 mjames 7880
#define USB_COUNT0_RX_BLSIZE                  USB_COUNT0_RX_BLSIZE_Msk         /*!< BLock SIZE */
7881
 
7882
/*****************  Bit definition for USB_COUNT1_RX register  ****************/
7883
#define USB_COUNT1_RX_COUNT1_RX_Pos           (0U)                             
50 mjames 7884
#define USB_COUNT1_RX_COUNT1_RX_Msk           (0x3FFUL << USB_COUNT1_RX_COUNT1_RX_Pos) /*!< 0x000003FF */
30 mjames 7885
#define USB_COUNT1_RX_COUNT1_RX               USB_COUNT1_RX_COUNT1_RX_Msk      /*!< Reception Byte Count */
7886
 
7887
#define USB_COUNT1_RX_NUM_BLOCK_Pos           (10U)                            
50 mjames 7888
#define USB_COUNT1_RX_NUM_BLOCK_Msk           (0x1FUL << USB_COUNT1_RX_NUM_BLOCK_Pos) /*!< 0x00007C00 */
30 mjames 7889
#define USB_COUNT1_RX_NUM_BLOCK               USB_COUNT1_RX_NUM_BLOCK_Msk      /*!< NUM_BLOCK[4:0] bits (Number of blocks) */
50 mjames 7890
#define USB_COUNT1_RX_NUM_BLOCK_0             (0x01UL << USB_COUNT1_RX_NUM_BLOCK_Pos) /*!< 0x00000400 */
7891
#define USB_COUNT1_RX_NUM_BLOCK_1             (0x02UL << USB_COUNT1_RX_NUM_BLOCK_Pos) /*!< 0x00000800 */
7892
#define USB_COUNT1_RX_NUM_BLOCK_2             (0x04UL << USB_COUNT1_RX_NUM_BLOCK_Pos) /*!< 0x00001000 */
7893
#define USB_COUNT1_RX_NUM_BLOCK_3             (0x08UL << USB_COUNT1_RX_NUM_BLOCK_Pos) /*!< 0x00002000 */
7894
#define USB_COUNT1_RX_NUM_BLOCK_4             (0x10UL << USB_COUNT1_RX_NUM_BLOCK_Pos) /*!< 0x00004000 */
30 mjames 7895
 
7896
#define USB_COUNT1_RX_BLSIZE_Pos              (15U)                            
50 mjames 7897
#define USB_COUNT1_RX_BLSIZE_Msk              (0x1UL << USB_COUNT1_RX_BLSIZE_Pos) /*!< 0x00008000 */
30 mjames 7898
#define USB_COUNT1_RX_BLSIZE                  USB_COUNT1_RX_BLSIZE_Msk         /*!< BLock SIZE */
7899
 
7900
/*****************  Bit definition for USB_COUNT2_RX register  ****************/
7901
#define USB_COUNT2_RX_COUNT2_RX_Pos           (0U)                             
50 mjames 7902
#define USB_COUNT2_RX_COUNT2_RX_Msk           (0x3FFUL << USB_COUNT2_RX_COUNT2_RX_Pos) /*!< 0x000003FF */
30 mjames 7903
#define USB_COUNT2_RX_COUNT2_RX               USB_COUNT2_RX_COUNT2_RX_Msk      /*!< Reception Byte Count */
7904
 
7905
#define USB_COUNT2_RX_NUM_BLOCK_Pos           (10U)                            
50 mjames 7906
#define USB_COUNT2_RX_NUM_BLOCK_Msk           (0x1FUL << USB_COUNT2_RX_NUM_BLOCK_Pos) /*!< 0x00007C00 */
30 mjames 7907
#define USB_COUNT2_RX_NUM_BLOCK               USB_COUNT2_RX_NUM_BLOCK_Msk      /*!< NUM_BLOCK[4:0] bits (Number of blocks) */
50 mjames 7908
#define USB_COUNT2_RX_NUM_BLOCK_0             (0x01UL << USB_COUNT2_RX_NUM_BLOCK_Pos) /*!< 0x00000400 */
7909
#define USB_COUNT2_RX_NUM_BLOCK_1             (0x02UL << USB_COUNT2_RX_NUM_BLOCK_Pos) /*!< 0x00000800 */
7910
#define USB_COUNT2_RX_NUM_BLOCK_2             (0x04UL << USB_COUNT2_RX_NUM_BLOCK_Pos) /*!< 0x00001000 */
7911
#define USB_COUNT2_RX_NUM_BLOCK_3             (0x08UL << USB_COUNT2_RX_NUM_BLOCK_Pos) /*!< 0x00002000 */
7912
#define USB_COUNT2_RX_NUM_BLOCK_4             (0x10UL << USB_COUNT2_RX_NUM_BLOCK_Pos) /*!< 0x00004000 */
30 mjames 7913
 
7914
#define USB_COUNT2_RX_BLSIZE_Pos              (15U)                            
50 mjames 7915
#define USB_COUNT2_RX_BLSIZE_Msk              (0x1UL << USB_COUNT2_RX_BLSIZE_Pos) /*!< 0x00008000 */
30 mjames 7916
#define USB_COUNT2_RX_BLSIZE                  USB_COUNT2_RX_BLSIZE_Msk         /*!< BLock SIZE */
7917
 
7918
/*****************  Bit definition for USB_COUNT3_RX register  ****************/
7919
#define USB_COUNT3_RX_COUNT3_RX_Pos           (0U)                             
50 mjames 7920
#define USB_COUNT3_RX_COUNT3_RX_Msk           (0x3FFUL << USB_COUNT3_RX_COUNT3_RX_Pos) /*!< 0x000003FF */
30 mjames 7921
#define USB_COUNT3_RX_COUNT3_RX               USB_COUNT3_RX_COUNT3_RX_Msk      /*!< Reception Byte Count */
7922
 
7923
#define USB_COUNT3_RX_NUM_BLOCK_Pos           (10U)                            
50 mjames 7924
#define USB_COUNT3_RX_NUM_BLOCK_Msk           (0x1FUL << USB_COUNT3_RX_NUM_BLOCK_Pos) /*!< 0x00007C00 */
30 mjames 7925
#define USB_COUNT3_RX_NUM_BLOCK               USB_COUNT3_RX_NUM_BLOCK_Msk      /*!< NUM_BLOCK[4:0] bits (Number of blocks) */
50 mjames 7926
#define USB_COUNT3_RX_NUM_BLOCK_0             (0x01UL << USB_COUNT3_RX_NUM_BLOCK_Pos) /*!< 0x00000400 */
7927
#define USB_COUNT3_RX_NUM_BLOCK_1             (0x02UL << USB_COUNT3_RX_NUM_BLOCK_Pos) /*!< 0x00000800 */
7928
#define USB_COUNT3_RX_NUM_BLOCK_2             (0x04UL << USB_COUNT3_RX_NUM_BLOCK_Pos) /*!< 0x00001000 */
7929
#define USB_COUNT3_RX_NUM_BLOCK_3             (0x08UL << USB_COUNT3_RX_NUM_BLOCK_Pos) /*!< 0x00002000 */
7930
#define USB_COUNT3_RX_NUM_BLOCK_4             (0x10UL << USB_COUNT3_RX_NUM_BLOCK_Pos) /*!< 0x00004000 */
30 mjames 7931
 
7932
#define USB_COUNT3_RX_BLSIZE_Pos              (15U)                            
50 mjames 7933
#define USB_COUNT3_RX_BLSIZE_Msk              (0x1UL << USB_COUNT3_RX_BLSIZE_Pos) /*!< 0x00008000 */
30 mjames 7934
#define USB_COUNT3_RX_BLSIZE                  USB_COUNT3_RX_BLSIZE_Msk         /*!< BLock SIZE */
7935
 
7936
/*****************  Bit definition for USB_COUNT4_RX register  ****************/
7937
#define USB_COUNT4_RX_COUNT4_RX_Pos           (0U)                             
50 mjames 7938
#define USB_COUNT4_RX_COUNT4_RX_Msk           (0x3FFUL << USB_COUNT4_RX_COUNT4_RX_Pos) /*!< 0x000003FF */
30 mjames 7939
#define USB_COUNT4_RX_COUNT4_RX               USB_COUNT4_RX_COUNT4_RX_Msk      /*!< Reception Byte Count */
7940
 
7941
#define USB_COUNT4_RX_NUM_BLOCK_Pos           (10U)                            
50 mjames 7942
#define USB_COUNT4_RX_NUM_BLOCK_Msk           (0x1FUL << USB_COUNT4_RX_NUM_BLOCK_Pos) /*!< 0x00007C00 */
30 mjames 7943
#define USB_COUNT4_RX_NUM_BLOCK               USB_COUNT4_RX_NUM_BLOCK_Msk      /*!< NUM_BLOCK[4:0] bits (Number of blocks) */
50 mjames 7944
#define USB_COUNT4_RX_NUM_BLOCK_0             (0x01UL << USB_COUNT4_RX_NUM_BLOCK_Pos) /*!< 0x00000400 */
7945
#define USB_COUNT4_RX_NUM_BLOCK_1             (0x02UL << USB_COUNT4_RX_NUM_BLOCK_Pos) /*!< 0x00000800 */
7946
#define USB_COUNT4_RX_NUM_BLOCK_2             (0x04UL << USB_COUNT4_RX_NUM_BLOCK_Pos) /*!< 0x00001000 */
7947
#define USB_COUNT4_RX_NUM_BLOCK_3             (0x08UL << USB_COUNT4_RX_NUM_BLOCK_Pos) /*!< 0x00002000 */
7948
#define USB_COUNT4_RX_NUM_BLOCK_4             (0x10UL << USB_COUNT4_RX_NUM_BLOCK_Pos) /*!< 0x00004000 */
30 mjames 7949
 
7950
#define USB_COUNT4_RX_BLSIZE_Pos              (15U)                            
50 mjames 7951
#define USB_COUNT4_RX_BLSIZE_Msk              (0x1UL << USB_COUNT4_RX_BLSIZE_Pos) /*!< 0x00008000 */
30 mjames 7952
#define USB_COUNT4_RX_BLSIZE                  USB_COUNT4_RX_BLSIZE_Msk         /*!< BLock SIZE */
7953
 
7954
/*****************  Bit definition for USB_COUNT5_RX register  ****************/
7955
#define USB_COUNT5_RX_COUNT5_RX_Pos           (0U)                             
50 mjames 7956
#define USB_COUNT5_RX_COUNT5_RX_Msk           (0x3FFUL << USB_COUNT5_RX_COUNT5_RX_Pos) /*!< 0x000003FF */
30 mjames 7957
#define USB_COUNT5_RX_COUNT5_RX               USB_COUNT5_RX_COUNT5_RX_Msk      /*!< Reception Byte Count */
7958
 
7959
#define USB_COUNT5_RX_NUM_BLOCK_Pos           (10U)                            
50 mjames 7960
#define USB_COUNT5_RX_NUM_BLOCK_Msk           (0x1FUL << USB_COUNT5_RX_NUM_BLOCK_Pos) /*!< 0x00007C00 */
30 mjames 7961
#define USB_COUNT5_RX_NUM_BLOCK               USB_COUNT5_RX_NUM_BLOCK_Msk      /*!< NUM_BLOCK[4:0] bits (Number of blocks) */
50 mjames 7962
#define USB_COUNT5_RX_NUM_BLOCK_0             (0x01UL << USB_COUNT5_RX_NUM_BLOCK_Pos) /*!< 0x00000400 */
7963
#define USB_COUNT5_RX_NUM_BLOCK_1             (0x02UL << USB_COUNT5_RX_NUM_BLOCK_Pos) /*!< 0x00000800 */
7964
#define USB_COUNT5_RX_NUM_BLOCK_2             (0x04UL << USB_COUNT5_RX_NUM_BLOCK_Pos) /*!< 0x00001000 */
7965
#define USB_COUNT5_RX_NUM_BLOCK_3             (0x08UL << USB_COUNT5_RX_NUM_BLOCK_Pos) /*!< 0x00002000 */
7966
#define USB_COUNT5_RX_NUM_BLOCK_4             (0x10UL << USB_COUNT5_RX_NUM_BLOCK_Pos) /*!< 0x00004000 */
30 mjames 7967
 
7968
#define USB_COUNT5_RX_BLSIZE_Pos              (15U)                            
50 mjames 7969
#define USB_COUNT5_RX_BLSIZE_Msk              (0x1UL << USB_COUNT5_RX_BLSIZE_Pos) /*!< 0x00008000 */
30 mjames 7970
#define USB_COUNT5_RX_BLSIZE                  USB_COUNT5_RX_BLSIZE_Msk         /*!< BLock SIZE */
7971
 
7972
/*****************  Bit definition for USB_COUNT6_RX register  ****************/
7973
#define USB_COUNT6_RX_COUNT6_RX_Pos           (0U)                             
50 mjames 7974
#define USB_COUNT6_RX_COUNT6_RX_Msk           (0x3FFUL << USB_COUNT6_RX_COUNT6_RX_Pos) /*!< 0x000003FF */
30 mjames 7975
#define USB_COUNT6_RX_COUNT6_RX               USB_COUNT6_RX_COUNT6_RX_Msk      /*!< Reception Byte Count */
7976
 
7977
#define USB_COUNT6_RX_NUM_BLOCK_Pos           (10U)                            
50 mjames 7978
#define USB_COUNT6_RX_NUM_BLOCK_Msk           (0x1FUL << USB_COUNT6_RX_NUM_BLOCK_Pos) /*!< 0x00007C00 */
30 mjames 7979
#define USB_COUNT6_RX_NUM_BLOCK               USB_COUNT6_RX_NUM_BLOCK_Msk      /*!< NUM_BLOCK[4:0] bits (Number of blocks) */
50 mjames 7980
#define USB_COUNT6_RX_NUM_BLOCK_0             (0x01UL << USB_COUNT6_RX_NUM_BLOCK_Pos) /*!< 0x00000400 */
7981
#define USB_COUNT6_RX_NUM_BLOCK_1             (0x02UL << USB_COUNT6_RX_NUM_BLOCK_Pos) /*!< 0x00000800 */
7982
#define USB_COUNT6_RX_NUM_BLOCK_2             (0x04UL << USB_COUNT6_RX_NUM_BLOCK_Pos) /*!< 0x00001000 */
7983
#define USB_COUNT6_RX_NUM_BLOCK_3             (0x08UL << USB_COUNT6_RX_NUM_BLOCK_Pos) /*!< 0x00002000 */
7984
#define USB_COUNT6_RX_NUM_BLOCK_4             (0x10UL << USB_COUNT6_RX_NUM_BLOCK_Pos) /*!< 0x00004000 */
30 mjames 7985
 
7986
#define USB_COUNT6_RX_BLSIZE_Pos              (15U)                            
50 mjames 7987
#define USB_COUNT6_RX_BLSIZE_Msk              (0x1UL << USB_COUNT6_RX_BLSIZE_Pos) /*!< 0x00008000 */
30 mjames 7988
#define USB_COUNT6_RX_BLSIZE                  USB_COUNT6_RX_BLSIZE_Msk         /*!< BLock SIZE */
7989
 
7990
/*****************  Bit definition for USB_COUNT7_RX register  ****************/
7991
#define USB_COUNT7_RX_COUNT7_RX_Pos           (0U)                             
50 mjames 7992
#define USB_COUNT7_RX_COUNT7_RX_Msk           (0x3FFUL << USB_COUNT7_RX_COUNT7_RX_Pos) /*!< 0x000003FF */
30 mjames 7993
#define USB_COUNT7_RX_COUNT7_RX               USB_COUNT7_RX_COUNT7_RX_Msk      /*!< Reception Byte Count */
7994
 
7995
#define USB_COUNT7_RX_NUM_BLOCK_Pos           (10U)                            
50 mjames 7996
#define USB_COUNT7_RX_NUM_BLOCK_Msk           (0x1FUL << USB_COUNT7_RX_NUM_BLOCK_Pos) /*!< 0x00007C00 */
30 mjames 7997
#define USB_COUNT7_RX_NUM_BLOCK               USB_COUNT7_RX_NUM_BLOCK_Msk      /*!< NUM_BLOCK[4:0] bits (Number of blocks) */
50 mjames 7998
#define USB_COUNT7_RX_NUM_BLOCK_0             (0x01UL << USB_COUNT7_RX_NUM_BLOCK_Pos) /*!< 0x00000400 */
7999
#define USB_COUNT7_RX_NUM_BLOCK_1             (0x02UL << USB_COUNT7_RX_NUM_BLOCK_Pos) /*!< 0x00000800 */
8000
#define USB_COUNT7_RX_NUM_BLOCK_2             (0x04UL << USB_COUNT7_RX_NUM_BLOCK_Pos) /*!< 0x00001000 */
8001
#define USB_COUNT7_RX_NUM_BLOCK_3             (0x08UL << USB_COUNT7_RX_NUM_BLOCK_Pos) /*!< 0x00002000 */
8002
#define USB_COUNT7_RX_NUM_BLOCK_4             (0x10UL << USB_COUNT7_RX_NUM_BLOCK_Pos) /*!< 0x00004000 */
30 mjames 8003
 
8004
#define USB_COUNT7_RX_BLSIZE_Pos              (15U)                            
50 mjames 8005
#define USB_COUNT7_RX_BLSIZE_Msk              (0x1UL << USB_COUNT7_RX_BLSIZE_Pos) /*!< 0x00008000 */
30 mjames 8006
#define USB_COUNT7_RX_BLSIZE                  USB_COUNT7_RX_BLSIZE_Msk         /*!< BLock SIZE */
8007
 
8008
/*----------------------------------------------------------------------------*/
8009
 
8010
/****************  Bit definition for USB_COUNT0_RX_0 register  ***************/
8011
#define USB_COUNT0_RX_0_COUNT0_RX_0           (0x000003FFU)                    /*!< Reception Byte Count (low) */
8012
 
8013
#define USB_COUNT0_RX_0_NUM_BLOCK_0           (0x00007C00U)                    /*!< NUM_BLOCK_0[4:0] bits (Number of blocks) (low) */
8014
#define USB_COUNT0_RX_0_NUM_BLOCK_0_0         (0x00000400U)                    /*!< Bit 0 */
8015
#define USB_COUNT0_RX_0_NUM_BLOCK_0_1         (0x00000800U)                    /*!< Bit 1 */
8016
#define USB_COUNT0_RX_0_NUM_BLOCK_0_2         (0x00001000U)                    /*!< Bit 2 */
8017
#define USB_COUNT0_RX_0_NUM_BLOCK_0_3         (0x00002000U)                    /*!< Bit 3 */
8018
#define USB_COUNT0_RX_0_NUM_BLOCK_0_4         (0x00004000U)                    /*!< Bit 4 */
8019
 
8020
#define USB_COUNT0_RX_0_BLSIZE_0              (0x00008000U)                    /*!< BLock SIZE (low) */
8021
 
8022
/****************  Bit definition for USB_COUNT0_RX_1 register  ***************/
8023
#define USB_COUNT0_RX_1_COUNT0_RX_1           (0x03FF0000U)                    /*!< Reception Byte Count (high) */
8024
 
8025
#define USB_COUNT0_RX_1_NUM_BLOCK_1           (0x7C000000U)                    /*!< NUM_BLOCK_1[4:0] bits (Number of blocks) (high) */
8026
#define USB_COUNT0_RX_1_NUM_BLOCK_1_0         (0x04000000U)                    /*!< Bit 1 */
8027
#define USB_COUNT0_RX_1_NUM_BLOCK_1_1         (0x08000000U)                    /*!< Bit 1 */
8028
#define USB_COUNT0_RX_1_NUM_BLOCK_1_2         (0x10000000U)                    /*!< Bit 2 */
8029
#define USB_COUNT0_RX_1_NUM_BLOCK_1_3         (0x20000000U)                    /*!< Bit 3 */
8030
#define USB_COUNT0_RX_1_NUM_BLOCK_1_4         (0x40000000U)                    /*!< Bit 4 */
8031
 
8032
#define USB_COUNT0_RX_1_BLSIZE_1              (0x80000000U)                    /*!< BLock SIZE (high) */
8033
 
8034
/****************  Bit definition for USB_COUNT1_RX_0 register  ***************/
8035
#define USB_COUNT1_RX_0_COUNT1_RX_0           (0x000003FFU)                    /*!< Reception Byte Count (low) */
8036
 
8037
#define USB_COUNT1_RX_0_NUM_BLOCK_0           (0x00007C00U)                    /*!< NUM_BLOCK_0[4:0] bits (Number of blocks) (low) */
8038
#define USB_COUNT1_RX_0_NUM_BLOCK_0_0         (0x00000400U)                    /*!< Bit 0 */
8039
#define USB_COUNT1_RX_0_NUM_BLOCK_0_1         (0x00000800U)                    /*!< Bit 1 */
8040
#define USB_COUNT1_RX_0_NUM_BLOCK_0_2         (0x00001000U)                    /*!< Bit 2 */
8041
#define USB_COUNT1_RX_0_NUM_BLOCK_0_3         (0x00002000U)                    /*!< Bit 3 */
8042
#define USB_COUNT1_RX_0_NUM_BLOCK_0_4         (0x00004000U)                    /*!< Bit 4 */
8043
 
8044
#define USB_COUNT1_RX_0_BLSIZE_0              (0x00008000U)                    /*!< BLock SIZE (low) */
8045
 
8046
/****************  Bit definition for USB_COUNT1_RX_1 register  ***************/
8047
#define USB_COUNT1_RX_1_COUNT1_RX_1           (0x03FF0000U)                    /*!< Reception Byte Count (high) */
8048
 
8049
#define USB_COUNT1_RX_1_NUM_BLOCK_1           (0x7C000000U)                    /*!< NUM_BLOCK_1[4:0] bits (Number of blocks) (high) */
8050
#define USB_COUNT1_RX_1_NUM_BLOCK_1_0         (0x04000000U)                    /*!< Bit 0 */
8051
#define USB_COUNT1_RX_1_NUM_BLOCK_1_1         (0x08000000U)                    /*!< Bit 1 */
8052
#define USB_COUNT1_RX_1_NUM_BLOCK_1_2         (0x10000000U)                    /*!< Bit 2 */
8053
#define USB_COUNT1_RX_1_NUM_BLOCK_1_3         (0x20000000U)                    /*!< Bit 3 */
8054
#define USB_COUNT1_RX_1_NUM_BLOCK_1_4         (0x40000000U)                    /*!< Bit 4 */
8055
 
8056
#define USB_COUNT1_RX_1_BLSIZE_1              (0x80000000U)                    /*!< BLock SIZE (high) */
8057
 
8058
/****************  Bit definition for USB_COUNT2_RX_0 register  ***************/
8059
#define USB_COUNT2_RX_0_COUNT2_RX_0           (0x000003FFU)                    /*!< Reception Byte Count (low) */
8060
 
8061
#define USB_COUNT2_RX_0_NUM_BLOCK_0           (0x00007C00U)                    /*!< NUM_BLOCK_0[4:0] bits (Number of blocks) (low) */
8062
#define USB_COUNT2_RX_0_NUM_BLOCK_0_0         (0x00000400U)                    /*!< Bit 0 */
8063
#define USB_COUNT2_RX_0_NUM_BLOCK_0_1         (0x00000800U)                    /*!< Bit 1 */
8064
#define USB_COUNT2_RX_0_NUM_BLOCK_0_2         (0x00001000U)                    /*!< Bit 2 */
8065
#define USB_COUNT2_RX_0_NUM_BLOCK_0_3         (0x00002000U)                    /*!< Bit 3 */
8066
#define USB_COUNT2_RX_0_NUM_BLOCK_0_4         (0x00004000U)                    /*!< Bit 4 */
8067
 
8068
#define USB_COUNT2_RX_0_BLSIZE_0              (0x00008000U)                    /*!< BLock SIZE (low) */
8069
 
8070
/****************  Bit definition for USB_COUNT2_RX_1 register  ***************/
8071
#define USB_COUNT2_RX_1_COUNT2_RX_1           (0x03FF0000U)                    /*!< Reception Byte Count (high) */
8072
 
8073
#define USB_COUNT2_RX_1_NUM_BLOCK_1           (0x7C000000U)                    /*!< NUM_BLOCK_1[4:0] bits (Number of blocks) (high) */
8074
#define USB_COUNT2_RX_1_NUM_BLOCK_1_0         (0x04000000U)                    /*!< Bit 0 */
8075
#define USB_COUNT2_RX_1_NUM_BLOCK_1_1         (0x08000000U)                    /*!< Bit 1 */
8076
#define USB_COUNT2_RX_1_NUM_BLOCK_1_2         (0x10000000U)                    /*!< Bit 2 */
8077
#define USB_COUNT2_RX_1_NUM_BLOCK_1_3         (0x20000000U)                    /*!< Bit 3 */
8078
#define USB_COUNT2_RX_1_NUM_BLOCK_1_4         (0x40000000U)                    /*!< Bit 4 */
8079
 
8080
#define USB_COUNT2_RX_1_BLSIZE_1              (0x80000000U)                    /*!< BLock SIZE (high) */
8081
 
8082
/****************  Bit definition for USB_COUNT3_RX_0 register  ***************/
8083
#define USB_COUNT3_RX_0_COUNT3_RX_0           (0x000003FFU)                    /*!< Reception Byte Count (low) */
8084
 
8085
#define USB_COUNT3_RX_0_NUM_BLOCK_0           (0x00007C00U)                    /*!< NUM_BLOCK_0[4:0] bits (Number of blocks) (low) */
8086
#define USB_COUNT3_RX_0_NUM_BLOCK_0_0         (0x00000400U)                    /*!< Bit 0 */
8087
#define USB_COUNT3_RX_0_NUM_BLOCK_0_1         (0x00000800U)                    /*!< Bit 1 */
8088
#define USB_COUNT3_RX_0_NUM_BLOCK_0_2         (0x00001000U)                    /*!< Bit 2 */
8089
#define USB_COUNT3_RX_0_NUM_BLOCK_0_3         (0x00002000U)                    /*!< Bit 3 */
8090
#define USB_COUNT3_RX_0_NUM_BLOCK_0_4         (0x00004000U)                    /*!< Bit 4 */
8091
 
8092
#define USB_COUNT3_RX_0_BLSIZE_0              (0x00008000U)                    /*!< BLock SIZE (low) */
8093
 
8094
/****************  Bit definition for USB_COUNT3_RX_1 register  ***************/
8095
#define USB_COUNT3_RX_1_COUNT3_RX_1           (0x03FF0000U)                    /*!< Reception Byte Count (high) */
8096
 
8097
#define USB_COUNT3_RX_1_NUM_BLOCK_1           (0x7C000000U)                    /*!< NUM_BLOCK_1[4:0] bits (Number of blocks) (high) */
8098
#define USB_COUNT3_RX_1_NUM_BLOCK_1_0         (0x04000000U)                    /*!< Bit 0 */
8099
#define USB_COUNT3_RX_1_NUM_BLOCK_1_1         (0x08000000U)                    /*!< Bit 1 */
8100
#define USB_COUNT3_RX_1_NUM_BLOCK_1_2         (0x10000000U)                    /*!< Bit 2 */
8101
#define USB_COUNT3_RX_1_NUM_BLOCK_1_3         (0x20000000U)                    /*!< Bit 3 */
8102
#define USB_COUNT3_RX_1_NUM_BLOCK_1_4         (0x40000000U)                    /*!< Bit 4 */
8103
 
8104
#define USB_COUNT3_RX_1_BLSIZE_1              (0x80000000U)                    /*!< BLock SIZE (high) */
8105
 
8106
/****************  Bit definition for USB_COUNT4_RX_0 register  ***************/
8107
#define USB_COUNT4_RX_0_COUNT4_RX_0           (0x000003FFU)                    /*!< Reception Byte Count (low) */
8108
 
8109
#define USB_COUNT4_RX_0_NUM_BLOCK_0           (0x00007C00U)                    /*!< NUM_BLOCK_0[4:0] bits (Number of blocks) (low) */
8110
#define USB_COUNT4_RX_0_NUM_BLOCK_0_0         (0x00000400U)                    /*!< Bit 0 */
8111
#define USB_COUNT4_RX_0_NUM_BLOCK_0_1         (0x00000800U)                    /*!< Bit 1 */
8112
#define USB_COUNT4_RX_0_NUM_BLOCK_0_2         (0x00001000U)                    /*!< Bit 2 */
8113
#define USB_COUNT4_RX_0_NUM_BLOCK_0_3         (0x00002000U)                    /*!< Bit 3 */
8114
#define USB_COUNT4_RX_0_NUM_BLOCK_0_4         (0x00004000U)                    /*!< Bit 4 */
8115
 
8116
#define USB_COUNT4_RX_0_BLSIZE_0              (0x00008000U)                    /*!< BLock SIZE (low) */
8117
 
8118
/****************  Bit definition for USB_COUNT4_RX_1 register  ***************/
8119
#define USB_COUNT4_RX_1_COUNT4_RX_1           (0x03FF0000U)                    /*!< Reception Byte Count (high) */
8120
 
8121
#define USB_COUNT4_RX_1_NUM_BLOCK_1           (0x7C000000U)                    /*!< NUM_BLOCK_1[4:0] bits (Number of blocks) (high) */
8122
#define USB_COUNT4_RX_1_NUM_BLOCK_1_0         (0x04000000U)                    /*!< Bit 0 */
8123
#define USB_COUNT4_RX_1_NUM_BLOCK_1_1         (0x08000000U)                    /*!< Bit 1 */
8124
#define USB_COUNT4_RX_1_NUM_BLOCK_1_2         (0x10000000U)                    /*!< Bit 2 */
8125
#define USB_COUNT4_RX_1_NUM_BLOCK_1_3         (0x20000000U)                    /*!< Bit 3 */
8126
#define USB_COUNT4_RX_1_NUM_BLOCK_1_4         (0x40000000U)                    /*!< Bit 4 */
8127
 
8128
#define USB_COUNT4_RX_1_BLSIZE_1              (0x80000000U)                    /*!< BLock SIZE (high) */
8129
 
8130
/****************  Bit definition for USB_COUNT5_RX_0 register  ***************/
8131
#define USB_COUNT5_RX_0_COUNT5_RX_0           (0x000003FFU)                    /*!< Reception Byte Count (low) */
8132
 
8133
#define USB_COUNT5_RX_0_NUM_BLOCK_0           (0x00007C00U)                    /*!< NUM_BLOCK_0[4:0] bits (Number of blocks) (low) */
8134
#define USB_COUNT5_RX_0_NUM_BLOCK_0_0         (0x00000400U)                    /*!< Bit 0 */
8135
#define USB_COUNT5_RX_0_NUM_BLOCK_0_1         (0x00000800U)                    /*!< Bit 1 */
8136
#define USB_COUNT5_RX_0_NUM_BLOCK_0_2         (0x00001000U)                    /*!< Bit 2 */
8137
#define USB_COUNT5_RX_0_NUM_BLOCK_0_3         (0x00002000U)                    /*!< Bit 3 */
8138
#define USB_COUNT5_RX_0_NUM_BLOCK_0_4         (0x00004000U)                    /*!< Bit 4 */
8139
 
8140
#define USB_COUNT5_RX_0_BLSIZE_0              (0x00008000U)                    /*!< BLock SIZE (low) */
8141
 
8142
/****************  Bit definition for USB_COUNT5_RX_1 register  ***************/
8143
#define USB_COUNT5_RX_1_COUNT5_RX_1           (0x03FF0000U)                    /*!< Reception Byte Count (high) */
8144
 
8145
#define USB_COUNT5_RX_1_NUM_BLOCK_1           (0x7C000000U)                    /*!< NUM_BLOCK_1[4:0] bits (Number of blocks) (high) */
8146
#define USB_COUNT5_RX_1_NUM_BLOCK_1_0         (0x04000000U)                    /*!< Bit 0 */
8147
#define USB_COUNT5_RX_1_NUM_BLOCK_1_1         (0x08000000U)                    /*!< Bit 1 */
8148
#define USB_COUNT5_RX_1_NUM_BLOCK_1_2         (0x10000000U)                    /*!< Bit 2 */
8149
#define USB_COUNT5_RX_1_NUM_BLOCK_1_3         (0x20000000U)                    /*!< Bit 3 */
8150
#define USB_COUNT5_RX_1_NUM_BLOCK_1_4         (0x40000000U)                    /*!< Bit 4 */
8151
 
8152
#define USB_COUNT5_RX_1_BLSIZE_1              (0x80000000U)                    /*!< BLock SIZE (high) */
8153
 
8154
/***************  Bit definition for USB_COUNT6_RX_0  register  ***************/
8155
#define USB_COUNT6_RX_0_COUNT6_RX_0           (0x000003FFU)                    /*!< Reception Byte Count (low) */
8156
 
8157
#define USB_COUNT6_RX_0_NUM_BLOCK_0           (0x00007C00U)                    /*!< NUM_BLOCK_0[4:0] bits (Number of blocks) (low) */
8158
#define USB_COUNT6_RX_0_NUM_BLOCK_0_0         (0x00000400U)                    /*!< Bit 0 */
8159
#define USB_COUNT6_RX_0_NUM_BLOCK_0_1         (0x00000800U)                    /*!< Bit 1 */
8160
#define USB_COUNT6_RX_0_NUM_BLOCK_0_2         (0x00001000U)                    /*!< Bit 2 */
8161
#define USB_COUNT6_RX_0_NUM_BLOCK_0_3         (0x00002000U)                    /*!< Bit 3 */
8162
#define USB_COUNT6_RX_0_NUM_BLOCK_0_4         (0x00004000U)                    /*!< Bit 4 */
8163
 
8164
#define USB_COUNT6_RX_0_BLSIZE_0              (0x00008000U)                    /*!< BLock SIZE (low) */
8165
 
8166
/****************  Bit definition for USB_COUNT6_RX_1 register  ***************/
8167
#define USB_COUNT6_RX_1_COUNT6_RX_1           (0x03FF0000U)                    /*!< Reception Byte Count (high) */
8168
 
8169
#define USB_COUNT6_RX_1_NUM_BLOCK_1           (0x7C000000U)                    /*!< NUM_BLOCK_1[4:0] bits (Number of blocks) (high) */
8170
#define USB_COUNT6_RX_1_NUM_BLOCK_1_0         (0x04000000U)                    /*!< Bit 0 */
8171
#define USB_COUNT6_RX_1_NUM_BLOCK_1_1         (0x08000000U)                    /*!< Bit 1 */
8172
#define USB_COUNT6_RX_1_NUM_BLOCK_1_2         (0x10000000U)                    /*!< Bit 2 */
8173
#define USB_COUNT6_RX_1_NUM_BLOCK_1_3         (0x20000000U)                    /*!< Bit 3 */
8174
#define USB_COUNT6_RX_1_NUM_BLOCK_1_4         (0x40000000U)                    /*!< Bit 4 */
8175
 
8176
#define USB_COUNT6_RX_1_BLSIZE_1              (0x80000000U)                    /*!< BLock SIZE (high) */
8177
 
8178
/***************  Bit definition for USB_COUNT7_RX_0 register  ****************/
8179
#define USB_COUNT7_RX_0_COUNT7_RX_0           (0x000003FFU)                    /*!< Reception Byte Count (low) */
8180
 
8181
#define USB_COUNT7_RX_0_NUM_BLOCK_0           (0x00007C00U)                    /*!< NUM_BLOCK_0[4:0] bits (Number of blocks) (low) */
8182
#define USB_COUNT7_RX_0_NUM_BLOCK_0_0         (0x00000400U)                    /*!< Bit 0 */
8183
#define USB_COUNT7_RX_0_NUM_BLOCK_0_1         (0x00000800U)                    /*!< Bit 1 */
8184
#define USB_COUNT7_RX_0_NUM_BLOCK_0_2         (0x00001000U)                    /*!< Bit 2 */
8185
#define USB_COUNT7_RX_0_NUM_BLOCK_0_3         (0x00002000U)                    /*!< Bit 3 */
8186
#define USB_COUNT7_RX_0_NUM_BLOCK_0_4         (0x00004000U)                    /*!< Bit 4 */
8187
 
8188
#define USB_COUNT7_RX_0_BLSIZE_0              (0x00008000U)                    /*!< BLock SIZE (low) */
8189
 
8190
/***************  Bit definition for USB_COUNT7_RX_1 register  ****************/
8191
#define USB_COUNT7_RX_1_COUNT7_RX_1           (0x03FF0000U)                    /*!< Reception Byte Count (high) */
8192
 
8193
#define USB_COUNT7_RX_1_NUM_BLOCK_1           (0x7C000000U)                    /*!< NUM_BLOCK_1[4:0] bits (Number of blocks) (high) */
8194
#define USB_COUNT7_RX_1_NUM_BLOCK_1_0         (0x04000000U)                    /*!< Bit 0 */
8195
#define USB_COUNT7_RX_1_NUM_BLOCK_1_1         (0x08000000U)                    /*!< Bit 1 */
8196
#define USB_COUNT7_RX_1_NUM_BLOCK_1_2         (0x10000000U)                    /*!< Bit 2 */
8197
#define USB_COUNT7_RX_1_NUM_BLOCK_1_3         (0x20000000U)                    /*!< Bit 3 */
8198
#define USB_COUNT7_RX_1_NUM_BLOCK_1_4         (0x40000000U)                    /*!< Bit 4 */
8199
 
8200
#define USB_COUNT7_RX_1_BLSIZE_1              (0x80000000U)                    /*!< BLock SIZE (high) */
8201
 
8202
/******************************************************************************/
8203
/*                                                                            */
8204
/*                         Window WATCHDOG (WWDG)                             */
8205
/*                                                                            */
8206
/******************************************************************************/
8207
 
8208
/*******************  Bit definition for WWDG_CR register  ********************/
8209
#define WWDG_CR_T_Pos                       (0U)                               
50 mjames 8210
#define WWDG_CR_T_Msk                       (0x7FUL << WWDG_CR_T_Pos)           /*!< 0x0000007F */
30 mjames 8211
#define WWDG_CR_T                           WWDG_CR_T_Msk                      /*!< T[6:0] bits (7-Bit counter (MSB to LSB)) */
50 mjames 8212
#define WWDG_CR_T_0                         (0x01UL << WWDG_CR_T_Pos)           /*!< 0x00000001 */
8213
#define WWDG_CR_T_1                         (0x02UL << WWDG_CR_T_Pos)           /*!< 0x00000002 */
8214
#define WWDG_CR_T_2                         (0x04UL << WWDG_CR_T_Pos)           /*!< 0x00000004 */
8215
#define WWDG_CR_T_3                         (0x08UL << WWDG_CR_T_Pos)           /*!< 0x00000008 */
8216
#define WWDG_CR_T_4                         (0x10UL << WWDG_CR_T_Pos)           /*!< 0x00000010 */
8217
#define WWDG_CR_T_5                         (0x20UL << WWDG_CR_T_Pos)           /*!< 0x00000020 */
8218
#define WWDG_CR_T_6                         (0x40UL << WWDG_CR_T_Pos)           /*!< 0x00000040 */
30 mjames 8219
 
8220
/* Legacy defines */
8221
#define  WWDG_CR_T0 WWDG_CR_T_0
8222
#define  WWDG_CR_T1 WWDG_CR_T_1
8223
#define  WWDG_CR_T2 WWDG_CR_T_2
8224
#define  WWDG_CR_T3 WWDG_CR_T_3
8225
#define  WWDG_CR_T4 WWDG_CR_T_4
8226
#define  WWDG_CR_T5 WWDG_CR_T_5
8227
#define  WWDG_CR_T6 WWDG_CR_T_6
8228
 
8229
#define WWDG_CR_WDGA_Pos                    (7U)                               
50 mjames 8230
#define WWDG_CR_WDGA_Msk                    (0x1UL << WWDG_CR_WDGA_Pos)         /*!< 0x00000080 */
30 mjames 8231
#define WWDG_CR_WDGA                        WWDG_CR_WDGA_Msk                   /*!< Activation bit */
8232
 
8233
/*******************  Bit definition for WWDG_CFR register  *******************/
8234
#define WWDG_CFR_W_Pos                      (0U)                               
50 mjames 8235
#define WWDG_CFR_W_Msk                      (0x7FUL << WWDG_CFR_W_Pos)          /*!< 0x0000007F */
30 mjames 8236
#define WWDG_CFR_W                          WWDG_CFR_W_Msk                     /*!< W[6:0] bits (7-bit window value) */
50 mjames 8237
#define WWDG_CFR_W_0                        (0x01UL << WWDG_CFR_W_Pos)          /*!< 0x00000001 */
8238
#define WWDG_CFR_W_1                        (0x02UL << WWDG_CFR_W_Pos)          /*!< 0x00000002 */
8239
#define WWDG_CFR_W_2                        (0x04UL << WWDG_CFR_W_Pos)          /*!< 0x00000004 */
8240
#define WWDG_CFR_W_3                        (0x08UL << WWDG_CFR_W_Pos)          /*!< 0x00000008 */
8241
#define WWDG_CFR_W_4                        (0x10UL << WWDG_CFR_W_Pos)          /*!< 0x00000010 */
8242
#define WWDG_CFR_W_5                        (0x20UL << WWDG_CFR_W_Pos)          /*!< 0x00000020 */
8243
#define WWDG_CFR_W_6                        (0x40UL << WWDG_CFR_W_Pos)          /*!< 0x00000040 */
30 mjames 8244
 
8245
/* Legacy defines */
8246
#define  WWDG_CFR_W0 WWDG_CFR_W_0
8247
#define  WWDG_CFR_W1 WWDG_CFR_W_1
8248
#define  WWDG_CFR_W2 WWDG_CFR_W_2
8249
#define  WWDG_CFR_W3 WWDG_CFR_W_3
8250
#define  WWDG_CFR_W4 WWDG_CFR_W_4
8251
#define  WWDG_CFR_W5 WWDG_CFR_W_5
8252
#define  WWDG_CFR_W6 WWDG_CFR_W_6
8253
 
8254
#define WWDG_CFR_WDGTB_Pos                  (7U)                               
50 mjames 8255
#define WWDG_CFR_WDGTB_Msk                  (0x3UL << WWDG_CFR_WDGTB_Pos)       /*!< 0x00000180 */
30 mjames 8256
#define WWDG_CFR_WDGTB                      WWDG_CFR_WDGTB_Msk                 /*!< WDGTB[1:0] bits (Timer Base) */
50 mjames 8257
#define WWDG_CFR_WDGTB_0                    (0x1UL << WWDG_CFR_WDGTB_Pos)       /*!< 0x00000080 */
8258
#define WWDG_CFR_WDGTB_1                    (0x2UL << WWDG_CFR_WDGTB_Pos)       /*!< 0x00000100 */
30 mjames 8259
 
8260
/* Legacy defines */
8261
#define  WWDG_CFR_WDGTB0 WWDG_CFR_WDGTB_0
8262
#define  WWDG_CFR_WDGTB1 WWDG_CFR_WDGTB_1
8263
 
8264
#define WWDG_CFR_EWI_Pos                    (9U)                               
50 mjames 8265
#define WWDG_CFR_EWI_Msk                    (0x1UL << WWDG_CFR_EWI_Pos)         /*!< 0x00000200 */
30 mjames 8266
#define WWDG_CFR_EWI                        WWDG_CFR_EWI_Msk                   /*!< Early Wakeup Interrupt */
8267
 
8268
/*******************  Bit definition for WWDG_SR register  ********************/
8269
#define WWDG_SR_EWIF_Pos                    (0U)                               
50 mjames 8270
#define WWDG_SR_EWIF_Msk                    (0x1UL << WWDG_SR_EWIF_Pos)         /*!< 0x00000001 */
30 mjames 8271
#define WWDG_SR_EWIF                        WWDG_SR_EWIF_Msk                   /*!< Early Wakeup Interrupt Flag */
8272
 
8273
 /**
8274
  * @}
8275
  */
8276
/** @addtogroup Exported_macro
8277
  * @{
8278
  */
8279
 
8280
/****************************** ADC Instances *********************************/
8281
#define IS_ADC_ALL_INSTANCE(INSTANCE) ((INSTANCE) == ADC1)
8282
 
8283
#define IS_ADC_COMMON_INSTANCE(INSTANCE) ((INSTANCE) == ADC1_COMMON)
8284
 
8285
/******************************** COMP Instances ******************************/
8286
#define IS_COMP_ALL_INSTANCE(INSTANCE) (((INSTANCE) == COMP1) || \
8287
                                        ((INSTANCE) == COMP2))
8288
 
8289
#define IS_COMP_COMMON_INSTANCE(COMMON_INSTANCE) ((COMMON_INSTANCE) == COMP12_COMMON)
8290
 
8291
/****************************** CRC Instances *********************************/
8292
#define IS_CRC_ALL_INSTANCE(INSTANCE) ((INSTANCE) == CRC)
8293
 
8294
/****************************** DAC Instances *********************************/
8295
#define IS_DAC_ALL_INSTANCE(INSTANCE) ((INSTANCE) == DAC)
8296
 
8297
/****************************** DMA Instances *********************************/
8298
#define IS_DMA_ALL_INSTANCE(INSTANCE) (((INSTANCE) == DMA1_Channel1) || \
8299
                                       ((INSTANCE) == DMA1_Channel2) || \
8300
                                       ((INSTANCE) == DMA1_Channel3) || \
8301
                                       ((INSTANCE) == DMA1_Channel4) || \
8302
                                       ((INSTANCE) == DMA1_Channel5) || \
8303
                                       ((INSTANCE) == DMA1_Channel6) || \
8304
                                       ((INSTANCE) == DMA1_Channel7) || \
8305
                                       ((INSTANCE) == DMA2_Channel1) || \
8306
                                       ((INSTANCE) == DMA2_Channel2) || \
8307
                                       ((INSTANCE) == DMA2_Channel3) || \
8308
                                       ((INSTANCE) == DMA2_Channel4) || \
8309
                                       ((INSTANCE) == DMA2_Channel5))
8310
 
8311
/******************************* GPIO Instances *******************************/
8312
#define IS_GPIO_ALL_INSTANCE(INSTANCE) (((INSTANCE) == GPIOA) || \
8313
                                        ((INSTANCE) == GPIOB) || \
8314
                                        ((INSTANCE) == GPIOC) || \
8315
                                        ((INSTANCE) == GPIOD) || \
8316
                                        ((INSTANCE) == GPIOE) || \
8317
                                        ((INSTANCE) == GPIOH))
8318
 
8319
/**************************** GPIO Alternate Function Instances ***************/
8320
#define IS_GPIO_AF_INSTANCE(INSTANCE) IS_GPIO_ALL_INSTANCE(INSTANCE)
8321
 
8322
/**************************** GPIO Lock Instances *****************************/
8323
/* On L1, all GPIO Bank support the Lock mechanism */
8324
#define IS_GPIO_LOCK_INSTANCE(INSTANCE) IS_GPIO_ALL_INSTANCE(INSTANCE)
8325
 
8326
/******************************** I2C Instances *******************************/
8327
#define IS_I2C_ALL_INSTANCE(INSTANCE) (((INSTANCE) == I2C1) || \
8328
                                       ((INSTANCE) == I2C2))
8329
 
8330
/****************************** SMBUS Instances *******************************/
8331
#define IS_SMBUS_ALL_INSTANCE(INSTANCE) IS_I2C_ALL_INSTANCE(INSTANCE)
8332
 
8333
/******************************** I2S Instances *******************************/
8334
#define IS_I2S_ALL_INSTANCE(INSTANCE) (((INSTANCE) == SPI2) || \
8335
                                       ((INSTANCE) == SPI3))
8336
/****************************** IWDG Instances ********************************/
8337
#define IS_IWDG_ALL_INSTANCE(INSTANCE)  ((INSTANCE) == IWDG)
8338
 
8339
/****************************** OPAMP Instances *******************************/
8340
#define IS_OPAMP_ALL_INSTANCE(INSTANCE) (((INSTANCE) == OPAMP1) || \
8341
                                         ((INSTANCE) == OPAMP2))
8342
 
8343
#define IS_OPAMP_COMMON_INSTANCE(COMMON_INSTANCE) ((COMMON_INSTANCE) == OPAMP12_COMMON)
8344
 
8345
/****************************** RTC Instances *********************************/
8346
#define IS_RTC_ALL_INSTANCE(INSTANCE)  ((INSTANCE) == RTC)
8347
 
8348
/******************************** SPI Instances *******************************/
8349
#define IS_SPI_ALL_INSTANCE(INSTANCE) (((INSTANCE) == SPI1) || \
8350
                                       ((INSTANCE) == SPI2) || \
8351
                                       ((INSTANCE) == SPI3))
8352
 
8353
/****************************** TIM Instances *********************************/
8354
#define IS_TIM_INSTANCE(INSTANCE) (((INSTANCE) == TIM2)    || \
8355
                                   ((INSTANCE) == TIM3)    || \
8356
                                   ((INSTANCE) == TIM4)    || \
8357
                                   ((INSTANCE) == TIM5)    || \
8358
                                   ((INSTANCE) == TIM6)    || \
8359
                                   ((INSTANCE) == TIM7)    || \
8360
                                   ((INSTANCE) == TIM9)    || \
8361
                                   ((INSTANCE) == TIM10)   || \
8362
                                   ((INSTANCE) == TIM11))
8363
 
8364
#define IS_TIM_CC1_INSTANCE(INSTANCE) (((INSTANCE) == TIM2)  || \
8365
                                       ((INSTANCE) == TIM3)  || \
8366
                                       ((INSTANCE) == TIM4)  || \
8367
                                       ((INSTANCE) == TIM5)  || \
8368
                                       ((INSTANCE) == TIM9)  || \
8369
                                       ((INSTANCE) == TIM10) || \
8370
                                       ((INSTANCE) == TIM11))
8371
 
8372
#define IS_TIM_CC2_INSTANCE(INSTANCE) (((INSTANCE) == TIM2)  || \
8373
                                       ((INSTANCE) == TIM3)  || \
8374
                                       ((INSTANCE) == TIM4)  || \
8375
                                       ((INSTANCE) == TIM5)  || \
8376
                                       ((INSTANCE) == TIM9))
8377
 
8378
#define IS_TIM_CC3_INSTANCE(INSTANCE) (((INSTANCE) == TIM2)  || \
8379
                                       ((INSTANCE) == TIM3)  || \
8380
                                       ((INSTANCE) == TIM4)  || \
8381
                                       ((INSTANCE) == TIM5))
8382
 
8383
#define IS_TIM_CC4_INSTANCE(INSTANCE) (((INSTANCE) == TIM2)  || \
8384
                                       ((INSTANCE) == TIM3)  || \
8385
                                       ((INSTANCE) == TIM4)  || \
8386
                                       ((INSTANCE) == TIM5))
8387
 
8388
#define IS_TIM_CLOCKSOURCE_ETRMODE1_INSTANCE(INSTANCE) (((INSTANCE) == TIM2)  || \
8389
                                                        ((INSTANCE) == TIM3)  || \
8390
                                                        ((INSTANCE) == TIM4)  || \
8391
                                                        ((INSTANCE) == TIM5)  || \
8392
                                                        ((INSTANCE) == TIM9))
8393
 
8394
#define IS_TIM_CLOCKSOURCE_ETRMODE2_INSTANCE(INSTANCE) (((INSTANCE) == TIM2)  || \
8395
                                                        ((INSTANCE) == TIM3)  || \
8396
                                                        ((INSTANCE) == TIM4)  || \
8397
                                                        ((INSTANCE) == TIM5)  || \
8398
                                                        ((INSTANCE) == TIM9)  || \
8399
                                                        ((INSTANCE) == TIM10) || \
8400
                                                        ((INSTANCE) == TIM11))
8401
 
8402
#define IS_TIM_CLOCKSOURCE_TIX_INSTANCE(INSTANCE) (((INSTANCE) == TIM2)  || \
8403
                                                   ((INSTANCE) == TIM3)  || \
8404
                                                   ((INSTANCE) == TIM4)  || \
8405
                                                   ((INSTANCE) == TIM5)  || \
8406
                                                   ((INSTANCE) == TIM9))
8407
 
8408
#define IS_TIM_CLOCKSOURCE_ITRX_INSTANCE(INSTANCE) (((INSTANCE) == TIM2)  || \
8409
                                                    ((INSTANCE) == TIM3)  || \
8410
                                                    ((INSTANCE) == TIM4)  || \
8411
                                                    ((INSTANCE) == TIM5)  || \
8412
                                                    ((INSTANCE) == TIM9))
8413
 
8414
#define IS_TIM_OCXREF_CLEAR_INSTANCE(INSTANCE) (((INSTANCE) == TIM2)  || \
8415
                                                ((INSTANCE) == TIM3)  || \
8416
                                                ((INSTANCE) == TIM4))
8417
 
8418
#define IS_TIM_XOR_INSTANCE(INSTANCE) (((INSTANCE) == TIM2)  || \
8419
                                       ((INSTANCE) == TIM3)  || \
8420
                                       ((INSTANCE) == TIM4)  || \
8421
                                       ((INSTANCE) == TIM5))
8422
 
8423
#define IS_TIM_ETR_INSTANCE(INSTANCE) (((INSTANCE) == TIM2)  || \
8424
                                       ((INSTANCE) == TIM3)  || \
8425
                                       ((INSTANCE) == TIM4)  || \
50 mjames 8426
                                       ((INSTANCE) == TIM5)  || \
8427
                                       ((INSTANCE) == TIM9))
30 mjames 8428
 
8429
 
8430
#define IS_TIM_MASTER_INSTANCE(INSTANCE) (((INSTANCE) == TIM2)  || \
8431
                                          ((INSTANCE) == TIM3)  || \
8432
                                          ((INSTANCE) == TIM4)  || \
8433
                                          ((INSTANCE) == TIM5)  || \
8434
                                          ((INSTANCE) == TIM6)  || \
8435
                                          ((INSTANCE) == TIM7)  || \
8436
                                          ((INSTANCE) == TIM9))
8437
 
8438
#define IS_TIM_SLAVE_INSTANCE(INSTANCE) (((INSTANCE) == TIM2)  || \
8439
                                         ((INSTANCE) == TIM3)  || \
8440
                                         ((INSTANCE) == TIM4)  || \
8441
                                         ((INSTANCE) == TIM9))
8442
 
8443
#define IS_TIM_32B_COUNTER_INSTANCE(INSTANCE) ((INSTANCE) == TIM5)
8444
 
8445
#define IS_TIM_DMABURST_INSTANCE(INSTANCE) (((INSTANCE) == TIM2)  || \
8446
                                            ((INSTANCE) == TIM3)  || \
8447
                                            ((INSTANCE) == TIM4)  || \
8448
                                            ((INSTANCE) == TIM5))
8449
 
8450
#define IS_TIM_CCX_INSTANCE(INSTANCE, CHANNEL) \
8451
    ((((INSTANCE) == TIM2) &&                   \
8452
     (((CHANNEL) == TIM_CHANNEL_1) ||          \
8453
      ((CHANNEL) == TIM_CHANNEL_2) ||          \
8454
      ((CHANNEL) == TIM_CHANNEL_3) ||          \
8455
      ((CHANNEL) == TIM_CHANNEL_4)))           \
8456
    ||                                         \
8457
    (((INSTANCE) == TIM3) &&                   \
8458
     (((CHANNEL) == TIM_CHANNEL_1) ||          \
8459
      ((CHANNEL) == TIM_CHANNEL_2) ||          \
8460
      ((CHANNEL) == TIM_CHANNEL_3) ||          \
8461
      ((CHANNEL) == TIM_CHANNEL_4)))           \
8462
    ||                                         \
8463
    (((INSTANCE) == TIM4) &&                   \
8464
     (((CHANNEL) == TIM_CHANNEL_1) ||          \
8465
      ((CHANNEL) == TIM_CHANNEL_2) ||          \
8466
      ((CHANNEL) == TIM_CHANNEL_3) ||          \
8467
      ((CHANNEL) == TIM_CHANNEL_4)))           \
8468
    ||                                         \
8469
    (((INSTANCE) == TIM5) &&                   \
8470
     (((CHANNEL) == TIM_CHANNEL_1) ||          \
8471
      ((CHANNEL) == TIM_CHANNEL_2) ||          \
8472
      ((CHANNEL) == TIM_CHANNEL_3) ||          \
8473
      ((CHANNEL) == TIM_CHANNEL_4)))           \
8474
    ||                                         \
8475
    (((INSTANCE) == TIM9) &&                  \
8476
     (((CHANNEL) == TIM_CHANNEL_1) ||          \
8477
      ((CHANNEL) == TIM_CHANNEL_2)))           \
8478
    ||                                         \
8479
    (((INSTANCE) == TIM10) &&                  \
8480
     (((CHANNEL) == TIM_CHANNEL_1)))           \
8481
    ||                                         \
8482
    (((INSTANCE) == TIM11) &&                  \
8483
     (((CHANNEL) == TIM_CHANNEL_1))))
8484
 
8485
#define IS_TIM_CLOCK_DIVISION_INSTANCE(INSTANCE) (((INSTANCE) == TIM2)  || \
8486
                                                  ((INSTANCE) == TIM3)  || \
8487
                                                  ((INSTANCE) == TIM4)  || \
8488
                                                  ((INSTANCE) == TIM5)  || \
8489
                                                  ((INSTANCE) == TIM9)  || \
8490
                                                  ((INSTANCE) == TIM10) || \
8491
                                                  ((INSTANCE) == TIM11))
8492
 
8493
#define IS_TIM_DMA_INSTANCE(INSTANCE) (((INSTANCE) == TIM2)    || \
8494
                                       ((INSTANCE) == TIM3)    || \
8495
                                       ((INSTANCE) == TIM4)    || \
8496
                                       ((INSTANCE) == TIM5)    || \
8497
                                       ((INSTANCE) == TIM6)    || \
8498
                                       ((INSTANCE) == TIM7))
8499
 
8500
#define IS_TIM_DMA_CC_INSTANCE(INSTANCE) (((INSTANCE) == TIM2)  || \
8501
                                          ((INSTANCE) == TIM3)  || \
8502
                                          ((INSTANCE) == TIM4)  || \
8503
                                          ((INSTANCE) == TIM5))
8504
 
8505
#define IS_TIM_COUNTER_MODE_SELECT_INSTANCE(INSTANCE) (((INSTANCE) == TIM2)    || \
8506
                                                       ((INSTANCE) == TIM3)    || \
8507
                                                       ((INSTANCE) == TIM4)    || \
8508
                                                       ((INSTANCE) == TIM5)    || \
8509
                                                       ((INSTANCE) == TIM9))
8510
 
8511
#define IS_TIM_ENCODER_INTERFACE_INSTANCE(INSTANCE) (((INSTANCE) == TIM2)  || \
8512
                                                     ((INSTANCE) == TIM3)  || \
8513
                                                     ((INSTANCE) == TIM4)  || \
8514
                                                     ((INSTANCE) == TIM5)  || \
8515
                                                     ((INSTANCE) == TIM9))
8516
 
8517
#define IS_TIM_REMAP_INSTANCE(INSTANCE) (((INSTANCE) == TIM2)    || \
8518
                                         ((INSTANCE) == TIM3)    || \
8519
                                         ((INSTANCE) == TIM9)    || \
8520
                                         ((INSTANCE) == TIM10)   || \
8521
                                         ((INSTANCE) == TIM11))
8522
 
8523
/******************** USART Instances : Synchronous mode **********************/                                          
8524
#define IS_USART_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
8525
                                     ((INSTANCE) == USART2) || \
8526
                                     ((INSTANCE) == USART3))
8527
 
8528
/******************** UART Instances : Asynchronous mode **********************/
8529
#define IS_UART_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
8530
                                    ((INSTANCE) == USART2) || \
8531
                                    ((INSTANCE) == USART3))
8532
 
8533
/******************** UART Instances : Half-Duplex mode **********************/
8534
#define IS_UART_HALFDUPLEX_INSTANCE(INSTANCE)   (((INSTANCE) == USART1) || \
8535
                                                 ((INSTANCE) == USART2) || \
8536
                                                 ((INSTANCE) == USART3))                                       
8537
 
8538
/******************** UART Instances : LIN mode **********************/
8539
#define IS_UART_LIN_INSTANCE(INSTANCE)   (((INSTANCE) == USART1) || \
8540
                                          ((INSTANCE) == USART2) || \
8541
                                          ((INSTANCE) == USART3)) 
8542
 
8543
/****************** UART Instances : Hardware Flow control ********************/                                    
8544
#define IS_UART_HWFLOW_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
8545
                                           ((INSTANCE) == USART2) || \
8546
                                           ((INSTANCE) == USART3))
8547
 
8548
/********************* UART Instances : Smard card mode ***********************/
8549
#define IS_SMARTCARD_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
8550
                                         ((INSTANCE) == USART2) || \
8551
                                         ((INSTANCE) == USART3))
8552
 
8553
/*********************** UART Instances : IRDA mode ***************************/
8554
#define IS_IRDA_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
8555
                                    ((INSTANCE) == USART2) || \
8556
                                    ((INSTANCE) == USART3))
8557
 
8558
/***************** UART Instances : Multi-Processor mode **********************/
8559
#define IS_UART_MULTIPROCESSOR_INSTANCE(INSTANCE)   (((INSTANCE) == USART1) || \
8560
                                                     ((INSTANCE) == USART2) || \
8561
                                                     ((INSTANCE) == USART3)) 
8562
 
8563
/****************************** WWDG Instances ********************************/
8564
#define IS_WWDG_ALL_INSTANCE(INSTANCE)  ((INSTANCE) == WWDG)
8565
 
8566
/****************************** USB Instances ********************************/
8567
#define IS_USB_ALL_INSTANCE(INSTANCE) ((INSTANCE) == USB)
50 mjames 8568
#define IS_PCD_ALL_INSTANCE           IS_USB_ALL_INSTANCE
30 mjames 8569
 
8570
/**
8571
  * @}
8572
  */
8573
 
8574
/******************************************************************************/
8575
/*  For a painless codes migration between the STM32L1xx device product       */
8576
/*  lines, the aliases defined below are put in place to overcome the         */
8577
/*  differences in the interrupt handlers and IRQn definitions.               */
8578
/*  No need to update developed interrupt code when moving across             */
8579
/*  product lines within the same STM32L1 Family                              */
8580
/******************************************************************************/
8581
 
8582
/* Aliases for __IRQn */
8583
 
8584
/* Aliases for __IRQHandler */
8585
 
8586
/**
8587
  * @}
8588
  */
8589
 
8590
/**
8591
  * @}
8592
  */
8593
 
8594
#ifdef __cplusplus
8595
}
8596
#endif /* __cplusplus */
8597
 
8598
#endif /* __STM32L151xC_H */
8599
 
8600
 
8601
 
8602
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/