1 /** 2 ****************************************************************************** 3 * @file stm32f100xb.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 STM32F1xx devices. 8 * 9 * This file contains: 10 * - Data structures and the address mapping for all peripherals 11 * - Peripheral's registers declarations and bits definition 12 * - Macros to access peripheral�s registers hardware 13 * 14 ****************************************************************************** 15 * @attention 16 * 17 * <h2><center>© Copyright (c) 2017 STMicroelectronics. 18 * All rights reserved.</center></h2> 19 * 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 24 * 25 ****************************************************************************** 26 */ 27 28 29 /** @addtogroup CMSIS 30 * @{ 31 */ 32 33 /** @addtogroup stm32f100xb 34 * @{ 35 */ 36 37 #ifndef __STM32F100xB_H 38 #define __STM32F100xB_H 39 40 #ifdef __cplusplus 41 extern "C" { 42 #endif 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 0x0200U /*!< Core Revision r2p0 */ 51 #define __MPU_PRESENT 0U /*!< Other STM32 devices does not provide an MPU */ 52 #define __NVIC_PRIO_BITS 4U /*!< STM32 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 STM32F10x 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 SVCall_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 /****** STM32 specific Interrupt Numbers *********************************************************/ 83 WWDG_IRQn = 0, /*!< Window WatchDog Interrupt */ 84 PVD_IRQn = 1, /*!< PVD through EXTI Line detection Interrupt */ 85 TAMPER_IRQn = 2, /*!< Tamper Interrupt */ 86 RTC_IRQn = 3, /*!< RTC global 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 EXTI9_5_IRQn = 23, /*!< External Line[9:5] Interrupts */ 103 TIM1_BRK_TIM15_IRQn = 24, /*!< TIM1 Break and TIM15 Interrupts */ 104 TIM1_UP_TIM16_IRQn = 25, /*!< TIM1 Update and TIM16 Interrupts */ 105 TIM1_TRG_COM_TIM17_IRQn = 26, /*!< TIM1 Trigger and Commutation and TIM17 Interrupt */ 106 TIM1_CC_IRQn = 27, /*!< TIM1 Capture Compare Interrupt */ 107 TIM2_IRQn = 28, /*!< TIM2 global Interrupt */ 108 TIM3_IRQn = 29, /*!< TIM3 global Interrupt */ 109 TIM4_IRQn = 30, /*!< TIM4 global Interrupt */ 110 I2C1_EV_IRQn = 31, /*!< I2C1 Event Interrupt */ 111 I2C1_ER_IRQn = 32, /*!< I2C1 Error Interrupt */ 112 I2C2_EV_IRQn = 33, /*!< I2C2 Event Interrupt */ 113 I2C2_ER_IRQn = 34, /*!< I2C2 Error Interrupt */ 114 SPI1_IRQn = 35, /*!< SPI1 global Interrupt */ 115 SPI2_IRQn = 36, /*!< SPI2 global Interrupt */ 116 USART1_IRQn = 37, /*!< USART1 global Interrupt */ 117 USART2_IRQn = 38, /*!< USART2 global Interrupt */ 118 USART3_IRQn = 39, /*!< USART3 global Interrupt */ 119 EXTI15_10_IRQn = 40, /*!< External Line[15:10] Interrupts */ 120 RTC_Alarm_IRQn = 41, /*!< RTC Alarm through EXTI Line Interrupt */ 121 CEC_IRQn = 42, /*!< HDMI-CEC Interrupt */ 122 TIM6_DAC_IRQn = 54, /*!< TIM6 and DAC underrun Interrupt */ 123 TIM7_IRQn = 55, /*!< TIM7 global Interrupt */ 124 } IRQn_Type; 125 126 /** 127 * @} 128 */ 129 130 #include "core_cm3.h" 131 #include "system_stm32f1xx.h" 132 #include <stdint.h> 133 134 /** @addtogroup Peripheral_registers_structures 135 * @{ 136 */ 137 138 /** 139 * @brief Analog to Digital Converter 140 */ 141 142 typedef struct 143 { 144 __IO uint32_t SR; 145 __IO uint32_t CR1; 146 __IO uint32_t CR2; 147 __IO uint32_t SMPR1; 148 __IO uint32_t SMPR2; 149 __IO uint32_t JOFR1; 150 __IO uint32_t JOFR2; 151 __IO uint32_t JOFR3; 152 __IO uint32_t JOFR4; 153 __IO uint32_t HTR; 154 __IO uint32_t LTR; 155 __IO uint32_t SQR1; 156 __IO uint32_t SQR2; 157 __IO uint32_t SQR3; 158 __IO uint32_t JSQR; 159 __IO uint32_t JDR1; 160 __IO uint32_t JDR2; 161 __IO uint32_t JDR3; 162 __IO uint32_t JDR4; 163 __IO uint32_t DR; 164 } ADC_TypeDef; 165 166 typedef struct 167 { 168 __IO uint32_t SR; /*!< ADC status register, used for ADC multimode (bits common to several ADC instances). Address offset: ADC1 base address */ 169 __IO uint32_t CR1; /*!< ADC control register 1, used for ADC multimode (bits common to several ADC instances). Address offset: ADC1 base address + 0x04 */ 170 __IO uint32_t CR2; /*!< ADC control register 2, used for ADC multimode (bits common to several ADC instances). Address offset: ADC1 base address + 0x08 */ 171 uint32_t RESERVED[16]; 172 __IO uint32_t DR; /*!< ADC data register, used for ADC multimode (bits common to several ADC instances). Address offset: ADC1 base address + 0x4C */ 173 } ADC_Common_TypeDef; 174 175 /** 176 * @brief Backup Registers 177 */ 178 179 typedef struct 180 { 181 uint32_t RESERVED0; 182 __IO uint32_t DR1; 183 __IO uint32_t DR2; 184 __IO uint32_t DR3; 185 __IO uint32_t DR4; 186 __IO uint32_t DR5; 187 __IO uint32_t DR6; 188 __IO uint32_t DR7; 189 __IO uint32_t DR8; 190 __IO uint32_t DR9; 191 __IO uint32_t DR10; 192 __IO uint32_t RTCCR; 193 __IO uint32_t CR; 194 __IO uint32_t CSR; 195 } BKP_TypeDef; 196 197 198 /** 199 * @brief Consumer Electronics Control (CEC) 200 */ 201 typedef struct 202 { 203 __IO uint32_t CFGR; 204 __IO uint32_t OAR; 205 __IO uint32_t PRES; 206 __IO uint32_t ESR; 207 __IO uint32_t CSR; 208 __IO uint32_t TXD; 209 __IO uint32_t RXD; 210 } CEC_TypeDef; 211 212 /** 213 * @brief CRC calculation unit 214 */ 215 216 typedef struct 217 { 218 __IO uint32_t DR; /*!< CRC Data register, Address offset: 0x00 */ 219 __IO uint8_t IDR; /*!< CRC Independent data register, Address offset: 0x04 */ 220 uint8_t RESERVED0; /*!< Reserved, Address offset: 0x05 */ 221 uint16_t RESERVED1; /*!< Reserved, Address offset: 0x06 */ 222 __IO uint32_t CR; /*!< CRC Control register, Address offset: 0x08 */ 223 } CRC_TypeDef; 224 225 /** 226 * @brief Digital to Analog Converter 227 */ 228 229 typedef struct 230 { 231 __IO uint32_t CR; 232 __IO uint32_t SWTRIGR; 233 __IO uint32_t DHR12R1; 234 __IO uint32_t DHR12L1; 235 __IO uint32_t DHR8R1; 236 __IO uint32_t DHR12R2; 237 __IO uint32_t DHR12L2; 238 __IO uint32_t DHR8R2; 239 __IO uint32_t DHR12RD; 240 __IO uint32_t DHR12LD; 241 __IO uint32_t DHR8RD; 242 __IO uint32_t DOR1; 243 __IO uint32_t DOR2; 244 __IO uint32_t SR; 245 } DAC_TypeDef; 246 247 /** 248 * @brief Debug MCU 249 */ 250 251 typedef struct 252 { 253 __IO uint32_t IDCODE; 254 __IO uint32_t CR; 255 }DBGMCU_TypeDef; 256 257 /** 258 * @brief DMA Controller 259 */ 260 261 typedef struct 262 { 263 __IO uint32_t CCR; 264 __IO uint32_t CNDTR; 265 __IO uint32_t CPAR; 266 __IO uint32_t CMAR; 267 } DMA_Channel_TypeDef; 268 269 typedef struct 270 { 271 __IO uint32_t ISR; 272 __IO uint32_t IFCR; 273 } DMA_TypeDef; 274 275 276 277 /** 278 * @brief External Interrupt/Event Controller 279 */ 280 281 typedef struct 282 { 283 __IO uint32_t IMR; 284 __IO uint32_t EMR; 285 __IO uint32_t RTSR; 286 __IO uint32_t FTSR; 287 __IO uint32_t SWIER; 288 __IO uint32_t PR; 289 } EXTI_TypeDef; 290 291 /** 292 * @brief FLASH Registers 293 */ 294 295 typedef struct 296 { 297 __IO uint32_t ACR; 298 __IO uint32_t KEYR; 299 __IO uint32_t OPTKEYR; 300 __IO uint32_t SR; 301 __IO uint32_t CR; 302 __IO uint32_t AR; 303 __IO uint32_t RESERVED; 304 __IO uint32_t OBR; 305 __IO uint32_t WRPR; 306 } FLASH_TypeDef; 307 308 /** 309 * @brief Option Bytes Registers 310 */ 311 312 typedef struct 313 { 314 __IO uint16_t RDP; 315 __IO uint16_t USER; 316 __IO uint16_t Data0; 317 __IO uint16_t Data1; 318 __IO uint16_t WRP0; 319 __IO uint16_t WRP1; 320 __IO uint16_t WRP2; 321 __IO uint16_t WRP3; 322 } OB_TypeDef; 323 324 /** 325 * @brief General Purpose I/O 326 */ 327 328 typedef struct 329 { 330 __IO uint32_t CRL; 331 __IO uint32_t CRH; 332 __IO uint32_t IDR; 333 __IO uint32_t ODR; 334 __IO uint32_t BSRR; 335 __IO uint32_t BRR; 336 __IO uint32_t LCKR; 337 } GPIO_TypeDef; 338 339 /** 340 * @brief Alternate Function I/O 341 */ 342 343 typedef struct 344 { 345 __IO uint32_t EVCR; 346 __IO uint32_t MAPR; 347 __IO uint32_t EXTICR[4]; 348 uint32_t RESERVED0; 349 __IO uint32_t MAPR2; 350 } AFIO_TypeDef; 351 /** 352 * @brief Inter Integrated Circuit Interface 353 */ 354 355 typedef struct 356 { 357 __IO uint32_t CR1; 358 __IO uint32_t CR2; 359 __IO uint32_t OAR1; 360 __IO uint32_t OAR2; 361 __IO uint32_t DR; 362 __IO uint32_t SR1; 363 __IO uint32_t SR2; 364 __IO uint32_t CCR; 365 __IO uint32_t TRISE; 366 } I2C_TypeDef; 367 368 /** 369 * @brief Independent WATCHDOG 370 */ 371 372 typedef struct 373 { 374 __IO uint32_t KR; /*!< Key register, Address offset: 0x00 */ 375 __IO uint32_t PR; /*!< Prescaler register, Address offset: 0x04 */ 376 __IO uint32_t RLR; /*!< Reload register, Address offset: 0x08 */ 377 __IO uint32_t SR; /*!< Status register, Address offset: 0x0C */ 378 } IWDG_TypeDef; 379 380 /** 381 * @brief Power Control 382 */ 383 384 typedef struct 385 { 386 __IO uint32_t CR; 387 __IO uint32_t CSR; 388 } PWR_TypeDef; 389 390 /** 391 * @brief Reset and Clock Control 392 */ 393 394 typedef struct 395 { 396 __IO uint32_t CR; 397 __IO uint32_t CFGR; 398 __IO uint32_t CIR; 399 __IO uint32_t APB2RSTR; 400 __IO uint32_t APB1RSTR; 401 __IO uint32_t AHBENR; 402 __IO uint32_t APB2ENR; 403 __IO uint32_t APB1ENR; 404 __IO uint32_t BDCR; 405 __IO uint32_t CSR; 406 407 408 uint32_t RESERVED0; 409 __IO uint32_t CFGR2; 410 } RCC_TypeDef; 411 412 /** 413 * @brief Real-Time Clock 414 */ 415 416 typedef struct 417 { 418 __IO uint32_t CRH; 419 __IO uint32_t CRL; 420 __IO uint32_t PRLH; 421 __IO uint32_t PRLL; 422 __IO uint32_t DIVH; 423 __IO uint32_t DIVL; 424 __IO uint32_t CNTH; 425 __IO uint32_t CNTL; 426 __IO uint32_t ALRH; 427 __IO uint32_t ALRL; 428 } RTC_TypeDef; 429 430 /** 431 * @brief Serial Peripheral Interface 432 */ 433 434 typedef struct 435 { 436 __IO uint32_t CR1; 437 __IO uint32_t CR2; 438 __IO uint32_t SR; 439 __IO uint32_t DR; 440 __IO uint32_t CRCPR; 441 __IO uint32_t RXCRCR; 442 __IO uint32_t TXCRCR; 443 } SPI_TypeDef; 444 445 /** 446 * @brief TIM Timers 447 */ 448 typedef struct 449 { 450 __IO uint32_t CR1; /*!< TIM control register 1, Address offset: 0x00 */ 451 __IO uint32_t CR2; /*!< TIM control register 2, Address offset: 0x04 */ 452 __IO uint32_t SMCR; /*!< TIM slave Mode Control register, Address offset: 0x08 */ 453 __IO uint32_t DIER; /*!< TIM DMA/interrupt enable register, Address offset: 0x0C */ 454 __IO uint32_t SR; /*!< TIM status register, Address offset: 0x10 */ 455 __IO uint32_t EGR; /*!< TIM event generation register, Address offset: 0x14 */ 456 __IO uint32_t CCMR1; /*!< TIM capture/compare mode register 1, Address offset: 0x18 */ 457 __IO uint32_t CCMR2; /*!< TIM capture/compare mode register 2, Address offset: 0x1C */ 458 __IO uint32_t CCER; /*!< TIM capture/compare enable register, Address offset: 0x20 */ 459 __IO uint32_t CNT; /*!< TIM counter register, Address offset: 0x24 */ 460 __IO uint32_t PSC; /*!< TIM prescaler register, Address offset: 0x28 */ 461 __IO uint32_t ARR; /*!< TIM auto-reload register, Address offset: 0x2C */ 462 __IO uint32_t RCR; /*!< TIM repetition counter register, Address offset: 0x30 */ 463 __IO uint32_t CCR1; /*!< TIM capture/compare register 1, Address offset: 0x34 */ 464 __IO uint32_t CCR2; /*!< TIM capture/compare register 2, Address offset: 0x38 */ 465 __IO uint32_t CCR3; /*!< TIM capture/compare register 3, Address offset: 0x3C */ 466 __IO uint32_t CCR4; /*!< TIM capture/compare register 4, Address offset: 0x40 */ 467 __IO uint32_t BDTR; /*!< TIM break and dead-time register, Address offset: 0x44 */ 468 __IO uint32_t DCR; /*!< TIM DMA control register, Address offset: 0x48 */ 469 __IO uint32_t DMAR; /*!< TIM DMA address for full transfer register, Address offset: 0x4C */ 470 __IO uint32_t OR; /*!< TIM option register, Address offset: 0x50 */ 471 }TIM_TypeDef; 472 473 474 /** 475 * @brief Universal Synchronous Asynchronous Receiver Transmitter 476 */ 477 478 typedef struct 479 { 480 __IO uint32_t SR; /*!< USART Status register, Address offset: 0x00 */ 481 __IO uint32_t DR; /*!< USART Data register, Address offset: 0x04 */ 482 __IO uint32_t BRR; /*!< USART Baud rate register, Address offset: 0x08 */ 483 __IO uint32_t CR1; /*!< USART Control register 1, Address offset: 0x0C */ 484 __IO uint32_t CR2; /*!< USART Control register 2, Address offset: 0x10 */ 485 __IO uint32_t CR3; /*!< USART Control register 3, Address offset: 0x14 */ 486 __IO uint32_t GTPR; /*!< USART Guard time and prescaler register, Address offset: 0x18 */ 487 } USART_TypeDef; 488 489 490 491 /** 492 * @brief Window WATCHDOG 493 */ 494 495 typedef struct 496 { 497 __IO uint32_t CR; /*!< WWDG Control register, Address offset: 0x00 */ 498 __IO uint32_t CFR; /*!< WWDG Configuration register, Address offset: 0x04 */ 499 __IO uint32_t SR; /*!< WWDG Status register, Address offset: 0x08 */ 500 } WWDG_TypeDef; 501 502 /** 503 * @} 504 */ 505 506 /** @addtogroup Peripheral_memory_map 507 * @{ 508 */ 509 510 511 #define FLASH_BASE 0x08000000UL /*!< FLASH base address in the alias region */ 512 #define FLASH_BANK1_END 0x0801FFFFUL /*!< FLASH END address of bank1 */ 513 #define SRAM_BASE 0x20000000UL /*!< SRAM base address in the alias region */ 514 #define PERIPH_BASE 0x40000000UL /*!< Peripheral base address in the alias region */ 515 516 #define SRAM_BB_BASE 0x22000000UL /*!< SRAM base address in the bit-band region */ 517 #define PERIPH_BB_BASE 0x42000000UL /*!< Peripheral base address in the bit-band region */ 518 519 520 /*!< Peripheral memory map */ 521 #define APB1PERIPH_BASE PERIPH_BASE 522 #define APB2PERIPH_BASE (PERIPH_BASE + 0x00010000UL) 523 #define AHBPERIPH_BASE (PERIPH_BASE + 0x00020000UL) 524 525 #define TIM2_BASE (APB1PERIPH_BASE + 0x00000000UL) 526 #define TIM3_BASE (APB1PERIPH_BASE + 0x00000400UL) 527 #define TIM4_BASE (APB1PERIPH_BASE + 0x00000800UL) 528 #define TIM6_BASE (APB1PERIPH_BASE + 0x00001000UL) 529 #define TIM7_BASE (APB1PERIPH_BASE + 0x00001400UL) 530 #define RTC_BASE (APB1PERIPH_BASE + 0x00002800UL) 531 #define WWDG_BASE (APB1PERIPH_BASE + 0x00002C00UL) 532 #define IWDG_BASE (APB1PERIPH_BASE + 0x00003000UL) 533 #define SPI2_BASE (APB1PERIPH_BASE + 0x00003800UL) 534 #define USART2_BASE (APB1PERIPH_BASE + 0x00004400UL) 535 #define USART3_BASE (APB1PERIPH_BASE + 0x00004800UL) 536 #define I2C1_BASE (APB1PERIPH_BASE + 0x00005400UL) 537 #define I2C2_BASE (APB1PERIPH_BASE + 0x00005800UL) 538 #define BKP_BASE (APB1PERIPH_BASE + 0x00006C00UL) 539 #define PWR_BASE (APB1PERIPH_BASE + 0x00007000UL) 540 #define DAC_BASE (APB1PERIPH_BASE + 0x00007400UL) 541 #define CEC_BASE (APB1PERIPH_BASE + 0x00007800UL) 542 #define AFIO_BASE (APB2PERIPH_BASE + 0x00000000UL) 543 #define EXTI_BASE (APB2PERIPH_BASE + 0x00000400UL) 544 #define GPIOA_BASE (APB2PERIPH_BASE + 0x00000800UL) 545 #define GPIOB_BASE (APB2PERIPH_BASE + 0x00000C00UL) 546 #define GPIOC_BASE (APB2PERIPH_BASE + 0x00001000UL) 547 #define GPIOD_BASE (APB2PERIPH_BASE + 0x00001400UL) 548 #define GPIOE_BASE (APB2PERIPH_BASE + 0x00001800UL) 549 #define ADC1_BASE (APB2PERIPH_BASE + 0x00002400UL) 550 #define TIM1_BASE (APB2PERIPH_BASE + 0x00002C00UL) 551 #define SPI1_BASE (APB2PERIPH_BASE + 0x00003000UL) 552 #define USART1_BASE (APB2PERIPH_BASE + 0x00003800UL) 553 #define TIM15_BASE (APB2PERIPH_BASE + 0x00004000UL) 554 #define TIM16_BASE (APB2PERIPH_BASE + 0x00004400UL) 555 #define TIM17_BASE (APB2PERIPH_BASE + 0x00004800UL) 556 557 558 #define DMA1_BASE (AHBPERIPH_BASE + 0x00000000UL) 559 #define DMA1_Channel1_BASE (AHBPERIPH_BASE + 0x00000008UL) 560 #define DMA1_Channel2_BASE (AHBPERIPH_BASE + 0x0000001CUL) 561 #define DMA1_Channel3_BASE (AHBPERIPH_BASE + 0x00000030UL) 562 #define DMA1_Channel4_BASE (AHBPERIPH_BASE + 0x00000044UL) 563 #define DMA1_Channel5_BASE (AHBPERIPH_BASE + 0x00000058UL) 564 #define DMA1_Channel6_BASE (AHBPERIPH_BASE + 0x0000006CUL) 565 #define DMA1_Channel7_BASE (AHBPERIPH_BASE + 0x00000080UL) 566 #define RCC_BASE (AHBPERIPH_BASE + 0x00001000UL) 567 #define CRC_BASE (AHBPERIPH_BASE + 0x00003000UL) 568 569 #define FLASH_R_BASE (AHBPERIPH_BASE + 0x00002000UL) /*!< Flash registers base address */ 570 #define FLASHSIZE_BASE 0x1FFFF7E0UL /*!< FLASH Size register base address */ 571 #define UID_BASE 0x1FFFF7E8UL /*!< Unique device ID register base address */ 572 #define OB_BASE 0x1FFFF800UL /*!< Flash Option Bytes base address */ 573 574 575 576 #define DBGMCU_BASE 0xE0042000UL /*!< Debug MCU registers base address */ 577 578 579 580 /** 581 * @} 582 */ 583 584 /** @addtogroup Peripheral_declaration 585 * @{ 586 */ 587 588 #define TIM2 ((TIM_TypeDef *)TIM2_BASE) 589 #define TIM3 ((TIM_TypeDef *)TIM3_BASE) 590 #define TIM4 ((TIM_TypeDef *)TIM4_BASE) 591 #define TIM6 ((TIM_TypeDef *)TIM6_BASE) 592 #define TIM7 ((TIM_TypeDef *)TIM7_BASE) 593 #define RTC ((RTC_TypeDef *)RTC_BASE) 594 #define WWDG ((WWDG_TypeDef *)WWDG_BASE) 595 #define IWDG ((IWDG_TypeDef *)IWDG_BASE) 596 #define SPI2 ((SPI_TypeDef *)SPI2_BASE) 597 #define USART2 ((USART_TypeDef *)USART2_BASE) 598 #define USART3 ((USART_TypeDef *)USART3_BASE) 599 #define I2C1 ((I2C_TypeDef *)I2C1_BASE) 600 #define I2C2 ((I2C_TypeDef *)I2C2_BASE) 601 #define BKP ((BKP_TypeDef *)BKP_BASE) 602 #define PWR ((PWR_TypeDef *)PWR_BASE) 603 #define DAC1 ((DAC_TypeDef *)DAC_BASE) 604 #define DAC ((DAC_TypeDef *)DAC_BASE) /* Kept for legacy purpose */ 605 #define CEC ((CEC_TypeDef *)CEC_BASE) 606 #define AFIO ((AFIO_TypeDef *)AFIO_BASE) 607 #define EXTI ((EXTI_TypeDef *)EXTI_BASE) 608 #define GPIOA ((GPIO_TypeDef *)GPIOA_BASE) 609 #define GPIOB ((GPIO_TypeDef *)GPIOB_BASE) 610 #define GPIOC ((GPIO_TypeDef *)GPIOC_BASE) 611 #define GPIOD ((GPIO_TypeDef *)GPIOD_BASE) 612 #define GPIOE ((GPIO_TypeDef *)GPIOE_BASE) 613 #define ADC1 ((ADC_TypeDef *)ADC1_BASE) 614 #define ADC1_COMMON ((ADC_Common_TypeDef *)ADC1_BASE) 615 #define TIM1 ((TIM_TypeDef *)TIM1_BASE) 616 #define SPI1 ((SPI_TypeDef *)SPI1_BASE) 617 #define USART1 ((USART_TypeDef *)USART1_BASE) 618 #define TIM15 ((TIM_TypeDef *)TIM15_BASE) 619 #define TIM16 ((TIM_TypeDef *)TIM16_BASE) 620 #define TIM17 ((TIM_TypeDef *)TIM17_BASE) 621 #define DMA1 ((DMA_TypeDef *)DMA1_BASE) 622 #define DMA1_Channel1 ((DMA_Channel_TypeDef *)DMA1_Channel1_BASE) 623 #define DMA1_Channel2 ((DMA_Channel_TypeDef *)DMA1_Channel2_BASE) 624 #define DMA1_Channel3 ((DMA_Channel_TypeDef *)DMA1_Channel3_BASE) 625 #define DMA1_Channel4 ((DMA_Channel_TypeDef *)DMA1_Channel4_BASE) 626 #define DMA1_Channel5 ((DMA_Channel_TypeDef *)DMA1_Channel5_BASE) 627 #define DMA1_Channel6 ((DMA_Channel_TypeDef *)DMA1_Channel6_BASE) 628 #define DMA1_Channel7 ((DMA_Channel_TypeDef *)DMA1_Channel7_BASE) 629 #define RCC ((RCC_TypeDef *)RCC_BASE) 630 #define CRC ((CRC_TypeDef *)CRC_BASE) 631 #define FLASH ((FLASH_TypeDef *)FLASH_R_BASE) 632 #define OB ((OB_TypeDef *)OB_BASE) 633 #define DBGMCU ((DBGMCU_TypeDef *)DBGMCU_BASE) 634 635 636 /** 637 * @} 638 */ 639 640 /** @addtogroup Exported_constants 641 * @{ 642 */ 643 644 /** @addtogroup Hardware_Constant_Definition 645 * @{ 646 */ 647 #define LSI_STARTUP_TIME 85U /*!< LSI Maximum startup time in us */ 648 /** 649 * @} 650 */ 651 652 /** @addtogroup Peripheral_Registers_Bits_Definition 653 * @{ 654 */ 655 656 /******************************************************************************/ 657 /* Peripheral Registers_Bits_Definition */ 658 /******************************************************************************/ 659 660 /******************************************************************************/ 661 /* */ 662 /* CRC calculation unit (CRC) */ 663 /* */ 664 /******************************************************************************/ 665 666 /******************* Bit definition for CRC_DR register *********************/ 667 #define CRC_DR_DR_Pos (0U) 668 #define CRC_DR_DR_Msk (0xFFFFFFFFUL << CRC_DR_DR_Pos) /*!< 0xFFFFFFFF */ 669 #define CRC_DR_DR CRC_DR_DR_Msk /*!< Data register bits */ 670 671 /******************* Bit definition for CRC_IDR register ********************/ 672 #define CRC_IDR_IDR_Pos (0U) 673 #define CRC_IDR_IDR_Msk (0xFFUL << CRC_IDR_IDR_Pos) /*!< 0x000000FF */ 674 #define CRC_IDR_IDR CRC_IDR_IDR_Msk /*!< General-purpose 8-bit data register bits */ 675 676 /******************** Bit definition for CRC_CR register ********************/ 677 #define CRC_CR_RESET_Pos (0U) 678 #define CRC_CR_RESET_Msk (0x1UL << CRC_CR_RESET_Pos) /*!< 0x00000001 */ 679 #define CRC_CR_RESET CRC_CR_RESET_Msk /*!< RESET bit */ 680 681 /******************************************************************************/ 682 /* */ 683 /* Power Control */ 684 /* */ 685 /******************************************************************************/ 686 687 /******************** Bit definition for PWR_CR register ********************/ 688 #define PWR_CR_LPDS_Pos (0U) 689 #define PWR_CR_LPDS_Msk (0x1UL << PWR_CR_LPDS_Pos) /*!< 0x00000001 */ 690 #define PWR_CR_LPDS PWR_CR_LPDS_Msk /*!< Low-Power Deepsleep */ 691 #define PWR_CR_PDDS_Pos (1U) 692 #define PWR_CR_PDDS_Msk (0x1UL << PWR_CR_PDDS_Pos) /*!< 0x00000002 */ 693 #define PWR_CR_PDDS PWR_CR_PDDS_Msk /*!< Power Down Deepsleep */ 694 #define PWR_CR_CWUF_Pos (2U) 695 #define PWR_CR_CWUF_Msk (0x1UL << PWR_CR_CWUF_Pos) /*!< 0x00000004 */ 696 #define PWR_CR_CWUF PWR_CR_CWUF_Msk /*!< Clear Wakeup Flag */ 697 #define PWR_CR_CSBF_Pos (3U) 698 #define PWR_CR_CSBF_Msk (0x1UL << PWR_CR_CSBF_Pos) /*!< 0x00000008 */ 699 #define PWR_CR_CSBF PWR_CR_CSBF_Msk /*!< Clear Standby Flag */ 700 #define PWR_CR_PVDE_Pos (4U) 701 #define PWR_CR_PVDE_Msk (0x1UL << PWR_CR_PVDE_Pos) /*!< 0x00000010 */ 702 #define PWR_CR_PVDE PWR_CR_PVDE_Msk /*!< Power Voltage Detector Enable */ 703 704 #define PWR_CR_PLS_Pos (5U) 705 #define PWR_CR_PLS_Msk (0x7UL << PWR_CR_PLS_Pos) /*!< 0x000000E0 */ 706 #define PWR_CR_PLS PWR_CR_PLS_Msk /*!< PLS[2:0] bits (PVD Level Selection) */ 707 #define PWR_CR_PLS_0 (0x1UL << PWR_CR_PLS_Pos) /*!< 0x00000020 */ 708 #define PWR_CR_PLS_1 (0x2UL << PWR_CR_PLS_Pos) /*!< 0x00000040 */ 709 #define PWR_CR_PLS_2 (0x4UL << PWR_CR_PLS_Pos) /*!< 0x00000080 */ 710 711 /*!< PVD level configuration */ 712 #define PWR_CR_PLS_LEV0 0x00000000U /*!< PVD level 2.2V */ 713 #define PWR_CR_PLS_LEV1 0x00000020U /*!< PVD level 2.3V */ 714 #define PWR_CR_PLS_LEV2 0x00000040U /*!< PVD level 2.4V */ 715 #define PWR_CR_PLS_LEV3 0x00000060U /*!< PVD level 2.5V */ 716 #define PWR_CR_PLS_LEV4 0x00000080U /*!< PVD level 2.6V */ 717 #define PWR_CR_PLS_LEV5 0x000000A0U /*!< PVD level 2.7V */ 718 #define PWR_CR_PLS_LEV6 0x000000C0U /*!< PVD level 2.8V */ 719 #define PWR_CR_PLS_LEV7 0x000000E0U /*!< PVD level 2.9V */ 720 721 /* Legacy defines */ 722 #define PWR_CR_PLS_2V2 PWR_CR_PLS_LEV0 723 #define PWR_CR_PLS_2V3 PWR_CR_PLS_LEV1 724 #define PWR_CR_PLS_2V4 PWR_CR_PLS_LEV2 725 #define PWR_CR_PLS_2V5 PWR_CR_PLS_LEV3 726 #define PWR_CR_PLS_2V6 PWR_CR_PLS_LEV4 727 #define PWR_CR_PLS_2V7 PWR_CR_PLS_LEV5 728 #define PWR_CR_PLS_2V8 PWR_CR_PLS_LEV6 729 #define PWR_CR_PLS_2V9 PWR_CR_PLS_LEV7 730 731 #define PWR_CR_DBP_Pos (8U) 732 #define PWR_CR_DBP_Msk (0x1UL << PWR_CR_DBP_Pos) /*!< 0x00000100 */ 733 #define PWR_CR_DBP PWR_CR_DBP_Msk /*!< Disable Backup Domain write protection */ 734 735 736 /******************* Bit definition for PWR_CSR register ********************/ 737 #define PWR_CSR_WUF_Pos (0U) 738 #define PWR_CSR_WUF_Msk (0x1UL << PWR_CSR_WUF_Pos) /*!< 0x00000001 */ 739 #define PWR_CSR_WUF PWR_CSR_WUF_Msk /*!< Wakeup Flag */ 740 #define PWR_CSR_SBF_Pos (1U) 741 #define PWR_CSR_SBF_Msk (0x1UL << PWR_CSR_SBF_Pos) /*!< 0x00000002 */ 742 #define PWR_CSR_SBF PWR_CSR_SBF_Msk /*!< Standby Flag */ 743 #define PWR_CSR_PVDO_Pos (2U) 744 #define PWR_CSR_PVDO_Msk (0x1UL << PWR_CSR_PVDO_Pos) /*!< 0x00000004 */ 745 #define PWR_CSR_PVDO PWR_CSR_PVDO_Msk /*!< PVD Output */ 746 #define PWR_CSR_EWUP_Pos (8U) 747 #define PWR_CSR_EWUP_Msk (0x1UL << PWR_CSR_EWUP_Pos) /*!< 0x00000100 */ 748 #define PWR_CSR_EWUP PWR_CSR_EWUP_Msk /*!< Enable WKUP pin */ 749 750 /******************************************************************************/ 751 /* */ 752 /* Backup registers */ 753 /* */ 754 /******************************************************************************/ 755 756 /******************* Bit definition for BKP_DR1 register ********************/ 757 #define BKP_DR1_D_Pos (0U) 758 #define BKP_DR1_D_Msk (0xFFFFUL << BKP_DR1_D_Pos) /*!< 0x0000FFFF */ 759 #define BKP_DR1_D BKP_DR1_D_Msk /*!< Backup data */ 760 761 /******************* Bit definition for BKP_DR2 register ********************/ 762 #define BKP_DR2_D_Pos (0U) 763 #define BKP_DR2_D_Msk (0xFFFFUL << BKP_DR2_D_Pos) /*!< 0x0000FFFF */ 764 #define BKP_DR2_D BKP_DR2_D_Msk /*!< Backup data */ 765 766 /******************* Bit definition for BKP_DR3 register ********************/ 767 #define BKP_DR3_D_Pos (0U) 768 #define BKP_DR3_D_Msk (0xFFFFUL << BKP_DR3_D_Pos) /*!< 0x0000FFFF */ 769 #define BKP_DR3_D BKP_DR3_D_Msk /*!< Backup data */ 770 771 /******************* Bit definition for BKP_DR4 register ********************/ 772 #define BKP_DR4_D_Pos (0U) 773 #define BKP_DR4_D_Msk (0xFFFFUL << BKP_DR4_D_Pos) /*!< 0x0000FFFF */ 774 #define BKP_DR4_D BKP_DR4_D_Msk /*!< Backup data */ 775 776 /******************* Bit definition for BKP_DR5 register ********************/ 777 #define BKP_DR5_D_Pos (0U) 778 #define BKP_DR5_D_Msk (0xFFFFUL << BKP_DR5_D_Pos) /*!< 0x0000FFFF */ 779 #define BKP_DR5_D BKP_DR5_D_Msk /*!< Backup data */ 780 781 /******************* Bit definition for BKP_DR6 register ********************/ 782 #define BKP_DR6_D_Pos (0U) 783 #define BKP_DR6_D_Msk (0xFFFFUL << BKP_DR6_D_Pos) /*!< 0x0000FFFF */ 784 #define BKP_DR6_D BKP_DR6_D_Msk /*!< Backup data */ 785 786 /******************* Bit definition for BKP_DR7 register ********************/ 787 #define BKP_DR7_D_Pos (0U) 788 #define BKP_DR7_D_Msk (0xFFFFUL << BKP_DR7_D_Pos) /*!< 0x0000FFFF */ 789 #define BKP_DR7_D BKP_DR7_D_Msk /*!< Backup data */ 790 791 /******************* Bit definition for BKP_DR8 register ********************/ 792 #define BKP_DR8_D_Pos (0U) 793 #define BKP_DR8_D_Msk (0xFFFFUL << BKP_DR8_D_Pos) /*!< 0x0000FFFF */ 794 #define BKP_DR8_D BKP_DR8_D_Msk /*!< Backup data */ 795 796 /******************* Bit definition for BKP_DR9 register ********************/ 797 #define BKP_DR9_D_Pos (0U) 798 #define BKP_DR9_D_Msk (0xFFFFUL << BKP_DR9_D_Pos) /*!< 0x0000FFFF */ 799 #define BKP_DR9_D BKP_DR9_D_Msk /*!< Backup data */ 800 801 /******************* Bit definition for BKP_DR10 register *******************/ 802 #define BKP_DR10_D_Pos (0U) 803 #define BKP_DR10_D_Msk (0xFFFFUL << BKP_DR10_D_Pos) /*!< 0x0000FFFF */ 804 #define BKP_DR10_D BKP_DR10_D_Msk /*!< Backup data */ 805 806 #define RTC_BKP_NUMBER 10 807 808 /****************** Bit definition for BKP_RTCCR register *******************/ 809 #define BKP_RTCCR_CAL_Pos (0U) 810 #define BKP_RTCCR_CAL_Msk (0x7FUL << BKP_RTCCR_CAL_Pos) /*!< 0x0000007F */ 811 #define BKP_RTCCR_CAL BKP_RTCCR_CAL_Msk /*!< Calibration value */ 812 #define BKP_RTCCR_CCO_Pos (7U) 813 #define BKP_RTCCR_CCO_Msk (0x1UL << BKP_RTCCR_CCO_Pos) /*!< 0x00000080 */ 814 #define BKP_RTCCR_CCO BKP_RTCCR_CCO_Msk /*!< Calibration Clock Output */ 815 #define BKP_RTCCR_ASOE_Pos (8U) 816 #define BKP_RTCCR_ASOE_Msk (0x1UL << BKP_RTCCR_ASOE_Pos) /*!< 0x00000100 */ 817 #define BKP_RTCCR_ASOE BKP_RTCCR_ASOE_Msk /*!< Alarm or Second Output Enable */ 818 #define BKP_RTCCR_ASOS_Pos (9U) 819 #define BKP_RTCCR_ASOS_Msk (0x1UL << BKP_RTCCR_ASOS_Pos) /*!< 0x00000200 */ 820 #define BKP_RTCCR_ASOS BKP_RTCCR_ASOS_Msk /*!< Alarm or Second Output Selection */ 821 822 /******************** Bit definition for BKP_CR register ********************/ 823 #define BKP_CR_TPE_Pos (0U) 824 #define BKP_CR_TPE_Msk (0x1UL << BKP_CR_TPE_Pos) /*!< 0x00000001 */ 825 #define BKP_CR_TPE BKP_CR_TPE_Msk /*!< TAMPER pin enable */ 826 #define BKP_CR_TPAL_Pos (1U) 827 #define BKP_CR_TPAL_Msk (0x1UL << BKP_CR_TPAL_Pos) /*!< 0x00000002 */ 828 #define BKP_CR_TPAL BKP_CR_TPAL_Msk /*!< TAMPER pin active level */ 829 830 /******************* Bit definition for BKP_CSR register ********************/ 831 #define BKP_CSR_CTE_Pos (0U) 832 #define BKP_CSR_CTE_Msk (0x1UL << BKP_CSR_CTE_Pos) /*!< 0x00000001 */ 833 #define BKP_CSR_CTE BKP_CSR_CTE_Msk /*!< Clear Tamper event */ 834 #define BKP_CSR_CTI_Pos (1U) 835 #define BKP_CSR_CTI_Msk (0x1UL << BKP_CSR_CTI_Pos) /*!< 0x00000002 */ 836 #define BKP_CSR_CTI BKP_CSR_CTI_Msk /*!< Clear Tamper Interrupt */ 837 #define BKP_CSR_TPIE_Pos (2U) 838 #define BKP_CSR_TPIE_Msk (0x1UL << BKP_CSR_TPIE_Pos) /*!< 0x00000004 */ 839 #define BKP_CSR_TPIE BKP_CSR_TPIE_Msk /*!< TAMPER Pin interrupt enable */ 840 #define BKP_CSR_TEF_Pos (8U) 841 #define BKP_CSR_TEF_Msk (0x1UL << BKP_CSR_TEF_Pos) /*!< 0x00000100 */ 842 #define BKP_CSR_TEF BKP_CSR_TEF_Msk /*!< Tamper Event Flag */ 843 #define BKP_CSR_TIF_Pos (9U) 844 #define BKP_CSR_TIF_Msk (0x1UL << BKP_CSR_TIF_Pos) /*!< 0x00000200 */ 845 #define BKP_CSR_TIF BKP_CSR_TIF_Msk /*!< Tamper Interrupt Flag */ 846 847 /******************************************************************************/ 848 /* */ 849 /* Reset and Clock Control */ 850 /* */ 851 /******************************************************************************/ 852 853 /******************** Bit definition for RCC_CR register ********************/ 854 #define RCC_CR_HSION_Pos (0U) 855 #define RCC_CR_HSION_Msk (0x1UL << RCC_CR_HSION_Pos) /*!< 0x00000001 */ 856 #define RCC_CR_HSION RCC_CR_HSION_Msk /*!< Internal High Speed clock enable */ 857 #define RCC_CR_HSIRDY_Pos (1U) 858 #define RCC_CR_HSIRDY_Msk (0x1UL << RCC_CR_HSIRDY_Pos) /*!< 0x00000002 */ 859 #define RCC_CR_HSIRDY RCC_CR_HSIRDY_Msk /*!< Internal High Speed clock ready flag */ 860 #define RCC_CR_HSITRIM_Pos (3U) 861 #define RCC_CR_HSITRIM_Msk (0x1FUL << RCC_CR_HSITRIM_Pos) /*!< 0x000000F8 */ 862 #define RCC_CR_HSITRIM RCC_CR_HSITRIM_Msk /*!< Internal High Speed clock trimming */ 863 #define RCC_CR_HSICAL_Pos (8U) 864 #define RCC_CR_HSICAL_Msk (0xFFUL << RCC_CR_HSICAL_Pos) /*!< 0x0000FF00 */ 865 #define RCC_CR_HSICAL RCC_CR_HSICAL_Msk /*!< Internal High Speed clock Calibration */ 866 #define RCC_CR_HSEON_Pos (16U) 867 #define RCC_CR_HSEON_Msk (0x1UL << RCC_CR_HSEON_Pos) /*!< 0x00010000 */ 868 #define RCC_CR_HSEON RCC_CR_HSEON_Msk /*!< External High Speed clock enable */ 869 #define RCC_CR_HSERDY_Pos (17U) 870 #define RCC_CR_HSERDY_Msk (0x1UL << RCC_CR_HSERDY_Pos) /*!< 0x00020000 */ 871 #define RCC_CR_HSERDY RCC_CR_HSERDY_Msk /*!< External High Speed clock ready flag */ 872 #define RCC_CR_HSEBYP_Pos (18U) 873 #define RCC_CR_HSEBYP_Msk (0x1UL << RCC_CR_HSEBYP_Pos) /*!< 0x00040000 */ 874 #define RCC_CR_HSEBYP RCC_CR_HSEBYP_Msk /*!< External High Speed clock Bypass */ 875 #define RCC_CR_CSSON_Pos (19U) 876 #define RCC_CR_CSSON_Msk (0x1UL << RCC_CR_CSSON_Pos) /*!< 0x00080000 */ 877 #define RCC_CR_CSSON RCC_CR_CSSON_Msk /*!< Clock Security System enable */ 878 #define RCC_CR_PLLON_Pos (24U) 879 #define RCC_CR_PLLON_Msk (0x1UL << RCC_CR_PLLON_Pos) /*!< 0x01000000 */ 880 #define RCC_CR_PLLON RCC_CR_PLLON_Msk /*!< PLL enable */ 881 #define RCC_CR_PLLRDY_Pos (25U) 882 #define RCC_CR_PLLRDY_Msk (0x1UL << RCC_CR_PLLRDY_Pos) /*!< 0x02000000 */ 883 #define RCC_CR_PLLRDY RCC_CR_PLLRDY_Msk /*!< PLL clock ready flag */ 884 885 886 /******************* Bit definition for RCC_CFGR register *******************/ 887 /*!< SW configuration */ 888 #define RCC_CFGR_SW_Pos (0U) 889 #define RCC_CFGR_SW_Msk (0x3UL << RCC_CFGR_SW_Pos) /*!< 0x00000003 */ 890 #define RCC_CFGR_SW RCC_CFGR_SW_Msk /*!< SW[1:0] bits (System clock Switch) */ 891 #define RCC_CFGR_SW_0 (0x1UL << RCC_CFGR_SW_Pos) /*!< 0x00000001 */ 892 #define RCC_CFGR_SW_1 (0x2UL << RCC_CFGR_SW_Pos) /*!< 0x00000002 */ 893 894 #define RCC_CFGR_SW_HSI 0x00000000U /*!< HSI selected as system clock */ 895 #define RCC_CFGR_SW_HSE 0x00000001U /*!< HSE selected as system clock */ 896 #define RCC_CFGR_SW_PLL 0x00000002U /*!< PLL selected as system clock */ 897 898 /*!< SWS configuration */ 899 #define RCC_CFGR_SWS_Pos (2U) 900 #define RCC_CFGR_SWS_Msk (0x3UL << RCC_CFGR_SWS_Pos) /*!< 0x0000000C */ 901 #define RCC_CFGR_SWS RCC_CFGR_SWS_Msk /*!< SWS[1:0] bits (System Clock Switch Status) */ 902 #define RCC_CFGR_SWS_0 (0x1UL << RCC_CFGR_SWS_Pos) /*!< 0x00000004 */ 903 #define RCC_CFGR_SWS_1 (0x2UL << RCC_CFGR_SWS_Pos) /*!< 0x00000008 */ 904 905 #define RCC_CFGR_SWS_HSI 0x00000000U /*!< HSI oscillator used as system clock */ 906 #define RCC_CFGR_SWS_HSE 0x00000004U /*!< HSE oscillator used as system clock */ 907 #define RCC_CFGR_SWS_PLL 0x00000008U /*!< PLL used as system clock */ 908 909 /*!< HPRE configuration */ 910 #define RCC_CFGR_HPRE_Pos (4U) 911 #define RCC_CFGR_HPRE_Msk (0xFUL << RCC_CFGR_HPRE_Pos) /*!< 0x000000F0 */ 912 #define RCC_CFGR_HPRE RCC_CFGR_HPRE_Msk /*!< HPRE[3:0] bits (AHB prescaler) */ 913 #define RCC_CFGR_HPRE_0 (0x1UL << RCC_CFGR_HPRE_Pos) /*!< 0x00000010 */ 914 #define RCC_CFGR_HPRE_1 (0x2UL << RCC_CFGR_HPRE_Pos) /*!< 0x00000020 */ 915 #define RCC_CFGR_HPRE_2 (0x4UL << RCC_CFGR_HPRE_Pos) /*!< 0x00000040 */ 916 #define RCC_CFGR_HPRE_3 (0x8UL << RCC_CFGR_HPRE_Pos) /*!< 0x00000080 */ 917 918 #define RCC_CFGR_HPRE_DIV1 0x00000000U /*!< SYSCLK not divided */ 919 #define RCC_CFGR_HPRE_DIV2 0x00000080U /*!< SYSCLK divided by 2 */ 920 #define RCC_CFGR_HPRE_DIV4 0x00000090U /*!< SYSCLK divided by 4 */ 921 #define RCC_CFGR_HPRE_DIV8 0x000000A0U /*!< SYSCLK divided by 8 */ 922 #define RCC_CFGR_HPRE_DIV16 0x000000B0U /*!< SYSCLK divided by 16 */ 923 #define RCC_CFGR_HPRE_DIV64 0x000000C0U /*!< SYSCLK divided by 64 */ 924 #define RCC_CFGR_HPRE_DIV128 0x000000D0U /*!< SYSCLK divided by 128 */ 925 #define RCC_CFGR_HPRE_DIV256 0x000000E0U /*!< SYSCLK divided by 256 */ 926 #define RCC_CFGR_HPRE_DIV512 0x000000F0U /*!< SYSCLK divided by 512 */ 927 928 /*!< PPRE1 configuration */ 929 #define RCC_CFGR_PPRE1_Pos (8U) 930 #define RCC_CFGR_PPRE1_Msk (0x7UL << RCC_CFGR_PPRE1_Pos) /*!< 0x00000700 */ 931 #define RCC_CFGR_PPRE1 RCC_CFGR_PPRE1_Msk /*!< PRE1[2:0] bits (APB1 prescaler) */ 932 #define RCC_CFGR_PPRE1_0 (0x1UL << RCC_CFGR_PPRE1_Pos) /*!< 0x00000100 */ 933 #define RCC_CFGR_PPRE1_1 (0x2UL << RCC_CFGR_PPRE1_Pos) /*!< 0x00000200 */ 934 #define RCC_CFGR_PPRE1_2 (0x4UL << RCC_CFGR_PPRE1_Pos) /*!< 0x00000400 */ 935 936 #define RCC_CFGR_PPRE1_DIV1 0x00000000U /*!< HCLK not divided */ 937 #define RCC_CFGR_PPRE1_DIV2 0x00000400U /*!< HCLK divided by 2 */ 938 #define RCC_CFGR_PPRE1_DIV4 0x00000500U /*!< HCLK divided by 4 */ 939 #define RCC_CFGR_PPRE1_DIV8 0x00000600U /*!< HCLK divided by 8 */ 940 #define RCC_CFGR_PPRE1_DIV16 0x00000700U /*!< HCLK divided by 16 */ 941 942 /*!< PPRE2 configuration */ 943 #define RCC_CFGR_PPRE2_Pos (11U) 944 #define RCC_CFGR_PPRE2_Msk (0x7UL << RCC_CFGR_PPRE2_Pos) /*!< 0x00003800 */ 945 #define RCC_CFGR_PPRE2 RCC_CFGR_PPRE2_Msk /*!< PRE2[2:0] bits (APB2 prescaler) */ 946 #define RCC_CFGR_PPRE2_0 (0x1UL << RCC_CFGR_PPRE2_Pos) /*!< 0x00000800 */ 947 #define RCC_CFGR_PPRE2_1 (0x2UL << RCC_CFGR_PPRE2_Pos) /*!< 0x00001000 */ 948 #define RCC_CFGR_PPRE2_2 (0x4UL << RCC_CFGR_PPRE2_Pos) /*!< 0x00002000 */ 949 950 #define RCC_CFGR_PPRE2_DIV1 0x00000000U /*!< HCLK not divided */ 951 #define RCC_CFGR_PPRE2_DIV2 0x00002000U /*!< HCLK divided by 2 */ 952 #define RCC_CFGR_PPRE2_DIV4 0x00002800U /*!< HCLK divided by 4 */ 953 #define RCC_CFGR_PPRE2_DIV8 0x00003000U /*!< HCLK divided by 8 */ 954 #define RCC_CFGR_PPRE2_DIV16 0x00003800U /*!< HCLK divided by 16 */ 955 956 /*!< ADCPPRE configuration */ 957 #define RCC_CFGR_ADCPRE_Pos (14U) 958 #define RCC_CFGR_ADCPRE_Msk (0x3UL << RCC_CFGR_ADCPRE_Pos) /*!< 0x0000C000 */ 959 #define RCC_CFGR_ADCPRE RCC_CFGR_ADCPRE_Msk /*!< ADCPRE[1:0] bits (ADC prescaler) */ 960 #define RCC_CFGR_ADCPRE_0 (0x1UL << RCC_CFGR_ADCPRE_Pos) /*!< 0x00004000 */ 961 #define RCC_CFGR_ADCPRE_1 (0x2UL << RCC_CFGR_ADCPRE_Pos) /*!< 0x00008000 */ 962 963 #define RCC_CFGR_ADCPRE_DIV2 0x00000000U /*!< PCLK2 divided by 2 */ 964 #define RCC_CFGR_ADCPRE_DIV4 0x00004000U /*!< PCLK2 divided by 4 */ 965 #define RCC_CFGR_ADCPRE_DIV6 0x00008000U /*!< PCLK2 divided by 6 */ 966 #define RCC_CFGR_ADCPRE_DIV8 0x0000C000U /*!< PCLK2 divided by 8 */ 967 968 #define RCC_CFGR_PLLSRC_Pos (16U) 969 #define RCC_CFGR_PLLSRC_Msk (0x1UL << RCC_CFGR_PLLSRC_Pos) /*!< 0x00010000 */ 970 #define RCC_CFGR_PLLSRC RCC_CFGR_PLLSRC_Msk /*!< PLL entry clock source */ 971 972 #define RCC_CFGR_PLLXTPRE_Pos (17U) 973 #define RCC_CFGR_PLLXTPRE_Msk (0x1UL << RCC_CFGR_PLLXTPRE_Pos) /*!< 0x00020000 */ 974 #define RCC_CFGR_PLLXTPRE RCC_CFGR_PLLXTPRE_Msk /*!< HSE divider for PLL entry */ 975 976 /*!< PLLMUL configuration */ 977 #define RCC_CFGR_PLLMULL_Pos (18U) 978 #define RCC_CFGR_PLLMULL_Msk (0xFUL << RCC_CFGR_PLLMULL_Pos) /*!< 0x003C0000 */ 979 #define RCC_CFGR_PLLMULL RCC_CFGR_PLLMULL_Msk /*!< PLLMUL[3:0] bits (PLL multiplication factor) */ 980 #define RCC_CFGR_PLLMULL_0 (0x1UL << RCC_CFGR_PLLMULL_Pos) /*!< 0x00040000 */ 981 #define RCC_CFGR_PLLMULL_1 (0x2UL << RCC_CFGR_PLLMULL_Pos) /*!< 0x00080000 */ 982 #define RCC_CFGR_PLLMULL_2 (0x4UL << RCC_CFGR_PLLMULL_Pos) /*!< 0x00100000 */ 983 #define RCC_CFGR_PLLMULL_3 (0x8UL << RCC_CFGR_PLLMULL_Pos) /*!< 0x00200000 */ 984 985 #define RCC_CFGR_PLLXTPRE_PREDIV1 0x00000000U /*!< PREDIV1 clock not divided for PLL entry */ 986 #define RCC_CFGR_PLLXTPRE_PREDIV1_DIV2 0x00020000U /*!< PREDIV1 clock divided by 2 for PLL entry */ 987 988 #define RCC_CFGR_PLLMULL2 0x00000000U /*!< PLL input clock*2 */ 989 #define RCC_CFGR_PLLMULL3_Pos (18U) 990 #define RCC_CFGR_PLLMULL3_Msk (0x1UL << RCC_CFGR_PLLMULL3_Pos) /*!< 0x00040000 */ 991 #define RCC_CFGR_PLLMULL3 RCC_CFGR_PLLMULL3_Msk /*!< PLL input clock*3 */ 992 #define RCC_CFGR_PLLMULL4_Pos (19U) 993 #define RCC_CFGR_PLLMULL4_Msk (0x1UL << RCC_CFGR_PLLMULL4_Pos) /*!< 0x00080000 */ 994 #define RCC_CFGR_PLLMULL4 RCC_CFGR_PLLMULL4_Msk /*!< PLL input clock*4 */ 995 #define RCC_CFGR_PLLMULL5_Pos (18U) 996 #define RCC_CFGR_PLLMULL5_Msk (0x3UL << RCC_CFGR_PLLMULL5_Pos) /*!< 0x000C0000 */ 997 #define RCC_CFGR_PLLMULL5 RCC_CFGR_PLLMULL5_Msk /*!< PLL input clock*5 */ 998 #define RCC_CFGR_PLLMULL6_Pos (20U) 999 #define RCC_CFGR_PLLMULL6_Msk (0x1UL << RCC_CFGR_PLLMULL6_Pos) /*!< 0x00100000 */ 1000 #define RCC_CFGR_PLLMULL6 RCC_CFGR_PLLMULL6_Msk /*!< PLL input clock*6 */ 1001 #define RCC_CFGR_PLLMULL7_Pos (18U) 1002 #define RCC_CFGR_PLLMULL7_Msk (0x5UL << RCC_CFGR_PLLMULL7_Pos) /*!< 0x00140000 */ 1003 #define RCC_CFGR_PLLMULL7 RCC_CFGR_PLLMULL7_Msk /*!< PLL input clock*7 */ 1004 #define RCC_CFGR_PLLMULL8_Pos (19U) 1005 #define RCC_CFGR_PLLMULL8_Msk (0x3UL << RCC_CFGR_PLLMULL8_Pos) /*!< 0x00180000 */ 1006 #define RCC_CFGR_PLLMULL8 RCC_CFGR_PLLMULL8_Msk /*!< PLL input clock*8 */ 1007 #define RCC_CFGR_PLLMULL9_Pos (18U) 1008 #define RCC_CFGR_PLLMULL9_Msk (0x7UL << RCC_CFGR_PLLMULL9_Pos) /*!< 0x001C0000 */ 1009 #define RCC_CFGR_PLLMULL9 RCC_CFGR_PLLMULL9_Msk /*!< PLL input clock*9 */ 1010 #define RCC_CFGR_PLLMULL10_Pos (21U) 1011 #define RCC_CFGR_PLLMULL10_Msk (0x1UL << RCC_CFGR_PLLMULL10_Pos) /*!< 0x00200000 */ 1012 #define RCC_CFGR_PLLMULL10 RCC_CFGR_PLLMULL10_Msk /*!< PLL input clock10 */ 1013 #define RCC_CFGR_PLLMULL11_Pos (18U) 1014 #define RCC_CFGR_PLLMULL11_Msk (0x9UL << RCC_CFGR_PLLMULL11_Pos) /*!< 0x00240000 */ 1015 #define RCC_CFGR_PLLMULL11 RCC_CFGR_PLLMULL11_Msk /*!< PLL input clock*11 */ 1016 #define RCC_CFGR_PLLMULL12_Pos (19U) 1017 #define RCC_CFGR_PLLMULL12_Msk (0x5UL << RCC_CFGR_PLLMULL12_Pos) /*!< 0x00280000 */ 1018 #define RCC_CFGR_PLLMULL12 RCC_CFGR_PLLMULL12_Msk /*!< PLL input clock*12 */ 1019 #define RCC_CFGR_PLLMULL13_Pos (18U) 1020 #define RCC_CFGR_PLLMULL13_Msk (0xBUL << RCC_CFGR_PLLMULL13_Pos) /*!< 0x002C0000 */ 1021 #define RCC_CFGR_PLLMULL13 RCC_CFGR_PLLMULL13_Msk /*!< PLL input clock*13 */ 1022 #define RCC_CFGR_PLLMULL14_Pos (20U) 1023 #define RCC_CFGR_PLLMULL14_Msk (0x3UL << RCC_CFGR_PLLMULL14_Pos) /*!< 0x00300000 */ 1024 #define RCC_CFGR_PLLMULL14 RCC_CFGR_PLLMULL14_Msk /*!< PLL input clock*14 */ 1025 #define RCC_CFGR_PLLMULL15_Pos (18U) 1026 #define RCC_CFGR_PLLMULL15_Msk (0xDUL << RCC_CFGR_PLLMULL15_Pos) /*!< 0x00340000 */ 1027 #define RCC_CFGR_PLLMULL15 RCC_CFGR_PLLMULL15_Msk /*!< PLL input clock*15 */ 1028 #define RCC_CFGR_PLLMULL16_Pos (19U) 1029 #define RCC_CFGR_PLLMULL16_Msk (0x7UL << RCC_CFGR_PLLMULL16_Pos) /*!< 0x00380000 */ 1030 #define RCC_CFGR_PLLMULL16 RCC_CFGR_PLLMULL16_Msk /*!< PLL input clock*16 */ 1031 1032 /*!< MCO configuration */ 1033 #define RCC_CFGR_MCO_Pos (24U) 1034 #define RCC_CFGR_MCO_Msk (0x7UL << RCC_CFGR_MCO_Pos) /*!< 0x07000000 */ 1035 #define RCC_CFGR_MCO RCC_CFGR_MCO_Msk /*!< MCO[2:0] bits (Microcontroller Clock Output) */ 1036 #define RCC_CFGR_MCO_0 (0x1UL << RCC_CFGR_MCO_Pos) /*!< 0x01000000 */ 1037 #define RCC_CFGR_MCO_1 (0x2UL << RCC_CFGR_MCO_Pos) /*!< 0x02000000 */ 1038 #define RCC_CFGR_MCO_2 (0x4UL << RCC_CFGR_MCO_Pos) /*!< 0x04000000 */ 1039 1040 #define RCC_CFGR_MCO_NOCLOCK 0x00000000U /*!< No clock */ 1041 #define RCC_CFGR_MCO_SYSCLK 0x04000000U /*!< System clock selected as MCO source */ 1042 #define RCC_CFGR_MCO_HSI 0x05000000U /*!< HSI clock selected as MCO source */ 1043 #define RCC_CFGR_MCO_HSE 0x06000000U /*!< HSE clock selected as MCO source */ 1044 #define RCC_CFGR_MCO_PLLCLK_DIV2 0x07000000U /*!< PLL clock divided by 2 selected as MCO source */ 1045 1046 /* Reference defines */ 1047 #define RCC_CFGR_MCOSEL RCC_CFGR_MCO 1048 #define RCC_CFGR_MCOSEL_0 RCC_CFGR_MCO_0 1049 #define RCC_CFGR_MCOSEL_1 RCC_CFGR_MCO_1 1050 #define RCC_CFGR_MCOSEL_2 RCC_CFGR_MCO_2 1051 #define RCC_CFGR_MCOSEL_NOCLOCK RCC_CFGR_MCO_NOCLOCK 1052 #define RCC_CFGR_MCOSEL_SYSCLK RCC_CFGR_MCO_SYSCLK 1053 #define RCC_CFGR_MCOSEL_HSI RCC_CFGR_MCO_HSI 1054 #define RCC_CFGR_MCOSEL_HSE RCC_CFGR_MCO_HSE 1055 #define RCC_CFGR_MCOSEL_PLL_DIV2 RCC_CFGR_MCO_PLLCLK_DIV2 1056 1057 /*!<****************** Bit definition for RCC_CIR register ********************/ 1058 #define RCC_CIR_LSIRDYF_Pos (0U) 1059 #define RCC_CIR_LSIRDYF_Msk (0x1UL << RCC_CIR_LSIRDYF_Pos) /*!< 0x00000001 */ 1060 #define RCC_CIR_LSIRDYF RCC_CIR_LSIRDYF_Msk /*!< LSI Ready Interrupt flag */ 1061 #define RCC_CIR_LSERDYF_Pos (1U) 1062 #define RCC_CIR_LSERDYF_Msk (0x1UL << RCC_CIR_LSERDYF_Pos) /*!< 0x00000002 */ 1063 #define RCC_CIR_LSERDYF RCC_CIR_LSERDYF_Msk /*!< LSE Ready Interrupt flag */ 1064 #define RCC_CIR_HSIRDYF_Pos (2U) 1065 #define RCC_CIR_HSIRDYF_Msk (0x1UL << RCC_CIR_HSIRDYF_Pos) /*!< 0x00000004 */ 1066 #define RCC_CIR_HSIRDYF RCC_CIR_HSIRDYF_Msk /*!< HSI Ready Interrupt flag */ 1067 #define RCC_CIR_HSERDYF_Pos (3U) 1068 #define RCC_CIR_HSERDYF_Msk (0x1UL << RCC_CIR_HSERDYF_Pos) /*!< 0x00000008 */ 1069 #define RCC_CIR_HSERDYF RCC_CIR_HSERDYF_Msk /*!< HSE Ready Interrupt flag */ 1070 #define RCC_CIR_PLLRDYF_Pos (4U) 1071 #define RCC_CIR_PLLRDYF_Msk (0x1UL << RCC_CIR_PLLRDYF_Pos) /*!< 0x00000010 */ 1072 #define RCC_CIR_PLLRDYF RCC_CIR_PLLRDYF_Msk /*!< PLL Ready Interrupt flag */ 1073 #define RCC_CIR_CSSF_Pos (7U) 1074 #define RCC_CIR_CSSF_Msk (0x1UL << RCC_CIR_CSSF_Pos) /*!< 0x00000080 */ 1075 #define RCC_CIR_CSSF RCC_CIR_CSSF_Msk /*!< Clock Security System Interrupt flag */ 1076 #define RCC_CIR_LSIRDYIE_Pos (8U) 1077 #define RCC_CIR_LSIRDYIE_Msk (0x1UL << RCC_CIR_LSIRDYIE_Pos) /*!< 0x00000100 */ 1078 #define RCC_CIR_LSIRDYIE RCC_CIR_LSIRDYIE_Msk /*!< LSI Ready Interrupt Enable */ 1079 #define RCC_CIR_LSERDYIE_Pos (9U) 1080 #define RCC_CIR_LSERDYIE_Msk (0x1UL << RCC_CIR_LSERDYIE_Pos) /*!< 0x00000200 */ 1081 #define RCC_CIR_LSERDYIE RCC_CIR_LSERDYIE_Msk /*!< LSE Ready Interrupt Enable */ 1082 #define RCC_CIR_HSIRDYIE_Pos (10U) 1083 #define RCC_CIR_HSIRDYIE_Msk (0x1UL << RCC_CIR_HSIRDYIE_Pos) /*!< 0x00000400 */ 1084 #define RCC_CIR_HSIRDYIE RCC_CIR_HSIRDYIE_Msk /*!< HSI Ready Interrupt Enable */ 1085 #define RCC_CIR_HSERDYIE_Pos (11U) 1086 #define RCC_CIR_HSERDYIE_Msk (0x1UL << RCC_CIR_HSERDYIE_Pos) /*!< 0x00000800 */ 1087 #define RCC_CIR_HSERDYIE RCC_CIR_HSERDYIE_Msk /*!< HSE Ready Interrupt Enable */ 1088 #define RCC_CIR_PLLRDYIE_Pos (12U) 1089 #define RCC_CIR_PLLRDYIE_Msk (0x1UL << RCC_CIR_PLLRDYIE_Pos) /*!< 0x00001000 */ 1090 #define RCC_CIR_PLLRDYIE RCC_CIR_PLLRDYIE_Msk /*!< PLL Ready Interrupt Enable */ 1091 #define RCC_CIR_LSIRDYC_Pos (16U) 1092 #define RCC_CIR_LSIRDYC_Msk (0x1UL << RCC_CIR_LSIRDYC_Pos) /*!< 0x00010000 */ 1093 #define RCC_CIR_LSIRDYC RCC_CIR_LSIRDYC_Msk /*!< LSI Ready Interrupt Clear */ 1094 #define RCC_CIR_LSERDYC_Pos (17U) 1095 #define RCC_CIR_LSERDYC_Msk (0x1UL << RCC_CIR_LSERDYC_Pos) /*!< 0x00020000 */ 1096 #define RCC_CIR_LSERDYC RCC_CIR_LSERDYC_Msk /*!< LSE Ready Interrupt Clear */ 1097 #define RCC_CIR_HSIRDYC_Pos (18U) 1098 #define RCC_CIR_HSIRDYC_Msk (0x1UL << RCC_CIR_HSIRDYC_Pos) /*!< 0x00040000 */ 1099 #define RCC_CIR_HSIRDYC RCC_CIR_HSIRDYC_Msk /*!< HSI Ready Interrupt Clear */ 1100 #define RCC_CIR_HSERDYC_Pos (19U) 1101 #define RCC_CIR_HSERDYC_Msk (0x1UL << RCC_CIR_HSERDYC_Pos) /*!< 0x00080000 */ 1102 #define RCC_CIR_HSERDYC RCC_CIR_HSERDYC_Msk /*!< HSE Ready Interrupt Clear */ 1103 #define RCC_CIR_PLLRDYC_Pos (20U) 1104 #define RCC_CIR_PLLRDYC_Msk (0x1UL << RCC_CIR_PLLRDYC_Pos) /*!< 0x00100000 */ 1105 #define RCC_CIR_PLLRDYC RCC_CIR_PLLRDYC_Msk /*!< PLL Ready Interrupt Clear */ 1106 #define RCC_CIR_CSSC_Pos (23U) 1107 #define RCC_CIR_CSSC_Msk (0x1UL << RCC_CIR_CSSC_Pos) /*!< 0x00800000 */ 1108 #define RCC_CIR_CSSC RCC_CIR_CSSC_Msk /*!< Clock Security System Interrupt Clear */ 1109 1110 1111 /***************** Bit definition for RCC_APB2RSTR register *****************/ 1112 #define RCC_APB2RSTR_AFIORST_Pos (0U) 1113 #define RCC_APB2RSTR_AFIORST_Msk (0x1UL << RCC_APB2RSTR_AFIORST_Pos) /*!< 0x00000001 */ 1114 #define RCC_APB2RSTR_AFIORST RCC_APB2RSTR_AFIORST_Msk /*!< Alternate Function I/O reset */ 1115 #define RCC_APB2RSTR_IOPARST_Pos (2U) 1116 #define RCC_APB2RSTR_IOPARST_Msk (0x1UL << RCC_APB2RSTR_IOPARST_Pos) /*!< 0x00000004 */ 1117 #define RCC_APB2RSTR_IOPARST RCC_APB2RSTR_IOPARST_Msk /*!< I/O port A reset */ 1118 #define RCC_APB2RSTR_IOPBRST_Pos (3U) 1119 #define RCC_APB2RSTR_IOPBRST_Msk (0x1UL << RCC_APB2RSTR_IOPBRST_Pos) /*!< 0x00000008 */ 1120 #define RCC_APB2RSTR_IOPBRST RCC_APB2RSTR_IOPBRST_Msk /*!< I/O port B reset */ 1121 #define RCC_APB2RSTR_IOPCRST_Pos (4U) 1122 #define RCC_APB2RSTR_IOPCRST_Msk (0x1UL << RCC_APB2RSTR_IOPCRST_Pos) /*!< 0x00000010 */ 1123 #define RCC_APB2RSTR_IOPCRST RCC_APB2RSTR_IOPCRST_Msk /*!< I/O port C reset */ 1124 #define RCC_APB2RSTR_IOPDRST_Pos (5U) 1125 #define RCC_APB2RSTR_IOPDRST_Msk (0x1UL << RCC_APB2RSTR_IOPDRST_Pos) /*!< 0x00000020 */ 1126 #define RCC_APB2RSTR_IOPDRST RCC_APB2RSTR_IOPDRST_Msk /*!< I/O port D reset */ 1127 #define RCC_APB2RSTR_ADC1RST_Pos (9U) 1128 #define RCC_APB2RSTR_ADC1RST_Msk (0x1UL << RCC_APB2RSTR_ADC1RST_Pos) /*!< 0x00000200 */ 1129 #define RCC_APB2RSTR_ADC1RST RCC_APB2RSTR_ADC1RST_Msk /*!< ADC 1 interface reset */ 1130 1131 1132 #define RCC_APB2RSTR_TIM1RST_Pos (11U) 1133 #define RCC_APB2RSTR_TIM1RST_Msk (0x1UL << RCC_APB2RSTR_TIM1RST_Pos) /*!< 0x00000800 */ 1134 #define RCC_APB2RSTR_TIM1RST RCC_APB2RSTR_TIM1RST_Msk /*!< TIM1 Timer reset */ 1135 #define RCC_APB2RSTR_SPI1RST_Pos (12U) 1136 #define RCC_APB2RSTR_SPI1RST_Msk (0x1UL << RCC_APB2RSTR_SPI1RST_Pos) /*!< 0x00001000 */ 1137 #define RCC_APB2RSTR_SPI1RST RCC_APB2RSTR_SPI1RST_Msk /*!< SPI 1 reset */ 1138 #define RCC_APB2RSTR_USART1RST_Pos (14U) 1139 #define RCC_APB2RSTR_USART1RST_Msk (0x1UL << RCC_APB2RSTR_USART1RST_Pos) /*!< 0x00004000 */ 1140 #define RCC_APB2RSTR_USART1RST RCC_APB2RSTR_USART1RST_Msk /*!< USART1 reset */ 1141 1142 #define RCC_APB2RSTR_TIM15RST_Pos (16U) 1143 #define RCC_APB2RSTR_TIM15RST_Msk (0x1UL << RCC_APB2RSTR_TIM15RST_Pos) /*!< 0x00010000 */ 1144 #define RCC_APB2RSTR_TIM15RST RCC_APB2RSTR_TIM15RST_Msk /*!< TIM15 Timer reset */ 1145 #define RCC_APB2RSTR_TIM16RST_Pos (17U) 1146 #define RCC_APB2RSTR_TIM16RST_Msk (0x1UL << RCC_APB2RSTR_TIM16RST_Pos) /*!< 0x00020000 */ 1147 #define RCC_APB2RSTR_TIM16RST RCC_APB2RSTR_TIM16RST_Msk /*!< TIM16 Timer reset */ 1148 #define RCC_APB2RSTR_TIM17RST_Pos (18U) 1149 #define RCC_APB2RSTR_TIM17RST_Msk (0x1UL << RCC_APB2RSTR_TIM17RST_Pos) /*!< 0x00040000 */ 1150 #define RCC_APB2RSTR_TIM17RST RCC_APB2RSTR_TIM17RST_Msk /*!< TIM17 Timer reset */ 1151 1152 #define RCC_APB2RSTR_IOPERST_Pos (6U) 1153 #define RCC_APB2RSTR_IOPERST_Msk (0x1UL << RCC_APB2RSTR_IOPERST_Pos) /*!< 0x00000040 */ 1154 #define RCC_APB2RSTR_IOPERST RCC_APB2RSTR_IOPERST_Msk /*!< I/O port E reset */ 1155 1156 1157 1158 1159 /***************** Bit definition for RCC_APB1RSTR register *****************/ 1160 #define RCC_APB1RSTR_TIM2RST_Pos (0U) 1161 #define RCC_APB1RSTR_TIM2RST_Msk (0x1UL << RCC_APB1RSTR_TIM2RST_Pos) /*!< 0x00000001 */ 1162 #define RCC_APB1RSTR_TIM2RST RCC_APB1RSTR_TIM2RST_Msk /*!< Timer 2 reset */ 1163 #define RCC_APB1RSTR_TIM3RST_Pos (1U) 1164 #define RCC_APB1RSTR_TIM3RST_Msk (0x1UL << RCC_APB1RSTR_TIM3RST_Pos) /*!< 0x00000002 */ 1165 #define RCC_APB1RSTR_TIM3RST RCC_APB1RSTR_TIM3RST_Msk /*!< Timer 3 reset */ 1166 #define RCC_APB1RSTR_WWDGRST_Pos (11U) 1167 #define RCC_APB1RSTR_WWDGRST_Msk (0x1UL << RCC_APB1RSTR_WWDGRST_Pos) /*!< 0x00000800 */ 1168 #define RCC_APB1RSTR_WWDGRST RCC_APB1RSTR_WWDGRST_Msk /*!< Window Watchdog reset */ 1169 #define RCC_APB1RSTR_USART2RST_Pos (17U) 1170 #define RCC_APB1RSTR_USART2RST_Msk (0x1UL << RCC_APB1RSTR_USART2RST_Pos) /*!< 0x00020000 */ 1171 #define RCC_APB1RSTR_USART2RST RCC_APB1RSTR_USART2RST_Msk /*!< USART 2 reset */ 1172 #define RCC_APB1RSTR_I2C1RST_Pos (21U) 1173 #define RCC_APB1RSTR_I2C1RST_Msk (0x1UL << RCC_APB1RSTR_I2C1RST_Pos) /*!< 0x00200000 */ 1174 #define RCC_APB1RSTR_I2C1RST RCC_APB1RSTR_I2C1RST_Msk /*!< I2C 1 reset */ 1175 1176 1177 #define RCC_APB1RSTR_BKPRST_Pos (27U) 1178 #define RCC_APB1RSTR_BKPRST_Msk (0x1UL << RCC_APB1RSTR_BKPRST_Pos) /*!< 0x08000000 */ 1179 #define RCC_APB1RSTR_BKPRST RCC_APB1RSTR_BKPRST_Msk /*!< Backup interface reset */ 1180 #define RCC_APB1RSTR_PWRRST_Pos (28U) 1181 #define RCC_APB1RSTR_PWRRST_Msk (0x1UL << RCC_APB1RSTR_PWRRST_Pos) /*!< 0x10000000 */ 1182 #define RCC_APB1RSTR_PWRRST RCC_APB1RSTR_PWRRST_Msk /*!< Power interface reset */ 1183 1184 #define RCC_APB1RSTR_TIM4RST_Pos (2U) 1185 #define RCC_APB1RSTR_TIM4RST_Msk (0x1UL << RCC_APB1RSTR_TIM4RST_Pos) /*!< 0x00000004 */ 1186 #define RCC_APB1RSTR_TIM4RST RCC_APB1RSTR_TIM4RST_Msk /*!< Timer 4 reset */ 1187 #define RCC_APB1RSTR_SPI2RST_Pos (14U) 1188 #define RCC_APB1RSTR_SPI2RST_Msk (0x1UL << RCC_APB1RSTR_SPI2RST_Pos) /*!< 0x00004000 */ 1189 #define RCC_APB1RSTR_SPI2RST RCC_APB1RSTR_SPI2RST_Msk /*!< SPI 2 reset */ 1190 #define RCC_APB1RSTR_USART3RST_Pos (18U) 1191 #define RCC_APB1RSTR_USART3RST_Msk (0x1UL << RCC_APB1RSTR_USART3RST_Pos) /*!< 0x00040000 */ 1192 #define RCC_APB1RSTR_USART3RST RCC_APB1RSTR_USART3RST_Msk /*!< USART 3 reset */ 1193 #define RCC_APB1RSTR_I2C2RST_Pos (22U) 1194 #define RCC_APB1RSTR_I2C2RST_Msk (0x1UL << RCC_APB1RSTR_I2C2RST_Pos) /*!< 0x00400000 */ 1195 #define RCC_APB1RSTR_I2C2RST RCC_APB1RSTR_I2C2RST_Msk /*!< I2C 2 reset */ 1196 1197 1198 1199 #define RCC_APB1RSTR_TIM6RST_Pos (4U) 1200 #define RCC_APB1RSTR_TIM6RST_Msk (0x1UL << RCC_APB1RSTR_TIM6RST_Pos) /*!< 0x00000010 */ 1201 #define RCC_APB1RSTR_TIM6RST RCC_APB1RSTR_TIM6RST_Msk /*!< Timer 6 reset */ 1202 #define RCC_APB1RSTR_TIM7RST_Pos (5U) 1203 #define RCC_APB1RSTR_TIM7RST_Msk (0x1UL << RCC_APB1RSTR_TIM7RST_Pos) /*!< 0x00000020 */ 1204 #define RCC_APB1RSTR_TIM7RST RCC_APB1RSTR_TIM7RST_Msk /*!< Timer 7 reset */ 1205 #define RCC_APB1RSTR_CECRST_Pos (30U) 1206 #define RCC_APB1RSTR_CECRST_Msk (0x1UL << RCC_APB1RSTR_CECRST_Pos) /*!< 0x40000000 */ 1207 #define RCC_APB1RSTR_CECRST RCC_APB1RSTR_CECRST_Msk /*!< CEC interface reset */ 1208 1209 1210 1211 #define RCC_APB1RSTR_DACRST_Pos (29U) 1212 #define RCC_APB1RSTR_DACRST_Msk (0x1UL << RCC_APB1RSTR_DACRST_Pos) /*!< 0x20000000 */ 1213 #define RCC_APB1RSTR_DACRST RCC_APB1RSTR_DACRST_Msk /*!< DAC interface reset */ 1214 1215 /****************** Bit definition for RCC_AHBENR register ******************/ 1216 #define RCC_AHBENR_DMA1EN_Pos (0U) 1217 #define RCC_AHBENR_DMA1EN_Msk (0x1UL << RCC_AHBENR_DMA1EN_Pos) /*!< 0x00000001 */ 1218 #define RCC_AHBENR_DMA1EN RCC_AHBENR_DMA1EN_Msk /*!< DMA1 clock enable */ 1219 #define RCC_AHBENR_SRAMEN_Pos (2U) 1220 #define RCC_AHBENR_SRAMEN_Msk (0x1UL << RCC_AHBENR_SRAMEN_Pos) /*!< 0x00000004 */ 1221 #define RCC_AHBENR_SRAMEN RCC_AHBENR_SRAMEN_Msk /*!< SRAM interface clock enable */ 1222 #define RCC_AHBENR_FLITFEN_Pos (4U) 1223 #define RCC_AHBENR_FLITFEN_Msk (0x1UL << RCC_AHBENR_FLITFEN_Pos) /*!< 0x00000010 */ 1224 #define RCC_AHBENR_FLITFEN RCC_AHBENR_FLITFEN_Msk /*!< FLITF clock enable */ 1225 #define RCC_AHBENR_CRCEN_Pos (6U) 1226 #define RCC_AHBENR_CRCEN_Msk (0x1UL << RCC_AHBENR_CRCEN_Pos) /*!< 0x00000040 */ 1227 #define RCC_AHBENR_CRCEN RCC_AHBENR_CRCEN_Msk /*!< CRC clock enable */ 1228 1229 1230 1231 1232 /****************** Bit definition for RCC_APB2ENR register *****************/ 1233 #define RCC_APB2ENR_AFIOEN_Pos (0U) 1234 #define RCC_APB2ENR_AFIOEN_Msk (0x1UL << RCC_APB2ENR_AFIOEN_Pos) /*!< 0x00000001 */ 1235 #define RCC_APB2ENR_AFIOEN RCC_APB2ENR_AFIOEN_Msk /*!< Alternate Function I/O clock enable */ 1236 #define RCC_APB2ENR_IOPAEN_Pos (2U) 1237 #define RCC_APB2ENR_IOPAEN_Msk (0x1UL << RCC_APB2ENR_IOPAEN_Pos) /*!< 0x00000004 */ 1238 #define RCC_APB2ENR_IOPAEN RCC_APB2ENR_IOPAEN_Msk /*!< I/O port A clock enable */ 1239 #define RCC_APB2ENR_IOPBEN_Pos (3U) 1240 #define RCC_APB2ENR_IOPBEN_Msk (0x1UL << RCC_APB2ENR_IOPBEN_Pos) /*!< 0x00000008 */ 1241 #define RCC_APB2ENR_IOPBEN RCC_APB2ENR_IOPBEN_Msk /*!< I/O port B clock enable */ 1242 #define RCC_APB2ENR_IOPCEN_Pos (4U) 1243 #define RCC_APB2ENR_IOPCEN_Msk (0x1UL << RCC_APB2ENR_IOPCEN_Pos) /*!< 0x00000010 */ 1244 #define RCC_APB2ENR_IOPCEN RCC_APB2ENR_IOPCEN_Msk /*!< I/O port C clock enable */ 1245 #define RCC_APB2ENR_IOPDEN_Pos (5U) 1246 #define RCC_APB2ENR_IOPDEN_Msk (0x1UL << RCC_APB2ENR_IOPDEN_Pos) /*!< 0x00000020 */ 1247 #define RCC_APB2ENR_IOPDEN RCC_APB2ENR_IOPDEN_Msk /*!< I/O port D clock enable */ 1248 #define RCC_APB2ENR_ADC1EN_Pos (9U) 1249 #define RCC_APB2ENR_ADC1EN_Msk (0x1UL << RCC_APB2ENR_ADC1EN_Pos) /*!< 0x00000200 */ 1250 #define RCC_APB2ENR_ADC1EN RCC_APB2ENR_ADC1EN_Msk /*!< ADC 1 interface clock enable */ 1251 1252 1253 #define RCC_APB2ENR_TIM1EN_Pos (11U) 1254 #define RCC_APB2ENR_TIM1EN_Msk (0x1UL << RCC_APB2ENR_TIM1EN_Pos) /*!< 0x00000800 */ 1255 #define RCC_APB2ENR_TIM1EN RCC_APB2ENR_TIM1EN_Msk /*!< TIM1 Timer clock enable */ 1256 #define RCC_APB2ENR_SPI1EN_Pos (12U) 1257 #define RCC_APB2ENR_SPI1EN_Msk (0x1UL << RCC_APB2ENR_SPI1EN_Pos) /*!< 0x00001000 */ 1258 #define RCC_APB2ENR_SPI1EN RCC_APB2ENR_SPI1EN_Msk /*!< SPI 1 clock enable */ 1259 #define RCC_APB2ENR_USART1EN_Pos (14U) 1260 #define RCC_APB2ENR_USART1EN_Msk (0x1UL << RCC_APB2ENR_USART1EN_Pos) /*!< 0x00004000 */ 1261 #define RCC_APB2ENR_USART1EN RCC_APB2ENR_USART1EN_Msk /*!< USART1 clock enable */ 1262 1263 #define RCC_APB2ENR_TIM15EN_Pos (16U) 1264 #define RCC_APB2ENR_TIM15EN_Msk (0x1UL << RCC_APB2ENR_TIM15EN_Pos) /*!< 0x00010000 */ 1265 #define RCC_APB2ENR_TIM15EN RCC_APB2ENR_TIM15EN_Msk /*!< TIM15 Timer clock enable */ 1266 #define RCC_APB2ENR_TIM16EN_Pos (17U) 1267 #define RCC_APB2ENR_TIM16EN_Msk (0x1UL << RCC_APB2ENR_TIM16EN_Pos) /*!< 0x00020000 */ 1268 #define RCC_APB2ENR_TIM16EN RCC_APB2ENR_TIM16EN_Msk /*!< TIM16 Timer clock enable */ 1269 #define RCC_APB2ENR_TIM17EN_Pos (18U) 1270 #define RCC_APB2ENR_TIM17EN_Msk (0x1UL << RCC_APB2ENR_TIM17EN_Pos) /*!< 0x00040000 */ 1271 #define RCC_APB2ENR_TIM17EN RCC_APB2ENR_TIM17EN_Msk /*!< TIM17 Timer clock enable */ 1272 1273 #define RCC_APB2ENR_IOPEEN_Pos (6U) 1274 #define RCC_APB2ENR_IOPEEN_Msk (0x1UL << RCC_APB2ENR_IOPEEN_Pos) /*!< 0x00000040 */ 1275 #define RCC_APB2ENR_IOPEEN RCC_APB2ENR_IOPEEN_Msk /*!< I/O port E clock enable */ 1276 1277 1278 1279 1280 /***************** Bit definition for RCC_APB1ENR register ******************/ 1281 #define RCC_APB1ENR_TIM2EN_Pos (0U) 1282 #define RCC_APB1ENR_TIM2EN_Msk (0x1UL << RCC_APB1ENR_TIM2EN_Pos) /*!< 0x00000001 */ 1283 #define RCC_APB1ENR_TIM2EN RCC_APB1ENR_TIM2EN_Msk /*!< Timer 2 clock enabled*/ 1284 #define RCC_APB1ENR_TIM3EN_Pos (1U) 1285 #define RCC_APB1ENR_TIM3EN_Msk (0x1UL << RCC_APB1ENR_TIM3EN_Pos) /*!< 0x00000002 */ 1286 #define RCC_APB1ENR_TIM3EN RCC_APB1ENR_TIM3EN_Msk /*!< Timer 3 clock enable */ 1287 #define RCC_APB1ENR_WWDGEN_Pos (11U) 1288 #define RCC_APB1ENR_WWDGEN_Msk (0x1UL << RCC_APB1ENR_WWDGEN_Pos) /*!< 0x00000800 */ 1289 #define RCC_APB1ENR_WWDGEN RCC_APB1ENR_WWDGEN_Msk /*!< Window Watchdog clock enable */ 1290 #define RCC_APB1ENR_USART2EN_Pos (17U) 1291 #define RCC_APB1ENR_USART2EN_Msk (0x1UL << RCC_APB1ENR_USART2EN_Pos) /*!< 0x00020000 */ 1292 #define RCC_APB1ENR_USART2EN RCC_APB1ENR_USART2EN_Msk /*!< USART 2 clock enable */ 1293 #define RCC_APB1ENR_I2C1EN_Pos (21U) 1294 #define RCC_APB1ENR_I2C1EN_Msk (0x1UL << RCC_APB1ENR_I2C1EN_Pos) /*!< 0x00200000 */ 1295 #define RCC_APB1ENR_I2C1EN RCC_APB1ENR_I2C1EN_Msk /*!< I2C 1 clock enable */ 1296 1297 1298 #define RCC_APB1ENR_BKPEN_Pos (27U) 1299 #define RCC_APB1ENR_BKPEN_Msk (0x1UL << RCC_APB1ENR_BKPEN_Pos) /*!< 0x08000000 */ 1300 #define RCC_APB1ENR_BKPEN RCC_APB1ENR_BKPEN_Msk /*!< Backup interface clock enable */ 1301 #define RCC_APB1ENR_PWREN_Pos (28U) 1302 #define RCC_APB1ENR_PWREN_Msk (0x1UL << RCC_APB1ENR_PWREN_Pos) /*!< 0x10000000 */ 1303 #define RCC_APB1ENR_PWREN RCC_APB1ENR_PWREN_Msk /*!< Power interface clock enable */ 1304 1305 #define RCC_APB1ENR_TIM4EN_Pos (2U) 1306 #define RCC_APB1ENR_TIM4EN_Msk (0x1UL << RCC_APB1ENR_TIM4EN_Pos) /*!< 0x00000004 */ 1307 #define RCC_APB1ENR_TIM4EN RCC_APB1ENR_TIM4EN_Msk /*!< Timer 4 clock enable */ 1308 #define RCC_APB1ENR_SPI2EN_Pos (14U) 1309 #define RCC_APB1ENR_SPI2EN_Msk (0x1UL << RCC_APB1ENR_SPI2EN_Pos) /*!< 0x00004000 */ 1310 #define RCC_APB1ENR_SPI2EN RCC_APB1ENR_SPI2EN_Msk /*!< SPI 2 clock enable */ 1311 #define RCC_APB1ENR_USART3EN_Pos (18U) 1312 #define RCC_APB1ENR_USART3EN_Msk (0x1UL << RCC_APB1ENR_USART3EN_Pos) /*!< 0x00040000 */ 1313 #define RCC_APB1ENR_USART3EN RCC_APB1ENR_USART3EN_Msk /*!< USART 3 clock enable */ 1314 #define RCC_APB1ENR_I2C2EN_Pos (22U) 1315 #define RCC_APB1ENR_I2C2EN_Msk (0x1UL << RCC_APB1ENR_I2C2EN_Pos) /*!< 0x00400000 */ 1316 #define RCC_APB1ENR_I2C2EN RCC_APB1ENR_I2C2EN_Msk /*!< I2C 2 clock enable */ 1317 1318 1319 1320 #define RCC_APB1ENR_TIM6EN_Pos (4U) 1321 #define RCC_APB1ENR_TIM6EN_Msk (0x1UL << RCC_APB1ENR_TIM6EN_Pos) /*!< 0x00000010 */ 1322 #define RCC_APB1ENR_TIM6EN RCC_APB1ENR_TIM6EN_Msk /*!< Timer 6 clock enable */ 1323 #define RCC_APB1ENR_TIM7EN_Pos (5U) 1324 #define RCC_APB1ENR_TIM7EN_Msk (0x1UL << RCC_APB1ENR_TIM7EN_Pos) /*!< 0x00000020 */ 1325 #define RCC_APB1ENR_TIM7EN RCC_APB1ENR_TIM7EN_Msk /*!< Timer 7 clock enable */ 1326 #define RCC_APB1ENR_CECEN_Pos (30U) 1327 #define RCC_APB1ENR_CECEN_Msk (0x1UL << RCC_APB1ENR_CECEN_Pos) /*!< 0x40000000 */ 1328 #define RCC_APB1ENR_CECEN RCC_APB1ENR_CECEN_Msk /*!< CEC interface clock enable */ 1329 1330 1331 1332 #define RCC_APB1ENR_DACEN_Pos (29U) 1333 #define RCC_APB1ENR_DACEN_Msk (0x1UL << RCC_APB1ENR_DACEN_Pos) /*!< 0x20000000 */ 1334 #define RCC_APB1ENR_DACEN RCC_APB1ENR_DACEN_Msk /*!< DAC interface clock enable */ 1335 1336 /******************* Bit definition for RCC_BDCR register *******************/ 1337 #define RCC_BDCR_LSEON_Pos (0U) 1338 #define RCC_BDCR_LSEON_Msk (0x1UL << RCC_BDCR_LSEON_Pos) /*!< 0x00000001 */ 1339 #define RCC_BDCR_LSEON RCC_BDCR_LSEON_Msk /*!< External Low Speed oscillator enable */ 1340 #define RCC_BDCR_LSERDY_Pos (1U) 1341 #define RCC_BDCR_LSERDY_Msk (0x1UL << RCC_BDCR_LSERDY_Pos) /*!< 0x00000002 */ 1342 #define RCC_BDCR_LSERDY RCC_BDCR_LSERDY_Msk /*!< External Low Speed oscillator Ready */ 1343 #define RCC_BDCR_LSEBYP_Pos (2U) 1344 #define RCC_BDCR_LSEBYP_Msk (0x1UL << RCC_BDCR_LSEBYP_Pos) /*!< 0x00000004 */ 1345 #define RCC_BDCR_LSEBYP RCC_BDCR_LSEBYP_Msk /*!< External Low Speed oscillator Bypass */ 1346 1347 #define RCC_BDCR_RTCSEL_Pos (8U) 1348 #define RCC_BDCR_RTCSEL_Msk (0x3UL << RCC_BDCR_RTCSEL_Pos) /*!< 0x00000300 */ 1349 #define RCC_BDCR_RTCSEL RCC_BDCR_RTCSEL_Msk /*!< RTCSEL[1:0] bits (RTC clock source selection) */ 1350 #define RCC_BDCR_RTCSEL_0 (0x1UL << RCC_BDCR_RTCSEL_Pos) /*!< 0x00000100 */ 1351 #define RCC_BDCR_RTCSEL_1 (0x2UL << RCC_BDCR_RTCSEL_Pos) /*!< 0x00000200 */ 1352 1353 /*!< RTC congiguration */ 1354 #define RCC_BDCR_RTCSEL_NOCLOCK 0x00000000U /*!< No clock */ 1355 #define RCC_BDCR_RTCSEL_LSE 0x00000100U /*!< LSE oscillator clock used as RTC clock */ 1356 #define RCC_BDCR_RTCSEL_LSI 0x00000200U /*!< LSI oscillator clock used as RTC clock */ 1357 #define RCC_BDCR_RTCSEL_HSE 0x00000300U /*!< HSE oscillator clock divided by 128 used as RTC clock */ 1358 1359 #define RCC_BDCR_RTCEN_Pos (15U) 1360 #define RCC_BDCR_RTCEN_Msk (0x1UL << RCC_BDCR_RTCEN_Pos) /*!< 0x00008000 */ 1361 #define RCC_BDCR_RTCEN RCC_BDCR_RTCEN_Msk /*!< RTC clock enable */ 1362 #define RCC_BDCR_BDRST_Pos (16U) 1363 #define RCC_BDCR_BDRST_Msk (0x1UL << RCC_BDCR_BDRST_Pos) /*!< 0x00010000 */ 1364 #define RCC_BDCR_BDRST RCC_BDCR_BDRST_Msk /*!< Backup domain software reset */ 1365 1366 /******************* Bit definition for RCC_CSR register ********************/ 1367 #define RCC_CSR_LSION_Pos (0U) 1368 #define RCC_CSR_LSION_Msk (0x1UL << RCC_CSR_LSION_Pos) /*!< 0x00000001 */ 1369 #define RCC_CSR_LSION RCC_CSR_LSION_Msk /*!< Internal Low Speed oscillator enable */ 1370 #define RCC_CSR_LSIRDY_Pos (1U) 1371 #define RCC_CSR_LSIRDY_Msk (0x1UL << RCC_CSR_LSIRDY_Pos) /*!< 0x00000002 */ 1372 #define RCC_CSR_LSIRDY RCC_CSR_LSIRDY_Msk /*!< Internal Low Speed oscillator Ready */ 1373 #define RCC_CSR_RMVF_Pos (24U) 1374 #define RCC_CSR_RMVF_Msk (0x1UL << RCC_CSR_RMVF_Pos) /*!< 0x01000000 */ 1375 #define RCC_CSR_RMVF RCC_CSR_RMVF_Msk /*!< Remove reset flag */ 1376 #define RCC_CSR_PINRSTF_Pos (26U) 1377 #define RCC_CSR_PINRSTF_Msk (0x1UL << RCC_CSR_PINRSTF_Pos) /*!< 0x04000000 */ 1378 #define RCC_CSR_PINRSTF RCC_CSR_PINRSTF_Msk /*!< PIN reset flag */ 1379 #define RCC_CSR_PORRSTF_Pos (27U) 1380 #define RCC_CSR_PORRSTF_Msk (0x1UL << RCC_CSR_PORRSTF_Pos) /*!< 0x08000000 */ 1381 #define RCC_CSR_PORRSTF RCC_CSR_PORRSTF_Msk /*!< POR/PDR reset flag */ 1382 #define RCC_CSR_SFTRSTF_Pos (28U) 1383 #define RCC_CSR_SFTRSTF_Msk (0x1UL << RCC_CSR_SFTRSTF_Pos) /*!< 0x10000000 */ 1384 #define RCC_CSR_SFTRSTF RCC_CSR_SFTRSTF_Msk /*!< Software Reset flag */ 1385 #define RCC_CSR_IWDGRSTF_Pos (29U) 1386 #define RCC_CSR_IWDGRSTF_Msk (0x1UL << RCC_CSR_IWDGRSTF_Pos) /*!< 0x20000000 */ 1387 #define RCC_CSR_IWDGRSTF RCC_CSR_IWDGRSTF_Msk /*!< Independent Watchdog reset flag */ 1388 #define RCC_CSR_WWDGRSTF_Pos (30U) 1389 #define RCC_CSR_WWDGRSTF_Msk (0x1UL << RCC_CSR_WWDGRSTF_Pos) /*!< 0x40000000 */ 1390 #define RCC_CSR_WWDGRSTF RCC_CSR_WWDGRSTF_Msk /*!< Window watchdog reset flag */ 1391 #define RCC_CSR_LPWRRSTF_Pos (31U) 1392 #define RCC_CSR_LPWRRSTF_Msk (0x1UL << RCC_CSR_LPWRRSTF_Pos) /*!< 0x80000000 */ 1393 #define RCC_CSR_LPWRRSTF RCC_CSR_LPWRRSTF_Msk /*!< Low-Power reset flag */ 1394 1395 1396 /******************* Bit definition for RCC_CFGR2 register ******************/ 1397 /*!< PREDIV1 configuration */ 1398 #define RCC_CFGR2_PREDIV1_Pos (0U) 1399 #define RCC_CFGR2_PREDIV1_Msk (0xFUL << RCC_CFGR2_PREDIV1_Pos) /*!< 0x0000000F */ 1400 #define RCC_CFGR2_PREDIV1 RCC_CFGR2_PREDIV1_Msk /*!< PREDIV1[3:0] bits */ 1401 #define RCC_CFGR2_PREDIV1_0 (0x1UL << RCC_CFGR2_PREDIV1_Pos) /*!< 0x00000001 */ 1402 #define RCC_CFGR2_PREDIV1_1 (0x2UL << RCC_CFGR2_PREDIV1_Pos) /*!< 0x00000002 */ 1403 #define RCC_CFGR2_PREDIV1_2 (0x4UL << RCC_CFGR2_PREDIV1_Pos) /*!< 0x00000004 */ 1404 #define RCC_CFGR2_PREDIV1_3 (0x8UL << RCC_CFGR2_PREDIV1_Pos) /*!< 0x00000008 */ 1405 1406 #define RCC_CFGR2_PREDIV1_DIV1 0x00000000U /*!< PREDIV1 input clock not divided */ 1407 #define RCC_CFGR2_PREDIV1_DIV2_Pos (0U) 1408 #define RCC_CFGR2_PREDIV1_DIV2_Msk (0x1UL << RCC_CFGR2_PREDIV1_DIV2_Pos) /*!< 0x00000001 */ 1409 #define RCC_CFGR2_PREDIV1_DIV2 RCC_CFGR2_PREDIV1_DIV2_Msk /*!< PREDIV1 input clock divided by 2 */ 1410 #define RCC_CFGR2_PREDIV1_DIV3_Pos (1U) 1411 #define RCC_CFGR2_PREDIV1_DIV3_Msk (0x1UL << RCC_CFGR2_PREDIV1_DIV3_Pos) /*!< 0x00000002 */ 1412 #define RCC_CFGR2_PREDIV1_DIV3 RCC_CFGR2_PREDIV1_DIV3_Msk /*!< PREDIV1 input clock divided by 3 */ 1413 #define RCC_CFGR2_PREDIV1_DIV4_Pos (0U) 1414 #define RCC_CFGR2_PREDIV1_DIV4_Msk (0x3UL << RCC_CFGR2_PREDIV1_DIV4_Pos) /*!< 0x00000003 */ 1415 #define RCC_CFGR2_PREDIV1_DIV4 RCC_CFGR2_PREDIV1_DIV4_Msk /*!< PREDIV1 input clock divided by 4 */ 1416 #define RCC_CFGR2_PREDIV1_DIV5_Pos (2U) 1417 #define RCC_CFGR2_PREDIV1_DIV5_Msk (0x1UL << RCC_CFGR2_PREDIV1_DIV5_Pos) /*!< 0x00000004 */ 1418 #define RCC_CFGR2_PREDIV1_DIV5 RCC_CFGR2_PREDIV1_DIV5_Msk /*!< PREDIV1 input clock divided by 5 */ 1419 #define RCC_CFGR2_PREDIV1_DIV6_Pos (0U) 1420 #define RCC_CFGR2_PREDIV1_DIV6_Msk (0x5UL << RCC_CFGR2_PREDIV1_DIV6_Pos) /*!< 0x00000005 */ 1421 #define RCC_CFGR2_PREDIV1_DIV6 RCC_CFGR2_PREDIV1_DIV6_Msk /*!< PREDIV1 input clock divided by 6 */ 1422 #define RCC_CFGR2_PREDIV1_DIV7_Pos (1U) 1423 #define RCC_CFGR2_PREDIV1_DIV7_Msk (0x3UL << RCC_CFGR2_PREDIV1_DIV7_Pos) /*!< 0x00000006 */ 1424 #define RCC_CFGR2_PREDIV1_DIV7 RCC_CFGR2_PREDIV1_DIV7_Msk /*!< PREDIV1 input clock divided by 7 */ 1425 #define RCC_CFGR2_PREDIV1_DIV8_Pos (0U) 1426 #define RCC_CFGR2_PREDIV1_DIV8_Msk (0x7UL << RCC_CFGR2_PREDIV1_DIV8_Pos) /*!< 0x00000007 */ 1427 #define RCC_CFGR2_PREDIV1_DIV8 RCC_CFGR2_PREDIV1_DIV8_Msk /*!< PREDIV1 input clock divided by 8 */ 1428 #define RCC_CFGR2_PREDIV1_DIV9_Pos (3U) 1429 #define RCC_CFGR2_PREDIV1_DIV9_Msk (0x1UL << RCC_CFGR2_PREDIV1_DIV9_Pos) /*!< 0x00000008 */ 1430 #define RCC_CFGR2_PREDIV1_DIV9 RCC_CFGR2_PREDIV1_DIV9_Msk /*!< PREDIV1 input clock divided by 9 */ 1431 #define RCC_CFGR2_PREDIV1_DIV10_Pos (0U) 1432 #define RCC_CFGR2_PREDIV1_DIV10_Msk (0x9UL << RCC_CFGR2_PREDIV1_DIV10_Pos) /*!< 0x00000009 */ 1433 #define RCC_CFGR2_PREDIV1_DIV10 RCC_CFGR2_PREDIV1_DIV10_Msk /*!< PREDIV1 input clock divided by 10 */ 1434 #define RCC_CFGR2_PREDIV1_DIV11_Pos (1U) 1435 #define RCC_CFGR2_PREDIV1_DIV11_Msk (0x5UL << RCC_CFGR2_PREDIV1_DIV11_Pos) /*!< 0x0000000A */ 1436 #define RCC_CFGR2_PREDIV1_DIV11 RCC_CFGR2_PREDIV1_DIV11_Msk /*!< PREDIV1 input clock divided by 11 */ 1437 #define RCC_CFGR2_PREDIV1_DIV12_Pos (0U) 1438 #define RCC_CFGR2_PREDIV1_DIV12_Msk (0xBUL << RCC_CFGR2_PREDIV1_DIV12_Pos) /*!< 0x0000000B */ 1439 #define RCC_CFGR2_PREDIV1_DIV12 RCC_CFGR2_PREDIV1_DIV12_Msk /*!< PREDIV1 input clock divided by 12 */ 1440 #define RCC_CFGR2_PREDIV1_DIV13_Pos (2U) 1441 #define RCC_CFGR2_PREDIV1_DIV13_Msk (0x3UL << RCC_CFGR2_PREDIV1_DIV13_Pos) /*!< 0x0000000C */ 1442 #define RCC_CFGR2_PREDIV1_DIV13 RCC_CFGR2_PREDIV1_DIV13_Msk /*!< PREDIV1 input clock divided by 13 */ 1443 #define RCC_CFGR2_PREDIV1_DIV14_Pos (0U) 1444 #define RCC_CFGR2_PREDIV1_DIV14_Msk (0xDUL << RCC_CFGR2_PREDIV1_DIV14_Pos) /*!< 0x0000000D */ 1445 #define RCC_CFGR2_PREDIV1_DIV14 RCC_CFGR2_PREDIV1_DIV14_Msk /*!< PREDIV1 input clock divided by 14 */ 1446 #define RCC_CFGR2_PREDIV1_DIV15_Pos (1U) 1447 #define RCC_CFGR2_PREDIV1_DIV15_Msk (0x7UL << RCC_CFGR2_PREDIV1_DIV15_Pos) /*!< 0x0000000E */ 1448 #define RCC_CFGR2_PREDIV1_DIV15 RCC_CFGR2_PREDIV1_DIV15_Msk /*!< PREDIV1 input clock divided by 15 */ 1449 #define RCC_CFGR2_PREDIV1_DIV16_Pos (0U) 1450 #define RCC_CFGR2_PREDIV1_DIV16_Msk (0xFUL << RCC_CFGR2_PREDIV1_DIV16_Pos) /*!< 0x0000000F */ 1451 #define RCC_CFGR2_PREDIV1_DIV16 RCC_CFGR2_PREDIV1_DIV16_Msk /*!< PREDIV1 input clock divided by 16 */ 1452 1453 /******************************************************************************/ 1454 /* */ 1455 /* General Purpose and Alternate Function I/O */ 1456 /* */ 1457 /******************************************************************************/ 1458 1459 /******************* Bit definition for GPIO_CRL register *******************/ 1460 #define GPIO_CRL_MODE_Pos (0U) 1461 #define GPIO_CRL_MODE_Msk (0x33333333UL << GPIO_CRL_MODE_Pos) /*!< 0x33333333 */ 1462 #define GPIO_CRL_MODE GPIO_CRL_MODE_Msk /*!< Port x mode bits */ 1463 1464 #define GPIO_CRL_MODE0_Pos (0U) 1465 #define GPIO_CRL_MODE0_Msk (0x3UL << GPIO_CRL_MODE0_Pos) /*!< 0x00000003 */ 1466 #define GPIO_CRL_MODE0 GPIO_CRL_MODE0_Msk /*!< MODE0[1:0] bits (Port x mode bits, pin 0) */ 1467 #define GPIO_CRL_MODE0_0 (0x1UL << GPIO_CRL_MODE0_Pos) /*!< 0x00000001 */ 1468 #define GPIO_CRL_MODE0_1 (0x2UL << GPIO_CRL_MODE0_Pos) /*!< 0x00000002 */ 1469 1470 #define GPIO_CRL_MODE1_Pos (4U) 1471 #define GPIO_CRL_MODE1_Msk (0x3UL << GPIO_CRL_MODE1_Pos) /*!< 0x00000030 */ 1472 #define GPIO_CRL_MODE1 GPIO_CRL_MODE1_Msk /*!< MODE1[1:0] bits (Port x mode bits, pin 1) */ 1473 #define GPIO_CRL_MODE1_0 (0x1UL << GPIO_CRL_MODE1_Pos) /*!< 0x00000010 */ 1474 #define GPIO_CRL_MODE1_1 (0x2UL << GPIO_CRL_MODE1_Pos) /*!< 0x00000020 */ 1475 1476 #define GPIO_CRL_MODE2_Pos (8U) 1477 #define GPIO_CRL_MODE2_Msk (0x3UL << GPIO_CRL_MODE2_Pos) /*!< 0x00000300 */ 1478 #define GPIO_CRL_MODE2 GPIO_CRL_MODE2_Msk /*!< MODE2[1:0] bits (Port x mode bits, pin 2) */ 1479 #define GPIO_CRL_MODE2_0 (0x1UL << GPIO_CRL_MODE2_Pos) /*!< 0x00000100 */ 1480 #define GPIO_CRL_MODE2_1 (0x2UL << GPIO_CRL_MODE2_Pos) /*!< 0x00000200 */ 1481 1482 #define GPIO_CRL_MODE3_Pos (12U) 1483 #define GPIO_CRL_MODE3_Msk (0x3UL << GPIO_CRL_MODE3_Pos) /*!< 0x00003000 */ 1484 #define GPIO_CRL_MODE3 GPIO_CRL_MODE3_Msk /*!< MODE3[1:0] bits (Port x mode bits, pin 3) */ 1485 #define GPIO_CRL_MODE3_0 (0x1UL << GPIO_CRL_MODE3_Pos) /*!< 0x00001000 */ 1486 #define GPIO_CRL_MODE3_1 (0x2UL << GPIO_CRL_MODE3_Pos) /*!< 0x00002000 */ 1487 1488 #define GPIO_CRL_MODE4_Pos (16U) 1489 #define GPIO_CRL_MODE4_Msk (0x3UL << GPIO_CRL_MODE4_Pos) /*!< 0x00030000 */ 1490 #define GPIO_CRL_MODE4 GPIO_CRL_MODE4_Msk /*!< MODE4[1:0] bits (Port x mode bits, pin 4) */ 1491 #define GPIO_CRL_MODE4_0 (0x1UL << GPIO_CRL_MODE4_Pos) /*!< 0x00010000 */ 1492 #define GPIO_CRL_MODE4_1 (0x2UL << GPIO_CRL_MODE4_Pos) /*!< 0x00020000 */ 1493 1494 #define GPIO_CRL_MODE5_Pos (20U) 1495 #define GPIO_CRL_MODE5_Msk (0x3UL << GPIO_CRL_MODE5_Pos) /*!< 0x00300000 */ 1496 #define GPIO_CRL_MODE5 GPIO_CRL_MODE5_Msk /*!< MODE5[1:0] bits (Port x mode bits, pin 5) */ 1497 #define GPIO_CRL_MODE5_0 (0x1UL << GPIO_CRL_MODE5_Pos) /*!< 0x00100000 */ 1498 #define GPIO_CRL_MODE5_1 (0x2UL << GPIO_CRL_MODE5_Pos) /*!< 0x00200000 */ 1499 1500 #define GPIO_CRL_MODE6_Pos (24U) 1501 #define GPIO_CRL_MODE6_Msk (0x3UL << GPIO_CRL_MODE6_Pos) /*!< 0x03000000 */ 1502 #define GPIO_CRL_MODE6 GPIO_CRL_MODE6_Msk /*!< MODE6[1:0] bits (Port x mode bits, pin 6) */ 1503 #define GPIO_CRL_MODE6_0 (0x1UL << GPIO_CRL_MODE6_Pos) /*!< 0x01000000 */ 1504 #define GPIO_CRL_MODE6_1 (0x2UL << GPIO_CRL_MODE6_Pos) /*!< 0x02000000 */ 1505 1506 #define GPIO_CRL_MODE7_Pos (28U) 1507 #define GPIO_CRL_MODE7_Msk (0x3UL << GPIO_CRL_MODE7_Pos) /*!< 0x30000000 */ 1508 #define GPIO_CRL_MODE7 GPIO_CRL_MODE7_Msk /*!< MODE7[1:0] bits (Port x mode bits, pin 7) */ 1509 #define GPIO_CRL_MODE7_0 (0x1UL << GPIO_CRL_MODE7_Pos) /*!< 0x10000000 */ 1510 #define GPIO_CRL_MODE7_1 (0x2UL << GPIO_CRL_MODE7_Pos) /*!< 0x20000000 */ 1511 1512 #define GPIO_CRL_CNF_Pos (2U) 1513 #define GPIO_CRL_CNF_Msk (0x33333333UL << GPIO_CRL_CNF_Pos) /*!< 0xCCCCCCCC */ 1514 #define GPIO_CRL_CNF GPIO_CRL_CNF_Msk /*!< Port x configuration bits */ 1515 1516 #define GPIO_CRL_CNF0_Pos (2U) 1517 #define GPIO_CRL_CNF0_Msk (0x3UL << GPIO_CRL_CNF0_Pos) /*!< 0x0000000C */ 1518 #define GPIO_CRL_CNF0 GPIO_CRL_CNF0_Msk /*!< CNF0[1:0] bits (Port x configuration bits, pin 0) */ 1519 #define GPIO_CRL_CNF0_0 (0x1UL << GPIO_CRL_CNF0_Pos) /*!< 0x00000004 */ 1520 #define GPIO_CRL_CNF0_1 (0x2UL << GPIO_CRL_CNF0_Pos) /*!< 0x00000008 */ 1521 1522 #define GPIO_CRL_CNF1_Pos (6U) 1523 #define GPIO_CRL_CNF1_Msk (0x3UL << GPIO_CRL_CNF1_Pos) /*!< 0x000000C0 */ 1524 #define GPIO_CRL_CNF1 GPIO_CRL_CNF1_Msk /*!< CNF1[1:0] bits (Port x configuration bits, pin 1) */ 1525 #define GPIO_CRL_CNF1_0 (0x1UL << GPIO_CRL_CNF1_Pos) /*!< 0x00000040 */ 1526 #define GPIO_CRL_CNF1_1 (0x2UL << GPIO_CRL_CNF1_Pos) /*!< 0x00000080 */ 1527 1528 #define GPIO_CRL_CNF2_Pos (10U) 1529 #define GPIO_CRL_CNF2_Msk (0x3UL << GPIO_CRL_CNF2_Pos) /*!< 0x00000C00 */ 1530 #define GPIO_CRL_CNF2 GPIO_CRL_CNF2_Msk /*!< CNF2[1:0] bits (Port x configuration bits, pin 2) */ 1531 #define GPIO_CRL_CNF2_0 (0x1UL << GPIO_CRL_CNF2_Pos) /*!< 0x00000400 */ 1532 #define GPIO_CRL_CNF2_1 (0x2UL << GPIO_CRL_CNF2_Pos) /*!< 0x00000800 */ 1533 1534 #define GPIO_CRL_CNF3_Pos (14U) 1535 #define GPIO_CRL_CNF3_Msk (0x3UL << GPIO_CRL_CNF3_Pos) /*!< 0x0000C000 */ 1536 #define GPIO_CRL_CNF3 GPIO_CRL_CNF3_Msk /*!< CNF3[1:0] bits (Port x configuration bits, pin 3) */ 1537 #define GPIO_CRL_CNF3_0 (0x1UL << GPIO_CRL_CNF3_Pos) /*!< 0x00004000 */ 1538 #define GPIO_CRL_CNF3_1 (0x2UL << GPIO_CRL_CNF3_Pos) /*!< 0x00008000 */ 1539 1540 #define GPIO_CRL_CNF4_Pos (18U) 1541 #define GPIO_CRL_CNF4_Msk (0x3UL << GPIO_CRL_CNF4_Pos) /*!< 0x000C0000 */ 1542 #define GPIO_CRL_CNF4 GPIO_CRL_CNF4_Msk /*!< CNF4[1:0] bits (Port x configuration bits, pin 4) */ 1543 #define GPIO_CRL_CNF4_0 (0x1UL << GPIO_CRL_CNF4_Pos) /*!< 0x00040000 */ 1544 #define GPIO_CRL_CNF4_1 (0x2UL << GPIO_CRL_CNF4_Pos) /*!< 0x00080000 */ 1545 1546 #define GPIO_CRL_CNF5_Pos (22U) 1547 #define GPIO_CRL_CNF5_Msk (0x3UL << GPIO_CRL_CNF5_Pos) /*!< 0x00C00000 */ 1548 #define GPIO_CRL_CNF5 GPIO_CRL_CNF5_Msk /*!< CNF5[1:0] bits (Port x configuration bits, pin 5) */ 1549 #define GPIO_CRL_CNF5_0 (0x1UL << GPIO_CRL_CNF5_Pos) /*!< 0x00400000 */ 1550 #define GPIO_CRL_CNF5_1 (0x2UL << GPIO_CRL_CNF5_Pos) /*!< 0x00800000 */ 1551 1552 #define GPIO_CRL_CNF6_Pos (26U) 1553 #define GPIO_CRL_CNF6_Msk (0x3UL << GPIO_CRL_CNF6_Pos) /*!< 0x0C000000 */ 1554 #define GPIO_CRL_CNF6 GPIO_CRL_CNF6_Msk /*!< CNF6[1:0] bits (Port x configuration bits, pin 6) */ 1555 #define GPIO_CRL_CNF6_0 (0x1UL << GPIO_CRL_CNF6_Pos) /*!< 0x04000000 */ 1556 #define GPIO_CRL_CNF6_1 (0x2UL << GPIO_CRL_CNF6_Pos) /*!< 0x08000000 */ 1557 1558 #define GPIO_CRL_CNF7_Pos (30U) 1559 #define GPIO_CRL_CNF7_Msk (0x3UL << GPIO_CRL_CNF7_Pos) /*!< 0xC0000000 */ 1560 #define GPIO_CRL_CNF7 GPIO_CRL_CNF7_Msk /*!< CNF7[1:0] bits (Port x configuration bits, pin 7) */ 1561 #define GPIO_CRL_CNF7_0 (0x1UL << GPIO_CRL_CNF7_Pos) /*!< 0x40000000 */ 1562 #define GPIO_CRL_CNF7_1 (0x2UL << GPIO_CRL_CNF7_Pos) /*!< 0x80000000 */ 1563 1564 /******************* Bit definition for GPIO_CRH register *******************/ 1565 #define GPIO_CRH_MODE_Pos (0U) 1566 #define GPIO_CRH_MODE_Msk (0x33333333UL << GPIO_CRH_MODE_Pos) /*!< 0x33333333 */ 1567 #define GPIO_CRH_MODE GPIO_CRH_MODE_Msk /*!< Port x mode bits */ 1568 1569 #define GPIO_CRH_MODE8_Pos (0U) 1570 #define GPIO_CRH_MODE8_Msk (0x3UL << GPIO_CRH_MODE8_Pos) /*!< 0x00000003 */ 1571 #define GPIO_CRH_MODE8 GPIO_CRH_MODE8_Msk /*!< MODE8[1:0] bits (Port x mode bits, pin 8) */ 1572 #define GPIO_CRH_MODE8_0 (0x1UL << GPIO_CRH_MODE8_Pos) /*!< 0x00000001 */ 1573 #define GPIO_CRH_MODE8_1 (0x2UL << GPIO_CRH_MODE8_Pos) /*!< 0x00000002 */ 1574 1575 #define GPIO_CRH_MODE9_Pos (4U) 1576 #define GPIO_CRH_MODE9_Msk (0x3UL << GPIO_CRH_MODE9_Pos) /*!< 0x00000030 */ 1577 #define GPIO_CRH_MODE9 GPIO_CRH_MODE9_Msk /*!< MODE9[1:0] bits (Port x mode bits, pin 9) */ 1578 #define GPIO_CRH_MODE9_0 (0x1UL << GPIO_CRH_MODE9_Pos) /*!< 0x00000010 */ 1579 #define GPIO_CRH_MODE9_1 (0x2UL << GPIO_CRH_MODE9_Pos) /*!< 0x00000020 */ 1580 1581 #define GPIO_CRH_MODE10_Pos (8U) 1582 #define GPIO_CRH_MODE10_Msk (0x3UL << GPIO_CRH_MODE10_Pos) /*!< 0x00000300 */ 1583 #define GPIO_CRH_MODE10 GPIO_CRH_MODE10_Msk /*!< MODE10[1:0] bits (Port x mode bits, pin 10) */ 1584 #define GPIO_CRH_MODE10_0 (0x1UL << GPIO_CRH_MODE10_Pos) /*!< 0x00000100 */ 1585 #define GPIO_CRH_MODE10_1 (0x2UL << GPIO_CRH_MODE10_Pos) /*!< 0x00000200 */ 1586 1587 #define GPIO_CRH_MODE11_Pos (12U) 1588 #define GPIO_CRH_MODE11_Msk (0x3UL << GPIO_CRH_MODE11_Pos) /*!< 0x00003000 */ 1589 #define GPIO_CRH_MODE11 GPIO_CRH_MODE11_Msk /*!< MODE11[1:0] bits (Port x mode bits, pin 11) */ 1590 #define GPIO_CRH_MODE11_0 (0x1UL << GPIO_CRH_MODE11_Pos) /*!< 0x00001000 */ 1591 #define GPIO_CRH_MODE11_1 (0x2UL << GPIO_CRH_MODE11_Pos) /*!< 0x00002000 */ 1592 1593 #define GPIO_CRH_MODE12_Pos (16U) 1594 #define GPIO_CRH_MODE12_Msk (0x3UL << GPIO_CRH_MODE12_Pos) /*!< 0x00030000 */ 1595 #define GPIO_CRH_MODE12 GPIO_CRH_MODE12_Msk /*!< MODE12[1:0] bits (Port x mode bits, pin 12) */ 1596 #define GPIO_CRH_MODE12_0 (0x1UL << GPIO_CRH_MODE12_Pos) /*!< 0x00010000 */ 1597 #define GPIO_CRH_MODE12_1 (0x2UL << GPIO_CRH_MODE12_Pos) /*!< 0x00020000 */ 1598 1599 #define GPIO_CRH_MODE13_Pos (20U) 1600 #define GPIO_CRH_MODE13_Msk (0x3UL << GPIO_CRH_MODE13_Pos) /*!< 0x00300000 */ 1601 #define GPIO_CRH_MODE13 GPIO_CRH_MODE13_Msk /*!< MODE13[1:0] bits (Port x mode bits, pin 13) */ 1602 #define GPIO_CRH_MODE13_0 (0x1UL << GPIO_CRH_MODE13_Pos) /*!< 0x00100000 */ 1603 #define GPIO_CRH_MODE13_1 (0x2UL << GPIO_CRH_MODE13_Pos) /*!< 0x00200000 */ 1604 1605 #define GPIO_CRH_MODE14_Pos (24U) 1606 #define GPIO_CRH_MODE14_Msk (0x3UL << GPIO_CRH_MODE14_Pos) /*!< 0x03000000 */ 1607 #define GPIO_CRH_MODE14 GPIO_CRH_MODE14_Msk /*!< MODE14[1:0] bits (Port x mode bits, pin 14) */ 1608 #define GPIO_CRH_MODE14_0 (0x1UL << GPIO_CRH_MODE14_Pos) /*!< 0x01000000 */ 1609 #define GPIO_CRH_MODE14_1 (0x2UL << GPIO_CRH_MODE14_Pos) /*!< 0x02000000 */ 1610 1611 #define GPIO_CRH_MODE15_Pos (28U) 1612 #define GPIO_CRH_MODE15_Msk (0x3UL << GPIO_CRH_MODE15_Pos) /*!< 0x30000000 */ 1613 #define GPIO_CRH_MODE15 GPIO_CRH_MODE15_Msk /*!< MODE15[1:0] bits (Port x mode bits, pin 15) */ 1614 #define GPIO_CRH_MODE15_0 (0x1UL << GPIO_CRH_MODE15_Pos) /*!< 0x10000000 */ 1615 #define GPIO_CRH_MODE15_1 (0x2UL << GPIO_CRH_MODE15_Pos) /*!< 0x20000000 */ 1616 1617 #define GPIO_CRH_CNF_Pos (2U) 1618 #define GPIO_CRH_CNF_Msk (0x33333333UL << GPIO_CRH_CNF_Pos) /*!< 0xCCCCCCCC */ 1619 #define GPIO_CRH_CNF GPIO_CRH_CNF_Msk /*!< Port x configuration bits */ 1620 1621 #define GPIO_CRH_CNF8_Pos (2U) 1622 #define GPIO_CRH_CNF8_Msk (0x3UL << GPIO_CRH_CNF8_Pos) /*!< 0x0000000C */ 1623 #define GPIO_CRH_CNF8 GPIO_CRH_CNF8_Msk /*!< CNF8[1:0] bits (Port x configuration bits, pin 8) */ 1624 #define GPIO_CRH_CNF8_0 (0x1UL << GPIO_CRH_CNF8_Pos) /*!< 0x00000004 */ 1625 #define GPIO_CRH_CNF8_1 (0x2UL << GPIO_CRH_CNF8_Pos) /*!< 0x00000008 */ 1626 1627 #define GPIO_CRH_CNF9_Pos (6U) 1628 #define GPIO_CRH_CNF9_Msk (0x3UL << GPIO_CRH_CNF9_Pos) /*!< 0x000000C0 */ 1629 #define GPIO_CRH_CNF9 GPIO_CRH_CNF9_Msk /*!< CNF9[1:0] bits (Port x configuration bits, pin 9) */ 1630 #define GPIO_CRH_CNF9_0 (0x1UL << GPIO_CRH_CNF9_Pos) /*!< 0x00000040 */ 1631 #define GPIO_CRH_CNF9_1 (0x2UL << GPIO_CRH_CNF9_Pos) /*!< 0x00000080 */ 1632 1633 #define GPIO_CRH_CNF10_Pos (10U) 1634 #define GPIO_CRH_CNF10_Msk (0x3UL << GPIO_CRH_CNF10_Pos) /*!< 0x00000C00 */ 1635 #define GPIO_CRH_CNF10 GPIO_CRH_CNF10_Msk /*!< CNF10[1:0] bits (Port x configuration bits, pin 10) */ 1636 #define GPIO_CRH_CNF10_0 (0x1UL << GPIO_CRH_CNF10_Pos) /*!< 0x00000400 */ 1637 #define GPIO_CRH_CNF10_1 (0x2UL << GPIO_CRH_CNF10_Pos) /*!< 0x00000800 */ 1638 1639 #define GPIO_CRH_CNF11_Pos (14U) 1640 #define GPIO_CRH_CNF11_Msk (0x3UL << GPIO_CRH_CNF11_Pos) /*!< 0x0000C000 */ 1641 #define GPIO_CRH_CNF11 GPIO_CRH_CNF11_Msk /*!< CNF11[1:0] bits (Port x configuration bits, pin 11) */ 1642 #define GPIO_CRH_CNF11_0 (0x1UL << GPIO_CRH_CNF11_Pos) /*!< 0x00004000 */ 1643 #define GPIO_CRH_CNF11_1 (0x2UL << GPIO_CRH_CNF11_Pos) /*!< 0x00008000 */ 1644 1645 #define GPIO_CRH_CNF12_Pos (18U) 1646 #define GPIO_CRH_CNF12_Msk (0x3UL << GPIO_CRH_CNF12_Pos) /*!< 0x000C0000 */ 1647 #define GPIO_CRH_CNF12 GPIO_CRH_CNF12_Msk /*!< CNF12[1:0] bits (Port x configuration bits, pin 12) */ 1648 #define GPIO_CRH_CNF12_0 (0x1UL << GPIO_CRH_CNF12_Pos) /*!< 0x00040000 */ 1649 #define GPIO_CRH_CNF12_1 (0x2UL << GPIO_CRH_CNF12_Pos) /*!< 0x00080000 */ 1650 1651 #define GPIO_CRH_CNF13_Pos (22U) 1652 #define GPIO_CRH_CNF13_Msk (0x3UL << GPIO_CRH_CNF13_Pos) /*!< 0x00C00000 */ 1653 #define GPIO_CRH_CNF13 GPIO_CRH_CNF13_Msk /*!< CNF13[1:0] bits (Port x configuration bits, pin 13) */ 1654 #define GPIO_CRH_CNF13_0 (0x1UL << GPIO_CRH_CNF13_Pos) /*!< 0x00400000 */ 1655 #define GPIO_CRH_CNF13_1 (0x2UL << GPIO_CRH_CNF13_Pos) /*!< 0x00800000 */ 1656 1657 #define GPIO_CRH_CNF14_Pos (26U) 1658 #define GPIO_CRH_CNF14_Msk (0x3UL << GPIO_CRH_CNF14_Pos) /*!< 0x0C000000 */ 1659 #define GPIO_CRH_CNF14 GPIO_CRH_CNF14_Msk /*!< CNF14[1:0] bits (Port x configuration bits, pin 14) */ 1660 #define GPIO_CRH_CNF14_0 (0x1UL << GPIO_CRH_CNF14_Pos) /*!< 0x04000000 */ 1661 #define GPIO_CRH_CNF14_1 (0x2UL << GPIO_CRH_CNF14_Pos) /*!< 0x08000000 */ 1662 1663 #define GPIO_CRH_CNF15_Pos (30U) 1664 #define GPIO_CRH_CNF15_Msk (0x3UL << GPIO_CRH_CNF15_Pos) /*!< 0xC0000000 */ 1665 #define GPIO_CRH_CNF15 GPIO_CRH_CNF15_Msk /*!< CNF15[1:0] bits (Port x configuration bits, pin 15) */ 1666 #define GPIO_CRH_CNF15_0 (0x1UL << GPIO_CRH_CNF15_Pos) /*!< 0x40000000 */ 1667 #define GPIO_CRH_CNF15_1 (0x2UL << GPIO_CRH_CNF15_Pos) /*!< 0x80000000 */ 1668 1669 /*!<****************** Bit definition for GPIO_IDR register *******************/ 1670 #define GPIO_IDR_IDR0_Pos (0U) 1671 #define GPIO_IDR_IDR0_Msk (0x1UL << GPIO_IDR_IDR0_Pos) /*!< 0x00000001 */ 1672 #define GPIO_IDR_IDR0 GPIO_IDR_IDR0_Msk /*!< Port input data, bit 0 */ 1673 #define GPIO_IDR_IDR1_Pos (1U) 1674 #define GPIO_IDR_IDR1_Msk (0x1UL << GPIO_IDR_IDR1_Pos) /*!< 0x00000002 */ 1675 #define GPIO_IDR_IDR1 GPIO_IDR_IDR1_Msk /*!< Port input data, bit 1 */ 1676 #define GPIO_IDR_IDR2_Pos (2U) 1677 #define GPIO_IDR_IDR2_Msk (0x1UL << GPIO_IDR_IDR2_Pos) /*!< 0x00000004 */ 1678 #define GPIO_IDR_IDR2 GPIO_IDR_IDR2_Msk /*!< Port input data, bit 2 */ 1679 #define GPIO_IDR_IDR3_Pos (3U) 1680 #define GPIO_IDR_IDR3_Msk (0x1UL << GPIO_IDR_IDR3_Pos) /*!< 0x00000008 */ 1681 #define GPIO_IDR_IDR3 GPIO_IDR_IDR3_Msk /*!< Port input data, bit 3 */ 1682 #define GPIO_IDR_IDR4_Pos (4U) 1683 #define GPIO_IDR_IDR4_Msk (0x1UL << GPIO_IDR_IDR4_Pos) /*!< 0x00000010 */ 1684 #define GPIO_IDR_IDR4 GPIO_IDR_IDR4_Msk /*!< Port input data, bit 4 */ 1685 #define GPIO_IDR_IDR5_Pos (5U) 1686 #define GPIO_IDR_IDR5_Msk (0x1UL << GPIO_IDR_IDR5_Pos) /*!< 0x00000020 */ 1687 #define GPIO_IDR_IDR5 GPIO_IDR_IDR5_Msk /*!< Port input data, bit 5 */ 1688 #define GPIO_IDR_IDR6_Pos (6U) 1689 #define GPIO_IDR_IDR6_Msk (0x1UL << GPIO_IDR_IDR6_Pos) /*!< 0x00000040 */ 1690 #define GPIO_IDR_IDR6 GPIO_IDR_IDR6_Msk /*!< Port input data, bit 6 */ 1691 #define GPIO_IDR_IDR7_Pos (7U) 1692 #define GPIO_IDR_IDR7_Msk (0x1UL << GPIO_IDR_IDR7_Pos) /*!< 0x00000080 */ 1693 #define GPIO_IDR_IDR7 GPIO_IDR_IDR7_Msk /*!< Port input data, bit 7 */ 1694 #define GPIO_IDR_IDR8_Pos (8U) 1695 #define GPIO_IDR_IDR8_Msk (0x1UL << GPIO_IDR_IDR8_Pos) /*!< 0x00000100 */ 1696 #define GPIO_IDR_IDR8 GPIO_IDR_IDR8_Msk /*!< Port input data, bit 8 */ 1697 #define GPIO_IDR_IDR9_Pos (9U) 1698 #define GPIO_IDR_IDR9_Msk (0x1UL << GPIO_IDR_IDR9_Pos) /*!< 0x00000200 */ 1699 #define GPIO_IDR_IDR9 GPIO_IDR_IDR9_Msk /*!< Port input data, bit 9 */ 1700 #define GPIO_IDR_IDR10_Pos (10U) 1701 #define GPIO_IDR_IDR10_Msk (0x1UL << GPIO_IDR_IDR10_Pos) /*!< 0x00000400 */ 1702 #define GPIO_IDR_IDR10 GPIO_IDR_IDR10_Msk /*!< Port input data, bit 10 */ 1703 #define GPIO_IDR_IDR11_Pos (11U) 1704 #define GPIO_IDR_IDR11_Msk (0x1UL << GPIO_IDR_IDR11_Pos) /*!< 0x00000800 */ 1705 #define GPIO_IDR_IDR11 GPIO_IDR_IDR11_Msk /*!< Port input data, bit 11 */ 1706 #define GPIO_IDR_IDR12_Pos (12U) 1707 #define GPIO_IDR_IDR12_Msk (0x1UL << GPIO_IDR_IDR12_Pos) /*!< 0x00001000 */ 1708 #define GPIO_IDR_IDR12 GPIO_IDR_IDR12_Msk /*!< Port input data, bit 12 */ 1709 #define GPIO_IDR_IDR13_Pos (13U) 1710 #define GPIO_IDR_IDR13_Msk (0x1UL << GPIO_IDR_IDR13_Pos) /*!< 0x00002000 */ 1711 #define GPIO_IDR_IDR13 GPIO_IDR_IDR13_Msk /*!< Port input data, bit 13 */ 1712 #define GPIO_IDR_IDR14_Pos (14U) 1713 #define GPIO_IDR_IDR14_Msk (0x1UL << GPIO_IDR_IDR14_Pos) /*!< 0x00004000 */ 1714 #define GPIO_IDR_IDR14 GPIO_IDR_IDR14_Msk /*!< Port input data, bit 14 */ 1715 #define GPIO_IDR_IDR15_Pos (15U) 1716 #define GPIO_IDR_IDR15_Msk (0x1UL << GPIO_IDR_IDR15_Pos) /*!< 0x00008000 */ 1717 #define GPIO_IDR_IDR15 GPIO_IDR_IDR15_Msk /*!< Port input data, bit 15 */ 1718 1719 /******************* Bit definition for GPIO_ODR register *******************/ 1720 #define GPIO_ODR_ODR0_Pos (0U) 1721 #define GPIO_ODR_ODR0_Msk (0x1UL << GPIO_ODR_ODR0_Pos) /*!< 0x00000001 */ 1722 #define GPIO_ODR_ODR0 GPIO_ODR_ODR0_Msk /*!< Port output data, bit 0 */ 1723 #define GPIO_ODR_ODR1_Pos (1U) 1724 #define GPIO_ODR_ODR1_Msk (0x1UL << GPIO_ODR_ODR1_Pos) /*!< 0x00000002 */ 1725 #define GPIO_ODR_ODR1 GPIO_ODR_ODR1_Msk /*!< Port output data, bit 1 */ 1726 #define GPIO_ODR_ODR2_Pos (2U) 1727 #define GPIO_ODR_ODR2_Msk (0x1UL << GPIO_ODR_ODR2_Pos) /*!< 0x00000004 */ 1728 #define GPIO_ODR_ODR2 GPIO_ODR_ODR2_Msk /*!< Port output data, bit 2 */ 1729 #define GPIO_ODR_ODR3_Pos (3U) 1730 #define GPIO_ODR_ODR3_Msk (0x1UL << GPIO_ODR_ODR3_Pos) /*!< 0x00000008 */ 1731 #define GPIO_ODR_ODR3 GPIO_ODR_ODR3_Msk /*!< Port output data, bit 3 */ 1732 #define GPIO_ODR_ODR4_Pos (4U) 1733 #define GPIO_ODR_ODR4_Msk (0x1UL << GPIO_ODR_ODR4_Pos) /*!< 0x00000010 */ 1734 #define GPIO_ODR_ODR4 GPIO_ODR_ODR4_Msk /*!< Port output data, bit 4 */ 1735 #define GPIO_ODR_ODR5_Pos (5U) 1736 #define GPIO_ODR_ODR5_Msk (0x1UL << GPIO_ODR_ODR5_Pos) /*!< 0x00000020 */ 1737 #define GPIO_ODR_ODR5 GPIO_ODR_ODR5_Msk /*!< Port output data, bit 5 */ 1738 #define GPIO_ODR_ODR6_Pos (6U) 1739 #define GPIO_ODR_ODR6_Msk (0x1UL << GPIO_ODR_ODR6_Pos) /*!< 0x00000040 */ 1740 #define GPIO_ODR_ODR6 GPIO_ODR_ODR6_Msk /*!< Port output data, bit 6 */ 1741 #define GPIO_ODR_ODR7_Pos (7U) 1742 #define GPIO_ODR_ODR7_Msk (0x1UL << GPIO_ODR_ODR7_Pos) /*!< 0x00000080 */ 1743 #define GPIO_ODR_ODR7 GPIO_ODR_ODR7_Msk /*!< Port output data, bit 7 */ 1744 #define GPIO_ODR_ODR8_Pos (8U) 1745 #define GPIO_ODR_ODR8_Msk (0x1UL << GPIO_ODR_ODR8_Pos) /*!< 0x00000100 */ 1746 #define GPIO_ODR_ODR8 GPIO_ODR_ODR8_Msk /*!< Port output data, bit 8 */ 1747 #define GPIO_ODR_ODR9_Pos (9U) 1748 #define GPIO_ODR_ODR9_Msk (0x1UL << GPIO_ODR_ODR9_Pos) /*!< 0x00000200 */ 1749 #define GPIO_ODR_ODR9 GPIO_ODR_ODR9_Msk /*!< Port output data, bit 9 */ 1750 #define GPIO_ODR_ODR10_Pos (10U) 1751 #define GPIO_ODR_ODR10_Msk (0x1UL << GPIO_ODR_ODR10_Pos) /*!< 0x00000400 */ 1752 #define GPIO_ODR_ODR10 GPIO_ODR_ODR10_Msk /*!< Port output data, bit 10 */ 1753 #define GPIO_ODR_ODR11_Pos (11U) 1754 #define GPIO_ODR_ODR11_Msk (0x1UL << GPIO_ODR_ODR11_Pos) /*!< 0x00000800 */ 1755 #define GPIO_ODR_ODR11 GPIO_ODR_ODR11_Msk /*!< Port output data, bit 11 */ 1756 #define GPIO_ODR_ODR12_Pos (12U) 1757 #define GPIO_ODR_ODR12_Msk (0x1UL << GPIO_ODR_ODR12_Pos) /*!< 0x00001000 */ 1758 #define GPIO_ODR_ODR12 GPIO_ODR_ODR12_Msk /*!< Port output data, bit 12 */ 1759 #define GPIO_ODR_ODR13_Pos (13U) 1760 #define GPIO_ODR_ODR13_Msk (0x1UL << GPIO_ODR_ODR13_Pos) /*!< 0x00002000 */ 1761 #define GPIO_ODR_ODR13 GPIO_ODR_ODR13_Msk /*!< Port output data, bit 13 */ 1762 #define GPIO_ODR_ODR14_Pos (14U) 1763 #define GPIO_ODR_ODR14_Msk (0x1UL << GPIO_ODR_ODR14_Pos) /*!< 0x00004000 */ 1764 #define GPIO_ODR_ODR14 GPIO_ODR_ODR14_Msk /*!< Port output data, bit 14 */ 1765 #define GPIO_ODR_ODR15_Pos (15U) 1766 #define GPIO_ODR_ODR15_Msk (0x1UL << GPIO_ODR_ODR15_Pos) /*!< 0x00008000 */ 1767 #define GPIO_ODR_ODR15 GPIO_ODR_ODR15_Msk /*!< Port output data, bit 15 */ 1768 1769 /****************** Bit definition for GPIO_BSRR register *******************/ 1770 #define GPIO_BSRR_BS0_Pos (0U) 1771 #define GPIO_BSRR_BS0_Msk (0x1UL << GPIO_BSRR_BS0_Pos) /*!< 0x00000001 */ 1772 #define GPIO_BSRR_BS0 GPIO_BSRR_BS0_Msk /*!< Port x Set bit 0 */ 1773 #define GPIO_BSRR_BS1_Pos (1U) 1774 #define GPIO_BSRR_BS1_Msk (0x1UL << GPIO_BSRR_BS1_Pos) /*!< 0x00000002 */ 1775 #define GPIO_BSRR_BS1 GPIO_BSRR_BS1_Msk /*!< Port x Set bit 1 */ 1776 #define GPIO_BSRR_BS2_Pos (2U) 1777 #define GPIO_BSRR_BS2_Msk (0x1UL << GPIO_BSRR_BS2_Pos) /*!< 0x00000004 */ 1778 #define GPIO_BSRR_BS2 GPIO_BSRR_BS2_Msk /*!< Port x Set bit 2 */ 1779 #define GPIO_BSRR_BS3_Pos (3U) 1780 #define GPIO_BSRR_BS3_Msk (0x1UL << GPIO_BSRR_BS3_Pos) /*!< 0x00000008 */ 1781 #define GPIO_BSRR_BS3 GPIO_BSRR_BS3_Msk /*!< Port x Set bit 3 */ 1782 #define GPIO_BSRR_BS4_Pos (4U) 1783 #define GPIO_BSRR_BS4_Msk (0x1UL << GPIO_BSRR_BS4_Pos) /*!< 0x00000010 */ 1784 #define GPIO_BSRR_BS4 GPIO_BSRR_BS4_Msk /*!< Port x Set bit 4 */ 1785 #define GPIO_BSRR_BS5_Pos (5U) 1786 #define GPIO_BSRR_BS5_Msk (0x1UL << GPIO_BSRR_BS5_Pos) /*!< 0x00000020 */ 1787 #define GPIO_BSRR_BS5 GPIO_BSRR_BS5_Msk /*!< Port x Set bit 5 */ 1788 #define GPIO_BSRR_BS6_Pos (6U) 1789 #define GPIO_BSRR_BS6_Msk (0x1UL << GPIO_BSRR_BS6_Pos) /*!< 0x00000040 */ 1790 #define GPIO_BSRR_BS6 GPIO_BSRR_BS6_Msk /*!< Port x Set bit 6 */ 1791 #define GPIO_BSRR_BS7_Pos (7U) 1792 #define GPIO_BSRR_BS7_Msk (0x1UL << GPIO_BSRR_BS7_Pos) /*!< 0x00000080 */ 1793 #define GPIO_BSRR_BS7 GPIO_BSRR_BS7_Msk /*!< Port x Set bit 7 */ 1794 #define GPIO_BSRR_BS8_Pos (8U) 1795 #define GPIO_BSRR_BS8_Msk (0x1UL << GPIO_BSRR_BS8_Pos) /*!< 0x00000100 */ 1796 #define GPIO_BSRR_BS8 GPIO_BSRR_BS8_Msk /*!< Port x Set bit 8 */ 1797 #define GPIO_BSRR_BS9_Pos (9U) 1798 #define GPIO_BSRR_BS9_Msk (0x1UL << GPIO_BSRR_BS9_Pos) /*!< 0x00000200 */ 1799 #define GPIO_BSRR_BS9 GPIO_BSRR_BS9_Msk /*!< Port x Set bit 9 */ 1800 #define GPIO_BSRR_BS10_Pos (10U) 1801 #define GPIO_BSRR_BS10_Msk (0x1UL << GPIO_BSRR_BS10_Pos) /*!< 0x00000400 */ 1802 #define GPIO_BSRR_BS10 GPIO_BSRR_BS10_Msk /*!< Port x Set bit 10 */ 1803 #define GPIO_BSRR_BS11_Pos (11U) 1804 #define GPIO_BSRR_BS11_Msk (0x1UL << GPIO_BSRR_BS11_Pos) /*!< 0x00000800 */ 1805 #define GPIO_BSRR_BS11 GPIO_BSRR_BS11_Msk /*!< Port x Set bit 11 */ 1806 #define GPIO_BSRR_BS12_Pos (12U) 1807 #define GPIO_BSRR_BS12_Msk (0x1UL << GPIO_BSRR_BS12_Pos) /*!< 0x00001000 */ 1808 #define GPIO_BSRR_BS12 GPIO_BSRR_BS12_Msk /*!< Port x Set bit 12 */ 1809 #define GPIO_BSRR_BS13_Pos (13U) 1810 #define GPIO_BSRR_BS13_Msk (0x1UL << GPIO_BSRR_BS13_Pos) /*!< 0x00002000 */ 1811 #define GPIO_BSRR_BS13 GPIO_BSRR_BS13_Msk /*!< Port x Set bit 13 */ 1812 #define GPIO_BSRR_BS14_Pos (14U) 1813 #define GPIO_BSRR_BS14_Msk (0x1UL << GPIO_BSRR_BS14_Pos) /*!< 0x00004000 */ 1814 #define GPIO_BSRR_BS14 GPIO_BSRR_BS14_Msk /*!< Port x Set bit 14 */ 1815 #define GPIO_BSRR_BS15_Pos (15U) 1816 #define GPIO_BSRR_BS15_Msk (0x1UL << GPIO_BSRR_BS15_Pos) /*!< 0x00008000 */ 1817 #define GPIO_BSRR_BS15 GPIO_BSRR_BS15_Msk /*!< Port x Set bit 15 */ 1818 1819 #define GPIO_BSRR_BR0_Pos (16U) 1820 #define GPIO_BSRR_BR0_Msk (0x1UL << GPIO_BSRR_BR0_Pos) /*!< 0x00010000 */ 1821 #define GPIO_BSRR_BR0 GPIO_BSRR_BR0_Msk /*!< Port x Reset bit 0 */ 1822 #define GPIO_BSRR_BR1_Pos (17U) 1823 #define GPIO_BSRR_BR1_Msk (0x1UL << GPIO_BSRR_BR1_Pos) /*!< 0x00020000 */ 1824 #define GPIO_BSRR_BR1 GPIO_BSRR_BR1_Msk /*!< Port x Reset bit 1 */ 1825 #define GPIO_BSRR_BR2_Pos (18U) 1826 #define GPIO_BSRR_BR2_Msk (0x1UL << GPIO_BSRR_BR2_Pos) /*!< 0x00040000 */ 1827 #define GPIO_BSRR_BR2 GPIO_BSRR_BR2_Msk /*!< Port x Reset bit 2 */ 1828 #define GPIO_BSRR_BR3_Pos (19U) 1829 #define GPIO_BSRR_BR3_Msk (0x1UL << GPIO_BSRR_BR3_Pos) /*!< 0x00080000 */ 1830 #define GPIO_BSRR_BR3 GPIO_BSRR_BR3_Msk /*!< Port x Reset bit 3 */ 1831 #define GPIO_BSRR_BR4_Pos (20U) 1832 #define GPIO_BSRR_BR4_Msk (0x1UL << GPIO_BSRR_BR4_Pos) /*!< 0x00100000 */ 1833 #define GPIO_BSRR_BR4 GPIO_BSRR_BR4_Msk /*!< Port x Reset bit 4 */ 1834 #define GPIO_BSRR_BR5_Pos (21U) 1835 #define GPIO_BSRR_BR5_Msk (0x1UL << GPIO_BSRR_BR5_Pos) /*!< 0x00200000 */ 1836 #define GPIO_BSRR_BR5 GPIO_BSRR_BR5_Msk /*!< Port x Reset bit 5 */ 1837 #define GPIO_BSRR_BR6_Pos (22U) 1838 #define GPIO_BSRR_BR6_Msk (0x1UL << GPIO_BSRR_BR6_Pos) /*!< 0x00400000 */ 1839 #define GPIO_BSRR_BR6 GPIO_BSRR_BR6_Msk /*!< Port x Reset bit 6 */ 1840 #define GPIO_BSRR_BR7_Pos (23U) 1841 #define GPIO_BSRR_BR7_Msk (0x1UL << GPIO_BSRR_BR7_Pos) /*!< 0x00800000 */ 1842 #define GPIO_BSRR_BR7 GPIO_BSRR_BR7_Msk /*!< Port x Reset bit 7 */ 1843 #define GPIO_BSRR_BR8_Pos (24U) 1844 #define GPIO_BSRR_BR8_Msk (0x1UL << GPIO_BSRR_BR8_Pos) /*!< 0x01000000 */ 1845 #define GPIO_BSRR_BR8 GPIO_BSRR_BR8_Msk /*!< Port x Reset bit 8 */ 1846 #define GPIO_BSRR_BR9_Pos (25U) 1847 #define GPIO_BSRR_BR9_Msk (0x1UL << GPIO_BSRR_BR9_Pos) /*!< 0x02000000 */ 1848 #define GPIO_BSRR_BR9 GPIO_BSRR_BR9_Msk /*!< Port x Reset bit 9 */ 1849 #define GPIO_BSRR_BR10_Pos (26U) 1850 #define GPIO_BSRR_BR10_Msk (0x1UL << GPIO_BSRR_BR10_Pos) /*!< 0x04000000 */ 1851 #define GPIO_BSRR_BR10 GPIO_BSRR_BR10_Msk /*!< Port x Reset bit 10 */ 1852 #define GPIO_BSRR_BR11_Pos (27U) 1853 #define GPIO_BSRR_BR11_Msk (0x1UL << GPIO_BSRR_BR11_Pos) /*!< 0x08000000 */ 1854 #define GPIO_BSRR_BR11 GPIO_BSRR_BR11_Msk /*!< Port x Reset bit 11 */ 1855 #define GPIO_BSRR_BR12_Pos (28U) 1856 #define GPIO_BSRR_BR12_Msk (0x1UL << GPIO_BSRR_BR12_Pos) /*!< 0x10000000 */ 1857 #define GPIO_BSRR_BR12 GPIO_BSRR_BR12_Msk /*!< Port x Reset bit 12 */ 1858 #define GPIO_BSRR_BR13_Pos (29U) 1859 #define GPIO_BSRR_BR13_Msk (0x1UL << GPIO_BSRR_BR13_Pos) /*!< 0x20000000 */ 1860 #define GPIO_BSRR_BR13 GPIO_BSRR_BR13_Msk /*!< Port x Reset bit 13 */ 1861 #define GPIO_BSRR_BR14_Pos (30U) 1862 #define GPIO_BSRR_BR14_Msk (0x1UL << GPIO_BSRR_BR14_Pos) /*!< 0x40000000 */ 1863 #define GPIO_BSRR_BR14 GPIO_BSRR_BR14_Msk /*!< Port x Reset bit 14 */ 1864 #define GPIO_BSRR_BR15_Pos (31U) 1865 #define GPIO_BSRR_BR15_Msk (0x1UL << GPIO_BSRR_BR15_Pos) /*!< 0x80000000 */ 1866 #define GPIO_BSRR_BR15 GPIO_BSRR_BR15_Msk /*!< Port x Reset bit 15 */ 1867 1868 /******************* Bit definition for GPIO_BRR register *******************/ 1869 #define GPIO_BRR_BR0_Pos (0U) 1870 #define GPIO_BRR_BR0_Msk (0x1UL << GPIO_BRR_BR0_Pos) /*!< 0x00000001 */ 1871 #define GPIO_BRR_BR0 GPIO_BRR_BR0_Msk /*!< Port x Reset bit 0 */ 1872 #define GPIO_BRR_BR1_Pos (1U) 1873 #define GPIO_BRR_BR1_Msk (0x1UL << GPIO_BRR_BR1_Pos) /*!< 0x00000002 */ 1874 #define GPIO_BRR_BR1 GPIO_BRR_BR1_Msk /*!< Port x Reset bit 1 */ 1875 #define GPIO_BRR_BR2_Pos (2U) 1876 #define GPIO_BRR_BR2_Msk (0x1UL << GPIO_BRR_BR2_Pos) /*!< 0x00000004 */ 1877 #define GPIO_BRR_BR2 GPIO_BRR_BR2_Msk /*!< Port x Reset bit 2 */ 1878 #define GPIO_BRR_BR3_Pos (3U) 1879 #define GPIO_BRR_BR3_Msk (0x1UL << GPIO_BRR_BR3_Pos) /*!< 0x00000008 */ 1880 #define GPIO_BRR_BR3 GPIO_BRR_BR3_Msk /*!< Port x Reset bit 3 */ 1881 #define GPIO_BRR_BR4_Pos (4U) 1882 #define GPIO_BRR_BR4_Msk (0x1UL << GPIO_BRR_BR4_Pos) /*!< 0x00000010 */ 1883 #define GPIO_BRR_BR4 GPIO_BRR_BR4_Msk /*!< Port x Reset bit 4 */ 1884 #define GPIO_BRR_BR5_Pos (5U) 1885 #define GPIO_BRR_BR5_Msk (0x1UL << GPIO_BRR_BR5_Pos) /*!< 0x00000020 */ 1886 #define GPIO_BRR_BR5 GPIO_BRR_BR5_Msk /*!< Port x Reset bit 5 */ 1887 #define GPIO_BRR_BR6_Pos (6U) 1888 #define GPIO_BRR_BR6_Msk (0x1UL << GPIO_BRR_BR6_Pos) /*!< 0x00000040 */ 1889 #define GPIO_BRR_BR6 GPIO_BRR_BR6_Msk /*!< Port x Reset bit 6 */ 1890 #define GPIO_BRR_BR7_Pos (7U) 1891 #define GPIO_BRR_BR7_Msk (0x1UL << GPIO_BRR_BR7_Pos) /*!< 0x00000080 */ 1892 #define GPIO_BRR_BR7 GPIO_BRR_BR7_Msk /*!< Port x Reset bit 7 */ 1893 #define GPIO_BRR_BR8_Pos (8U) 1894 #define GPIO_BRR_BR8_Msk (0x1UL << GPIO_BRR_BR8_Pos) /*!< 0x00000100 */ 1895 #define GPIO_BRR_BR8 GPIO_BRR_BR8_Msk /*!< Port x Reset bit 8 */ 1896 #define GPIO_BRR_BR9_Pos (9U) 1897 #define GPIO_BRR_BR9_Msk (0x1UL << GPIO_BRR_BR9_Pos) /*!< 0x00000200 */ 1898 #define GPIO_BRR_BR9 GPIO_BRR_BR9_Msk /*!< Port x Reset bit 9 */ 1899 #define GPIO_BRR_BR10_Pos (10U) 1900 #define GPIO_BRR_BR10_Msk (0x1UL << GPIO_BRR_BR10_Pos) /*!< 0x00000400 */ 1901 #define GPIO_BRR_BR10 GPIO_BRR_BR10_Msk /*!< Port x Reset bit 10 */ 1902 #define GPIO_BRR_BR11_Pos (11U) 1903 #define GPIO_BRR_BR11_Msk (0x1UL << GPIO_BRR_BR11_Pos) /*!< 0x00000800 */ 1904 #define GPIO_BRR_BR11 GPIO_BRR_BR11_Msk /*!< Port x Reset bit 11 */ 1905 #define GPIO_BRR_BR12_Pos (12U) 1906 #define GPIO_BRR_BR12_Msk (0x1UL << GPIO_BRR_BR12_Pos) /*!< 0x00001000 */ 1907 #define GPIO_BRR_BR12 GPIO_BRR_BR12_Msk /*!< Port x Reset bit 12 */ 1908 #define GPIO_BRR_BR13_Pos (13U) 1909 #define GPIO_BRR_BR13_Msk (0x1UL << GPIO_BRR_BR13_Pos) /*!< 0x00002000 */ 1910 #define GPIO_BRR_BR13 GPIO_BRR_BR13_Msk /*!< Port x Reset bit 13 */ 1911 #define GPIO_BRR_BR14_Pos (14U) 1912 #define GPIO_BRR_BR14_Msk (0x1UL << GPIO_BRR_BR14_Pos) /*!< 0x00004000 */ 1913 #define GPIO_BRR_BR14 GPIO_BRR_BR14_Msk /*!< Port x Reset bit 14 */ 1914 #define GPIO_BRR_BR15_Pos (15U) 1915 #define GPIO_BRR_BR15_Msk (0x1UL << GPIO_BRR_BR15_Pos) /*!< 0x00008000 */ 1916 #define GPIO_BRR_BR15 GPIO_BRR_BR15_Msk /*!< Port x Reset bit 15 */ 1917 1918 /****************** Bit definition for GPIO_LCKR register *******************/ 1919 #define GPIO_LCKR_LCK0_Pos (0U) 1920 #define GPIO_LCKR_LCK0_Msk (0x1UL << GPIO_LCKR_LCK0_Pos) /*!< 0x00000001 */ 1921 #define GPIO_LCKR_LCK0 GPIO_LCKR_LCK0_Msk /*!< Port x Lock bit 0 */ 1922 #define GPIO_LCKR_LCK1_Pos (1U) 1923 #define GPIO_LCKR_LCK1_Msk (0x1UL << GPIO_LCKR_LCK1_Pos) /*!< 0x00000002 */ 1924 #define GPIO_LCKR_LCK1 GPIO_LCKR_LCK1_Msk /*!< Port x Lock bit 1 */ 1925 #define GPIO_LCKR_LCK2_Pos (2U) 1926 #define GPIO_LCKR_LCK2_Msk (0x1UL << GPIO_LCKR_LCK2_Pos) /*!< 0x00000004 */ 1927 #define GPIO_LCKR_LCK2 GPIO_LCKR_LCK2_Msk /*!< Port x Lock bit 2 */ 1928 #define GPIO_LCKR_LCK3_Pos (3U) 1929 #define GPIO_LCKR_LCK3_Msk (0x1UL << GPIO_LCKR_LCK3_Pos) /*!< 0x00000008 */ 1930 #define GPIO_LCKR_LCK3 GPIO_LCKR_LCK3_Msk /*!< Port x Lock bit 3 */ 1931 #define GPIO_LCKR_LCK4_Pos (4U) 1932 #define GPIO_LCKR_LCK4_Msk (0x1UL << GPIO_LCKR_LCK4_Pos) /*!< 0x00000010 */ 1933 #define GPIO_LCKR_LCK4 GPIO_LCKR_LCK4_Msk /*!< Port x Lock bit 4 */ 1934 #define GPIO_LCKR_LCK5_Pos (5U) 1935 #define GPIO_LCKR_LCK5_Msk (0x1UL << GPIO_LCKR_LCK5_Pos) /*!< 0x00000020 */ 1936 #define GPIO_LCKR_LCK5 GPIO_LCKR_LCK5_Msk /*!< Port x Lock bit 5 */ 1937 #define GPIO_LCKR_LCK6_Pos (6U) 1938 #define GPIO_LCKR_LCK6_Msk (0x1UL << GPIO_LCKR_LCK6_Pos) /*!< 0x00000040 */ 1939 #define GPIO_LCKR_LCK6 GPIO_LCKR_LCK6_Msk /*!< Port x Lock bit 6 */ 1940 #define GPIO_LCKR_LCK7_Pos (7U) 1941 #define GPIO_LCKR_LCK7_Msk (0x1UL << GPIO_LCKR_LCK7_Pos) /*!< 0x00000080 */ 1942 #define GPIO_LCKR_LCK7 GPIO_LCKR_LCK7_Msk /*!< Port x Lock bit 7 */ 1943 #define GPIO_LCKR_LCK8_Pos (8U) 1944 #define GPIO_LCKR_LCK8_Msk (0x1UL << GPIO_LCKR_LCK8_Pos) /*!< 0x00000100 */ 1945 #define GPIO_LCKR_LCK8 GPIO_LCKR_LCK8_Msk /*!< Port x Lock bit 8 */ 1946 #define GPIO_LCKR_LCK9_Pos (9U) 1947 #define GPIO_LCKR_LCK9_Msk (0x1UL << GPIO_LCKR_LCK9_Pos) /*!< 0x00000200 */ 1948 #define GPIO_LCKR_LCK9 GPIO_LCKR_LCK9_Msk /*!< Port x Lock bit 9 */ 1949 #define GPIO_LCKR_LCK10_Pos (10U) 1950 #define GPIO_LCKR_LCK10_Msk (0x1UL << GPIO_LCKR_LCK10_Pos) /*!< 0x00000400 */ 1951 #define GPIO_LCKR_LCK10 GPIO_LCKR_LCK10_Msk /*!< Port x Lock bit 10 */ 1952 #define GPIO_LCKR_LCK11_Pos (11U) 1953 #define GPIO_LCKR_LCK11_Msk (0x1UL << GPIO_LCKR_LCK11_Pos) /*!< 0x00000800 */ 1954 #define GPIO_LCKR_LCK11 GPIO_LCKR_LCK11_Msk /*!< Port x Lock bit 11 */ 1955 #define GPIO_LCKR_LCK12_Pos (12U) 1956 #define GPIO_LCKR_LCK12_Msk (0x1UL << GPIO_LCKR_LCK12_Pos) /*!< 0x00001000 */ 1957 #define GPIO_LCKR_LCK12 GPIO_LCKR_LCK12_Msk /*!< Port x Lock bit 12 */ 1958 #define GPIO_LCKR_LCK13_Pos (13U) 1959 #define GPIO_LCKR_LCK13_Msk (0x1UL << GPIO_LCKR_LCK13_Pos) /*!< 0x00002000 */ 1960 #define GPIO_LCKR_LCK13 GPIO_LCKR_LCK13_Msk /*!< Port x Lock bit 13 */ 1961 #define GPIO_LCKR_LCK14_Pos (14U) 1962 #define GPIO_LCKR_LCK14_Msk (0x1UL << GPIO_LCKR_LCK14_Pos) /*!< 0x00004000 */ 1963 #define GPIO_LCKR_LCK14 GPIO_LCKR_LCK14_Msk /*!< Port x Lock bit 14 */ 1964 #define GPIO_LCKR_LCK15_Pos (15U) 1965 #define GPIO_LCKR_LCK15_Msk (0x1UL << GPIO_LCKR_LCK15_Pos) /*!< 0x00008000 */ 1966 #define GPIO_LCKR_LCK15 GPIO_LCKR_LCK15_Msk /*!< Port x Lock bit 15 */ 1967 #define GPIO_LCKR_LCKK_Pos (16U) 1968 #define GPIO_LCKR_LCKK_Msk (0x1UL << GPIO_LCKR_LCKK_Pos) /*!< 0x00010000 */ 1969 #define GPIO_LCKR_LCKK GPIO_LCKR_LCKK_Msk /*!< Lock key */ 1970 1971 /*----------------------------------------------------------------------------*/ 1972 1973 /****************** Bit definition for AFIO_EVCR register *******************/ 1974 #define AFIO_EVCR_PIN_Pos (0U) 1975 #define AFIO_EVCR_PIN_Msk (0xFUL << AFIO_EVCR_PIN_Pos) /*!< 0x0000000F */ 1976 #define AFIO_EVCR_PIN AFIO_EVCR_PIN_Msk /*!< PIN[3:0] bits (Pin selection) */ 1977 #define AFIO_EVCR_PIN_0 (0x1UL << AFIO_EVCR_PIN_Pos) /*!< 0x00000001 */ 1978 #define AFIO_EVCR_PIN_1 (0x2UL << AFIO_EVCR_PIN_Pos) /*!< 0x00000002 */ 1979 #define AFIO_EVCR_PIN_2 (0x4UL << AFIO_EVCR_PIN_Pos) /*!< 0x00000004 */ 1980 #define AFIO_EVCR_PIN_3 (0x8UL << AFIO_EVCR_PIN_Pos) /*!< 0x00000008 */ 1981 1982 /*!< PIN configuration */ 1983 #define AFIO_EVCR_PIN_PX0 0x00000000U /*!< Pin 0 selected */ 1984 #define AFIO_EVCR_PIN_PX1_Pos (0U) 1985 #define AFIO_EVCR_PIN_PX1_Msk (0x1UL << AFIO_EVCR_PIN_PX1_Pos) /*!< 0x00000001 */ 1986 #define AFIO_EVCR_PIN_PX1 AFIO_EVCR_PIN_PX1_Msk /*!< Pin 1 selected */ 1987 #define AFIO_EVCR_PIN_PX2_Pos (1U) 1988 #define AFIO_EVCR_PIN_PX2_Msk (0x1UL << AFIO_EVCR_PIN_PX2_Pos) /*!< 0x00000002 */ 1989 #define AFIO_EVCR_PIN_PX2 AFIO_EVCR_PIN_PX2_Msk /*!< Pin 2 selected */ 1990 #define AFIO_EVCR_PIN_PX3_Pos (0U) 1991 #define AFIO_EVCR_PIN_PX3_Msk (0x3UL << AFIO_EVCR_PIN_PX3_Pos) /*!< 0x00000003 */ 1992 #define AFIO_EVCR_PIN_PX3 AFIO_EVCR_PIN_PX3_Msk /*!< Pin 3 selected */ 1993 #define AFIO_EVCR_PIN_PX4_Pos (2U) 1994 #define AFIO_EVCR_PIN_PX4_Msk (0x1UL << AFIO_EVCR_PIN_PX4_Pos) /*!< 0x00000004 */ 1995 #define AFIO_EVCR_PIN_PX4 AFIO_EVCR_PIN_PX4_Msk /*!< Pin 4 selected */ 1996 #define AFIO_EVCR_PIN_PX5_Pos (0U) 1997 #define AFIO_EVCR_PIN_PX5_Msk (0x5UL << AFIO_EVCR_PIN_PX5_Pos) /*!< 0x00000005 */ 1998 #define AFIO_EVCR_PIN_PX5 AFIO_EVCR_PIN_PX5_Msk /*!< Pin 5 selected */ 1999 #define AFIO_EVCR_PIN_PX6_Pos (1U) 2000 #define AFIO_EVCR_PIN_PX6_Msk (0x3UL << AFIO_EVCR_PIN_PX6_Pos) /*!< 0x00000006 */ 2001 #define AFIO_EVCR_PIN_PX6 AFIO_EVCR_PIN_PX6_Msk /*!< Pin 6 selected */ 2002 #define AFIO_EVCR_PIN_PX7_Pos (0U) 2003 #define AFIO_EVCR_PIN_PX7_Msk (0x7UL << AFIO_EVCR_PIN_PX7_Pos) /*!< 0x00000007 */ 2004 #define AFIO_EVCR_PIN_PX7 AFIO_EVCR_PIN_PX7_Msk /*!< Pin 7 selected */ 2005 #define AFIO_EVCR_PIN_PX8_Pos (3U) 2006 #define AFIO_EVCR_PIN_PX8_Msk (0x1UL << AFIO_EVCR_PIN_PX8_Pos) /*!< 0x00000008 */ 2007 #define AFIO_EVCR_PIN_PX8 AFIO_EVCR_PIN_PX8_Msk /*!< Pin 8 selected */ 2008 #define AFIO_EVCR_PIN_PX9_Pos (0U) 2009 #define AFIO_EVCR_PIN_PX9_Msk (0x9UL << AFIO_EVCR_PIN_PX9_Pos) /*!< 0x00000009 */ 2010 #define AFIO_EVCR_PIN_PX9 AFIO_EVCR_PIN_PX9_Msk /*!< Pin 9 selected */ 2011 #define AFIO_EVCR_PIN_PX10_Pos (1U) 2012 #define AFIO_EVCR_PIN_PX10_Msk (0x5UL << AFIO_EVCR_PIN_PX10_Pos) /*!< 0x0000000A */ 2013 #define AFIO_EVCR_PIN_PX10 AFIO_EVCR_PIN_PX10_Msk /*!< Pin 10 selected */ 2014 #define AFIO_EVCR_PIN_PX11_Pos (0U) 2015 #define AFIO_EVCR_PIN_PX11_Msk (0xBUL << AFIO_EVCR_PIN_PX11_Pos) /*!< 0x0000000B */ 2016 #define AFIO_EVCR_PIN_PX11 AFIO_EVCR_PIN_PX11_Msk /*!< Pin 11 selected */ 2017 #define AFIO_EVCR_PIN_PX12_Pos (2U) 2018 #define AFIO_EVCR_PIN_PX12_Msk (0x3UL << AFIO_EVCR_PIN_PX12_Pos) /*!< 0x0000000C */ 2019 #define AFIO_EVCR_PIN_PX12 AFIO_EVCR_PIN_PX12_Msk /*!< Pin 12 selected */ 2020 #define AFIO_EVCR_PIN_PX13_Pos (0U) 2021 #define AFIO_EVCR_PIN_PX13_Msk (0xDUL << AFIO_EVCR_PIN_PX13_Pos) /*!< 0x0000000D */ 2022 #define AFIO_EVCR_PIN_PX13 AFIO_EVCR_PIN_PX13_Msk /*!< Pin 13 selected */ 2023 #define AFIO_EVCR_PIN_PX14_Pos (1U) 2024 #define AFIO_EVCR_PIN_PX14_Msk (0x7UL << AFIO_EVCR_PIN_PX14_Pos) /*!< 0x0000000E */ 2025 #define AFIO_EVCR_PIN_PX14 AFIO_EVCR_PIN_PX14_Msk /*!< Pin 14 selected */ 2026 #define AFIO_EVCR_PIN_PX15_Pos (0U) 2027 #define AFIO_EVCR_PIN_PX15_Msk (0xFUL << AFIO_EVCR_PIN_PX15_Pos) /*!< 0x0000000F */ 2028 #define AFIO_EVCR_PIN_PX15 AFIO_EVCR_PIN_PX15_Msk /*!< Pin 15 selected */ 2029 2030 #define AFIO_EVCR_PORT_Pos (4U) 2031 #define AFIO_EVCR_PORT_Msk (0x7UL << AFIO_EVCR_PORT_Pos) /*!< 0x00000070 */ 2032 #define AFIO_EVCR_PORT AFIO_EVCR_PORT_Msk /*!< PORT[2:0] bits (Port selection) */ 2033 #define AFIO_EVCR_PORT_0 (0x1UL << AFIO_EVCR_PORT_Pos) /*!< 0x00000010 */ 2034 #define AFIO_EVCR_PORT_1 (0x2UL << AFIO_EVCR_PORT_Pos) /*!< 0x00000020 */ 2035 #define AFIO_EVCR_PORT_2 (0x4UL << AFIO_EVCR_PORT_Pos) /*!< 0x00000040 */ 2036 2037 /*!< PORT configuration */ 2038 #define AFIO_EVCR_PORT_PA 0x00000000 /*!< Port A selected */ 2039 #define AFIO_EVCR_PORT_PB_Pos (4U) 2040 #define AFIO_EVCR_PORT_PB_Msk (0x1UL << AFIO_EVCR_PORT_PB_Pos) /*!< 0x00000010 */ 2041 #define AFIO_EVCR_PORT_PB AFIO_EVCR_PORT_PB_Msk /*!< Port B selected */ 2042 #define AFIO_EVCR_PORT_PC_Pos (5U) 2043 #define AFIO_EVCR_PORT_PC_Msk (0x1UL << AFIO_EVCR_PORT_PC_Pos) /*!< 0x00000020 */ 2044 #define AFIO_EVCR_PORT_PC AFIO_EVCR_PORT_PC_Msk /*!< Port C selected */ 2045 #define AFIO_EVCR_PORT_PD_Pos (4U) 2046 #define AFIO_EVCR_PORT_PD_Msk (0x3UL << AFIO_EVCR_PORT_PD_Pos) /*!< 0x00000030 */ 2047 #define AFIO_EVCR_PORT_PD AFIO_EVCR_PORT_PD_Msk /*!< Port D selected */ 2048 #define AFIO_EVCR_PORT_PE_Pos (6U) 2049 #define AFIO_EVCR_PORT_PE_Msk (0x1UL << AFIO_EVCR_PORT_PE_Pos) /*!< 0x00000040 */ 2050 #define AFIO_EVCR_PORT_PE AFIO_EVCR_PORT_PE_Msk /*!< Port E selected */ 2051 2052 #define AFIO_EVCR_EVOE_Pos (7U) 2053 #define AFIO_EVCR_EVOE_Msk (0x1UL << AFIO_EVCR_EVOE_Pos) /*!< 0x00000080 */ 2054 #define AFIO_EVCR_EVOE AFIO_EVCR_EVOE_Msk /*!< Event Output Enable */ 2055 2056 /****************** Bit definition for AFIO_MAPR register *******************/ 2057 #define AFIO_MAPR_SPI1_REMAP_Pos (0U) 2058 #define AFIO_MAPR_SPI1_REMAP_Msk (0x1UL << AFIO_MAPR_SPI1_REMAP_Pos) /*!< 0x00000001 */ 2059 #define AFIO_MAPR_SPI1_REMAP AFIO_MAPR_SPI1_REMAP_Msk /*!< SPI1 remapping */ 2060 #define AFIO_MAPR_I2C1_REMAP_Pos (1U) 2061 #define AFIO_MAPR_I2C1_REMAP_Msk (0x1UL << AFIO_MAPR_I2C1_REMAP_Pos) /*!< 0x00000002 */ 2062 #define AFIO_MAPR_I2C1_REMAP AFIO_MAPR_I2C1_REMAP_Msk /*!< I2C1 remapping */ 2063 #define AFIO_MAPR_USART1_REMAP_Pos (2U) 2064 #define AFIO_MAPR_USART1_REMAP_Msk (0x1UL << AFIO_MAPR_USART1_REMAP_Pos) /*!< 0x00000004 */ 2065 #define AFIO_MAPR_USART1_REMAP AFIO_MAPR_USART1_REMAP_Msk /*!< USART1 remapping */ 2066 #define AFIO_MAPR_USART2_REMAP_Pos (3U) 2067 #define AFIO_MAPR_USART2_REMAP_Msk (0x1UL << AFIO_MAPR_USART2_REMAP_Pos) /*!< 0x00000008 */ 2068 #define AFIO_MAPR_USART2_REMAP AFIO_MAPR_USART2_REMAP_Msk /*!< USART2 remapping */ 2069 2070 #define AFIO_MAPR_USART3_REMAP_Pos (4U) 2071 #define AFIO_MAPR_USART3_REMAP_Msk (0x3UL << AFIO_MAPR_USART3_REMAP_Pos) /*!< 0x00000030 */ 2072 #define AFIO_MAPR_USART3_REMAP AFIO_MAPR_USART3_REMAP_Msk /*!< USART3_REMAP[1:0] bits (USART3 remapping) */ 2073 #define AFIO_MAPR_USART3_REMAP_0 (0x1UL << AFIO_MAPR_USART3_REMAP_Pos) /*!< 0x00000010 */ 2074 #define AFIO_MAPR_USART3_REMAP_1 (0x2UL << AFIO_MAPR_USART3_REMAP_Pos) /*!< 0x00000020 */ 2075 2076 /* USART3_REMAP configuration */ 2077 #define AFIO_MAPR_USART3_REMAP_NOREMAP 0x00000000U /*!< No remap (TX/PB10, RX/PB11, CK/PB12, CTS/PB13, RTS/PB14) */ 2078 #define AFIO_MAPR_USART3_REMAP_PARTIALREMAP_Pos (4U) 2079 #define AFIO_MAPR_USART3_REMAP_PARTIALREMAP_Msk (0x1UL << AFIO_MAPR_USART3_REMAP_PARTIALREMAP_Pos) /*!< 0x00000010 */ 2080 #define AFIO_MAPR_USART3_REMAP_PARTIALREMAP AFIO_MAPR_USART3_REMAP_PARTIALREMAP_Msk /*!< Partial remap (TX/PC10, RX/PC11, CK/PC12, CTS/PB13, RTS/PB14) */ 2081 #define AFIO_MAPR_USART3_REMAP_FULLREMAP_Pos (4U) 2082 #define AFIO_MAPR_USART3_REMAP_FULLREMAP_Msk (0x3UL << AFIO_MAPR_USART3_REMAP_FULLREMAP_Pos) /*!< 0x00000030 */ 2083 #define AFIO_MAPR_USART3_REMAP_FULLREMAP AFIO_MAPR_USART3_REMAP_FULLREMAP_Msk /*!< Full remap (TX/PD8, RX/PD9, CK/PD10, CTS/PD11, RTS/PD12) */ 2084 2085 #define AFIO_MAPR_TIM1_REMAP_Pos (6U) 2086 #define AFIO_MAPR_TIM1_REMAP_Msk (0x3UL << AFIO_MAPR_TIM1_REMAP_Pos) /*!< 0x000000C0 */ 2087 #define AFIO_MAPR_TIM1_REMAP AFIO_MAPR_TIM1_REMAP_Msk /*!< TIM1_REMAP[1:0] bits (TIM1 remapping) */ 2088 #define AFIO_MAPR_TIM1_REMAP_0 (0x1UL << AFIO_MAPR_TIM1_REMAP_Pos) /*!< 0x00000040 */ 2089 #define AFIO_MAPR_TIM1_REMAP_1 (0x2UL << AFIO_MAPR_TIM1_REMAP_Pos) /*!< 0x00000080 */ 2090 2091 /*!< TIM1_REMAP configuration */ 2092 #define AFIO_MAPR_TIM1_REMAP_NOREMAP 0x00000000U /*!< No remap (ETR/PA12, CH1/PA8, CH2/PA9, CH3/PA10, CH4/PA11, BKIN/PB12, CH1N/PB13, CH2N/PB14, CH3N/PB15) */ 2093 #define AFIO_MAPR_TIM1_REMAP_PARTIALREMAP_Pos (6U) 2094 #define AFIO_MAPR_TIM1_REMAP_PARTIALREMAP_Msk (0x1UL << AFIO_MAPR_TIM1_REMAP_PARTIALREMAP_Pos) /*!< 0x00000040 */ 2095 #define AFIO_MAPR_TIM1_REMAP_PARTIALREMAP AFIO_MAPR_TIM1_REMAP_PARTIALREMAP_Msk /*!< Partial remap (ETR/PA12, CH1/PA8, CH2/PA9, CH3/PA10, CH4/PA11, BKIN/PA6, CH1N/PA7, CH2N/PB0, CH3N/PB1) */ 2096 #define AFIO_MAPR_TIM1_REMAP_FULLREMAP_Pos (6U) 2097 #define AFIO_MAPR_TIM1_REMAP_FULLREMAP_Msk (0x3UL << AFIO_MAPR_TIM1_REMAP_FULLREMAP_Pos) /*!< 0x000000C0 */ 2098 #define AFIO_MAPR_TIM1_REMAP_FULLREMAP AFIO_MAPR_TIM1_REMAP_FULLREMAP_Msk /*!< Full remap (ETR/PE7, CH1/PE9, CH2/PE11, CH3/PE13, CH4/PE14, BKIN/PE15, CH1N/PE8, CH2N/PE10, CH3N/PE12) */ 2099 2100 #define AFIO_MAPR_TIM2_REMAP_Pos (8U) 2101 #define AFIO_MAPR_TIM2_REMAP_Msk (0x3UL << AFIO_MAPR_TIM2_REMAP_Pos) /*!< 0x00000300 */ 2102 #define AFIO_MAPR_TIM2_REMAP AFIO_MAPR_TIM2_REMAP_Msk /*!< TIM2_REMAP[1:0] bits (TIM2 remapping) */ 2103 #define AFIO_MAPR_TIM2_REMAP_0 (0x1UL << AFIO_MAPR_TIM2_REMAP_Pos) /*!< 0x00000100 */ 2104 #define AFIO_MAPR_TIM2_REMAP_1 (0x2UL << AFIO_MAPR_TIM2_REMAP_Pos) /*!< 0x00000200 */ 2105 2106 /*!< TIM2_REMAP configuration */ 2107 #define AFIO_MAPR_TIM2_REMAP_NOREMAP 0x00000000U /*!< No remap (CH1/ETR/PA0, CH2/PA1, CH3/PA2, CH4/PA3) */ 2108 #define AFIO_MAPR_TIM2_REMAP_PARTIALREMAP1_Pos (8U) 2109 #define AFIO_MAPR_TIM2_REMAP_PARTIALREMAP1_Msk (0x1UL << AFIO_MAPR_TIM2_REMAP_PARTIALREMAP1_Pos) /*!< 0x00000100 */ 2110 #define AFIO_MAPR_TIM2_REMAP_PARTIALREMAP1 AFIO_MAPR_TIM2_REMAP_PARTIALREMAP1_Msk /*!< Partial remap (CH1/ETR/PA15, CH2/PB3, CH3/PA2, CH4/PA3) */ 2111 #define AFIO_MAPR_TIM2_REMAP_PARTIALREMAP2_Pos (9U) 2112 #define AFIO_MAPR_TIM2_REMAP_PARTIALREMAP2_Msk (0x1UL << AFIO_MAPR_TIM2_REMAP_PARTIALREMAP2_Pos) /*!< 0x00000200 */ 2113 #define AFIO_MAPR_TIM2_REMAP_PARTIALREMAP2 AFIO_MAPR_TIM2_REMAP_PARTIALREMAP2_Msk /*!< Partial remap (CH1/ETR/PA0, CH2/PA1, CH3/PB10, CH4/PB11) */ 2114 #define AFIO_MAPR_TIM2_REMAP_FULLREMAP_Pos (8U) 2115 #define AFIO_MAPR_TIM2_REMAP_FULLREMAP_Msk (0x3UL << AFIO_MAPR_TIM2_REMAP_FULLREMAP_Pos) /*!< 0x00000300 */ 2116 #define AFIO_MAPR_TIM2_REMAP_FULLREMAP AFIO_MAPR_TIM2_REMAP_FULLREMAP_Msk /*!< Full remap (CH1/ETR/PA15, CH2/PB3, CH3/PB10, CH4/PB11) */ 2117 2118 #define AFIO_MAPR_TIM3_REMAP_Pos (10U) 2119 #define AFIO_MAPR_TIM3_REMAP_Msk (0x3UL << AFIO_MAPR_TIM3_REMAP_Pos) /*!< 0x00000C00 */ 2120 #define AFIO_MAPR_TIM3_REMAP AFIO_MAPR_TIM3_REMAP_Msk /*!< TIM3_REMAP[1:0] bits (TIM3 remapping) */ 2121 #define AFIO_MAPR_TIM3_REMAP_0 (0x1UL << AFIO_MAPR_TIM3_REMAP_Pos) /*!< 0x00000400 */ 2122 #define AFIO_MAPR_TIM3_REMAP_1 (0x2UL << AFIO_MAPR_TIM3_REMAP_Pos) /*!< 0x00000800 */ 2123 2124 /*!< TIM3_REMAP configuration */ 2125 #define AFIO_MAPR_TIM3_REMAP_NOREMAP 0x00000000U /*!< No remap (CH1/PA6, CH2/PA7, CH3/PB0, CH4/PB1) */ 2126 #define AFIO_MAPR_TIM3_REMAP_PARTIALREMAP_Pos (11U) 2127 #define AFIO_MAPR_TIM3_REMAP_PARTIALREMAP_Msk (0x1UL << AFIO_MAPR_TIM3_REMAP_PARTIALREMAP_Pos) /*!< 0x00000800 */ 2128 #define AFIO_MAPR_TIM3_REMAP_PARTIALREMAP AFIO_MAPR_TIM3_REMAP_PARTIALREMAP_Msk /*!< Partial remap (CH1/PB4, CH2/PB5, CH3/PB0, CH4/PB1) */ 2129 #define AFIO_MAPR_TIM3_REMAP_FULLREMAP_Pos (10U) 2130 #define AFIO_MAPR_TIM3_REMAP_FULLREMAP_Msk (0x3UL << AFIO_MAPR_TIM3_REMAP_FULLREMAP_Pos) /*!< 0x00000C00 */ 2131 #define AFIO_MAPR_TIM3_REMAP_FULLREMAP AFIO_MAPR_TIM3_REMAP_FULLREMAP_Msk /*!< Full remap (CH1/PC6, CH2/PC7, CH3/PC8, CH4/PC9) */ 2132 2133 #define AFIO_MAPR_TIM4_REMAP_Pos (12U) 2134 #define AFIO_MAPR_TIM4_REMAP_Msk (0x1UL << AFIO_MAPR_TIM4_REMAP_Pos) /*!< 0x00001000 */ 2135 #define AFIO_MAPR_TIM4_REMAP AFIO_MAPR_TIM4_REMAP_Msk /*!< TIM4_REMAP bit (TIM4 remapping) */ 2136 2137 2138 #define AFIO_MAPR_PD01_REMAP_Pos (15U) 2139 #define AFIO_MAPR_PD01_REMAP_Msk (0x1UL << AFIO_MAPR_PD01_REMAP_Pos) /*!< 0x00008000 */ 2140 #define AFIO_MAPR_PD01_REMAP AFIO_MAPR_PD01_REMAP_Msk /*!< Port D0/Port D1 mapping on OSC_IN/OSC_OUT */ 2141 2142 /*!< SWJ_CFG configuration */ 2143 #define AFIO_MAPR_SWJ_CFG_Pos (24U) 2144 #define AFIO_MAPR_SWJ_CFG_Msk (0x7UL << AFIO_MAPR_SWJ_CFG_Pos) /*!< 0x07000000 */ 2145 #define AFIO_MAPR_SWJ_CFG AFIO_MAPR_SWJ_CFG_Msk /*!< SWJ_CFG[2:0] bits (Serial Wire JTAG configuration) */ 2146 #define AFIO_MAPR_SWJ_CFG_0 (0x1UL << AFIO_MAPR_SWJ_CFG_Pos) /*!< 0x01000000 */ 2147 #define AFIO_MAPR_SWJ_CFG_1 (0x2UL << AFIO_MAPR_SWJ_CFG_Pos) /*!< 0x02000000 */ 2148 #define AFIO_MAPR_SWJ_CFG_2 (0x4UL << AFIO_MAPR_SWJ_CFG_Pos) /*!< 0x04000000 */ 2149 2150 #define AFIO_MAPR_SWJ_CFG_RESET 0x00000000U /*!< Full SWJ (JTAG-DP + SW-DP) : Reset State */ 2151 #define AFIO_MAPR_SWJ_CFG_NOJNTRST_Pos (24U) 2152 #define AFIO_MAPR_SWJ_CFG_NOJNTRST_Msk (0x1UL << AFIO_MAPR_SWJ_CFG_NOJNTRST_Pos) /*!< 0x01000000 */ 2153 #define AFIO_MAPR_SWJ_CFG_NOJNTRST AFIO_MAPR_SWJ_CFG_NOJNTRST_Msk /*!< Full SWJ (JTAG-DP + SW-DP) but without JNTRST */ 2154 #define AFIO_MAPR_SWJ_CFG_JTAGDISABLE_Pos (25U) 2155 #define AFIO_MAPR_SWJ_CFG_JTAGDISABLE_Msk (0x1UL << AFIO_MAPR_SWJ_CFG_JTAGDISABLE_Pos) /*!< 0x02000000 */ 2156 #define AFIO_MAPR_SWJ_CFG_JTAGDISABLE AFIO_MAPR_SWJ_CFG_JTAGDISABLE_Msk /*!< JTAG-DP Disabled and SW-DP Enabled */ 2157 #define AFIO_MAPR_SWJ_CFG_DISABLE_Pos (26U) 2158 #define AFIO_MAPR_SWJ_CFG_DISABLE_Msk (0x1UL << AFIO_MAPR_SWJ_CFG_DISABLE_Pos) /*!< 0x04000000 */ 2159 #define AFIO_MAPR_SWJ_CFG_DISABLE AFIO_MAPR_SWJ_CFG_DISABLE_Msk /*!< JTAG-DP Disabled and SW-DP Disabled */ 2160 2161 2162 /***************** Bit definition for AFIO_EXTICR1 register *****************/ 2163 #define AFIO_EXTICR1_EXTI0_Pos (0U) 2164 #define AFIO_EXTICR1_EXTI0_Msk (0xFUL << AFIO_EXTICR1_EXTI0_Pos) /*!< 0x0000000F */ 2165 #define AFIO_EXTICR1_EXTI0 AFIO_EXTICR1_EXTI0_Msk /*!< EXTI 0 configuration */ 2166 #define AFIO_EXTICR1_EXTI1_Pos (4U) 2167 #define AFIO_EXTICR1_EXTI1_Msk (0xFUL << AFIO_EXTICR1_EXTI1_Pos) /*!< 0x000000F0 */ 2168 #define AFIO_EXTICR1_EXTI1 AFIO_EXTICR1_EXTI1_Msk /*!< EXTI 1 configuration */ 2169 #define AFIO_EXTICR1_EXTI2_Pos (8U) 2170 #define AFIO_EXTICR1_EXTI2_Msk (0xFUL << AFIO_EXTICR1_EXTI2_Pos) /*!< 0x00000F00 */ 2171 #define AFIO_EXTICR1_EXTI2 AFIO_EXTICR1_EXTI2_Msk /*!< EXTI 2 configuration */ 2172 #define AFIO_EXTICR1_EXTI3_Pos (12U) 2173 #define AFIO_EXTICR1_EXTI3_Msk (0xFUL << AFIO_EXTICR1_EXTI3_Pos) /*!< 0x0000F000 */ 2174 #define AFIO_EXTICR1_EXTI3 AFIO_EXTICR1_EXTI3_Msk /*!< EXTI 3 configuration */ 2175 2176 /*!< EXTI0 configuration */ 2177 #define AFIO_EXTICR1_EXTI0_PA 0x00000000U /*!< PA[0] pin */ 2178 #define AFIO_EXTICR1_EXTI0_PB_Pos (0U) 2179 #define AFIO_EXTICR1_EXTI0_PB_Msk (0x1UL << AFIO_EXTICR1_EXTI0_PB_Pos) /*!< 0x00000001 */ 2180 #define AFIO_EXTICR1_EXTI0_PB AFIO_EXTICR1_EXTI0_PB_Msk /*!< PB[0] pin */ 2181 #define AFIO_EXTICR1_EXTI0_PC_Pos (1U) 2182 #define AFIO_EXTICR1_EXTI0_PC_Msk (0x1UL << AFIO_EXTICR1_EXTI0_PC_Pos) /*!< 0x00000002 */ 2183 #define AFIO_EXTICR1_EXTI0_PC AFIO_EXTICR1_EXTI0_PC_Msk /*!< PC[0] pin */ 2184 #define AFIO_EXTICR1_EXTI0_PD_Pos (0U) 2185 #define AFIO_EXTICR1_EXTI0_PD_Msk (0x3UL << AFIO_EXTICR1_EXTI0_PD_Pos) /*!< 0x00000003 */ 2186 #define AFIO_EXTICR1_EXTI0_PD AFIO_EXTICR1_EXTI0_PD_Msk /*!< PD[0] pin */ 2187 #define AFIO_EXTICR1_EXTI0_PE_Pos (2U) 2188 #define AFIO_EXTICR1_EXTI0_PE_Msk (0x1UL << AFIO_EXTICR1_EXTI0_PE_Pos) /*!< 0x00000004 */ 2189 #define AFIO_EXTICR1_EXTI0_PE AFIO_EXTICR1_EXTI0_PE_Msk /*!< PE[0] pin */ 2190 #define AFIO_EXTICR1_EXTI0_PF_Pos (0U) 2191 #define AFIO_EXTICR1_EXTI0_PF_Msk (0x5UL << AFIO_EXTICR1_EXTI0_PF_Pos) /*!< 0x00000005 */ 2192 #define AFIO_EXTICR1_EXTI0_PF AFIO_EXTICR1_EXTI0_PF_Msk /*!< PF[0] pin */ 2193 #define AFIO_EXTICR1_EXTI0_PG_Pos (1U) 2194 #define AFIO_EXTICR1_EXTI0_PG_Msk (0x3UL << AFIO_EXTICR1_EXTI0_PG_Pos) /*!< 0x00000006 */ 2195 #define AFIO_EXTICR1_EXTI0_PG AFIO_EXTICR1_EXTI0_PG_Msk /*!< PG[0] pin */ 2196 2197 /*!< EXTI1 configuration */ 2198 #define AFIO_EXTICR1_EXTI1_PA 0x00000000U /*!< PA[1] pin */ 2199 #define AFIO_EXTICR1_EXTI1_PB_Pos (4U) 2200 #define AFIO_EXTICR1_EXTI1_PB_Msk (0x1UL << AFIO_EXTICR1_EXTI1_PB_Pos) /*!< 0x00000010 */ 2201 #define AFIO_EXTICR1_EXTI1_PB AFIO_EXTICR1_EXTI1_PB_Msk /*!< PB[1] pin */ 2202 #define AFIO_EXTICR1_EXTI1_PC_Pos (5U) 2203 #define AFIO_EXTICR1_EXTI1_PC_Msk (0x1UL << AFIO_EXTICR1_EXTI1_PC_Pos) /*!< 0x00000020 */ 2204 #define AFIO_EXTICR1_EXTI1_PC AFIO_EXTICR1_EXTI1_PC_Msk /*!< PC[1] pin */ 2205 #define AFIO_EXTICR1_EXTI1_PD_Pos (4U) 2206 #define AFIO_EXTICR1_EXTI1_PD_Msk (0x3UL << AFIO_EXTICR1_EXTI1_PD_Pos) /*!< 0x00000030 */ 2207 #define AFIO_EXTICR1_EXTI1_PD AFIO_EXTICR1_EXTI1_PD_Msk /*!< PD[1] pin */ 2208 #define AFIO_EXTICR1_EXTI1_PE_Pos (6U) 2209 #define AFIO_EXTICR1_EXTI1_PE_Msk (0x1UL << AFIO_EXTICR1_EXTI1_PE_Pos) /*!< 0x00000040 */ 2210 #define AFIO_EXTICR1_EXTI1_PE AFIO_EXTICR1_EXTI1_PE_Msk /*!< PE[1] pin */ 2211 #define AFIO_EXTICR1_EXTI1_PF_Pos (4U) 2212 #define AFIO_EXTICR1_EXTI1_PF_Msk (0x5UL << AFIO_EXTICR1_EXTI1_PF_Pos) /*!< 0x00000050 */ 2213 #define AFIO_EXTICR1_EXTI1_PF AFIO_EXTICR1_EXTI1_PF_Msk /*!< PF[1] pin */ 2214 #define AFIO_EXTICR1_EXTI1_PG_Pos (5U) 2215 #define AFIO_EXTICR1_EXTI1_PG_Msk (0x3UL << AFIO_EXTICR1_EXTI1_PG_Pos) /*!< 0x00000060 */ 2216 #define AFIO_EXTICR1_EXTI1_PG AFIO_EXTICR1_EXTI1_PG_Msk /*!< PG[1] pin */ 2217 2218 /*!< EXTI2 configuration */ 2219 #define AFIO_EXTICR1_EXTI2_PA 0x00000000U /*!< PA[2] pin */ 2220 #define AFIO_EXTICR1_EXTI2_PB_Pos (8U) 2221 #define AFIO_EXTICR1_EXTI2_PB_Msk (0x1UL << AFIO_EXTICR1_EXTI2_PB_Pos) /*!< 0x00000100 */ 2222 #define AFIO_EXTICR1_EXTI2_PB AFIO_EXTICR1_EXTI2_PB_Msk /*!< PB[2] pin */ 2223 #define AFIO_EXTICR1_EXTI2_PC_Pos (9U) 2224 #define AFIO_EXTICR1_EXTI2_PC_Msk (0x1UL << AFIO_EXTICR1_EXTI2_PC_Pos) /*!< 0x00000200 */ 2225 #define AFIO_EXTICR1_EXTI2_PC AFIO_EXTICR1_EXTI2_PC_Msk /*!< PC[2] pin */ 2226 #define AFIO_EXTICR1_EXTI2_PD_Pos (8U) 2227 #define AFIO_EXTICR1_EXTI2_PD_Msk (0x3UL << AFIO_EXTICR1_EXTI2_PD_Pos) /*!< 0x00000300 */ 2228 #define AFIO_EXTICR1_EXTI2_PD AFIO_EXTICR1_EXTI2_PD_Msk /*!< PD[2] pin */ 2229 #define AFIO_EXTICR1_EXTI2_PE_Pos (10U) 2230 #define AFIO_EXTICR1_EXTI2_PE_Msk (0x1UL << AFIO_EXTICR1_EXTI2_PE_Pos) /*!< 0x00000400 */ 2231 #define AFIO_EXTICR1_EXTI2_PE AFIO_EXTICR1_EXTI2_PE_Msk /*!< PE[2] pin */ 2232 #define AFIO_EXTICR1_EXTI2_PF_Pos (8U) 2233 #define AFIO_EXTICR1_EXTI2_PF_Msk (0x5UL << AFIO_EXTICR1_EXTI2_PF_Pos) /*!< 0x00000500 */ 2234 #define AFIO_EXTICR1_EXTI2_PF AFIO_EXTICR1_EXTI2_PF_Msk /*!< PF[2] pin */ 2235 #define AFIO_EXTICR1_EXTI2_PG_Pos (9U) 2236 #define AFIO_EXTICR1_EXTI2_PG_Msk (0x3UL << AFIO_EXTICR1_EXTI2_PG_Pos) /*!< 0x00000600 */ 2237 #define AFIO_EXTICR1_EXTI2_PG AFIO_EXTICR1_EXTI2_PG_Msk /*!< PG[2] pin */ 2238 2239 /*!< EXTI3 configuration */ 2240 #define AFIO_EXTICR1_EXTI3_PA 0x00000000U /*!< PA[3] pin */ 2241 #define AFIO_EXTICR1_EXTI3_PB_Pos (12U) 2242 #define AFIO_EXTICR1_EXTI3_PB_Msk (0x1UL << AFIO_EXTICR1_EXTI3_PB_Pos) /*!< 0x00001000 */ 2243 #define AFIO_EXTICR1_EXTI3_PB AFIO_EXTICR1_EXTI3_PB_Msk /*!< PB[3] pin */ 2244 #define AFIO_EXTICR1_EXTI3_PC_Pos (13U) 2245 #define AFIO_EXTICR1_EXTI3_PC_Msk (0x1UL << AFIO_EXTICR1_EXTI3_PC_Pos) /*!< 0x00002000 */ 2246 #define AFIO_EXTICR1_EXTI3_PC AFIO_EXTICR1_EXTI3_PC_Msk /*!< PC[3] pin */ 2247 #define AFIO_EXTICR1_EXTI3_PD_Pos (12U) 2248 #define AFIO_EXTICR1_EXTI3_PD_Msk (0x3UL << AFIO_EXTICR1_EXTI3_PD_Pos) /*!< 0x00003000 */ 2249 #define AFIO_EXTICR1_EXTI3_PD AFIO_EXTICR1_EXTI3_PD_Msk /*!< PD[3] pin */ 2250 #define AFIO_EXTICR1_EXTI3_PE_Pos (14U) 2251 #define AFIO_EXTICR1_EXTI3_PE_Msk (0x1UL << AFIO_EXTICR1_EXTI3_PE_Pos) /*!< 0x00004000 */ 2252 #define AFIO_EXTICR1_EXTI3_PE AFIO_EXTICR1_EXTI3_PE_Msk /*!< PE[3] pin */ 2253 #define AFIO_EXTICR1_EXTI3_PF_Pos (12U) 2254 #define AFIO_EXTICR1_EXTI3_PF_Msk (0x5UL << AFIO_EXTICR1_EXTI3_PF_Pos) /*!< 0x00005000 */ 2255 #define AFIO_EXTICR1_EXTI3_PF AFIO_EXTICR1_EXTI3_PF_Msk /*!< PF[3] pin */ 2256 #define AFIO_EXTICR1_EXTI3_PG_Pos (13U) 2257 #define AFIO_EXTICR1_EXTI3_PG_Msk (0x3UL << AFIO_EXTICR1_EXTI3_PG_Pos) /*!< 0x00006000 */ 2258 #define AFIO_EXTICR1_EXTI3_PG AFIO_EXTICR1_EXTI3_PG_Msk /*!< PG[3] pin */ 2259 2260 /***************** Bit definition for AFIO_EXTICR2 register *****************/ 2261 #define AFIO_EXTICR2_EXTI4_Pos (0U) 2262 #define AFIO_EXTICR2_EXTI4_Msk (0xFUL << AFIO_EXTICR2_EXTI4_Pos) /*!< 0x0000000F */ 2263 #define AFIO_EXTICR2_EXTI4 AFIO_EXTICR2_EXTI4_Msk /*!< EXTI 4 configuration */ 2264 #define AFIO_EXTICR2_EXTI5_Pos (4U) 2265 #define AFIO_EXTICR2_EXTI5_Msk (0xFUL << AFIO_EXTICR2_EXTI5_Pos) /*!< 0x000000F0 */ 2266 #define AFIO_EXTICR2_EXTI5 AFIO_EXTICR2_EXTI5_Msk /*!< EXTI 5 configuration */ 2267 #define AFIO_EXTICR2_EXTI6_Pos (8U) 2268 #define AFIO_EXTICR2_EXTI6_Msk (0xFUL << AFIO_EXTICR2_EXTI6_Pos) /*!< 0x00000F00 */ 2269 #define AFIO_EXTICR2_EXTI6 AFIO_EXTICR2_EXTI6_Msk /*!< EXTI 6 configuration */ 2270 #define AFIO_EXTICR2_EXTI7_Pos (12U) 2271 #define AFIO_EXTICR2_EXTI7_Msk (0xFUL << AFIO_EXTICR2_EXTI7_Pos) /*!< 0x0000F000 */ 2272 #define AFIO_EXTICR2_EXTI7 AFIO_EXTICR2_EXTI7_Msk /*!< EXTI 7 configuration */ 2273 2274 /*!< EXTI4 configuration */ 2275 #define AFIO_EXTICR2_EXTI4_PA 0x00000000U /*!< PA[4] pin */ 2276 #define AFIO_EXTICR2_EXTI4_PB_Pos (0U) 2277 #define AFIO_EXTICR2_EXTI4_PB_Msk (0x1UL << AFIO_EXTICR2_EXTI4_PB_Pos) /*!< 0x00000001 */ 2278 #define AFIO_EXTICR2_EXTI4_PB AFIO_EXTICR2_EXTI4_PB_Msk /*!< PB[4] pin */ 2279 #define AFIO_EXTICR2_EXTI4_PC_Pos (1U) 2280 #define AFIO_EXTICR2_EXTI4_PC_Msk (0x1UL << AFIO_EXTICR2_EXTI4_PC_Pos) /*!< 0x00000002 */ 2281 #define AFIO_EXTICR2_EXTI4_PC AFIO_EXTICR2_EXTI4_PC_Msk /*!< PC[4] pin */ 2282 #define AFIO_EXTICR2_EXTI4_PD_Pos (0U) 2283 #define AFIO_EXTICR2_EXTI4_PD_Msk (0x3UL << AFIO_EXTICR2_EXTI4_PD_Pos) /*!< 0x00000003 */ 2284 #define AFIO_EXTICR2_EXTI4_PD AFIO_EXTICR2_EXTI4_PD_Msk /*!< PD[4] pin */ 2285 #define AFIO_EXTICR2_EXTI4_PE_Pos (2U) 2286 #define AFIO_EXTICR2_EXTI4_PE_Msk (0x1UL << AFIO_EXTICR2_EXTI4_PE_Pos) /*!< 0x00000004 */ 2287 #define AFIO_EXTICR2_EXTI4_PE AFIO_EXTICR2_EXTI4_PE_Msk /*!< PE[4] pin */ 2288 #define AFIO_EXTICR2_EXTI4_PF_Pos (0U) 2289 #define AFIO_EXTICR2_EXTI4_PF_Msk (0x5UL << AFIO_EXTICR2_EXTI4_PF_Pos) /*!< 0x00000005 */ 2290 #define AFIO_EXTICR2_EXTI4_PF AFIO_EXTICR2_EXTI4_PF_Msk /*!< PF[4] pin */ 2291 #define AFIO_EXTICR2_EXTI4_PG_Pos (1U) 2292 #define AFIO_EXTICR2_EXTI4_PG_Msk (0x3UL << AFIO_EXTICR2_EXTI4_PG_Pos) /*!< 0x00000006 */ 2293 #define AFIO_EXTICR2_EXTI4_PG AFIO_EXTICR2_EXTI4_PG_Msk /*!< PG[4] pin */ 2294 2295 /* EXTI5 configuration */ 2296 #define AFIO_EXTICR2_EXTI5_PA 0x00000000U /*!< PA[5] pin */ 2297 #define AFIO_EXTICR2_EXTI5_PB_Pos (4U) 2298 #define AFIO_EXTICR2_EXTI5_PB_Msk (0x1UL << AFIO_EXTICR2_EXTI5_PB_Pos) /*!< 0x00000010 */ 2299 #define AFIO_EXTICR2_EXTI5_PB AFIO_EXTICR2_EXTI5_PB_Msk /*!< PB[5] pin */ 2300 #define AFIO_EXTICR2_EXTI5_PC_Pos (5U) 2301 #define AFIO_EXTICR2_EXTI5_PC_Msk (0x1UL << AFIO_EXTICR2_EXTI5_PC_Pos) /*!< 0x00000020 */ 2302 #define AFIO_EXTICR2_EXTI5_PC AFIO_EXTICR2_EXTI5_PC_Msk /*!< PC[5] pin */ 2303 #define AFIO_EXTICR2_EXTI5_PD_Pos (4U) 2304 #define AFIO_EXTICR2_EXTI5_PD_Msk (0x3UL << AFIO_EXTICR2_EXTI5_PD_Pos) /*!< 0x00000030 */ 2305 #define AFIO_EXTICR2_EXTI5_PD AFIO_EXTICR2_EXTI5_PD_Msk /*!< PD[5] pin */ 2306 #define AFIO_EXTICR2_EXTI5_PE_Pos (6U) 2307 #define AFIO_EXTICR2_EXTI5_PE_Msk (0x1UL << AFIO_EXTICR2_EXTI5_PE_Pos) /*!< 0x00000040 */ 2308 #define AFIO_EXTICR2_EXTI5_PE AFIO_EXTICR2_EXTI5_PE_Msk /*!< PE[5] pin */ 2309 #define AFIO_EXTICR2_EXTI5_PF_Pos (4U) 2310 #define AFIO_EXTICR2_EXTI5_PF_Msk (0x5UL << AFIO_EXTICR2_EXTI5_PF_Pos) /*!< 0x00000050 */ 2311 #define AFIO_EXTICR2_EXTI5_PF AFIO_EXTICR2_EXTI5_PF_Msk /*!< PF[5] pin */ 2312 #define AFIO_EXTICR2_EXTI5_PG_Pos (5U) 2313 #define AFIO_EXTICR2_EXTI5_PG_Msk (0x3UL << AFIO_EXTICR2_EXTI5_PG_Pos) /*!< 0x00000060 */ 2314 #define AFIO_EXTICR2_EXTI5_PG AFIO_EXTICR2_EXTI5_PG_Msk /*!< PG[5] pin */ 2315 2316 /*!< EXTI6 configuration */ 2317 #define AFIO_EXTICR2_EXTI6_PA 0x00000000U /*!< PA[6] pin */ 2318 #define AFIO_EXTICR2_EXTI6_PB_Pos (8U) 2319 #define AFIO_EXTICR2_EXTI6_PB_Msk (0x1UL << AFIO_EXTICR2_EXTI6_PB_Pos) /*!< 0x00000100 */ 2320 #define AFIO_EXTICR2_EXTI6_PB AFIO_EXTICR2_EXTI6_PB_Msk /*!< PB[6] pin */ 2321 #define AFIO_EXTICR2_EXTI6_PC_Pos (9U) 2322 #define AFIO_EXTICR2_EXTI6_PC_Msk (0x1UL << AFIO_EXTICR2_EXTI6_PC_Pos) /*!< 0x00000200 */ 2323 #define AFIO_EXTICR2_EXTI6_PC AFIO_EXTICR2_EXTI6_PC_Msk /*!< PC[6] pin */ 2324 #define AFIO_EXTICR2_EXTI6_PD_Pos (8U) 2325 #define AFIO_EXTICR2_EXTI6_PD_Msk (0x3UL << AFIO_EXTICR2_EXTI6_PD_Pos) /*!< 0x00000300 */ 2326 #define AFIO_EXTICR2_EXTI6_PD AFIO_EXTICR2_EXTI6_PD_Msk /*!< PD[6] pin */ 2327 #define AFIO_EXTICR2_EXTI6_PE_Pos (10U) 2328 #define AFIO_EXTICR2_EXTI6_PE_Msk (0x1UL << AFIO_EXTICR2_EXTI6_PE_Pos) /*!< 0x00000400 */ 2329 #define AFIO_EXTICR2_EXTI6_PE AFIO_EXTICR2_EXTI6_PE_Msk /*!< PE[6] pin */ 2330 #define AFIO_EXTICR2_EXTI6_PF_Pos (8U) 2331 #define AFIO_EXTICR2_EXTI6_PF_Msk (0x5UL << AFIO_EXTICR2_EXTI6_PF_Pos) /*!< 0x00000500 */ 2332 #define AFIO_EXTICR2_EXTI6_PF AFIO_EXTICR2_EXTI6_PF_Msk /*!< PF[6] pin */ 2333 #define AFIO_EXTICR2_EXTI6_PG_Pos (9U) 2334 #define AFIO_EXTICR2_EXTI6_PG_Msk (0x3UL << AFIO_EXTICR2_EXTI6_PG_Pos) /*!< 0x00000600 */ 2335 #define AFIO_EXTICR2_EXTI6_PG AFIO_EXTICR2_EXTI6_PG_Msk /*!< PG[6] pin */ 2336 2337 /*!< EXTI7 configuration */ 2338 #define AFIO_EXTICR2_EXTI7_PA 0x00000000U /*!< PA[7] pin */ 2339 #define AFIO_EXTICR2_EXTI7_PB_Pos (12U) 2340 #define AFIO_EXTICR2_EXTI7_PB_Msk (0x1UL << AFIO_EXTICR2_EXTI7_PB_Pos) /*!< 0x00001000 */ 2341 #define AFIO_EXTICR2_EXTI7_PB AFIO_EXTICR2_EXTI7_PB_Msk /*!< PB[7] pin */ 2342 #define AFIO_EXTICR2_EXTI7_PC_Pos (13U) 2343 #define AFIO_EXTICR2_EXTI7_PC_Msk (0x1UL << AFIO_EXTICR2_EXTI7_PC_Pos) /*!< 0x00002000 */ 2344 #define AFIO_EXTICR2_EXTI7_PC AFIO_EXTICR2_EXTI7_PC_Msk /*!< PC[7] pin */ 2345 #define AFIO_EXTICR2_EXTI7_PD_Pos (12U) 2346 #define AFIO_EXTICR2_EXTI7_PD_Msk (0x3UL << AFIO_EXTICR2_EXTI7_PD_Pos) /*!< 0x00003000 */ 2347 #define AFIO_EXTICR2_EXTI7_PD AFIO_EXTICR2_EXTI7_PD_Msk /*!< PD[7] pin */ 2348 #define AFIO_EXTICR2_EXTI7_PE_Pos (14U) 2349 #define AFIO_EXTICR2_EXTI7_PE_Msk (0x1UL << AFIO_EXTICR2_EXTI7_PE_Pos) /*!< 0x00004000 */ 2350 #define AFIO_EXTICR2_EXTI7_PE AFIO_EXTICR2_EXTI7_PE_Msk /*!< PE[7] pin */ 2351 #define AFIO_EXTICR2_EXTI7_PF_Pos (12U) 2352 #define AFIO_EXTICR2_EXTI7_PF_Msk (0x5UL << AFIO_EXTICR2_EXTI7_PF_Pos) /*!< 0x00005000 */ 2353 #define AFIO_EXTICR2_EXTI7_PF AFIO_EXTICR2_EXTI7_PF_Msk /*!< PF[7] pin */ 2354 #define AFIO_EXTICR2_EXTI7_PG_Pos (13U) 2355 #define AFIO_EXTICR2_EXTI7_PG_Msk (0x3UL << AFIO_EXTICR2_EXTI7_PG_Pos) /*!< 0x00006000 */ 2356 #define AFIO_EXTICR2_EXTI7_PG AFIO_EXTICR2_EXTI7_PG_Msk /*!< PG[7] pin */ 2357 2358 /***************** Bit definition for AFIO_EXTICR3 register *****************/ 2359 #define AFIO_EXTICR3_EXTI8_Pos (0U) 2360 #define AFIO_EXTICR3_EXTI8_Msk (0xFUL << AFIO_EXTICR3_EXTI8_Pos) /*!< 0x0000000F */ 2361 #define AFIO_EXTICR3_EXTI8 AFIO_EXTICR3_EXTI8_Msk /*!< EXTI 8 configuration */ 2362 #define AFIO_EXTICR3_EXTI9_Pos (4U) 2363 #define AFIO_EXTICR3_EXTI9_Msk (0xFUL << AFIO_EXTICR3_EXTI9_Pos) /*!< 0x000000F0 */ 2364 #define AFIO_EXTICR3_EXTI9 AFIO_EXTICR3_EXTI9_Msk /*!< EXTI 9 configuration */ 2365 #define AFIO_EXTICR3_EXTI10_Pos (8U) 2366 #define AFIO_EXTICR3_EXTI10_Msk (0xFUL << AFIO_EXTICR3_EXTI10_Pos) /*!< 0x00000F00 */ 2367 #define AFIO_EXTICR3_EXTI10 AFIO_EXTICR3_EXTI10_Msk /*!< EXTI 10 configuration */ 2368 #define AFIO_EXTICR3_EXTI11_Pos (12U) 2369 #define AFIO_EXTICR3_EXTI11_Msk (0xFUL << AFIO_EXTICR3_EXTI11_Pos) /*!< 0x0000F000 */ 2370 #define AFIO_EXTICR3_EXTI11 AFIO_EXTICR3_EXTI11_Msk /*!< EXTI 11 configuration */ 2371 2372 /*!< EXTI8 configuration */ 2373 #define AFIO_EXTICR3_EXTI8_PA 0x00000000U /*!< PA[8] pin */ 2374 #define AFIO_EXTICR3_EXTI8_PB_Pos (0U) 2375 #define AFIO_EXTICR3_EXTI8_PB_Msk (0x1UL << AFIO_EXTICR3_EXTI8_PB_Pos) /*!< 0x00000001 */ 2376 #define AFIO_EXTICR3_EXTI8_PB AFIO_EXTICR3_EXTI8_PB_Msk /*!< PB[8] pin */ 2377 #define AFIO_EXTICR3_EXTI8_PC_Pos (1U) 2378 #define AFIO_EXTICR3_EXTI8_PC_Msk (0x1UL << AFIO_EXTICR3_EXTI8_PC_Pos) /*!< 0x00000002 */ 2379 #define AFIO_EXTICR3_EXTI8_PC AFIO_EXTICR3_EXTI8_PC_Msk /*!< PC[8] pin */ 2380 #define AFIO_EXTICR3_EXTI8_PD_Pos (0U) 2381 #define AFIO_EXTICR3_EXTI8_PD_Msk (0x3UL << AFIO_EXTICR3_EXTI8_PD_Pos) /*!< 0x00000003 */ 2382 #define AFIO_EXTICR3_EXTI8_PD AFIO_EXTICR3_EXTI8_PD_Msk /*!< PD[8] pin */ 2383 #define AFIO_EXTICR3_EXTI8_PE_Pos (2U) 2384 #define AFIO_EXTICR3_EXTI8_PE_Msk (0x1UL << AFIO_EXTICR3_EXTI8_PE_Pos) /*!< 0x00000004 */ 2385 #define AFIO_EXTICR3_EXTI8_PE AFIO_EXTICR3_EXTI8_PE_Msk /*!< PE[8] pin */ 2386 #define AFIO_EXTICR3_EXTI8_PF_Pos (0U) 2387 #define AFIO_EXTICR3_EXTI8_PF_Msk (0x5UL << AFIO_EXTICR3_EXTI8_PF_Pos) /*!< 0x00000005 */ 2388 #define AFIO_EXTICR3_EXTI8_PF AFIO_EXTICR3_EXTI8_PF_Msk /*!< PF[8] pin */ 2389 #define AFIO_EXTICR3_EXTI8_PG_Pos (1U) 2390 #define AFIO_EXTICR3_EXTI8_PG_Msk (0x3UL << AFIO_EXTICR3_EXTI8_PG_Pos) /*!< 0x00000006 */ 2391 #define AFIO_EXTICR3_EXTI8_PG AFIO_EXTICR3_EXTI8_PG_Msk /*!< PG[8] pin */ 2392 2393 /*!< EXTI9 configuration */ 2394 #define AFIO_EXTICR3_EXTI9_PA 0x00000000U /*!< PA[9] pin */ 2395 #define AFIO_EXTICR3_EXTI9_PB_Pos (4U) 2396 #define AFIO_EXTICR3_EXTI9_PB_Msk (0x1UL << AFIO_EXTICR3_EXTI9_PB_Pos) /*!< 0x00000010 */ 2397 #define AFIO_EXTICR3_EXTI9_PB AFIO_EXTICR3_EXTI9_PB_Msk /*!< PB[9] pin */ 2398 #define AFIO_EXTICR3_EXTI9_PC_Pos (5U) 2399 #define AFIO_EXTICR3_EXTI9_PC_Msk (0x1UL << AFIO_EXTICR3_EXTI9_PC_Pos) /*!< 0x00000020 */ 2400 #define AFIO_EXTICR3_EXTI9_PC AFIO_EXTICR3_EXTI9_PC_Msk /*!< PC[9] pin */ 2401 #define AFIO_EXTICR3_EXTI9_PD_Pos (4U) 2402 #define AFIO_EXTICR3_EXTI9_PD_Msk (0x3UL << AFIO_EXTICR3_EXTI9_PD_Pos) /*!< 0x00000030 */ 2403 #define AFIO_EXTICR3_EXTI9_PD AFIO_EXTICR3_EXTI9_PD_Msk /*!< PD[9] pin */ 2404 #define AFIO_EXTICR3_EXTI9_PE_Pos (6U) 2405 #define AFIO_EXTICR3_EXTI9_PE_Msk (0x1UL << AFIO_EXTICR3_EXTI9_PE_Pos) /*!< 0x00000040 */ 2406 #define AFIO_EXTICR3_EXTI9_PE AFIO_EXTICR3_EXTI9_PE_Msk /*!< PE[9] pin */ 2407 #define AFIO_EXTICR3_EXTI9_PF_Pos (4U) 2408 #define AFIO_EXTICR3_EXTI9_PF_Msk (0x5UL << AFIO_EXTICR3_EXTI9_PF_Pos) /*!< 0x00000050 */ 2409 #define AFIO_EXTICR3_EXTI9_PF AFIO_EXTICR3_EXTI9_PF_Msk /*!< PF[9] pin */ 2410 #define AFIO_EXTICR3_EXTI9_PG_Pos (5U) 2411 #define AFIO_EXTICR3_EXTI9_PG_Msk (0x3UL << AFIO_EXTICR3_EXTI9_PG_Pos) /*!< 0x00000060 */ 2412 #define AFIO_EXTICR3_EXTI9_PG AFIO_EXTICR3_EXTI9_PG_Msk /*!< PG[9] pin */ 2413 2414 /*!< EXTI10 configuration */ 2415 #define AFIO_EXTICR3_EXTI10_PA 0x00000000U /*!< PA[10] pin */ 2416 #define AFIO_EXTICR3_EXTI10_PB_Pos (8U) 2417 #define AFIO_EXTICR3_EXTI10_PB_Msk (0x1UL << AFIO_EXTICR3_EXTI10_PB_Pos) /*!< 0x00000100 */ 2418 #define AFIO_EXTICR3_EXTI10_PB AFIO_EXTICR3_EXTI10_PB_Msk /*!< PB[10] pin */ 2419 #define AFIO_EXTICR3_EXTI10_PC_Pos (9U) 2420 #define AFIO_EXTICR3_EXTI10_PC_Msk (0x1UL << AFIO_EXTICR3_EXTI10_PC_Pos) /*!< 0x00000200 */ 2421 #define AFIO_EXTICR3_EXTI10_PC AFIO_EXTICR3_EXTI10_PC_Msk /*!< PC[10] pin */ 2422 #define AFIO_EXTICR3_EXTI10_PD_Pos (8U) 2423 #define AFIO_EXTICR3_EXTI10_PD_Msk (0x3UL << AFIO_EXTICR3_EXTI10_PD_Pos) /*!< 0x00000300 */ 2424 #define AFIO_EXTICR3_EXTI10_PD AFIO_EXTICR3_EXTI10_PD_Msk /*!< PD[10] pin */ 2425 #define AFIO_EXTICR3_EXTI10_PE_Pos (10U) 2426 #define AFIO_EXTICR3_EXTI10_PE_Msk (0x1UL << AFIO_EXTICR3_EXTI10_PE_Pos) /*!< 0x00000400 */ 2427 #define AFIO_EXTICR3_EXTI10_PE AFIO_EXTICR3_EXTI10_PE_Msk /*!< PE[10] pin */ 2428 #define AFIO_EXTICR3_EXTI10_PF_Pos (8U) 2429 #define AFIO_EXTICR3_EXTI10_PF_Msk (0x5UL << AFIO_EXTICR3_EXTI10_PF_Pos) /*!< 0x00000500 */ 2430 #define AFIO_EXTICR3_EXTI10_PF AFIO_EXTICR3_EXTI10_PF_Msk /*!< PF[10] pin */ 2431 #define AFIO_EXTICR3_EXTI10_PG_Pos (9U) 2432 #define AFIO_EXTICR3_EXTI10_PG_Msk (0x3UL << AFIO_EXTICR3_EXTI10_PG_Pos) /*!< 0x00000600 */ 2433 #define AFIO_EXTICR3_EXTI10_PG AFIO_EXTICR3_EXTI10_PG_Msk /*!< PG[10] pin */ 2434 2435 /*!< EXTI11 configuration */ 2436 #define AFIO_EXTICR3_EXTI11_PA 0x00000000U /*!< PA[11] pin */ 2437 #define AFIO_EXTICR3_EXTI11_PB_Pos (12U) 2438 #define AFIO_EXTICR3_EXTI11_PB_Msk (0x1UL << AFIO_EXTICR3_EXTI11_PB_Pos) /*!< 0x00001000 */ 2439 #define AFIO_EXTICR3_EXTI11_PB AFIO_EXTICR3_EXTI11_PB_Msk /*!< PB[11] pin */ 2440 #define AFIO_EXTICR3_EXTI11_PC_Pos (13U) 2441 #define AFIO_EXTICR3_EXTI11_PC_Msk (0x1UL << AFIO_EXTICR3_EXTI11_PC_Pos) /*!< 0x00002000 */ 2442 #define AFIO_EXTICR3_EXTI11_PC AFIO_EXTICR3_EXTI11_PC_Msk /*!< PC[11] pin */ 2443 #define AFIO_EXTICR3_EXTI11_PD_Pos (12U) 2444 #define AFIO_EXTICR3_EXTI11_PD_Msk (0x3UL << AFIO_EXTICR3_EXTI11_PD_Pos) /*!< 0x00003000 */ 2445 #define AFIO_EXTICR3_EXTI11_PD AFIO_EXTICR3_EXTI11_PD_Msk /*!< PD[11] pin */ 2446 #define AFIO_EXTICR3_EXTI11_PE_Pos (14U) 2447 #define AFIO_EXTICR3_EXTI11_PE_Msk (0x1UL << AFIO_EXTICR3_EXTI11_PE_Pos) /*!< 0x00004000 */ 2448 #define AFIO_EXTICR3_EXTI11_PE AFIO_EXTICR3_EXTI11_PE_Msk /*!< PE[11] pin */ 2449 #define AFIO_EXTICR3_EXTI11_PF_Pos (12U) 2450 #define AFIO_EXTICR3_EXTI11_PF_Msk (0x5UL << AFIO_EXTICR3_EXTI11_PF_Pos) /*!< 0x00005000 */ 2451 #define AFIO_EXTICR3_EXTI11_PF AFIO_EXTICR3_EXTI11_PF_Msk /*!< PF[11] pin */ 2452 #define AFIO_EXTICR3_EXTI11_PG_Pos (13U) 2453 #define AFIO_EXTICR3_EXTI11_PG_Msk (0x3UL << AFIO_EXTICR3_EXTI11_PG_Pos) /*!< 0x00006000 */ 2454 #define AFIO_EXTICR3_EXTI11_PG AFIO_EXTICR3_EXTI11_PG_Msk /*!< PG[11] pin */ 2455 2456 /***************** Bit definition for AFIO_EXTICR4 register *****************/ 2457 #define AFIO_EXTICR4_EXTI12_Pos (0U) 2458 #define AFIO_EXTICR4_EXTI12_Msk (0xFUL << AFIO_EXTICR4_EXTI12_Pos) /*!< 0x0000000F */ 2459 #define AFIO_EXTICR4_EXTI12 AFIO_EXTICR4_EXTI12_Msk /*!< EXTI 12 configuration */ 2460 #define AFIO_EXTICR4_EXTI13_Pos (4U) 2461 #define AFIO_EXTICR4_EXTI13_Msk (0xFUL << AFIO_EXTICR4_EXTI13_Pos) /*!< 0x000000F0 */ 2462 #define AFIO_EXTICR4_EXTI13 AFIO_EXTICR4_EXTI13_Msk /*!< EXTI 13 configuration */ 2463 #define AFIO_EXTICR4_EXTI14_Pos (8U) 2464 #define AFIO_EXTICR4_EXTI14_Msk (0xFUL << AFIO_EXTICR4_EXTI14_Pos) /*!< 0x00000F00 */ 2465 #define AFIO_EXTICR4_EXTI14 AFIO_EXTICR4_EXTI14_Msk /*!< EXTI 14 configuration */ 2466 #define AFIO_EXTICR4_EXTI15_Pos (12U) 2467 #define AFIO_EXTICR4_EXTI15_Msk (0xFUL << AFIO_EXTICR4_EXTI15_Pos) /*!< 0x0000F000 */ 2468 #define AFIO_EXTICR4_EXTI15 AFIO_EXTICR4_EXTI15_Msk /*!< EXTI 15 configuration */ 2469 2470 /* EXTI12 configuration */ 2471 #define AFIO_EXTICR4_EXTI12_PA 0x00000000U /*!< PA[12] pin */ 2472 #define AFIO_EXTICR4_EXTI12_PB_Pos (0U) 2473 #define AFIO_EXTICR4_EXTI12_PB_Msk (0x1UL << AFIO_EXTICR4_EXTI12_PB_Pos) /*!< 0x00000001 */ 2474 #define AFIO_EXTICR4_EXTI12_PB AFIO_EXTICR4_EXTI12_PB_Msk /*!< PB[12] pin */ 2475 #define AFIO_EXTICR4_EXTI12_PC_Pos (1U) 2476 #define AFIO_EXTICR4_EXTI12_PC_Msk (0x1UL << AFIO_EXTICR4_EXTI12_PC_Pos) /*!< 0x00000002 */ 2477 #define AFIO_EXTICR4_EXTI12_PC AFIO_EXTICR4_EXTI12_PC_Msk /*!< PC[12] pin */ 2478 #define AFIO_EXTICR4_EXTI12_PD_Pos (0U) 2479 #define AFIO_EXTICR4_EXTI12_PD_Msk (0x3UL << AFIO_EXTICR4_EXTI12_PD_Pos) /*!< 0x00000003 */ 2480 #define AFIO_EXTICR4_EXTI12_PD AFIO_EXTICR4_EXTI12_PD_Msk /*!< PD[12] pin */ 2481 #define AFIO_EXTICR4_EXTI12_PE_Pos (2U) 2482 #define AFIO_EXTICR4_EXTI12_PE_Msk (0x1UL << AFIO_EXTICR4_EXTI12_PE_Pos) /*!< 0x00000004 */ 2483 #define AFIO_EXTICR4_EXTI12_PE AFIO_EXTICR4_EXTI12_PE_Msk /*!< PE[12] pin */ 2484 #define AFIO_EXTICR4_EXTI12_PF_Pos (0U) 2485 #define AFIO_EXTICR4_EXTI12_PF_Msk (0x5UL << AFIO_EXTICR4_EXTI12_PF_Pos) /*!< 0x00000005 */ 2486 #define AFIO_EXTICR4_EXTI12_PF AFIO_EXTICR4_EXTI12_PF_Msk /*!< PF[12] pin */ 2487 #define AFIO_EXTICR4_EXTI12_PG_Pos (1U) 2488 #define AFIO_EXTICR4_EXTI12_PG_Msk (0x3UL << AFIO_EXTICR4_EXTI12_PG_Pos) /*!< 0x00000006 */ 2489 #define AFIO_EXTICR4_EXTI12_PG AFIO_EXTICR4_EXTI12_PG_Msk /*!< PG[12] pin */ 2490 2491 /* EXTI13 configuration */ 2492 #define AFIO_EXTICR4_EXTI13_PA 0x00000000U /*!< PA[13] pin */ 2493 #define AFIO_EXTICR4_EXTI13_PB_Pos (4U) 2494 #define AFIO_EXTICR4_EXTI13_PB_Msk (0x1UL << AFIO_EXTICR4_EXTI13_PB_Pos) /*!< 0x00000010 */ 2495 #define AFIO_EXTICR4_EXTI13_PB AFIO_EXTICR4_EXTI13_PB_Msk /*!< PB[13] pin */ 2496 #define AFIO_EXTICR4_EXTI13_PC_Pos (5U) 2497 #define AFIO_EXTICR4_EXTI13_PC_Msk (0x1UL << AFIO_EXTICR4_EXTI13_PC_Pos) /*!< 0x00000020 */ 2498 #define AFIO_EXTICR4_EXTI13_PC AFIO_EXTICR4_EXTI13_PC_Msk /*!< PC[13] pin */ 2499 #define AFIO_EXTICR4_EXTI13_PD_Pos (4U) 2500 #define AFIO_EXTICR4_EXTI13_PD_Msk (0x3UL << AFIO_EXTICR4_EXTI13_PD_Pos) /*!< 0x00000030 */ 2501 #define AFIO_EXTICR4_EXTI13_PD AFIO_EXTICR4_EXTI13_PD_Msk /*!< PD[13] pin */ 2502 #define AFIO_EXTICR4_EXTI13_PE_Pos (6U) 2503 #define AFIO_EXTICR4_EXTI13_PE_Msk (0x1UL << AFIO_EXTICR4_EXTI13_PE_Pos) /*!< 0x00000040 */ 2504 #define AFIO_EXTICR4_EXTI13_PE AFIO_EXTICR4_EXTI13_PE_Msk /*!< PE[13] pin */ 2505 #define AFIO_EXTICR4_EXTI13_PF_Pos (4U) 2506 #define AFIO_EXTICR4_EXTI13_PF_Msk (0x5UL << AFIO_EXTICR4_EXTI13_PF_Pos) /*!< 0x00000050 */ 2507 #define AFIO_EXTICR4_EXTI13_PF AFIO_EXTICR4_EXTI13_PF_Msk /*!< PF[13] pin */ 2508 #define AFIO_EXTICR4_EXTI13_PG_Pos (5U) 2509 #define AFIO_EXTICR4_EXTI13_PG_Msk (0x3UL << AFIO_EXTICR4_EXTI13_PG_Pos) /*!< 0x00000060 */ 2510 #define AFIO_EXTICR4_EXTI13_PG AFIO_EXTICR4_EXTI13_PG_Msk /*!< PG[13] pin */ 2511 2512 /*!< EXTI14 configuration */ 2513 #define AFIO_EXTICR4_EXTI14_PA 0x00000000U /*!< PA[14] pin */ 2514 #define AFIO_EXTICR4_EXTI14_PB_Pos (8U) 2515 #define AFIO_EXTICR4_EXTI14_PB_Msk (0x1UL << AFIO_EXTICR4_EXTI14_PB_Pos) /*!< 0x00000100 */ 2516 #define AFIO_EXTICR4_EXTI14_PB AFIO_EXTICR4_EXTI14_PB_Msk /*!< PB[14] pin */ 2517 #define AFIO_EXTICR4_EXTI14_PC_Pos (9U) 2518 #define AFIO_EXTICR4_EXTI14_PC_Msk (0x1UL << AFIO_EXTICR4_EXTI14_PC_Pos) /*!< 0x00000200 */ 2519 #define AFIO_EXTICR4_EXTI14_PC AFIO_EXTICR4_EXTI14_PC_Msk /*!< PC[14] pin */ 2520 #define AFIO_EXTICR4_EXTI14_PD_Pos (8U) 2521 #define AFIO_EXTICR4_EXTI14_PD_Msk (0x3UL << AFIO_EXTICR4_EXTI14_PD_Pos) /*!< 0x00000300 */ 2522 #define AFIO_EXTICR4_EXTI14_PD AFIO_EXTICR4_EXTI14_PD_Msk /*!< PD[14] pin */ 2523 #define AFIO_EXTICR4_EXTI14_PE_Pos (10U) 2524 #define AFIO_EXTICR4_EXTI14_PE_Msk (0x1UL << AFIO_EXTICR4_EXTI14_PE_Pos) /*!< 0x00000400 */ 2525 #define AFIO_EXTICR4_EXTI14_PE AFIO_EXTICR4_EXTI14_PE_Msk /*!< PE[14] pin */ 2526 #define AFIO_EXTICR4_EXTI14_PF_Pos (8U) 2527 #define AFIO_EXTICR4_EXTI14_PF_Msk (0x5UL << AFIO_EXTICR4_EXTI14_PF_Pos) /*!< 0x00000500 */ 2528 #define AFIO_EXTICR4_EXTI14_PF AFIO_EXTICR4_EXTI14_PF_Msk /*!< PF[14] pin */ 2529 #define AFIO_EXTICR4_EXTI14_PG_Pos (9U) 2530 #define AFIO_EXTICR4_EXTI14_PG_Msk (0x3UL << AFIO_EXTICR4_EXTI14_PG_Pos) /*!< 0x00000600 */ 2531 #define AFIO_EXTICR4_EXTI14_PG AFIO_EXTICR4_EXTI14_PG_Msk /*!< PG[14] pin */ 2532 2533 /*!< EXTI15 configuration */ 2534 #define AFIO_EXTICR4_EXTI15_PA 0x00000000U /*!< PA[15] pin */ 2535 #define AFIO_EXTICR4_EXTI15_PB_Pos (12U) 2536 #define AFIO_EXTICR4_EXTI15_PB_Msk (0x1UL << AFIO_EXTICR4_EXTI15_PB_Pos) /*!< 0x00001000 */ 2537 #define AFIO_EXTICR4_EXTI15_PB AFIO_EXTICR4_EXTI15_PB_Msk /*!< PB[15] pin */ 2538 #define AFIO_EXTICR4_EXTI15_PC_Pos (13U) 2539 #define AFIO_EXTICR4_EXTI15_PC_Msk (0x1UL << AFIO_EXTICR4_EXTI15_PC_Pos) /*!< 0x00002000 */ 2540 #define AFIO_EXTICR4_EXTI15_PC AFIO_EXTICR4_EXTI15_PC_Msk /*!< PC[15] pin */ 2541 #define AFIO_EXTICR4_EXTI15_PD_Pos (12U) 2542 #define AFIO_EXTICR4_EXTI15_PD_Msk (0x3UL << AFIO_EXTICR4_EXTI15_PD_Pos) /*!< 0x00003000 */ 2543 #define AFIO_EXTICR4_EXTI15_PD AFIO_EXTICR4_EXTI15_PD_Msk /*!< PD[15] pin */ 2544 #define AFIO_EXTICR4_EXTI15_PE_Pos (14U) 2545 #define AFIO_EXTICR4_EXTI15_PE_Msk (0x1UL << AFIO_EXTICR4_EXTI15_PE_Pos) /*!< 0x00004000 */ 2546 #define AFIO_EXTICR4_EXTI15_PE AFIO_EXTICR4_EXTI15_PE_Msk /*!< PE[15] pin */ 2547 #define AFIO_EXTICR4_EXTI15_PF_Pos (12U) 2548 #define AFIO_EXTICR4_EXTI15_PF_Msk (0x5UL << AFIO_EXTICR4_EXTI15_PF_Pos) /*!< 0x00005000 */ 2549 #define AFIO_EXTICR4_EXTI15_PF AFIO_EXTICR4_EXTI15_PF_Msk /*!< PF[15] pin */ 2550 #define AFIO_EXTICR4_EXTI15_PG_Pos (13U) 2551 #define AFIO_EXTICR4_EXTI15_PG_Msk (0x3UL << AFIO_EXTICR4_EXTI15_PG_Pos) /*!< 0x00006000 */ 2552 #define AFIO_EXTICR4_EXTI15_PG AFIO_EXTICR4_EXTI15_PG_Msk /*!< PG[15] pin */ 2553 2554 /****************** Bit definition for AFIO_MAPR2 register ******************/ 2555 #define AFIO_MAPR2_TIM15_REMAP_Pos (0U) 2556 #define AFIO_MAPR2_TIM15_REMAP_Msk (0x1UL << AFIO_MAPR2_TIM15_REMAP_Pos) /*!< 0x00000001 */ 2557 #define AFIO_MAPR2_TIM15_REMAP AFIO_MAPR2_TIM15_REMAP_Msk /*!< TIM15 remapping */ 2558 #define AFIO_MAPR2_TIM16_REMAP_Pos (1U) 2559 #define AFIO_MAPR2_TIM16_REMAP_Msk (0x1UL << AFIO_MAPR2_TIM16_REMAP_Pos) /*!< 0x00000002 */ 2560 #define AFIO_MAPR2_TIM16_REMAP AFIO_MAPR2_TIM16_REMAP_Msk /*!< TIM16 remapping */ 2561 #define AFIO_MAPR2_TIM17_REMAP_Pos (2U) 2562 #define AFIO_MAPR2_TIM17_REMAP_Msk (0x1UL << AFIO_MAPR2_TIM17_REMAP_Pos) /*!< 0x00000004 */ 2563 #define AFIO_MAPR2_TIM17_REMAP AFIO_MAPR2_TIM17_REMAP_Msk /*!< TIM17 remapping */ 2564 #define AFIO_MAPR2_CEC_REMAP_Pos (3U) 2565 #define AFIO_MAPR2_CEC_REMAP_Msk (0x1UL << AFIO_MAPR2_CEC_REMAP_Pos) /*!< 0x00000008 */ 2566 #define AFIO_MAPR2_CEC_REMAP AFIO_MAPR2_CEC_REMAP_Msk /*!< CEC remapping */ 2567 #define AFIO_MAPR2_TIM1_DMA_REMAP_Pos (4U) 2568 #define AFIO_MAPR2_TIM1_DMA_REMAP_Msk (0x1UL << AFIO_MAPR2_TIM1_DMA_REMAP_Pos) /*!< 0x00000010 */ 2569 #define AFIO_MAPR2_TIM1_DMA_REMAP AFIO_MAPR2_TIM1_DMA_REMAP_Msk /*!< TIM1_DMA remapping */ 2570 2571 #define AFIO_MAPR2_TIM67_DAC_DMA_REMAP_Pos (11U) 2572 #define AFIO_MAPR2_TIM67_DAC_DMA_REMAP_Msk (0x1UL << AFIO_MAPR2_TIM67_DAC_DMA_REMAP_Pos) /*!< 0x00000800 */ 2573 #define AFIO_MAPR2_TIM67_DAC_DMA_REMAP AFIO_MAPR2_TIM67_DAC_DMA_REMAP_Msk /*!< TIM6/TIM7 and DAC DMA remapping */ 2574 2575 2576 /******************************************************************************/ 2577 /* */ 2578 /* External Interrupt/Event Controller */ 2579 /* */ 2580 /******************************************************************************/ 2581 2582 /******************* Bit definition for EXTI_IMR register *******************/ 2583 #define EXTI_IMR_MR0_Pos (0U) 2584 #define EXTI_IMR_MR0_Msk (0x1UL << EXTI_IMR_MR0_Pos) /*!< 0x00000001 */ 2585 #define EXTI_IMR_MR0 EXTI_IMR_MR0_Msk /*!< Interrupt Mask on line 0 */ 2586 #define EXTI_IMR_MR1_Pos (1U) 2587 #define EXTI_IMR_MR1_Msk (0x1UL << EXTI_IMR_MR1_Pos) /*!< 0x00000002 */ 2588 #define EXTI_IMR_MR1 EXTI_IMR_MR1_Msk /*!< Interrupt Mask on line 1 */ 2589 #define EXTI_IMR_MR2_Pos (2U) 2590 #define EXTI_IMR_MR2_Msk (0x1UL << EXTI_IMR_MR2_Pos) /*!< 0x00000004 */ 2591 #define EXTI_IMR_MR2 EXTI_IMR_MR2_Msk /*!< Interrupt Mask on line 2 */ 2592 #define EXTI_IMR_MR3_Pos (3U) 2593 #define EXTI_IMR_MR3_Msk (0x1UL << EXTI_IMR_MR3_Pos) /*!< 0x00000008 */ 2594 #define EXTI_IMR_MR3 EXTI_IMR_MR3_Msk /*!< Interrupt Mask on line 3 */ 2595 #define EXTI_IMR_MR4_Pos (4U) 2596 #define EXTI_IMR_MR4_Msk (0x1UL << EXTI_IMR_MR4_Pos) /*!< 0x00000010 */ 2597 #define EXTI_IMR_MR4 EXTI_IMR_MR4_Msk /*!< Interrupt Mask on line 4 */ 2598 #define EXTI_IMR_MR5_Pos (5U) 2599 #define EXTI_IMR_MR5_Msk (0x1UL << EXTI_IMR_MR5_Pos) /*!< 0x00000020 */ 2600 #define EXTI_IMR_MR5 EXTI_IMR_MR5_Msk /*!< Interrupt Mask on line 5 */ 2601 #define EXTI_IMR_MR6_Pos (6U) 2602 #define EXTI_IMR_MR6_Msk (0x1UL << EXTI_IMR_MR6_Pos) /*!< 0x00000040 */ 2603 #define EXTI_IMR_MR6 EXTI_IMR_MR6_Msk /*!< Interrupt Mask on line 6 */ 2604 #define EXTI_IMR_MR7_Pos (7U) 2605 #define EXTI_IMR_MR7_Msk (0x1UL << EXTI_IMR_MR7_Pos) /*!< 0x00000080 */ 2606 #define EXTI_IMR_MR7 EXTI_IMR_MR7_Msk /*!< Interrupt Mask on line 7 */ 2607 #define EXTI_IMR_MR8_Pos (8U) 2608 #define EXTI_IMR_MR8_Msk (0x1UL << EXTI_IMR_MR8_Pos) /*!< 0x00000100 */ 2609 #define EXTI_IMR_MR8 EXTI_IMR_MR8_Msk /*!< Interrupt Mask on line 8 */ 2610 #define EXTI_IMR_MR9_Pos (9U) 2611 #define EXTI_IMR_MR9_Msk (0x1UL << EXTI_IMR_MR9_Pos) /*!< 0x00000200 */ 2612 #define EXTI_IMR_MR9 EXTI_IMR_MR9_Msk /*!< Interrupt Mask on line 9 */ 2613 #define EXTI_IMR_MR10_Pos (10U) 2614 #define EXTI_IMR_MR10_Msk (0x1UL << EXTI_IMR_MR10_Pos) /*!< 0x00000400 */ 2615 #define EXTI_IMR_MR10 EXTI_IMR_MR10_Msk /*!< Interrupt Mask on line 10 */ 2616 #define EXTI_IMR_MR11_Pos (11U) 2617 #define EXTI_IMR_MR11_Msk (0x1UL << EXTI_IMR_MR11_Pos) /*!< 0x00000800 */ 2618 #define EXTI_IMR_MR11 EXTI_IMR_MR11_Msk /*!< Interrupt Mask on line 11 */ 2619 #define EXTI_IMR_MR12_Pos (12U) 2620 #define EXTI_IMR_MR12_Msk (0x1UL << EXTI_IMR_MR12_Pos) /*!< 0x00001000 */ 2621 #define EXTI_IMR_MR12 EXTI_IMR_MR12_Msk /*!< Interrupt Mask on line 12 */ 2622 #define EXTI_IMR_MR13_Pos (13U) 2623 #define EXTI_IMR_MR13_Msk (0x1UL << EXTI_IMR_MR13_Pos) /*!< 0x00002000 */ 2624 #define EXTI_IMR_MR13 EXTI_IMR_MR13_Msk /*!< Interrupt Mask on line 13 */ 2625 #define EXTI_IMR_MR14_Pos (14U) 2626 #define EXTI_IMR_MR14_Msk (0x1UL << EXTI_IMR_MR14_Pos) /*!< 0x00004000 */ 2627 #define EXTI_IMR_MR14 EXTI_IMR_MR14_Msk /*!< Interrupt Mask on line 14 */ 2628 #define EXTI_IMR_MR15_Pos (15U) 2629 #define EXTI_IMR_MR15_Msk (0x1UL << EXTI_IMR_MR15_Pos) /*!< 0x00008000 */ 2630 #define EXTI_IMR_MR15 EXTI_IMR_MR15_Msk /*!< Interrupt Mask on line 15 */ 2631 #define EXTI_IMR_MR16_Pos (16U) 2632 #define EXTI_IMR_MR16_Msk (0x1UL << EXTI_IMR_MR16_Pos) /*!< 0x00010000 */ 2633 #define EXTI_IMR_MR16 EXTI_IMR_MR16_Msk /*!< Interrupt Mask on line 16 */ 2634 #define EXTI_IMR_MR17_Pos (17U) 2635 #define EXTI_IMR_MR17_Msk (0x1UL << EXTI_IMR_MR17_Pos) /*!< 0x00020000 */ 2636 #define EXTI_IMR_MR17 EXTI_IMR_MR17_Msk /*!< Interrupt Mask on line 17 */ 2637 2638 /* References Defines */ 2639 #define EXTI_IMR_IM0 EXTI_IMR_MR0 2640 #define EXTI_IMR_IM1 EXTI_IMR_MR1 2641 #define EXTI_IMR_IM2 EXTI_IMR_MR2 2642 #define EXTI_IMR_IM3 EXTI_IMR_MR3 2643 #define EXTI_IMR_IM4 EXTI_IMR_MR4 2644 #define EXTI_IMR_IM5 EXTI_IMR_MR5 2645 #define EXTI_IMR_IM6 EXTI_IMR_MR6 2646 #define EXTI_IMR_IM7 EXTI_IMR_MR7 2647 #define EXTI_IMR_IM8 EXTI_IMR_MR8 2648 #define EXTI_IMR_IM9 EXTI_IMR_MR9 2649 #define EXTI_IMR_IM10 EXTI_IMR_MR10 2650 #define EXTI_IMR_IM11 EXTI_IMR_MR11 2651 #define EXTI_IMR_IM12 EXTI_IMR_MR12 2652 #define EXTI_IMR_IM13 EXTI_IMR_MR13 2653 #define EXTI_IMR_IM14 EXTI_IMR_MR14 2654 #define EXTI_IMR_IM15 EXTI_IMR_MR15 2655 #define EXTI_IMR_IM16 EXTI_IMR_MR16 2656 #define EXTI_IMR_IM17 EXTI_IMR_MR17 2657 #define EXTI_IMR_IM 0x0003FFFFU /*!< Interrupt Mask All */ 2658 2659 /******************* Bit definition for EXTI_EMR register *******************/ 2660 #define EXTI_EMR_MR0_Pos (0U) 2661 #define EXTI_EMR_MR0_Msk (0x1UL << EXTI_EMR_MR0_Pos) /*!< 0x00000001 */ 2662 #define EXTI_EMR_MR0 EXTI_EMR_MR0_Msk /*!< Event Mask on line 0 */ 2663 #define EXTI_EMR_MR1_Pos (1U) 2664 #define EXTI_EMR_MR1_Msk (0x1UL << EXTI_EMR_MR1_Pos) /*!< 0x00000002 */ 2665 #define EXTI_EMR_MR1 EXTI_EMR_MR1_Msk /*!< Event Mask on line 1 */ 2666 #define EXTI_EMR_MR2_Pos (2U) 2667 #define EXTI_EMR_MR2_Msk (0x1UL << EXTI_EMR_MR2_Pos) /*!< 0x00000004 */ 2668 #define EXTI_EMR_MR2 EXTI_EMR_MR2_Msk /*!< Event Mask on line 2 */ 2669 #define EXTI_EMR_MR3_Pos (3U) 2670 #define EXTI_EMR_MR3_Msk (0x1UL << EXTI_EMR_MR3_Pos) /*!< 0x00000008 */ 2671 #define EXTI_EMR_MR3 EXTI_EMR_MR3_Msk /*!< Event Mask on line 3 */ 2672 #define EXTI_EMR_MR4_Pos (4U) 2673 #define EXTI_EMR_MR4_Msk (0x1UL << EXTI_EMR_MR4_Pos) /*!< 0x00000010 */ 2674 #define EXTI_EMR_MR4 EXTI_EMR_MR4_Msk /*!< Event Mask on line 4 */ 2675 #define EXTI_EMR_MR5_Pos (5U) 2676 #define EXTI_EMR_MR5_Msk (0x1UL << EXTI_EMR_MR5_Pos) /*!< 0x00000020 */ 2677 #define EXTI_EMR_MR5 EXTI_EMR_MR5_Msk /*!< Event Mask on line 5 */ 2678 #define EXTI_EMR_MR6_Pos (6U) 2679 #define EXTI_EMR_MR6_Msk (0x1UL << EXTI_EMR_MR6_Pos) /*!< 0x00000040 */ 2680 #define EXTI_EMR_MR6 EXTI_EMR_MR6_Msk /*!< Event Mask on line 6 */ 2681 #define EXTI_EMR_MR7_Pos (7U) 2682 #define EXTI_EMR_MR7_Msk (0x1UL << EXTI_EMR_MR7_Pos) /*!< 0x00000080 */ 2683 #define EXTI_EMR_MR7 EXTI_EMR_MR7_Msk /*!< Event Mask on line 7 */ 2684 #define EXTI_EMR_MR8_Pos (8U) 2685 #define EXTI_EMR_MR8_Msk (0x1UL << EXTI_EMR_MR8_Pos) /*!< 0x00000100 */ 2686 #define EXTI_EMR_MR8 EXTI_EMR_MR8_Msk /*!< Event Mask on line 8 */ 2687 #define EXTI_EMR_MR9_Pos (9U) 2688 #define EXTI_EMR_MR9_Msk (0x1UL << EXTI_EMR_MR9_Pos) /*!< 0x00000200 */ 2689 #define EXTI_EMR_MR9 EXTI_EMR_MR9_Msk /*!< Event Mask on line 9 */ 2690 #define EXTI_EMR_MR10_Pos (10U) 2691 #define EXTI_EMR_MR10_Msk (0x1UL << EXTI_EMR_MR10_Pos) /*!< 0x00000400 */ 2692 #define EXTI_EMR_MR10 EXTI_EMR_MR10_Msk /*!< Event Mask on line 10 */ 2693 #define EXTI_EMR_MR11_Pos (11U) 2694 #define EXTI_EMR_MR11_Msk (0x1UL << EXTI_EMR_MR11_Pos) /*!< 0x00000800 */ 2695 #define EXTI_EMR_MR11 EXTI_EMR_MR11_Msk /*!< Event Mask on line 11 */ 2696 #define EXTI_EMR_MR12_Pos (12U) 2697 #define EXTI_EMR_MR12_Msk (0x1UL << EXTI_EMR_MR12_Pos) /*!< 0x00001000 */ 2698 #define EXTI_EMR_MR12 EXTI_EMR_MR12_Msk /*!< Event Mask on line 12 */ 2699 #define EXTI_EMR_MR13_Pos (13U) 2700 #define EXTI_EMR_MR13_Msk (0x1UL << EXTI_EMR_MR13_Pos) /*!< 0x00002000 */ 2701 #define EXTI_EMR_MR13 EXTI_EMR_MR13_Msk /*!< Event Mask on line 13 */ 2702 #define EXTI_EMR_MR14_Pos (14U) 2703 #define EXTI_EMR_MR14_Msk (0x1UL << EXTI_EMR_MR14_Pos) /*!< 0x00004000 */ 2704 #define EXTI_EMR_MR14 EXTI_EMR_MR14_Msk /*!< Event Mask on line 14 */ 2705 #define EXTI_EMR_MR15_Pos (15U) 2706 #define EXTI_EMR_MR15_Msk (0x1UL << EXTI_EMR_MR15_Pos) /*!< 0x00008000 */ 2707 #define EXTI_EMR_MR15 EXTI_EMR_MR15_Msk /*!< Event Mask on line 15 */ 2708 #define EXTI_EMR_MR16_Pos (16U) 2709 #define EXTI_EMR_MR16_Msk (0x1UL << EXTI_EMR_MR16_Pos) /*!< 0x00010000 */ 2710 #define EXTI_EMR_MR16 EXTI_EMR_MR16_Msk /*!< Event Mask on line 16 */ 2711 #define EXTI_EMR_MR17_Pos (17U) 2712 #define EXTI_EMR_MR17_Msk (0x1UL << EXTI_EMR_MR17_Pos) /*!< 0x00020000 */ 2713 #define EXTI_EMR_MR17 EXTI_EMR_MR17_Msk /*!< Event Mask on line 17 */ 2714 2715 /* References Defines */ 2716 #define EXTI_EMR_EM0 EXTI_EMR_MR0 2717 #define EXTI_EMR_EM1 EXTI_EMR_MR1 2718 #define EXTI_EMR_EM2 EXTI_EMR_MR2 2719 #define EXTI_EMR_EM3 EXTI_EMR_MR3 2720 #define EXTI_EMR_EM4 EXTI_EMR_MR4 2721 #define EXTI_EMR_EM5 EXTI_EMR_MR5 2722 #define EXTI_EMR_EM6 EXTI_EMR_MR6 2723 #define EXTI_EMR_EM7 EXTI_EMR_MR7 2724 #define EXTI_EMR_EM8 EXTI_EMR_MR8 2725 #define EXTI_EMR_EM9 EXTI_EMR_MR9 2726 #define EXTI_EMR_EM10 EXTI_EMR_MR10 2727 #define EXTI_EMR_EM11 EXTI_EMR_MR11 2728 #define EXTI_EMR_EM12 EXTI_EMR_MR12 2729 #define EXTI_EMR_EM13 EXTI_EMR_MR13 2730 #define EXTI_EMR_EM14 EXTI_EMR_MR14 2731 #define EXTI_EMR_EM15 EXTI_EMR_MR15 2732 #define EXTI_EMR_EM16 EXTI_EMR_MR16 2733 #define EXTI_EMR_EM17 EXTI_EMR_MR17 2734 2735 /****************** Bit definition for EXTI_RTSR register *******************/ 2736 #define EXTI_RTSR_TR0_Pos (0U) 2737 #define EXTI_RTSR_TR0_Msk (0x1UL << EXTI_RTSR_TR0_Pos) /*!< 0x00000001 */ 2738 #define EXTI_RTSR_TR0 EXTI_RTSR_TR0_Msk /*!< Rising trigger event configuration bit of line 0 */ 2739 #define EXTI_RTSR_TR1_Pos (1U) 2740 #define EXTI_RTSR_TR1_Msk (0x1UL << EXTI_RTSR_TR1_Pos) /*!< 0x00000002 */ 2741 #define EXTI_RTSR_TR1 EXTI_RTSR_TR1_Msk /*!< Rising trigger event configuration bit of line 1 */ 2742 #define EXTI_RTSR_TR2_Pos (2U) 2743 #define EXTI_RTSR_TR2_Msk (0x1UL << EXTI_RTSR_TR2_Pos) /*!< 0x00000004 */ 2744 #define EXTI_RTSR_TR2 EXTI_RTSR_TR2_Msk /*!< Rising trigger event configuration bit of line 2 */ 2745 #define EXTI_RTSR_TR3_Pos (3U) 2746 #define EXTI_RTSR_TR3_Msk (0x1UL << EXTI_RTSR_TR3_Pos) /*!< 0x00000008 */ 2747 #define EXTI_RTSR_TR3 EXTI_RTSR_TR3_Msk /*!< Rising trigger event configuration bit of line 3 */ 2748 #define EXTI_RTSR_TR4_Pos (4U) 2749 #define EXTI_RTSR_TR4_Msk (0x1UL << EXTI_RTSR_TR4_Pos) /*!< 0x00000010 */ 2750 #define EXTI_RTSR_TR4 EXTI_RTSR_TR4_Msk /*!< Rising trigger event configuration bit of line 4 */ 2751 #define EXTI_RTSR_TR5_Pos (5U) 2752 #define EXTI_RTSR_TR5_Msk (0x1UL << EXTI_RTSR_TR5_Pos) /*!< 0x00000020 */ 2753 #define EXTI_RTSR_TR5 EXTI_RTSR_TR5_Msk /*!< Rising trigger event configuration bit of line 5 */ 2754 #define EXTI_RTSR_TR6_Pos (6U) 2755 #define EXTI_RTSR_TR6_Msk (0x1UL << EXTI_RTSR_TR6_Pos) /*!< 0x00000040 */ 2756 #define EXTI_RTSR_TR6 EXTI_RTSR_TR6_Msk /*!< Rising trigger event configuration bit of line 6 */ 2757 #define EXTI_RTSR_TR7_Pos (7U) 2758 #define EXTI_RTSR_TR7_Msk (0x1UL << EXTI_RTSR_TR7_Pos) /*!< 0x00000080 */ 2759 #define EXTI_RTSR_TR7 EXTI_RTSR_TR7_Msk /*!< Rising trigger event configuration bit of line 7 */ 2760 #define EXTI_RTSR_TR8_Pos (8U) 2761 #define EXTI_RTSR_TR8_Msk (0x1UL << EXTI_RTSR_TR8_Pos) /*!< 0x00000100 */ 2762 #define EXTI_RTSR_TR8 EXTI_RTSR_TR8_Msk /*!< Rising trigger event configuration bit of line 8 */ 2763 #define EXTI_RTSR_TR9_Pos (9U) 2764 #define EXTI_RTSR_TR9_Msk (0x1UL << EXTI_RTSR_TR9_Pos) /*!< 0x00000200 */ 2765 #define EXTI_RTSR_TR9 EXTI_RTSR_TR9_Msk /*!< Rising trigger event configuration bit of line 9 */ 2766 #define EXTI_RTSR_TR10_Pos (10U) 2767 #define EXTI_RTSR_TR10_Msk (0x1UL << EXTI_RTSR_TR10_Pos) /*!< 0x00000400 */ 2768 #define EXTI_RTSR_TR10 EXTI_RTSR_TR10_Msk /*!< Rising trigger event configuration bit of line 10 */ 2769 #define EXTI_RTSR_TR11_Pos (11U) 2770 #define EXTI_RTSR_TR11_Msk (0x1UL << EXTI_RTSR_TR11_Pos) /*!< 0x00000800 */ 2771 #define EXTI_RTSR_TR11 EXTI_RTSR_TR11_Msk /*!< Rising trigger event configuration bit of line 11 */ 2772 #define EXTI_RTSR_TR12_Pos (12U) 2773 #define EXTI_RTSR_TR12_Msk (0x1UL << EXTI_RTSR_TR12_Pos) /*!< 0x00001000 */ 2774 #define EXTI_RTSR_TR12 EXTI_RTSR_TR12_Msk /*!< Rising trigger event configuration bit of line 12 */ 2775 #define EXTI_RTSR_TR13_Pos (13U) 2776 #define EXTI_RTSR_TR13_Msk (0x1UL << EXTI_RTSR_TR13_Pos) /*!< 0x00002000 */ 2777 #define EXTI_RTSR_TR13 EXTI_RTSR_TR13_Msk /*!< Rising trigger event configuration bit of line 13 */ 2778 #define EXTI_RTSR_TR14_Pos (14U) 2779 #define EXTI_RTSR_TR14_Msk (0x1UL << EXTI_RTSR_TR14_Pos) /*!< 0x00004000 */ 2780 #define EXTI_RTSR_TR14 EXTI_RTSR_TR14_Msk /*!< Rising trigger event configuration bit of line 14 */ 2781 #define EXTI_RTSR_TR15_Pos (15U) 2782 #define EXTI_RTSR_TR15_Msk (0x1UL << EXTI_RTSR_TR15_Pos) /*!< 0x00008000 */ 2783 #define EXTI_RTSR_TR15 EXTI_RTSR_TR15_Msk /*!< Rising trigger event configuration bit of line 15 */ 2784 #define EXTI_RTSR_TR16_Pos (16U) 2785 #define EXTI_RTSR_TR16_Msk (0x1UL << EXTI_RTSR_TR16_Pos) /*!< 0x00010000 */ 2786 #define EXTI_RTSR_TR16 EXTI_RTSR_TR16_Msk /*!< Rising trigger event configuration bit of line 16 */ 2787 #define EXTI_RTSR_TR17_Pos (17U) 2788 #define EXTI_RTSR_TR17_Msk (0x1UL << EXTI_RTSR_TR17_Pos) /*!< 0x00020000 */ 2789 #define EXTI_RTSR_TR17 EXTI_RTSR_TR17_Msk /*!< Rising trigger event configuration bit of line 17 */ 2790 2791 /* References Defines */ 2792 #define EXTI_RTSR_RT0 EXTI_RTSR_TR0 2793 #define EXTI_RTSR_RT1 EXTI_RTSR_TR1 2794 #define EXTI_RTSR_RT2 EXTI_RTSR_TR2 2795 #define EXTI_RTSR_RT3 EXTI_RTSR_TR3 2796 #define EXTI_RTSR_RT4 EXTI_RTSR_TR4 2797 #define EXTI_RTSR_RT5 EXTI_RTSR_TR5 2798 #define EXTI_RTSR_RT6 EXTI_RTSR_TR6 2799 #define EXTI_RTSR_RT7 EXTI_RTSR_TR7 2800 #define EXTI_RTSR_RT8 EXTI_RTSR_TR8 2801 #define EXTI_RTSR_RT9 EXTI_RTSR_TR9 2802 #define EXTI_RTSR_RT10 EXTI_RTSR_TR10 2803 #define EXTI_RTSR_RT11 EXTI_RTSR_TR11 2804 #define EXTI_RTSR_RT12 EXTI_RTSR_TR12 2805 #define EXTI_RTSR_RT13 EXTI_RTSR_TR13 2806 #define EXTI_RTSR_RT14 EXTI_RTSR_TR14 2807 #define EXTI_RTSR_RT15 EXTI_RTSR_TR15 2808 #define EXTI_RTSR_RT16 EXTI_RTSR_TR16 2809 #define EXTI_RTSR_RT17 EXTI_RTSR_TR17 2810 2811 /****************** Bit definition for EXTI_FTSR register *******************/ 2812 #define EXTI_FTSR_TR0_Pos (0U) 2813 #define EXTI_FTSR_TR0_Msk (0x1UL << EXTI_FTSR_TR0_Pos) /*!< 0x00000001 */ 2814 #define EXTI_FTSR_TR0 EXTI_FTSR_TR0_Msk /*!< Falling trigger event configuration bit of line 0 */ 2815 #define EXTI_FTSR_TR1_Pos (1U) 2816 #define EXTI_FTSR_TR1_Msk (0x1UL << EXTI_FTSR_TR1_Pos) /*!< 0x00000002 */ 2817 #define EXTI_FTSR_TR1 EXTI_FTSR_TR1_Msk /*!< Falling trigger event configuration bit of line 1 */ 2818 #define EXTI_FTSR_TR2_Pos (2U) 2819 #define EXTI_FTSR_TR2_Msk (0x1UL << EXTI_FTSR_TR2_Pos) /*!< 0x00000004 */ 2820 #define EXTI_FTSR_TR2 EXTI_FTSR_TR2_Msk /*!< Falling trigger event configuration bit of line 2 */ 2821 #define EXTI_FTSR_TR3_Pos (3U) 2822 #define EXTI_FTSR_TR3_Msk (0x1UL << EXTI_FTSR_TR3_Pos) /*!< 0x00000008 */ 2823 #define EXTI_FTSR_TR3 EXTI_FTSR_TR3_Msk /*!< Falling trigger event configuration bit of line 3 */ 2824 #define EXTI_FTSR_TR4_Pos (4U) 2825 #define EXTI_FTSR_TR4_Msk (0x1UL << EXTI_FTSR_TR4_Pos) /*!< 0x00000010 */ 2826 #define EXTI_FTSR_TR4 EXTI_FTSR_TR4_Msk /*!< Falling trigger event configuration bit of line 4 */ 2827 #define EXTI_FTSR_TR5_Pos (5U) 2828 #define EXTI_FTSR_TR5_Msk (0x1UL << EXTI_FTSR_TR5_Pos) /*!< 0x00000020 */ 2829 #define EXTI_FTSR_TR5 EXTI_FTSR_TR5_Msk /*!< Falling trigger event configuration bit of line 5 */ 2830 #define EXTI_FTSR_TR6_Pos (6U) 2831 #define EXTI_FTSR_TR6_Msk (0x1UL << EXTI_FTSR_TR6_Pos) /*!< 0x00000040 */ 2832 #define EXTI_FTSR_TR6 EXTI_FTSR_TR6_Msk /*!< Falling trigger event configuration bit of line 6 */ 2833 #define EXTI_FTSR_TR7_Pos (7U) 2834 #define EXTI_FTSR_TR7_Msk (0x1UL << EXTI_FTSR_TR7_Pos) /*!< 0x00000080 */ 2835 #define EXTI_FTSR_TR7 EXTI_FTSR_TR7_Msk /*!< Falling trigger event configuration bit of line 7 */ 2836 #define EXTI_FTSR_TR8_Pos (8U) 2837 #define EXTI_FTSR_TR8_Msk (0x1UL << EXTI_FTSR_TR8_Pos) /*!< 0x00000100 */ 2838 #define EXTI_FTSR_TR8 EXTI_FTSR_TR8_Msk /*!< Falling trigger event configuration bit of line 8 */ 2839 #define EXTI_FTSR_TR9_Pos (9U) 2840 #define EXTI_FTSR_TR9_Msk (0x1UL << EXTI_FTSR_TR9_Pos) /*!< 0x00000200 */ 2841 #define EXTI_FTSR_TR9 EXTI_FTSR_TR9_Msk /*!< Falling trigger event configuration bit of line 9 */ 2842 #define EXTI_FTSR_TR10_Pos (10U) 2843 #define EXTI_FTSR_TR10_Msk (0x1UL << EXTI_FTSR_TR10_Pos) /*!< 0x00000400 */ 2844 #define EXTI_FTSR_TR10 EXTI_FTSR_TR10_Msk /*!< Falling trigger event configuration bit of line 10 */ 2845 #define EXTI_FTSR_TR11_Pos (11U) 2846 #define EXTI_FTSR_TR11_Msk (0x1UL << EXTI_FTSR_TR11_Pos) /*!< 0x00000800 */ 2847 #define EXTI_FTSR_TR11 EXTI_FTSR_TR11_Msk /*!< Falling trigger event configuration bit of line 11 */ 2848 #define EXTI_FTSR_TR12_Pos (12U) 2849 #define EXTI_FTSR_TR12_Msk (0x1UL << EXTI_FTSR_TR12_Pos) /*!< 0x00001000 */ 2850 #define EXTI_FTSR_TR12 EXTI_FTSR_TR12_Msk /*!< Falling trigger event configuration bit of line 12 */ 2851 #define EXTI_FTSR_TR13_Pos (13U) 2852 #define EXTI_FTSR_TR13_Msk (0x1UL << EXTI_FTSR_TR13_Pos) /*!< 0x00002000 */ 2853 #define EXTI_FTSR_TR13 EXTI_FTSR_TR13_Msk /*!< Falling trigger event configuration bit of line 13 */ 2854 #define EXTI_FTSR_TR14_Pos (14U) 2855 #define EXTI_FTSR_TR14_Msk (0x1UL << EXTI_FTSR_TR14_Pos) /*!< 0x00004000 */ 2856 #define EXTI_FTSR_TR14 EXTI_FTSR_TR14_Msk /*!< Falling trigger event configuration bit of line 14 */ 2857 #define EXTI_FTSR_TR15_Pos (15U) 2858 #define EXTI_FTSR_TR15_Msk (0x1UL << EXTI_FTSR_TR15_Pos) /*!< 0x00008000 */ 2859 #define EXTI_FTSR_TR15 EXTI_FTSR_TR15_Msk /*!< Falling trigger event configuration bit of line 15 */ 2860 #define EXTI_FTSR_TR16_Pos (16U) 2861 #define EXTI_FTSR_TR16_Msk (0x1UL << EXTI_FTSR_TR16_Pos) /*!< 0x00010000 */ 2862 #define EXTI_FTSR_TR16 EXTI_FTSR_TR16_Msk /*!< Falling trigger event configuration bit of line 16 */ 2863 #define EXTI_FTSR_TR17_Pos (17U) 2864 #define EXTI_FTSR_TR17_Msk (0x1UL << EXTI_FTSR_TR17_Pos) /*!< 0x00020000 */ 2865 #define EXTI_FTSR_TR17 EXTI_FTSR_TR17_Msk /*!< Falling trigger event configuration bit of line 17 */ 2866 2867 /* References Defines */ 2868 #define EXTI_FTSR_FT0 EXTI_FTSR_TR0 2869 #define EXTI_FTSR_FT1 EXTI_FTSR_TR1 2870 #define EXTI_FTSR_FT2 EXTI_FTSR_TR2 2871 #define EXTI_FTSR_FT3 EXTI_FTSR_TR3 2872 #define EXTI_FTSR_FT4 EXTI_FTSR_TR4 2873 #define EXTI_FTSR_FT5 EXTI_FTSR_TR5 2874 #define EXTI_FTSR_FT6 EXTI_FTSR_TR6 2875 #define EXTI_FTSR_FT7 EXTI_FTSR_TR7 2876 #define EXTI_FTSR_FT8 EXTI_FTSR_TR8 2877 #define EXTI_FTSR_FT9 EXTI_FTSR_TR9 2878 #define EXTI_FTSR_FT10 EXTI_FTSR_TR10 2879 #define EXTI_FTSR_FT11 EXTI_FTSR_TR11 2880 #define EXTI_FTSR_FT12 EXTI_FTSR_TR12 2881 #define EXTI_FTSR_FT13 EXTI_FTSR_TR13 2882 #define EXTI_FTSR_FT14 EXTI_FTSR_TR14 2883 #define EXTI_FTSR_FT15 EXTI_FTSR_TR15 2884 #define EXTI_FTSR_FT16 EXTI_FTSR_TR16 2885 #define EXTI_FTSR_FT17 EXTI_FTSR_TR17 2886 2887 /****************** Bit definition for EXTI_SWIER register ******************/ 2888 #define EXTI_SWIER_SWIER0_Pos (0U) 2889 #define EXTI_SWIER_SWIER0_Msk (0x1UL << EXTI_SWIER_SWIER0_Pos) /*!< 0x00000001 */ 2890 #define EXTI_SWIER_SWIER0 EXTI_SWIER_SWIER0_Msk /*!< Software Interrupt on line 0 */ 2891 #define EXTI_SWIER_SWIER1_Pos (1U) 2892 #define EXTI_SWIER_SWIER1_Msk (0x1UL << EXTI_SWIER_SWIER1_Pos) /*!< 0x00000002 */ 2893 #define EXTI_SWIER_SWIER1 EXTI_SWIER_SWIER1_Msk /*!< Software Interrupt on line 1 */ 2894 #define EXTI_SWIER_SWIER2_Pos (2U) 2895 #define EXTI_SWIER_SWIER2_Msk (0x1UL << EXTI_SWIER_SWIER2_Pos) /*!< 0x00000004 */ 2896 #define EXTI_SWIER_SWIER2 EXTI_SWIER_SWIER2_Msk /*!< Software Interrupt on line 2 */ 2897 #define EXTI_SWIER_SWIER3_Pos (3U) 2898 #define EXTI_SWIER_SWIER3_Msk (0x1UL << EXTI_SWIER_SWIER3_Pos) /*!< 0x00000008 */ 2899 #define EXTI_SWIER_SWIER3 EXTI_SWIER_SWIER3_Msk /*!< Software Interrupt on line 3 */ 2900 #define EXTI_SWIER_SWIER4_Pos (4U) 2901 #define EXTI_SWIER_SWIER4_Msk (0x1UL << EXTI_SWIER_SWIER4_Pos) /*!< 0x00000010 */ 2902 #define EXTI_SWIER_SWIER4 EXTI_SWIER_SWIER4_Msk /*!< Software Interrupt on line 4 */ 2903 #define EXTI_SWIER_SWIER5_Pos (5U) 2904 #define EXTI_SWIER_SWIER5_Msk (0x1UL << EXTI_SWIER_SWIER5_Pos) /*!< 0x00000020 */ 2905 #define EXTI_SWIER_SWIER5 EXTI_SWIER_SWIER5_Msk /*!< Software Interrupt on line 5 */ 2906 #define EXTI_SWIER_SWIER6_Pos (6U) 2907 #define EXTI_SWIER_SWIER6_Msk (0x1UL << EXTI_SWIER_SWIER6_Pos) /*!< 0x00000040 */ 2908 #define EXTI_SWIER_SWIER6 EXTI_SWIER_SWIER6_Msk /*!< Software Interrupt on line 6 */ 2909 #define EXTI_SWIER_SWIER7_Pos (7U) 2910 #define EXTI_SWIER_SWIER7_Msk (0x1UL << EXTI_SWIER_SWIER7_Pos) /*!< 0x00000080 */ 2911 #define EXTI_SWIER_SWIER7 EXTI_SWIER_SWIER7_Msk /*!< Software Interrupt on line 7 */ 2912 #define EXTI_SWIER_SWIER8_Pos (8U) 2913 #define EXTI_SWIER_SWIER8_Msk (0x1UL << EXTI_SWIER_SWIER8_Pos) /*!< 0x00000100 */ 2914 #define EXTI_SWIER_SWIER8 EXTI_SWIER_SWIER8_Msk /*!< Software Interrupt on line 8 */ 2915 #define EXTI_SWIER_SWIER9_Pos (9U) 2916 #define EXTI_SWIER_SWIER9_Msk (0x1UL << EXTI_SWIER_SWIER9_Pos) /*!< 0x00000200 */ 2917 #define EXTI_SWIER_SWIER9 EXTI_SWIER_SWIER9_Msk /*!< Software Interrupt on line 9 */ 2918 #define EXTI_SWIER_SWIER10_Pos (10U) 2919 #define EXTI_SWIER_SWIER10_Msk (0x1UL << EXTI_SWIER_SWIER10_Pos) /*!< 0x00000400 */ 2920 #define EXTI_SWIER_SWIER10 EXTI_SWIER_SWIER10_Msk /*!< Software Interrupt on line 10 */ 2921 #define EXTI_SWIER_SWIER11_Pos (11U) 2922 #define EXTI_SWIER_SWIER11_Msk (0x1UL << EXTI_SWIER_SWIER11_Pos) /*!< 0x00000800 */ 2923 #define EXTI_SWIER_SWIER11 EXTI_SWIER_SWIER11_Msk /*!< Software Interrupt on line 11 */ 2924 #define EXTI_SWIER_SWIER12_Pos (12U) 2925 #define EXTI_SWIER_SWIER12_Msk (0x1UL << EXTI_SWIER_SWIER12_Pos) /*!< 0x00001000 */ 2926 #define EXTI_SWIER_SWIER12 EXTI_SWIER_SWIER12_Msk /*!< Software Interrupt on line 12 */ 2927 #define EXTI_SWIER_SWIER13_Pos (13U) 2928 #define EXTI_SWIER_SWIER13_Msk (0x1UL << EXTI_SWIER_SWIER13_Pos) /*!< 0x00002000 */ 2929 #define EXTI_SWIER_SWIER13 EXTI_SWIER_SWIER13_Msk /*!< Software Interrupt on line 13 */ 2930 #define EXTI_SWIER_SWIER14_Pos (14U) 2931 #define EXTI_SWIER_SWIER14_Msk (0x1UL << EXTI_SWIER_SWIER14_Pos) /*!< 0x00004000 */ 2932 #define EXTI_SWIER_SWIER14 EXTI_SWIER_SWIER14_Msk /*!< Software Interrupt on line 14 */ 2933 #define EXTI_SWIER_SWIER15_Pos (15U) 2934 #define EXTI_SWIER_SWIER15_Msk (0x1UL << EXTI_SWIER_SWIER15_Pos) /*!< 0x00008000 */ 2935 #define EXTI_SWIER_SWIER15 EXTI_SWIER_SWIER15_Msk /*!< Software Interrupt on line 15 */ 2936 #define EXTI_SWIER_SWIER16_Pos (16U) 2937 #define EXTI_SWIER_SWIER16_Msk (0x1UL << EXTI_SWIER_SWIER16_Pos) /*!< 0x00010000 */ 2938 #define EXTI_SWIER_SWIER16 EXTI_SWIER_SWIER16_Msk /*!< Software Interrupt on line 16 */ 2939 #define EXTI_SWIER_SWIER17_Pos (17U) 2940 #define EXTI_SWIER_SWIER17_Msk (0x1UL << EXTI_SWIER_SWIER17_Pos) /*!< 0x00020000 */ 2941 #define EXTI_SWIER_SWIER17 EXTI_SWIER_SWIER17_Msk /*!< Software Interrupt on line 17 */ 2942 2943 /* References Defines */ 2944 #define EXTI_SWIER_SWI0 EXTI_SWIER_SWIER0 2945 #define EXTI_SWIER_SWI1 EXTI_SWIER_SWIER1 2946 #define EXTI_SWIER_SWI2 EXTI_SWIER_SWIER2 2947 #define EXTI_SWIER_SWI3 EXTI_SWIER_SWIER3 2948 #define EXTI_SWIER_SWI4 EXTI_SWIER_SWIER4 2949 #define EXTI_SWIER_SWI5 EXTI_SWIER_SWIER5 2950 #define EXTI_SWIER_SWI6 EXTI_SWIER_SWIER6 2951 #define EXTI_SWIER_SWI7 EXTI_SWIER_SWIER7 2952 #define EXTI_SWIER_SWI8 EXTI_SWIER_SWIER8 2953 #define EXTI_SWIER_SWI9 EXTI_SWIER_SWIER9 2954 #define EXTI_SWIER_SWI10 EXTI_SWIER_SWIER10 2955 #define EXTI_SWIER_SWI11 EXTI_SWIER_SWIER11 2956 #define EXTI_SWIER_SWI12 EXTI_SWIER_SWIER12 2957 #define EXTI_SWIER_SWI13 EXTI_SWIER_SWIER13 2958 #define EXTI_SWIER_SWI14 EXTI_SWIER_SWIER14 2959 #define EXTI_SWIER_SWI15 EXTI_SWIER_SWIER15 2960 #define EXTI_SWIER_SWI16 EXTI_SWIER_SWIER16 2961 #define EXTI_SWIER_SWI17 EXTI_SWIER_SWIER17 2962 2963 /******************* Bit definition for EXTI_PR register ********************/ 2964 #define EXTI_PR_PR0_Pos (0U) 2965 #define EXTI_PR_PR0_Msk (0x1UL << EXTI_PR_PR0_Pos) /*!< 0x00000001 */ 2966 #define EXTI_PR_PR0 EXTI_PR_PR0_Msk /*!< Pending bit for line 0 */ 2967 #define EXTI_PR_PR1_Pos (1U) 2968 #define EXTI_PR_PR1_Msk (0x1UL << EXTI_PR_PR1_Pos) /*!< 0x00000002 */ 2969 #define EXTI_PR_PR1 EXTI_PR_PR1_Msk /*!< Pending bit for line 1 */ 2970 #define EXTI_PR_PR2_Pos (2U) 2971 #define EXTI_PR_PR2_Msk (0x1UL << EXTI_PR_PR2_Pos) /*!< 0x00000004 */ 2972 #define EXTI_PR_PR2 EXTI_PR_PR2_Msk /*!< Pending bit for line 2 */ 2973 #define EXTI_PR_PR3_Pos (3U) 2974 #define EXTI_PR_PR3_Msk (0x1UL << EXTI_PR_PR3_Pos) /*!< 0x00000008 */ 2975 #define EXTI_PR_PR3 EXTI_PR_PR3_Msk /*!< Pending bit for line 3 */ 2976 #define EXTI_PR_PR4_Pos (4U) 2977 #define EXTI_PR_PR4_Msk (0x1UL << EXTI_PR_PR4_Pos) /*!< 0x00000010 */ 2978 #define EXTI_PR_PR4 EXTI_PR_PR4_Msk /*!< Pending bit for line 4 */ 2979 #define EXTI_PR_PR5_Pos (5U) 2980 #define EXTI_PR_PR5_Msk (0x1UL << EXTI_PR_PR5_Pos) /*!< 0x00000020 */ 2981 #define EXTI_PR_PR5 EXTI_PR_PR5_Msk /*!< Pending bit for line 5 */ 2982 #define EXTI_PR_PR6_Pos (6U) 2983 #define EXTI_PR_PR6_Msk (0x1UL << EXTI_PR_PR6_Pos) /*!< 0x00000040 */ 2984 #define EXTI_PR_PR6 EXTI_PR_PR6_Msk /*!< Pending bit for line 6 */ 2985 #define EXTI_PR_PR7_Pos (7U) 2986 #define EXTI_PR_PR7_Msk (0x1UL << EXTI_PR_PR7_Pos) /*!< 0x00000080 */ 2987 #define EXTI_PR_PR7 EXTI_PR_PR7_Msk /*!< Pending bit for line 7 */ 2988 #define EXTI_PR_PR8_Pos (8U) 2989 #define EXTI_PR_PR8_Msk (0x1UL << EXTI_PR_PR8_Pos) /*!< 0x00000100 */ 2990 #define EXTI_PR_PR8 EXTI_PR_PR8_Msk /*!< Pending bit for line 8 */ 2991 #define EXTI_PR_PR9_Pos (9U) 2992 #define EXTI_PR_PR9_Msk (0x1UL << EXTI_PR_PR9_Pos) /*!< 0x00000200 */ 2993 #define EXTI_PR_PR9 EXTI_PR_PR9_Msk /*!< Pending bit for line 9 */ 2994 #define EXTI_PR_PR10_Pos (10U) 2995 #define EXTI_PR_PR10_Msk (0x1UL << EXTI_PR_PR10_Pos) /*!< 0x00000400 */ 2996 #define EXTI_PR_PR10 EXTI_PR_PR10_Msk /*!< Pending bit for line 10 */ 2997 #define EXTI_PR_PR11_Pos (11U) 2998 #define EXTI_PR_PR11_Msk (0x1UL << EXTI_PR_PR11_Pos) /*!< 0x00000800 */ 2999 #define EXTI_PR_PR11 EXTI_PR_PR11_Msk /*!< Pending bit for line 11 */ 3000 #define EXTI_PR_PR12_Pos (12U) 3001 #define EXTI_PR_PR12_Msk (0x1UL << EXTI_PR_PR12_Pos) /*!< 0x00001000 */ 3002 #define EXTI_PR_PR12 EXTI_PR_PR12_Msk /*!< Pending bit for line 12 */ 3003 #define EXTI_PR_PR13_Pos (13U) 3004 #define EXTI_PR_PR13_Msk (0x1UL << EXTI_PR_PR13_Pos) /*!< 0x00002000 */ 3005 #define EXTI_PR_PR13 EXTI_PR_PR13_Msk /*!< Pending bit for line 13 */ 3006 #define EXTI_PR_PR14_Pos (14U) 3007 #define EXTI_PR_PR14_Msk (0x1UL << EXTI_PR_PR14_Pos) /*!< 0x00004000 */ 3008 #define EXTI_PR_PR14 EXTI_PR_PR14_Msk /*!< Pending bit for line 14 */ 3009 #define EXTI_PR_PR15_Pos (15U) 3010 #define EXTI_PR_PR15_Msk (0x1UL << EXTI_PR_PR15_Pos) /*!< 0x00008000 */ 3011 #define EXTI_PR_PR15 EXTI_PR_PR15_Msk /*!< Pending bit for line 15 */ 3012 #define EXTI_PR_PR16_Pos (16U) 3013 #define EXTI_PR_PR16_Msk (0x1UL << EXTI_PR_PR16_Pos) /*!< 0x00010000 */ 3014 #define EXTI_PR_PR16 EXTI_PR_PR16_Msk /*!< Pending bit for line 16 */ 3015 #define EXTI_PR_PR17_Pos (17U) 3016 #define EXTI_PR_PR17_Msk (0x1UL << EXTI_PR_PR17_Pos) /*!< 0x00020000 */ 3017 #define EXTI_PR_PR17 EXTI_PR_PR17_Msk /*!< Pending bit for line 17 */ 3018 3019 /* References Defines */ 3020 #define EXTI_PR_PIF0 EXTI_PR_PR0 3021 #define EXTI_PR_PIF1 EXTI_PR_PR1 3022 #define EXTI_PR_PIF2 EXTI_PR_PR2 3023 #define EXTI_PR_PIF3 EXTI_PR_PR3 3024 #define EXTI_PR_PIF4 EXTI_PR_PR4 3025 #define EXTI_PR_PIF5 EXTI_PR_PR5 3026 #define EXTI_PR_PIF6 EXTI_PR_PR6 3027 #define EXTI_PR_PIF7 EXTI_PR_PR7 3028 #define EXTI_PR_PIF8 EXTI_PR_PR8 3029 #define EXTI_PR_PIF9 EXTI_PR_PR9 3030 #define EXTI_PR_PIF10 EXTI_PR_PR10 3031 #define EXTI_PR_PIF11 EXTI_PR_PR11 3032 #define EXTI_PR_PIF12 EXTI_PR_PR12 3033 #define EXTI_PR_PIF13 EXTI_PR_PR13 3034 #define EXTI_PR_PIF14 EXTI_PR_PR14 3035 #define EXTI_PR_PIF15 EXTI_PR_PR15 3036 #define EXTI_PR_PIF16 EXTI_PR_PR16 3037 #define EXTI_PR_PIF17 EXTI_PR_PR17 3038 3039 /******************************************************************************/ 3040 /* */ 3041 /* DMA Controller */ 3042 /* */ 3043 /******************************************************************************/ 3044 3045 /******************* Bit definition for DMA_ISR register ********************/ 3046 #define DMA_ISR_GIF1_Pos (0U) 3047 #define DMA_ISR_GIF1_Msk (0x1UL << DMA_ISR_GIF1_Pos) /*!< 0x00000001 */ 3048 #define DMA_ISR_GIF1 DMA_ISR_GIF1_Msk /*!< Channel 1 Global interrupt flag */ 3049 #define DMA_ISR_TCIF1_Pos (1U) 3050 #define DMA_ISR_TCIF1_Msk (0x1UL << DMA_ISR_TCIF1_Pos) /*!< 0x00000002 */ 3051 #define DMA_ISR_TCIF1 DMA_ISR_TCIF1_Msk /*!< Channel 1 Transfer Complete flag */ 3052 #define DMA_ISR_HTIF1_Pos (2U) 3053 #define DMA_ISR_HTIF1_Msk (0x1UL << DMA_ISR_HTIF1_Pos) /*!< 0x00000004 */ 3054 #define DMA_ISR_HTIF1 DMA_ISR_HTIF1_Msk /*!< Channel 1 Half Transfer flag */ 3055 #define DMA_ISR_TEIF1_Pos (3U) 3056 #define DMA_ISR_TEIF1_Msk (0x1UL << DMA_ISR_TEIF1_Pos) /*!< 0x00000008 */ 3057 #define DMA_ISR_TEIF1 DMA_ISR_TEIF1_Msk /*!< Channel 1 Transfer Error flag */ 3058 #define DMA_ISR_GIF2_Pos (4U) 3059 #define DMA_ISR_GIF2_Msk (0x1UL << DMA_ISR_GIF2_Pos) /*!< 0x00000010 */ 3060 #define DMA_ISR_GIF2 DMA_ISR_GIF2_Msk /*!< Channel 2 Global interrupt flag */ 3061 #define DMA_ISR_TCIF2_Pos (5U) 3062 #define DMA_ISR_TCIF2_Msk (0x1UL << DMA_ISR_TCIF2_Pos) /*!< 0x00000020 */ 3063 #define DMA_ISR_TCIF2 DMA_ISR_TCIF2_Msk /*!< Channel 2 Transfer Complete flag */ 3064 #define DMA_ISR_HTIF2_Pos (6U) 3065 #define DMA_ISR_HTIF2_Msk (0x1UL << DMA_ISR_HTIF2_Pos) /*!< 0x00000040 */ 3066 #define DMA_ISR_HTIF2 DMA_ISR_HTIF2_Msk /*!< Channel 2 Half Transfer flag */ 3067 #define DMA_ISR_TEIF2_Pos (7U) 3068 #define DMA_ISR_TEIF2_Msk (0x1UL << DMA_ISR_TEIF2_Pos) /*!< 0x00000080 */ 3069 #define DMA_ISR_TEIF2 DMA_ISR_TEIF2_Msk /*!< Channel 2 Transfer Error flag */ 3070 #define DMA_ISR_GIF3_Pos (8U) 3071 #define DMA_ISR_GIF3_Msk (0x1UL << DMA_ISR_GIF3_Pos) /*!< 0x00000100 */ 3072 #define DMA_ISR_GIF3 DMA_ISR_GIF3_Msk /*!< Channel 3 Global interrupt flag */ 3073 #define DMA_ISR_TCIF3_Pos (9U) 3074 #define DMA_ISR_TCIF3_Msk (0x1UL << DMA_ISR_TCIF3_Pos) /*!< 0x00000200 */ 3075 #define DMA_ISR_TCIF3 DMA_ISR_TCIF3_Msk /*!< Channel 3 Transfer Complete flag */ 3076 #define DMA_ISR_HTIF3_Pos (10U) 3077 #define DMA_ISR_HTIF3_Msk (0x1UL << DMA_ISR_HTIF3_Pos) /*!< 0x00000400 */ 3078 #define DMA_ISR_HTIF3 DMA_ISR_HTIF3_Msk /*!< Channel 3 Half Transfer flag */ 3079 #define DMA_ISR_TEIF3_Pos (11U) 3080 #define DMA_ISR_TEIF3_Msk (0x1UL << DMA_ISR_TEIF3_Pos) /*!< 0x00000800 */ 3081 #define DMA_ISR_TEIF3 DMA_ISR_TEIF3_Msk /*!< Channel 3 Transfer Error flag */ 3082 #define DMA_ISR_GIF4_Pos (12U) 3083 #define DMA_ISR_GIF4_Msk (0x1UL << DMA_ISR_GIF4_Pos) /*!< 0x00001000 */ 3084 #define DMA_ISR_GIF4 DMA_ISR_GIF4_Msk /*!< Channel 4 Global interrupt flag */ 3085 #define DMA_ISR_TCIF4_Pos (13U) 3086 #define DMA_ISR_TCIF4_Msk (0x1UL << DMA_ISR_TCIF4_Pos) /*!< 0x00002000 */ 3087 #define DMA_ISR_TCIF4 DMA_ISR_TCIF4_Msk /*!< Channel 4 Transfer Complete flag */ 3088 #define DMA_ISR_HTIF4_Pos (14U) 3089 #define DMA_ISR_HTIF4_Msk (0x1UL << DMA_ISR_HTIF4_Pos) /*!< 0x00004000 */ 3090 #define DMA_ISR_HTIF4 DMA_ISR_HTIF4_Msk /*!< Channel 4 Half Transfer flag */ 3091 #define DMA_ISR_TEIF4_Pos (15U) 3092 #define DMA_ISR_TEIF4_Msk (0x1UL << DMA_ISR_TEIF4_Pos) /*!< 0x00008000 */ 3093 #define DMA_ISR_TEIF4 DMA_ISR_TEIF4_Msk /*!< Channel 4 Transfer Error flag */ 3094 #define DMA_ISR_GIF5_Pos (16U) 3095 #define DMA_ISR_GIF5_Msk (0x1UL << DMA_ISR_GIF5_Pos) /*!< 0x00010000 */ 3096 #define DMA_ISR_GIF5 DMA_ISR_GIF5_Msk /*!< Channel 5 Global interrupt flag */ 3097 #define DMA_ISR_TCIF5_Pos (17U) 3098 #define DMA_ISR_TCIF5_Msk (0x1UL << DMA_ISR_TCIF5_Pos) /*!< 0x00020000 */ 3099 #define DMA_ISR_TCIF5 DMA_ISR_TCIF5_Msk /*!< Channel 5 Transfer Complete flag */ 3100 #define DMA_ISR_HTIF5_Pos (18U) 3101 #define DMA_ISR_HTIF5_Msk (0x1UL << DMA_ISR_HTIF5_Pos) /*!< 0x00040000 */ 3102 #define DMA_ISR_HTIF5 DMA_ISR_HTIF5_Msk /*!< Channel 5 Half Transfer flag */ 3103 #define DMA_ISR_TEIF5_Pos (19U) 3104 #define DMA_ISR_TEIF5_Msk (0x1UL << DMA_ISR_TEIF5_Pos) /*!< 0x00080000 */ 3105 #define DMA_ISR_TEIF5 DMA_ISR_TEIF5_Msk /*!< Channel 5 Transfer Error flag */ 3106 #define DMA_ISR_GIF6_Pos (20U) 3107 #define DMA_ISR_GIF6_Msk (0x1UL << DMA_ISR_GIF6_Pos) /*!< 0x00100000 */ 3108 #define DMA_ISR_GIF6 DMA_ISR_GIF6_Msk /*!< Channel 6 Global interrupt flag */ 3109 #define DMA_ISR_TCIF6_Pos (21U) 3110 #define DMA_ISR_TCIF6_Msk (0x1UL << DMA_ISR_TCIF6_Pos) /*!< 0x00200000 */ 3111 #define DMA_ISR_TCIF6 DMA_ISR_TCIF6_Msk /*!< Channel 6 Transfer Complete flag */ 3112 #define DMA_ISR_HTIF6_Pos (22U) 3113 #define DMA_ISR_HTIF6_Msk (0x1UL << DMA_ISR_HTIF6_Pos) /*!< 0x00400000 */ 3114 #define DMA_ISR_HTIF6 DMA_ISR_HTIF6_Msk /*!< Channel 6 Half Transfer flag */ 3115 #define DMA_ISR_TEIF6_Pos (23U) 3116 #define DMA_ISR_TEIF6_Msk (0x1UL << DMA_ISR_TEIF6_Pos) /*!< 0x00800000 */ 3117 #define DMA_ISR_TEIF6 DMA_ISR_TEIF6_Msk /*!< Channel 6 Transfer Error flag */ 3118 #define DMA_ISR_GIF7_Pos (24U) 3119 #define DMA_ISR_GIF7_Msk (0x1UL << DMA_ISR_GIF7_Pos) /*!< 0x01000000 */ 3120 #define DMA_ISR_GIF7 DMA_ISR_GIF7_Msk /*!< Channel 7 Global interrupt flag */ 3121 #define DMA_ISR_TCIF7_Pos (25U) 3122 #define DMA_ISR_TCIF7_Msk (0x1UL << DMA_ISR_TCIF7_Pos) /*!< 0x02000000 */ 3123 #define DMA_ISR_TCIF7 DMA_ISR_TCIF7_Msk /*!< Channel 7 Transfer Complete flag */ 3124 #define DMA_ISR_HTIF7_Pos (26U) 3125 #define DMA_ISR_HTIF7_Msk (0x1UL << DMA_ISR_HTIF7_Pos) /*!< 0x04000000 */ 3126 #define DMA_ISR_HTIF7 DMA_ISR_HTIF7_Msk /*!< Channel 7 Half Transfer flag */ 3127 #define DMA_ISR_TEIF7_Pos (27U) 3128 #define DMA_ISR_TEIF7_Msk (0x1UL << DMA_ISR_TEIF7_Pos) /*!< 0x08000000 */ 3129 #define DMA_ISR_TEIF7 DMA_ISR_TEIF7_Msk /*!< Channel 7 Transfer Error flag */ 3130 3131 /******************* Bit definition for DMA_IFCR register *******************/ 3132 #define DMA_IFCR_CGIF1_Pos (0U) 3133 #define DMA_IFCR_CGIF1_Msk (0x1UL << DMA_IFCR_CGIF1_Pos) /*!< 0x00000001 */ 3134 #define DMA_IFCR_CGIF1 DMA_IFCR_CGIF1_Msk /*!< Channel 1 Global interrupt clear */ 3135 #define DMA_IFCR_CTCIF1_Pos (1U) 3136 #define DMA_IFCR_CTCIF1_Msk (0x1UL << DMA_IFCR_CTCIF1_Pos) /*!< 0x00000002 */ 3137 #define DMA_IFCR_CTCIF1 DMA_IFCR_CTCIF1_Msk /*!< Channel 1 Transfer Complete clear */ 3138 #define DMA_IFCR_CHTIF1_Pos (2U) 3139 #define DMA_IFCR_CHTIF1_Msk (0x1UL << DMA_IFCR_CHTIF1_Pos) /*!< 0x00000004 */ 3140 #define DMA_IFCR_CHTIF1 DMA_IFCR_CHTIF1_Msk /*!< Channel 1 Half Transfer clear */ 3141 #define DMA_IFCR_CTEIF1_Pos (3U) 3142 #define DMA_IFCR_CTEIF1_Msk (0x1UL << DMA_IFCR_CTEIF1_Pos) /*!< 0x00000008 */ 3143 #define DMA_IFCR_CTEIF1 DMA_IFCR_CTEIF1_Msk /*!< Channel 1 Transfer Error clear */ 3144 #define DMA_IFCR_CGIF2_Pos (4U) 3145 #define DMA_IFCR_CGIF2_Msk (0x1UL << DMA_IFCR_CGIF2_Pos) /*!< 0x00000010 */ 3146 #define DMA_IFCR_CGIF2 DMA_IFCR_CGIF2_Msk /*!< Channel 2 Global interrupt clear */ 3147 #define DMA_IFCR_CTCIF2_Pos (5U) 3148 #define DMA_IFCR_CTCIF2_Msk (0x1UL << DMA_IFCR_CTCIF2_Pos) /*!< 0x00000020 */ 3149 #define DMA_IFCR_CTCIF2 DMA_IFCR_CTCIF2_Msk /*!< Channel 2 Transfer Complete clear */ 3150 #define DMA_IFCR_CHTIF2_Pos (6U) 3151 #define DMA_IFCR_CHTIF2_Msk (0x1UL << DMA_IFCR_CHTIF2_Pos) /*!< 0x00000040 */ 3152 #define DMA_IFCR_CHTIF2 DMA_IFCR_CHTIF2_Msk /*!< Channel 2 Half Transfer clear */ 3153 #define DMA_IFCR_CTEIF2_Pos (7U) 3154 #define DMA_IFCR_CTEIF2_Msk (0x1UL << DMA_IFCR_CTEIF2_Pos) /*!< 0x00000080 */ 3155 #define DMA_IFCR_CTEIF2 DMA_IFCR_CTEIF2_Msk /*!< Channel 2 Transfer Error clear */ 3156 #define DMA_IFCR_CGIF3_Pos (8U) 3157 #define DMA_IFCR_CGIF3_Msk (0x1UL << DMA_IFCR_CGIF3_Pos) /*!< 0x00000100 */ 3158 #define DMA_IFCR_CGIF3 DMA_IFCR_CGIF3_Msk /*!< Channel 3 Global interrupt clear */ 3159 #define DMA_IFCR_CTCIF3_Pos (9U) 3160 #define DMA_IFCR_CTCIF3_Msk (0x1UL << DMA_IFCR_CTCIF3_Pos) /*!< 0x00000200 */ 3161 #define DMA_IFCR_CTCIF3 DMA_IFCR_CTCIF3_Msk /*!< Channel 3 Transfer Complete clear */ 3162 #define DMA_IFCR_CHTIF3_Pos (10U) 3163 #define DMA_IFCR_CHTIF3_Msk (0x1UL << DMA_IFCR_CHTIF3_Pos) /*!< 0x00000400 */ 3164 #define DMA_IFCR_CHTIF3 DMA_IFCR_CHTIF3_Msk /*!< Channel 3 Half Transfer clear */ 3165 #define DMA_IFCR_CTEIF3_Pos (11U) 3166 #define DMA_IFCR_CTEIF3_Msk (0x1UL << DMA_IFCR_CTEIF3_Pos) /*!< 0x00000800 */ 3167 #define DMA_IFCR_CTEIF3 DMA_IFCR_CTEIF3_Msk /*!< Channel 3 Transfer Error clear */ 3168 #define DMA_IFCR_CGIF4_Pos (12U) 3169 #define DMA_IFCR_CGIF4_Msk (0x1UL << DMA_IFCR_CGIF4_Pos) /*!< 0x00001000 */ 3170 #define DMA_IFCR_CGIF4 DMA_IFCR_CGIF4_Msk /*!< Channel 4 Global interrupt clear */ 3171 #define DMA_IFCR_CTCIF4_Pos (13U) 3172 #define DMA_IFCR_CTCIF4_Msk (0x1UL << DMA_IFCR_CTCIF4_Pos) /*!< 0x00002000 */ 3173 #define DMA_IFCR_CTCIF4 DMA_IFCR_CTCIF4_Msk /*!< Channel 4 Transfer Complete clear */ 3174 #define DMA_IFCR_CHTIF4_Pos (14U) 3175 #define DMA_IFCR_CHTIF4_Msk (0x1UL << DMA_IFCR_CHTIF4_Pos) /*!< 0x00004000 */ 3176 #define DMA_IFCR_CHTIF4 DMA_IFCR_CHTIF4_Msk /*!< Channel 4 Half Transfer clear */ 3177 #define DMA_IFCR_CTEIF4_Pos (15U) 3178 #define DMA_IFCR_CTEIF4_Msk (0x1UL << DMA_IFCR_CTEIF4_Pos) /*!< 0x00008000 */ 3179 #define DMA_IFCR_CTEIF4 DMA_IFCR_CTEIF4_Msk /*!< Channel 4 Transfer Error clear */ 3180 #define DMA_IFCR_CGIF5_Pos (16U) 3181 #define DMA_IFCR_CGIF5_Msk (0x1UL << DMA_IFCR_CGIF5_Pos) /*!< 0x00010000 */ 3182 #define DMA_IFCR_CGIF5 DMA_IFCR_CGIF5_Msk /*!< Channel 5 Global interrupt clear */ 3183 #define DMA_IFCR_CTCIF5_Pos (17U) 3184 #define DMA_IFCR_CTCIF5_Msk (0x1UL << DMA_IFCR_CTCIF5_Pos) /*!< 0x00020000 */ 3185 #define DMA_IFCR_CTCIF5 DMA_IFCR_CTCIF5_Msk /*!< Channel 5 Transfer Complete clear */ 3186 #define DMA_IFCR_CHTIF5_Pos (18U) 3187 #define DMA_IFCR_CHTIF5_Msk (0x1UL << DMA_IFCR_CHTIF5_Pos) /*!< 0x00040000 */ 3188 #define DMA_IFCR_CHTIF5 DMA_IFCR_CHTIF5_Msk /*!< Channel 5 Half Transfer clear */ 3189 #define DMA_IFCR_CTEIF5_Pos (19U) 3190 #define DMA_IFCR_CTEIF5_Msk (0x1UL << DMA_IFCR_CTEIF5_Pos) /*!< 0x00080000 */ 3191 #define DMA_IFCR_CTEIF5 DMA_IFCR_CTEIF5_Msk /*!< Channel 5 Transfer Error clear */ 3192 #define DMA_IFCR_CGIF6_Pos (20U) 3193 #define DMA_IFCR_CGIF6_Msk (0x1UL << DMA_IFCR_CGIF6_Pos) /*!< 0x00100000 */ 3194 #define DMA_IFCR_CGIF6 DMA_IFCR_CGIF6_Msk /*!< Channel 6 Global interrupt clear */ 3195 #define DMA_IFCR_CTCIF6_Pos (21U) 3196 #define DMA_IFCR_CTCIF6_Msk (0x1UL << DMA_IFCR_CTCIF6_Pos) /*!< 0x00200000 */ 3197 #define DMA_IFCR_CTCIF6 DMA_IFCR_CTCIF6_Msk /*!< Channel 6 Transfer Complete clear */ 3198 #define DMA_IFCR_CHTIF6_Pos (22U) 3199 #define DMA_IFCR_CHTIF6_Msk (0x1UL << DMA_IFCR_CHTIF6_Pos) /*!< 0x00400000 */ 3200 #define DMA_IFCR_CHTIF6 DMA_IFCR_CHTIF6_Msk /*!< Channel 6 Half Transfer clear */ 3201 #define DMA_IFCR_CTEIF6_Pos (23U) 3202 #define DMA_IFCR_CTEIF6_Msk (0x1UL << DMA_IFCR_CTEIF6_Pos) /*!< 0x00800000 */ 3203 #define DMA_IFCR_CTEIF6 DMA_IFCR_CTEIF6_Msk /*!< Channel 6 Transfer Error clear */ 3204 #define DMA_IFCR_CGIF7_Pos (24U) 3205 #define DMA_IFCR_CGIF7_Msk (0x1UL << DMA_IFCR_CGIF7_Pos) /*!< 0x01000000 */ 3206 #define DMA_IFCR_CGIF7 DMA_IFCR_CGIF7_Msk /*!< Channel 7 Global interrupt clear */ 3207 #define DMA_IFCR_CTCIF7_Pos (25U) 3208 #define DMA_IFCR_CTCIF7_Msk (0x1UL << DMA_IFCR_CTCIF7_Pos) /*!< 0x02000000 */ 3209 #define DMA_IFCR_CTCIF7 DMA_IFCR_CTCIF7_Msk /*!< Channel 7 Transfer Complete clear */ 3210 #define DMA_IFCR_CHTIF7_Pos (26U) 3211 #define DMA_IFCR_CHTIF7_Msk (0x1UL << DMA_IFCR_CHTIF7_Pos) /*!< 0x04000000 */ 3212 #define DMA_IFCR_CHTIF7 DMA_IFCR_CHTIF7_Msk /*!< Channel 7 Half Transfer clear */ 3213 #define DMA_IFCR_CTEIF7_Pos (27U) 3214 #define DMA_IFCR_CTEIF7_Msk (0x1UL << DMA_IFCR_CTEIF7_Pos) /*!< 0x08000000 */ 3215 #define DMA_IFCR_CTEIF7 DMA_IFCR_CTEIF7_Msk /*!< Channel 7 Transfer Error clear */ 3216 3217 /******************* Bit definition for DMA_CCR register *******************/ 3218 #define DMA_CCR_EN_Pos (0U) 3219 #define DMA_CCR_EN_Msk (0x1UL << DMA_CCR_EN_Pos) /*!< 0x00000001 */ 3220 #define DMA_CCR_EN DMA_CCR_EN_Msk /*!< Channel enable */ 3221 #define DMA_CCR_TCIE_Pos (1U) 3222 #define DMA_CCR_TCIE_Msk (0x1UL << DMA_CCR_TCIE_Pos) /*!< 0x00000002 */ 3223 #define DMA_CCR_TCIE DMA_CCR_TCIE_Msk /*!< Transfer complete interrupt enable */ 3224 #define DMA_CCR_HTIE_Pos (2U) 3225 #define DMA_CCR_HTIE_Msk (0x1UL << DMA_CCR_HTIE_Pos) /*!< 0x00000004 */ 3226 #define DMA_CCR_HTIE DMA_CCR_HTIE_Msk /*!< Half Transfer interrupt enable */ 3227 #define DMA_CCR_TEIE_Pos (3U) 3228 #define DMA_CCR_TEIE_Msk (0x1UL << DMA_CCR_TEIE_Pos) /*!< 0x00000008 */ 3229 #define DMA_CCR_TEIE DMA_CCR_TEIE_Msk /*!< Transfer error interrupt enable */ 3230 #define DMA_CCR_DIR_Pos (4U) 3231 #define DMA_CCR_DIR_Msk (0x1UL << DMA_CCR_DIR_Pos) /*!< 0x00000010 */ 3232 #define DMA_CCR_DIR DMA_CCR_DIR_Msk /*!< Data transfer direction */ 3233 #define DMA_CCR_CIRC_Pos (5U) 3234 #define DMA_CCR_CIRC_Msk (0x1UL << DMA_CCR_CIRC_Pos) /*!< 0x00000020 */ 3235 #define DMA_CCR_CIRC DMA_CCR_CIRC_Msk /*!< Circular mode */ 3236 #define DMA_CCR_PINC_Pos (6U) 3237 #define DMA_CCR_PINC_Msk (0x1UL << DMA_CCR_PINC_Pos) /*!< 0x00000040 */ 3238 #define DMA_CCR_PINC DMA_CCR_PINC_Msk /*!< Peripheral increment mode */ 3239 #define DMA_CCR_MINC_Pos (7U) 3240 #define DMA_CCR_MINC_Msk (0x1UL << DMA_CCR_MINC_Pos) /*!< 0x00000080 */ 3241 #define DMA_CCR_MINC DMA_CCR_MINC_Msk /*!< Memory increment mode */ 3242 3243 #define DMA_CCR_PSIZE_Pos (8U) 3244 #define DMA_CCR_PSIZE_Msk (0x3UL << DMA_CCR_PSIZE_Pos) /*!< 0x00000300 */ 3245 #define DMA_CCR_PSIZE DMA_CCR_PSIZE_Msk /*!< PSIZE[1:0] bits (Peripheral size) */ 3246 #define DMA_CCR_PSIZE_0 (0x1UL << DMA_CCR_PSIZE_Pos) /*!< 0x00000100 */ 3247 #define DMA_CCR_PSIZE_1 (0x2UL << DMA_CCR_PSIZE_Pos) /*!< 0x00000200 */ 3248 3249 #define DMA_CCR_MSIZE_Pos (10U) 3250 #define DMA_CCR_MSIZE_Msk (0x3UL << DMA_CCR_MSIZE_Pos) /*!< 0x00000C00 */ 3251 #define DMA_CCR_MSIZE DMA_CCR_MSIZE_Msk /*!< MSIZE[1:0] bits (Memory size) */ 3252 #define DMA_CCR_MSIZE_0 (0x1UL << DMA_CCR_MSIZE_Pos) /*!< 0x00000400 */ 3253 #define DMA_CCR_MSIZE_1 (0x2UL << DMA_CCR_MSIZE_Pos) /*!< 0x00000800 */ 3254 3255 #define DMA_CCR_PL_Pos (12U) 3256 #define DMA_CCR_PL_Msk (0x3UL << DMA_CCR_PL_Pos) /*!< 0x00003000 */ 3257 #define DMA_CCR_PL DMA_CCR_PL_Msk /*!< PL[1:0] bits(Channel Priority level) */ 3258 #define DMA_CCR_PL_0 (0x1UL << DMA_CCR_PL_Pos) /*!< 0x00001000 */ 3259 #define DMA_CCR_PL_1 (0x2UL << DMA_CCR_PL_Pos) /*!< 0x00002000 */ 3260 3261 #define DMA_CCR_MEM2MEM_Pos (14U) 3262 #define DMA_CCR_MEM2MEM_Msk (0x1UL << DMA_CCR_MEM2MEM_Pos) /*!< 0x00004000 */ 3263 #define DMA_CCR_MEM2MEM DMA_CCR_MEM2MEM_Msk /*!< Memory to memory mode */ 3264 3265 /****************** Bit definition for DMA_CNDTR register ******************/ 3266 #define DMA_CNDTR_NDT_Pos (0U) 3267 #define DMA_CNDTR_NDT_Msk (0xFFFFUL << DMA_CNDTR_NDT_Pos) /*!< 0x0000FFFF */ 3268 #define DMA_CNDTR_NDT DMA_CNDTR_NDT_Msk /*!< Number of data to Transfer */ 3269 3270 /****************** Bit definition for DMA_CPAR register *******************/ 3271 #define DMA_CPAR_PA_Pos (0U) 3272 #define DMA_CPAR_PA_Msk (0xFFFFFFFFUL << DMA_CPAR_PA_Pos) /*!< 0xFFFFFFFF */ 3273 #define DMA_CPAR_PA DMA_CPAR_PA_Msk /*!< Peripheral Address */ 3274 3275 /****************** Bit definition for DMA_CMAR register *******************/ 3276 #define DMA_CMAR_MA_Pos (0U) 3277 #define DMA_CMAR_MA_Msk (0xFFFFFFFFUL << DMA_CMAR_MA_Pos) /*!< 0xFFFFFFFF */ 3278 #define DMA_CMAR_MA DMA_CMAR_MA_Msk /*!< Memory Address */ 3279 3280 /******************************************************************************/ 3281 /* */ 3282 /* Analog to Digital Converter (ADC) */ 3283 /* */ 3284 /******************************************************************************/ 3285 3286 /* 3287 * @brief Specific device feature definitions (not present on all devices in the STM32F1 family) 3288 */ 3289 /* Note: No specific macro feature on this device */ 3290 3291 /******************** Bit definition for ADC_SR register ********************/ 3292 #define ADC_SR_AWD_Pos (0U) 3293 #define ADC_SR_AWD_Msk (0x1UL << ADC_SR_AWD_Pos) /*!< 0x00000001 */ 3294 #define ADC_SR_AWD ADC_SR_AWD_Msk /*!< ADC analog watchdog 1 flag */ 3295 #define ADC_SR_EOS_Pos (1U) 3296 #define ADC_SR_EOS_Msk (0x1UL << ADC_SR_EOS_Pos) /*!< 0x00000002 */ 3297 #define ADC_SR_EOS ADC_SR_EOS_Msk /*!< ADC group regular end of sequence conversions flag */ 3298 #define ADC_SR_JEOS_Pos (2U) 3299 #define ADC_SR_JEOS_Msk (0x1UL << ADC_SR_JEOS_Pos) /*!< 0x00000004 */ 3300 #define ADC_SR_JEOS ADC_SR_JEOS_Msk /*!< ADC group injected end of sequence conversions flag */ 3301 #define ADC_SR_JSTRT_Pos (3U) 3302 #define ADC_SR_JSTRT_Msk (0x1UL << ADC_SR_JSTRT_Pos) /*!< 0x00000008 */ 3303 #define ADC_SR_JSTRT ADC_SR_JSTRT_Msk /*!< ADC group injected conversion start flag */ 3304 #define ADC_SR_STRT_Pos (4U) 3305 #define ADC_SR_STRT_Msk (0x1UL << ADC_SR_STRT_Pos) /*!< 0x00000010 */ 3306 #define ADC_SR_STRT ADC_SR_STRT_Msk /*!< ADC group regular conversion start flag */ 3307 3308 /* Legacy defines */ 3309 #define ADC_SR_EOC (ADC_SR_EOS) 3310 #define ADC_SR_JEOC (ADC_SR_JEOS) 3311 3312 /******************* Bit definition for ADC_CR1 register ********************/ 3313 #define ADC_CR1_AWDCH_Pos (0U) 3314 #define ADC_CR1_AWDCH_Msk (0x1FUL << ADC_CR1_AWDCH_Pos) /*!< 0x0000001F */ 3315 #define ADC_CR1_AWDCH ADC_CR1_AWDCH_Msk /*!< ADC analog watchdog 1 monitored channel selection */ 3316 #define ADC_CR1_AWDCH_0 (0x01UL << ADC_CR1_AWDCH_Pos) /*!< 0x00000001 */ 3317 #define ADC_CR1_AWDCH_1 (0x02UL << ADC_CR1_AWDCH_Pos) /*!< 0x00000002 */ 3318 #define ADC_CR1_AWDCH_2 (0x04UL << ADC_CR1_AWDCH_Pos) /*!< 0x00000004 */ 3319 #define ADC_CR1_AWDCH_3 (0x08UL << ADC_CR1_AWDCH_Pos) /*!< 0x00000008 */ 3320 #define ADC_CR1_AWDCH_4 (0x10UL << ADC_CR1_AWDCH_Pos) /*!< 0x00000010 */ 3321 3322 #define ADC_CR1_EOSIE_Pos (5U) 3323 #define ADC_CR1_EOSIE_Msk (0x1UL << ADC_CR1_EOSIE_Pos) /*!< 0x00000020 */ 3324 #define ADC_CR1_EOSIE ADC_CR1_EOSIE_Msk /*!< ADC group regular end of sequence conversions interrupt */ 3325 #define ADC_CR1_AWDIE_Pos (6U) 3326 #define ADC_CR1_AWDIE_Msk (0x1UL << ADC_CR1_AWDIE_Pos) /*!< 0x00000040 */ 3327 #define ADC_CR1_AWDIE ADC_CR1_AWDIE_Msk /*!< ADC analog watchdog 1 interrupt */ 3328 #define ADC_CR1_JEOSIE_Pos (7U) 3329 #define ADC_CR1_JEOSIE_Msk (0x1UL << ADC_CR1_JEOSIE_Pos) /*!< 0x00000080 */ 3330 #define ADC_CR1_JEOSIE ADC_CR1_JEOSIE_Msk /*!< ADC group injected end of sequence conversions interrupt */ 3331 #define ADC_CR1_SCAN_Pos (8U) 3332 #define ADC_CR1_SCAN_Msk (0x1UL << ADC_CR1_SCAN_Pos) /*!< 0x00000100 */ 3333 #define ADC_CR1_SCAN ADC_CR1_SCAN_Msk /*!< ADC scan mode */ 3334 #define ADC_CR1_AWDSGL_Pos (9U) 3335 #define ADC_CR1_AWDSGL_Msk (0x1UL << ADC_CR1_AWDSGL_Pos) /*!< 0x00000200 */ 3336 #define ADC_CR1_AWDSGL ADC_CR1_AWDSGL_Msk /*!< ADC analog watchdog 1 monitoring a single channel or all channels */ 3337 #define ADC_CR1_JAUTO_Pos (10U) 3338 #define ADC_CR1_JAUTO_Msk (0x1UL << ADC_CR1_JAUTO_Pos) /*!< 0x00000400 */ 3339 #define ADC_CR1_JAUTO ADC_CR1_JAUTO_Msk /*!< ADC group injected automatic trigger mode */ 3340 #define ADC_CR1_DISCEN_Pos (11U) 3341 #define ADC_CR1_DISCEN_Msk (0x1UL << ADC_CR1_DISCEN_Pos) /*!< 0x00000800 */ 3342 #define ADC_CR1_DISCEN ADC_CR1_DISCEN_Msk /*!< ADC group regular sequencer discontinuous mode */ 3343 #define ADC_CR1_JDISCEN_Pos (12U) 3344 #define ADC_CR1_JDISCEN_Msk (0x1UL << ADC_CR1_JDISCEN_Pos) /*!< 0x00001000 */ 3345 #define ADC_CR1_JDISCEN ADC_CR1_JDISCEN_Msk /*!< ADC group injected sequencer discontinuous mode */ 3346 3347 #define ADC_CR1_DISCNUM_Pos (13U) 3348 #define ADC_CR1_DISCNUM_Msk (0x7UL << ADC_CR1_DISCNUM_Pos) /*!< 0x0000E000 */ 3349 #define ADC_CR1_DISCNUM ADC_CR1_DISCNUM_Msk /*!< ADC group regular sequencer discontinuous number of ranks */ 3350 #define ADC_CR1_DISCNUM_0 (0x1UL << ADC_CR1_DISCNUM_Pos) /*!< 0x00002000 */ 3351 #define ADC_CR1_DISCNUM_1 (0x2UL << ADC_CR1_DISCNUM_Pos) /*!< 0x00004000 */ 3352 #define ADC_CR1_DISCNUM_2 (0x4UL << ADC_CR1_DISCNUM_Pos) /*!< 0x00008000 */ 3353 3354 #define ADC_CR1_JAWDEN_Pos (22U) 3355 #define ADC_CR1_JAWDEN_Msk (0x1UL << ADC_CR1_JAWDEN_Pos) /*!< 0x00400000 */ 3356 #define ADC_CR1_JAWDEN ADC_CR1_JAWDEN_Msk /*!< ADC analog watchdog 1 enable on scope ADC group injected */ 3357 #define ADC_CR1_AWDEN_Pos (23U) 3358 #define ADC_CR1_AWDEN_Msk (0x1UL << ADC_CR1_AWDEN_Pos) /*!< 0x00800000 */ 3359 #define ADC_CR1_AWDEN ADC_CR1_AWDEN_Msk /*!< ADC analog watchdog 1 enable on scope ADC group regular */ 3360 3361 /* Legacy defines */ 3362 #define ADC_CR1_EOCIE (ADC_CR1_EOSIE) 3363 #define ADC_CR1_JEOCIE (ADC_CR1_JEOSIE) 3364 3365 /******************* Bit definition for ADC_CR2 register ********************/ 3366 #define ADC_CR2_ADON_Pos (0U) 3367 #define ADC_CR2_ADON_Msk (0x1UL << ADC_CR2_ADON_Pos) /*!< 0x00000001 */ 3368 #define ADC_CR2_ADON ADC_CR2_ADON_Msk /*!< ADC enable */ 3369 #define ADC_CR2_CONT_Pos (1U) 3370 #define ADC_CR2_CONT_Msk (0x1UL << ADC_CR2_CONT_Pos) /*!< 0x00000002 */ 3371 #define ADC_CR2_CONT ADC_CR2_CONT_Msk /*!< ADC group regular continuous conversion mode */ 3372 #define ADC_CR2_CAL_Pos (2U) 3373 #define ADC_CR2_CAL_Msk (0x1UL << ADC_CR2_CAL_Pos) /*!< 0x00000004 */ 3374 #define ADC_CR2_CAL ADC_CR2_CAL_Msk /*!< ADC calibration start */ 3375 #define ADC_CR2_RSTCAL_Pos (3U) 3376 #define ADC_CR2_RSTCAL_Msk (0x1UL << ADC_CR2_RSTCAL_Pos) /*!< 0x00000008 */ 3377 #define ADC_CR2_RSTCAL ADC_CR2_RSTCAL_Msk /*!< ADC calibration reset */ 3378 #define ADC_CR2_DMA_Pos (8U) 3379 #define ADC_CR2_DMA_Msk (0x1UL << ADC_CR2_DMA_Pos) /*!< 0x00000100 */ 3380 #define ADC_CR2_DMA ADC_CR2_DMA_Msk /*!< ADC DMA transfer enable */ 3381 #define ADC_CR2_ALIGN_Pos (11U) 3382 #define ADC_CR2_ALIGN_Msk (0x1UL << ADC_CR2_ALIGN_Pos) /*!< 0x00000800 */ 3383 #define ADC_CR2_ALIGN ADC_CR2_ALIGN_Msk /*!< ADC data alignement */ 3384 3385 #define ADC_CR2_JEXTSEL_Pos (12U) 3386 #define ADC_CR2_JEXTSEL_Msk (0x7UL << ADC_CR2_JEXTSEL_Pos) /*!< 0x00007000 */ 3387 #define ADC_CR2_JEXTSEL ADC_CR2_JEXTSEL_Msk /*!< ADC group injected external trigger source */ 3388 #define ADC_CR2_JEXTSEL_0 (0x1UL << ADC_CR2_JEXTSEL_Pos) /*!< 0x00001000 */ 3389 #define ADC_CR2_JEXTSEL_1 (0x2UL << ADC_CR2_JEXTSEL_Pos) /*!< 0x00002000 */ 3390 #define ADC_CR2_JEXTSEL_2 (0x4UL << ADC_CR2_JEXTSEL_Pos) /*!< 0x00004000 */ 3391 3392 #define ADC_CR2_JEXTTRIG_Pos (15U) 3393 #define ADC_CR2_JEXTTRIG_Msk (0x1UL << ADC_CR2_JEXTTRIG_Pos) /*!< 0x00008000 */ 3394 #define ADC_CR2_JEXTTRIG ADC_CR2_JEXTTRIG_Msk /*!< ADC group injected external trigger enable */ 3395 3396 #define ADC_CR2_EXTSEL_Pos (17U) 3397 #define ADC_CR2_EXTSEL_Msk (0x7UL << ADC_CR2_EXTSEL_Pos) /*!< 0x000E0000 */ 3398 #define ADC_CR2_EXTSEL ADC_CR2_EXTSEL_Msk /*!< ADC group regular external trigger source */ 3399 #define ADC_CR2_EXTSEL_0 (0x1UL << ADC_CR2_EXTSEL_Pos) /*!< 0x00020000 */ 3400 #define ADC_CR2_EXTSEL_1 (0x2UL << ADC_CR2_EXTSEL_Pos) /*!< 0x00040000 */ 3401 #define ADC_CR2_EXTSEL_2 (0x4UL << ADC_CR2_EXTSEL_Pos) /*!< 0x00080000 */ 3402 3403 #define ADC_CR2_EXTTRIG_Pos (20U) 3404 #define ADC_CR2_EXTTRIG_Msk (0x1UL << ADC_CR2_EXTTRIG_Pos) /*!< 0x00100000 */ 3405 #define ADC_CR2_EXTTRIG ADC_CR2_EXTTRIG_Msk /*!< ADC group regular external trigger enable */ 3406 #define ADC_CR2_JSWSTART_Pos (21U) 3407 #define ADC_CR2_JSWSTART_Msk (0x1UL << ADC_CR2_JSWSTART_Pos) /*!< 0x00200000 */ 3408 #define ADC_CR2_JSWSTART ADC_CR2_JSWSTART_Msk /*!< ADC group injected conversion start */ 3409 #define ADC_CR2_SWSTART_Pos (22U) 3410 #define ADC_CR2_SWSTART_Msk (0x1UL << ADC_CR2_SWSTART_Pos) /*!< 0x00400000 */ 3411 #define ADC_CR2_SWSTART ADC_CR2_SWSTART_Msk /*!< ADC group regular conversion start */ 3412 #define ADC_CR2_TSVREFE_Pos (23U) 3413 #define ADC_CR2_TSVREFE_Msk (0x1UL << ADC_CR2_TSVREFE_Pos) /*!< 0x00800000 */ 3414 #define ADC_CR2_TSVREFE ADC_CR2_TSVREFE_Msk /*!< ADC internal path to VrefInt and temperature sensor enable */ 3415 3416 /****************** Bit definition for ADC_SMPR1 register *******************/ 3417 #define ADC_SMPR1_SMP10_Pos (0U) 3418 #define ADC_SMPR1_SMP10_Msk (0x7UL << ADC_SMPR1_SMP10_Pos) /*!< 0x00000007 */ 3419 #define ADC_SMPR1_SMP10 ADC_SMPR1_SMP10_Msk /*!< ADC channel 10 sampling time selection */ 3420 #define ADC_SMPR1_SMP10_0 (0x1UL << ADC_SMPR1_SMP10_Pos) /*!< 0x00000001 */ 3421 #define ADC_SMPR1_SMP10_1 (0x2UL << ADC_SMPR1_SMP10_Pos) /*!< 0x00000002 */ 3422 #define ADC_SMPR1_SMP10_2 (0x4UL << ADC_SMPR1_SMP10_Pos) /*!< 0x00000004 */ 3423 3424 #define ADC_SMPR1_SMP11_Pos (3U) 3425 #define ADC_SMPR1_SMP11_Msk (0x7UL << ADC_SMPR1_SMP11_Pos) /*!< 0x00000038 */ 3426 #define ADC_SMPR1_SMP11 ADC_SMPR1_SMP11_Msk /*!< ADC channel 11 sampling time selection */ 3427 #define ADC_SMPR1_SMP11_0 (0x1UL << ADC_SMPR1_SMP11_Pos) /*!< 0x00000008 */ 3428 #define ADC_SMPR1_SMP11_1 (0x2UL << ADC_SMPR1_SMP11_Pos) /*!< 0x00000010 */ 3429 #define ADC_SMPR1_SMP11_2 (0x4UL << ADC_SMPR1_SMP11_Pos) /*!< 0x00000020 */ 3430 3431 #define ADC_SMPR1_SMP12_Pos (6U) 3432 #define ADC_SMPR1_SMP12_Msk (0x7UL << ADC_SMPR1_SMP12_Pos) /*!< 0x000001C0 */ 3433 #define ADC_SMPR1_SMP12 ADC_SMPR1_SMP12_Msk /*!< ADC channel 12 sampling time selection */ 3434 #define ADC_SMPR1_SMP12_0 (0x1UL << ADC_SMPR1_SMP12_Pos) /*!< 0x00000040 */ 3435 #define ADC_SMPR1_SMP12_1 (0x2UL << ADC_SMPR1_SMP12_Pos) /*!< 0x00000080 */ 3436 #define ADC_SMPR1_SMP12_2 (0x4UL << ADC_SMPR1_SMP12_Pos) /*!< 0x00000100 */ 3437 3438 #define ADC_SMPR1_SMP13_Pos (9U) 3439 #define ADC_SMPR1_SMP13_Msk (0x7UL << ADC_SMPR1_SMP13_Pos) /*!< 0x00000E00 */ 3440 #define ADC_SMPR1_SMP13 ADC_SMPR1_SMP13_Msk /*!< ADC channel 13 sampling time selection */ 3441 #define ADC_SMPR1_SMP13_0 (0x1UL << ADC_SMPR1_SMP13_Pos) /*!< 0x00000200 */ 3442 #define ADC_SMPR1_SMP13_1 (0x2UL << ADC_SMPR1_SMP13_Pos) /*!< 0x00000400 */ 3443 #define ADC_SMPR1_SMP13_2 (0x4UL << ADC_SMPR1_SMP13_Pos) /*!< 0x00000800 */ 3444 3445 #define ADC_SMPR1_SMP14_Pos (12U) 3446 #define ADC_SMPR1_SMP14_Msk (0x7UL << ADC_SMPR1_SMP14_Pos) /*!< 0x00007000 */ 3447 #define ADC_SMPR1_SMP14 ADC_SMPR1_SMP14_Msk /*!< ADC channel 14 sampling time selection */ 3448 #define ADC_SMPR1_SMP14_0 (0x1UL << ADC_SMPR1_SMP14_Pos) /*!< 0x00001000 */ 3449 #define ADC_SMPR1_SMP14_1 (0x2UL << ADC_SMPR1_SMP14_Pos) /*!< 0x00002000 */ 3450 #define ADC_SMPR1_SMP14_2 (0x4UL << ADC_SMPR1_SMP14_Pos) /*!< 0x00004000 */ 3451 3452 #define ADC_SMPR1_SMP15_Pos (15U) 3453 #define ADC_SMPR1_SMP15_Msk (0x7UL << ADC_SMPR1_SMP15_Pos) /*!< 0x00038000 */ 3454 #define ADC_SMPR1_SMP15 ADC_SMPR1_SMP15_Msk /*!< ADC channel 15 sampling time selection */ 3455 #define ADC_SMPR1_SMP15_0 (0x1UL << ADC_SMPR1_SMP15_Pos) /*!< 0x00008000 */ 3456 #define ADC_SMPR1_SMP15_1 (0x2UL << ADC_SMPR1_SMP15_Pos) /*!< 0x00010000 */ 3457 #define ADC_SMPR1_SMP15_2 (0x4UL << ADC_SMPR1_SMP15_Pos) /*!< 0x00020000 */ 3458 3459 #define ADC_SMPR1_SMP16_Pos (18U) 3460 #define ADC_SMPR1_SMP16_Msk (0x7UL << ADC_SMPR1_SMP16_Pos) /*!< 0x001C0000 */ 3461 #define ADC_SMPR1_SMP16 ADC_SMPR1_SMP16_Msk /*!< ADC channel 16 sampling time selection */ 3462 #define ADC_SMPR1_SMP16_0 (0x1UL << ADC_SMPR1_SMP16_Pos) /*!< 0x00040000 */ 3463 #define ADC_SMPR1_SMP16_1 (0x2UL << ADC_SMPR1_SMP16_Pos) /*!< 0x00080000 */ 3464 #define ADC_SMPR1_SMP16_2 (0x4UL << ADC_SMPR1_SMP16_Pos) /*!< 0x00100000 */ 3465 3466 #define ADC_SMPR1_SMP17_Pos (21U) 3467 #define ADC_SMPR1_SMP17_Msk (0x7UL << ADC_SMPR1_SMP17_Pos) /*!< 0x00E00000 */ 3468 #define ADC_SMPR1_SMP17 ADC_SMPR1_SMP17_Msk /*!< ADC channel 17 sampling time selection */ 3469 #define ADC_SMPR1_SMP17_0 (0x1UL << ADC_SMPR1_SMP17_Pos) /*!< 0x00200000 */ 3470 #define ADC_SMPR1_SMP17_1 (0x2UL << ADC_SMPR1_SMP17_Pos) /*!< 0x00400000 */ 3471 #define ADC_SMPR1_SMP17_2 (0x4UL << ADC_SMPR1_SMP17_Pos) /*!< 0x00800000 */ 3472 3473 /****************** Bit definition for ADC_SMPR2 register *******************/ 3474 #define ADC_SMPR2_SMP0_Pos (0U) 3475 #define ADC_SMPR2_SMP0_Msk (0x7UL << ADC_SMPR2_SMP0_Pos) /*!< 0x00000007 */ 3476 #define ADC_SMPR2_SMP0 ADC_SMPR2_SMP0_Msk /*!< ADC channel 0 sampling time selection */ 3477 #define ADC_SMPR2_SMP0_0 (0x1UL << ADC_SMPR2_SMP0_Pos) /*!< 0x00000001 */ 3478 #define ADC_SMPR2_SMP0_1 (0x2UL << ADC_SMPR2_SMP0_Pos) /*!< 0x00000002 */ 3479 #define ADC_SMPR2_SMP0_2 (0x4UL << ADC_SMPR2_SMP0_Pos) /*!< 0x00000004 */ 3480 3481 #define ADC_SMPR2_SMP1_Pos (3U) 3482 #define ADC_SMPR2_SMP1_Msk (0x7UL << ADC_SMPR2_SMP1_Pos) /*!< 0x00000038 */ 3483 #define ADC_SMPR2_SMP1 ADC_SMPR2_SMP1_Msk /*!< ADC channel 1 sampling time selection */ 3484 #define ADC_SMPR2_SMP1_0 (0x1UL << ADC_SMPR2_SMP1_Pos) /*!< 0x00000008 */ 3485 #define ADC_SMPR2_SMP1_1 (0x2UL << ADC_SMPR2_SMP1_Pos) /*!< 0x00000010 */ 3486 #define ADC_SMPR2_SMP1_2 (0x4UL << ADC_SMPR2_SMP1_Pos) /*!< 0x00000020 */ 3487 3488 #define ADC_SMPR2_SMP2_Pos (6U) 3489 #define ADC_SMPR2_SMP2_Msk (0x7UL << ADC_SMPR2_SMP2_Pos) /*!< 0x000001C0 */ 3490 #define ADC_SMPR2_SMP2 ADC_SMPR2_SMP2_Msk /*!< ADC channel 2 sampling time selection */ 3491 #define ADC_SMPR2_SMP2_0 (0x1UL << ADC_SMPR2_SMP2_Pos) /*!< 0x00000040 */ 3492 #define ADC_SMPR2_SMP2_1 (0x2UL << ADC_SMPR2_SMP2_Pos) /*!< 0x00000080 */ 3493 #define ADC_SMPR2_SMP2_2 (0x4UL << ADC_SMPR2_SMP2_Pos) /*!< 0x00000100 */ 3494 3495 #define ADC_SMPR2_SMP3_Pos (9U) 3496 #define ADC_SMPR2_SMP3_Msk (0x7UL << ADC_SMPR2_SMP3_Pos) /*!< 0x00000E00 */ 3497 #define ADC_SMPR2_SMP3 ADC_SMPR2_SMP3_Msk /*!< ADC channel 3 sampling time selection */ 3498 #define ADC_SMPR2_SMP3_0 (0x1UL << ADC_SMPR2_SMP3_Pos) /*!< 0x00000200 */ 3499 #define ADC_SMPR2_SMP3_1 (0x2UL << ADC_SMPR2_SMP3_Pos) /*!< 0x00000400 */ 3500 #define ADC_SMPR2_SMP3_2 (0x4UL << ADC_SMPR2_SMP3_Pos) /*!< 0x00000800 */ 3501 3502 #define ADC_SMPR2_SMP4_Pos (12U) 3503 #define ADC_SMPR2_SMP4_Msk (0x7UL << ADC_SMPR2_SMP4_Pos) /*!< 0x00007000 */ 3504 #define ADC_SMPR2_SMP4 ADC_SMPR2_SMP4_Msk /*!< ADC channel 4 sampling time selection */ 3505 #define ADC_SMPR2_SMP4_0 (0x1UL << ADC_SMPR2_SMP4_Pos) /*!< 0x00001000 */ 3506 #define ADC_SMPR2_SMP4_1 (0x2UL << ADC_SMPR2_SMP4_Pos) /*!< 0x00002000 */ 3507 #define ADC_SMPR2_SMP4_2 (0x4UL << ADC_SMPR2_SMP4_Pos) /*!< 0x00004000 */ 3508 3509 #define ADC_SMPR2_SMP5_Pos (15U) 3510 #define ADC_SMPR2_SMP5_Msk (0x7UL << ADC_SMPR2_SMP5_Pos) /*!< 0x00038000 */ 3511 #define ADC_SMPR2_SMP5 ADC_SMPR2_SMP5_Msk /*!< ADC channel 5 sampling time selection */ 3512 #define ADC_SMPR2_SMP5_0 (0x1UL << ADC_SMPR2_SMP5_Pos) /*!< 0x00008000 */ 3513 #define ADC_SMPR2_SMP5_1 (0x2UL << ADC_SMPR2_SMP5_Pos) /*!< 0x00010000 */ 3514 #define ADC_SMPR2_SMP5_2 (0x4UL << ADC_SMPR2_SMP5_Pos) /*!< 0x00020000 */ 3515 3516 #define ADC_SMPR2_SMP6_Pos (18U) 3517 #define ADC_SMPR2_SMP6_Msk (0x7UL << ADC_SMPR2_SMP6_Pos) /*!< 0x001C0000 */ 3518 #define ADC_SMPR2_SMP6 ADC_SMPR2_SMP6_Msk /*!< ADC channel 6 sampling time selection */ 3519 #define ADC_SMPR2_SMP6_0 (0x1UL << ADC_SMPR2_SMP6_Pos) /*!< 0x00040000 */ 3520 #define ADC_SMPR2_SMP6_1 (0x2UL << ADC_SMPR2_SMP6_Pos) /*!< 0x00080000 */ 3521 #define ADC_SMPR2_SMP6_2 (0x4UL << ADC_SMPR2_SMP6_Pos) /*!< 0x00100000 */ 3522 3523 #define ADC_SMPR2_SMP7_Pos (21U) 3524 #define ADC_SMPR2_SMP7_Msk (0x7UL << ADC_SMPR2_SMP7_Pos) /*!< 0x00E00000 */ 3525 #define ADC_SMPR2_SMP7 ADC_SMPR2_SMP7_Msk /*!< ADC channel 7 sampling time selection */ 3526 #define ADC_SMPR2_SMP7_0 (0x1UL << ADC_SMPR2_SMP7_Pos) /*!< 0x00200000 */ 3527 #define ADC_SMPR2_SMP7_1 (0x2UL << ADC_SMPR2_SMP7_Pos) /*!< 0x00400000 */ 3528 #define ADC_SMPR2_SMP7_2 (0x4UL << ADC_SMPR2_SMP7_Pos) /*!< 0x00800000 */ 3529 3530 #define ADC_SMPR2_SMP8_Pos (24U) 3531 #define ADC_SMPR2_SMP8_Msk (0x7UL << ADC_SMPR2_SMP8_Pos) /*!< 0x07000000 */ 3532 #define ADC_SMPR2_SMP8 ADC_SMPR2_SMP8_Msk /*!< ADC channel 8 sampling time selection */ 3533 #define ADC_SMPR2_SMP8_0 (0x1UL << ADC_SMPR2_SMP8_Pos) /*!< 0x01000000 */ 3534 #define ADC_SMPR2_SMP8_1 (0x2UL << ADC_SMPR2_SMP8_Pos) /*!< 0x02000000 */ 3535 #define ADC_SMPR2_SMP8_2 (0x4UL << ADC_SMPR2_SMP8_Pos) /*!< 0x04000000 */ 3536 3537 #define ADC_SMPR2_SMP9_Pos (27U) 3538 #define ADC_SMPR2_SMP9_Msk (0x7UL << ADC_SMPR2_SMP9_Pos) /*!< 0x38000000 */ 3539 #define ADC_SMPR2_SMP9 ADC_SMPR2_SMP9_Msk /*!< ADC channel 9 sampling time selection */ 3540 #define ADC_SMPR2_SMP9_0 (0x1UL << ADC_SMPR2_SMP9_Pos) /*!< 0x08000000 */ 3541 #define ADC_SMPR2_SMP9_1 (0x2UL << ADC_SMPR2_SMP9_Pos) /*!< 0x10000000 */ 3542 #define ADC_SMPR2_SMP9_2 (0x4UL << ADC_SMPR2_SMP9_Pos) /*!< 0x20000000 */ 3543 3544 /****************** Bit definition for ADC_JOFR1 register *******************/ 3545 #define ADC_JOFR1_JOFFSET1_Pos (0U) 3546 #define ADC_JOFR1_JOFFSET1_Msk (0xFFFUL << ADC_JOFR1_JOFFSET1_Pos) /*!< 0x00000FFF */ 3547 #define ADC_JOFR1_JOFFSET1 ADC_JOFR1_JOFFSET1_Msk /*!< ADC group injected sequencer rank 1 offset value */ 3548 3549 /****************** Bit definition for ADC_JOFR2 register *******************/ 3550 #define ADC_JOFR2_JOFFSET2_Pos (0U) 3551 #define ADC_JOFR2_JOFFSET2_Msk (0xFFFUL << ADC_JOFR2_JOFFSET2_Pos) /*!< 0x00000FFF */ 3552 #define ADC_JOFR2_JOFFSET2 ADC_JOFR2_JOFFSET2_Msk /*!< ADC group injected sequencer rank 2 offset value */ 3553 3554 /****************** Bit definition for ADC_JOFR3 register *******************/ 3555 #define ADC_JOFR3_JOFFSET3_Pos (0U) 3556 #define ADC_JOFR3_JOFFSET3_Msk (0xFFFUL << ADC_JOFR3_JOFFSET3_Pos) /*!< 0x00000FFF */ 3557 #define ADC_JOFR3_JOFFSET3 ADC_JOFR3_JOFFSET3_Msk /*!< ADC group injected sequencer rank 3 offset value */ 3558 3559 /****************** Bit definition for ADC_JOFR4 register *******************/ 3560 #define ADC_JOFR4_JOFFSET4_Pos (0U) 3561 #define ADC_JOFR4_JOFFSET4_Msk (0xFFFUL << ADC_JOFR4_JOFFSET4_Pos) /*!< 0x00000FFF */ 3562 #define ADC_JOFR4_JOFFSET4 ADC_JOFR4_JOFFSET4_Msk /*!< ADC group injected sequencer rank 4 offset value */ 3563 3564 /******************* Bit definition for ADC_HTR register ********************/ 3565 #define ADC_HTR_HT_Pos (0U) 3566 #define ADC_HTR_HT_Msk (0xFFFUL << ADC_HTR_HT_Pos) /*!< 0x00000FFF */ 3567 #define ADC_HTR_HT ADC_HTR_HT_Msk /*!< ADC analog watchdog 1 threshold high */ 3568 3569 /******************* Bit definition for ADC_LTR register ********************/ 3570 #define ADC_LTR_LT_Pos (0U) 3571 #define ADC_LTR_LT_Msk (0xFFFUL << ADC_LTR_LT_Pos) /*!< 0x00000FFF */ 3572 #define ADC_LTR_LT ADC_LTR_LT_Msk /*!< ADC analog watchdog 1 threshold low */ 3573 3574 /******************* Bit definition for ADC_SQR1 register *******************/ 3575 #define ADC_SQR1_SQ13_Pos (0U) 3576 #define ADC_SQR1_SQ13_Msk (0x1FUL << ADC_SQR1_SQ13_Pos) /*!< 0x0000001F */ 3577 #define ADC_SQR1_SQ13 ADC_SQR1_SQ13_Msk /*!< ADC group regular sequencer rank 13 */ 3578 #define ADC_SQR1_SQ13_0 (0x01UL << ADC_SQR1_SQ13_Pos) /*!< 0x00000001 */ 3579 #define ADC_SQR1_SQ13_1 (0x02UL << ADC_SQR1_SQ13_Pos) /*!< 0x00000002 */ 3580 #define ADC_SQR1_SQ13_2 (0x04UL << ADC_SQR1_SQ13_Pos) /*!< 0x00000004 */ 3581 #define ADC_SQR1_SQ13_3 (0x08UL << ADC_SQR1_SQ13_Pos) /*!< 0x00000008 */ 3582 #define ADC_SQR1_SQ13_4 (0x10UL << ADC_SQR1_SQ13_Pos) /*!< 0x00000010 */ 3583 3584 #define ADC_SQR1_SQ14_Pos (5U) 3585 #define ADC_SQR1_SQ14_Msk (0x1FUL << ADC_SQR1_SQ14_Pos) /*!< 0x000003E0 */ 3586 #define ADC_SQR1_SQ14 ADC_SQR1_SQ14_Msk /*!< ADC group regular sequencer rank 14 */ 3587 #define ADC_SQR1_SQ14_0 (0x01UL << ADC_SQR1_SQ14_Pos) /*!< 0x00000020 */ 3588 #define ADC_SQR1_SQ14_1 (0x02UL << ADC_SQR1_SQ14_Pos) /*!< 0x00000040 */ 3589 #define ADC_SQR1_SQ14_2 (0x04UL << ADC_SQR1_SQ14_Pos) /*!< 0x00000080 */ 3590 #define ADC_SQR1_SQ14_3 (0x08UL << ADC_SQR1_SQ14_Pos) /*!< 0x00000100 */ 3591 #define ADC_SQR1_SQ14_4 (0x10UL << ADC_SQR1_SQ14_Pos) /*!< 0x00000200 */ 3592 3593 #define ADC_SQR1_SQ15_Pos (10U) 3594 #define ADC_SQR1_SQ15_Msk (0x1FUL << ADC_SQR1_SQ15_Pos) /*!< 0x00007C00 */ 3595 #define ADC_SQR1_SQ15 ADC_SQR1_SQ15_Msk /*!< ADC group regular sequencer rank 15 */ 3596 #define ADC_SQR1_SQ15_0 (0x01UL << ADC_SQR1_SQ15_Pos) /*!< 0x00000400 */ 3597 #define ADC_SQR1_SQ15_1 (0x02UL << ADC_SQR1_SQ15_Pos) /*!< 0x00000800 */ 3598 #define ADC_SQR1_SQ15_2 (0x04UL << ADC_SQR1_SQ15_Pos) /*!< 0x00001000 */ 3599 #define ADC_SQR1_SQ15_3 (0x08UL << ADC_SQR1_SQ15_Pos) /*!< 0x00002000 */ 3600 #define ADC_SQR1_SQ15_4 (0x10UL << ADC_SQR1_SQ15_Pos) /*!< 0x00004000 */ 3601 3602 #define ADC_SQR1_SQ16_Pos (15U) 3603 #define ADC_SQR1_SQ16_Msk (0x1FUL << ADC_SQR1_SQ16_Pos) /*!< 0x000F8000 */ 3604 #define ADC_SQR1_SQ16 ADC_SQR1_SQ16_Msk /*!< ADC group regular sequencer rank 16 */ 3605 #define ADC_SQR1_SQ16_0 (0x01UL << ADC_SQR1_SQ16_Pos) /*!< 0x00008000 */ 3606 #define ADC_SQR1_SQ16_1 (0x02UL << ADC_SQR1_SQ16_Pos) /*!< 0x00010000 */ 3607 #define ADC_SQR1_SQ16_2 (0x04UL << ADC_SQR1_SQ16_Pos) /*!< 0x00020000 */ 3608 #define ADC_SQR1_SQ16_3 (0x08UL << ADC_SQR1_SQ16_Pos) /*!< 0x00040000 */ 3609 #define ADC_SQR1_SQ16_4 (0x10UL << ADC_SQR1_SQ16_Pos) /*!< 0x00080000 */ 3610 3611 #define ADC_SQR1_L_Pos (20U) 3612 #define ADC_SQR1_L_Msk (0xFUL << ADC_SQR1_L_Pos) /*!< 0x00F00000 */ 3613 #define ADC_SQR1_L ADC_SQR1_L_Msk /*!< ADC group regular sequencer scan length */ 3614 #define ADC_SQR1_L_0 (0x1UL << ADC_SQR1_L_Pos) /*!< 0x00100000 */ 3615 #define ADC_SQR1_L_1 (0x2UL << ADC_SQR1_L_Pos) /*!< 0x00200000 */ 3616 #define ADC_SQR1_L_2 (0x4UL << ADC_SQR1_L_Pos) /*!< 0x00400000 */ 3617 #define ADC_SQR1_L_3 (0x8UL << ADC_SQR1_L_Pos) /*!< 0x00800000 */ 3618 3619 /******************* Bit definition for ADC_SQR2 register *******************/ 3620 #define ADC_SQR2_SQ7_Pos (0U) 3621 #define ADC_SQR2_SQ7_Msk (0x1FUL << ADC_SQR2_SQ7_Pos) /*!< 0x0000001F */ 3622 #define ADC_SQR2_SQ7 ADC_SQR2_SQ7_Msk /*!< ADC group regular sequencer rank 7 */ 3623 #define ADC_SQR2_SQ7_0 (0x01UL << ADC_SQR2_SQ7_Pos) /*!< 0x00000001 */ 3624 #define ADC_SQR2_SQ7_1 (0x02UL << ADC_SQR2_SQ7_Pos) /*!< 0x00000002 */ 3625 #define ADC_SQR2_SQ7_2 (0x04UL << ADC_SQR2_SQ7_Pos) /*!< 0x00000004 */ 3626 #define ADC_SQR2_SQ7_3 (0x08UL << ADC_SQR2_SQ7_Pos) /*!< 0x00000008 */ 3627 #define ADC_SQR2_SQ7_4 (0x10UL << ADC_SQR2_SQ7_Pos) /*!< 0x00000010 */ 3628 3629 #define ADC_SQR2_SQ8_Pos (5U) 3630 #define ADC_SQR2_SQ8_Msk (0x1FUL << ADC_SQR2_SQ8_Pos) /*!< 0x000003E0 */ 3631 #define ADC_SQR2_SQ8 ADC_SQR2_SQ8_Msk /*!< ADC group regular sequencer rank 8 */ 3632 #define ADC_SQR2_SQ8_0 (0x01UL << ADC_SQR2_SQ8_Pos) /*!< 0x00000020 */ 3633 #define ADC_SQR2_SQ8_1 (0x02UL << ADC_SQR2_SQ8_Pos) /*!< 0x00000040 */ 3634 #define ADC_SQR2_SQ8_2 (0x04UL << ADC_SQR2_SQ8_Pos) /*!< 0x00000080 */ 3635 #define ADC_SQR2_SQ8_3 (0x08UL << ADC_SQR2_SQ8_Pos) /*!< 0x00000100 */ 3636 #define ADC_SQR2_SQ8_4 (0x10UL << ADC_SQR2_SQ8_Pos) /*!< 0x00000200 */ 3637 3638 #define ADC_SQR2_SQ9_Pos (10U) 3639 #define ADC_SQR2_SQ9_Msk (0x1FUL << ADC_SQR2_SQ9_Pos) /*!< 0x00007C00 */ 3640 #define ADC_SQR2_SQ9 ADC_SQR2_SQ9_Msk /*!< ADC group regular sequencer rank 9 */ 3641 #define ADC_SQR2_SQ9_0 (0x01UL << ADC_SQR2_SQ9_Pos) /*!< 0x00000400 */ 3642 #define ADC_SQR2_SQ9_1 (0x02UL << ADC_SQR2_SQ9_Pos) /*!< 0x00000800 */ 3643 #define ADC_SQR2_SQ9_2 (0x04UL << ADC_SQR2_SQ9_Pos) /*!< 0x00001000 */ 3644 #define ADC_SQR2_SQ9_3 (0x08UL << ADC_SQR2_SQ9_Pos) /*!< 0x00002000 */ 3645 #define ADC_SQR2_SQ9_4 (0x10UL << ADC_SQR2_SQ9_Pos) /*!< 0x00004000 */ 3646 3647 #define ADC_SQR2_SQ10_Pos (15U) 3648 #define ADC_SQR2_SQ10_Msk (0x1FUL << ADC_SQR2_SQ10_Pos) /*!< 0x000F8000 */ 3649 #define ADC_SQR2_SQ10 ADC_SQR2_SQ10_Msk /*!< ADC group regular sequencer rank 10 */ 3650 #define ADC_SQR2_SQ10_0 (0x01UL << ADC_SQR2_SQ10_Pos) /*!< 0x00008000 */ 3651 #define ADC_SQR2_SQ10_1 (0x02UL << ADC_SQR2_SQ10_Pos) /*!< 0x00010000 */ 3652 #define ADC_SQR2_SQ10_2 (0x04UL << ADC_SQR2_SQ10_Pos) /*!< 0x00020000 */ 3653 #define ADC_SQR2_SQ10_3 (0x08UL << ADC_SQR2_SQ10_Pos) /*!< 0x00040000 */ 3654 #define ADC_SQR2_SQ10_4 (0x10UL << ADC_SQR2_SQ10_Pos) /*!< 0x00080000 */ 3655 3656 #define ADC_SQR2_SQ11_Pos (20U) 3657 #define ADC_SQR2_SQ11_Msk (0x1FUL << ADC_SQR2_SQ11_Pos) /*!< 0x01F00000 */ 3658 #define ADC_SQR2_SQ11 ADC_SQR2_SQ11_Msk /*!< ADC group regular sequencer rank 1 */ 3659 #define ADC_SQR2_SQ11_0 (0x01UL << ADC_SQR2_SQ11_Pos) /*!< 0x00100000 */ 3660 #define ADC_SQR2_SQ11_1 (0x02UL << ADC_SQR2_SQ11_Pos) /*!< 0x00200000 */ 3661 #define ADC_SQR2_SQ11_2 (0x04UL << ADC_SQR2_SQ11_Pos) /*!< 0x00400000 */ 3662 #define ADC_SQR2_SQ11_3 (0x08UL << ADC_SQR2_SQ11_Pos) /*!< 0x00800000 */ 3663 #define ADC_SQR2_SQ11_4 (0x10UL << ADC_SQR2_SQ11_Pos) /*!< 0x01000000 */ 3664 3665 #define ADC_SQR2_SQ12_Pos (25U) 3666 #define ADC_SQR2_SQ12_Msk (0x1FUL << ADC_SQR2_SQ12_Pos) /*!< 0x3E000000 */ 3667 #define ADC_SQR2_SQ12 ADC_SQR2_SQ12_Msk /*!< ADC group regular sequencer rank 12 */ 3668 #define ADC_SQR2_SQ12_0 (0x01UL << ADC_SQR2_SQ12_Pos) /*!< 0x02000000 */ 3669 #define ADC_SQR2_SQ12_1 (0x02UL << ADC_SQR2_SQ12_Pos) /*!< 0x04000000 */ 3670 #define ADC_SQR2_SQ12_2 (0x04UL << ADC_SQR2_SQ12_Pos) /*!< 0x08000000 */ 3671 #define ADC_SQR2_SQ12_3 (0x08UL << ADC_SQR2_SQ12_Pos) /*!< 0x10000000 */ 3672 #define ADC_SQR2_SQ12_4 (0x10UL << ADC_SQR2_SQ12_Pos) /*!< 0x20000000 */ 3673 3674 /******************* Bit definition for ADC_SQR3 register *******************/ 3675 #define ADC_SQR3_SQ1_Pos (0U) 3676 #define ADC_SQR3_SQ1_Msk (0x1FUL << ADC_SQR3_SQ1_Pos) /*!< 0x0000001F */ 3677 #define ADC_SQR3_SQ1 ADC_SQR3_SQ1_Msk /*!< ADC group regular sequencer rank 1 */ 3678 #define ADC_SQR3_SQ1_0 (0x01UL << ADC_SQR3_SQ1_Pos) /*!< 0x00000001 */ 3679 #define ADC_SQR3_SQ1_1 (0x02UL << ADC_SQR3_SQ1_Pos) /*!< 0x00000002 */ 3680 #define ADC_SQR3_SQ1_2 (0x04UL << ADC_SQR3_SQ1_Pos) /*!< 0x00000004 */ 3681 #define ADC_SQR3_SQ1_3 (0x08UL << ADC_SQR3_SQ1_Pos) /*!< 0x00000008 */ 3682 #define ADC_SQR3_SQ1_4 (0x10UL << ADC_SQR3_SQ1_Pos) /*!< 0x00000010 */ 3683 3684 #define ADC_SQR3_SQ2_Pos (5U) 3685 #define ADC_SQR3_SQ2_Msk (0x1FUL << ADC_SQR3_SQ2_Pos) /*!< 0x000003E0 */ 3686 #define ADC_SQR3_SQ2 ADC_SQR3_SQ2_Msk /*!< ADC group regular sequencer rank 2 */ 3687 #define ADC_SQR3_SQ2_0 (0x01UL << ADC_SQR3_SQ2_Pos) /*!< 0x00000020 */ 3688 #define ADC_SQR3_SQ2_1 (0x02UL << ADC_SQR3_SQ2_Pos) /*!< 0x00000040 */ 3689 #define ADC_SQR3_SQ2_2 (0x04UL << ADC_SQR3_SQ2_Pos) /*!< 0x00000080 */ 3690 #define ADC_SQR3_SQ2_3 (0x08UL << ADC_SQR3_SQ2_Pos) /*!< 0x00000100 */ 3691 #define ADC_SQR3_SQ2_4 (0x10UL << ADC_SQR3_SQ2_Pos) /*!< 0x00000200 */ 3692 3693 #define ADC_SQR3_SQ3_Pos (10U) 3694 #define ADC_SQR3_SQ3_Msk (0x1FUL << ADC_SQR3_SQ3_Pos) /*!< 0x00007C00 */ 3695 #define ADC_SQR3_SQ3 ADC_SQR3_SQ3_Msk /*!< ADC group regular sequencer rank 3 */ 3696 #define ADC_SQR3_SQ3_0 (0x01UL << ADC_SQR3_SQ3_Pos) /*!< 0x00000400 */ 3697 #define ADC_SQR3_SQ3_1 (0x02UL << ADC_SQR3_SQ3_Pos) /*!< 0x00000800 */ 3698 #define ADC_SQR3_SQ3_2 (0x04UL << ADC_SQR3_SQ3_Pos) /*!< 0x00001000 */ 3699 #define ADC_SQR3_SQ3_3 (0x08UL << ADC_SQR3_SQ3_Pos) /*!< 0x00002000 */ 3700 #define ADC_SQR3_SQ3_4 (0x10UL << ADC_SQR3_SQ3_Pos) /*!< 0x00004000 */ 3701 3702 #define ADC_SQR3_SQ4_Pos (15U) 3703 #define ADC_SQR3_SQ4_Msk (0x1FUL << ADC_SQR3_SQ4_Pos) /*!< 0x000F8000 */ 3704 #define ADC_SQR3_SQ4 ADC_SQR3_SQ4_Msk /*!< ADC group regular sequencer rank 4 */ 3705 #define ADC_SQR3_SQ4_0 (0x01UL << ADC_SQR3_SQ4_Pos) /*!< 0x00008000 */ 3706 #define ADC_SQR3_SQ4_1 (0x02UL << ADC_SQR3_SQ4_Pos) /*!< 0x00010000 */ 3707 #define ADC_SQR3_SQ4_2 (0x04UL << ADC_SQR3_SQ4_Pos) /*!< 0x00020000 */ 3708 #define ADC_SQR3_SQ4_3 (0x08UL << ADC_SQR3_SQ4_Pos) /*!< 0x00040000 */ 3709 #define ADC_SQR3_SQ4_4 (0x10UL << ADC_SQR3_SQ4_Pos) /*!< 0x00080000 */ 3710 3711 #define ADC_SQR3_SQ5_Pos (20U) 3712 #define ADC_SQR3_SQ5_Msk (0x1FUL << ADC_SQR3_SQ5_Pos) /*!< 0x01F00000 */ 3713 #define ADC_SQR3_SQ5 ADC_SQR3_SQ5_Msk /*!< ADC group regular sequencer rank 5 */ 3714 #define ADC_SQR3_SQ5_0 (0x01UL << ADC_SQR3_SQ5_Pos) /*!< 0x00100000 */ 3715 #define ADC_SQR3_SQ5_1 (0x02UL << ADC_SQR3_SQ5_Pos) /*!< 0x00200000 */ 3716 #define ADC_SQR3_SQ5_2 (0x04UL << ADC_SQR3_SQ5_Pos) /*!< 0x00400000 */ 3717 #define ADC_SQR3_SQ5_3 (0x08UL << ADC_SQR3_SQ5_Pos) /*!< 0x00800000 */ 3718 #define ADC_SQR3_SQ5_4 (0x10UL << ADC_SQR3_SQ5_Pos) /*!< 0x01000000 */ 3719 3720 #define ADC_SQR3_SQ6_Pos (25U) 3721 #define ADC_SQR3_SQ6_Msk (0x1FUL << ADC_SQR3_SQ6_Pos) /*!< 0x3E000000 */ 3722 #define ADC_SQR3_SQ6 ADC_SQR3_SQ6_Msk /*!< ADC group regular sequencer rank 6 */ 3723 #define ADC_SQR3_SQ6_0 (0x01UL << ADC_SQR3_SQ6_Pos) /*!< 0x02000000 */ 3724 #define ADC_SQR3_SQ6_1 (0x02UL << ADC_SQR3_SQ6_Pos) /*!< 0x04000000 */ 3725 #define ADC_SQR3_SQ6_2 (0x04UL << ADC_SQR3_SQ6_Pos) /*!< 0x08000000 */ 3726 #define ADC_SQR3_SQ6_3 (0x08UL << ADC_SQR3_SQ6_Pos) /*!< 0x10000000 */ 3727 #define ADC_SQR3_SQ6_4 (0x10UL << ADC_SQR3_SQ6_Pos) /*!< 0x20000000 */ 3728 3729 /******************* Bit definition for ADC_JSQR register *******************/ 3730 #define ADC_JSQR_JSQ1_Pos (0U) 3731 #define ADC_JSQR_JSQ1_Msk (0x1FUL << ADC_JSQR_JSQ1_Pos) /*!< 0x0000001F */ 3732 #define ADC_JSQR_JSQ1 ADC_JSQR_JSQ1_Msk /*!< ADC group injected sequencer rank 1 */ 3733 #define ADC_JSQR_JSQ1_0 (0x01UL << ADC_JSQR_JSQ1_Pos) /*!< 0x00000001 */ 3734 #define ADC_JSQR_JSQ1_1 (0x02UL << ADC_JSQR_JSQ1_Pos) /*!< 0x00000002 */ 3735 #define ADC_JSQR_JSQ1_2 (0x04UL << ADC_JSQR_JSQ1_Pos) /*!< 0x00000004 */ 3736 #define ADC_JSQR_JSQ1_3 (0x08UL << ADC_JSQR_JSQ1_Pos) /*!< 0x00000008 */ 3737 #define ADC_JSQR_JSQ1_4 (0x10UL << ADC_JSQR_JSQ1_Pos) /*!< 0x00000010 */ 3738 3739 #define ADC_JSQR_JSQ2_Pos (5U) 3740 #define ADC_JSQR_JSQ2_Msk (0x1FUL << ADC_JSQR_JSQ2_Pos) /*!< 0x000003E0 */ 3741 #define ADC_JSQR_JSQ2 ADC_JSQR_JSQ2_Msk /*!< ADC group injected sequencer rank 2 */ 3742 #define ADC_JSQR_JSQ2_0 (0x01UL << ADC_JSQR_JSQ2_Pos) /*!< 0x00000020 */ 3743 #define ADC_JSQR_JSQ2_1 (0x02UL << ADC_JSQR_JSQ2_Pos) /*!< 0x00000040 */ 3744 #define ADC_JSQR_JSQ2_2 (0x04UL << ADC_JSQR_JSQ2_Pos) /*!< 0x00000080 */ 3745 #define ADC_JSQR_JSQ2_3 (0x08UL << ADC_JSQR_JSQ2_Pos) /*!< 0x00000100 */ 3746 #define ADC_JSQR_JSQ2_4 (0x10UL << ADC_JSQR_JSQ2_Pos) /*!< 0x00000200 */ 3747 3748 #define ADC_JSQR_JSQ3_Pos (10U) 3749 #define ADC_JSQR_JSQ3_Msk (0x1FUL << ADC_JSQR_JSQ3_Pos) /*!< 0x00007C00 */ 3750 #define ADC_JSQR_JSQ3 ADC_JSQR_JSQ3_Msk /*!< ADC group injected sequencer rank 3 */ 3751 #define ADC_JSQR_JSQ3_0 (0x01UL << ADC_JSQR_JSQ3_Pos) /*!< 0x00000400 */ 3752 #define ADC_JSQR_JSQ3_1 (0x02UL << ADC_JSQR_JSQ3_Pos) /*!< 0x00000800 */ 3753 #define ADC_JSQR_JSQ3_2 (0x04UL << ADC_JSQR_JSQ3_Pos) /*!< 0x00001000 */ 3754 #define ADC_JSQR_JSQ3_3 (0x08UL << ADC_JSQR_JSQ3_Pos) /*!< 0x00002000 */ 3755 #define ADC_JSQR_JSQ3_4 (0x10UL << ADC_JSQR_JSQ3_Pos) /*!< 0x00004000 */ 3756 3757 #define ADC_JSQR_JSQ4_Pos (15U) 3758 #define ADC_JSQR_JSQ4_Msk (0x1FUL << ADC_JSQR_JSQ4_Pos) /*!< 0x000F8000 */ 3759 #define ADC_JSQR_JSQ4 ADC_JSQR_JSQ4_Msk /*!< ADC group injected sequencer rank 4 */ 3760 #define ADC_JSQR_JSQ4_0 (0x01UL << ADC_JSQR_JSQ4_Pos) /*!< 0x00008000 */ 3761 #define ADC_JSQR_JSQ4_1 (0x02UL << ADC_JSQR_JSQ4_Pos) /*!< 0x00010000 */ 3762 #define ADC_JSQR_JSQ4_2 (0x04UL << ADC_JSQR_JSQ4_Pos) /*!< 0x00020000 */ 3763 #define ADC_JSQR_JSQ4_3 (0x08UL << ADC_JSQR_JSQ4_Pos) /*!< 0x00040000 */ 3764 #define ADC_JSQR_JSQ4_4 (0x10UL << ADC_JSQR_JSQ4_Pos) /*!< 0x00080000 */ 3765 3766 #define ADC_JSQR_JL_Pos (20U) 3767 #define ADC_JSQR_JL_Msk (0x3UL << ADC_JSQR_JL_Pos) /*!< 0x00300000 */ 3768 #define ADC_JSQR_JL ADC_JSQR_JL_Msk /*!< ADC group injected sequencer scan length */ 3769 #define ADC_JSQR_JL_0 (0x1UL << ADC_JSQR_JL_Pos) /*!< 0x00100000 */ 3770 #define ADC_JSQR_JL_1 (0x2UL << ADC_JSQR_JL_Pos) /*!< 0x00200000 */ 3771 3772 /******************* Bit definition for ADC_JDR1 register *******************/ 3773 #define ADC_JDR1_JDATA_Pos (0U) 3774 #define ADC_JDR1_JDATA_Msk (0xFFFFUL << ADC_JDR1_JDATA_Pos) /*!< 0x0000FFFF */ 3775 #define ADC_JDR1_JDATA ADC_JDR1_JDATA_Msk /*!< ADC group injected sequencer rank 1 conversion data */ 3776 3777 /******************* Bit definition for ADC_JDR2 register *******************/ 3778 #define ADC_JDR2_JDATA_Pos (0U) 3779 #define ADC_JDR2_JDATA_Msk (0xFFFFUL << ADC_JDR2_JDATA_Pos) /*!< 0x0000FFFF */ 3780 #define ADC_JDR2_JDATA ADC_JDR2_JDATA_Msk /*!< ADC group injected sequencer rank 2 conversion data */ 3781 3782 /******************* Bit definition for ADC_JDR3 register *******************/ 3783 #define ADC_JDR3_JDATA_Pos (0U) 3784 #define ADC_JDR3_JDATA_Msk (0xFFFFUL << ADC_JDR3_JDATA_Pos) /*!< 0x0000FFFF */ 3785 #define ADC_JDR3_JDATA ADC_JDR3_JDATA_Msk /*!< ADC group injected sequencer rank 3 conversion data */ 3786 3787 /******************* Bit definition for ADC_JDR4 register *******************/ 3788 #define ADC_JDR4_JDATA_Pos (0U) 3789 #define ADC_JDR4_JDATA_Msk (0xFFFFUL << ADC_JDR4_JDATA_Pos) /*!< 0x0000FFFF */ 3790 #define ADC_JDR4_JDATA ADC_JDR4_JDATA_Msk /*!< ADC group injected sequencer rank 4 conversion data */ 3791 3792 /******************** Bit definition for ADC_DR register ********************/ 3793 #define ADC_DR_DATA_Pos (0U) 3794 #define ADC_DR_DATA_Msk (0xFFFFUL << ADC_DR_DATA_Pos) /*!< 0x0000FFFF */ 3795 #define ADC_DR_DATA ADC_DR_DATA_Msk /*!< ADC group regular conversion data */ 3796 /******************************************************************************/ 3797 /* */ 3798 /* Digital to Analog Converter */ 3799 /* */ 3800 /******************************************************************************/ 3801 3802 /******************** Bit definition for DAC_CR register ********************/ 3803 #define DAC_CR_EN1_Pos (0U) 3804 #define DAC_CR_EN1_Msk (0x1UL << DAC_CR_EN1_Pos) /*!< 0x00000001 */ 3805 #define DAC_CR_EN1 DAC_CR_EN1_Msk /*!< DAC channel1 enable */ 3806 #define DAC_CR_BOFF1_Pos (1U) 3807 #define DAC_CR_BOFF1_Msk (0x1UL << DAC_CR_BOFF1_Pos) /*!< 0x00000002 */ 3808 #define DAC_CR_BOFF1 DAC_CR_BOFF1_Msk /*!< DAC channel1 output buffer disable */ 3809 #define DAC_CR_TEN1_Pos (2U) 3810 #define DAC_CR_TEN1_Msk (0x1UL << DAC_CR_TEN1_Pos) /*!< 0x00000004 */ 3811 #define DAC_CR_TEN1 DAC_CR_TEN1_Msk /*!< DAC channel1 Trigger enable */ 3812 3813 #define DAC_CR_TSEL1_Pos (3U) 3814 #define DAC_CR_TSEL1_Msk (0x7UL << DAC_CR_TSEL1_Pos) /*!< 0x00000038 */ 3815 #define DAC_CR_TSEL1 DAC_CR_TSEL1_Msk /*!< TSEL1[2:0] (DAC channel1 Trigger selection) */ 3816 #define DAC_CR_TSEL1_0 (0x1UL << DAC_CR_TSEL1_Pos) /*!< 0x00000008 */ 3817 #define DAC_CR_TSEL1_1 (0x2UL << DAC_CR_TSEL1_Pos) /*!< 0x00000010 */ 3818 #define DAC_CR_TSEL1_2 (0x4UL << DAC_CR_TSEL1_Pos) /*!< 0x00000020 */ 3819 3820 #define DAC_CR_WAVE1_Pos (6U) 3821 #define DAC_CR_WAVE1_Msk (0x3UL << DAC_CR_WAVE1_Pos) /*!< 0x000000C0 */ 3822 #define DAC_CR_WAVE1 DAC_CR_WAVE1_Msk /*!< WAVE1[1:0] (DAC channel1 noise/triangle wave generation enable) */ 3823 #define DAC_CR_WAVE1_0 (0x1UL << DAC_CR_WAVE1_Pos) /*!< 0x00000040 */ 3824 #define DAC_CR_WAVE1_1 (0x2UL << DAC_CR_WAVE1_Pos) /*!< 0x00000080 */ 3825 3826 #define DAC_CR_MAMP1_Pos (8U) 3827 #define DAC_CR_MAMP1_Msk (0xFUL << DAC_CR_MAMP1_Pos) /*!< 0x00000F00 */ 3828 #define DAC_CR_MAMP1 DAC_CR_MAMP1_Msk /*!< MAMP1[3:0] (DAC channel1 Mask/Amplitude selector) */ 3829 #define DAC_CR_MAMP1_0 (0x1UL << DAC_CR_MAMP1_Pos) /*!< 0x00000100 */ 3830 #define DAC_CR_MAMP1_1 (0x2UL << DAC_CR_MAMP1_Pos) /*!< 0x00000200 */ 3831 #define DAC_CR_MAMP1_2 (0x4UL << DAC_CR_MAMP1_Pos) /*!< 0x00000400 */ 3832 #define DAC_CR_MAMP1_3 (0x8UL << DAC_CR_MAMP1_Pos) /*!< 0x00000800 */ 3833 3834 #define DAC_CR_DMAEN1_Pos (12U) 3835 #define DAC_CR_DMAEN1_Msk (0x1UL << DAC_CR_DMAEN1_Pos) /*!< 0x00001000 */ 3836 #define DAC_CR_DMAEN1 DAC_CR_DMAEN1_Msk /*!< DAC channel1 DMA enable */ 3837 #define DAC_CR_EN2_Pos (16U) 3838 #define DAC_CR_EN2_Msk (0x1UL << DAC_CR_EN2_Pos) /*!< 0x00010000 */ 3839 #define DAC_CR_EN2 DAC_CR_EN2_Msk /*!< DAC channel2 enable */ 3840 #define DAC_CR_BOFF2_Pos (17U) 3841 #define DAC_CR_BOFF2_Msk (0x1UL << DAC_CR_BOFF2_Pos) /*!< 0x00020000 */ 3842 #define DAC_CR_BOFF2 DAC_CR_BOFF2_Msk /*!< DAC channel2 output buffer disable */ 3843 #define DAC_CR_TEN2_Pos (18U) 3844 #define DAC_CR_TEN2_Msk (0x1UL << DAC_CR_TEN2_Pos) /*!< 0x00040000 */ 3845 #define DAC_CR_TEN2 DAC_CR_TEN2_Msk /*!< DAC channel2 Trigger enable */ 3846 3847 #define DAC_CR_TSEL2_Pos (19U) 3848 #define DAC_CR_TSEL2_Msk (0x7UL << DAC_CR_TSEL2_Pos) /*!< 0x00380000 */ 3849 #define DAC_CR_TSEL2 DAC_CR_TSEL2_Msk /*!< TSEL2[2:0] (DAC channel2 Trigger selection) */ 3850 #define DAC_CR_TSEL2_0 (0x1UL << DAC_CR_TSEL2_Pos) /*!< 0x00080000 */ 3851 #define DAC_CR_TSEL2_1 (0x2UL << DAC_CR_TSEL2_Pos) /*!< 0x00100000 */ 3852 #define DAC_CR_TSEL2_2 (0x4UL << DAC_CR_TSEL2_Pos) /*!< 0x00200000 */ 3853 3854 #define DAC_CR_WAVE2_Pos (22U) 3855 #define DAC_CR_WAVE2_Msk (0x3UL << DAC_CR_WAVE2_Pos) /*!< 0x00C00000 */ 3856 #define DAC_CR_WAVE2 DAC_CR_WAVE2_Msk /*!< WAVE2[1:0] (DAC channel2 noise/triangle wave generation enable) */ 3857 #define DAC_CR_WAVE2_0 (0x1UL << DAC_CR_WAVE2_Pos) /*!< 0x00400000 */ 3858 #define DAC_CR_WAVE2_1 (0x2UL << DAC_CR_WAVE2_Pos) /*!< 0x00800000 */ 3859 3860 #define DAC_CR_MAMP2_Pos (24U) 3861 #define DAC_CR_MAMP2_Msk (0xFUL << DAC_CR_MAMP2_Pos) /*!< 0x0F000000 */ 3862 #define DAC_CR_MAMP2 DAC_CR_MAMP2_Msk /*!< MAMP2[3:0] (DAC channel2 Mask/Amplitude selector) */ 3863 #define DAC_CR_MAMP2_0 (0x1UL << DAC_CR_MAMP2_Pos) /*!< 0x01000000 */ 3864 #define DAC_CR_MAMP2_1 (0x2UL << DAC_CR_MAMP2_Pos) /*!< 0x02000000 */ 3865 #define DAC_CR_MAMP2_2 (0x4UL << DAC_CR_MAMP2_Pos) /*!< 0x04000000 */ 3866 #define DAC_CR_MAMP2_3 (0x8UL << DAC_CR_MAMP2_Pos) /*!< 0x08000000 */ 3867 3868 #define DAC_CR_DMAEN2_Pos (28U) 3869 #define DAC_CR_DMAEN2_Msk (0x1UL << DAC_CR_DMAEN2_Pos) /*!< 0x10000000 */ 3870 #define DAC_CR_DMAEN2 DAC_CR_DMAEN2_Msk /*!< DAC channel2 DMA enabled */ 3871 3872 #define DAC_CR_DMAUDRIE1_Pos (13U) 3873 #define DAC_CR_DMAUDRIE1_Msk (0x1UL << DAC_CR_DMAUDRIE1_Pos) /*!< 0x00002000 */ 3874 #define DAC_CR_DMAUDRIE1 DAC_CR_DMAUDRIE1_Msk /*!< DAC channel1 DMA underrun interrupt enable */ 3875 #define DAC_CR_DMAUDRIE2_Pos (29U) 3876 #define DAC_CR_DMAUDRIE2_Msk (0x1UL << DAC_CR_DMAUDRIE2_Pos) /*!< 0x20000000 */ 3877 #define DAC_CR_DMAUDRIE2 DAC_CR_DMAUDRIE2_Msk /*!< DAC channel2 DMA underrun interrupt enable */ 3878 3879 /***************** Bit definition for DAC_SWTRIGR register ******************/ 3880 #define DAC_SWTRIGR_SWTRIG1_Pos (0U) 3881 #define DAC_SWTRIGR_SWTRIG1_Msk (0x1UL << DAC_SWTRIGR_SWTRIG1_Pos) /*!< 0x00000001 */ 3882 #define DAC_SWTRIGR_SWTRIG1 DAC_SWTRIGR_SWTRIG1_Msk /*!< DAC channel1 software trigger */ 3883 #define DAC_SWTRIGR_SWTRIG2_Pos (1U) 3884 #define DAC_SWTRIGR_SWTRIG2_Msk (0x1UL << DAC_SWTRIGR_SWTRIG2_Pos) /*!< 0x00000002 */ 3885 #define DAC_SWTRIGR_SWTRIG2 DAC_SWTRIGR_SWTRIG2_Msk /*!< DAC channel2 software trigger */ 3886 3887 /***************** Bit definition for DAC_DHR12R1 register ******************/ 3888 #define DAC_DHR12R1_DACC1DHR_Pos (0U) 3889 #define DAC_DHR12R1_DACC1DHR_Msk (0xFFFUL << DAC_DHR12R1_DACC1DHR_Pos) /*!< 0x00000FFF */ 3890 #define DAC_DHR12R1_DACC1DHR DAC_DHR12R1_DACC1DHR_Msk /*!< DAC channel1 12-bit Right aligned data */ 3891 3892 /***************** Bit definition for DAC_DHR12L1 register ******************/ 3893 #define DAC_DHR12L1_DACC1DHR_Pos (4U) 3894 #define DAC_DHR12L1_DACC1DHR_Msk (0xFFFUL << DAC_DHR12L1_DACC1DHR_Pos) /*!< 0x0000FFF0 */ 3895 #define DAC_DHR12L1_DACC1DHR DAC_DHR12L1_DACC1DHR_Msk /*!< DAC channel1 12-bit Left aligned data */ 3896 3897 /****************** Bit definition for DAC_DHR8R1 register ******************/ 3898 #define DAC_DHR8R1_DACC1DHR_Pos (0U) 3899 #define DAC_DHR8R1_DACC1DHR_Msk (0xFFUL << DAC_DHR8R1_DACC1DHR_Pos) /*!< 0x000000FF */ 3900 #define DAC_DHR8R1_DACC1DHR DAC_DHR8R1_DACC1DHR_Msk /*!< DAC channel1 8-bit Right aligned data */ 3901 3902 /***************** Bit definition for DAC_DHR12R2 register ******************/ 3903 #define DAC_DHR12R2_DACC2DHR_Pos (0U) 3904 #define DAC_DHR12R2_DACC2DHR_Msk (0xFFFUL << DAC_DHR12R2_DACC2DHR_Pos) /*!< 0x00000FFF */ 3905 #define DAC_DHR12R2_DACC2DHR DAC_DHR12R2_DACC2DHR_Msk /*!< DAC channel2 12-bit Right aligned data */ 3906 3907 /***************** Bit definition for DAC_DHR12L2 register ******************/ 3908 #define DAC_DHR12L2_DACC2DHR_Pos (4U) 3909 #define DAC_DHR12L2_DACC2DHR_Msk (0xFFFUL << DAC_DHR12L2_DACC2DHR_Pos) /*!< 0x0000FFF0 */ 3910 #define DAC_DHR12L2_DACC2DHR DAC_DHR12L2_DACC2DHR_Msk /*!< DAC channel2 12-bit Left aligned data */ 3911 3912 /****************** Bit definition for DAC_DHR8R2 register ******************/ 3913 #define DAC_DHR8R2_DACC2DHR_Pos (0U) 3914 #define DAC_DHR8R2_DACC2DHR_Msk (0xFFUL << DAC_DHR8R2_DACC2DHR_Pos) /*!< 0x000000FF */ 3915 #define DAC_DHR8R2_DACC2DHR DAC_DHR8R2_DACC2DHR_Msk /*!< DAC channel2 8-bit Right aligned data */ 3916 3917 /***************** Bit definition for DAC_DHR12RD register ******************/ 3918 #define DAC_DHR12RD_DACC1DHR_Pos (0U) 3919 #define DAC_DHR12RD_DACC1DHR_Msk (0xFFFUL << DAC_DHR12RD_DACC1DHR_Pos) /*!< 0x00000FFF */ 3920 #define DAC_DHR12RD_DACC1DHR DAC_DHR12RD_DACC1DHR_Msk /*!< DAC channel1 12-bit Right aligned data */ 3921 #define DAC_DHR12RD_DACC2DHR_Pos (16U) 3922 #define DAC_DHR12RD_DACC2DHR_Msk (0xFFFUL << DAC_DHR12RD_DACC2DHR_Pos) /*!< 0x0FFF0000 */ 3923 #define DAC_DHR12RD_DACC2DHR DAC_DHR12RD_DACC2DHR_Msk /*!< DAC channel2 12-bit Right aligned data */ 3924 3925 /***************** Bit definition for DAC_DHR12LD register ******************/ 3926 #define DAC_DHR12LD_DACC1DHR_Pos (4U) 3927 #define DAC_DHR12LD_DACC1DHR_Msk (0xFFFUL << DAC_DHR12LD_DACC1DHR_Pos) /*!< 0x0000FFF0 */ 3928 #define DAC_DHR12LD_DACC1DHR DAC_DHR12LD_DACC1DHR_Msk /*!< DAC channel1 12-bit Left aligned data */ 3929 #define DAC_DHR12LD_DACC2DHR_Pos (20U) 3930 #define DAC_DHR12LD_DACC2DHR_Msk (0xFFFUL << DAC_DHR12LD_DACC2DHR_Pos) /*!< 0xFFF00000 */ 3931 #define DAC_DHR12LD_DACC2DHR DAC_DHR12LD_DACC2DHR_Msk /*!< DAC channel2 12-bit Left aligned data */ 3932 3933 /****************** Bit definition for DAC_DHR8RD register ******************/ 3934 #define DAC_DHR8RD_DACC1DHR_Pos (0U) 3935 #define DAC_DHR8RD_DACC1DHR_Msk (0xFFUL << DAC_DHR8RD_DACC1DHR_Pos) /*!< 0x000000FF */ 3936 #define DAC_DHR8RD_DACC1DHR DAC_DHR8RD_DACC1DHR_Msk /*!< DAC channel1 8-bit Right aligned data */ 3937 #define DAC_DHR8RD_DACC2DHR_Pos (8U) 3938 #define DAC_DHR8RD_DACC2DHR_Msk (0xFFUL << DAC_DHR8RD_DACC2DHR_Pos) /*!< 0x0000FF00 */ 3939 #define DAC_DHR8RD_DACC2DHR DAC_DHR8RD_DACC2DHR_Msk /*!< DAC channel2 8-bit Right aligned data */ 3940 3941 /******************* Bit definition for DAC_DOR1 register *******************/ 3942 #define DAC_DOR1_DACC1DOR_Pos (0U) 3943 #define DAC_DOR1_DACC1DOR_Msk (0xFFFUL << DAC_DOR1_DACC1DOR_Pos) /*!< 0x00000FFF */ 3944 #define DAC_DOR1_DACC1DOR DAC_DOR1_DACC1DOR_Msk /*!< DAC channel1 data output */ 3945 3946 /******************* Bit definition for DAC_DOR2 register *******************/ 3947 #define DAC_DOR2_DACC2DOR_Pos (0U) 3948 #define DAC_DOR2_DACC2DOR_Msk (0xFFFUL << DAC_DOR2_DACC2DOR_Pos) /*!< 0x00000FFF */ 3949 #define DAC_DOR2_DACC2DOR DAC_DOR2_DACC2DOR_Msk /*!< DAC channel2 data output */ 3950 3951 /******************** Bit definition for DAC_SR register ********************/ 3952 #define DAC_SR_DMAUDR1_Pos (13U) 3953 #define DAC_SR_DMAUDR1_Msk (0x1UL << DAC_SR_DMAUDR1_Pos) /*!< 0x00002000 */ 3954 #define DAC_SR_DMAUDR1 DAC_SR_DMAUDR1_Msk /*!< DAC channel1 DMA underrun flag */ 3955 #define DAC_SR_DMAUDR2_Pos (29U) 3956 #define DAC_SR_DMAUDR2_Msk (0x1UL << DAC_SR_DMAUDR2_Pos) /*!< 0x20000000 */ 3957 #define DAC_SR_DMAUDR2 DAC_SR_DMAUDR2_Msk /*!< DAC channel2 DMA underrun flag */ 3958 3959 /******************************************************************************/ 3960 /* */ 3961 /* CEC */ 3962 /* */ 3963 /******************************************************************************/ 3964 /******************** Bit definition for CEC_CFGR register ******************/ 3965 #define CEC_CFGR_PE_Pos (0U) 3966 #define CEC_CFGR_PE_Msk (0x1UL << CEC_CFGR_PE_Pos) /*!< 0x00000001 */ 3967 #define CEC_CFGR_PE CEC_CFGR_PE_Msk /*!< Peripheral Enable */ 3968 #define CEC_CFGR_IE_Pos (1U) 3969 #define CEC_CFGR_IE_Msk (0x1UL << CEC_CFGR_IE_Pos) /*!< 0x00000002 */ 3970 #define CEC_CFGR_IE CEC_CFGR_IE_Msk /*!< Interrupt Enable */ 3971 #define CEC_CFGR_BTEM_Pos (2U) 3972 #define CEC_CFGR_BTEM_Msk (0x1UL << CEC_CFGR_BTEM_Pos) /*!< 0x00000004 */ 3973 #define CEC_CFGR_BTEM CEC_CFGR_BTEM_Msk /*!< Bit Timing Error Mode */ 3974 #define CEC_CFGR_BPEM_Pos (3U) 3975 #define CEC_CFGR_BPEM_Msk (0x1UL << CEC_CFGR_BPEM_Pos) /*!< 0x00000008 */ 3976 #define CEC_CFGR_BPEM CEC_CFGR_BPEM_Msk /*!< Bit Period Error Mode */ 3977 3978 /******************** Bit definition for CEC_OAR register ******************/ 3979 #define CEC_OAR_OA_Pos (0U) 3980 #define CEC_OAR_OA_Msk (0xFUL << CEC_OAR_OA_Pos) /*!< 0x0000000F */ 3981 #define CEC_OAR_OA CEC_OAR_OA_Msk /*!< OA[3:0]: Own Address */ 3982 #define CEC_OAR_OA_0 (0x1UL << CEC_OAR_OA_Pos) /*!< 0x00000001 */ 3983 #define CEC_OAR_OA_1 (0x2UL << CEC_OAR_OA_Pos) /*!< 0x00000002 */ 3984 #define CEC_OAR_OA_2 (0x4UL << CEC_OAR_OA_Pos) /*!< 0x00000004 */ 3985 #define CEC_OAR_OA_3 (0x8UL << CEC_OAR_OA_Pos) /*!< 0x00000008 */ 3986 3987 /******************** Bit definition for CEC_PRES register ******************/ 3988 #define CEC_PRES_PRES_Pos (0U) 3989 #define CEC_PRES_PRES_Msk (0x3FFFUL << CEC_PRES_PRES_Pos) /*!< 0x00003FFF */ 3990 #define CEC_PRES_PRES CEC_PRES_PRES_Msk /*!< Prescaler Counter Value */ 3991 3992 /******************** Bit definition for CEC_ESR register ******************/ 3993 #define CEC_ESR_BTE_Pos (0U) 3994 #define CEC_ESR_BTE_Msk (0x1UL << CEC_ESR_BTE_Pos) /*!< 0x00000001 */ 3995 #define CEC_ESR_BTE CEC_ESR_BTE_Msk /*!< Bit Timing Error */ 3996 #define CEC_ESR_BPE_Pos (1U) 3997 #define CEC_ESR_BPE_Msk (0x1UL << CEC_ESR_BPE_Pos) /*!< 0x00000002 */ 3998 #define CEC_ESR_BPE CEC_ESR_BPE_Msk /*!< Bit Period Error */ 3999 #define CEC_ESR_RBTFE_Pos (2U) 4000 #define CEC_ESR_RBTFE_Msk (0x1UL << CEC_ESR_RBTFE_Pos) /*!< 0x00000004 */ 4001 #define CEC_ESR_RBTFE CEC_ESR_RBTFE_Msk /*!< Rx Block Transfer Finished Error */ 4002 #define CEC_ESR_SBE_Pos (3U) 4003 #define CEC_ESR_SBE_Msk (0x1UL << CEC_ESR_SBE_Pos) /*!< 0x00000008 */ 4004 #define CEC_ESR_SBE CEC_ESR_SBE_Msk /*!< Start Bit Error */ 4005 #define CEC_ESR_ACKE_Pos (4U) 4006 #define CEC_ESR_ACKE_Msk (0x1UL << CEC_ESR_ACKE_Pos) /*!< 0x00000010 */ 4007 #define CEC_ESR_ACKE CEC_ESR_ACKE_Msk /*!< Block Acknowledge Error */ 4008 #define CEC_ESR_LINE_Pos (5U) 4009 #define CEC_ESR_LINE_Msk (0x1UL << CEC_ESR_LINE_Pos) /*!< 0x00000020 */ 4010 #define CEC_ESR_LINE CEC_ESR_LINE_Msk /*!< Line Error */ 4011 #define CEC_ESR_TBTFE_Pos (6U) 4012 #define CEC_ESR_TBTFE_Msk (0x1UL << CEC_ESR_TBTFE_Pos) /*!< 0x00000040 */ 4013 #define CEC_ESR_TBTFE CEC_ESR_TBTFE_Msk /*!< Tx Block Transfer Finished Error */ 4014 4015 /******************** Bit definition for CEC_CSR register ******************/ 4016 #define CEC_CSR_TSOM_Pos (0U) 4017 #define CEC_CSR_TSOM_Msk (0x1UL << CEC_CSR_TSOM_Pos) /*!< 0x00000001 */ 4018 #define CEC_CSR_TSOM CEC_CSR_TSOM_Msk /*!< Tx Start Of Message */ 4019 #define CEC_CSR_TEOM_Pos (1U) 4020 #define CEC_CSR_TEOM_Msk (0x1UL << CEC_CSR_TEOM_Pos) /*!< 0x00000002 */ 4021 #define CEC_CSR_TEOM CEC_CSR_TEOM_Msk /*!< Tx End Of Message */ 4022 #define CEC_CSR_TERR_Pos (2U) 4023 #define CEC_CSR_TERR_Msk (0x1UL << CEC_CSR_TERR_Pos) /*!< 0x00000004 */ 4024 #define CEC_CSR_TERR CEC_CSR_TERR_Msk /*!< Tx Error */ 4025 #define CEC_CSR_TBTRF_Pos (3U) 4026 #define CEC_CSR_TBTRF_Msk (0x1UL << CEC_CSR_TBTRF_Pos) /*!< 0x00000008 */ 4027 #define CEC_CSR_TBTRF CEC_CSR_TBTRF_Msk /*!< Tx Byte Transfer Request or Block Transfer Finished */ 4028 #define CEC_CSR_RSOM_Pos (4U) 4029 #define CEC_CSR_RSOM_Msk (0x1UL << CEC_CSR_RSOM_Pos) /*!< 0x00000010 */ 4030 #define CEC_CSR_RSOM CEC_CSR_RSOM_Msk /*!< Rx Start Of Message */ 4031 #define CEC_CSR_REOM_Pos (5U) 4032 #define CEC_CSR_REOM_Msk (0x1UL << CEC_CSR_REOM_Pos) /*!< 0x00000020 */ 4033 #define CEC_CSR_REOM CEC_CSR_REOM_Msk /*!< Rx End Of Message */ 4034 #define CEC_CSR_RERR_Pos (6U) 4035 #define CEC_CSR_RERR_Msk (0x1UL << CEC_CSR_RERR_Pos) /*!< 0x00000040 */ 4036 #define CEC_CSR_RERR CEC_CSR_RERR_Msk /*!< Rx Error */ 4037 #define CEC_CSR_RBTF_Pos (7U) 4038 #define CEC_CSR_RBTF_Msk (0x1UL << CEC_CSR_RBTF_Pos) /*!< 0x00000080 */ 4039 #define CEC_CSR_RBTF CEC_CSR_RBTF_Msk /*!< Rx Block Transfer Finished */ 4040 4041 /******************** Bit definition for CEC_TXD register ******************/ 4042 #define CEC_TXD_TXD_Pos (0U) 4043 #define CEC_TXD_TXD_Msk (0xFFUL << CEC_TXD_TXD_Pos) /*!< 0x000000FF */ 4044 #define CEC_TXD_TXD CEC_TXD_TXD_Msk /*!< Tx Data register */ 4045 4046 /******************** Bit definition for CEC_RXD register ******************/ 4047 #define CEC_RXD_RXD_Pos (0U) 4048 #define CEC_RXD_RXD_Msk (0xFFUL << CEC_RXD_RXD_Pos) /*!< 0x000000FF */ 4049 #define CEC_RXD_RXD CEC_RXD_RXD_Msk /*!< Rx Data register */ 4050 4051 /*****************************************************************************/ 4052 /* */ 4053 /* Timers (TIM) */ 4054 /* */ 4055 /*****************************************************************************/ 4056 /******************* Bit definition for TIM_CR1 register *******************/ 4057 #define TIM_CR1_CEN_Pos (0U) 4058 #define TIM_CR1_CEN_Msk (0x1UL << TIM_CR1_CEN_Pos) /*!< 0x00000001 */ 4059 #define TIM_CR1_CEN TIM_CR1_CEN_Msk /*!<Counter enable */ 4060 #define TIM_CR1_UDIS_Pos (1U) 4061 #define TIM_CR1_UDIS_Msk (0x1UL << TIM_CR1_UDIS_Pos) /*!< 0x00000002 */ 4062 #define TIM_CR1_UDIS TIM_CR1_UDIS_Msk /*!<Update disable */ 4063 #define TIM_CR1_URS_Pos (2U) 4064 #define TIM_CR1_URS_Msk (0x1UL << TIM_CR1_URS_Pos) /*!< 0x00000004 */ 4065 #define TIM_CR1_URS TIM_CR1_URS_Msk /*!<Update request source */ 4066 #define TIM_CR1_OPM_Pos (3U) 4067 #define TIM_CR1_OPM_Msk (0x1UL << TIM_CR1_OPM_Pos) /*!< 0x00000008 */ 4068 #define TIM_CR1_OPM TIM_CR1_OPM_Msk /*!<One pulse mode */ 4069 #define TIM_CR1_DIR_Pos (4U) 4070 #define TIM_CR1_DIR_Msk (0x1UL << TIM_CR1_DIR_Pos) /*!< 0x00000010 */ 4071 #define TIM_CR1_DIR TIM_CR1_DIR_Msk /*!<Direction */ 4072 4073 #define TIM_CR1_CMS_Pos (5U) 4074 #define TIM_CR1_CMS_Msk (0x3UL << TIM_CR1_CMS_Pos) /*!< 0x00000060 */ 4075 #define TIM_CR1_CMS TIM_CR1_CMS_Msk /*!<CMS[1:0] bits (Center-aligned mode selection) */ 4076 #define TIM_CR1_CMS_0 (0x1UL << TIM_CR1_CMS_Pos) /*!< 0x00000020 */ 4077 #define TIM_CR1_CMS_1 (0x2UL << TIM_CR1_CMS_Pos) /*!< 0x00000040 */ 4078 4079 #define TIM_CR1_ARPE_Pos (7U) 4080 #define TIM_CR1_ARPE_Msk (0x1UL << TIM_CR1_ARPE_Pos) /*!< 0x00000080 */ 4081 #define TIM_CR1_ARPE TIM_CR1_ARPE_Msk /*!<Auto-reload preload enable */ 4082 4083 #define TIM_CR1_CKD_Pos (8U) 4084 #define TIM_CR1_CKD_Msk (0x3UL << TIM_CR1_CKD_Pos) /*!< 0x00000300 */ 4085 #define TIM_CR1_CKD TIM_CR1_CKD_Msk /*!<CKD[1:0] bits (clock division) */ 4086 #define TIM_CR1_CKD_0 (0x1UL << TIM_CR1_CKD_Pos) /*!< 0x00000100 */ 4087 #define TIM_CR1_CKD_1 (0x2UL << TIM_CR1_CKD_Pos) /*!< 0x00000200 */ 4088 4089 /******************* Bit definition for TIM_CR2 register *******************/ 4090 #define TIM_CR2_CCPC_Pos (0U) 4091 #define TIM_CR2_CCPC_Msk (0x1UL << TIM_CR2_CCPC_Pos) /*!< 0x00000001 */ 4092 #define TIM_CR2_CCPC TIM_CR2_CCPC_Msk /*!<Capture/Compare Preloaded Control */ 4093 #define TIM_CR2_CCUS_Pos (2U) 4094 #define TIM_CR2_CCUS_Msk (0x1UL << TIM_CR2_CCUS_Pos) /*!< 0x00000004 */ 4095 #define TIM_CR2_CCUS TIM_CR2_CCUS_Msk /*!<Capture/Compare Control Update Selection */ 4096 #define TIM_CR2_CCDS_Pos (3U) 4097 #define TIM_CR2_CCDS_Msk (0x1UL << TIM_CR2_CCDS_Pos) /*!< 0x00000008 */ 4098 #define TIM_CR2_CCDS TIM_CR2_CCDS_Msk /*!<Capture/Compare DMA Selection */ 4099 4100 #define TIM_CR2_MMS_Pos (4U) 4101 #define TIM_CR2_MMS_Msk (0x7UL << TIM_CR2_MMS_Pos) /*!< 0x00000070 */ 4102 #define TIM_CR2_MMS TIM_CR2_MMS_Msk /*!<MMS[2:0] bits (Master Mode Selection) */ 4103 #define TIM_CR2_MMS_0 (0x1UL << TIM_CR2_MMS_Pos) /*!< 0x00000010 */ 4104 #define TIM_CR2_MMS_1 (0x2UL << TIM_CR2_MMS_Pos) /*!< 0x00000020 */ 4105 #define TIM_CR2_MMS_2 (0x4UL << TIM_CR2_MMS_Pos) /*!< 0x00000040 */ 4106 4107 #define TIM_CR2_TI1S_Pos (7U) 4108 #define TIM_CR2_TI1S_Msk (0x1UL << TIM_CR2_TI1S_Pos) /*!< 0x00000080 */ 4109 #define TIM_CR2_TI1S TIM_CR2_TI1S_Msk /*!<TI1 Selection */ 4110 #define TIM_CR2_OIS1_Pos (8U) 4111 #define TIM_CR2_OIS1_Msk (0x1UL << TIM_CR2_OIS1_Pos) /*!< 0x00000100 */ 4112 #define TIM_CR2_OIS1 TIM_CR2_OIS1_Msk /*!<Output Idle state 1 (OC1 output) */ 4113 #define TIM_CR2_OIS1N_Pos (9U) 4114 #define TIM_CR2_OIS1N_Msk (0x1UL << TIM_CR2_OIS1N_Pos) /*!< 0x00000200 */ 4115 #define TIM_CR2_OIS1N TIM_CR2_OIS1N_Msk /*!<Output Idle state 1 (OC1N output) */ 4116 #define TIM_CR2_OIS2_Pos (10U) 4117 #define TIM_CR2_OIS2_Msk (0x1UL << TIM_CR2_OIS2_Pos) /*!< 0x00000400 */ 4118 #define TIM_CR2_OIS2 TIM_CR2_OIS2_Msk /*!<Output Idle state 2 (OC2 output) */ 4119 #define TIM_CR2_OIS2N_Pos (11U) 4120 #define TIM_CR2_OIS2N_Msk (0x1UL << TIM_CR2_OIS2N_Pos) /*!< 0x00000800 */ 4121 #define TIM_CR2_OIS2N TIM_CR2_OIS2N_Msk /*!<Output Idle state 2 (OC2N output) */ 4122 #define TIM_CR2_OIS3_Pos (12U) 4123 #define TIM_CR2_OIS3_Msk (0x1UL << TIM_CR2_OIS3_Pos) /*!< 0x00001000 */ 4124 #define TIM_CR2_OIS3 TIM_CR2_OIS3_Msk /*!<Output Idle state 3 (OC3 output) */ 4125 #define TIM_CR2_OIS3N_Pos (13U) 4126 #define TIM_CR2_OIS3N_Msk (0x1UL << TIM_CR2_OIS3N_Pos) /*!< 0x00002000 */ 4127 #define TIM_CR2_OIS3N TIM_CR2_OIS3N_Msk /*!<Output Idle state 3 (OC3N output) */ 4128 #define TIM_CR2_OIS4_Pos (14U) 4129 #define TIM_CR2_OIS4_Msk (0x1UL << TIM_CR2_OIS4_Pos) /*!< 0x00004000 */ 4130 #define TIM_CR2_OIS4 TIM_CR2_OIS4_Msk /*!<Output Idle state 4 (OC4 output) */ 4131 4132 /******************* Bit definition for TIM_SMCR register ******************/ 4133 #define TIM_SMCR_SMS_Pos (0U) 4134 #define TIM_SMCR_SMS_Msk (0x7UL << TIM_SMCR_SMS_Pos) /*!< 0x00000007 */ 4135 #define TIM_SMCR_SMS TIM_SMCR_SMS_Msk /*!<SMS[2:0] bits (Slave mode selection) */ 4136 #define TIM_SMCR_SMS_0 (0x1UL << TIM_SMCR_SMS_Pos) /*!< 0x00000001 */ 4137 #define TIM_SMCR_SMS_1 (0x2UL << TIM_SMCR_SMS_Pos) /*!< 0x00000002 */ 4138 #define TIM_SMCR_SMS_2 (0x4UL << TIM_SMCR_SMS_Pos) /*!< 0x00000004 */ 4139 4140 #define TIM_SMCR_TS_Pos (4U) 4141 #define TIM_SMCR_TS_Msk (0x7UL << TIM_SMCR_TS_Pos) /*!< 0x00000070 */ 4142 #define TIM_SMCR_TS TIM_SMCR_TS_Msk /*!<TS[2:0] bits (Trigger selection) */ 4143 #define TIM_SMCR_TS_0 (0x1UL << TIM_SMCR_TS_Pos) /*!< 0x00000010 */ 4144 #define TIM_SMCR_TS_1 (0x2UL << TIM_SMCR_TS_Pos) /*!< 0x00000020 */ 4145 #define TIM_SMCR_TS_2 (0x4UL << TIM_SMCR_TS_Pos) /*!< 0x00000040 */ 4146 4147 #define TIM_SMCR_MSM_Pos (7U) 4148 #define TIM_SMCR_MSM_Msk (0x1UL << TIM_SMCR_MSM_Pos) /*!< 0x00000080 */ 4149 #define TIM_SMCR_MSM TIM_SMCR_MSM_Msk /*!<Master/slave mode */ 4150 4151 #define TIM_SMCR_ETF_Pos (8U) 4152 #define TIM_SMCR_ETF_Msk (0xFUL << TIM_SMCR_ETF_Pos) /*!< 0x00000F00 */ 4153 #define TIM_SMCR_ETF TIM_SMCR_ETF_Msk /*!<ETF[3:0] bits (External trigger filter) */ 4154 #define TIM_SMCR_ETF_0 (0x1UL << TIM_SMCR_ETF_Pos) /*!< 0x00000100 */ 4155 #define TIM_SMCR_ETF_1 (0x2UL << TIM_SMCR_ETF_Pos) /*!< 0x00000200 */ 4156 #define TIM_SMCR_ETF_2 (0x4UL << TIM_SMCR_ETF_Pos) /*!< 0x00000400 */ 4157 #define TIM_SMCR_ETF_3 (0x8UL << TIM_SMCR_ETF_Pos) /*!< 0x00000800 */ 4158 4159 #define TIM_SMCR_ETPS_Pos (12U) 4160 #define TIM_SMCR_ETPS_Msk (0x3UL << TIM_SMCR_ETPS_Pos) /*!< 0x00003000 */ 4161 #define TIM_SMCR_ETPS TIM_SMCR_ETPS_Msk /*!<ETPS[1:0] bits (External trigger prescaler) */ 4162 #define TIM_SMCR_ETPS_0 (0x1UL << TIM_SMCR_ETPS_Pos) /*!< 0x00001000 */ 4163 #define TIM_SMCR_ETPS_1 (0x2UL << TIM_SMCR_ETPS_Pos) /*!< 0x00002000 */ 4164 4165 #define TIM_SMCR_ECE_Pos (14U) 4166 #define TIM_SMCR_ECE_Msk (0x1UL << TIM_SMCR_ECE_Pos) /*!< 0x00004000 */ 4167 #define TIM_SMCR_ECE TIM_SMCR_ECE_Msk /*!<External clock enable */ 4168 #define TIM_SMCR_ETP_Pos (15U) 4169 #define TIM_SMCR_ETP_Msk (0x1UL << TIM_SMCR_ETP_Pos) /*!< 0x00008000 */ 4170 #define TIM_SMCR_ETP TIM_SMCR_ETP_Msk /*!<External trigger polarity */ 4171 4172 /******************* Bit definition for TIM_DIER register ******************/ 4173 #define TIM_DIER_UIE_Pos (0U) 4174 #define TIM_DIER_UIE_Msk (0x1UL << TIM_DIER_UIE_Pos) /*!< 0x00000001 */ 4175 #define TIM_DIER_UIE TIM_DIER_UIE_Msk /*!<Update interrupt enable */ 4176 #define TIM_DIER_CC1IE_Pos (1U) 4177 #define TIM_DIER_CC1IE_Msk (0x1UL << TIM_DIER_CC1IE_Pos) /*!< 0x00000002 */ 4178 #define TIM_DIER_CC1IE TIM_DIER_CC1IE_Msk /*!<Capture/Compare 1 interrupt enable */ 4179 #define TIM_DIER_CC2IE_Pos (2U) 4180 #define TIM_DIER_CC2IE_Msk (0x1UL << TIM_DIER_CC2IE_Pos) /*!< 0x00000004 */ 4181 #define TIM_DIER_CC2IE TIM_DIER_CC2IE_Msk /*!<Capture/Compare 2 interrupt enable */ 4182 #define TIM_DIER_CC3IE_Pos (3U) 4183 #define TIM_DIER_CC3IE_Msk (0x1UL << TIM_DIER_CC3IE_Pos) /*!< 0x00000008 */ 4184 #define TIM_DIER_CC3IE TIM_DIER_CC3IE_Msk /*!<Capture/Compare 3 interrupt enable */ 4185 #define TIM_DIER_CC4IE_Pos (4U) 4186 #define TIM_DIER_CC4IE_Msk (0x1UL << TIM_DIER_CC4IE_Pos) /*!< 0x00000010 */ 4187 #define TIM_DIER_CC4IE TIM_DIER_CC4IE_Msk /*!<Capture/Compare 4 interrupt enable */ 4188 #define TIM_DIER_COMIE_Pos (5U) 4189 #define TIM_DIER_COMIE_Msk (0x1UL << TIM_DIER_COMIE_Pos) /*!< 0x00000020 */ 4190 #define TIM_DIER_COMIE TIM_DIER_COMIE_Msk /*!<COM interrupt enable */ 4191 #define TIM_DIER_TIE_Pos (6U) 4192 #define TIM_DIER_TIE_Msk (0x1UL << TIM_DIER_TIE_Pos) /*!< 0x00000040 */ 4193 #define TIM_DIER_TIE TIM_DIER_TIE_Msk /*!<Trigger interrupt enable */ 4194 #define TIM_DIER_BIE_Pos (7U) 4195 #define TIM_DIER_BIE_Msk (0x1UL << TIM_DIER_BIE_Pos) /*!< 0x00000080 */ 4196 #define TIM_DIER_BIE TIM_DIER_BIE_Msk /*!<Break interrupt enable */ 4197 #define TIM_DIER_UDE_Pos (8U) 4198 #define TIM_DIER_UDE_Msk (0x1UL << TIM_DIER_UDE_Pos) /*!< 0x00000100 */ 4199 #define TIM_DIER_UDE TIM_DIER_UDE_Msk /*!<Update DMA request enable */ 4200 #define TIM_DIER_CC1DE_Pos (9U) 4201 #define TIM_DIER_CC1DE_Msk (0x1UL << TIM_DIER_CC1DE_Pos) /*!< 0x00000200 */ 4202 #define TIM_DIER_CC1DE TIM_DIER_CC1DE_Msk /*!<Capture/Compare 1 DMA request enable */ 4203 #define TIM_DIER_CC2DE_Pos (10U) 4204 #define TIM_DIER_CC2DE_Msk (0x1UL << TIM_DIER_CC2DE_Pos) /*!< 0x00000400 */ 4205 #define TIM_DIER_CC2DE TIM_DIER_CC2DE_Msk /*!<Capture/Compare 2 DMA request enable */ 4206 #define TIM_DIER_CC3DE_Pos (11U) 4207 #define TIM_DIER_CC3DE_Msk (0x1UL << TIM_DIER_CC3DE_Pos) /*!< 0x00000800 */ 4208 #define TIM_DIER_CC3DE TIM_DIER_CC3DE_Msk /*!<Capture/Compare 3 DMA request enable */ 4209 #define TIM_DIER_CC4DE_Pos (12U) 4210 #define TIM_DIER_CC4DE_Msk (0x1UL << TIM_DIER_CC4DE_Pos) /*!< 0x00001000 */ 4211 #define TIM_DIER_CC4DE TIM_DIER_CC4DE_Msk /*!<Capture/Compare 4 DMA request enable */ 4212 #define TIM_DIER_COMDE_Pos (13U) 4213 #define TIM_DIER_COMDE_Msk (0x1UL << TIM_DIER_COMDE_Pos) /*!< 0x00002000 */ 4214 #define TIM_DIER_COMDE TIM_DIER_COMDE_Msk /*!<COM DMA request enable */ 4215 #define TIM_DIER_TDE_Pos (14U) 4216 #define TIM_DIER_TDE_Msk (0x1UL << TIM_DIER_TDE_Pos) /*!< 0x00004000 */ 4217 #define TIM_DIER_TDE TIM_DIER_TDE_Msk /*!<Trigger DMA request enable */ 4218 4219 /******************** Bit definition for TIM_SR register *******************/ 4220 #define TIM_SR_UIF_Pos (0U) 4221 #define TIM_SR_UIF_Msk (0x1UL << TIM_SR_UIF_Pos) /*!< 0x00000001 */ 4222 #define TIM_SR_UIF TIM_SR_UIF_Msk /*!<Update interrupt Flag */ 4223 #define TIM_SR_CC1IF_Pos (1U) 4224 #define TIM_SR_CC1IF_Msk (0x1UL << TIM_SR_CC1IF_Pos) /*!< 0x00000002 */ 4225 #define TIM_SR_CC1IF TIM_SR_CC1IF_Msk /*!<Capture/Compare 1 interrupt Flag */ 4226 #define TIM_SR_CC2IF_Pos (2U) 4227 #define TIM_SR_CC2IF_Msk (0x1UL << TIM_SR_CC2IF_Pos) /*!< 0x00000004 */ 4228 #define TIM_SR_CC2IF TIM_SR_CC2IF_Msk /*!<Capture/Compare 2 interrupt Flag */ 4229 #define TIM_SR_CC3IF_Pos (3U) 4230 #define TIM_SR_CC3IF_Msk (0x1UL << TIM_SR_CC3IF_Pos) /*!< 0x00000008 */ 4231 #define TIM_SR_CC3IF TIM_SR_CC3IF_Msk /*!<Capture/Compare 3 interrupt Flag */ 4232 #define TIM_SR_CC4IF_Pos (4U) 4233 #define TIM_SR_CC4IF_Msk (0x1UL << TIM_SR_CC4IF_Pos) /*!< 0x00000010 */ 4234 #define TIM_SR_CC4IF TIM_SR_CC4IF_Msk /*!<Capture/Compare 4 interrupt Flag */ 4235 #define TIM_SR_COMIF_Pos (5U) 4236 #define TIM_SR_COMIF_Msk (0x1UL << TIM_SR_COMIF_Pos) /*!< 0x00000020 */ 4237 #define TIM_SR_COMIF TIM_SR_COMIF_Msk /*!<COM interrupt Flag */ 4238 #define TIM_SR_TIF_Pos (6U) 4239 #define TIM_SR_TIF_Msk (0x1UL << TIM_SR_TIF_Pos) /*!< 0x00000040 */ 4240 #define TIM_SR_TIF TIM_SR_TIF_Msk /*!<Trigger interrupt Flag */ 4241 #define TIM_SR_BIF_Pos (7U) 4242 #define TIM_SR_BIF_Msk (0x1UL << TIM_SR_BIF_Pos) /*!< 0x00000080 */ 4243 #define TIM_SR_BIF TIM_SR_BIF_Msk /*!<Break interrupt Flag */ 4244 #define TIM_SR_CC1OF_Pos (9U) 4245 #define TIM_SR_CC1OF_Msk (0x1UL << TIM_SR_CC1OF_Pos) /*!< 0x00000200 */ 4246 #define TIM_SR_CC1OF TIM_SR_CC1OF_Msk /*!<Capture/Compare 1 Overcapture Flag */ 4247 #define TIM_SR_CC2OF_Pos (10U) 4248 #define TIM_SR_CC2OF_Msk (0x1UL << TIM_SR_CC2OF_Pos) /*!< 0x00000400 */ 4249 #define TIM_SR_CC2OF TIM_SR_CC2OF_Msk /*!<Capture/Compare 2 Overcapture Flag */ 4250 #define TIM_SR_CC3OF_Pos (11U) 4251 #define TIM_SR_CC3OF_Msk (0x1UL << TIM_SR_CC3OF_Pos) /*!< 0x00000800 */ 4252 #define TIM_SR_CC3OF TIM_SR_CC3OF_Msk /*!<Capture/Compare 3 Overcapture Flag */ 4253 #define TIM_SR_CC4OF_Pos (12U) 4254 #define TIM_SR_CC4OF_Msk (0x1UL << TIM_SR_CC4OF_Pos) /*!< 0x00001000 */ 4255 #define TIM_SR_CC4OF TIM_SR_CC4OF_Msk /*!<Capture/Compare 4 Overcapture Flag */ 4256 4257 /******************* Bit definition for TIM_EGR register *******************/ 4258 #define TIM_EGR_UG_Pos (0U) 4259 #define TIM_EGR_UG_Msk (0x1UL << TIM_EGR_UG_Pos) /*!< 0x00000001 */ 4260 #define TIM_EGR_UG TIM_EGR_UG_Msk /*!<Update Generation */ 4261 #define TIM_EGR_CC1G_Pos (1U) 4262 #define TIM_EGR_CC1G_Msk (0x1UL << TIM_EGR_CC1G_Pos) /*!< 0x00000002 */ 4263 #define TIM_EGR_CC1G TIM_EGR_CC1G_Msk /*!<Capture/Compare 1 Generation */ 4264 #define TIM_EGR_CC2G_Pos (2U) 4265 #define TIM_EGR_CC2G_Msk (0x1UL << TIM_EGR_CC2G_Pos) /*!< 0x00000004 */ 4266 #define TIM_EGR_CC2G TIM_EGR_CC2G_Msk /*!<Capture/Compare 2 Generation */ 4267 #define TIM_EGR_CC3G_Pos (3U) 4268 #define TIM_EGR_CC3G_Msk (0x1UL << TIM_EGR_CC3G_Pos) /*!< 0x00000008 */ 4269 #define TIM_EGR_CC3G TIM_EGR_CC3G_Msk /*!<Capture/Compare 3 Generation */ 4270 #define TIM_EGR_CC4G_Pos (4U) 4271 #define TIM_EGR_CC4G_Msk (0x1UL << TIM_EGR_CC4G_Pos) /*!< 0x00000010 */ 4272 #define TIM_EGR_CC4G TIM_EGR_CC4G_Msk /*!<Capture/Compare 4 Generation */ 4273 #define TIM_EGR_COMG_Pos (5U) 4274 #define TIM_EGR_COMG_Msk (0x1UL << TIM_EGR_COMG_Pos) /*!< 0x00000020 */ 4275 #define TIM_EGR_COMG TIM_EGR_COMG_Msk /*!<Capture/Compare Control Update Generation */ 4276 #define TIM_EGR_TG_Pos (6U) 4277 #define TIM_EGR_TG_Msk (0x1UL << TIM_EGR_TG_Pos) /*!< 0x00000040 */ 4278 #define TIM_EGR_TG TIM_EGR_TG_Msk /*!<Trigger Generation */ 4279 #define TIM_EGR_BG_Pos (7U) 4280 #define TIM_EGR_BG_Msk (0x1UL << TIM_EGR_BG_Pos) /*!< 0x00000080 */ 4281 #define TIM_EGR_BG TIM_EGR_BG_Msk /*!<Break Generation */ 4282 4283 /****************** Bit definition for TIM_CCMR1 register ******************/ 4284 #define TIM_CCMR1_CC1S_Pos (0U) 4285 #define TIM_CCMR1_CC1S_Msk (0x3UL << TIM_CCMR1_CC1S_Pos) /*!< 0x00000003 */ 4286 #define TIM_CCMR1_CC1S TIM_CCMR1_CC1S_Msk /*!<CC1S[1:0] bits (Capture/Compare 1 Selection) */ 4287 #define TIM_CCMR1_CC1S_0 (0x1UL << TIM_CCMR1_CC1S_Pos) /*!< 0x00000001 */ 4288 #define TIM_CCMR1_CC1S_1 (0x2UL << TIM_CCMR1_CC1S_Pos) /*!< 0x00000002 */ 4289 4290 #define TIM_CCMR1_OC1FE_Pos (2U) 4291 #define TIM_CCMR1_OC1FE_Msk (0x1UL << TIM_CCMR1_OC1FE_Pos) /*!< 0x00000004 */ 4292 #define TIM_CCMR1_OC1FE TIM_CCMR1_OC1FE_Msk /*!<Output Compare 1 Fast enable */ 4293 #define TIM_CCMR1_OC1PE_Pos (3U) 4294 #define TIM_CCMR1_OC1PE_Msk (0x1UL << TIM_CCMR1_OC1PE_Pos) /*!< 0x00000008 */ 4295 #define TIM_CCMR1_OC1PE TIM_CCMR1_OC1PE_Msk /*!<Output Compare 1 Preload enable */ 4296 4297 #define TIM_CCMR1_OC1M_Pos (4U) 4298 #define TIM_CCMR1_OC1M_Msk (0x7UL << TIM_CCMR1_OC1M_Pos) /*!< 0x00000070 */ 4299 #define TIM_CCMR1_OC1M TIM_CCMR1_OC1M_Msk /*!<OC1M[2:0] bits (Output Compare 1 Mode) */ 4300 #define TIM_CCMR1_OC1M_0 (0x1UL << TIM_CCMR1_OC1M_Pos) /*!< 0x00000010 */ 4301 #define TIM_CCMR1_OC1M_1 (0x2UL << TIM_CCMR1_OC1M_Pos) /*!< 0x00000020 */ 4302 #define TIM_CCMR1_OC1M_2 (0x4UL << TIM_CCMR1_OC1M_Pos) /*!< 0x00000040 */ 4303 4304 #define TIM_CCMR1_OC1CE_Pos (7U) 4305 #define TIM_CCMR1_OC1CE_Msk (0x1UL << TIM_CCMR1_OC1CE_Pos) /*!< 0x00000080 */ 4306 #define TIM_CCMR1_OC1CE TIM_CCMR1_OC1CE_Msk /*!<Output Compare 1Clear Enable */ 4307 4308 #define TIM_CCMR1_CC2S_Pos (8U) 4309 #define TIM_CCMR1_CC2S_Msk (0x3UL << TIM_CCMR1_CC2S_Pos) /*!< 0x00000300 */ 4310 #define TIM_CCMR1_CC2S TIM_CCMR1_CC2S_Msk /*!<CC2S[1:0] bits (Capture/Compare 2 Selection) */ 4311 #define TIM_CCMR1_CC2S_0 (0x1UL << TIM_CCMR1_CC2S_Pos) /*!< 0x00000100 */ 4312 #define TIM_CCMR1_CC2S_1 (0x2UL << TIM_CCMR1_CC2S_Pos) /*!< 0x00000200 */ 4313 4314 #define TIM_CCMR1_OC2FE_Pos (10U) 4315 #define TIM_CCMR1_OC2FE_Msk (0x1UL << TIM_CCMR1_OC2FE_Pos) /*!< 0x00000400 */ 4316 #define TIM_CCMR1_OC2FE TIM_CCMR1_OC2FE_Msk /*!<Output Compare 2 Fast enable */ 4317 #define TIM_CCMR1_OC2PE_Pos (11U) 4318 #define TIM_CCMR1_OC2PE_Msk (0x1UL << TIM_CCMR1_OC2PE_Pos) /*!< 0x00000800 */ 4319 #define TIM_CCMR1_OC2PE TIM_CCMR1_OC2PE_Msk /*!<Output Compare 2 Preload enable */ 4320 4321 #define TIM_CCMR1_OC2M_Pos (12U) 4322 #define TIM_CCMR1_OC2M_Msk (0x7UL << TIM_CCMR1_OC2M_Pos) /*!< 0x00007000 */ 4323 #define TIM_CCMR1_OC2M TIM_CCMR1_OC2M_Msk /*!<OC2M[2:0] bits (Output Compare 2 Mode) */ 4324 #define TIM_CCMR1_OC2M_0 (0x1UL << TIM_CCMR1_OC2M_Pos) /*!< 0x00001000 */ 4325 #define TIM_CCMR1_OC2M_1 (0x2UL << TIM_CCMR1_OC2M_Pos) /*!< 0x00002000 */ 4326 #define TIM_CCMR1_OC2M_2 (0x4UL << TIM_CCMR1_OC2M_Pos) /*!< 0x00004000 */ 4327 4328 #define TIM_CCMR1_OC2CE_Pos (15U) 4329 #define TIM_CCMR1_OC2CE_Msk (0x1UL << TIM_CCMR1_OC2CE_Pos) /*!< 0x00008000 */ 4330 #define TIM_CCMR1_OC2CE TIM_CCMR1_OC2CE_Msk /*!<Output Compare 2 Clear Enable */ 4331 4332 /*---------------------------------------------------------------------------*/ 4333 4334 #define TIM_CCMR1_IC1PSC_Pos (2U) 4335 #define TIM_CCMR1_IC1PSC_Msk (0x3UL << TIM_CCMR1_IC1PSC_Pos) /*!< 0x0000000C */ 4336 #define TIM_CCMR1_IC1PSC TIM_CCMR1_IC1PSC_Msk /*!<IC1PSC[1:0] bits (Input Capture 1 Prescaler) */ 4337 #define TIM_CCMR1_IC1PSC_0 (0x1UL << TIM_CCMR1_IC1PSC_Pos) /*!< 0x00000004 */ 4338 #define TIM_CCMR1_IC1PSC_1 (0x2UL << TIM_CCMR1_IC1PSC_Pos) /*!< 0x00000008 */ 4339 4340 #define TIM_CCMR1_IC1F_Pos (4U) 4341 #define TIM_CCMR1_IC1F_Msk (0xFUL << TIM_CCMR1_IC1F_Pos) /*!< 0x000000F0 */ 4342 #define TIM_CCMR1_IC1F TIM_CCMR1_IC1F_Msk /*!<IC1F[3:0] bits (Input Capture 1 Filter) */ 4343 #define TIM_CCMR1_IC1F_0 (0x1UL << TIM_CCMR1_IC1F_Pos) /*!< 0x00000010 */ 4344 #define TIM_CCMR1_IC1F_1 (0x2UL << TIM_CCMR1_IC1F_Pos) /*!< 0x00000020 */ 4345 #define TIM_CCMR1_IC1F_2 (0x4UL << TIM_CCMR1_IC1F_Pos) /*!< 0x00000040 */ 4346 #define TIM_CCMR1_IC1F_3 (0x8UL << TIM_CCMR1_IC1F_Pos) /*!< 0x00000080 */ 4347 4348 #define TIM_CCMR1_IC2PSC_Pos (10U) 4349 #define TIM_CCMR1_IC2PSC_Msk (0x3UL << TIM_CCMR1_IC2PSC_Pos) /*!< 0x00000C00 */ 4350 #define TIM_CCMR1_IC2PSC TIM_CCMR1_IC2PSC_Msk /*!<IC2PSC[1:0] bits (Input Capture 2 Prescaler) */ 4351 #define TIM_CCMR1_IC2PSC_0 (0x1UL << TIM_CCMR1_IC2PSC_Pos) /*!< 0x00000400 */ 4352 #define TIM_CCMR1_IC2PSC_1 (0x2UL << TIM_CCMR1_IC2PSC_Pos) /*!< 0x00000800 */ 4353 4354 #define TIM_CCMR1_IC2F_Pos (12U) 4355 #define TIM_CCMR1_IC2F_Msk (0xFUL << TIM_CCMR1_IC2F_Pos) /*!< 0x0000F000 */ 4356 #define TIM_CCMR1_IC2F TIM_CCMR1_IC2F_Msk /*!<IC2F[3:0] bits (Input Capture 2 Filter) */ 4357 #define TIM_CCMR1_IC2F_0 (0x1UL << TIM_CCMR1_IC2F_Pos) /*!< 0x00001000 */ 4358 #define TIM_CCMR1_IC2F_1 (0x2UL << TIM_CCMR1_IC2F_Pos) /*!< 0x00002000 */ 4359 #define TIM_CCMR1_IC2F_2 (0x4UL << TIM_CCMR1_IC2F_Pos) /*!< 0x00004000 */ 4360 #define TIM_CCMR1_IC2F_3 (0x8UL << TIM_CCMR1_IC2F_Pos) /*!< 0x00008000 */ 4361 4362 /****************** Bit definition for TIM_CCMR2 register ******************/ 4363 #define TIM_CCMR2_CC3S_Pos (0U) 4364 #define TIM_CCMR2_CC3S_Msk (0x3UL << TIM_CCMR2_CC3S_Pos) /*!< 0x00000003 */ 4365 #define TIM_CCMR2_CC3S TIM_CCMR2_CC3S_Msk /*!<CC3S[1:0] bits (Capture/Compare 3 Selection) */ 4366 #define TIM_CCMR2_CC3S_0 (0x1UL << TIM_CCMR2_CC3S_Pos) /*!< 0x00000001 */ 4367 #define TIM_CCMR2_CC3S_1 (0x2UL << TIM_CCMR2_CC3S_Pos) /*!< 0x00000002 */ 4368 4369 #define TIM_CCMR2_OC3FE_Pos (2U) 4370 #define TIM_CCMR2_OC3FE_Msk (0x1UL << TIM_CCMR2_OC3FE_Pos) /*!< 0x00000004 */ 4371 #define TIM_CCMR2_OC3FE TIM_CCMR2_OC3FE_Msk /*!<Output Compare 3 Fast enable */ 4372 #define TIM_CCMR2_OC3PE_Pos (3U) 4373 #define TIM_CCMR2_OC3PE_Msk (0x1UL << TIM_CCMR2_OC3PE_Pos) /*!< 0x00000008 */ 4374 #define TIM_CCMR2_OC3PE TIM_CCMR2_OC3PE_Msk /*!<Output Compare 3 Preload enable */ 4375 4376 #define TIM_CCMR2_OC3M_Pos (4U) 4377 #define TIM_CCMR2_OC3M_Msk (0x7UL << TIM_CCMR2_OC3M_Pos) /*!< 0x00000070 */ 4378 #define TIM_CCMR2_OC3M TIM_CCMR2_OC3M_Msk /*!<OC3M[2:0] bits (Output Compare 3 Mode) */ 4379 #define TIM_CCMR2_OC3M_0 (0x1UL << TIM_CCMR2_OC3M_Pos) /*!< 0x00000010 */ 4380 #define TIM_CCMR2_OC3M_1 (0x2UL << TIM_CCMR2_OC3M_Pos) /*!< 0x00000020 */ 4381 #define TIM_CCMR2_OC3M_2 (0x4UL << TIM_CCMR2_OC3M_Pos) /*!< 0x00000040 */ 4382 4383 #define TIM_CCMR2_OC3CE_Pos (7U) 4384 #define TIM_CCMR2_OC3CE_Msk (0x1UL << TIM_CCMR2_OC3CE_Pos) /*!< 0x00000080 */ 4385 #define TIM_CCMR2_OC3CE TIM_CCMR2_OC3CE_Msk /*!<Output Compare 3 Clear Enable */ 4386 4387 #define TIM_CCMR2_CC4S_Pos (8U) 4388 #define TIM_CCMR2_CC4S_Msk (0x3UL << TIM_CCMR2_CC4S_Pos) /*!< 0x00000300 */ 4389 #define TIM_CCMR2_CC4S TIM_CCMR2_CC4S_Msk /*!<CC4S[1:0] bits (Capture/Compare 4 Selection) */ 4390 #define TIM_CCMR2_CC4S_0 (0x1UL << TIM_CCMR2_CC4S_Pos) /*!< 0x00000100 */ 4391 #define TIM_CCMR2_CC4S_1 (0x2UL << TIM_CCMR2_CC4S_Pos) /*!< 0x00000200 */ 4392 4393 #define TIM_CCMR2_OC4FE_Pos (10U) 4394 #define TIM_CCMR2_OC4FE_Msk (0x1UL << TIM_CCMR2_OC4FE_Pos) /*!< 0x00000400 */ 4395 #define TIM_CCMR2_OC4FE TIM_CCMR2_OC4FE_Msk /*!<Output Compare 4 Fast enable */ 4396 #define TIM_CCMR2_OC4PE_Pos (11U) 4397 #define TIM_CCMR2_OC4PE_Msk (0x1UL << TIM_CCMR2_OC4PE_Pos) /*!< 0x00000800 */ 4398 #define TIM_CCMR2_OC4PE TIM_CCMR2_OC4PE_Msk /*!<Output Compare 4 Preload enable */ 4399 4400 #define TIM_CCMR2_OC4M_Pos (12U) 4401 #define TIM_CCMR2_OC4M_Msk (0x7UL << TIM_CCMR2_OC4M_Pos) /*!< 0x00007000 */ 4402 #define TIM_CCMR2_OC4M TIM_CCMR2_OC4M_Msk /*!<OC4M[2:0] bits (Output Compare 4 Mode) */ 4403 #define TIM_CCMR2_OC4M_0 (0x1UL << TIM_CCMR2_OC4M_Pos) /*!< 0x00001000 */ 4404 #define TIM_CCMR2_OC4M_1 (0x2UL << TIM_CCMR2_OC4M_Pos) /*!< 0x00002000 */ 4405 #define TIM_CCMR2_OC4M_2 (0x4UL << TIM_CCMR2_OC4M_Pos) /*!< 0x00004000 */ 4406 4407 #define TIM_CCMR2_OC4CE_Pos (15U) 4408 #define TIM_CCMR2_OC4CE_Msk (0x1UL << TIM_CCMR2_OC4CE_Pos) /*!< 0x00008000 */ 4409 #define TIM_CCMR2_OC4CE TIM_CCMR2_OC4CE_Msk /*!<Output Compare 4 Clear Enable */ 4410 4411 /*---------------------------------------------------------------------------*/ 4412 4413 #define TIM_CCMR2_IC3PSC_Pos (2U) 4414 #define TIM_CCMR2_IC3PSC_Msk (0x3UL << TIM_CCMR2_IC3PSC_Pos) /*!< 0x0000000C */ 4415 #define TIM_CCMR2_IC3PSC TIM_CCMR2_IC3PSC_Msk /*!<IC3PSC[1:0] bits (Input Capture 3 Prescaler) */ 4416 #define TIM_CCMR2_IC3PSC_0 (0x1UL << TIM_CCMR2_IC3PSC_Pos) /*!< 0x00000004 */ 4417 #define TIM_CCMR2_IC3PSC_1 (0x2UL << TIM_CCMR2_IC3PSC_Pos) /*!< 0x00000008 */ 4418 4419 #define TIM_CCMR2_IC3F_Pos (4U) 4420 #define TIM_CCMR2_IC3F_Msk (0xFUL << TIM_CCMR2_IC3F_Pos) /*!< 0x000000F0 */ 4421 #define TIM_CCMR2_IC3F TIM_CCMR2_IC3F_Msk /*!<IC3F[3:0] bits (Input Capture 3 Filter) */ 4422 #define TIM_CCMR2_IC3F_0 (0x1UL << TIM_CCMR2_IC3F_Pos) /*!< 0x00000010 */ 4423 #define TIM_CCMR2_IC3F_1 (0x2UL << TIM_CCMR2_IC3F_Pos) /*!< 0x00000020 */ 4424 #define TIM_CCMR2_IC3F_2 (0x4UL << TIM_CCMR2_IC3F_Pos) /*!< 0x00000040 */ 4425 #define TIM_CCMR2_IC3F_3 (0x8UL << TIM_CCMR2_IC3F_Pos) /*!< 0x00000080 */ 4426 4427 #define TIM_CCMR2_IC4PSC_Pos (10U) 4428 #define TIM_CCMR2_IC4PSC_Msk (0x3UL << TIM_CCMR2_IC4PSC_Pos) /*!< 0x00000C00 */ 4429 #define TIM_CCMR2_IC4PSC TIM_CCMR2_IC4PSC_Msk /*!<IC4PSC[1:0] bits (Input Capture 4 Prescaler) */ 4430 #define TIM_CCMR2_IC4PSC_0 (0x1UL << TIM_CCMR2_IC4PSC_Pos) /*!< 0x00000400 */ 4431 #define TIM_CCMR2_IC4PSC_1 (0x2UL << TIM_CCMR2_IC4PSC_Pos) /*!< 0x00000800 */ 4432 4433 #define TIM_CCMR2_IC4F_Pos (12U) 4434 #define TIM_CCMR2_IC4F_Msk (0xFUL << TIM_CCMR2_IC4F_Pos) /*!< 0x0000F000 */ 4435 #define TIM_CCMR2_IC4F TIM_CCMR2_IC4F_Msk /*!<IC4F[3:0] bits (Input Capture 4 Filter) */ 4436 #define TIM_CCMR2_IC4F_0 (0x1UL << TIM_CCMR2_IC4F_Pos) /*!< 0x00001000 */ 4437 #define TIM_CCMR2_IC4F_1 (0x2UL << TIM_CCMR2_IC4F_Pos) /*!< 0x00002000 */ 4438 #define TIM_CCMR2_IC4F_2 (0x4UL << TIM_CCMR2_IC4F_Pos) /*!< 0x00004000 */ 4439 #define TIM_CCMR2_IC4F_3 (0x8UL << TIM_CCMR2_IC4F_Pos) /*!< 0x00008000 */ 4440 4441 /******************* Bit definition for TIM_CCER register ******************/ 4442 #define TIM_CCER_CC1E_Pos (0U) 4443 #define TIM_CCER_CC1E_Msk (0x1UL << TIM_CCER_CC1E_Pos) /*!< 0x00000001 */ 4444 #define TIM_CCER_CC1E TIM_CCER_CC1E_Msk /*!<Capture/Compare 1 output enable */ 4445 #define TIM_CCER_CC1P_Pos (1U) 4446 #define TIM_CCER_CC1P_Msk (0x1UL << TIM_CCER_CC1P_Pos) /*!< 0x00000002 */ 4447 #define TIM_CCER_CC1P TIM_CCER_CC1P_Msk /*!<Capture/Compare 1 output Polarity */ 4448 #define TIM_CCER_CC1NE_Pos (2U) 4449 #define TIM_CCER_CC1NE_Msk (0x1UL << TIM_CCER_CC1NE_Pos) /*!< 0x00000004 */ 4450 #define TIM_CCER_CC1NE TIM_CCER_CC1NE_Msk /*!<Capture/Compare 1 Complementary output enable */ 4451 #define TIM_CCER_CC1NP_Pos (3U) 4452 #define TIM_CCER_CC1NP_Msk (0x1UL << TIM_CCER_CC1NP_Pos) /*!< 0x00000008 */ 4453 #define TIM_CCER_CC1NP TIM_CCER_CC1NP_Msk /*!<Capture/Compare 1 Complementary output Polarity */ 4454 #define TIM_CCER_CC2E_Pos (4U) 4455 #define TIM_CCER_CC2E_Msk (0x1UL << TIM_CCER_CC2E_Pos) /*!< 0x00000010 */ 4456 #define TIM_CCER_CC2E TIM_CCER_CC2E_Msk /*!<Capture/Compare 2 output enable */ 4457 #define TIM_CCER_CC2P_Pos (5U) 4458 #define TIM_CCER_CC2P_Msk (0x1UL << TIM_CCER_CC2P_Pos) /*!< 0x00000020 */ 4459 #define TIM_CCER_CC2P TIM_CCER_CC2P_Msk /*!<Capture/Compare 2 output Polarity */ 4460 #define TIM_CCER_CC2NE_Pos (6U) 4461 #define TIM_CCER_CC2NE_Msk (0x1UL << TIM_CCER_CC2NE_Pos) /*!< 0x00000040 */ 4462 #define TIM_CCER_CC2NE TIM_CCER_CC2NE_Msk /*!<Capture/Compare 2 Complementary output enable */ 4463 #define TIM_CCER_CC2NP_Pos (7U) 4464 #define TIM_CCER_CC2NP_Msk (0x1UL << TIM_CCER_CC2NP_Pos) /*!< 0x00000080 */ 4465 #define TIM_CCER_CC2NP TIM_CCER_CC2NP_Msk /*!<Capture/Compare 2 Complementary output Polarity */ 4466 #define TIM_CCER_CC3E_Pos (8U) 4467 #define TIM_CCER_CC3E_Msk (0x1UL << TIM_CCER_CC3E_Pos) /*!< 0x00000100 */ 4468 #define TIM_CCER_CC3E TIM_CCER_CC3E_Msk /*!<Capture/Compare 3 output enable */ 4469 #define TIM_CCER_CC3P_Pos (9U) 4470 #define TIM_CCER_CC3P_Msk (0x1UL << TIM_CCER_CC3P_Pos) /*!< 0x00000200 */ 4471 #define TIM_CCER_CC3P TIM_CCER_CC3P_Msk /*!<Capture/Compare 3 output Polarity */ 4472 #define TIM_CCER_CC3NE_Pos (10U) 4473 #define TIM_CCER_CC3NE_Msk (0x1UL << TIM_CCER_CC3NE_Pos) /*!< 0x00000400 */ 4474 #define TIM_CCER_CC3NE TIM_CCER_CC3NE_Msk /*!<Capture/Compare 3 Complementary output enable */ 4475 #define TIM_CCER_CC3NP_Pos (11U) 4476 #define TIM_CCER_CC3NP_Msk (0x1UL << TIM_CCER_CC3NP_Pos) /*!< 0x00000800 */ 4477 #define TIM_CCER_CC3NP TIM_CCER_CC3NP_Msk /*!<Capture/Compare 3 Complementary output Polarity */ 4478 #define TIM_CCER_CC4E_Pos (12U) 4479 #define TIM_CCER_CC4E_Msk (0x1UL << TIM_CCER_CC4E_Pos) /*!< 0x00001000 */ 4480 #define TIM_CCER_CC4E TIM_CCER_CC4E_Msk /*!<Capture/Compare 4 output enable */ 4481 #define TIM_CCER_CC4P_Pos (13U) 4482 #define TIM_CCER_CC4P_Msk (0x1UL << TIM_CCER_CC4P_Pos) /*!< 0x00002000 */ 4483 #define TIM_CCER_CC4P TIM_CCER_CC4P_Msk /*!<Capture/Compare 4 output Polarity */ 4484 4485 /******************* Bit definition for TIM_CNT register *******************/ 4486 #define TIM_CNT_CNT_Pos (0U) 4487 #define TIM_CNT_CNT_Msk (0xFFFFFFFFUL << TIM_CNT_CNT_Pos) /*!< 0xFFFFFFFF */ 4488 #define TIM_CNT_CNT TIM_CNT_CNT_Msk /*!<Counter Value */ 4489 4490 /******************* Bit definition for TIM_PSC register *******************/ 4491 #define TIM_PSC_PSC_Pos (0U) 4492 #define TIM_PSC_PSC_Msk (0xFFFFUL << TIM_PSC_PSC_Pos) /*!< 0x0000FFFF */ 4493 #define TIM_PSC_PSC TIM_PSC_PSC_Msk /*!<Prescaler Value */ 4494 4495 /******************* Bit definition for TIM_ARR register *******************/ 4496 #define TIM_ARR_ARR_Pos (0U) 4497 #define TIM_ARR_ARR_Msk (0xFFFFFFFFUL << TIM_ARR_ARR_Pos) /*!< 0xFFFFFFFF */ 4498 #define TIM_ARR_ARR TIM_ARR_ARR_Msk /*!<actual auto-reload Value */ 4499 4500 /******************* Bit definition for TIM_RCR register *******************/ 4501 #define TIM_RCR_REP_Pos (0U) 4502 #define TIM_RCR_REP_Msk (0xFFUL << TIM_RCR_REP_Pos) /*!< 0x000000FF */ 4503 #define TIM_RCR_REP TIM_RCR_REP_Msk /*!<Repetition Counter Value */ 4504 4505 /******************* Bit definition for TIM_CCR1 register ******************/ 4506 #define TIM_CCR1_CCR1_Pos (0U) 4507 #define TIM_CCR1_CCR1_Msk (0xFFFFUL << TIM_CCR1_CCR1_Pos) /*!< 0x0000FFFF */ 4508 #define TIM_CCR1_CCR1 TIM_CCR1_CCR1_Msk /*!<Capture/Compare 1 Value */ 4509 4510 /******************* Bit definition for TIM_CCR2 register ******************/ 4511 #define TIM_CCR2_CCR2_Pos (0U) 4512 #define TIM_CCR2_CCR2_Msk (0xFFFFUL << TIM_CCR2_CCR2_Pos) /*!< 0x0000FFFF */ 4513 #define TIM_CCR2_CCR2 TIM_CCR2_CCR2_Msk /*!<Capture/Compare 2 Value */ 4514 4515 /******************* Bit definition for TIM_CCR3 register ******************/ 4516 #define TIM_CCR3_CCR3_Pos (0U) 4517 #define TIM_CCR3_CCR3_Msk (0xFFFFUL << TIM_CCR3_CCR3_Pos) /*!< 0x0000FFFF */ 4518 #define TIM_CCR3_CCR3 TIM_CCR3_CCR3_Msk /*!<Capture/Compare 3 Value */ 4519 4520 /******************* Bit definition for TIM_CCR4 register ******************/ 4521 #define TIM_CCR4_CCR4_Pos (0U) 4522 #define TIM_CCR4_CCR4_Msk (0xFFFFUL << TIM_CCR4_CCR4_Pos) /*!< 0x0000FFFF */ 4523 #define TIM_CCR4_CCR4 TIM_CCR4_CCR4_Msk /*!<Capture/Compare 4 Value */ 4524 4525 /******************* Bit definition for TIM_BDTR register ******************/ 4526 #define TIM_BDTR_DTG_Pos (0U) 4527 #define TIM_BDTR_DTG_Msk (0xFFUL << TIM_BDTR_DTG_Pos) /*!< 0x000000FF */ 4528 #define TIM_BDTR_DTG TIM_BDTR_DTG_Msk /*!<DTG[0:7] bits (Dead-Time Generator set-up) */ 4529 #define TIM_BDTR_DTG_0 (0x01UL << TIM_BDTR_DTG_Pos) /*!< 0x00000001 */ 4530 #define TIM_BDTR_DTG_1 (0x02UL << TIM_BDTR_DTG_Pos) /*!< 0x00000002 */ 4531 #define TIM_BDTR_DTG_2 (0x04UL << TIM_BDTR_DTG_Pos) /*!< 0x00000004 */ 4532 #define TIM_BDTR_DTG_3 (0x08UL << TIM_BDTR_DTG_Pos) /*!< 0x00000008 */ 4533 #define TIM_BDTR_DTG_4 (0x10UL << TIM_BDTR_DTG_Pos) /*!< 0x00000010 */ 4534 #define TIM_BDTR_DTG_5 (0x20UL << TIM_BDTR_DTG_Pos) /*!< 0x00000020 */ 4535 #define TIM_BDTR_DTG_6 (0x40UL << TIM_BDTR_DTG_Pos) /*!< 0x00000040 */ 4536 #define TIM_BDTR_DTG_7 (0x80UL << TIM_BDTR_DTG_Pos) /*!< 0x00000080 */ 4537 4538 #define TIM_BDTR_LOCK_Pos (8U) 4539 #define TIM_BDTR_LOCK_Msk (0x3UL << TIM_BDTR_LOCK_Pos) /*!< 0x00000300 */ 4540 #define TIM_BDTR_LOCK TIM_BDTR_LOCK_Msk /*!<LOCK[1:0] bits (Lock Configuration) */ 4541 #define TIM_BDTR_LOCK_0 (0x1UL << TIM_BDTR_LOCK_Pos) /*!< 0x00000100 */ 4542 #define TIM_BDTR_LOCK_1 (0x2UL << TIM_BDTR_LOCK_Pos) /*!< 0x00000200 */ 4543 4544 #define TIM_BDTR_OSSI_Pos (10U) 4545 #define TIM_BDTR_OSSI_Msk (0x1UL << TIM_BDTR_OSSI_Pos) /*!< 0x00000400 */ 4546 #define TIM_BDTR_OSSI TIM_BDTR_OSSI_Msk /*!<Off-State Selection for Idle mode */ 4547 #define TIM_BDTR_OSSR_Pos (11U) 4548 #define TIM_BDTR_OSSR_Msk (0x1UL << TIM_BDTR_OSSR_Pos) /*!< 0x00000800 */ 4549 #define TIM_BDTR_OSSR TIM_BDTR_OSSR_Msk /*!<Off-State Selection for Run mode */ 4550 #define TIM_BDTR_BKE_Pos (12U) 4551 #define TIM_BDTR_BKE_Msk (0x1UL << TIM_BDTR_BKE_Pos) /*!< 0x00001000 */ 4552 #define TIM_BDTR_BKE TIM_BDTR_BKE_Msk /*!<Break enable */ 4553 #define TIM_BDTR_BKP_Pos (13U) 4554 #define TIM_BDTR_BKP_Msk (0x1UL << TIM_BDTR_BKP_Pos) /*!< 0x00002000 */ 4555 #define TIM_BDTR_BKP TIM_BDTR_BKP_Msk /*!<Break Polarity */ 4556 #define TIM_BDTR_AOE_Pos (14U) 4557 #define TIM_BDTR_AOE_Msk (0x1UL << TIM_BDTR_AOE_Pos) /*!< 0x00004000 */ 4558 #define TIM_BDTR_AOE TIM_BDTR_AOE_Msk /*!<Automatic Output enable */ 4559 #define TIM_BDTR_MOE_Pos (15U) 4560 #define TIM_BDTR_MOE_Msk (0x1UL << TIM_BDTR_MOE_Pos) /*!< 0x00008000 */ 4561 #define TIM_BDTR_MOE TIM_BDTR_MOE_Msk /*!<Main Output enable */ 4562 4563 /******************* Bit definition for TIM_DCR register *******************/ 4564 #define TIM_DCR_DBA_Pos (0U) 4565 #define TIM_DCR_DBA_Msk (0x1FUL << TIM_DCR_DBA_Pos) /*!< 0x0000001F */ 4566 #define TIM_DCR_DBA TIM_DCR_DBA_Msk /*!<DBA[4:0] bits (DMA Base Address) */ 4567 #define TIM_DCR_DBA_0 (0x01UL << TIM_DCR_DBA_Pos) /*!< 0x00000001 */ 4568 #define TIM_DCR_DBA_1 (0x02UL << TIM_DCR_DBA_Pos) /*!< 0x00000002 */ 4569 #define TIM_DCR_DBA_2 (0x04UL << TIM_DCR_DBA_Pos) /*!< 0x00000004 */ 4570 #define TIM_DCR_DBA_3 (0x08UL << TIM_DCR_DBA_Pos) /*!< 0x00000008 */ 4571 #define TIM_DCR_DBA_4 (0x10UL << TIM_DCR_DBA_Pos) /*!< 0x00000010 */ 4572 4573 #define TIM_DCR_DBL_Pos (8U) 4574 #define TIM_DCR_DBL_Msk (0x1FUL << TIM_DCR_DBL_Pos) /*!< 0x00001F00 */ 4575 #define TIM_DCR_DBL TIM_DCR_DBL_Msk /*!<DBL[4:0] bits (DMA Burst Length) */ 4576 #define TIM_DCR_DBL_0 (0x01UL << TIM_DCR_DBL_Pos) /*!< 0x00000100 */ 4577 #define TIM_DCR_DBL_1 (0x02UL << TIM_DCR_DBL_Pos) /*!< 0x00000200 */ 4578 #define TIM_DCR_DBL_2 (0x04UL << TIM_DCR_DBL_Pos) /*!< 0x00000400 */ 4579 #define TIM_DCR_DBL_3 (0x08UL << TIM_DCR_DBL_Pos) /*!< 0x00000800 */ 4580 #define TIM_DCR_DBL_4 (0x10UL << TIM_DCR_DBL_Pos) /*!< 0x00001000 */ 4581 4582 /******************* Bit definition for TIM_DMAR register ******************/ 4583 #define TIM_DMAR_DMAB_Pos (0U) 4584 #define TIM_DMAR_DMAB_Msk (0xFFFFUL << TIM_DMAR_DMAB_Pos) /*!< 0x0000FFFF */ 4585 #define TIM_DMAR_DMAB TIM_DMAR_DMAB_Msk /*!<DMA register for burst accesses */ 4586 4587 /******************************************************************************/ 4588 /* */ 4589 /* Real-Time Clock */ 4590 /* */ 4591 /******************************************************************************/ 4592 4593 /******************* Bit definition for RTC_CRH register ********************/ 4594 #define RTC_CRH_SECIE_Pos (0U) 4595 #define RTC_CRH_SECIE_Msk (0x1UL << RTC_CRH_SECIE_Pos) /*!< 0x00000001 */ 4596 #define RTC_CRH_SECIE RTC_CRH_SECIE_Msk /*!< Second Interrupt Enable */ 4597 #define RTC_CRH_ALRIE_Pos (1U) 4598 #define RTC_CRH_ALRIE_Msk (0x1UL << RTC_CRH_ALRIE_Pos) /*!< 0x00000002 */ 4599 #define RTC_CRH_ALRIE RTC_CRH_ALRIE_Msk /*!< Alarm Interrupt Enable */ 4600 #define RTC_CRH_OWIE_Pos (2U) 4601 #define RTC_CRH_OWIE_Msk (0x1UL << RTC_CRH_OWIE_Pos) /*!< 0x00000004 */ 4602 #define RTC_CRH_OWIE RTC_CRH_OWIE_Msk /*!< OverfloW Interrupt Enable */ 4603 4604 /******************* Bit definition for RTC_CRL register ********************/ 4605 #define RTC_CRL_SECF_Pos (0U) 4606 #define RTC_CRL_SECF_Msk (0x1UL << RTC_CRL_SECF_Pos) /*!< 0x00000001 */ 4607 #define RTC_CRL_SECF RTC_CRL_SECF_Msk /*!< Second Flag */ 4608 #define RTC_CRL_ALRF_Pos (1U) 4609 #define RTC_CRL_ALRF_Msk (0x1UL << RTC_CRL_ALRF_Pos) /*!< 0x00000002 */ 4610 #define RTC_CRL_ALRF RTC_CRL_ALRF_Msk /*!< Alarm Flag */ 4611 #define RTC_CRL_OWF_Pos (2U) 4612 #define RTC_CRL_OWF_Msk (0x1UL << RTC_CRL_OWF_Pos) /*!< 0x00000004 */ 4613 #define RTC_CRL_OWF RTC_CRL_OWF_Msk /*!< OverfloW Flag */ 4614 #define RTC_CRL_RSF_Pos (3U) 4615 #define RTC_CRL_RSF_Msk (0x1UL << RTC_CRL_RSF_Pos) /*!< 0x00000008 */ 4616 #define RTC_CRL_RSF RTC_CRL_RSF_Msk /*!< Registers Synchronized Flag */ 4617 #define RTC_CRL_CNF_Pos (4U) 4618 #define RTC_CRL_CNF_Msk (0x1UL << RTC_CRL_CNF_Pos) /*!< 0x00000010 */ 4619 #define RTC_CRL_CNF RTC_CRL_CNF_Msk /*!< Configuration Flag */ 4620 #define RTC_CRL_RTOFF_Pos (5U) 4621 #define RTC_CRL_RTOFF_Msk (0x1UL << RTC_CRL_RTOFF_Pos) /*!< 0x00000020 */ 4622 #define RTC_CRL_RTOFF RTC_CRL_RTOFF_Msk /*!< RTC operation OFF */ 4623 4624 /******************* Bit definition for RTC_PRLH register *******************/ 4625 #define RTC_PRLH_PRL_Pos (0U) 4626 #define RTC_PRLH_PRL_Msk (0xFUL << RTC_PRLH_PRL_Pos) /*!< 0x0000000F */ 4627 #define RTC_PRLH_PRL RTC_PRLH_PRL_Msk /*!< RTC Prescaler Reload Value High */ 4628 4629 /******************* Bit definition for RTC_PRLL register *******************/ 4630 #define RTC_PRLL_PRL_Pos (0U) 4631 #define RTC_PRLL_PRL_Msk (0xFFFFUL << RTC_PRLL_PRL_Pos) /*!< 0x0000FFFF */ 4632 #define RTC_PRLL_PRL RTC_PRLL_PRL_Msk /*!< RTC Prescaler Reload Value Low */ 4633 4634 /******************* Bit definition for RTC_DIVH register *******************/ 4635 #define RTC_DIVH_RTC_DIV_Pos (0U) 4636 #define RTC_DIVH_RTC_DIV_Msk (0xFUL << RTC_DIVH_RTC_DIV_Pos) /*!< 0x0000000F */ 4637 #define RTC_DIVH_RTC_DIV RTC_DIVH_RTC_DIV_Msk /*!< RTC Clock Divider High */ 4638 4639 /******************* Bit definition for RTC_DIVL register *******************/ 4640 #define RTC_DIVL_RTC_DIV_Pos (0U) 4641 #define RTC_DIVL_RTC_DIV_Msk (0xFFFFUL << RTC_DIVL_RTC_DIV_Pos) /*!< 0x0000FFFF */ 4642 #define RTC_DIVL_RTC_DIV RTC_DIVL_RTC_DIV_Msk /*!< RTC Clock Divider Low */ 4643 4644 /******************* Bit definition for RTC_CNTH register *******************/ 4645 #define RTC_CNTH_RTC_CNT_Pos (0U) 4646 #define RTC_CNTH_RTC_CNT_Msk (0xFFFFUL << RTC_CNTH_RTC_CNT_Pos) /*!< 0x0000FFFF */ 4647 #define RTC_CNTH_RTC_CNT RTC_CNTH_RTC_CNT_Msk /*!< RTC Counter High */ 4648 4649 /******************* Bit definition for RTC_CNTL register *******************/ 4650 #define RTC_CNTL_RTC_CNT_Pos (0U) 4651 #define RTC_CNTL_RTC_CNT_Msk (0xFFFFUL << RTC_CNTL_RTC_CNT_Pos) /*!< 0x0000FFFF */ 4652 #define RTC_CNTL_RTC_CNT RTC_CNTL_RTC_CNT_Msk /*!< RTC Counter Low */ 4653 4654 /******************* Bit definition for RTC_ALRH register *******************/ 4655 #define RTC_ALRH_RTC_ALR_Pos (0U) 4656 #define RTC_ALRH_RTC_ALR_Msk (0xFFFFUL << RTC_ALRH_RTC_ALR_Pos) /*!< 0x0000FFFF */ 4657 #define RTC_ALRH_RTC_ALR RTC_ALRH_RTC_ALR_Msk /*!< RTC Alarm High */ 4658 4659 /******************* Bit definition for RTC_ALRL register *******************/ 4660 #define RTC_ALRL_RTC_ALR_Pos (0U) 4661 #define RTC_ALRL_RTC_ALR_Msk (0xFFFFUL << RTC_ALRL_RTC_ALR_Pos) /*!< 0x0000FFFF */ 4662 #define RTC_ALRL_RTC_ALR RTC_ALRL_RTC_ALR_Msk /*!< RTC Alarm Low */ 4663 4664 /******************************************************************************/ 4665 /* */ 4666 /* Independent WATCHDOG (IWDG) */ 4667 /* */ 4668 /******************************************************************************/ 4669 4670 /******************* Bit definition for IWDG_KR register ********************/ 4671 #define IWDG_KR_KEY_Pos (0U) 4672 #define IWDG_KR_KEY_Msk (0xFFFFUL << IWDG_KR_KEY_Pos) /*!< 0x0000FFFF */ 4673 #define IWDG_KR_KEY IWDG_KR_KEY_Msk /*!< Key value (write only, read 0000h) */ 4674 4675 /******************* Bit definition for IWDG_PR register ********************/ 4676 #define IWDG_PR_PR_Pos (0U) 4677 #define IWDG_PR_PR_Msk (0x7UL << IWDG_PR_PR_Pos) /*!< 0x00000007 */ 4678 #define IWDG_PR_PR IWDG_PR_PR_Msk /*!< PR[2:0] (Prescaler divider) */ 4679 #define IWDG_PR_PR_0 (0x1UL << IWDG_PR_PR_Pos) /*!< 0x00000001 */ 4680 #define IWDG_PR_PR_1 (0x2UL << IWDG_PR_PR_Pos) /*!< 0x00000002 */ 4681 #define IWDG_PR_PR_2 (0x4UL << IWDG_PR_PR_Pos) /*!< 0x00000004 */ 4682 4683 /******************* Bit definition for IWDG_RLR register *******************/ 4684 #define IWDG_RLR_RL_Pos (0U) 4685 #define IWDG_RLR_RL_Msk (0xFFFUL << IWDG_RLR_RL_Pos) /*!< 0x00000FFF */ 4686 #define IWDG_RLR_RL IWDG_RLR_RL_Msk /*!< Watchdog counter reload value */ 4687 4688 /******************* Bit definition for IWDG_SR register ********************/ 4689 #define IWDG_SR_PVU_Pos (0U) 4690 #define IWDG_SR_PVU_Msk (0x1UL << IWDG_SR_PVU_Pos) /*!< 0x00000001 */ 4691 #define IWDG_SR_PVU IWDG_SR_PVU_Msk /*!< Watchdog prescaler value update */ 4692 #define IWDG_SR_RVU_Pos (1U) 4693 #define IWDG_SR_RVU_Msk (0x1UL << IWDG_SR_RVU_Pos) /*!< 0x00000002 */ 4694 #define IWDG_SR_RVU IWDG_SR_RVU_Msk /*!< Watchdog counter reload value update */ 4695 4696 /******************************************************************************/ 4697 /* */ 4698 /* Window WATCHDOG (WWDG) */ 4699 /* */ 4700 /******************************************************************************/ 4701 4702 /******************* Bit definition for WWDG_CR register ********************/ 4703 #define WWDG_CR_T_Pos (0U) 4704 #define WWDG_CR_T_Msk (0x7FUL << WWDG_CR_T_Pos) /*!< 0x0000007F */ 4705 #define WWDG_CR_T WWDG_CR_T_Msk /*!< T[6:0] bits (7-Bit counter (MSB to LSB)) */ 4706 #define WWDG_CR_T_0 (0x01UL << WWDG_CR_T_Pos) /*!< 0x00000001 */ 4707 #define WWDG_CR_T_1 (0x02UL << WWDG_CR_T_Pos) /*!< 0x00000002 */ 4708 #define WWDG_CR_T_2 (0x04UL << WWDG_CR_T_Pos) /*!< 0x00000004 */ 4709 #define WWDG_CR_T_3 (0x08UL << WWDG_CR_T_Pos) /*!< 0x00000008 */ 4710 #define WWDG_CR_T_4 (0x10UL << WWDG_CR_T_Pos) /*!< 0x00000010 */ 4711 #define WWDG_CR_T_5 (0x20UL << WWDG_CR_T_Pos) /*!< 0x00000020 */ 4712 #define WWDG_CR_T_6 (0x40UL << WWDG_CR_T_Pos) /*!< 0x00000040 */ 4713 4714 /* Legacy defines */ 4715 #define WWDG_CR_T0 WWDG_CR_T_0 4716 #define WWDG_CR_T1 WWDG_CR_T_1 4717 #define WWDG_CR_T2 WWDG_CR_T_2 4718 #define WWDG_CR_T3 WWDG_CR_T_3 4719 #define WWDG_CR_T4 WWDG_CR_T_4 4720 #define WWDG_CR_T5 WWDG_CR_T_5 4721 #define WWDG_CR_T6 WWDG_CR_T_6 4722 4723 #define WWDG_CR_WDGA_Pos (7U) 4724 #define WWDG_CR_WDGA_Msk (0x1UL << WWDG_CR_WDGA_Pos) /*!< 0x00000080 */ 4725 #define WWDG_CR_WDGA WWDG_CR_WDGA_Msk /*!< Activation bit */ 4726 4727 /******************* Bit definition for WWDG_CFR register *******************/ 4728 #define WWDG_CFR_W_Pos (0U) 4729 #define WWDG_CFR_W_Msk (0x7FUL << WWDG_CFR_W_Pos) /*!< 0x0000007F */ 4730 #define WWDG_CFR_W WWDG_CFR_W_Msk /*!< W[6:0] bits (7-bit window value) */ 4731 #define WWDG_CFR_W_0 (0x01UL << WWDG_CFR_W_Pos) /*!< 0x00000001 */ 4732 #define WWDG_CFR_W_1 (0x02UL << WWDG_CFR_W_Pos) /*!< 0x00000002 */ 4733 #define WWDG_CFR_W_2 (0x04UL << WWDG_CFR_W_Pos) /*!< 0x00000004 */ 4734 #define WWDG_CFR_W_3 (0x08UL << WWDG_CFR_W_Pos) /*!< 0x00000008 */ 4735 #define WWDG_CFR_W_4 (0x10UL << WWDG_CFR_W_Pos) /*!< 0x00000010 */ 4736 #define WWDG_CFR_W_5 (0x20UL << WWDG_CFR_W_Pos) /*!< 0x00000020 */ 4737 #define WWDG_CFR_W_6 (0x40UL << WWDG_CFR_W_Pos) /*!< 0x00000040 */ 4738 4739 /* Legacy defines */ 4740 #define WWDG_CFR_W0 WWDG_CFR_W_0 4741 #define WWDG_CFR_W1 WWDG_CFR_W_1 4742 #define WWDG_CFR_W2 WWDG_CFR_W_2 4743 #define WWDG_CFR_W3 WWDG_CFR_W_3 4744 #define WWDG_CFR_W4 WWDG_CFR_W_4 4745 #define WWDG_CFR_W5 WWDG_CFR_W_5 4746 #define WWDG_CFR_W6 WWDG_CFR_W_6 4747 4748 #define WWDG_CFR_WDGTB_Pos (7U) 4749 #define WWDG_CFR_WDGTB_Msk (0x3UL << WWDG_CFR_WDGTB_Pos) /*!< 0x00000180 */ 4750 #define WWDG_CFR_WDGTB WWDG_CFR_WDGTB_Msk /*!< WDGTB[1:0] bits (Timer Base) */ 4751 #define WWDG_CFR_WDGTB_0 (0x1UL << WWDG_CFR_WDGTB_Pos) /*!< 0x00000080 */ 4752 #define WWDG_CFR_WDGTB_1 (0x2UL << WWDG_CFR_WDGTB_Pos) /*!< 0x00000100 */ 4753 4754 /* Legacy defines */ 4755 #define WWDG_CFR_WDGTB0 WWDG_CFR_WDGTB_0 4756 #define WWDG_CFR_WDGTB1 WWDG_CFR_WDGTB_1 4757 4758 #define WWDG_CFR_EWI_Pos (9U) 4759 #define WWDG_CFR_EWI_Msk (0x1UL << WWDG_CFR_EWI_Pos) /*!< 0x00000200 */ 4760 #define WWDG_CFR_EWI WWDG_CFR_EWI_Msk /*!< Early Wakeup Interrupt */ 4761 4762 /******************* Bit definition for WWDG_SR register ********************/ 4763 #define WWDG_SR_EWIF_Pos (0U) 4764 #define WWDG_SR_EWIF_Msk (0x1UL << WWDG_SR_EWIF_Pos) /*!< 0x00000001 */ 4765 #define WWDG_SR_EWIF WWDG_SR_EWIF_Msk /*!< Early Wakeup Interrupt Flag */ 4766 4767 4768 4769 /******************************************************************************/ 4770 /* */ 4771 /* Serial Peripheral Interface */ 4772 /* */ 4773 /******************************************************************************/ 4774 4775 /******************* Bit definition for SPI_CR1 register ********************/ 4776 #define SPI_CR1_CPHA_Pos (0U) 4777 #define SPI_CR1_CPHA_Msk (0x1UL << SPI_CR1_CPHA_Pos) /*!< 0x00000001 */ 4778 #define SPI_CR1_CPHA SPI_CR1_CPHA_Msk /*!< Clock Phase */ 4779 #define SPI_CR1_CPOL_Pos (1U) 4780 #define SPI_CR1_CPOL_Msk (0x1UL << SPI_CR1_CPOL_Pos) /*!< 0x00000002 */ 4781 #define SPI_CR1_CPOL SPI_CR1_CPOL_Msk /*!< Clock Polarity */ 4782 #define SPI_CR1_MSTR_Pos (2U) 4783 #define SPI_CR1_MSTR_Msk (0x1UL << SPI_CR1_MSTR_Pos) /*!< 0x00000004 */ 4784 #define SPI_CR1_MSTR SPI_CR1_MSTR_Msk /*!< Master Selection */ 4785 4786 #define SPI_CR1_BR_Pos (3U) 4787 #define SPI_CR1_BR_Msk (0x7UL << SPI_CR1_BR_Pos) /*!< 0x00000038 */ 4788 #define SPI_CR1_BR SPI_CR1_BR_Msk /*!< BR[2:0] bits (Baud Rate Control) */ 4789 #define SPI_CR1_BR_0 (0x1UL << SPI_CR1_BR_Pos) /*!< 0x00000008 */ 4790 #define SPI_CR1_BR_1 (0x2UL << SPI_CR1_BR_Pos) /*!< 0x00000010 */ 4791 #define SPI_CR1_BR_2 (0x4UL << SPI_CR1_BR_Pos) /*!< 0x00000020 */ 4792 4793 #define SPI_CR1_SPE_Pos (6U) 4794 #define SPI_CR1_SPE_Msk (0x1UL << SPI_CR1_SPE_Pos) /*!< 0x00000040 */ 4795 #define SPI_CR1_SPE SPI_CR1_SPE_Msk /*!< SPI Enable */ 4796 #define SPI_CR1_LSBFIRST_Pos (7U) 4797 #define SPI_CR1_LSBFIRST_Msk (0x1UL << SPI_CR1_LSBFIRST_Pos) /*!< 0x00000080 */ 4798 #define SPI_CR1_LSBFIRST SPI_CR1_LSBFIRST_Msk /*!< Frame Format */ 4799 #define SPI_CR1_SSI_Pos (8U) 4800 #define SPI_CR1_SSI_Msk (0x1UL << SPI_CR1_SSI_Pos) /*!< 0x00000100 */ 4801 #define SPI_CR1_SSI SPI_CR1_SSI_Msk /*!< Internal slave select */ 4802 #define SPI_CR1_SSM_Pos (9U) 4803 #define SPI_CR1_SSM_Msk (0x1UL << SPI_CR1_SSM_Pos) /*!< 0x00000200 */ 4804 #define SPI_CR1_SSM SPI_CR1_SSM_Msk /*!< Software slave management */ 4805 #define SPI_CR1_RXONLY_Pos (10U) 4806 #define SPI_CR1_RXONLY_Msk (0x1UL << SPI_CR1_RXONLY_Pos) /*!< 0x00000400 */ 4807 #define SPI_CR1_RXONLY SPI_CR1_RXONLY_Msk /*!< Receive only */ 4808 #define SPI_CR1_DFF_Pos (11U) 4809 #define SPI_CR1_DFF_Msk (0x1UL << SPI_CR1_DFF_Pos) /*!< 0x00000800 */ 4810 #define SPI_CR1_DFF SPI_CR1_DFF_Msk /*!< Data Frame Format */ 4811 #define SPI_CR1_CRCNEXT_Pos (12U) 4812 #define SPI_CR1_CRCNEXT_Msk (0x1UL << SPI_CR1_CRCNEXT_Pos) /*!< 0x00001000 */ 4813 #define SPI_CR1_CRCNEXT SPI_CR1_CRCNEXT_Msk /*!< Transmit CRC next */ 4814 #define SPI_CR1_CRCEN_Pos (13U) 4815 #define SPI_CR1_CRCEN_Msk (0x1UL << SPI_CR1_CRCEN_Pos) /*!< 0x00002000 */ 4816 #define SPI_CR1_CRCEN SPI_CR1_CRCEN_Msk /*!< Hardware CRC calculation enable */ 4817 #define SPI_CR1_BIDIOE_Pos (14U) 4818 #define SPI_CR1_BIDIOE_Msk (0x1UL << SPI_CR1_BIDIOE_Pos) /*!< 0x00004000 */ 4819 #define SPI_CR1_BIDIOE SPI_CR1_BIDIOE_Msk /*!< Output enable in bidirectional mode */ 4820 #define SPI_CR1_BIDIMODE_Pos (15U) 4821 #define SPI_CR1_BIDIMODE_Msk (0x1UL << SPI_CR1_BIDIMODE_Pos) /*!< 0x00008000 */ 4822 #define SPI_CR1_BIDIMODE SPI_CR1_BIDIMODE_Msk /*!< Bidirectional data mode enable */ 4823 4824 /******************* Bit definition for SPI_CR2 register ********************/ 4825 #define SPI_CR2_RXDMAEN_Pos (0U) 4826 #define SPI_CR2_RXDMAEN_Msk (0x1UL << SPI_CR2_RXDMAEN_Pos) /*!< 0x00000001 */ 4827 #define SPI_CR2_RXDMAEN SPI_CR2_RXDMAEN_Msk /*!< Rx Buffer DMA Enable */ 4828 #define SPI_CR2_TXDMAEN_Pos (1U) 4829 #define SPI_CR2_TXDMAEN_Msk (0x1UL << SPI_CR2_TXDMAEN_Pos) /*!< 0x00000002 */ 4830 #define SPI_CR2_TXDMAEN SPI_CR2_TXDMAEN_Msk /*!< Tx Buffer DMA Enable */ 4831 #define SPI_CR2_SSOE_Pos (2U) 4832 #define SPI_CR2_SSOE_Msk (0x1UL << SPI_CR2_SSOE_Pos) /*!< 0x00000004 */ 4833 #define SPI_CR2_SSOE SPI_CR2_SSOE_Msk /*!< SS Output Enable */ 4834 #define SPI_CR2_ERRIE_Pos (5U) 4835 #define SPI_CR2_ERRIE_Msk (0x1UL << SPI_CR2_ERRIE_Pos) /*!< 0x00000020 */ 4836 #define SPI_CR2_ERRIE SPI_CR2_ERRIE_Msk /*!< Error Interrupt Enable */ 4837 #define SPI_CR2_RXNEIE_Pos (6U) 4838 #define SPI_CR2_RXNEIE_Msk (0x1UL << SPI_CR2_RXNEIE_Pos) /*!< 0x00000040 */ 4839 #define SPI_CR2_RXNEIE SPI_CR2_RXNEIE_Msk /*!< RX buffer Not Empty Interrupt Enable */ 4840 #define SPI_CR2_TXEIE_Pos (7U) 4841 #define SPI_CR2_TXEIE_Msk (0x1UL << SPI_CR2_TXEIE_Pos) /*!< 0x00000080 */ 4842 #define SPI_CR2_TXEIE SPI_CR2_TXEIE_Msk /*!< Tx buffer Empty Interrupt Enable */ 4843 4844 /******************** Bit definition for SPI_SR register ********************/ 4845 #define SPI_SR_RXNE_Pos (0U) 4846 #define SPI_SR_RXNE_Msk (0x1UL << SPI_SR_RXNE_Pos) /*!< 0x00000001 */ 4847 #define SPI_SR_RXNE SPI_SR_RXNE_Msk /*!< Receive buffer Not Empty */ 4848 #define SPI_SR_TXE_Pos (1U) 4849 #define SPI_SR_TXE_Msk (0x1UL << SPI_SR_TXE_Pos) /*!< 0x00000002 */ 4850 #define SPI_SR_TXE SPI_SR_TXE_Msk /*!< Transmit buffer Empty */ 4851 #define SPI_SR_CHSIDE_Pos (2U) 4852 #define SPI_SR_CHSIDE_Msk (0x1UL << SPI_SR_CHSIDE_Pos) /*!< 0x00000004 */ 4853 #define SPI_SR_CHSIDE SPI_SR_CHSIDE_Msk /*!< Channel side */ 4854 #define SPI_SR_UDR_Pos (3U) 4855 #define SPI_SR_UDR_Msk (0x1UL << SPI_SR_UDR_Pos) /*!< 0x00000008 */ 4856 #define SPI_SR_UDR SPI_SR_UDR_Msk /*!< Underrun flag */ 4857 #define SPI_SR_CRCERR_Pos (4U) 4858 #define SPI_SR_CRCERR_Msk (0x1UL << SPI_SR_CRCERR_Pos) /*!< 0x00000010 */ 4859 #define SPI_SR_CRCERR SPI_SR_CRCERR_Msk /*!< CRC Error flag */ 4860 #define SPI_SR_MODF_Pos (5U) 4861 #define SPI_SR_MODF_Msk (0x1UL << SPI_SR_MODF_Pos) /*!< 0x00000020 */ 4862 #define SPI_SR_MODF SPI_SR_MODF_Msk /*!< Mode fault */ 4863 #define SPI_SR_OVR_Pos (6U) 4864 #define SPI_SR_OVR_Msk (0x1UL << SPI_SR_OVR_Pos) /*!< 0x00000040 */ 4865 #define SPI_SR_OVR SPI_SR_OVR_Msk /*!< Overrun flag */ 4866 #define SPI_SR_BSY_Pos (7U) 4867 #define SPI_SR_BSY_Msk (0x1UL << SPI_SR_BSY_Pos) /*!< 0x00000080 */ 4868 #define SPI_SR_BSY SPI_SR_BSY_Msk /*!< Busy flag */ 4869 4870 /******************** Bit definition for SPI_DR register ********************/ 4871 #define SPI_DR_DR_Pos (0U) 4872 #define SPI_DR_DR_Msk (0xFFFFUL << SPI_DR_DR_Pos) /*!< 0x0000FFFF */ 4873 #define SPI_DR_DR SPI_DR_DR_Msk /*!< Data Register */ 4874 4875 /******************* Bit definition for SPI_CRCPR register ******************/ 4876 #define SPI_CRCPR_CRCPOLY_Pos (0U) 4877 #define SPI_CRCPR_CRCPOLY_Msk (0xFFFFUL << SPI_CRCPR_CRCPOLY_Pos) /*!< 0x0000FFFF */ 4878 #define SPI_CRCPR_CRCPOLY SPI_CRCPR_CRCPOLY_Msk /*!< CRC polynomial register */ 4879 4880 /****************** Bit definition for SPI_RXCRCR register ******************/ 4881 #define SPI_RXCRCR_RXCRC_Pos (0U) 4882 #define SPI_RXCRCR_RXCRC_Msk (0xFFFFUL << SPI_RXCRCR_RXCRC_Pos) /*!< 0x0000FFFF */ 4883 #define SPI_RXCRCR_RXCRC SPI_RXCRCR_RXCRC_Msk /*!< Rx CRC Register */ 4884 4885 /****************** Bit definition for SPI_TXCRCR register ******************/ 4886 #define SPI_TXCRCR_TXCRC_Pos (0U) 4887 #define SPI_TXCRCR_TXCRC_Msk (0xFFFFUL << SPI_TXCRCR_TXCRC_Pos) /*!< 0x0000FFFF */ 4888 #define SPI_TXCRCR_TXCRC SPI_TXCRCR_TXCRC_Msk /*!< Tx CRC Register */ 4889 4890 4891 /******************************************************************************/ 4892 /* */ 4893 /* Inter-integrated Circuit Interface */ 4894 /* */ 4895 /******************************************************************************/ 4896 4897 /******************* Bit definition for I2C_CR1 register ********************/ 4898 #define I2C_CR1_PE_Pos (0U) 4899 #define I2C_CR1_PE_Msk (0x1UL << I2C_CR1_PE_Pos) /*!< 0x00000001 */ 4900 #define I2C_CR1_PE I2C_CR1_PE_Msk /*!< Peripheral Enable */ 4901 #define I2C_CR1_SMBUS_Pos (1U) 4902 #define I2C_CR1_SMBUS_Msk (0x1UL << I2C_CR1_SMBUS_Pos) /*!< 0x00000002 */ 4903 #define I2C_CR1_SMBUS I2C_CR1_SMBUS_Msk /*!< SMBus Mode */ 4904 #define I2C_CR1_SMBTYPE_Pos (3U) 4905 #define I2C_CR1_SMBTYPE_Msk (0x1UL << I2C_CR1_SMBTYPE_Pos) /*!< 0x00000008 */ 4906 #define I2C_CR1_SMBTYPE I2C_CR1_SMBTYPE_Msk /*!< SMBus Type */ 4907 #define I2C_CR1_ENARP_Pos (4U) 4908 #define I2C_CR1_ENARP_Msk (0x1UL << I2C_CR1_ENARP_Pos) /*!< 0x00000010 */ 4909 #define I2C_CR1_ENARP I2C_CR1_ENARP_Msk /*!< ARP Enable */ 4910 #define I2C_CR1_ENPEC_Pos (5U) 4911 #define I2C_CR1_ENPEC_Msk (0x1UL << I2C_CR1_ENPEC_Pos) /*!< 0x00000020 */ 4912 #define I2C_CR1_ENPEC I2C_CR1_ENPEC_Msk /*!< PEC Enable */ 4913 #define I2C_CR1_ENGC_Pos (6U) 4914 #define I2C_CR1_ENGC_Msk (0x1UL << I2C_CR1_ENGC_Pos) /*!< 0x00000040 */ 4915 #define I2C_CR1_ENGC I2C_CR1_ENGC_Msk /*!< General Call Enable */ 4916 #define I2C_CR1_NOSTRETCH_Pos (7U) 4917 #define I2C_CR1_NOSTRETCH_Msk (0x1UL << I2C_CR1_NOSTRETCH_Pos) /*!< 0x00000080 */ 4918 #define I2C_CR1_NOSTRETCH I2C_CR1_NOSTRETCH_Msk /*!< Clock Stretching Disable (Slave mode) */ 4919 #define I2C_CR1_START_Pos (8U) 4920 #define I2C_CR1_START_Msk (0x1UL << I2C_CR1_START_Pos) /*!< 0x00000100 */ 4921 #define I2C_CR1_START I2C_CR1_START_Msk /*!< Start Generation */ 4922 #define I2C_CR1_STOP_Pos (9U) 4923 #define I2C_CR1_STOP_Msk (0x1UL << I2C_CR1_STOP_Pos) /*!< 0x00000200 */ 4924 #define I2C_CR1_STOP I2C_CR1_STOP_Msk /*!< Stop Generation */ 4925 #define I2C_CR1_ACK_Pos (10U) 4926 #define I2C_CR1_ACK_Msk (0x1UL << I2C_CR1_ACK_Pos) /*!< 0x00000400 */ 4927 #define I2C_CR1_ACK I2C_CR1_ACK_Msk /*!< Acknowledge Enable */ 4928 #define I2C_CR1_POS_Pos (11U) 4929 #define I2C_CR1_POS_Msk (0x1UL << I2C_CR1_POS_Pos) /*!< 0x00000800 */ 4930 #define I2C_CR1_POS I2C_CR1_POS_Msk /*!< Acknowledge/PEC Position (for data reception) */ 4931 #define I2C_CR1_PEC_Pos (12U) 4932 #define I2C_CR1_PEC_Msk (0x1UL << I2C_CR1_PEC_Pos) /*!< 0x00001000 */ 4933 #define I2C_CR1_PEC I2C_CR1_PEC_Msk /*!< Packet Error Checking */ 4934 #define I2C_CR1_ALERT_Pos (13U) 4935 #define I2C_CR1_ALERT_Msk (0x1UL << I2C_CR1_ALERT_Pos) /*!< 0x00002000 */ 4936 #define I2C_CR1_ALERT I2C_CR1_ALERT_Msk /*!< SMBus Alert */ 4937 #define I2C_CR1_SWRST_Pos (15U) 4938 #define I2C_CR1_SWRST_Msk (0x1UL << I2C_CR1_SWRST_Pos) /*!< 0x00008000 */ 4939 #define I2C_CR1_SWRST I2C_CR1_SWRST_Msk /*!< Software Reset */ 4940 4941 /******************* Bit definition for I2C_CR2 register ********************/ 4942 #define I2C_CR2_FREQ_Pos (0U) 4943 #define I2C_CR2_FREQ_Msk (0x3FUL << I2C_CR2_FREQ_Pos) /*!< 0x0000003F */ 4944 #define I2C_CR2_FREQ I2C_CR2_FREQ_Msk /*!< FREQ[5:0] bits (Peripheral Clock Frequency) */ 4945 #define I2C_CR2_FREQ_0 (0x01UL << I2C_CR2_FREQ_Pos) /*!< 0x00000001 */ 4946 #define I2C_CR2_FREQ_1 (0x02UL << I2C_CR2_FREQ_Pos) /*!< 0x00000002 */ 4947 #define I2C_CR2_FREQ_2 (0x04UL << I2C_CR2_FREQ_Pos) /*!< 0x00000004 */ 4948 #define I2C_CR2_FREQ_3 (0x08UL << I2C_CR2_FREQ_Pos) /*!< 0x00000008 */ 4949 #define I2C_CR2_FREQ_4 (0x10UL << I2C_CR2_FREQ_Pos) /*!< 0x00000010 */ 4950 #define I2C_CR2_FREQ_5 (0x20UL << I2C_CR2_FREQ_Pos) /*!< 0x00000020 */ 4951 4952 #define I2C_CR2_ITERREN_Pos (8U) 4953 #define I2C_CR2_ITERREN_Msk (0x1UL << I2C_CR2_ITERREN_Pos) /*!< 0x00000100 */ 4954 #define I2C_CR2_ITERREN I2C_CR2_ITERREN_Msk /*!< Error Interrupt Enable */ 4955 #define I2C_CR2_ITEVTEN_Pos (9U) 4956 #define I2C_CR2_ITEVTEN_Msk (0x1UL << I2C_CR2_ITEVTEN_Pos) /*!< 0x00000200 */ 4957 #define I2C_CR2_ITEVTEN I2C_CR2_ITEVTEN_Msk /*!< Event Interrupt Enable */ 4958 #define I2C_CR2_ITBUFEN_Pos (10U) 4959 #define I2C_CR2_ITBUFEN_Msk (0x1UL << I2C_CR2_ITBUFEN_Pos) /*!< 0x00000400 */ 4960 #define I2C_CR2_ITBUFEN I2C_CR2_ITBUFEN_Msk /*!< Buffer Interrupt Enable */ 4961 #define I2C_CR2_DMAEN_Pos (11U) 4962 #define I2C_CR2_DMAEN_Msk (0x1UL << I2C_CR2_DMAEN_Pos) /*!< 0x00000800 */ 4963 #define I2C_CR2_DMAEN I2C_CR2_DMAEN_Msk /*!< DMA Requests Enable */ 4964 #define I2C_CR2_LAST_Pos (12U) 4965 #define I2C_CR2_LAST_Msk (0x1UL << I2C_CR2_LAST_Pos) /*!< 0x00001000 */ 4966 #define I2C_CR2_LAST I2C_CR2_LAST_Msk /*!< DMA Last Transfer */ 4967 4968 /******************* Bit definition for I2C_OAR1 register *******************/ 4969 #define I2C_OAR1_ADD1_7 0x000000FEU /*!< Interface Address */ 4970 #define I2C_OAR1_ADD8_9 0x00000300U /*!< Interface Address */ 4971 4972 #define I2C_OAR1_ADD0_Pos (0U) 4973 #define I2C_OAR1_ADD0_Msk (0x1UL << I2C_OAR1_ADD0_Pos) /*!< 0x00000001 */ 4974 #define I2C_OAR1_ADD0 I2C_OAR1_ADD0_Msk /*!< Bit 0 */ 4975 #define I2C_OAR1_ADD1_Pos (1U) 4976 #define I2C_OAR1_ADD1_Msk (0x1UL << I2C_OAR1_ADD1_Pos) /*!< 0x00000002 */ 4977 #define I2C_OAR1_ADD1 I2C_OAR1_ADD1_Msk /*!< Bit 1 */ 4978 #define I2C_OAR1_ADD2_Pos (2U) 4979 #define I2C_OAR1_ADD2_Msk (0x1UL << I2C_OAR1_ADD2_Pos) /*!< 0x00000004 */ 4980 #define I2C_OAR1_ADD2 I2C_OAR1_ADD2_Msk /*!< Bit 2 */ 4981 #define I2C_OAR1_ADD3_Pos (3U) 4982 #define I2C_OAR1_ADD3_Msk (0x1UL << I2C_OAR1_ADD3_Pos) /*!< 0x00000008 */ 4983 #define I2C_OAR1_ADD3 I2C_OAR1_ADD3_Msk /*!< Bit 3 */ 4984 #define I2C_OAR1_ADD4_Pos (4U) 4985 #define I2C_OAR1_ADD4_Msk (0x1UL << I2C_OAR1_ADD4_Pos) /*!< 0x00000010 */ 4986 #define I2C_OAR1_ADD4 I2C_OAR1_ADD4_Msk /*!< Bit 4 */ 4987 #define I2C_OAR1_ADD5_Pos (5U) 4988 #define I2C_OAR1_ADD5_Msk (0x1UL << I2C_OAR1_ADD5_Pos) /*!< 0x00000020 */ 4989 #define I2C_OAR1_ADD5 I2C_OAR1_ADD5_Msk /*!< Bit 5 */ 4990 #define I2C_OAR1_ADD6_Pos (6U) 4991 #define I2C_OAR1_ADD6_Msk (0x1UL << I2C_OAR1_ADD6_Pos) /*!< 0x00000040 */ 4992 #define I2C_OAR1_ADD6 I2C_OAR1_ADD6_Msk /*!< Bit 6 */ 4993 #define I2C_OAR1_ADD7_Pos (7U) 4994 #define I2C_OAR1_ADD7_Msk (0x1UL << I2C_OAR1_ADD7_Pos) /*!< 0x00000080 */ 4995 #define I2C_OAR1_ADD7 I2C_OAR1_ADD7_Msk /*!< Bit 7 */ 4996 #define I2C_OAR1_ADD8_Pos (8U) 4997 #define I2C_OAR1_ADD8_Msk (0x1UL << I2C_OAR1_ADD8_Pos) /*!< 0x00000100 */ 4998 #define I2C_OAR1_ADD8 I2C_OAR1_ADD8_Msk /*!< Bit 8 */ 4999 #define I2C_OAR1_ADD9_Pos (9U) 5000 #define I2C_OAR1_ADD9_Msk (0x1UL << I2C_OAR1_ADD9_Pos) /*!< 0x00000200 */ 5001 #define I2C_OAR1_ADD9 I2C_OAR1_ADD9_Msk /*!< Bit 9 */ 5002 5003 #define I2C_OAR1_ADDMODE_Pos (15U) 5004 #define I2C_OAR1_ADDMODE_Msk (0x1UL << I2C_OAR1_ADDMODE_Pos) /*!< 0x00008000 */ 5005 #define I2C_OAR1_ADDMODE I2C_OAR1_ADDMODE_Msk /*!< Addressing Mode (Slave mode) */ 5006 5007 /******************* Bit definition for I2C_OAR2 register *******************/ 5008 #define I2C_OAR2_ENDUAL_Pos (0U) 5009 #define I2C_OAR2_ENDUAL_Msk (0x1UL << I2C_OAR2_ENDUAL_Pos) /*!< 0x00000001 */ 5010 #define I2C_OAR2_ENDUAL I2C_OAR2_ENDUAL_Msk /*!< Dual addressing mode enable */ 5011 #define I2C_OAR2_ADD2_Pos (1U) 5012 #define I2C_OAR2_ADD2_Msk (0x7FUL << I2C_OAR2_ADD2_Pos) /*!< 0x000000FE */ 5013 #define I2C_OAR2_ADD2 I2C_OAR2_ADD2_Msk /*!< Interface address */ 5014 5015 /******************** Bit definition for I2C_DR register ********************/ 5016 #define I2C_DR_DR_Pos (0U) 5017 #define I2C_DR_DR_Msk (0xFFUL << I2C_DR_DR_Pos) /*!< 0x000000FF */ 5018 #define I2C_DR_DR I2C_DR_DR_Msk /*!< 8-bit Data Register */ 5019 5020 /******************* Bit definition for I2C_SR1 register ********************/ 5021 #define I2C_SR1_SB_Pos (0U) 5022 #define I2C_SR1_SB_Msk (0x1UL << I2C_SR1_SB_Pos) /*!< 0x00000001 */ 5023 #define I2C_SR1_SB I2C_SR1_SB_Msk /*!< Start Bit (Master mode) */ 5024 #define I2C_SR1_ADDR_Pos (1U) 5025 #define I2C_SR1_ADDR_Msk (0x1UL << I2C_SR1_ADDR_Pos) /*!< 0x00000002 */ 5026 #define I2C_SR1_ADDR I2C_SR1_ADDR_Msk /*!< Address sent (master mode)/matched (slave mode) */ 5027 #define I2C_SR1_BTF_Pos (2U) 5028 #define I2C_SR1_BTF_Msk (0x1UL << I2C_SR1_BTF_Pos) /*!< 0x00000004 */ 5029 #define I2C_SR1_BTF I2C_SR1_BTF_Msk /*!< Byte Transfer Finished */ 5030 #define I2C_SR1_ADD10_Pos (3U) 5031 #define I2C_SR1_ADD10_Msk (0x1UL << I2C_SR1_ADD10_Pos) /*!< 0x00000008 */ 5032 #define I2C_SR1_ADD10 I2C_SR1_ADD10_Msk /*!< 10-bit header sent (Master mode) */ 5033 #define I2C_SR1_STOPF_Pos (4U) 5034 #define I2C_SR1_STOPF_Msk (0x1UL << I2C_SR1_STOPF_Pos) /*!< 0x00000010 */ 5035 #define I2C_SR1_STOPF I2C_SR1_STOPF_Msk /*!< Stop detection (Slave mode) */ 5036 #define I2C_SR1_RXNE_Pos (6U) 5037 #define I2C_SR1_RXNE_Msk (0x1UL << I2C_SR1_RXNE_Pos) /*!< 0x00000040 */ 5038 #define I2C_SR1_RXNE I2C_SR1_RXNE_Msk /*!< Data Register not Empty (receivers) */ 5039 #define I2C_SR1_TXE_Pos (7U) 5040 #define I2C_SR1_TXE_Msk (0x1UL << I2C_SR1_TXE_Pos) /*!< 0x00000080 */ 5041 #define I2C_SR1_TXE I2C_SR1_TXE_Msk /*!< Data Register Empty (transmitters) */ 5042 #define I2C_SR1_BERR_Pos (8U) 5043 #define I2C_SR1_BERR_Msk (0x1UL << I2C_SR1_BERR_Pos) /*!< 0x00000100 */ 5044 #define I2C_SR1_BERR I2C_SR1_BERR_Msk /*!< Bus Error */ 5045 #define I2C_SR1_ARLO_Pos (9U) 5046 #define I2C_SR1_ARLO_Msk (0x1UL << I2C_SR1_ARLO_Pos) /*!< 0x00000200 */ 5047 #define I2C_SR1_ARLO I2C_SR1_ARLO_Msk /*!< Arbitration Lost (master mode) */ 5048 #define I2C_SR1_AF_Pos (10U) 5049 #define I2C_SR1_AF_Msk (0x1UL << I2C_SR1_AF_Pos) /*!< 0x00000400 */ 5050 #define I2C_SR1_AF I2C_SR1_AF_Msk /*!< Acknowledge Failure */ 5051 #define I2C_SR1_OVR_Pos (11U) 5052 #define I2C_SR1_OVR_Msk (0x1UL << I2C_SR1_OVR_Pos) /*!< 0x00000800 */ 5053 #define I2C_SR1_OVR I2C_SR1_OVR_Msk /*!< Overrun/Underrun */ 5054 #define I2C_SR1_PECERR_Pos (12U) 5055 #define I2C_SR1_PECERR_Msk (0x1UL << I2C_SR1_PECERR_Pos) /*!< 0x00001000 */ 5056 #define I2C_SR1_PECERR I2C_SR1_PECERR_Msk /*!< PEC Error in reception */ 5057 #define I2C_SR1_TIMEOUT_Pos (14U) 5058 #define I2C_SR1_TIMEOUT_Msk (0x1UL << I2C_SR1_TIMEOUT_Pos) /*!< 0x00004000 */ 5059 #define I2C_SR1_TIMEOUT I2C_SR1_TIMEOUT_Msk /*!< Timeout or Tlow Error */ 5060 #define I2C_SR1_SMBALERT_Pos (15U) 5061 #define I2C_SR1_SMBALERT_Msk (0x1UL << I2C_SR1_SMBALERT_Pos) /*!< 0x00008000 */ 5062 #define I2C_SR1_SMBALERT I2C_SR1_SMBALERT_Msk /*!< SMBus Alert */ 5063 5064 /******************* Bit definition for I2C_SR2 register ********************/ 5065 #define I2C_SR2_MSL_Pos (0U) 5066 #define I2C_SR2_MSL_Msk (0x1UL << I2C_SR2_MSL_Pos) /*!< 0x00000001 */ 5067 #define I2C_SR2_MSL I2C_SR2_MSL_Msk /*!< Master/Slave */ 5068 #define I2C_SR2_BUSY_Pos (1U) 5069 #define I2C_SR2_BUSY_Msk (0x1UL << I2C_SR2_BUSY_Pos) /*!< 0x00000002 */ 5070 #define I2C_SR2_BUSY I2C_SR2_BUSY_Msk /*!< Bus Busy */ 5071 #define I2C_SR2_TRA_Pos (2U) 5072 #define I2C_SR2_TRA_Msk (0x1UL << I2C_SR2_TRA_Pos) /*!< 0x00000004 */ 5073 #define I2C_SR2_TRA I2C_SR2_TRA_Msk /*!< Transmitter/Receiver */ 5074 #define I2C_SR2_GENCALL_Pos (4U) 5075 #define I2C_SR2_GENCALL_Msk (0x1UL << I2C_SR2_GENCALL_Pos) /*!< 0x00000010 */ 5076 #define I2C_SR2_GENCALL I2C_SR2_GENCALL_Msk /*!< General Call Address (Slave mode) */ 5077 #define I2C_SR2_SMBDEFAULT_Pos (5U) 5078 #define I2C_SR2_SMBDEFAULT_Msk (0x1UL << I2C_SR2_SMBDEFAULT_Pos) /*!< 0x00000020 */ 5079 #define I2C_SR2_SMBDEFAULT I2C_SR2_SMBDEFAULT_Msk /*!< SMBus Device Default Address (Slave mode) */ 5080 #define I2C_SR2_SMBHOST_Pos (6U) 5081 #define I2C_SR2_SMBHOST_Msk (0x1UL << I2C_SR2_SMBHOST_Pos) /*!< 0x00000040 */ 5082 #define I2C_SR2_SMBHOST I2C_SR2_SMBHOST_Msk /*!< SMBus Host Header (Slave mode) */ 5083 #define I2C_SR2_DUALF_Pos (7U) 5084 #define I2C_SR2_DUALF_Msk (0x1UL << I2C_SR2_DUALF_Pos) /*!< 0x00000080 */ 5085 #define I2C_SR2_DUALF I2C_SR2_DUALF_Msk /*!< Dual Flag (Slave mode) */ 5086 #define I2C_SR2_PEC_Pos (8U) 5087 #define I2C_SR2_PEC_Msk (0xFFUL << I2C_SR2_PEC_Pos) /*!< 0x0000FF00 */ 5088 #define I2C_SR2_PEC I2C_SR2_PEC_Msk /*!< Packet Error Checking Register */ 5089 5090 /******************* Bit definition for I2C_CCR register ********************/ 5091 #define I2C_CCR_CCR_Pos (0U) 5092 #define I2C_CCR_CCR_Msk (0xFFFUL << I2C_CCR_CCR_Pos) /*!< 0x00000FFF */ 5093 #define I2C_CCR_CCR I2C_CCR_CCR_Msk /*!< Clock Control Register in Fast/Standard mode (Master mode) */ 5094 #define I2C_CCR_DUTY_Pos (14U) 5095 #define I2C_CCR_DUTY_Msk (0x1UL << I2C_CCR_DUTY_Pos) /*!< 0x00004000 */ 5096 #define I2C_CCR_DUTY I2C_CCR_DUTY_Msk /*!< Fast Mode Duty Cycle */ 5097 #define I2C_CCR_FS_Pos (15U) 5098 #define I2C_CCR_FS_Msk (0x1UL << I2C_CCR_FS_Pos) /*!< 0x00008000 */ 5099 #define I2C_CCR_FS I2C_CCR_FS_Msk /*!< I2C Master Mode Selection */ 5100 5101 /****************** Bit definition for I2C_TRISE register *******************/ 5102 #define I2C_TRISE_TRISE_Pos (0U) 5103 #define I2C_TRISE_TRISE_Msk (0x3FUL << I2C_TRISE_TRISE_Pos) /*!< 0x0000003F */ 5104 #define I2C_TRISE_TRISE I2C_TRISE_TRISE_Msk /*!< Maximum Rise Time in Fast/Standard mode (Master mode) */ 5105 5106 /******************************************************************************/ 5107 /* */ 5108 /* Universal Synchronous Asynchronous Receiver Transmitter */ 5109 /* */ 5110 /******************************************************************************/ 5111 5112 /******************* Bit definition for USART_SR register *******************/ 5113 #define USART_SR_PE_Pos (0U) 5114 #define USART_SR_PE_Msk (0x1UL << USART_SR_PE_Pos) /*!< 0x00000001 */ 5115 #define USART_SR_PE USART_SR_PE_Msk /*!< Parity Error */ 5116 #define USART_SR_FE_Pos (1U) 5117 #define USART_SR_FE_Msk (0x1UL << USART_SR_FE_Pos) /*!< 0x00000002 */ 5118 #define USART_SR_FE USART_SR_FE_Msk /*!< Framing Error */ 5119 #define USART_SR_NE_Pos (2U) 5120 #define USART_SR_NE_Msk (0x1UL << USART_SR_NE_Pos) /*!< 0x00000004 */ 5121 #define USART_SR_NE USART_SR_NE_Msk /*!< Noise Error Flag */ 5122 #define USART_SR_ORE_Pos (3U) 5123 #define USART_SR_ORE_Msk (0x1UL << USART_SR_ORE_Pos) /*!< 0x00000008 */ 5124 #define USART_SR_ORE USART_SR_ORE_Msk /*!< OverRun Error */ 5125 #define USART_SR_IDLE_Pos (4U) 5126 #define USART_SR_IDLE_Msk (0x1UL << USART_SR_IDLE_Pos) /*!< 0x00000010 */ 5127 #define USART_SR_IDLE USART_SR_IDLE_Msk /*!< IDLE line detected */ 5128 #define USART_SR_RXNE_Pos (5U) 5129 #define USART_SR_RXNE_Msk (0x1UL << USART_SR_RXNE_Pos) /*!< 0x00000020 */ 5130 #define USART_SR_RXNE USART_SR_RXNE_Msk /*!< Read Data Register Not Empty */ 5131 #define USART_SR_TC_Pos (6U) 5132 #define USART_SR_TC_Msk (0x1UL << USART_SR_TC_Pos) /*!< 0x00000040 */ 5133 #define USART_SR_TC USART_SR_TC_Msk /*!< Transmission Complete */ 5134 #define USART_SR_TXE_Pos (7U) 5135 #define USART_SR_TXE_Msk (0x1UL << USART_SR_TXE_Pos) /*!< 0x00000080 */ 5136 #define USART_SR_TXE USART_SR_TXE_Msk /*!< Transmit Data Register Empty */ 5137 #define USART_SR_LBD_Pos (8U) 5138 #define USART_SR_LBD_Msk (0x1UL << USART_SR_LBD_Pos) /*!< 0x00000100 */ 5139 #define USART_SR_LBD USART_SR_LBD_Msk /*!< LIN Break Detection Flag */ 5140 #define USART_SR_CTS_Pos (9U) 5141 #define USART_SR_CTS_Msk (0x1UL << USART_SR_CTS_Pos) /*!< 0x00000200 */ 5142 #define USART_SR_CTS USART_SR_CTS_Msk /*!< CTS Flag */ 5143 5144 /******************* Bit definition for USART_DR register *******************/ 5145 #define USART_DR_DR_Pos (0U) 5146 #define USART_DR_DR_Msk (0x1FFUL << USART_DR_DR_Pos) /*!< 0x000001FF */ 5147 #define USART_DR_DR USART_DR_DR_Msk /*!< Data value */ 5148 5149 /****************** Bit definition for USART_BRR register *******************/ 5150 #define USART_BRR_DIV_Fraction_Pos (0U) 5151 #define USART_BRR_DIV_Fraction_Msk (0xFUL << USART_BRR_DIV_Fraction_Pos) /*!< 0x0000000F */ 5152 #define USART_BRR_DIV_Fraction USART_BRR_DIV_Fraction_Msk /*!< Fraction of USARTDIV */ 5153 #define USART_BRR_DIV_Mantissa_Pos (4U) 5154 #define USART_BRR_DIV_Mantissa_Msk (0xFFFUL << USART_BRR_DIV_Mantissa_Pos) /*!< 0x0000FFF0 */ 5155 #define USART_BRR_DIV_Mantissa USART_BRR_DIV_Mantissa_Msk /*!< Mantissa of USARTDIV */ 5156 5157 /****************** Bit definition for USART_CR1 register *******************/ 5158 #define USART_CR1_SBK_Pos (0U) 5159 #define USART_CR1_SBK_Msk (0x1UL << USART_CR1_SBK_Pos) /*!< 0x00000001 */ 5160 #define USART_CR1_SBK USART_CR1_SBK_Msk /*!< Send Break */ 5161 #define USART_CR1_RWU_Pos (1U) 5162 #define USART_CR1_RWU_Msk (0x1UL << USART_CR1_RWU_Pos) /*!< 0x00000002 */ 5163 #define USART_CR1_RWU USART_CR1_RWU_Msk /*!< Receiver wakeup */ 5164 #define USART_CR1_RE_Pos (2U) 5165 #define USART_CR1_RE_Msk (0x1UL << USART_CR1_RE_Pos) /*!< 0x00000004 */ 5166 #define USART_CR1_RE USART_CR1_RE_Msk /*!< Receiver Enable */ 5167 #define USART_CR1_TE_Pos (3U) 5168 #define USART_CR1_TE_Msk (0x1UL << USART_CR1_TE_Pos) /*!< 0x00000008 */ 5169 #define USART_CR1_TE USART_CR1_TE_Msk /*!< Transmitter Enable */ 5170 #define USART_CR1_IDLEIE_Pos (4U) 5171 #define USART_CR1_IDLEIE_Msk (0x1UL << USART_CR1_IDLEIE_Pos) /*!< 0x00000010 */ 5172 #define USART_CR1_IDLEIE USART_CR1_IDLEIE_Msk /*!< IDLE Interrupt Enable */ 5173 #define USART_CR1_RXNEIE_Pos (5U) 5174 #define USART_CR1_RXNEIE_Msk (0x1UL << USART_CR1_RXNEIE_Pos) /*!< 0x00000020 */ 5175 #define USART_CR1_RXNEIE USART_CR1_RXNEIE_Msk /*!< RXNE Interrupt Enable */ 5176 #define USART_CR1_TCIE_Pos (6U) 5177 #define USART_CR1_TCIE_Msk (0x1UL << USART_CR1_TCIE_Pos) /*!< 0x00000040 */ 5178 #define USART_CR1_TCIE USART_CR1_TCIE_Msk /*!< Transmission Complete Interrupt Enable */ 5179 #define USART_CR1_TXEIE_Pos (7U) 5180 #define USART_CR1_TXEIE_Msk (0x1UL << USART_CR1_TXEIE_Pos) /*!< 0x00000080 */ 5181 #define USART_CR1_TXEIE USART_CR1_TXEIE_Msk /*!< PE Interrupt Enable */ 5182 #define USART_CR1_PEIE_Pos (8U) 5183 #define USART_CR1_PEIE_Msk (0x1UL << USART_CR1_PEIE_Pos) /*!< 0x00000100 */ 5184 #define USART_CR1_PEIE USART_CR1_PEIE_Msk /*!< PE Interrupt Enable */ 5185 #define USART_CR1_PS_Pos (9U) 5186 #define USART_CR1_PS_Msk (0x1UL << USART_CR1_PS_Pos) /*!< 0x00000200 */ 5187 #define USART_CR1_PS USART_CR1_PS_Msk /*!< Parity Selection */ 5188 #define USART_CR1_PCE_Pos (10U) 5189 #define USART_CR1_PCE_Msk (0x1UL << USART_CR1_PCE_Pos) /*!< 0x00000400 */ 5190 #define USART_CR1_PCE USART_CR1_PCE_Msk /*!< Parity Control Enable */ 5191 #define USART_CR1_WAKE_Pos (11U) 5192 #define USART_CR1_WAKE_Msk (0x1UL << USART_CR1_WAKE_Pos) /*!< 0x00000800 */ 5193 #define USART_CR1_WAKE USART_CR1_WAKE_Msk /*!< Wakeup method */ 5194 #define USART_CR1_M_Pos (12U) 5195 #define USART_CR1_M_Msk (0x1UL << USART_CR1_M_Pos) /*!< 0x00001000 */ 5196 #define USART_CR1_M USART_CR1_M_Msk /*!< Word length */ 5197 #define USART_CR1_UE_Pos (13U) 5198 #define USART_CR1_UE_Msk (0x1UL << USART_CR1_UE_Pos) /*!< 0x00002000 */ 5199 #define USART_CR1_UE USART_CR1_UE_Msk /*!< USART Enable */ 5200 #define USART_CR1_OVER8_Pos (15U) 5201 #define USART_CR1_OVER8_Msk (0x1UL << USART_CR1_OVER8_Pos) /*!< 0x00008000 */ 5202 #define USART_CR1_OVER8 USART_CR1_OVER8_Msk /*!< USART Oversmapling 8-bits */ 5203 5204 /****************** Bit definition for USART_CR2 register *******************/ 5205 #define USART_CR2_ADD_Pos (0U) 5206 #define USART_CR2_ADD_Msk (0xFUL << USART_CR2_ADD_Pos) /*!< 0x0000000F */ 5207 #define USART_CR2_ADD USART_CR2_ADD_Msk /*!< Address of the USART node */ 5208 #define USART_CR2_LBDL_Pos (5U) 5209 #define USART_CR2_LBDL_Msk (0x1UL << USART_CR2_LBDL_Pos) /*!< 0x00000020 */ 5210 #define USART_CR2_LBDL USART_CR2_LBDL_Msk /*!< LIN Break Detection Length */ 5211 #define USART_CR2_LBDIE_Pos (6U) 5212 #define USART_CR2_LBDIE_Msk (0x1UL << USART_CR2_LBDIE_Pos) /*!< 0x00000040 */ 5213 #define USART_CR2_LBDIE USART_CR2_LBDIE_Msk /*!< LIN Break Detection Interrupt Enable */ 5214 #define USART_CR2_LBCL_Pos (8U) 5215 #define USART_CR2_LBCL_Msk (0x1UL << USART_CR2_LBCL_Pos) /*!< 0x00000100 */ 5216 #define USART_CR2_LBCL USART_CR2_LBCL_Msk /*!< Last Bit Clock pulse */ 5217 #define USART_CR2_CPHA_Pos (9U) 5218 #define USART_CR2_CPHA_Msk (0x1UL << USART_CR2_CPHA_Pos) /*!< 0x00000200 */ 5219 #define USART_CR2_CPHA USART_CR2_CPHA_Msk /*!< Clock Phase */ 5220 #define USART_CR2_CPOL_Pos (10U) 5221 #define USART_CR2_CPOL_Msk (0x1UL << USART_CR2_CPOL_Pos) /*!< 0x00000400 */ 5222 #define USART_CR2_CPOL USART_CR2_CPOL_Msk /*!< Clock Polarity */ 5223 #define USART_CR2_CLKEN_Pos (11U) 5224 #define USART_CR2_CLKEN_Msk (0x1UL << USART_CR2_CLKEN_Pos) /*!< 0x00000800 */ 5225 #define USART_CR2_CLKEN USART_CR2_CLKEN_Msk /*!< Clock Enable */ 5226 5227 #define USART_CR2_STOP_Pos (12U) 5228 #define USART_CR2_STOP_Msk (0x3UL << USART_CR2_STOP_Pos) /*!< 0x00003000 */ 5229 #define USART_CR2_STOP USART_CR2_STOP_Msk /*!< STOP[1:0] bits (STOP bits) */ 5230 #define USART_CR2_STOP_0 (0x1UL << USART_CR2_STOP_Pos) /*!< 0x00001000 */ 5231 #define USART_CR2_STOP_1 (0x2UL << USART_CR2_STOP_Pos) /*!< 0x00002000 */ 5232 5233 #define USART_CR2_LINEN_Pos (14U) 5234 #define USART_CR2_LINEN_Msk (0x1UL << USART_CR2_LINEN_Pos) /*!< 0x00004000 */ 5235 #define USART_CR2_LINEN USART_CR2_LINEN_Msk /*!< LIN mode enable */ 5236 5237 /****************** Bit definition for USART_CR3 register *******************/ 5238 #define USART_CR3_EIE_Pos (0U) 5239 #define USART_CR3_EIE_Msk (0x1UL << USART_CR3_EIE_Pos) /*!< 0x00000001 */ 5240 #define USART_CR3_EIE USART_CR3_EIE_Msk /*!< Error Interrupt Enable */ 5241 #define USART_CR3_IREN_Pos (1U) 5242 #define USART_CR3_IREN_Msk (0x1UL << USART_CR3_IREN_Pos) /*!< 0x00000002 */ 5243 #define USART_CR3_IREN USART_CR3_IREN_Msk /*!< IrDA mode Enable */ 5244 #define USART_CR3_IRLP_Pos (2U) 5245 #define USART_CR3_IRLP_Msk (0x1UL << USART_CR3_IRLP_Pos) /*!< 0x00000004 */ 5246 #define USART_CR3_IRLP USART_CR3_IRLP_Msk /*!< IrDA Low-Power */ 5247 #define USART_CR3_HDSEL_Pos (3U) 5248 #define USART_CR3_HDSEL_Msk (0x1UL << USART_CR3_HDSEL_Pos) /*!< 0x00000008 */ 5249 #define USART_CR3_HDSEL USART_CR3_HDSEL_Msk /*!< Half-Duplex Selection */ 5250 #define USART_CR3_NACK_Pos (4U) 5251 #define USART_CR3_NACK_Msk (0x1UL << USART_CR3_NACK_Pos) /*!< 0x00000010 */ 5252 #define USART_CR3_NACK USART_CR3_NACK_Msk /*!< Smartcard NACK enable */ 5253 #define USART_CR3_SCEN_Pos (5U) 5254 #define USART_CR3_SCEN_Msk (0x1UL << USART_CR3_SCEN_Pos) /*!< 0x00000020 */ 5255 #define USART_CR3_SCEN USART_CR3_SCEN_Msk /*!< Smartcard mode enable */ 5256 #define USART_CR3_DMAR_Pos (6U) 5257 #define USART_CR3_DMAR_Msk (0x1UL << USART_CR3_DMAR_Pos) /*!< 0x00000040 */ 5258 #define USART_CR3_DMAR USART_CR3_DMAR_Msk /*!< DMA Enable Receiver */ 5259 #define USART_CR3_DMAT_Pos (7U) 5260 #define USART_CR3_DMAT_Msk (0x1UL << USART_CR3_DMAT_Pos) /*!< 0x00000080 */ 5261 #define USART_CR3_DMAT USART_CR3_DMAT_Msk /*!< DMA Enable Transmitter */ 5262 #define USART_CR3_RTSE_Pos (8U) 5263 #define USART_CR3_RTSE_Msk (0x1UL << USART_CR3_RTSE_Pos) /*!< 0x00000100 */ 5264 #define USART_CR3_RTSE USART_CR3_RTSE_Msk /*!< RTS Enable */ 5265 #define USART_CR3_CTSE_Pos (9U) 5266 #define USART_CR3_CTSE_Msk (0x1UL << USART_CR3_CTSE_Pos) /*!< 0x00000200 */ 5267 #define USART_CR3_CTSE USART_CR3_CTSE_Msk /*!< CTS Enable */ 5268 #define USART_CR3_CTSIE_Pos (10U) 5269 #define USART_CR3_CTSIE_Msk (0x1UL << USART_CR3_CTSIE_Pos) /*!< 0x00000400 */ 5270 #define USART_CR3_CTSIE USART_CR3_CTSIE_Msk /*!< CTS Interrupt Enable */ 5271 #define USART_CR3_ONEBIT_Pos (11U) 5272 #define USART_CR3_ONEBIT_Msk (0x1UL << USART_CR3_ONEBIT_Pos) /*!< 0x00000800 */ 5273 #define USART_CR3_ONEBIT USART_CR3_ONEBIT_Msk /*!< One Bit method */ 5274 5275 /****************** Bit definition for USART_GTPR register ******************/ 5276 #define USART_GTPR_PSC_Pos (0U) 5277 #define USART_GTPR_PSC_Msk (0xFFUL << USART_GTPR_PSC_Pos) /*!< 0x000000FF */ 5278 #define USART_GTPR_PSC USART_GTPR_PSC_Msk /*!< PSC[7:0] bits (Prescaler value) */ 5279 #define USART_GTPR_PSC_0 (0x01UL << USART_GTPR_PSC_Pos) /*!< 0x00000001 */ 5280 #define USART_GTPR_PSC_1 (0x02UL << USART_GTPR_PSC_Pos) /*!< 0x00000002 */ 5281 #define USART_GTPR_PSC_2 (0x04UL << USART_GTPR_PSC_Pos) /*!< 0x00000004 */ 5282 #define USART_GTPR_PSC_3 (0x08UL << USART_GTPR_PSC_Pos) /*!< 0x00000008 */ 5283 #define USART_GTPR_PSC_4 (0x10UL << USART_GTPR_PSC_Pos) /*!< 0x00000010 */ 5284 #define USART_GTPR_PSC_5 (0x20UL << USART_GTPR_PSC_Pos) /*!< 0x00000020 */ 5285 #define USART_GTPR_PSC_6 (0x40UL << USART_GTPR_PSC_Pos) /*!< 0x00000040 */ 5286 #define USART_GTPR_PSC_7 (0x80UL << USART_GTPR_PSC_Pos) /*!< 0x00000080 */ 5287 5288 #define USART_GTPR_GT_Pos (8U) 5289 #define USART_GTPR_GT_Msk (0xFFUL << USART_GTPR_GT_Pos) /*!< 0x0000FF00 */ 5290 #define USART_GTPR_GT USART_GTPR_GT_Msk /*!< Guard time value */ 5291 5292 /******************************************************************************/ 5293 /* */ 5294 /* Debug MCU */ 5295 /* */ 5296 /******************************************************************************/ 5297 5298 /**************** Bit definition for DBGMCU_IDCODE register *****************/ 5299 #define DBGMCU_IDCODE_DEV_ID_Pos (0U) 5300 #define DBGMCU_IDCODE_DEV_ID_Msk (0xFFFUL << DBGMCU_IDCODE_DEV_ID_Pos) /*!< 0x00000FFF */ 5301 #define DBGMCU_IDCODE_DEV_ID DBGMCU_IDCODE_DEV_ID_Msk /*!< Device Identifier */ 5302 5303 #define DBGMCU_IDCODE_REV_ID_Pos (16U) 5304 #define DBGMCU_IDCODE_REV_ID_Msk (0xFFFFUL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0xFFFF0000 */ 5305 #define DBGMCU_IDCODE_REV_ID DBGMCU_IDCODE_REV_ID_Msk /*!< REV_ID[15:0] bits (Revision Identifier) */ 5306 #define DBGMCU_IDCODE_REV_ID_0 (0x0001UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00010000 */ 5307 #define DBGMCU_IDCODE_REV_ID_1 (0x0002UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00020000 */ 5308 #define DBGMCU_IDCODE_REV_ID_2 (0x0004UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00040000 */ 5309 #define DBGMCU_IDCODE_REV_ID_3 (0x0008UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00080000 */ 5310 #define DBGMCU_IDCODE_REV_ID_4 (0x0010UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00100000 */ 5311 #define DBGMCU_IDCODE_REV_ID_5 (0x0020UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00200000 */ 5312 #define DBGMCU_IDCODE_REV_ID_6 (0x0040UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00400000 */ 5313 #define DBGMCU_IDCODE_REV_ID_7 (0x0080UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x00800000 */ 5314 #define DBGMCU_IDCODE_REV_ID_8 (0x0100UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x01000000 */ 5315 #define DBGMCU_IDCODE_REV_ID_9 (0x0200UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x02000000 */ 5316 #define DBGMCU_IDCODE_REV_ID_10 (0x0400UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x04000000 */ 5317 #define DBGMCU_IDCODE_REV_ID_11 (0x0800UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x08000000 */ 5318 #define DBGMCU_IDCODE_REV_ID_12 (0x1000UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x10000000 */ 5319 #define DBGMCU_IDCODE_REV_ID_13 (0x2000UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x20000000 */ 5320 #define DBGMCU_IDCODE_REV_ID_14 (0x4000UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x40000000 */ 5321 #define DBGMCU_IDCODE_REV_ID_15 (0x8000UL << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0x80000000 */ 5322 5323 /****************** Bit definition for DBGMCU_CR register *******************/ 5324 #define DBGMCU_CR_DBG_SLEEP_Pos (0U) 5325 #define DBGMCU_CR_DBG_SLEEP_Msk (0x1UL << DBGMCU_CR_DBG_SLEEP_Pos) /*!< 0x00000001 */ 5326 #define DBGMCU_CR_DBG_SLEEP DBGMCU_CR_DBG_SLEEP_Msk /*!< Debug Sleep Mode */ 5327 #define DBGMCU_CR_DBG_STOP_Pos (1U) 5328 #define DBGMCU_CR_DBG_STOP_Msk (0x1UL << DBGMCU_CR_DBG_STOP_Pos) /*!< 0x00000002 */ 5329 #define DBGMCU_CR_DBG_STOP DBGMCU_CR_DBG_STOP_Msk /*!< Debug Stop Mode */ 5330 #define DBGMCU_CR_DBG_STANDBY_Pos (2U) 5331 #define DBGMCU_CR_DBG_STANDBY_Msk (0x1UL << DBGMCU_CR_DBG_STANDBY_Pos) /*!< 0x00000004 */ 5332 #define DBGMCU_CR_DBG_STANDBY DBGMCU_CR_DBG_STANDBY_Msk /*!< Debug Standby mode */ 5333 #define DBGMCU_CR_TRACE_IOEN_Pos (5U) 5334 #define DBGMCU_CR_TRACE_IOEN_Msk (0x1UL << DBGMCU_CR_TRACE_IOEN_Pos) /*!< 0x00000020 */ 5335 #define DBGMCU_CR_TRACE_IOEN DBGMCU_CR_TRACE_IOEN_Msk /*!< Trace Pin Assignment Control */ 5336 5337 #define DBGMCU_CR_TRACE_MODE_Pos (6U) 5338 #define DBGMCU_CR_TRACE_MODE_Msk (0x3UL << DBGMCU_CR_TRACE_MODE_Pos) /*!< 0x000000C0 */ 5339 #define DBGMCU_CR_TRACE_MODE DBGMCU_CR_TRACE_MODE_Msk /*!< TRACE_MODE[1:0] bits (Trace Pin Assignment Control) */ 5340 #define DBGMCU_CR_TRACE_MODE_0 (0x1UL << DBGMCU_CR_TRACE_MODE_Pos) /*!< 0x00000040 */ 5341 #define DBGMCU_CR_TRACE_MODE_1 (0x2UL << DBGMCU_CR_TRACE_MODE_Pos) /*!< 0x00000080 */ 5342 5343 #define DBGMCU_CR_DBG_IWDG_STOP_Pos (8U) 5344 #define DBGMCU_CR_DBG_IWDG_STOP_Msk (0x1UL << DBGMCU_CR_DBG_IWDG_STOP_Pos) /*!< 0x00000100 */ 5345 #define DBGMCU_CR_DBG_IWDG_STOP DBGMCU_CR_DBG_IWDG_STOP_Msk /*!< Debug Independent Watchdog stopped when Core is halted */ 5346 #define DBGMCU_CR_DBG_WWDG_STOP_Pos (9U) 5347 #define DBGMCU_CR_DBG_WWDG_STOP_Msk (0x1UL << DBGMCU_CR_DBG_WWDG_STOP_Pos) /*!< 0x00000200 */ 5348 #define DBGMCU_CR_DBG_WWDG_STOP DBGMCU_CR_DBG_WWDG_STOP_Msk /*!< Debug Window Watchdog stopped when Core is halted */ 5349 #define DBGMCU_CR_DBG_TIM1_STOP_Pos (10U) 5350 #define DBGMCU_CR_DBG_TIM1_STOP_Msk (0x1UL << DBGMCU_CR_DBG_TIM1_STOP_Pos) /*!< 0x00000400 */ 5351 #define DBGMCU_CR_DBG_TIM1_STOP DBGMCU_CR_DBG_TIM1_STOP_Msk /*!< TIM1 counter stopped when core is halted */ 5352 #define DBGMCU_CR_DBG_TIM2_STOP_Pos (11U) 5353 #define DBGMCU_CR_DBG_TIM2_STOP_Msk (0x1UL << DBGMCU_CR_DBG_TIM2_STOP_Pos) /*!< 0x00000800 */ 5354 #define DBGMCU_CR_DBG_TIM2_STOP DBGMCU_CR_DBG_TIM2_STOP_Msk /*!< TIM2 counter stopped when core is halted */ 5355 #define DBGMCU_CR_DBG_TIM3_STOP_Pos (12U) 5356 #define DBGMCU_CR_DBG_TIM3_STOP_Msk (0x1UL << DBGMCU_CR_DBG_TIM3_STOP_Pos) /*!< 0x00001000 */ 5357 #define DBGMCU_CR_DBG_TIM3_STOP DBGMCU_CR_DBG_TIM3_STOP_Msk /*!< TIM3 counter stopped when core is halted */ 5358 #define DBGMCU_CR_DBG_TIM4_STOP_Pos (13U) 5359 #define DBGMCU_CR_DBG_TIM4_STOP_Msk (0x1UL << DBGMCU_CR_DBG_TIM4_STOP_Pos) /*!< 0x00002000 */ 5360 #define DBGMCU_CR_DBG_TIM4_STOP DBGMCU_CR_DBG_TIM4_STOP_Msk /*!< TIM4 counter stopped when core is halted */ 5361 #define DBGMCU_CR_DBG_I2C1_SMBUS_TIMEOUT_Pos (15U) 5362 #define DBGMCU_CR_DBG_I2C1_SMBUS_TIMEOUT_Msk (0x1UL << DBGMCU_CR_DBG_I2C1_SMBUS_TIMEOUT_Pos) /*!< 0x00008000 */ 5363 #define DBGMCU_CR_DBG_I2C1_SMBUS_TIMEOUT DBGMCU_CR_DBG_I2C1_SMBUS_TIMEOUT_Msk /*!< SMBUS timeout mode stopped when Core is halted */ 5364 #define DBGMCU_CR_DBG_I2C2_SMBUS_TIMEOUT_Pos (16U) 5365 #define DBGMCU_CR_DBG_I2C2_SMBUS_TIMEOUT_Msk (0x1UL << DBGMCU_CR_DBG_I2C2_SMBUS_TIMEOUT_Pos) /*!< 0x00010000 */ 5366 #define DBGMCU_CR_DBG_I2C2_SMBUS_TIMEOUT DBGMCU_CR_DBG_I2C2_SMBUS_TIMEOUT_Msk /*!< SMBUS timeout mode stopped when Core is halted */ 5367 #define DBGMCU_CR_DBG_TIM15_STOP_Pos (22U) 5368 #define DBGMCU_CR_DBG_TIM15_STOP_Msk (0x1UL << DBGMCU_CR_DBG_TIM15_STOP_Pos) /*!< 0x00400000 */ 5369 #define DBGMCU_CR_DBG_TIM15_STOP DBGMCU_CR_DBG_TIM15_STOP_Msk /*!< Debug TIM15 stopped when Core is halted */ 5370 #define DBGMCU_CR_DBG_TIM16_STOP_Pos (23U) 5371 #define DBGMCU_CR_DBG_TIM16_STOP_Msk (0x1UL << DBGMCU_CR_DBG_TIM16_STOP_Pos) /*!< 0x00800000 */ 5372 #define DBGMCU_CR_DBG_TIM16_STOP DBGMCU_CR_DBG_TIM16_STOP_Msk /*!< Debug TIM16 stopped when Core is halted */ 5373 #define DBGMCU_CR_DBG_TIM17_STOP_Pos (24U) 5374 #define DBGMCU_CR_DBG_TIM17_STOP_Msk (0x1UL << DBGMCU_CR_DBG_TIM17_STOP_Pos) /*!< 0x01000000 */ 5375 #define DBGMCU_CR_DBG_TIM17_STOP DBGMCU_CR_DBG_TIM17_STOP_Msk /*!< Debug TIM17 stopped when Core is halted */ 5376 5377 /******************************************************************************/ 5378 /* */ 5379 /* FLASH and Option Bytes Registers */ 5380 /* */ 5381 /******************************************************************************/ 5382 /******************* Bit definition for FLASH_ACR register ******************/ 5383 #define FLASH_ACR_HLFCYA_Pos (3U) 5384 #define FLASH_ACR_HLFCYA_Msk (0x1UL << FLASH_ACR_HLFCYA_Pos) /*!< 0x00000008 */ 5385 #define FLASH_ACR_HLFCYA FLASH_ACR_HLFCYA_Msk /*!< Flash Half Cycle Access Enable */ 5386 5387 /****************** Bit definition for FLASH_KEYR register ******************/ 5388 #define FLASH_KEYR_FKEYR_Pos (0U) 5389 #define FLASH_KEYR_FKEYR_Msk (0xFFFFFFFFUL << FLASH_KEYR_FKEYR_Pos) /*!< 0xFFFFFFFF */ 5390 #define FLASH_KEYR_FKEYR FLASH_KEYR_FKEYR_Msk /*!< FPEC Key */ 5391 5392 #define RDP_KEY_Pos (0U) 5393 #define RDP_KEY_Msk (0xA5UL << RDP_KEY_Pos) /*!< 0x000000A5 */ 5394 #define RDP_KEY RDP_KEY_Msk /*!< RDP Key */ 5395 #define FLASH_KEY1_Pos (0U) 5396 #define FLASH_KEY1_Msk (0x45670123UL << FLASH_KEY1_Pos) /*!< 0x45670123 */ 5397 #define FLASH_KEY1 FLASH_KEY1_Msk /*!< FPEC Key1 */ 5398 #define FLASH_KEY2_Pos (0U) 5399 #define FLASH_KEY2_Msk (0xCDEF89ABUL << FLASH_KEY2_Pos) /*!< 0xCDEF89AB */ 5400 #define FLASH_KEY2 FLASH_KEY2_Msk /*!< FPEC Key2 */ 5401 5402 /***************** Bit definition for FLASH_OPTKEYR register ****************/ 5403 #define FLASH_OPTKEYR_OPTKEYR_Pos (0U) 5404 #define FLASH_OPTKEYR_OPTKEYR_Msk (0xFFFFFFFFUL << FLASH_OPTKEYR_OPTKEYR_Pos) /*!< 0xFFFFFFFF */ 5405 #define FLASH_OPTKEYR_OPTKEYR FLASH_OPTKEYR_OPTKEYR_Msk /*!< Option Byte Key */ 5406 5407 #define FLASH_OPTKEY1 FLASH_KEY1 /*!< Option Byte Key1 */ 5408 #define FLASH_OPTKEY2 FLASH_KEY2 /*!< Option Byte Key2 */ 5409 5410 /****************** Bit definition for FLASH_SR register ********************/ 5411 #define FLASH_SR_BSY_Pos (0U) 5412 #define FLASH_SR_BSY_Msk (0x1UL << FLASH_SR_BSY_Pos) /*!< 0x00000001 */ 5413 #define FLASH_SR_BSY FLASH_SR_BSY_Msk /*!< Busy */ 5414 #define FLASH_SR_PGERR_Pos (2U) 5415 #define FLASH_SR_PGERR_Msk (0x1UL << FLASH_SR_PGERR_Pos) /*!< 0x00000004 */ 5416 #define FLASH_SR_PGERR FLASH_SR_PGERR_Msk /*!< Programming Error */ 5417 #define FLASH_SR_WRPRTERR_Pos (4U) 5418 #define FLASH_SR_WRPRTERR_Msk (0x1UL << FLASH_SR_WRPRTERR_Pos) /*!< 0x00000010 */ 5419 #define FLASH_SR_WRPRTERR FLASH_SR_WRPRTERR_Msk /*!< Write Protection Error */ 5420 #define FLASH_SR_EOP_Pos (5U) 5421 #define FLASH_SR_EOP_Msk (0x1UL << FLASH_SR_EOP_Pos) /*!< 0x00000020 */ 5422 #define FLASH_SR_EOP FLASH_SR_EOP_Msk /*!< End of operation */ 5423 5424 /******************* Bit definition for FLASH_CR register *******************/ 5425 #define FLASH_CR_PG_Pos (0U) 5426 #define FLASH_CR_PG_Msk (0x1UL << FLASH_CR_PG_Pos) /*!< 0x00000001 */ 5427 #define FLASH_CR_PG FLASH_CR_PG_Msk /*!< Programming */ 5428 #define FLASH_CR_PER_Pos (1U) 5429 #define FLASH_CR_PER_Msk (0x1UL << FLASH_CR_PER_Pos) /*!< 0x00000002 */ 5430 #define FLASH_CR_PER FLASH_CR_PER_Msk /*!< Page Erase */ 5431 #define FLASH_CR_MER_Pos (2U) 5432 #define FLASH_CR_MER_Msk (0x1UL << FLASH_CR_MER_Pos) /*!< 0x00000004 */ 5433 #define FLASH_CR_MER FLASH_CR_MER_Msk /*!< Mass Erase */ 5434 #define FLASH_CR_OPTPG_Pos (4U) 5435 #define FLASH_CR_OPTPG_Msk (0x1UL << FLASH_CR_OPTPG_Pos) /*!< 0x00000010 */ 5436 #define FLASH_CR_OPTPG FLASH_CR_OPTPG_Msk /*!< Option Byte Programming */ 5437 #define FLASH_CR_OPTER_Pos (5U) 5438 #define FLASH_CR_OPTER_Msk (0x1UL << FLASH_CR_OPTER_Pos) /*!< 0x00000020 */ 5439 #define FLASH_CR_OPTER FLASH_CR_OPTER_Msk /*!< Option Byte Erase */ 5440 #define FLASH_CR_STRT_Pos (6U) 5441 #define FLASH_CR_STRT_Msk (0x1UL << FLASH_CR_STRT_Pos) /*!< 0x00000040 */ 5442 #define FLASH_CR_STRT FLASH_CR_STRT_Msk /*!< Start */ 5443 #define FLASH_CR_LOCK_Pos (7U) 5444 #define FLASH_CR_LOCK_Msk (0x1UL << FLASH_CR_LOCK_Pos) /*!< 0x00000080 */ 5445 #define FLASH_CR_LOCK FLASH_CR_LOCK_Msk /*!< Lock */ 5446 #define FLASH_CR_OPTWRE_Pos (9U) 5447 #define FLASH_CR_OPTWRE_Msk (0x1UL << FLASH_CR_OPTWRE_Pos) /*!< 0x00000200 */ 5448 #define FLASH_CR_OPTWRE FLASH_CR_OPTWRE_Msk /*!< Option Bytes Write Enable */ 5449 #define FLASH_CR_ERRIE_Pos (10U) 5450 #define FLASH_CR_ERRIE_Msk (0x1UL << FLASH_CR_ERRIE_Pos) /*!< 0x00000400 */ 5451 #define FLASH_CR_ERRIE FLASH_CR_ERRIE_Msk /*!< Error Interrupt Enable */ 5452 #define FLASH_CR_EOPIE_Pos (12U) 5453 #define FLASH_CR_EOPIE_Msk (0x1UL << FLASH_CR_EOPIE_Pos) /*!< 0x00001000 */ 5454 #define FLASH_CR_EOPIE FLASH_CR_EOPIE_Msk /*!< End of operation interrupt enable */ 5455 5456 /******************* Bit definition for FLASH_AR register *******************/ 5457 #define FLASH_AR_FAR_Pos (0U) 5458 #define FLASH_AR_FAR_Msk (0xFFFFFFFFUL << FLASH_AR_FAR_Pos) /*!< 0xFFFFFFFF */ 5459 #define FLASH_AR_FAR FLASH_AR_FAR_Msk /*!< Flash Address */ 5460 5461 /****************** Bit definition for FLASH_OBR register *******************/ 5462 #define FLASH_OBR_OPTERR_Pos (0U) 5463 #define FLASH_OBR_OPTERR_Msk (0x1UL << FLASH_OBR_OPTERR_Pos) /*!< 0x00000001 */ 5464 #define FLASH_OBR_OPTERR FLASH_OBR_OPTERR_Msk /*!< Option Byte Error */ 5465 #define FLASH_OBR_RDPRT_Pos (1U) 5466 #define FLASH_OBR_RDPRT_Msk (0x1UL << FLASH_OBR_RDPRT_Pos) /*!< 0x00000002 */ 5467 #define FLASH_OBR_RDPRT FLASH_OBR_RDPRT_Msk /*!< Read protection */ 5468 5469 #define FLASH_OBR_IWDG_SW_Pos (2U) 5470 #define FLASH_OBR_IWDG_SW_Msk (0x1UL << FLASH_OBR_IWDG_SW_Pos) /*!< 0x00000004 */ 5471 #define FLASH_OBR_IWDG_SW FLASH_OBR_IWDG_SW_Msk /*!< IWDG SW */ 5472 #define FLASH_OBR_nRST_STOP_Pos (3U) 5473 #define FLASH_OBR_nRST_STOP_Msk (0x1UL << FLASH_OBR_nRST_STOP_Pos) /*!< 0x00000008 */ 5474 #define FLASH_OBR_nRST_STOP FLASH_OBR_nRST_STOP_Msk /*!< nRST_STOP */ 5475 #define FLASH_OBR_nRST_STDBY_Pos (4U) 5476 #define FLASH_OBR_nRST_STDBY_Msk (0x1UL << FLASH_OBR_nRST_STDBY_Pos) /*!< 0x00000010 */ 5477 #define FLASH_OBR_nRST_STDBY FLASH_OBR_nRST_STDBY_Msk /*!< nRST_STDBY */ 5478 #define FLASH_OBR_USER_Pos (2U) 5479 #define FLASH_OBR_USER_Msk (0x7UL << FLASH_OBR_USER_Pos) /*!< 0x0000001C */ 5480 #define FLASH_OBR_USER FLASH_OBR_USER_Msk /*!< User Option Bytes */ 5481 #define FLASH_OBR_DATA0_Pos (10U) 5482 #define FLASH_OBR_DATA0_Msk (0xFFUL << FLASH_OBR_DATA0_Pos) /*!< 0x0003FC00 */ 5483 #define FLASH_OBR_DATA0 FLASH_OBR_DATA0_Msk /*!< Data0 */ 5484 #define FLASH_OBR_DATA1_Pos (18U) 5485 #define FLASH_OBR_DATA1_Msk (0xFFUL << FLASH_OBR_DATA1_Pos) /*!< 0x03FC0000 */ 5486 #define FLASH_OBR_DATA1 FLASH_OBR_DATA1_Msk /*!< Data1 */ 5487 5488 /****************** Bit definition for FLASH_WRPR register ******************/ 5489 #define FLASH_WRPR_WRP_Pos (0U) 5490 #define FLASH_WRPR_WRP_Msk (0xFFFFFFFFUL << FLASH_WRPR_WRP_Pos) /*!< 0xFFFFFFFF */ 5491 #define FLASH_WRPR_WRP FLASH_WRPR_WRP_Msk /*!< Write Protect */ 5492 5493 /*----------------------------------------------------------------------------*/ 5494 5495 /****************** Bit definition for FLASH_RDP register *******************/ 5496 #define FLASH_RDP_RDP_Pos (0U) 5497 #define FLASH_RDP_RDP_Msk (0xFFUL << FLASH_RDP_RDP_Pos) /*!< 0x000000FF */ 5498 #define FLASH_RDP_RDP FLASH_RDP_RDP_Msk /*!< Read protection option byte */ 5499 #define FLASH_RDP_nRDP_Pos (8U) 5500 #define FLASH_RDP_nRDP_Msk (0xFFUL << FLASH_RDP_nRDP_Pos) /*!< 0x0000FF00 */ 5501 #define FLASH_RDP_nRDP FLASH_RDP_nRDP_Msk /*!< Read protection complemented option byte */ 5502 5503 /****************** Bit definition for FLASH_USER register ******************/ 5504 #define FLASH_USER_USER_Pos (16U) 5505 #define FLASH_USER_USER_Msk (0xFFUL << FLASH_USER_USER_Pos) /*!< 0x00FF0000 */ 5506 #define FLASH_USER_USER FLASH_USER_USER_Msk /*!< User option byte */ 5507 #define FLASH_USER_nUSER_Pos (24U) 5508 #define FLASH_USER_nUSER_Msk (0xFFUL << FLASH_USER_nUSER_Pos) /*!< 0xFF000000 */ 5509 #define FLASH_USER_nUSER FLASH_USER_nUSER_Msk /*!< User complemented option byte */ 5510 5511 /****************** Bit definition for FLASH_Data0 register *****************/ 5512 #define FLASH_DATA0_DATA0_Pos (0U) 5513 #define FLASH_DATA0_DATA0_Msk (0xFFUL << FLASH_DATA0_DATA0_Pos) /*!< 0x000000FF */ 5514 #define FLASH_DATA0_DATA0 FLASH_DATA0_DATA0_Msk /*!< User data storage option byte */ 5515 #define FLASH_DATA0_nDATA0_Pos (8U) 5516 #define FLASH_DATA0_nDATA0_Msk (0xFFUL << FLASH_DATA0_nDATA0_Pos) /*!< 0x0000FF00 */ 5517 #define FLASH_DATA0_nDATA0 FLASH_DATA0_nDATA0_Msk /*!< User data storage complemented option byte */ 5518 5519 /****************** Bit definition for FLASH_Data1 register *****************/ 5520 #define FLASH_DATA1_DATA1_Pos (16U) 5521 #define FLASH_DATA1_DATA1_Msk (0xFFUL << FLASH_DATA1_DATA1_Pos) /*!< 0x00FF0000 */ 5522 #define FLASH_DATA1_DATA1 FLASH_DATA1_DATA1_Msk /*!< User data storage option byte */ 5523 #define FLASH_DATA1_nDATA1_Pos (24U) 5524 #define FLASH_DATA1_nDATA1_Msk (0xFFUL << FLASH_DATA1_nDATA1_Pos) /*!< 0xFF000000 */ 5525 #define FLASH_DATA1_nDATA1 FLASH_DATA1_nDATA1_Msk /*!< User data storage complemented option byte */ 5526 5527 /****************** Bit definition for FLASH_WRP0 register ******************/ 5528 #define FLASH_WRP0_WRP0_Pos (0U) 5529 #define FLASH_WRP0_WRP0_Msk (0xFFUL << FLASH_WRP0_WRP0_Pos) /*!< 0x000000FF */ 5530 #define FLASH_WRP0_WRP0 FLASH_WRP0_WRP0_Msk /*!< Flash memory write protection option bytes */ 5531 #define FLASH_WRP0_nWRP0_Pos (8U) 5532 #define FLASH_WRP0_nWRP0_Msk (0xFFUL << FLASH_WRP0_nWRP0_Pos) /*!< 0x0000FF00 */ 5533 #define FLASH_WRP0_nWRP0 FLASH_WRP0_nWRP0_Msk /*!< Flash memory write protection complemented option bytes */ 5534 5535 /****************** Bit definition for FLASH_WRP1 register ******************/ 5536 #define FLASH_WRP1_WRP1_Pos (16U) 5537 #define FLASH_WRP1_WRP1_Msk (0xFFUL << FLASH_WRP1_WRP1_Pos) /*!< 0x00FF0000 */ 5538 #define FLASH_WRP1_WRP1 FLASH_WRP1_WRP1_Msk /*!< Flash memory write protection option bytes */ 5539 #define FLASH_WRP1_nWRP1_Pos (24U) 5540 #define FLASH_WRP1_nWRP1_Msk (0xFFUL << FLASH_WRP1_nWRP1_Pos) /*!< 0xFF000000 */ 5541 #define FLASH_WRP1_nWRP1 FLASH_WRP1_nWRP1_Msk /*!< Flash memory write protection complemented option bytes */ 5542 5543 /****************** Bit definition for FLASH_WRP2 register ******************/ 5544 #define FLASH_WRP2_WRP2_Pos (0U) 5545 #define FLASH_WRP2_WRP2_Msk (0xFFUL << FLASH_WRP2_WRP2_Pos) /*!< 0x000000FF */ 5546 #define FLASH_WRP2_WRP2 FLASH_WRP2_WRP2_Msk /*!< Flash memory write protection option bytes */ 5547 #define FLASH_WRP2_nWRP2_Pos (8U) 5548 #define FLASH_WRP2_nWRP2_Msk (0xFFUL << FLASH_WRP2_nWRP2_Pos) /*!< 0x0000FF00 */ 5549 #define FLASH_WRP2_nWRP2 FLASH_WRP2_nWRP2_Msk /*!< Flash memory write protection complemented option bytes */ 5550 5551 /****************** Bit definition for FLASH_WRP3 register ******************/ 5552 #define FLASH_WRP3_WRP3_Pos (16U) 5553 #define FLASH_WRP3_WRP3_Msk (0xFFUL << FLASH_WRP3_WRP3_Pos) /*!< 0x00FF0000 */ 5554 #define FLASH_WRP3_WRP3 FLASH_WRP3_WRP3_Msk /*!< Flash memory write protection option bytes */ 5555 #define FLASH_WRP3_nWRP3_Pos (24U) 5556 #define FLASH_WRP3_nWRP3_Msk (0xFFUL << FLASH_WRP3_nWRP3_Pos) /*!< 0xFF000000 */ 5557 #define FLASH_WRP3_nWRP3 FLASH_WRP3_nWRP3_Msk /*!< Flash memory write protection complemented option bytes */ 5558 5559 5560 5561 /** 5562 * @} 5563 */ 5564 5565 /** 5566 * @} 5567 */ 5568 5569 /** @addtogroup Exported_macro 5570 * @{ 5571 */ 5572 5573 /****************************** ADC Instances *********************************/ 5574 #define IS_ADC_ALL_INSTANCE(INSTANCE) (((INSTANCE) == ADC1)) 5575 5576 #define IS_ADC_COMMON_INSTANCE(INSTANCE) ((INSTANCE) == ADC1_COMMON) 5577 5578 #define IS_ADC_DMA_CAPABILITY_INSTANCE(INSTANCE) ((INSTANCE) == ADC1) 5579 5580 /****************************** CEC Instances *********************************/ 5581 #define IS_CEC_ALL_INSTANCE(INSTANCE) ((INSTANCE) == CEC) 5582 5583 /****************************** CRC Instances *********************************/ 5584 #define IS_CRC_ALL_INSTANCE(INSTANCE) ((INSTANCE) == CRC) 5585 5586 /****************************** DAC Instances *********************************/ 5587 #define IS_DAC_ALL_INSTANCE(INSTANCE) ((INSTANCE) == DAC1) 5588 5589 /****************************** DMA Instances *********************************/ 5590 #define IS_DMA_ALL_INSTANCE(INSTANCE) (((INSTANCE) == DMA1_Channel1) || \ 5591 ((INSTANCE) == DMA1_Channel2) || \ 5592 ((INSTANCE) == DMA1_Channel3) || \ 5593 ((INSTANCE) == DMA1_Channel4) || \ 5594 ((INSTANCE) == DMA1_Channel5) || \ 5595 ((INSTANCE) == DMA1_Channel6) || \ 5596 ((INSTANCE) == DMA1_Channel7)) 5597 5598 /******************************* GPIO Instances *******************************/ 5599 #define IS_GPIO_ALL_INSTANCE(INSTANCE) (((INSTANCE) == GPIOA) || \ 5600 ((INSTANCE) == GPIOB) || \ 5601 ((INSTANCE) == GPIOC) || \ 5602 ((INSTANCE) == GPIOD) || \ 5603 ((INSTANCE) == GPIOE)) 5604 5605 /**************************** GPIO Alternate Function Instances ***************/ 5606 #define IS_GPIO_AF_INSTANCE(INSTANCE) IS_GPIO_ALL_INSTANCE(INSTANCE) 5607 5608 /**************************** GPIO Lock Instances *****************************/ 5609 #define IS_GPIO_LOCK_INSTANCE(INSTANCE) IS_GPIO_ALL_INSTANCE(INSTANCE) 5610 5611 /******************************** I2C Instances *******************************/ 5612 #define IS_I2C_ALL_INSTANCE(INSTANCE) (((INSTANCE) == I2C1) || \ 5613 ((INSTANCE) == I2C2)) 5614 5615 /******************************* SMBUS Instances ******************************/ 5616 #define IS_SMBUS_ALL_INSTANCE IS_I2C_ALL_INSTANCE 5617 5618 /****************************** IWDG Instances ********************************/ 5619 #define IS_IWDG_ALL_INSTANCE(INSTANCE) ((INSTANCE) == IWDG) 5620 5621 /******************************** SPI Instances *******************************/ 5622 #define IS_SPI_ALL_INSTANCE(INSTANCE) (((INSTANCE) == SPI1) || \ 5623 ((INSTANCE) == SPI2)) 5624 5625 /****************************** START TIM Instances ***************************/ 5626 /****************************** TIM Instances *********************************/ 5627 #define IS_TIM_INSTANCE(INSTANCE)\ 5628 (((INSTANCE) == TIM1) || \ 5629 ((INSTANCE) == TIM2) || \ 5630 ((INSTANCE) == TIM3) || \ 5631 ((INSTANCE) == TIM4) || \ 5632 ((INSTANCE) == TIM6) || \ 5633 ((INSTANCE) == TIM7) || \ 5634 ((INSTANCE) == TIM15) || \ 5635 ((INSTANCE) == TIM16) || \ 5636 ((INSTANCE) == TIM17)) 5637 5638 #define IS_TIM_ADVANCED_INSTANCE(INSTANCE) ((INSTANCE) == TIM1) 5639 5640 #define IS_TIM_CC1_INSTANCE(INSTANCE)\ 5641 (((INSTANCE) == TIM1) || \ 5642 ((INSTANCE) == TIM2) || \ 5643 ((INSTANCE) == TIM3) || \ 5644 ((INSTANCE) == TIM4) || \ 5645 ((INSTANCE) == TIM15) || \ 5646 ((INSTANCE) == TIM16) || \ 5647 ((INSTANCE) == TIM17)) 5648 5649 #define IS_TIM_CC2_INSTANCE(INSTANCE)\ 5650 (((INSTANCE) == TIM1) || \ 5651 ((INSTANCE) == TIM2) || \ 5652 ((INSTANCE) == TIM3) || \ 5653 ((INSTANCE) == TIM4) || \ 5654 ((INSTANCE) == TIM15)) 5655 5656 #define IS_TIM_CC3_INSTANCE(INSTANCE)\ 5657 (((INSTANCE) == TIM1) || \ 5658 ((INSTANCE) == TIM2) || \ 5659 ((INSTANCE) == TIM3) || \ 5660 ((INSTANCE) == TIM4)) 5661 5662 #define IS_TIM_CC4_INSTANCE(INSTANCE)\ 5663 (((INSTANCE) == TIM1) || \ 5664 ((INSTANCE) == TIM2) || \ 5665 ((INSTANCE) == TIM3) || \ 5666 ((INSTANCE) == TIM4)) 5667 5668 #define IS_TIM_CLOCKSOURCE_ETRMODE1_INSTANCE(INSTANCE)\ 5669 (((INSTANCE) == TIM1) || \ 5670 ((INSTANCE) == TIM2) || \ 5671 ((INSTANCE) == TIM3) || \ 5672 ((INSTANCE) == TIM4)) 5673 5674 #define IS_TIM_CLOCKSOURCE_ETRMODE2_INSTANCE(INSTANCE)\ 5675 (((INSTANCE) == TIM1) || \ 5676 ((INSTANCE) == TIM2) || \ 5677 ((INSTANCE) == TIM3) || \ 5678 ((INSTANCE) == TIM4)) 5679 5680 #define IS_TIM_CLOCKSOURCE_TIX_INSTANCE(INSTANCE)\ 5681 (((INSTANCE) == TIM1) || \ 5682 ((INSTANCE) == TIM2) || \ 5683 ((INSTANCE) == TIM3) || \ 5684 ((INSTANCE) == TIM4) || \ 5685 ((INSTANCE) == TIM15)) 5686 5687 #define IS_TIM_CLOCKSOURCE_ITRX_INSTANCE(INSTANCE)\ 5688 (((INSTANCE) == TIM1) || \ 5689 ((INSTANCE) == TIM2) || \ 5690 ((INSTANCE) == TIM3) || \ 5691 ((INSTANCE) == TIM4) || \ 5692 ((INSTANCE) == TIM15)) 5693 5694 #define IS_TIM_OCXREF_CLEAR_INSTANCE(INSTANCE)\ 5695 (((INSTANCE) == TIM1) || \ 5696 ((INSTANCE) == TIM2) || \ 5697 ((INSTANCE) == TIM3) || \ 5698 ((INSTANCE) == TIM4)) 5699 5700 #define IS_TIM_ENCODER_INTERFACE_INSTANCE(INSTANCE)\ 5701 (((INSTANCE) == TIM1) || \ 5702 ((INSTANCE) == TIM2) || \ 5703 ((INSTANCE) == TIM3) || \ 5704 ((INSTANCE) == TIM4)) 5705 5706 #define IS_TIM_XOR_INSTANCE(INSTANCE)\ 5707 (((INSTANCE) == TIM1) || \ 5708 ((INSTANCE) == TIM2) || \ 5709 ((INSTANCE) == TIM3) || \ 5710 ((INSTANCE) == TIM4)) 5711 5712 #define IS_TIM_MASTER_INSTANCE(INSTANCE)\ 5713 (((INSTANCE) == TIM1) || \ 5714 ((INSTANCE) == TIM2) || \ 5715 ((INSTANCE) == TIM3) || \ 5716 ((INSTANCE) == TIM4) || \ 5717 ((INSTANCE) == TIM6) || \ 5718 ((INSTANCE) == TIM7) || \ 5719 ((INSTANCE) == TIM15)) 5720 5721 #define IS_TIM_SLAVE_INSTANCE(INSTANCE)\ 5722 (((INSTANCE) == TIM1) || \ 5723 ((INSTANCE) == TIM2) || \ 5724 ((INSTANCE) == TIM3) || \ 5725 ((INSTANCE) == TIM4) || \ 5726 ((INSTANCE) == TIM15)) 5727 5728 #define IS_TIM_DMABURST_INSTANCE(INSTANCE)\ 5729 (((INSTANCE) == TIM1) || \ 5730 ((INSTANCE) == TIM2) || \ 5731 ((INSTANCE) == TIM3) || \ 5732 ((INSTANCE) == TIM4) || \ 5733 ((INSTANCE) == TIM15) || \ 5734 ((INSTANCE) == TIM16) || \ 5735 ((INSTANCE) == TIM17)) 5736 5737 #define IS_TIM_BREAK_INSTANCE(INSTANCE)\ 5738 (((INSTANCE) == TIM1) || \ 5739 ((INSTANCE) == TIM15) || \ 5740 ((INSTANCE) == TIM16) || \ 5741 ((INSTANCE) == TIM17)) 5742 5743 #define IS_TIM_CCX_INSTANCE(INSTANCE, CHANNEL) \ 5744 ((((INSTANCE) == TIM1) && \ 5745 (((CHANNEL) == TIM_CHANNEL_1) || \ 5746 ((CHANNEL) == TIM_CHANNEL_2) || \ 5747 ((CHANNEL) == TIM_CHANNEL_3) || \ 5748 ((CHANNEL) == TIM_CHANNEL_4))) \ 5749 || \ 5750 (((INSTANCE) == TIM2) && \ 5751 (((CHANNEL) == TIM_CHANNEL_1) || \ 5752 ((CHANNEL) == TIM_CHANNEL_2) || \ 5753 ((CHANNEL) == TIM_CHANNEL_3) || \ 5754 ((CHANNEL) == TIM_CHANNEL_4))) \ 5755 || \ 5756 (((INSTANCE) == TIM3) && \ 5757 (((CHANNEL) == TIM_CHANNEL_1) || \ 5758 ((CHANNEL) == TIM_CHANNEL_2) || \ 5759 ((CHANNEL) == TIM_CHANNEL_3) || \ 5760 ((CHANNEL) == TIM_CHANNEL_4))) \ 5761 || \ 5762 (((INSTANCE) == TIM4) && \ 5763 (((CHANNEL) == TIM_CHANNEL_1) || \ 5764 ((CHANNEL) == TIM_CHANNEL_2) || \ 5765 ((CHANNEL) == TIM_CHANNEL_3) || \ 5766 ((CHANNEL) == TIM_CHANNEL_4))) \ 5767 || \ 5768 (((INSTANCE) == TIM15) && \ 5769 (((CHANNEL) == TIM_CHANNEL_1) || \ 5770 ((CHANNEL) == TIM_CHANNEL_2))) \ 5771 || \ 5772 (((INSTANCE) == TIM16) && \ 5773 (((CHANNEL) == TIM_CHANNEL_1))) \ 5774 || \ 5775 (((INSTANCE) == TIM17) && \ 5776 (((CHANNEL) == TIM_CHANNEL_1)))) 5777 5778 #define IS_TIM_CCXN_INSTANCE(INSTANCE, CHANNEL) \ 5779 ((((INSTANCE) == TIM1) && \ 5780 (((CHANNEL) == TIM_CHANNEL_1) || \ 5781 ((CHANNEL) == TIM_CHANNEL_2) || \ 5782 ((CHANNEL) == TIM_CHANNEL_3))) \ 5783 || \ 5784 (((INSTANCE) == TIM15) && \ 5785 ((CHANNEL) == TIM_CHANNEL_1)) \ 5786 || \ 5787 (((INSTANCE) == TIM16) && \ 5788 ((CHANNEL) == TIM_CHANNEL_1)) \ 5789 || \ 5790 (((INSTANCE) == TIM17) && \ 5791 ((CHANNEL) == TIM_CHANNEL_1))) 5792 5793 #define IS_TIM_COUNTER_MODE_SELECT_INSTANCE(INSTANCE)\ 5794 (((INSTANCE) == TIM1) || \ 5795 ((INSTANCE) == TIM2) || \ 5796 ((INSTANCE) == TIM3) || \ 5797 ((INSTANCE) == TIM4)) 5798 5799 #define IS_TIM_REPETITION_COUNTER_INSTANCE(INSTANCE)\ 5800 (((INSTANCE) == TIM1) || \ 5801 ((INSTANCE) == TIM15) || \ 5802 ((INSTANCE) == TIM16) || \ 5803 ((INSTANCE) == TIM17)) 5804 5805 #define IS_TIM_CLOCK_DIVISION_INSTANCE(INSTANCE)\ 5806 (((INSTANCE) == TIM1) || \ 5807 ((INSTANCE) == TIM2) || \ 5808 ((INSTANCE) == TIM3) || \ 5809 ((INSTANCE) == TIM4) || \ 5810 ((INSTANCE) == TIM15) || \ 5811 ((INSTANCE) == TIM16) || \ 5812 ((INSTANCE) == TIM17)) 5813 5814 #define IS_TIM_DMA_INSTANCE(INSTANCE)\ 5815 (((INSTANCE) == TIM1) || \ 5816 ((INSTANCE) == TIM2) || \ 5817 ((INSTANCE) == TIM3) || \ 5818 ((INSTANCE) == TIM4) || \ 5819 ((INSTANCE) == TIM6) || \ 5820 ((INSTANCE) == TIM7) || \ 5821 ((INSTANCE) == TIM15) || \ 5822 ((INSTANCE) == TIM16) || \ 5823 ((INSTANCE) == TIM17)) 5824 5825 #define IS_TIM_DMA_CC_INSTANCE(INSTANCE)\ 5826 (((INSTANCE) == TIM1) || \ 5827 ((INSTANCE) == TIM2) || \ 5828 ((INSTANCE) == TIM3) || \ 5829 ((INSTANCE) == TIM4) || \ 5830 ((INSTANCE) == TIM15) || \ 5831 ((INSTANCE) == TIM16) || \ 5832 ((INSTANCE) == TIM17)) 5833 5834 #define IS_TIM_COMMUTATION_EVENT_INSTANCE(INSTANCE)\ 5835 (((INSTANCE) == TIM1) || \ 5836 ((INSTANCE) == TIM15) || \ 5837 ((INSTANCE) == TIM16) || \ 5838 ((INSTANCE) == TIM17)) 5839 5840 #define IS_TIM_ETR_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \ 5841 ((INSTANCE) == TIM2) || \ 5842 ((INSTANCE) == TIM3) || \ 5843 ((INSTANCE) == TIM4)) 5844 5845 #define IS_TIM_HALL_SENSOR_INTERFACE_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \ 5846 ((INSTANCE) == TIM2) || \ 5847 ((INSTANCE) == TIM3) || \ 5848 ((INSTANCE) == TIM4)) 5849 5850 #define IS_TIM_32B_COUNTER_INSTANCE(INSTANCE) 0U 5851 5852 /****************************** END TIM Instances *****************************/ 5853 5854 5855 /******************** USART Instances : Synchronous mode **********************/ 5856 #define IS_USART_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \ 5857 ((INSTANCE) == USART2) || \ 5858 ((INSTANCE) == USART3)) 5859 5860 /******************** UART Instances : Asynchronous mode **********************/ 5861 #define IS_UART_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \ 5862 ((INSTANCE) == USART2) || \ 5863 ((INSTANCE) == USART3)) 5864 5865 /******************** UART Instances : Half-Duplex mode **********************/ 5866 #define IS_UART_HALFDUPLEX_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \ 5867 ((INSTANCE) == USART2) || \ 5868 ((INSTANCE) == USART3)) 5869 5870 /******************** UART Instances : LIN mode **********************/ 5871 #define IS_UART_LIN_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \ 5872 ((INSTANCE) == USART2) || \ 5873 ((INSTANCE) == USART3)) 5874 5875 /****************** UART Instances : Hardware Flow control ********************/ 5876 #define IS_UART_HWFLOW_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \ 5877 ((INSTANCE) == USART2) || \ 5878 ((INSTANCE) == USART3)) 5879 5880 /********************* UART Instances : Smard card mode ***********************/ 5881 #define IS_SMARTCARD_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \ 5882 ((INSTANCE) == USART2) || \ 5883 ((INSTANCE) == USART3)) 5884 5885 /*********************** UART Instances : IRDA mode ***************************/ 5886 #define IS_IRDA_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \ 5887 ((INSTANCE) == USART2) || \ 5888 ((INSTANCE) == USART3)) 5889 5890 /***************** UART Instances : Multi-Processor mode **********************/ 5891 #define IS_UART_MULTIPROCESSOR_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \ 5892 ((INSTANCE) == USART2) || \ 5893 ((INSTANCE) == USART3)) 5894 5895 /***************** UART Instances : DMA mode available **********************/ 5896 #define IS_UART_DMA_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \ 5897 ((INSTANCE) == USART2) || \ 5898 ((INSTANCE) == USART3)) 5899 5900 /****************************** RTC Instances *********************************/ 5901 #define IS_RTC_ALL_INSTANCE(INSTANCE) ((INSTANCE) == RTC) 5902 5903 /**************************** WWDG Instances *****************************/ 5904 #define IS_WWDG_ALL_INSTANCE(INSTANCE) ((INSTANCE) == WWDG) 5905 5906 5907 5908 5909 #define RCC_HSE_MIN 4000000U 5910 #define RCC_HSE_MAX 26000000U 5911 5912 #define RCC_MAX_FREQUENCY 24000000U 5913 5914 /** 5915 * @} 5916 */ 5917 /******************************************************************************/ 5918 /* For a painless codes migration between the STM32F1xx device product */ 5919 /* lines, the aliases defined below are put in place to overcome the */ 5920 /* differences in the interrupt handlers and IRQn definitions. */ 5921 /* No need to update developed interrupt code when moving across */ 5922 /* product lines within the same STM32F1 Family */ 5923 /******************************************************************************/ 5924 5925 /* Aliases for __IRQn */ 5926 #define ADC1_2_IRQn ADC1_IRQn 5927 #define USBWakeUp_IRQn CEC_IRQn 5928 #define OTG_FS_WKUP_IRQn CEC_IRQn 5929 #define TIM1_BRK_TIM9_IRQn TIM1_BRK_TIM15_IRQn 5930 #define TIM1_BRK_IRQn TIM1_BRK_TIM15_IRQn 5931 #define TIM9_IRQn TIM1_BRK_TIM15_IRQn 5932 #define TIM1_TRG_COM_IRQn TIM1_TRG_COM_TIM17_IRQn 5933 #define TIM11_IRQn TIM1_TRG_COM_TIM17_IRQn 5934 #define TIM1_TRG_COM_TIM11_IRQn TIM1_TRG_COM_TIM17_IRQn 5935 #define TIM1_UP_IRQn TIM1_UP_TIM16_IRQn 5936 #define TIM1_UP_TIM10_IRQn TIM1_UP_TIM16_IRQn 5937 #define TIM10_IRQn TIM1_UP_TIM16_IRQn 5938 #define TIM6_IRQn TIM6_DAC_IRQn 5939 5940 5941 /* Aliases for __IRQHandler */ 5942 #define ADC1_2_IRQHandler ADC1_IRQHandler 5943 #define USBWakeUp_IRQHandler CEC_IRQHandler 5944 #define OTG_FS_WKUP_IRQHandler CEC_IRQHandler 5945 #define TIM1_BRK_TIM9_IRQHandler TIM1_BRK_TIM15_IRQHandler 5946 #define TIM1_BRK_IRQHandler TIM1_BRK_TIM15_IRQHandler 5947 #define TIM9_IRQHandler TIM1_BRK_TIM15_IRQHandler 5948 #define TIM1_TRG_COM_IRQHandler TIM1_TRG_COM_TIM17_IRQHandler 5949 #define TIM11_IRQHandler TIM1_TRG_COM_TIM17_IRQHandler 5950 #define TIM1_TRG_COM_TIM11_IRQHandler TIM1_TRG_COM_TIM17_IRQHandler 5951 #define TIM1_UP_IRQHandler TIM1_UP_TIM16_IRQHandler 5952 #define TIM1_UP_TIM10_IRQHandler TIM1_UP_TIM16_IRQHandler 5953 #define TIM10_IRQHandler TIM1_UP_TIM16_IRQHandler 5954 #define TIM6_IRQHandler TIM6_DAC_IRQHandler 5955 5956 5957 /** 5958 * @} 5959 */ 5960 5961 /** 5962 * @} 5963 */ 5964 5965 5966 #ifdef __cplusplus 5967 } 5968 #endif /* __cplusplus */ 5969 5970 #endif /* __STM32F100xB_H */ 5971 5972 5973 5974 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ 5975