Fork of the official mbed C/C SDK provides the software platform and libraries to build your applications for RenBED.

Dependents:   1-RenBuggyTimed RenBED_RGB RenBED_RGB_PWM RenBED_RGB

Fork of mbed by mbed official

Committer:
elijahorr
Date:
Thu Apr 14 07:28:54 2016 +0000
Revision:
121:672067c3ada4
Parent:
116:c0f6e94411f5
.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 116:c0f6e94411f5 1 /**
Kojto 116:c0f6e94411f5 2 ******************************************************************************
Kojto 116:c0f6e94411f5 3 * @file stm32l073xx.h
Kojto 116:c0f6e94411f5 4 * @author MCD Application Team
Kojto 116:c0f6e94411f5 5 * @version V1.2.0
Kojto 116:c0f6e94411f5 6 * @date 06-February-2015
Kojto 116:c0f6e94411f5 7 * @brief CMSIS Cortex-M0+ Device Peripheral Access Layer Header File.
Kojto 116:c0f6e94411f5 8 * This file contains all the peripheral register's definitions, bits
Kojto 116:c0f6e94411f5 9 * definitions and memory mapping for stm32l073xx devices.
Kojto 116:c0f6e94411f5 10 *
Kojto 116:c0f6e94411f5 11 * This file contains:
Kojto 116:c0f6e94411f5 12 * - Data structures and the address mapping for all peripherals
Kojto 116:c0f6e94411f5 13 * - Peripheral's registers declarations and bits definition
Kojto 116:c0f6e94411f5 14 * - Macros to access peripheral's registers hardware
Kojto 116:c0f6e94411f5 15 *
Kojto 116:c0f6e94411f5 16 ******************************************************************************
Kojto 116:c0f6e94411f5 17 * @attention
Kojto 116:c0f6e94411f5 18 *
Kojto 116:c0f6e94411f5 19 * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
Kojto 116:c0f6e94411f5 20 *
Kojto 116:c0f6e94411f5 21 * Redistribution and use in source and binary forms, with or without modification,
Kojto 116:c0f6e94411f5 22 * are permitted provided that the following conditions are met:
Kojto 116:c0f6e94411f5 23 * 1. Redistributions of source code must retain the above copyright notice,
Kojto 116:c0f6e94411f5 24 * this list of conditions and the following disclaimer.
Kojto 116:c0f6e94411f5 25 * 2. Redistributions in binary form must reproduce the above copyright notice,
Kojto 116:c0f6e94411f5 26 * this list of conditions and the following disclaimer in the documentation
Kojto 116:c0f6e94411f5 27 * and/or other materials provided with the distribution.
Kojto 116:c0f6e94411f5 28 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Kojto 116:c0f6e94411f5 29 * may be used to endorse or promote products derived from this software
Kojto 116:c0f6e94411f5 30 * without specific prior written permission.
Kojto 116:c0f6e94411f5 31 *
Kojto 116:c0f6e94411f5 32 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Kojto 116:c0f6e94411f5 33 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Kojto 116:c0f6e94411f5 34 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Kojto 116:c0f6e94411f5 35 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Kojto 116:c0f6e94411f5 36 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Kojto 116:c0f6e94411f5 37 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Kojto 116:c0f6e94411f5 38 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Kojto 116:c0f6e94411f5 39 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Kojto 116:c0f6e94411f5 40 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Kojto 116:c0f6e94411f5 41 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Kojto 116:c0f6e94411f5 42 *
Kojto 116:c0f6e94411f5 43 ******************************************************************************
Kojto 116:c0f6e94411f5 44 */
Kojto 116:c0f6e94411f5 45
Kojto 116:c0f6e94411f5 46 /** @addtogroup CMSIS
Kojto 116:c0f6e94411f5 47 * @{
Kojto 116:c0f6e94411f5 48 */
Kojto 116:c0f6e94411f5 49
Kojto 116:c0f6e94411f5 50 /** @addtogroup stm32l073xx
Kojto 116:c0f6e94411f5 51 * @{
Kojto 116:c0f6e94411f5 52 */
Kojto 116:c0f6e94411f5 53
Kojto 116:c0f6e94411f5 54 #ifndef __STM32L073xx_H
Kojto 116:c0f6e94411f5 55 #define __STM32L073xx_H
Kojto 116:c0f6e94411f5 56
Kojto 116:c0f6e94411f5 57 #ifdef __cplusplus
Kojto 116:c0f6e94411f5 58 extern "C" {
Kojto 116:c0f6e94411f5 59 #endif
Kojto 116:c0f6e94411f5 60
Kojto 116:c0f6e94411f5 61
Kojto 116:c0f6e94411f5 62 /** @addtogroup Configuration_section_for_CMSIS
Kojto 116:c0f6e94411f5 63 * @{
Kojto 116:c0f6e94411f5 64 */
Kojto 116:c0f6e94411f5 65 /**
Kojto 116:c0f6e94411f5 66 * @brief Configuration of the Cortex-M0+ Processor and Core Peripherals
Kojto 116:c0f6e94411f5 67 */
Kojto 116:c0f6e94411f5 68 #define __CM0PLUS_REV 0 /*!< Core Revision r0p0 */
Kojto 116:c0f6e94411f5 69 #define __MPU_PRESENT 1 /*!< STM32L0xx provides an MPU */
Kojto 116:c0f6e94411f5 70 #define __VTOR_PRESENT 1 /*!< Vector Table Register supported */
Kojto 116:c0f6e94411f5 71 #define __NVIC_PRIO_BITS 2 /*!< STM32L0xx uses 2 Bits for the Priority Levels */
Kojto 116:c0f6e94411f5 72 #define __Vendor_SysTickConfig 0 /*!< Set to 1 if different SysTick Config is used */
Kojto 116:c0f6e94411f5 73
Kojto 116:c0f6e94411f5 74 /**
Kojto 116:c0f6e94411f5 75 * @}
Kojto 116:c0f6e94411f5 76 */
Kojto 116:c0f6e94411f5 77
Kojto 116:c0f6e94411f5 78 /** @addtogroup Peripheral_interrupt_number_definition
Kojto 116:c0f6e94411f5 79 * @{
Kojto 116:c0f6e94411f5 80 */
Kojto 116:c0f6e94411f5 81
Kojto 116:c0f6e94411f5 82 /**
Kojto 116:c0f6e94411f5 83 * @brief stm32l073xx Interrupt Number Definition, according to the selected device
Kojto 116:c0f6e94411f5 84 * in @ref Library_configuration_section
Kojto 116:c0f6e94411f5 85 */
Kojto 116:c0f6e94411f5 86
Kojto 116:c0f6e94411f5 87 /*!< Interrupt Number Definition */
Kojto 116:c0f6e94411f5 88 typedef enum
Kojto 116:c0f6e94411f5 89 {
Kojto 116:c0f6e94411f5 90 /****** Cortex-M0 Processor Exceptions Numbers ******************************************************/
Kojto 116:c0f6e94411f5 91 NonMaskableInt_IRQn = -14, /*!< 2 Non Maskable Interrupt */
Kojto 116:c0f6e94411f5 92 HardFault_IRQn = -13, /*!< 3 Cortex-M0+ Hard Fault Interrupt */
Kojto 116:c0f6e94411f5 93 SVC_IRQn = -5, /*!< 11 Cortex-M0+ SV Call Interrupt */
Kojto 116:c0f6e94411f5 94 PendSV_IRQn = -2, /*!< 14 Cortex-M0+ Pend SV Interrupt */
Kojto 116:c0f6e94411f5 95 SysTick_IRQn = -1, /*!< 15 Cortex-M0+ System Tick Interrupt */
Kojto 116:c0f6e94411f5 96
Kojto 116:c0f6e94411f5 97 /****** STM32L-0 specific Interrupt Numbers *********************************************************/
Kojto 116:c0f6e94411f5 98 WWDG_IRQn = 0, /*!< Window WatchDog Interrupt */
Kojto 116:c0f6e94411f5 99 PVD_IRQn = 1, /*!< PVD through EXTI Line detect Interrupt */
Kojto 116:c0f6e94411f5 100 RTC_IRQn = 2, /*!< RTC through EXTI Line Interrupt */
Kojto 116:c0f6e94411f5 101 FLASH_IRQn = 3, /*!< FLASH Interrupt */
Kojto 116:c0f6e94411f5 102 RCC_CRS_IRQn = 4, /*!< RCC and CRS Interrupts */
Kojto 116:c0f6e94411f5 103 EXTI0_1_IRQn = 5, /*!< EXTI Line 0 and 1 Interrupts */
Kojto 116:c0f6e94411f5 104 EXTI2_3_IRQn = 6, /*!< EXTI Line 2 and 3 Interrupts */
Kojto 116:c0f6e94411f5 105 EXTI4_15_IRQn = 7, /*!< EXTI Line 4 to 15 Interrupts */
Kojto 116:c0f6e94411f5 106 TSC_IRQn = 8, /*!< TSC Interrupt */
Kojto 116:c0f6e94411f5 107 DMA1_Channel1_IRQn = 9, /*!< DMA1 Channel 1 Interrupt */
Kojto 116:c0f6e94411f5 108 DMA1_Channel2_3_IRQn = 10, /*!< DMA1 Channel 2 and Channel 3 Interrupts */
Kojto 116:c0f6e94411f5 109 DMA1_Channel4_5_6_7_IRQn = 11, /*!< DMA1 Channel 4, Channel 5, Channel 6 and Channel 7 Interrupts */
Kojto 116:c0f6e94411f5 110 ADC1_COMP_IRQn = 12, /*!< ADC1, COMP1 and COMP2 Interrupts */
Kojto 116:c0f6e94411f5 111 LPTIM1_IRQn = 13, /*!< LPTIM1 Interrupt */
Kojto 116:c0f6e94411f5 112 USART4_5_IRQn = 14, /*!< USART4 and USART5 Interrupt */
Kojto 116:c0f6e94411f5 113 TIM2_IRQn = 15, /*!< TIM2 Interrupt */
Kojto 116:c0f6e94411f5 114 TIM3_IRQn = 16, /*!< TIM3 Interrupt */
Kojto 116:c0f6e94411f5 115 TIM6_DAC_IRQn = 17, /*!< TIM6 and DAC Interrupts */
Kojto 116:c0f6e94411f5 116 TIM7_IRQn = 18, /*!< TIM7 Interrupt */
Kojto 116:c0f6e94411f5 117 TIM21_IRQn = 20, /*!< TIM21 Interrupt */
Kojto 116:c0f6e94411f5 118 I2C3_IRQn = 21, /*!< I2C3 Interrupt */
Kojto 116:c0f6e94411f5 119 TIM22_IRQn = 22, /*!< TIM22 Interrupt */
Kojto 116:c0f6e94411f5 120 I2C1_IRQn = 23, /*!< I2C1 Interrupt */
Kojto 116:c0f6e94411f5 121 I2C2_IRQn = 24, /*!< I2C2 Interrupt */
Kojto 116:c0f6e94411f5 122 SPI1_IRQn = 25, /*!< SPI1 Interrupt */
Kojto 116:c0f6e94411f5 123 SPI2_IRQn = 26, /*!< SPI2 Interrupt */
Kojto 116:c0f6e94411f5 124 USART1_IRQn = 27, /*!< USART1 Interrupt */
Kojto 116:c0f6e94411f5 125 USART2_IRQn = 28, /*!< USART2 Interrupt */
Kojto 116:c0f6e94411f5 126 RNG_LPUART1_IRQn = 29, /*!< RNG and LPUART1 Interrupts */
Kojto 116:c0f6e94411f5 127 LCD_IRQn = 30, /*!< LCD Interrupt */
Kojto 116:c0f6e94411f5 128 USB_IRQn = 31, /*!< USB global Interrupt */
Kojto 116:c0f6e94411f5 129 } IRQn_Type;
Kojto 116:c0f6e94411f5 130
Kojto 116:c0f6e94411f5 131 /**
Kojto 116:c0f6e94411f5 132 * @}
Kojto 116:c0f6e94411f5 133 */
Kojto 116:c0f6e94411f5 134
Kojto 116:c0f6e94411f5 135 #include "core_cm0plus.h"
Kojto 116:c0f6e94411f5 136 #include "system_stm32l0xx.h"
Kojto 116:c0f6e94411f5 137 #include <stdint.h>
Kojto 116:c0f6e94411f5 138
Kojto 116:c0f6e94411f5 139 /** @addtogroup Peripheral_registers_structures
Kojto 116:c0f6e94411f5 140 * @{
Kojto 116:c0f6e94411f5 141 */
Kojto 116:c0f6e94411f5 142
Kojto 116:c0f6e94411f5 143 /**
Kojto 116:c0f6e94411f5 144 * @brief Analog to Digital Converter
Kojto 116:c0f6e94411f5 145 */
Kojto 116:c0f6e94411f5 146
Kojto 116:c0f6e94411f5 147 typedef struct
Kojto 116:c0f6e94411f5 148 {
Kojto 116:c0f6e94411f5 149 __IO uint32_t ISR; /*!< ADC Interrupt and Status register, Address offset:0x00 */
Kojto 116:c0f6e94411f5 150 __IO uint32_t IER; /*!< ADC Interrupt Enable register, Address offset:0x04 */
Kojto 116:c0f6e94411f5 151 __IO uint32_t CR; /*!< ADC Control register, Address offset:0x08 */
Kojto 116:c0f6e94411f5 152 __IO uint32_t CFGR1; /*!< ADC Configuration register 1, Address offset:0x0C */
Kojto 116:c0f6e94411f5 153 __IO uint32_t CFGR2; /*!< ADC Configuration register 2, Address offset:0x10 */
Kojto 116:c0f6e94411f5 154 __IO uint32_t SMPR; /*!< ADC Sampling time register, Address offset:0x14 */
Kojto 116:c0f6e94411f5 155 uint32_t RESERVED1; /*!< Reserved, 0x18 */
Kojto 116:c0f6e94411f5 156 uint32_t RESERVED2; /*!< Reserved, 0x1C */
Kojto 116:c0f6e94411f5 157 __IO uint32_t TR; /*!< ADC watchdog threshold register, Address offset:0x20 */
Kojto 116:c0f6e94411f5 158 uint32_t RESERVED3; /*!< Reserved, 0x24 */
Kojto 116:c0f6e94411f5 159 __IO uint32_t CHSELR; /*!< ADC channel selection register, Address offset:0x28 */
Kojto 116:c0f6e94411f5 160 uint32_t RESERVED4[5]; /*!< Reserved, 0x2C */
Kojto 116:c0f6e94411f5 161 __IO uint32_t DR; /*!< ADC data register, Address offset:0x40 */
Kojto 116:c0f6e94411f5 162 uint32_t RESERVED5[28]; /*!< Reserved, 0x44 - 0xB0 */
Kojto 116:c0f6e94411f5 163 __IO uint32_t CALFACT; /*!< ADC data register, Address offset:0xB4 */
Kojto 116:c0f6e94411f5 164 } ADC_TypeDef;
Kojto 116:c0f6e94411f5 165
Kojto 116:c0f6e94411f5 166 typedef struct
Kojto 116:c0f6e94411f5 167 {
Kojto 116:c0f6e94411f5 168 __IO uint32_t CCR;
Kojto 116:c0f6e94411f5 169 } ADC_Common_TypeDef;
Kojto 116:c0f6e94411f5 170
Kojto 116:c0f6e94411f5 171
Kojto 116:c0f6e94411f5 172 /**
Kojto 116:c0f6e94411f5 173 * @brief Comparator
Kojto 116:c0f6e94411f5 174 */
Kojto 116:c0f6e94411f5 175
Kojto 116:c0f6e94411f5 176 typedef struct
Kojto 116:c0f6e94411f5 177 {
Kojto 116:c0f6e94411f5 178 __IO uint32_t CSR; /*!< COMP comparator control and status register, Address offset: 0x18 */
Kojto 116:c0f6e94411f5 179 } COMP_TypeDef;
Kojto 116:c0f6e94411f5 180
Kojto 116:c0f6e94411f5 181
Kojto 116:c0f6e94411f5 182 /**
Kojto 116:c0f6e94411f5 183 * @brief CRC calculation unit
Kojto 116:c0f6e94411f5 184 */
Kojto 116:c0f6e94411f5 185
Kojto 116:c0f6e94411f5 186 typedef struct
Kojto 116:c0f6e94411f5 187 {
Kojto 116:c0f6e94411f5 188 __IO uint32_t DR; /*!< CRC Data register, Address offset: 0x00 */
Kojto 116:c0f6e94411f5 189 __IO uint32_t IDR; /*!< CRC Independent data register, Address offset: 0x04 */
Kojto 116:c0f6e94411f5 190 __IO uint32_t CR; /*!< CRC Control register, Address offset: 0x08 */
Kojto 116:c0f6e94411f5 191 uint32_t RESERVED2; /*!< Reserved, 0x0C */
Kojto 116:c0f6e94411f5 192 __IO uint32_t INIT; /*!< Initial CRC value register, Address offset: 0x10 */
Kojto 116:c0f6e94411f5 193 __IO uint32_t POL; /*!< CRC polynomial register, Address offset: 0x14 */
Kojto 116:c0f6e94411f5 194 } CRC_TypeDef;
Kojto 116:c0f6e94411f5 195
Kojto 116:c0f6e94411f5 196 /**
Kojto 116:c0f6e94411f5 197 * @brief Clock Recovery System
Kojto 116:c0f6e94411f5 198 */
Kojto 116:c0f6e94411f5 199
Kojto 116:c0f6e94411f5 200 typedef struct
Kojto 116:c0f6e94411f5 201 {
Kojto 116:c0f6e94411f5 202 __IO uint32_t CR; /*!< CRS ccontrol register, Address offset: 0x00 */
Kojto 116:c0f6e94411f5 203 __IO uint32_t CFGR; /*!< CRS configuration register, Address offset: 0x04 */
Kojto 116:c0f6e94411f5 204 __IO uint32_t ISR; /*!< CRS interrupt and status register, Address offset: 0x08 */
Kojto 116:c0f6e94411f5 205 __IO uint32_t ICR; /*!< CRS interrupt flag clear register, Address offset: 0x0C */
Kojto 116:c0f6e94411f5 206 } CRS_TypeDef;
Kojto 116:c0f6e94411f5 207
Kojto 116:c0f6e94411f5 208 /**
Kojto 116:c0f6e94411f5 209 * @brief Digital to Analog Converter
Kojto 116:c0f6e94411f5 210 */
Kojto 116:c0f6e94411f5 211
Kojto 116:c0f6e94411f5 212 typedef struct
Kojto 116:c0f6e94411f5 213 {
Kojto 116:c0f6e94411f5 214 __IO uint32_t CR; /*!< DAC control register, Address offset: 0x00 */
Kojto 116:c0f6e94411f5 215 __IO uint32_t SWTRIGR; /*!< DAC software trigger register, Address offset: 0x04 */
Kojto 116:c0f6e94411f5 216 __IO uint32_t DHR12R1; /*!< DAC channel1 12-bit right-aligned data holding register, Address offset: 0x08 */
Kojto 116:c0f6e94411f5 217 __IO uint32_t DHR12L1; /*!< DAC channel1 12-bit left aligned data holding register, Address offset: 0x0C */
Kojto 116:c0f6e94411f5 218 __IO uint32_t DHR8R1; /*!< DAC channel1 8-bit right aligned data holding register, Address offset: 0x10 */
Kojto 116:c0f6e94411f5 219 __IO uint32_t DHR12R2; /*!< DAC channel2 12-bit right aligned data holding register, Address offset: 0x14 */
Kojto 116:c0f6e94411f5 220 __IO uint32_t DHR12L2; /*!< DAC channel2 12-bit left aligned data holding register, Address offset: 0x18 */
Kojto 116:c0f6e94411f5 221 __IO uint32_t DHR8R2; /*!< DAC channel2 8-bit right-aligned data holding register, Address offset: 0x1C */
Kojto 116:c0f6e94411f5 222 __IO uint32_t DHR12RD; /*!< Dual DAC 12-bit right-aligned data holding register, Address offset: 0x20 */
Kojto 116:c0f6e94411f5 223 __IO uint32_t DHR12LD; /*!< DUAL DAC 12-bit left aligned data holding register, Address offset: 0x24 */
Kojto 116:c0f6e94411f5 224 __IO uint32_t DHR8RD; /*!< DUAL DAC 8-bit right aligned data holding register, Address offset: 0x28 */
Kojto 116:c0f6e94411f5 225 __IO uint32_t DOR1; /*!< DAC channel1 data output register, Address offset: 0x2C */
Kojto 116:c0f6e94411f5 226 __IO uint32_t DOR2; /*!< DAC channel2 data output register, Address offset: 0x30 */
Kojto 116:c0f6e94411f5 227 __IO uint32_t SR; /*!< DAC status register, Address offset: 0x34 */
Kojto 116:c0f6e94411f5 228 } DAC_TypeDef;
Kojto 116:c0f6e94411f5 229
Kojto 116:c0f6e94411f5 230 /**
Kojto 116:c0f6e94411f5 231 * @brief Debug MCU
Kojto 116:c0f6e94411f5 232 */
Kojto 116:c0f6e94411f5 233
Kojto 116:c0f6e94411f5 234 typedef struct
Kojto 116:c0f6e94411f5 235 {
Kojto 116:c0f6e94411f5 236 __IO uint32_t IDCODE; /*!< MCU device ID code, Address offset: 0x00 */
Kojto 116:c0f6e94411f5 237 __IO uint32_t CR; /*!< Debug MCU configuration register, Address offset: 0x04 */
Kojto 116:c0f6e94411f5 238 __IO uint32_t APB1FZ; /*!< Debug MCU APB1 freeze register, Address offset: 0x08 */
Kojto 116:c0f6e94411f5 239 __IO uint32_t APB2FZ; /*!< Debug MCU APB2 freeze register, Address offset: 0x0C */
Kojto 116:c0f6e94411f5 240 }DBGMCU_TypeDef;
Kojto 116:c0f6e94411f5 241
Kojto 116:c0f6e94411f5 242 /**
Kojto 116:c0f6e94411f5 243 * @brief DMA Controller
Kojto 116:c0f6e94411f5 244 */
Kojto 116:c0f6e94411f5 245
Kojto 116:c0f6e94411f5 246 typedef struct
Kojto 116:c0f6e94411f5 247 {
Kojto 116:c0f6e94411f5 248 __IO uint32_t CCR; /*!< DMA channel x configuration register */
Kojto 116:c0f6e94411f5 249 __IO uint32_t CNDTR; /*!< DMA channel x number of data register */
Kojto 116:c0f6e94411f5 250 __IO uint32_t CPAR; /*!< DMA channel x peripheral address register */
Kojto 116:c0f6e94411f5 251 __IO uint32_t CMAR; /*!< DMA channel x memory address register */
Kojto 116:c0f6e94411f5 252 } DMA_Channel_TypeDef;
Kojto 116:c0f6e94411f5 253
Kojto 116:c0f6e94411f5 254 typedef struct
Kojto 116:c0f6e94411f5 255 {
Kojto 116:c0f6e94411f5 256 __IO uint32_t ISR; /*!< DMA interrupt status register, Address offset: 0x00 */
Kojto 116:c0f6e94411f5 257 __IO uint32_t IFCR; /*!< DMA interrupt flag clear register, Address offset: 0x04 */
Kojto 116:c0f6e94411f5 258 } DMA_TypeDef;
Kojto 116:c0f6e94411f5 259
Kojto 116:c0f6e94411f5 260 typedef struct
Kojto 116:c0f6e94411f5 261 {
Kojto 116:c0f6e94411f5 262 __IO uint32_t CSELR; /*!< DMA channel selection register, Address offset: 0xA8 */
Kojto 116:c0f6e94411f5 263 } DMA_Request_TypeDef;
Kojto 116:c0f6e94411f5 264
Kojto 116:c0f6e94411f5 265 /**
Kojto 116:c0f6e94411f5 266 * @brief External Interrupt/Event Controller
Kojto 116:c0f6e94411f5 267 */
Kojto 116:c0f6e94411f5 268
Kojto 116:c0f6e94411f5 269 typedef struct
Kojto 116:c0f6e94411f5 270 {
Kojto 116:c0f6e94411f5 271 __IO uint32_t IMR; /*!<EXTI Interrupt mask register, Address offset: 0x00 */
Kojto 116:c0f6e94411f5 272 __IO uint32_t EMR; /*!<EXTI Event mask register, Address offset: 0x04 */
Kojto 116:c0f6e94411f5 273 __IO uint32_t RTSR; /*!<EXTI Rising trigger selection register , Address offset: 0x08 */
Kojto 116:c0f6e94411f5 274 __IO uint32_t FTSR; /*!<EXTI Falling trigger selection register, Address offset: 0x0C */
Kojto 116:c0f6e94411f5 275 __IO uint32_t SWIER; /*!<EXTI Software interrupt event register, Address offset: 0x10 */
Kojto 116:c0f6e94411f5 276 __IO uint32_t PR; /*!<EXTI Pending register, Address offset: 0x14 */
Kojto 116:c0f6e94411f5 277 }EXTI_TypeDef;
Kojto 116:c0f6e94411f5 278
Kojto 116:c0f6e94411f5 279 /**
Kojto 116:c0f6e94411f5 280 * @brief FLASH Registers
Kojto 116:c0f6e94411f5 281 */
Kojto 116:c0f6e94411f5 282 typedef struct
Kojto 116:c0f6e94411f5 283 {
Kojto 116:c0f6e94411f5 284 __IO uint32_t ACR; /*!< Access control register, Address offset: 0x00 */
Kojto 116:c0f6e94411f5 285 __IO uint32_t PECR; /*!< Program/erase control register, Address offset: 0x04 */
Kojto 116:c0f6e94411f5 286 __IO uint32_t PDKEYR; /*!< Power down key register, Address offset: 0x08 */
Kojto 116:c0f6e94411f5 287 __IO uint32_t PEKEYR; /*!< Program/erase key register, Address offset: 0x0c */
Kojto 116:c0f6e94411f5 288 __IO uint32_t PRGKEYR; /*!< Program memory key register, Address offset: 0x10 */
Kojto 116:c0f6e94411f5 289 __IO uint32_t OPTKEYR; /*!< Option byte key register, Address offset: 0x14 */
Kojto 116:c0f6e94411f5 290 __IO uint32_t SR; /*!< Status register, Address offset: 0x18 */
Kojto 116:c0f6e94411f5 291 __IO uint32_t OPTR; /*!< Option byte register, Address offset: 0x1c */
Kojto 116:c0f6e94411f5 292 __IO uint32_t WRPR; /*!< Write protection register, Address offset: 0x20 */
Kojto 116:c0f6e94411f5 293 __IO uint32_t RESERVED1[23]; /*!< Reserved1, Address offset: 0x24 */
Kojto 116:c0f6e94411f5 294 __IO uint32_t WRPR2; /*!< Write protection register 2, Address offset: 0x80 */
Kojto 116:c0f6e94411f5 295 } FLASH_TypeDef;
Kojto 116:c0f6e94411f5 296
Kojto 116:c0f6e94411f5 297
Kojto 116:c0f6e94411f5 298 /**
Kojto 116:c0f6e94411f5 299 * @brief Option Bytes Registers
Kojto 116:c0f6e94411f5 300 */
Kojto 116:c0f6e94411f5 301 typedef struct
Kojto 116:c0f6e94411f5 302 {
Kojto 116:c0f6e94411f5 303 __IO uint32_t RDP; /*!< Read protection register, Address offset: 0x00 */
Kojto 116:c0f6e94411f5 304 __IO uint32_t USER; /*!< user register, Address offset: 0x04 */
Kojto 116:c0f6e94411f5 305 __IO uint32_t WRP01; /*!< write protection Bytes 0 and 1 Address offset: 0x08 */
Kojto 116:c0f6e94411f5 306 __IO uint32_t WRP23; /*!< write protection Bytes 2 and 3 Address offset: 0x0C */
Kojto 116:c0f6e94411f5 307 __IO uint32_t WRP45; /*!< write protection Bytes 4 and 5 Address offset: 0x10 */
Kojto 116:c0f6e94411f5 308 } OB_TypeDef;
Kojto 116:c0f6e94411f5 309
Kojto 116:c0f6e94411f5 310
Kojto 116:c0f6e94411f5 311 /**
Kojto 116:c0f6e94411f5 312 * @brief General Purpose IO
Kojto 116:c0f6e94411f5 313 */
Kojto 116:c0f6e94411f5 314
Kojto 116:c0f6e94411f5 315 typedef struct
Kojto 116:c0f6e94411f5 316 {
Kojto 116:c0f6e94411f5 317 __IO uint32_t MODER; /*!< GPIO port mode register, Address offset: 0x00 */
Kojto 116:c0f6e94411f5 318 __IO uint32_t OTYPER; /*!< GPIO port output type register, Address offset: 0x04 */
Kojto 116:c0f6e94411f5 319 __IO uint32_t OSPEEDR; /*!< GPIO port output speed register, Address offset: 0x08 */
Kojto 116:c0f6e94411f5 320 __IO uint32_t PUPDR; /*!< GPIO port pull-up/pull-down register, Address offset: 0x0C */
Kojto 116:c0f6e94411f5 321 __IO uint32_t IDR; /*!< GPIO port input data register, Address offset: 0x10 */
Kojto 116:c0f6e94411f5 322 __IO uint32_t ODR; /*!< GPIO port output data register, Address offset: 0x14 */
Kojto 116:c0f6e94411f5 323 __IO uint32_t BSRR; /*!< GPIO port bit set/reset registerBSRR, Address offset: 0x18 */
Kojto 116:c0f6e94411f5 324 __IO uint32_t LCKR; /*!< GPIO port configuration lock register, Address offset: 0x1C */
Kojto 116:c0f6e94411f5 325 __IO uint32_t AFR[2]; /*!< GPIO alternate function register, Address offset: 0x20-0x24 */
Kojto 116:c0f6e94411f5 326 __IO uint32_t BRR; /*!< GPIO bit reset register, Address offset: 0x28 */
Kojto 116:c0f6e94411f5 327 }GPIO_TypeDef;
Kojto 116:c0f6e94411f5 328
Kojto 116:c0f6e94411f5 329 /**
Kojto 116:c0f6e94411f5 330 * @brief LPTIMIMER
Kojto 116:c0f6e94411f5 331 */
Kojto 116:c0f6e94411f5 332 typedef struct
Kojto 116:c0f6e94411f5 333 {
Kojto 116:c0f6e94411f5 334 __IO uint32_t ISR; /*!< LPTIM Interrupt and Status register, Address offset: 0x00 */
Kojto 116:c0f6e94411f5 335 __IO uint32_t ICR; /*!< LPTIM Interrupt Clear register, Address offset: 0x04 */
Kojto 116:c0f6e94411f5 336 __IO uint32_t IER; /*!< LPTIM Interrupt Enable register, Address offset: 0x08 */
Kojto 116:c0f6e94411f5 337 __IO uint32_t CFGR; /*!< LPTIM Configuration register, Address offset: 0x0C */
Kojto 116:c0f6e94411f5 338 __IO uint32_t CR; /*!< LPTIM Control register, Address offset: 0x10 */
Kojto 116:c0f6e94411f5 339 __IO uint32_t CMP; /*!< LPTIM Compare register, Address offset: 0x14 */
Kojto 116:c0f6e94411f5 340 __IO uint32_t ARR; /*!< LPTIM Autoreload register, Address offset: 0x18 */
Kojto 116:c0f6e94411f5 341 __IO uint32_t CNT; /*!< LPTIM Counter register, Address offset: 0x1C */
Kojto 116:c0f6e94411f5 342 } LPTIM_TypeDef;
Kojto 116:c0f6e94411f5 343
Kojto 116:c0f6e94411f5 344 /**
Kojto 116:c0f6e94411f5 345 * @brief SysTem Configuration
Kojto 116:c0f6e94411f5 346 */
Kojto 116:c0f6e94411f5 347
Kojto 116:c0f6e94411f5 348 typedef struct
Kojto 116:c0f6e94411f5 349 {
Kojto 116:c0f6e94411f5 350 __IO uint32_t CFGR1; /*!< SYSCFG configuration register 1, Address offset: 0x00 */
Kojto 116:c0f6e94411f5 351 __IO uint32_t CFGR2; /*!< SYSCFG configuration register 2, Address offset: 0x04 */
Kojto 116:c0f6e94411f5 352 __IO uint32_t EXTICR[4]; /*!< SYSCFG external interrupt configuration register, Address offset: 0x14-0x08 */
Kojto 116:c0f6e94411f5 353 uint32_t RESERVED[2]; /*!< Reserved, 0x18-0x1C */
Kojto 116:c0f6e94411f5 354 __IO uint32_t CFGR3; /*!< SYSCFG configuration register 3, Address offset: 0x20 */
Kojto 116:c0f6e94411f5 355 } SYSCFG_TypeDef;
Kojto 116:c0f6e94411f5 356
Kojto 116:c0f6e94411f5 357
Kojto 116:c0f6e94411f5 358
Kojto 116:c0f6e94411f5 359 /**
Kojto 116:c0f6e94411f5 360 * @brief Inter-integrated Circuit Interface
Kojto 116:c0f6e94411f5 361 */
Kojto 116:c0f6e94411f5 362
Kojto 116:c0f6e94411f5 363 typedef struct
Kojto 116:c0f6e94411f5 364 {
Kojto 116:c0f6e94411f5 365 __IO uint32_t CR1; /*!< I2C Control register 1, Address offset: 0x00 */
Kojto 116:c0f6e94411f5 366 __IO uint32_t CR2; /*!< I2C Control register 2, Address offset: 0x04 */
Kojto 116:c0f6e94411f5 367 __IO uint32_t OAR1; /*!< I2C Own address 1 register, Address offset: 0x08 */
Kojto 116:c0f6e94411f5 368 __IO uint32_t OAR2; /*!< I2C Own address 2 register, Address offset: 0x0C */
Kojto 116:c0f6e94411f5 369 __IO uint32_t TIMINGR; /*!< I2C Timing register, Address offset: 0x10 */
Kojto 116:c0f6e94411f5 370 __IO uint32_t TIMEOUTR; /*!< I2C Timeout register, Address offset: 0x14 */
Kojto 116:c0f6e94411f5 371 __IO uint32_t ISR; /*!< I2C Interrupt and status register, Address offset: 0x18 */
Kojto 116:c0f6e94411f5 372 __IO uint32_t ICR; /*!< I2C Interrupt clear register, Address offset: 0x1C */
Kojto 116:c0f6e94411f5 373 __IO uint32_t PECR; /*!< I2C PEC register, Address offset: 0x20 */
Kojto 116:c0f6e94411f5 374 __IO uint32_t RXDR; /*!< I2C Receive data register, Address offset: 0x24 */
Kojto 116:c0f6e94411f5 375 __IO uint32_t TXDR; /*!< I2C Transmit data register, Address offset: 0x28 */
Kojto 116:c0f6e94411f5 376 }I2C_TypeDef;
Kojto 116:c0f6e94411f5 377
Kojto 116:c0f6e94411f5 378
Kojto 116:c0f6e94411f5 379 /**
Kojto 116:c0f6e94411f5 380 * @brief Independent WATCHDOG
Kojto 116:c0f6e94411f5 381 */
Kojto 116:c0f6e94411f5 382 typedef struct
Kojto 116:c0f6e94411f5 383 {
Kojto 116:c0f6e94411f5 384 __IO uint32_t KR; /*!< IWDG Key register, Address offset: 0x00 */
Kojto 116:c0f6e94411f5 385 __IO uint32_t PR; /*!< IWDG Prescaler register, Address offset: 0x04 */
Kojto 116:c0f6e94411f5 386 __IO uint32_t RLR; /*!< IWDG Reload register, Address offset: 0x08 */
Kojto 116:c0f6e94411f5 387 __IO uint32_t SR; /*!< IWDG Status register, Address offset: 0x0C */
Kojto 116:c0f6e94411f5 388 __IO uint32_t WINR; /*!< IWDG Window register, Address offset: 0x10 */
Kojto 116:c0f6e94411f5 389 } IWDG_TypeDef;
Kojto 116:c0f6e94411f5 390
Kojto 116:c0f6e94411f5 391 /**
Kojto 116:c0f6e94411f5 392 * @brief LCD
Kojto 116:c0f6e94411f5 393 */
Kojto 116:c0f6e94411f5 394
Kojto 116:c0f6e94411f5 395 typedef struct
Kojto 116:c0f6e94411f5 396 {
Kojto 116:c0f6e94411f5 397 __IO uint32_t CR; /*!< LCD control register, Address offset: 0x00 */
Kojto 116:c0f6e94411f5 398 __IO uint32_t FCR; /*!< LCD frame control register, Address offset: 0x04 */
Kojto 116:c0f6e94411f5 399 __IO uint32_t SR; /*!< LCD status register, Address offset: 0x08 */
Kojto 116:c0f6e94411f5 400 __IO uint32_t CLR; /*!< LCD clear register, Address offset: 0x0C */
Kojto 116:c0f6e94411f5 401 uint32_t RESERVED; /*!< Reserved, Address offset: 0x10 */
Kojto 116:c0f6e94411f5 402 __IO uint32_t RAM[16]; /*!< LCD display memory, Address offset: 0x14-0x50 */
Kojto 116:c0f6e94411f5 403 } LCD_TypeDef;
Kojto 116:c0f6e94411f5 404
Kojto 116:c0f6e94411f5 405 /**
Kojto 116:c0f6e94411f5 406 * @brief MIFARE Firewall
Kojto 116:c0f6e94411f5 407 */
Kojto 116:c0f6e94411f5 408
Kojto 116:c0f6e94411f5 409 typedef struct
Kojto 116:c0f6e94411f5 410 {
Kojto 116:c0f6e94411f5 411 __IO uint32_t CSSA; /*!< Code Segment Start Address register, Address offset: 0x00 */
Kojto 116:c0f6e94411f5 412 __IO uint32_t CSL; /*!< Code Segment Length register, Address offset: 0x04 */
Kojto 116:c0f6e94411f5 413 __IO uint32_t NVDSSA; /*!< NON volatile data Segment Start Address register, Address offset: 0x08 */
Kojto 116:c0f6e94411f5 414 __IO uint32_t NVDSL; /*!< NON volatile data Segment Length register, Address offset: 0x0C */
Kojto 116:c0f6e94411f5 415 __IO uint32_t VDSSA ; /*!< Volatile data Segment Start Address register, Address offset: 0x10 */
Kojto 116:c0f6e94411f5 416 __IO uint32_t VDSL ; /*!< Volatile data Segment Length register, Address offset: 0x14 */
Kojto 116:c0f6e94411f5 417 __IO uint32_t LSSA ; /*!< Library Segment Start Address register, Address offset: 0x18 */
Kojto 116:c0f6e94411f5 418 __IO uint32_t LSL ; /*!< Library Segment Length register, Address offset: 0x1C */
Kojto 116:c0f6e94411f5 419 __IO uint32_t CR ; /*!< Configuration register, Address offset: 0x20 */
Kojto 116:c0f6e94411f5 420
Kojto 116:c0f6e94411f5 421 } FW_TypeDef;
Kojto 116:c0f6e94411f5 422
Kojto 116:c0f6e94411f5 423 /**
Kojto 116:c0f6e94411f5 424 * @brief Power Control
Kojto 116:c0f6e94411f5 425 */
Kojto 116:c0f6e94411f5 426
Kojto 116:c0f6e94411f5 427 typedef struct
Kojto 116:c0f6e94411f5 428 {
Kojto 116:c0f6e94411f5 429 __IO uint32_t CR; /*!< PWR power control register, Address offset: 0x00 */
Kojto 116:c0f6e94411f5 430 __IO uint32_t CSR; /*!< PWR power control/status register, Address offset: 0x04 */
Kojto 116:c0f6e94411f5 431 } PWR_TypeDef;
Kojto 116:c0f6e94411f5 432
Kojto 116:c0f6e94411f5 433 /**
Kojto 116:c0f6e94411f5 434 * @brief Reset and Clock Control
Kojto 116:c0f6e94411f5 435 */
Kojto 116:c0f6e94411f5 436 typedef struct
Kojto 116:c0f6e94411f5 437 {
Kojto 116:c0f6e94411f5 438 __IO uint32_t CR; /*!< RCC clock control register, Address offset: 0x00 */
Kojto 116:c0f6e94411f5 439 __IO uint32_t ICSCR; /*!< RCC Internal clock sources calibration register, Address offset: 0x04 */
Kojto 116:c0f6e94411f5 440 __IO uint32_t CRRCR; /*!< RCC Clock recovery RC register, Address offset: 0x08 */
Kojto 116:c0f6e94411f5 441 __IO uint32_t CFGR; /*!< RCC Clock configuration register, Address offset: 0x0C */
Kojto 116:c0f6e94411f5 442 __IO uint32_t CIER; /*!< RCC Clock interrupt enable register, Address offset: 0x10 */
Kojto 116:c0f6e94411f5 443 __IO uint32_t CIFR; /*!< RCC Clock interrupt flag register, Address offset: 0x14 */
Kojto 116:c0f6e94411f5 444 __IO uint32_t CICR; /*!< RCC Clock interrupt clear register, Address offset: 0x18 */
Kojto 116:c0f6e94411f5 445 __IO uint32_t IOPRSTR; /*!< RCC IO port reset register, Address offset: 0x1C */
Kojto 116:c0f6e94411f5 446 __IO uint32_t AHBRSTR; /*!< RCC AHB peripheral reset register, Address offset: 0x20 */
Kojto 116:c0f6e94411f5 447 __IO uint32_t APB2RSTR; /*!< RCC APB2 peripheral reset register, Address offset: 0x24 */
Kojto 116:c0f6e94411f5 448 __IO uint32_t APB1RSTR; /*!< RCC APB1 peripheral reset register, Address offset: 0x28 */
Kojto 116:c0f6e94411f5 449 __IO uint32_t IOPENR; /*!< RCC Clock IO port enable register, Address offset: 0x2C */
Kojto 116:c0f6e94411f5 450 __IO uint32_t AHBENR; /*!< RCC AHB peripheral clock enable register, Address offset: 0x30 */
Kojto 116:c0f6e94411f5 451 __IO uint32_t APB2ENR; /*!< RCC APB2 peripheral enable register, Address offset: 0x34 */
Kojto 116:c0f6e94411f5 452 __IO uint32_t APB1ENR; /*!< RCC APB1 peripheral enable register, Address offset: 0x38 */
Kojto 116:c0f6e94411f5 453 __IO uint32_t IOPSMENR; /*!< RCC IO port clock enable in sleep mode register, Address offset: 0x3C */
Kojto 116:c0f6e94411f5 454 __IO uint32_t AHBSMENR; /*!< RCC AHB peripheral clock enable in sleep mode register, Address offset: 0x40 */
Kojto 116:c0f6e94411f5 455 __IO uint32_t APB2SMENR; /*!< RCC APB2 peripheral clock enable in sleep mode register, Address offset: 0x44 */
Kojto 116:c0f6e94411f5 456 __IO uint32_t APB1SMENR; /*!< RCC APB1 peripheral clock enable in sleep mode register, Address offset: 0x48 */
Kojto 116:c0f6e94411f5 457 __IO uint32_t CCIPR; /*!< RCC clock configuration register, Address offset: 0x4C */
Kojto 116:c0f6e94411f5 458 __IO uint32_t CSR; /*!< RCC Control/status register, Address offset: 0x50 */
Kojto 116:c0f6e94411f5 459 } RCC_TypeDef;
Kojto 116:c0f6e94411f5 460
Kojto 116:c0f6e94411f5 461 /**
Kojto 116:c0f6e94411f5 462 * @brief Random numbers generator
Kojto 116:c0f6e94411f5 463 */
Kojto 116:c0f6e94411f5 464 typedef struct
Kojto 116:c0f6e94411f5 465 {
Kojto 116:c0f6e94411f5 466 __IO uint32_t CR; /*!< RNG control register, Address offset: 0x00 */
Kojto 116:c0f6e94411f5 467 __IO uint32_t SR; /*!< RNG status register, Address offset: 0x04 */
Kojto 116:c0f6e94411f5 468 __IO uint32_t DR; /*!< RNG data register, Address offset: 0x08 */
Kojto 116:c0f6e94411f5 469 } RNG_TypeDef;
Kojto 116:c0f6e94411f5 470
Kojto 116:c0f6e94411f5 471 /**
Kojto 116:c0f6e94411f5 472 * @brief Real-Time Clock
Kojto 116:c0f6e94411f5 473 */
Kojto 116:c0f6e94411f5 474 typedef struct
Kojto 116:c0f6e94411f5 475 {
Kojto 116:c0f6e94411f5 476 __IO uint32_t TR; /*!< RTC time register, Address offset: 0x00 */
Kojto 116:c0f6e94411f5 477 __IO uint32_t DR; /*!< RTC date register, Address offset: 0x04 */
Kojto 116:c0f6e94411f5 478 __IO uint32_t CR; /*!< RTC control register, Address offset: 0x08 */
Kojto 116:c0f6e94411f5 479 __IO uint32_t ISR; /*!< RTC initialization and status register, Address offset: 0x0C */
Kojto 116:c0f6e94411f5 480 __IO uint32_t PRER; /*!< RTC prescaler register, Address offset: 0x10 */
Kojto 116:c0f6e94411f5 481 __IO uint32_t WUTR; /*!< RTC wakeup timer register, Address offset: 0x14 */
Kojto 116:c0f6e94411f5 482 uint32_t RESERVED; /*!< Reserved, Address offset: 0x18 */
Kojto 116:c0f6e94411f5 483 __IO uint32_t ALRMAR; /*!< RTC alarm A register, Address offset: 0x1C */
Kojto 116:c0f6e94411f5 484 __IO uint32_t ALRMBR; /*!< RTC alarm B register, Address offset: 0x20 */
Kojto 116:c0f6e94411f5 485 __IO uint32_t WPR; /*!< RTC write protection register, Address offset: 0x24 */
Kojto 116:c0f6e94411f5 486 __IO uint32_t SSR; /*!< RTC sub second register, Address offset: 0x28 */
Kojto 116:c0f6e94411f5 487 __IO uint32_t SHIFTR; /*!< RTC shift control register, Address offset: 0x2C */
Kojto 116:c0f6e94411f5 488 __IO uint32_t TSTR; /*!< RTC time stamp time register, Address offset: 0x30 */
Kojto 116:c0f6e94411f5 489 __IO uint32_t TSDR; /*!< RTC time stamp date register, Address offset: 0x34 */
Kojto 116:c0f6e94411f5 490 __IO uint32_t TSSSR; /*!< RTC time-stamp sub second register, Address offset: 0x38 */
Kojto 116:c0f6e94411f5 491 __IO uint32_t CALR; /*!< RTC calibration register, Address offset: 0x3C */
Kojto 116:c0f6e94411f5 492 __IO uint32_t TAMPCR; /*!< RTC tamper configuration register, Address offset: 0x40 */
Kojto 116:c0f6e94411f5 493 __IO uint32_t ALRMASSR; /*!< RTC alarm A sub second register, Address offset: 0x44 */
Kojto 116:c0f6e94411f5 494 __IO uint32_t ALRMBSSR; /*!< RTC alarm B sub second register, Address offset: 0x48 */
Kojto 116:c0f6e94411f5 495 __IO uint32_t OR; /*!< RTC option register, Address offset 0x4C */
Kojto 116:c0f6e94411f5 496 __IO uint32_t BKP0R; /*!< RTC backup register 0, Address offset: 0x50 */
Kojto 116:c0f6e94411f5 497 __IO uint32_t BKP1R; /*!< RTC backup register 1, Address offset: 0x54 */
Kojto 116:c0f6e94411f5 498 __IO uint32_t BKP2R; /*!< RTC backup register 2, Address offset: 0x58 */
Kojto 116:c0f6e94411f5 499 __IO uint32_t BKP3R; /*!< RTC backup register 3, Address offset: 0x5C */
Kojto 116:c0f6e94411f5 500 __IO uint32_t BKP4R; /*!< RTC backup register 4, Address offset: 0x60 */
Kojto 116:c0f6e94411f5 501 } RTC_TypeDef;
Kojto 116:c0f6e94411f5 502
Kojto 116:c0f6e94411f5 503
Kojto 116:c0f6e94411f5 504 /**
Kojto 116:c0f6e94411f5 505 * @brief Serial Peripheral Interface
Kojto 116:c0f6e94411f5 506 */
Kojto 116:c0f6e94411f5 507
Kojto 116:c0f6e94411f5 508 typedef struct
Kojto 116:c0f6e94411f5 509 {
Kojto 116:c0f6e94411f5 510 __IO uint32_t CR1; /*!< SPI Control register 1 (not used in I2S mode), Address offset: 0x00 */
Kojto 116:c0f6e94411f5 511 __IO uint32_t CR2; /*!< SPI Control register 2, Address offset: 0x04 */
Kojto 116:c0f6e94411f5 512 __IO uint32_t SR; /*!< SPI Status register, Address offset: 0x08 */
Kojto 116:c0f6e94411f5 513 __IO uint32_t DR; /*!< SPI data register, Address offset: 0x0C */
Kojto 116:c0f6e94411f5 514 __IO uint32_t CRCPR; /*!< SPI CRC polynomial register (not used in I2S mode), Address offset: 0x10 */
Kojto 116:c0f6e94411f5 515 __IO uint32_t RXCRCR; /*!< SPI Rx CRC register (not used in I2S mode), Address offset: 0x14 */
Kojto 116:c0f6e94411f5 516 __IO uint32_t TXCRCR; /*!< SPI Tx CRC register (not used in I2S mode), Address offset: 0x18 */
Kojto 116:c0f6e94411f5 517 __IO uint32_t I2SCFGR; /*!< SPI_I2S configuration register, Address offset: 0x1C */
Kojto 116:c0f6e94411f5 518 __IO uint32_t I2SPR; /*!< SPI_I2S prescaler register, Address offset: 0x20 */
Kojto 116:c0f6e94411f5 519 } SPI_TypeDef;
Kojto 116:c0f6e94411f5 520
Kojto 116:c0f6e94411f5 521 /**
Kojto 116:c0f6e94411f5 522 * @brief TIM
Kojto 116:c0f6e94411f5 523 */
Kojto 116:c0f6e94411f5 524 typedef struct
Kojto 116:c0f6e94411f5 525 {
Kojto 116:c0f6e94411f5 526 __IO uint32_t CR1; /*!< TIM control register 1, Address offset: 0x00 */
Kojto 116:c0f6e94411f5 527 __IO uint32_t CR2; /*!< TIM control register 2, Address offset: 0x04 */
Kojto 116:c0f6e94411f5 528 __IO uint32_t SMCR; /*!< TIM slave Mode Control register, Address offset: 0x08 */
Kojto 116:c0f6e94411f5 529 __IO uint32_t DIER; /*!< TIM DMA/interrupt enable register, Address offset: 0x0C */
Kojto 116:c0f6e94411f5 530 __IO uint32_t SR; /*!< TIM status register, Address offset: 0x10 */
Kojto 116:c0f6e94411f5 531 __IO uint32_t EGR; /*!< TIM event generation register, Address offset: 0x14 */
Kojto 116:c0f6e94411f5 532 __IO uint32_t CCMR1; /*!< TIM capture/compare mode register 1, Address offset: 0x18 */
Kojto 116:c0f6e94411f5 533 __IO uint32_t CCMR2; /*!< TIM capture/compare mode register 2, Address offset: 0x1C */
Kojto 116:c0f6e94411f5 534 __IO uint32_t CCER; /*!< TIM capture/compare enable register, Address offset: 0x20 */
Kojto 116:c0f6e94411f5 535 __IO uint32_t CNT; /*!< TIM counter register, Address offset: 0x24 */
Kojto 116:c0f6e94411f5 536 __IO uint32_t PSC; /*!< TIM prescaler register, Address offset: 0x28 */
Kojto 116:c0f6e94411f5 537 __IO uint32_t ARR; /*!< TIM auto-reload register, Address offset: 0x2C */
Kojto 116:c0f6e94411f5 538 __IO uint32_t RCR; /*!< TIM repetition counter register, Address offset: 0x30 */
Kojto 116:c0f6e94411f5 539 __IO uint32_t CCR1; /*!< TIM capture/compare register 1, Address offset: 0x34 */
Kojto 116:c0f6e94411f5 540 __IO uint32_t CCR2; /*!< TIM capture/compare register 2, Address offset: 0x38 */
Kojto 116:c0f6e94411f5 541 __IO uint32_t CCR3; /*!< TIM capture/compare register 3, Address offset: 0x3C */
Kojto 116:c0f6e94411f5 542 __IO uint32_t CCR4; /*!< TIM capture/compare register 4, Address offset: 0x40 */
Kojto 116:c0f6e94411f5 543 __IO uint32_t BDTR; /*!< TIM break and dead-time register, Address offset: 0x44 */
Kojto 116:c0f6e94411f5 544 __IO uint32_t DCR; /*!< TIM DMA control register, Address offset: 0x48 */
Kojto 116:c0f6e94411f5 545 __IO uint32_t DMAR; /*!< TIM DMA address for full transfer register, Address offset: 0x4C */
Kojto 116:c0f6e94411f5 546 __IO uint32_t OR; /*!< TIM option register, Address offset: 0x50 */
Kojto 116:c0f6e94411f5 547 } TIM_TypeDef;
Kojto 116:c0f6e94411f5 548
Kojto 116:c0f6e94411f5 549 /**
Kojto 116:c0f6e94411f5 550 * @brief Touch Sensing Controller (TSC)
Kojto 116:c0f6e94411f5 551 */
Kojto 116:c0f6e94411f5 552 typedef struct
Kojto 116:c0f6e94411f5 553 {
Kojto 116:c0f6e94411f5 554 __IO uint32_t CR; /*!< TSC control register, Address offset: 0x00 */
Kojto 116:c0f6e94411f5 555 __IO uint32_t IER; /*!< TSC interrupt enable register, Address offset: 0x04 */
Kojto 116:c0f6e94411f5 556 __IO uint32_t ICR; /*!< TSC interrupt clear register, Address offset: 0x08 */
Kojto 116:c0f6e94411f5 557 __IO uint32_t ISR; /*!< TSC interrupt status register, Address offset: 0x0C */
Kojto 116:c0f6e94411f5 558 __IO uint32_t IOHCR; /*!< TSC I/O hysteresis control register, Address offset: 0x10 */
Kojto 116:c0f6e94411f5 559 uint32_t RESERVED1; /*!< Reserved, Address offset: 0x14 */
Kojto 116:c0f6e94411f5 560 __IO uint32_t IOASCR; /*!< TSC I/O analog switch control register, Address offset: 0x18 */
Kojto 116:c0f6e94411f5 561 uint32_t RESERVED2; /*!< Reserved, Address offset: 0x1C */
Kojto 116:c0f6e94411f5 562 __IO uint32_t IOSCR; /*!< TSC I/O sampling control register, Address offset: 0x20 */
Kojto 116:c0f6e94411f5 563 uint32_t RESERVED3; /*!< Reserved, Address offset: 0x24 */
Kojto 116:c0f6e94411f5 564 __IO uint32_t IOCCR; /*!< TSC I/O channel control register, Address offset: 0x28 */
Kojto 116:c0f6e94411f5 565 uint32_t RESERVED4; /*!< Reserved, Address offset: 0x2C */
Kojto 116:c0f6e94411f5 566 __IO uint32_t IOGCSR; /*!< TSC I/O group control status register, Address offset: 0x30 */
Kojto 116:c0f6e94411f5 567 __IO uint32_t IOGXCR[8]; /*!< TSC I/O group x counter register, Address offset: 0x34-50 */
Kojto 116:c0f6e94411f5 568 } TSC_TypeDef;
Kojto 116:c0f6e94411f5 569
Kojto 116:c0f6e94411f5 570 /**
Kojto 116:c0f6e94411f5 571 * @brief Universal Synchronous Asynchronous Receiver Transmitter
Kojto 116:c0f6e94411f5 572 */
Kojto 116:c0f6e94411f5 573
Kojto 116:c0f6e94411f5 574 typedef struct
Kojto 116:c0f6e94411f5 575 {
Kojto 116:c0f6e94411f5 576 __IO uint32_t CR1; /*!< USART Control register 1, Address offset: 0x00 */
Kojto 116:c0f6e94411f5 577 __IO uint32_t CR2; /*!< USART Control register 2, Address offset: 0x04 */
Kojto 116:c0f6e94411f5 578 __IO uint32_t CR3; /*!< USART Control register 3, Address offset: 0x08 */
Kojto 116:c0f6e94411f5 579 __IO uint32_t BRR; /*!< USART Baud rate register, Address offset: 0x0C */
Kojto 116:c0f6e94411f5 580 __IO uint32_t GTPR; /*!< USART Guard time and prescaler register, Address offset: 0x10 */
Kojto 116:c0f6e94411f5 581 __IO uint32_t RTOR; /*!< USART Receiver Time Out register, Address offset: 0x14 */
Kojto 116:c0f6e94411f5 582 __IO uint32_t RQR; /*!< USART Request register, Address offset: 0x18 */
Kojto 116:c0f6e94411f5 583 __IO uint32_t ISR; /*!< USART Interrupt and status register, Address offset: 0x1C */
Kojto 116:c0f6e94411f5 584 __IO uint32_t ICR; /*!< USART Interrupt flag Clear register, Address offset: 0x20 */
Kojto 116:c0f6e94411f5 585 __IO uint32_t RDR; /*!< USART Receive Data register, Address offset: 0x24 */
Kojto 116:c0f6e94411f5 586 __IO uint32_t TDR; /*!< USART Transmit Data register, Address offset: 0x28 */
Kojto 116:c0f6e94411f5 587 } USART_TypeDef;
Kojto 116:c0f6e94411f5 588
Kojto 116:c0f6e94411f5 589 /**
Kojto 116:c0f6e94411f5 590 * @brief Window WATCHDOG
Kojto 116:c0f6e94411f5 591 */
Kojto 116:c0f6e94411f5 592 typedef struct
Kojto 116:c0f6e94411f5 593 {
Kojto 116:c0f6e94411f5 594 __IO uint32_t CR; /*!< WWDG Control register, Address offset: 0x00 */
Kojto 116:c0f6e94411f5 595 __IO uint32_t CFR; /*!< WWDG Configuration register, Address offset: 0x04 */
Kojto 116:c0f6e94411f5 596 __IO uint32_t SR; /*!< WWDG Status register, Address offset: 0x08 */
Kojto 116:c0f6e94411f5 597 } WWDG_TypeDef;
Kojto 116:c0f6e94411f5 598
Kojto 116:c0f6e94411f5 599 /**
Kojto 116:c0f6e94411f5 600 * @brief Universal Serial Bus Full Speed Device
Kojto 116:c0f6e94411f5 601 */
Kojto 116:c0f6e94411f5 602
Kojto 116:c0f6e94411f5 603 typedef struct
Kojto 116:c0f6e94411f5 604 {
Kojto 116:c0f6e94411f5 605 __IO uint16_t EP0R; /*!< USB Endpoint 0 register, Address offset: 0x00 */
Kojto 116:c0f6e94411f5 606 __IO uint16_t RESERVED0; /*!< Reserved */
Kojto 116:c0f6e94411f5 607 __IO uint16_t EP1R; /*!< USB Endpoint 1 register, Address offset: 0x04 */
Kojto 116:c0f6e94411f5 608 __IO uint16_t RESERVED1; /*!< Reserved */
Kojto 116:c0f6e94411f5 609 __IO uint16_t EP2R; /*!< USB Endpoint 2 register, Address offset: 0x08 */
Kojto 116:c0f6e94411f5 610 __IO uint16_t RESERVED2; /*!< Reserved */
Kojto 116:c0f6e94411f5 611 __IO uint16_t EP3R; /*!< USB Endpoint 3 register, Address offset: 0x0C */
Kojto 116:c0f6e94411f5 612 __IO uint16_t RESERVED3; /*!< Reserved */
Kojto 116:c0f6e94411f5 613 __IO uint16_t EP4R; /*!< USB Endpoint 4 register, Address offset: 0x10 */
Kojto 116:c0f6e94411f5 614 __IO uint16_t RESERVED4; /*!< Reserved */
Kojto 116:c0f6e94411f5 615 __IO uint16_t EP5R; /*!< USB Endpoint 5 register, Address offset: 0x14 */
Kojto 116:c0f6e94411f5 616 __IO uint16_t RESERVED5; /*!< Reserved */
Kojto 116:c0f6e94411f5 617 __IO uint16_t EP6R; /*!< USB Endpoint 6 register, Address offset: 0x18 */
Kojto 116:c0f6e94411f5 618 __IO uint16_t RESERVED6; /*!< Reserved */
Kojto 116:c0f6e94411f5 619 __IO uint16_t EP7R; /*!< USB Endpoint 7 register, Address offset: 0x1C */
Kojto 116:c0f6e94411f5 620 __IO uint16_t RESERVED7[17]; /*!< Reserved */
Kojto 116:c0f6e94411f5 621 __IO uint16_t CNTR; /*!< Control register, Address offset: 0x40 */
Kojto 116:c0f6e94411f5 622 __IO uint16_t RESERVED8; /*!< Reserved */
Kojto 116:c0f6e94411f5 623 __IO uint16_t ISTR; /*!< Interrupt status register, Address offset: 0x44 */
Kojto 116:c0f6e94411f5 624 __IO uint16_t RESERVED9; /*!< Reserved */
Kojto 116:c0f6e94411f5 625 __IO uint16_t FNR; /*!< Frame number register, Address offset: 0x48 */
Kojto 116:c0f6e94411f5 626 __IO uint16_t RESERVEDA; /*!< Reserved */
Kojto 116:c0f6e94411f5 627 __IO uint16_t DADDR; /*!< Device address register, Address offset: 0x4C */
Kojto 116:c0f6e94411f5 628 __IO uint16_t RESERVEDB; /*!< Reserved */
Kojto 116:c0f6e94411f5 629 __IO uint16_t BTABLE; /*!< Buffer Table address register, Address offset: 0x50 */
Kojto 116:c0f6e94411f5 630 __IO uint16_t RESERVEDC; /*!< Reserved */
Kojto 116:c0f6e94411f5 631 __IO uint16_t LPMCSR; /*!< LPM Control and Status register, Address offset: 0x54 */
Kojto 116:c0f6e94411f5 632 __IO uint16_t RESERVEDD; /*!< Reserved */
Kojto 116:c0f6e94411f5 633 __IO uint16_t BCDR; /*!< Battery Charging detector register, Address offset: 0x58 */
Kojto 116:c0f6e94411f5 634 __IO uint16_t RESERVEDE; /*!< Reserved */
Kojto 116:c0f6e94411f5 635 } USB_TypeDef;
Kojto 116:c0f6e94411f5 636
Kojto 116:c0f6e94411f5 637 /**
Kojto 116:c0f6e94411f5 638 * @}
Kojto 116:c0f6e94411f5 639 */
Kojto 116:c0f6e94411f5 640
Kojto 116:c0f6e94411f5 641 /** @addtogroup Peripheral_memory_map
Kojto 116:c0f6e94411f5 642 * @{
Kojto 116:c0f6e94411f5 643 */
Kojto 116:c0f6e94411f5 644
Kojto 116:c0f6e94411f5 645 #define FLASH_BASE ((uint32_t)0x08000000) /*!< FLASH base address in the alias region */
Kojto 116:c0f6e94411f5 646 #define FLASH_BANK2_BASE ((uint32_t)0x08018000) /*!< FLASH BANK2 base address in the alias region */
Kojto 116:c0f6e94411f5 647 #define FLASH_BANK1_END ((uint32_t)0x08017FFF) /*!< Program end FLASH BANK1 address */
Kojto 116:c0f6e94411f5 648 #define FLASH_BANK2_END ((uint32_t)0x0802FFFF) /*!< Program end FLASH BANK2 address */
Kojto 116:c0f6e94411f5 649 #define DATA_EEPROM_BASE ((uint32_t)0x08080000) /*!< DATA_EEPROM base address in the alias region */
Kojto 116:c0f6e94411f5 650 #define DATA_EEPROM_BANK2_BASE ((uint32_t)0x08080C00) /*!< DATA EEPROM BANK2 base address in the alias region */
Kojto 116:c0f6e94411f5 651 #define DATA_EEPROM_BANK1_END ((uint32_t)0x08080BFF) /*!< Program end DATA EEPROM BANK1 address */
Kojto 116:c0f6e94411f5 652 #define DATA_EEPROM_BANK2_END ((uint32_t)0x080817FF) /*!< Program end DATA EEPROM BANK2 address */
Kojto 116:c0f6e94411f5 653 #define SRAM_BASE ((uint32_t)0x20000000) /*!< SRAM base address in the alias region */
Kojto 116:c0f6e94411f5 654 #define PERIPH_BASE ((uint32_t)0x40000000) /*!< Peripheral base address in the alias region */
Kojto 116:c0f6e94411f5 655
Kojto 116:c0f6e94411f5 656 /*!< Peripheral memory map */
Kojto 116:c0f6e94411f5 657 #define APBPERIPH_BASE PERIPH_BASE
Kojto 116:c0f6e94411f5 658 #define AHBPERIPH_BASE (PERIPH_BASE + 0x00020000)
Kojto 116:c0f6e94411f5 659 #define IOPPERIPH_BASE (PERIPH_BASE + 0x10000000)
Kojto 116:c0f6e94411f5 660
Kojto 116:c0f6e94411f5 661 #define TIM2_BASE (APBPERIPH_BASE + 0x00000000)
Kojto 116:c0f6e94411f5 662 #define TIM3_BASE (APBPERIPH_BASE + 0x00000400)
Kojto 116:c0f6e94411f5 663 #define TIM6_BASE (APBPERIPH_BASE + 0x00001000)
Kojto 116:c0f6e94411f5 664 #define TIM7_BASE (APBPERIPH_BASE + 0x00001400)
Kojto 116:c0f6e94411f5 665 #define LCD_BASE (APBPERIPH_BASE + 0x00002400)
Kojto 116:c0f6e94411f5 666 #define RTC_BASE (APBPERIPH_BASE + 0x00002800)
Kojto 116:c0f6e94411f5 667 #define WWDG_BASE (APBPERIPH_BASE + 0x00002C00)
Kojto 116:c0f6e94411f5 668 #define IWDG_BASE (APBPERIPH_BASE + 0x00003000)
Kojto 116:c0f6e94411f5 669 #define SPI2_BASE (APBPERIPH_BASE + 0x00003800)
Kojto 116:c0f6e94411f5 670 #define USART2_BASE (APBPERIPH_BASE + 0x00004400)
Kojto 116:c0f6e94411f5 671 #define LPUART1_BASE (APBPERIPH_BASE + 0x00004800)
Kojto 116:c0f6e94411f5 672 #define USART4_BASE (APBPERIPH_BASE + 0x00004C00)
Kojto 116:c0f6e94411f5 673 #define USART5_BASE (APBPERIPH_BASE + 0x00005000)
Kojto 116:c0f6e94411f5 674 #define I2C1_BASE (APBPERIPH_BASE + 0x00005400)
Kojto 116:c0f6e94411f5 675 #define I2C2_BASE (APBPERIPH_BASE + 0x00005800)
Kojto 116:c0f6e94411f5 676 #define CRS_BASE (APBPERIPH_BASE + 0x00006C00)
Kojto 116:c0f6e94411f5 677 #define PWR_BASE (APBPERIPH_BASE + 0x00007000)
Kojto 116:c0f6e94411f5 678 #define DAC_BASE (APBPERIPH_BASE + 0x00007400)
Kojto 116:c0f6e94411f5 679 #define LPTIM1_BASE (APBPERIPH_BASE + 0x00007C00)
Kojto 116:c0f6e94411f5 680 #define I2C3_BASE (APBPERIPH_BASE + 0x00007800)
Kojto 116:c0f6e94411f5 681
Kojto 116:c0f6e94411f5 682 #define SYSCFG_BASE (APBPERIPH_BASE + 0x00010000)
Kojto 116:c0f6e94411f5 683 #define COMP1_BASE (APBPERIPH_BASE + 0x00010018)
Kojto 116:c0f6e94411f5 684 #define COMP2_BASE (APBPERIPH_BASE + 0x0001001C)
Kojto 116:c0f6e94411f5 685 #define EXTI_BASE (APBPERIPH_BASE + 0x00010400)
Kojto 116:c0f6e94411f5 686 #define TIM21_BASE (APBPERIPH_BASE + 0x00010800)
Kojto 116:c0f6e94411f5 687 #define TIM22_BASE (APBPERIPH_BASE + 0x00011400)
Kojto 116:c0f6e94411f5 688 #define FW_BASE (APBPERIPH_BASE + 0x00011C00)
Kojto 116:c0f6e94411f5 689 #define ADC1_BASE (APBPERIPH_BASE + 0x00012400)
Kojto 116:c0f6e94411f5 690 #define ADC_BASE (APBPERIPH_BASE + 0x00012708)
Kojto 116:c0f6e94411f5 691 #define SPI1_BASE (APBPERIPH_BASE + 0x00013000)
Kojto 116:c0f6e94411f5 692 #define USART1_BASE (APBPERIPH_BASE + 0x00013800)
Kojto 116:c0f6e94411f5 693 #define DBGMCU_BASE (APBPERIPH_BASE + 0x00015800)
Kojto 116:c0f6e94411f5 694
Kojto 116:c0f6e94411f5 695 #define DMA1_BASE (AHBPERIPH_BASE + 0x00000000)
Kojto 116:c0f6e94411f5 696 #define DMA1_Channel1_BASE (DMA1_BASE + 0x00000008)
Kojto 116:c0f6e94411f5 697 #define DMA1_Channel2_BASE (DMA1_BASE + 0x0000001C)
Kojto 116:c0f6e94411f5 698 #define DMA1_Channel3_BASE (DMA1_BASE + 0x00000030)
Kojto 116:c0f6e94411f5 699 #define DMA1_Channel4_BASE (DMA1_BASE + 0x00000044)
Kojto 116:c0f6e94411f5 700 #define DMA1_Channel5_BASE (DMA1_BASE + 0x00000058)
Kojto 116:c0f6e94411f5 701 #define DMA1_Channel6_BASE (DMA1_BASE + 0x0000006C)
Kojto 116:c0f6e94411f5 702 #define DMA1_Channel7_BASE (DMA1_BASE + 0x00000080)
Kojto 116:c0f6e94411f5 703 #define DMA1_CSELR_BASE (DMA1_BASE + 0x000000A8)
Kojto 116:c0f6e94411f5 704
Kojto 116:c0f6e94411f5 705
Kojto 116:c0f6e94411f5 706 #define RCC_BASE (AHBPERIPH_BASE + 0x00001000)
Kojto 116:c0f6e94411f5 707 #define FLASH_R_BASE (AHBPERIPH_BASE + 0x00002000) /*!< FLASH registers base address */
Kojto 116:c0f6e94411f5 708 #define OB_BASE ((uint32_t)0x1FF80000) /*!< FLASH Option Bytes base address */
Kojto 116:c0f6e94411f5 709 #define CRC_BASE (AHBPERIPH_BASE + 0x00003000)
Kojto 116:c0f6e94411f5 710 #define TSC_BASE (AHBPERIPH_BASE + 0x00004000)
Kojto 116:c0f6e94411f5 711 #define RNG_BASE (AHBPERIPH_BASE + 0x00005000)
Kojto 116:c0f6e94411f5 712
Kojto 116:c0f6e94411f5 713 #define GPIOA_BASE (IOPPERIPH_BASE + 0x00000000)
Kojto 116:c0f6e94411f5 714 #define GPIOB_BASE (IOPPERIPH_BASE + 0x00000400)
Kojto 116:c0f6e94411f5 715 #define GPIOC_BASE (IOPPERIPH_BASE + 0x00000800)
Kojto 116:c0f6e94411f5 716 #define GPIOD_BASE (IOPPERIPH_BASE + 0x00000C00)
Kojto 116:c0f6e94411f5 717 #define GPIOE_BASE (IOPPERIPH_BASE + 0x00001000)
Kojto 116:c0f6e94411f5 718 #define GPIOH_BASE (IOPPERIPH_BASE + 0x00001C00)
Kojto 116:c0f6e94411f5 719
Kojto 116:c0f6e94411f5 720 /**
Kojto 116:c0f6e94411f5 721 * @}
Kojto 116:c0f6e94411f5 722 */
Kojto 116:c0f6e94411f5 723
Kojto 116:c0f6e94411f5 724 /** @addtogroup Peripheral_declaration
Kojto 116:c0f6e94411f5 725 * @{
Kojto 116:c0f6e94411f5 726 */
Kojto 116:c0f6e94411f5 727
Kojto 116:c0f6e94411f5 728 #define TIM2 ((TIM_TypeDef *) TIM2_BASE)
Kojto 116:c0f6e94411f5 729 #define TIM3 ((TIM_TypeDef *) TIM3_BASE)
Kojto 116:c0f6e94411f5 730 #define TIM6 ((TIM_TypeDef *) TIM6_BASE)
Kojto 116:c0f6e94411f5 731 #define TIM7 ((TIM_TypeDef *) TIM7_BASE)
Kojto 116:c0f6e94411f5 732 #define RTC ((RTC_TypeDef *) RTC_BASE)
Kojto 116:c0f6e94411f5 733 #define WWDG ((WWDG_TypeDef *) WWDG_BASE)
Kojto 116:c0f6e94411f5 734 #define IWDG ((IWDG_TypeDef *) IWDG_BASE)
Kojto 116:c0f6e94411f5 735 #define SPI2 ((SPI_TypeDef *) SPI2_BASE)
Kojto 116:c0f6e94411f5 736 #define USART2 ((USART_TypeDef *) USART2_BASE)
Kojto 116:c0f6e94411f5 737 #define LPUART1 ((USART_TypeDef *) LPUART1_BASE)
Kojto 116:c0f6e94411f5 738 #define I2C1 ((I2C_TypeDef *) I2C1_BASE)
Kojto 116:c0f6e94411f5 739 #define I2C2 ((I2C_TypeDef *) I2C2_BASE)
Kojto 116:c0f6e94411f5 740 #define I2C3 ((I2C_TypeDef *) I2C3_BASE)
Kojto 116:c0f6e94411f5 741 #define CRS ((CRS_TypeDef *) CRS_BASE)
Kojto 116:c0f6e94411f5 742 #define PWR ((PWR_TypeDef *) PWR_BASE)
Kojto 116:c0f6e94411f5 743 #define DAC ((DAC_TypeDef *) DAC_BASE)
Kojto 116:c0f6e94411f5 744 #define LPTIM1 ((LPTIM_TypeDef *) LPTIM1_BASE)
Kojto 116:c0f6e94411f5 745 #define LCD ((LCD_TypeDef *) LCD_BASE)
Kojto 116:c0f6e94411f5 746 #define USART4 ((USART_TypeDef *) USART4_BASE)
Kojto 116:c0f6e94411f5 747 #define USART5 ((USART_TypeDef *) USART5_BASE)
Kojto 116:c0f6e94411f5 748
Kojto 116:c0f6e94411f5 749 #define SYSCFG ((SYSCFG_TypeDef *) SYSCFG_BASE)
Kojto 116:c0f6e94411f5 750 #define COMP1 ((COMP_TypeDef *) COMP1_BASE)
Kojto 116:c0f6e94411f5 751 #define COMP2 ((COMP_TypeDef *) COMP2_BASE)
Kojto 116:c0f6e94411f5 752 #define EXTI ((EXTI_TypeDef *) EXTI_BASE)
Kojto 116:c0f6e94411f5 753 #define TIM21 ((TIM_TypeDef *) TIM21_BASE)
Kojto 116:c0f6e94411f5 754 #define TIM22 ((TIM_TypeDef *) TIM22_BASE)
Kojto 116:c0f6e94411f5 755 #define FW ((FW_TypeDef *) FW_BASE)
Kojto 116:c0f6e94411f5 756 #define ADC1 ((ADC_TypeDef *) ADC1_BASE)
Kojto 116:c0f6e94411f5 757 #define ADC ((ADC_Common_TypeDef *) ADC_BASE)
Kojto 116:c0f6e94411f5 758 #define SPI1 ((SPI_TypeDef *) SPI1_BASE)
Kojto 116:c0f6e94411f5 759 #define USART1 ((USART_TypeDef *) USART1_BASE)
Kojto 116:c0f6e94411f5 760 #define DBGMCU ((DBGMCU_TypeDef *) DBGMCU_BASE)
Kojto 116:c0f6e94411f5 761
Kojto 116:c0f6e94411f5 762 #define DMA1 ((DMA_TypeDef *) DMA1_BASE)
Kojto 116:c0f6e94411f5 763 #define DMA1_Channel1 ((DMA_Channel_TypeDef *) DMA1_Channel1_BASE)
Kojto 116:c0f6e94411f5 764 #define DMA1_Channel2 ((DMA_Channel_TypeDef *) DMA1_Channel2_BASE)
Kojto 116:c0f6e94411f5 765 #define DMA1_Channel3 ((DMA_Channel_TypeDef *) DMA1_Channel3_BASE)
Kojto 116:c0f6e94411f5 766 #define DMA1_Channel4 ((DMA_Channel_TypeDef *) DMA1_Channel4_BASE)
Kojto 116:c0f6e94411f5 767 #define DMA1_Channel5 ((DMA_Channel_TypeDef *) DMA1_Channel5_BASE)
Kojto 116:c0f6e94411f5 768 #define DMA1_Channel6 ((DMA_Channel_TypeDef *) DMA1_Channel6_BASE)
Kojto 116:c0f6e94411f5 769 #define DMA1_Channel7 ((DMA_Channel_TypeDef *) DMA1_Channel7_BASE)
Kojto 116:c0f6e94411f5 770 #define DMA1_CSELR ((DMA_Request_TypeDef *) DMA1_CSELR_BASE)
Kojto 116:c0f6e94411f5 771
Kojto 116:c0f6e94411f5 772
Kojto 116:c0f6e94411f5 773 #define FLASH ((FLASH_TypeDef *) FLASH_R_BASE)
Kojto 116:c0f6e94411f5 774 #define OB ((OB_TypeDef *) OB_BASE)
Kojto 116:c0f6e94411f5 775 #define RCC ((RCC_TypeDef *) RCC_BASE)
Kojto 116:c0f6e94411f5 776 #define CRC ((CRC_TypeDef *) CRC_BASE)
Kojto 116:c0f6e94411f5 777 #define TSC ((TSC_TypeDef *) TSC_BASE)
Kojto 116:c0f6e94411f5 778 #define RNG ((RNG_TypeDef *) RNG_BASE)
Kojto 116:c0f6e94411f5 779
Kojto 116:c0f6e94411f5 780 #define GPIOA ((GPIO_TypeDef *) GPIOA_BASE)
Kojto 116:c0f6e94411f5 781 #define GPIOB ((GPIO_TypeDef *) GPIOB_BASE)
Kojto 116:c0f6e94411f5 782 #define GPIOC ((GPIO_TypeDef *) GPIOC_BASE)
Kojto 116:c0f6e94411f5 783 #define GPIOD ((GPIO_TypeDef *) GPIOD_BASE)
Kojto 116:c0f6e94411f5 784 #define GPIOE ((GPIO_TypeDef *) GPIOE_BASE)
Kojto 116:c0f6e94411f5 785 #define GPIOH ((GPIO_TypeDef *) GPIOH_BASE)
Kojto 116:c0f6e94411f5 786
Kojto 116:c0f6e94411f5 787 #define USB ((USB_TypeDef *) USB_BASE)
Kojto 116:c0f6e94411f5 788
Kojto 116:c0f6e94411f5 789 /**
Kojto 116:c0f6e94411f5 790 * @}
Kojto 116:c0f6e94411f5 791 */
Kojto 116:c0f6e94411f5 792
Kojto 116:c0f6e94411f5 793 /** @addtogroup Exported_constants
Kojto 116:c0f6e94411f5 794 * @{
Kojto 116:c0f6e94411f5 795 */
Kojto 116:c0f6e94411f5 796
Kojto 116:c0f6e94411f5 797 /** @addtogroup Peripheral_Registers_Bits_Definition
Kojto 116:c0f6e94411f5 798 * @{
Kojto 116:c0f6e94411f5 799 */
Kojto 116:c0f6e94411f5 800
Kojto 116:c0f6e94411f5 801 /******************************************************************************/
Kojto 116:c0f6e94411f5 802 /* Peripheral Registers Bits Definition */
Kojto 116:c0f6e94411f5 803 /******************************************************************************/
Kojto 116:c0f6e94411f5 804 /******************************************************************************/
Kojto 116:c0f6e94411f5 805 /* */
Kojto 116:c0f6e94411f5 806 /* Analog to Digital Converter (ADC) */
Kojto 116:c0f6e94411f5 807 /* */
Kojto 116:c0f6e94411f5 808 /******************************************************************************/
Kojto 116:c0f6e94411f5 809 /******************** Bits definition for ADC_ISR register ******************/
Kojto 116:c0f6e94411f5 810 #define ADC_ISR_EOCAL ((uint32_t)0x00000800) /*!< End of calibration flag */
Kojto 116:c0f6e94411f5 811 #define ADC_ISR_AWD ((uint32_t)0x00000080) /*!< Analog watchdog flag */
Kojto 116:c0f6e94411f5 812 #define ADC_ISR_OVR ((uint32_t)0x00000010) /*!< Overrun flag */
Kojto 116:c0f6e94411f5 813 #define ADC_ISR_EOSEQ ((uint32_t)0x00000008) /*!< End of Sequence flag */
Kojto 116:c0f6e94411f5 814 #define ADC_ISR_EOC ((uint32_t)0x00000004) /*!< End of Conversion */
Kojto 116:c0f6e94411f5 815 #define ADC_ISR_EOSMP ((uint32_t)0x00000002) /*!< End of sampling flag */
Kojto 116:c0f6e94411f5 816 #define ADC_ISR_ADRDY ((uint32_t)0x00000001) /*!< ADC Ready */
Kojto 116:c0f6e94411f5 817
Kojto 116:c0f6e94411f5 818 /* Old EOSEQ bit definition, maintained for legacy purpose */
Kojto 116:c0f6e94411f5 819 #define ADC_ISR_EOS ADC_ISR_EOSEQ
Kojto 116:c0f6e94411f5 820
Kojto 116:c0f6e94411f5 821 /******************** Bits definition for ADC_IER register ******************/
Kojto 116:c0f6e94411f5 822 #define ADC_IER_EOCALIE ((uint32_t)0x00000800) /*!< Enf Of Calibration interrupt enable */
Kojto 116:c0f6e94411f5 823 #define ADC_IER_AWDIE ((uint32_t)0x00000080) /*!< Analog Watchdog interrupt enable */
Kojto 116:c0f6e94411f5 824 #define ADC_IER_OVRIE ((uint32_t)0x00000010) /*!< Overrun interrupt enable */
Kojto 116:c0f6e94411f5 825 #define ADC_IER_EOSEQIE ((uint32_t)0x00000008) /*!< End of Sequence of conversion interrupt enable */
Kojto 116:c0f6e94411f5 826 #define ADC_IER_EOCIE ((uint32_t)0x00000004) /*!< End of Conversion interrupt enable */
Kojto 116:c0f6e94411f5 827 #define ADC_IER_EOSMPIE ((uint32_t)0x00000002) /*!< End of sampling interrupt enable */
Kojto 116:c0f6e94411f5 828 #define ADC_IER_ADRDYIE ((uint32_t)0x00000001) /*!< ADC Ready interrupt enable */
Kojto 116:c0f6e94411f5 829
Kojto 116:c0f6e94411f5 830 /* Old EOSEQIE bit definition, maintained for legacy purpose */
Kojto 116:c0f6e94411f5 831 #define ADC_IER_EOSIE ADC_IER_EOSEQIE
Kojto 116:c0f6e94411f5 832
Kojto 116:c0f6e94411f5 833 /******************** Bits definition for ADC_CR register *******************/
Kojto 116:c0f6e94411f5 834 #define ADC_CR_ADCAL ((uint32_t)0x80000000) /*!< ADC calibration */
Kojto 116:c0f6e94411f5 835 #define ADC_CR_ADVREGEN ((uint32_t)0x10000000) /*!< ADC Voltage Regulator Enable */
Kojto 116:c0f6e94411f5 836 #define ADC_CR_ADSTP ((uint32_t)0x00000010) /*!< ADC stop of conversion command */
Kojto 116:c0f6e94411f5 837 #define ADC_CR_ADSTART ((uint32_t)0x00000004) /*!< ADC start of conversion */
Kojto 116:c0f6e94411f5 838 #define ADC_CR_ADDIS ((uint32_t)0x00000002) /*!< ADC disable command */
Kojto 116:c0f6e94411f5 839 #define ADC_CR_ADEN ((uint32_t)0x00000001) /*!< ADC enable control */ /*#### TBV */
Kojto 116:c0f6e94411f5 840
Kojto 116:c0f6e94411f5 841 /******************* Bits definition for ADC_CFGR1 register *****************/
Kojto 116:c0f6e94411f5 842 #define ADC_CFGR1_AWDCH ((uint32_t)0x7C000000) /*!< AWDCH[4:0] bits (Analog watchdog channel select bits) */
Kojto 116:c0f6e94411f5 843 #define ADC_CFGR1_AWDCH_0 ((uint32_t)0x04000000) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 844 #define ADC_CFGR1_AWDCH_1 ((uint32_t)0x08000000) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 845 #define ADC_CFGR1_AWDCH_2 ((uint32_t)0x10000000) /*!< Bit 2 */
Kojto 116:c0f6e94411f5 846 #define ADC_CFGR1_AWDCH_3 ((uint32_t)0x20000000) /*!< Bit 3 */
Kojto 116:c0f6e94411f5 847 #define ADC_CFGR1_AWDCH_4 ((uint32_t)0x40000000) /*!< Bit 4 */
Kojto 116:c0f6e94411f5 848 #define ADC_CFGR1_AWDEN ((uint32_t)0x00800000) /*!< Analog watchdog enable on regular channels */
Kojto 116:c0f6e94411f5 849 #define ADC_CFGR1_AWDSGL ((uint32_t)0x00400000) /*!< Enable the watchdog on a single channel or on all channels */
Kojto 116:c0f6e94411f5 850 #define ADC_CFGR1_DISCEN ((uint32_t)0x00010000) /*!< Discontinuous mode on regular channels */
Kojto 116:c0f6e94411f5 851 #define ADC_CFGR1_AUTOFF ((uint32_t)0x00008000) /*!< ADC auto power off */
Kojto 116:c0f6e94411f5 852 #define ADC_CFGR1_WAIT ((uint32_t)0x00004000) /*!< ADC wait conversion mode */
Kojto 116:c0f6e94411f5 853 #define ADC_CFGR1_CONT ((uint32_t)0x00002000) /*!< Continuous Conversion */
Kojto 116:c0f6e94411f5 854 #define ADC_CFGR1_OVRMOD ((uint32_t)0x00001000) /*!< Overrun mode */
Kojto 116:c0f6e94411f5 855 #define ADC_CFGR1_EXTEN ((uint32_t)0x00000C00) /*!< EXTEN[1:0] bits (External Trigger Conversion mode for regular channels) */
Kojto 116:c0f6e94411f5 856 #define ADC_CFGR1_EXTEN_0 ((uint32_t)0x00000400) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 857 #define ADC_CFGR1_EXTEN_1 ((uint32_t)0x00000800) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 858 #define ADC_CFGR1_EXTSEL ((uint32_t)0x000001C0) /*!< EXTSEL[2:0] bits (External Event Select for regular group) */
Kojto 116:c0f6e94411f5 859 #define ADC_CFGR1_EXTSEL_0 ((uint32_t)0x00000040) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 860 #define ADC_CFGR1_EXTSEL_1 ((uint32_t)0x00000080) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 861 #define ADC_CFGR1_EXTSEL_2 ((uint32_t)0x00000100) /*!< Bit 2 */
Kojto 116:c0f6e94411f5 862 #define ADC_CFGR1_ALIGN ((uint32_t)0x00000020) /*!< Data Alignment */
Kojto 116:c0f6e94411f5 863 #define ADC_CFGR1_RES ((uint32_t)0x00000018) /*!< RES[1:0] bits (Resolution) */
Kojto 116:c0f6e94411f5 864 #define ADC_CFGR1_RES_0 ((uint32_t)0x00000008) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 865 #define ADC_CFGR1_RES_1 ((uint32_t)0x00000010) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 866 #define ADC_CFGR1_SCANDIR ((uint32_t)0x00000004) /*!< Sequence scan direction */
Kojto 116:c0f6e94411f5 867 #define ADC_CFGR1_DMACFG ((uint32_t)0x00000002) /*!< Direct memory access configuration */
Kojto 116:c0f6e94411f5 868 #define ADC_CFGR1_DMAEN ((uint32_t)0x00000001) /*!< Direct memory access enable */
Kojto 116:c0f6e94411f5 869
Kojto 116:c0f6e94411f5 870 /* Old WAIT bit definition, maintained for legacy purpose */
Kojto 116:c0f6e94411f5 871 #define ADC_CFGR1_AUTDLY ADC_CFGR1_WAIT
Kojto 116:c0f6e94411f5 872
Kojto 116:c0f6e94411f5 873 /******************* Bits definition for ADC_CFGR2 register *****************/
Kojto 116:c0f6e94411f5 874 #define ADC_CFGR2_TOVS ((uint32_t)0x80000200) /*!< Triggered Oversampling */
Kojto 116:c0f6e94411f5 875 #define ADC_CFGR2_OVSS ((uint32_t)0x000001E0) /*!< OVSS [3:0] bits (Oversampling shift) */
Kojto 116:c0f6e94411f5 876 #define ADC_CFGR2_OVSS_0 ((uint32_t)0x00000020) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 877 #define ADC_CFGR2_OVSS_1 ((uint32_t)0x00000040) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 878 #define ADC_CFGR2_OVSS_2 ((uint32_t)0x00000080) /*!< Bit 2 */
Kojto 116:c0f6e94411f5 879 #define ADC_CFGR2_OVSS_3 ((uint32_t)0x00000100) /*!< Bit 3 */
Kojto 116:c0f6e94411f5 880 #define ADC_CFGR2_OVSR ((uint32_t)0x0000001C) /*!< OVSR [2:0] bits (Oversampling ratio) */
Kojto 116:c0f6e94411f5 881 #define ADC_CFGR2_OVSR_0 ((uint32_t)0x00000004) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 882 #define ADC_CFGR2_OVSR_1 ((uint32_t)0x00000008) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 883 #define ADC_CFGR2_OVSR_2 ((uint32_t)0x00000010) /*!< Bit 2 */
Kojto 116:c0f6e94411f5 884 #define ADC_CFGR2_OVSE ((uint32_t)0x00000001) /*!< Oversampler Enable */
Kojto 116:c0f6e94411f5 885 #define ADC_CFGR2_CKMODE ((uint32_t)0xC0000000) /*!< CKMODE [1:0] bits (ADC clock mode) */
Kojto 116:c0f6e94411f5 886 #define ADC_CFGR2_CKMODE_0 ((uint32_t)0x40000000) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 887 #define ADC_CFGR2_CKMODE_1 ((uint32_t)0x80000000) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 888
Kojto 116:c0f6e94411f5 889
Kojto 116:c0f6e94411f5 890 /****************** Bit definition for ADC_SMPR register ********************/
Kojto 116:c0f6e94411f5 891 #define ADC_SMPR_SMP ((uint32_t)0x00000007) /*!< SMPR[2:0] bits (Sampling time selection) */
Kojto 116:c0f6e94411f5 892 #define ADC_SMPR_SMP_0 ((uint32_t)0x00000001) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 893 #define ADC_SMPR_SMP_1 ((uint32_t)0x00000002) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 894 #define ADC_SMPR_SMP_2 ((uint32_t)0x00000004) /*!< Bit 2 */
Kojto 116:c0f6e94411f5 895
Kojto 116:c0f6e94411f5 896 /* Bit names aliases maintained for legacy */
Kojto 116:c0f6e94411f5 897 #define ADC_SMPR_SMPR ADC_SMPR_SMP
Kojto 116:c0f6e94411f5 898 #define ADC_SMPR_SMPR_0 ADC_SMPR_SMP_0
Kojto 116:c0f6e94411f5 899 #define ADC_SMPR_SMPR_1 ADC_SMPR_SMP_1
Kojto 116:c0f6e94411f5 900 #define ADC_SMPR_SMPR_2 ADC_SMPR_SMP_2
Kojto 116:c0f6e94411f5 901
Kojto 116:c0f6e94411f5 902 /******************* Bit definition for ADC_TR register ********************/
Kojto 116:c0f6e94411f5 903 #define ADC_TR_HT ((uint32_t)0x0FFF0000) /*!< Analog watchdog high threshold */
Kojto 116:c0f6e94411f5 904 #define ADC_TR_LT ((uint32_t)0x00000FFF) /*!< Analog watchdog low threshold */
Kojto 116:c0f6e94411f5 905
Kojto 116:c0f6e94411f5 906 /****************** Bit definition for ADC_CHSELR register ******************/
Kojto 116:c0f6e94411f5 907 #define ADC_CHSELR_CHSEL18 ((uint32_t)0x00040000) /*!< Channel 18 selection */
Kojto 116:c0f6e94411f5 908 #define ADC_CHSELR_CHSEL17 ((uint32_t)0x00020000) /*!< Channel 17 selection */
Kojto 116:c0f6e94411f5 909 #define ADC_CHSELR_CHSEL16 ((uint32_t)0x00010000) /*!< Channel 16 selection */
Kojto 116:c0f6e94411f5 910 #define ADC_CHSELR_CHSEL15 ((uint32_t)0x00008000) /*!< Channel 15 selection */
Kojto 116:c0f6e94411f5 911 #define ADC_CHSELR_CHSEL14 ((uint32_t)0x00004000) /*!< Channel 14 selection */
Kojto 116:c0f6e94411f5 912 #define ADC_CHSELR_CHSEL13 ((uint32_t)0x00002000) /*!< Channel 13 selection */
Kojto 116:c0f6e94411f5 913 #define ADC_CHSELR_CHSEL12 ((uint32_t)0x00001000) /*!< Channel 12 selection */
Kojto 116:c0f6e94411f5 914 #define ADC_CHSELR_CHSEL11 ((uint32_t)0x00000800) /*!< Channel 11 selection */
Kojto 116:c0f6e94411f5 915 #define ADC_CHSELR_CHSEL10 ((uint32_t)0x00000400) /*!< Channel 10 selection */
Kojto 116:c0f6e94411f5 916 #define ADC_CHSELR_CHSEL9 ((uint32_t)0x00000200) /*!< Channel 9 selection */
Kojto 116:c0f6e94411f5 917 #define ADC_CHSELR_CHSEL8 ((uint32_t)0x00000100) /*!< Channel 8 selection */
Kojto 116:c0f6e94411f5 918 #define ADC_CHSELR_CHSEL7 ((uint32_t)0x00000080) /*!< Channel 7 selection */
Kojto 116:c0f6e94411f5 919 #define ADC_CHSELR_CHSEL6 ((uint32_t)0x00000040) /*!< Channel 6 selection */
Kojto 116:c0f6e94411f5 920 #define ADC_CHSELR_CHSEL5 ((uint32_t)0x00000020) /*!< Channel 5 selection */
Kojto 116:c0f6e94411f5 921 #define ADC_CHSELR_CHSEL4 ((uint32_t)0x00000010) /*!< Channel 4 selection */
Kojto 116:c0f6e94411f5 922 #define ADC_CHSELR_CHSEL3 ((uint32_t)0x00000008) /*!< Channel 3 selection */
Kojto 116:c0f6e94411f5 923 #define ADC_CHSELR_CHSEL2 ((uint32_t)0x00000004) /*!< Channel 2 selection */
Kojto 116:c0f6e94411f5 924 #define ADC_CHSELR_CHSEL1 ((uint32_t)0x00000002) /*!< Channel 1 selection */
Kojto 116:c0f6e94411f5 925 #define ADC_CHSELR_CHSEL0 ((uint32_t)0x00000001) /*!< Channel 0 selection */
Kojto 116:c0f6e94411f5 926
Kojto 116:c0f6e94411f5 927 /******************** Bit definition for ADC_DR register ********************/
Kojto 116:c0f6e94411f5 928 #define ADC_DR_DATA ((uint32_t)0x0000FFFF) /*!< Regular data */
Kojto 116:c0f6e94411f5 929
Kojto 116:c0f6e94411f5 930 /******************** Bit definition for ADC_CALFACT register ********************/
Kojto 116:c0f6e94411f5 931 #define ADC_CALFACT_CALFACT ((uint32_t)0x0000007F) /*!< Calibration factor */
Kojto 116:c0f6e94411f5 932
Kojto 116:c0f6e94411f5 933 /******************* Bit definition for ADC_CCR register ********************/
Kojto 116:c0f6e94411f5 934 #define ADC_CCR_LFMEN ((uint32_t)0x02000000) /*!< Low Frequency Mode enable */
Kojto 116:c0f6e94411f5 935 #define ADC_CCR_VLCDEN ((uint32_t)0x01000000) /*!< Voltage battery enable */
Kojto 116:c0f6e94411f5 936 #define ADC_CCR_TSEN ((uint32_t)0x00800000) /*!< Temperature sensore enable */
Kojto 116:c0f6e94411f5 937 #define ADC_CCR_VREFEN ((uint32_t)0x00400000) /*!< Vrefint enable */
Kojto 116:c0f6e94411f5 938 #define ADC_CCR_PRESC ((uint32_t)0x003C0000) /*!< PRESC [3:0] bits (ADC prescaler) */
Kojto 116:c0f6e94411f5 939 #define ADC_CCR_PRESC_0 ((uint32_t)0x00040000) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 940 #define ADC_CCR_PRESC_1 ((uint32_t)0x00080000) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 941 #define ADC_CCR_PRESC_2 ((uint32_t)0x00100000) /*!< Bit 2 */
Kojto 116:c0f6e94411f5 942 #define ADC_CCR_PRESC_3 ((uint32_t)0x00200000) /*!< Bit 3 */
Kojto 116:c0f6e94411f5 943
Kojto 116:c0f6e94411f5 944 /******************************************************************************/
Kojto 116:c0f6e94411f5 945 /* */
Kojto 116:c0f6e94411f5 946 /* Analog Comparators (COMP) */
Kojto 116:c0f6e94411f5 947 /* */
Kojto 116:c0f6e94411f5 948 /******************************************************************************/
Kojto 116:c0f6e94411f5 949 /************* Bit definition for COMP_CSR register (COMP1 and COMP2) **************/
Kojto 116:c0f6e94411f5 950 /* COMP1 bits definition */
Kojto 116:c0f6e94411f5 951 #define COMP_CSR_COMP1EN ((uint32_t)0x00000001) /*!< COMP1 enable */
Kojto 116:c0f6e94411f5 952 #define COMP_CSR_COMP1INNSEL ((uint32_t)0x00000030) /*!< COMP1 inverting input select */
Kojto 116:c0f6e94411f5 953 #define COMP_CSR_COMP1INNSEL_0 ((uint32_t)0x00000010) /*!< COMP1 inverting input select bit 0 */
Kojto 116:c0f6e94411f5 954 #define COMP_CSR_COMP1INNSEL_1 ((uint32_t)0x00000020) /*!< COMP1 inverting input select bit 1 */
Kojto 116:c0f6e94411f5 955 #define COMP_CSR_COMP1WM ((uint32_t)0x00000100) /*!< Comparators window mode enable */
Kojto 116:c0f6e94411f5 956 #define COMP_CSR_COMP1LPTIM1IN1 ((uint32_t)0x00001000) /*!< COMP1 LPTIM1 IN1 connection */
Kojto 116:c0f6e94411f5 957 #define COMP_CSR_COMP1POLARITY ((uint32_t)0x00008000) /*!< COMP1 output polarity */
Kojto 116:c0f6e94411f5 958 #define COMP_CSR_COMP1VALUE ((uint32_t)0x40000000) /*!< COMP1 output level */
Kojto 116:c0f6e94411f5 959 #define COMP_CSR_COMP1LOCK ((uint32_t)0x80000000) /*!< COMP1 lock */
Kojto 116:c0f6e94411f5 960 /* COMP2 bits definition */
Kojto 116:c0f6e94411f5 961 #define COMP_CSR_COMP2EN ((uint32_t)0x00000001) /*!< COMP2 enable */
Kojto 116:c0f6e94411f5 962 #define COMP_CSR_COMP2SPEED ((uint32_t)0x000C0008) /*!< COMP2 power mode */
Kojto 116:c0f6e94411f5 963 #define COMP_CSR_COMP2INNSEL ((uint32_t)0x00100070) /*!< COMP2 inverting input select */
Kojto 116:c0f6e94411f5 964 #define COMP_CSR_COMP2INNSEL_0 ((uint32_t)0x00100010) /*!< COMP2 inverting input select bit 0 */
Kojto 116:c0f6e94411f5 965 #define COMP_CSR_COMP2INNSEL_1 ((uint32_t)0x00200020) /*!< COMP2 inverting input select bit 1 */
Kojto 116:c0f6e94411f5 966 #define COMP_CSR_COMP2INNSEL_2 ((uint32_t)0x00400040) /*!< COMP2 inverting input select bit 2 */
Kojto 116:c0f6e94411f5 967 #define COMP_CSR_COMP2INPSEL ((uint32_t)0x00000700) /*!< COMPx non inverting input select */
Kojto 116:c0f6e94411f5 968 #define COMP_CSR_COMP2INPSEL_0 ((uint32_t)0x00000100) /*!< COMPx non inverting input select */
Kojto 116:c0f6e94411f5 969 #define COMP_CSR_COMP2INPSEL_1 ((uint32_t)0x00000200) /*!< COMPx non inverting input select */
Kojto 116:c0f6e94411f5 970 #define COMP_CSR_COMP2INPSEL_2 ((uint32_t)0x00000400) /*!< COMPx non inverting input select */
Kojto 116:c0f6e94411f5 971 #define COMP_CSR_COMP2LPTIM1IN2 ((uint32_t)0x00001000) /*!< COMP2 LPTIM1 IN2 connection */
Kojto 116:c0f6e94411f5 972 #define COMP_CSR_COMP2POLARITY ((uint32_t)0x00008000) /*!< COMP2 output polarity */
Kojto 116:c0f6e94411f5 973 #define COMP_CSR_COMP2VALUE ((uint32_t)0x40000000) /*!< COMP2 output level */
Kojto 116:c0f6e94411f5 974 #define COMP_CSR_COMP2LOCK ((uint32_t)0x80000000) /*!< COMP2 lock */
Kojto 116:c0f6e94411f5 975
Kojto 116:c0f6e94411f5 976 /********************** Bit definition for COMP_CSR register common ****************/
Kojto 116:c0f6e94411f5 977 #define COMP_CSR_COMPxEN ((uint32_t)0x00000001) /*!< COMPx enable */
Kojto 116:c0f6e94411f5 978 #define COMP_CSR_COMPxPOLARITY ((uint32_t)0x00008000) /*!< COMPx output polarity */
Kojto 116:c0f6e94411f5 979 #define COMP_CSR_COMPxOUTVALUE ((uint32_t)0x40000000) /*!< COMPx output level */
Kojto 116:c0f6e94411f5 980 #define COMP_CSR_COMPxLOCK ((uint32_t)0x80000000) /*!< COMPx lock */
Kojto 116:c0f6e94411f5 981
Kojto 116:c0f6e94411f5 982
Kojto 116:c0f6e94411f5 983 /******************************************************************************/
Kojto 116:c0f6e94411f5 984 /* */
Kojto 116:c0f6e94411f5 985 /* CRC calculation unit (CRC) */
Kojto 116:c0f6e94411f5 986 /* */
Kojto 116:c0f6e94411f5 987 /******************************************************************************/
Kojto 116:c0f6e94411f5 988 /******************* Bit definition for CRC_DR register *********************/
Kojto 116:c0f6e94411f5 989 #define CRC_DR_DR ((uint32_t)0xFFFFFFFF) /*!< Data register bits */
Kojto 116:c0f6e94411f5 990
Kojto 116:c0f6e94411f5 991 /******************* Bit definition for CRC_IDR register ********************/
Kojto 116:c0f6e94411f5 992 #define CRC_IDR_IDR ((uint32_t)0x000000FF) /*!< General-purpose 8-bit data register bits */
Kojto 116:c0f6e94411f5 993
Kojto 116:c0f6e94411f5 994 /******************** Bit definition for CRC_CR register ********************/
Kojto 116:c0f6e94411f5 995 #define CRC_CR_RESET ((uint32_t)0x00000001) /*!< RESET the CRC computation unit bit */
Kojto 116:c0f6e94411f5 996 #define CRC_CR_POLYSIZE ((uint32_t)0x00000018) /*!< Polynomial size bits */
Kojto 116:c0f6e94411f5 997 #define CRC_CR_POLYSIZE_0 ((uint32_t)0x00000008) /*!< Polynomial size bit 0 */
Kojto 116:c0f6e94411f5 998 #define CRC_CR_POLYSIZE_1 ((uint32_t)0x00000010) /*!< Polynomial size bit 1 */
Kojto 116:c0f6e94411f5 999 #define CRC_CR_REV_IN ((uint32_t)0x00000060) /*!< REV_IN Reverse Input Data bits */
Kojto 116:c0f6e94411f5 1000 #define CRC_CR_REV_IN_0 ((uint32_t)0x00000020) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 1001 #define CRC_CR_REV_IN_1 ((uint32_t)0x00000040) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 1002 #define CRC_CR_REV_OUT ((uint32_t)0x00000080) /*!< REV_OUT Reverse Output Data bits */
Kojto 116:c0f6e94411f5 1003
Kojto 116:c0f6e94411f5 1004 /******************* Bit definition for CRC_INIT register *******************/
Kojto 116:c0f6e94411f5 1005 #define CRC_INIT_INIT ((uint32_t)0xFFFFFFFF) /*!< Initial CRC value bits */
Kojto 116:c0f6e94411f5 1006
Kojto 116:c0f6e94411f5 1007 /******************* Bit definition for CRC_POL register ********************/
Kojto 116:c0f6e94411f5 1008 #define CRC_POL_POL ((uint32_t)0xFFFFFFFF) /*!< Coefficients of the polynomial */
Kojto 116:c0f6e94411f5 1009
Kojto 116:c0f6e94411f5 1010 /******************************************************************************/
Kojto 116:c0f6e94411f5 1011 /* */
Kojto 116:c0f6e94411f5 1012 /* CRS Clock Recovery System */
Kojto 116:c0f6e94411f5 1013 /* */
Kojto 116:c0f6e94411f5 1014 /******************************************************************************/
Kojto 116:c0f6e94411f5 1015
Kojto 116:c0f6e94411f5 1016 /******************* Bit definition for CRS_CR register *********************/
Kojto 116:c0f6e94411f5 1017 #define CRS_CR_SYNCOKIE ((uint32_t)0x00000001) /* SYNC event OK interrupt enable */
Kojto 116:c0f6e94411f5 1018 #define CRS_CR_SYNCWARNIE ((uint32_t)0x00000002) /* SYNC warning interrupt enable */
Kojto 116:c0f6e94411f5 1019 #define CRS_CR_ERRIE ((uint32_t)0x00000004) /* SYNC error interrupt enable */
Kojto 116:c0f6e94411f5 1020 #define CRS_CR_ESYNCIE ((uint32_t)0x00000008) /* Expected SYNC(ESYNCF) interrupt Enable*/
Kojto 116:c0f6e94411f5 1021 #define CRS_CR_CEN ((uint32_t)0x00000020) /* Frequency error counter enable */
Kojto 116:c0f6e94411f5 1022 #define CRS_CR_AUTOTRIMEN ((uint32_t)0x00000040) /* Automatic trimming enable */
Kojto 116:c0f6e94411f5 1023 #define CRS_CR_SWSYNC ((uint32_t)0x00000080) /* A Software SYNC event is generated */
Kojto 116:c0f6e94411f5 1024 #define CRS_CR_TRIM ((uint32_t)0x00003F00) /* HSI48 oscillator smooth trimming */
Kojto 116:c0f6e94411f5 1025
Kojto 116:c0f6e94411f5 1026 /******************* Bit definition for CRS_CFGR register *********************/
Kojto 116:c0f6e94411f5 1027 #define CRS_CFGR_RELOAD ((uint32_t)0x0000FFFF) /* Counter reload value */
Kojto 116:c0f6e94411f5 1028 #define CRS_CFGR_FELIM ((uint32_t)0x00FF0000) /* Frequency error limit */
Kojto 116:c0f6e94411f5 1029
Kojto 116:c0f6e94411f5 1030 #define CRS_CFGR_SYNCDIV ((uint32_t)0x07000000) /* SYNC divider */
Kojto 116:c0f6e94411f5 1031 #define CRS_CFGR_SYNCDIV_0 ((uint32_t)0x01000000) /* Bit 0 */
Kojto 116:c0f6e94411f5 1032 #define CRS_CFGR_SYNCDIV_1 ((uint32_t)0x02000000) /* Bit 1 */
Kojto 116:c0f6e94411f5 1033 #define CRS_CFGR_SYNCDIV_2 ((uint32_t)0x04000000) /* Bit 2 */
Kojto 116:c0f6e94411f5 1034
Kojto 116:c0f6e94411f5 1035 #define CRS_CFGR_SYNCSRC ((uint32_t)0x30000000) /* SYNC signal source selection */
Kojto 116:c0f6e94411f5 1036 #define CRS_CFGR_SYNCSRC_0 ((uint32_t)0x10000000) /* Bit 0 */
Kojto 116:c0f6e94411f5 1037 #define CRS_CFGR_SYNCSRC_1 ((uint32_t)0x20000000) /* Bit 1 */
Kojto 116:c0f6e94411f5 1038
Kojto 116:c0f6e94411f5 1039 #define CRS_CFGR_SYNCPOL ((uint32_t)0x80000000) /* SYNC polarity selection */
Kojto 116:c0f6e94411f5 1040
Kojto 116:c0f6e94411f5 1041 /******************* Bit definition for CRS_ISR register *********************/
Kojto 116:c0f6e94411f5 1042 #define CRS_ISR_SYNCOKF ((uint32_t)0x00000001) /* SYNC event OK flag */
Kojto 116:c0f6e94411f5 1043 #define CRS_ISR_SYNCWARNF ((uint32_t)0x00000002) /* SYNC warning */
Kojto 116:c0f6e94411f5 1044 #define CRS_ISR_ERRF ((uint32_t)0x00000004) /* SYNC error flag */
Kojto 116:c0f6e94411f5 1045 #define CRS_ISR_ESYNCF ((uint32_t)0x00000008) /* Expected SYNC flag */
Kojto 116:c0f6e94411f5 1046 #define CRS_ISR_SYNCERR ((uint32_t)0x00000100) /* SYNC error */
Kojto 116:c0f6e94411f5 1047 #define CRS_ISR_SYNCMISS ((uint32_t)0x00000200) /* SYNC missed */
Kojto 116:c0f6e94411f5 1048 #define CRS_ISR_TRIMOVF ((uint32_t)0x00000400) /* Trimming overflow or underflow */
Kojto 116:c0f6e94411f5 1049 #define CRS_ISR_FEDIR ((uint32_t)0x00008000) /* Frequency error direction */
Kojto 116:c0f6e94411f5 1050 #define CRS_ISR_FECAP ((uint32_t)0xFFFF0000) /* Frequency error capture */
Kojto 116:c0f6e94411f5 1051
Kojto 116:c0f6e94411f5 1052 /******************* Bit definition for CRS_ICR register *********************/
Kojto 116:c0f6e94411f5 1053 #define CRS_ICR_SYNCOKC ((uint32_t)0x00000001) /* SYNC event OK clear flag */
Kojto 116:c0f6e94411f5 1054 #define CRS_ICR_SYNCWARNC ((uint32_t)0x00000002) /* SYNC warning clear flag */
Kojto 116:c0f6e94411f5 1055 #define CRS_ICR_ERRC ((uint32_t)0x00000004) /* Error clear flag */
Kojto 116:c0f6e94411f5 1056 #define CRS_ICR_ESYNCC ((uint32_t)0x00000008) /* Expected SYNC clear flag */
Kojto 116:c0f6e94411f5 1057
Kojto 116:c0f6e94411f5 1058 /******************************************************************************/
Kojto 116:c0f6e94411f5 1059 /* */
Kojto 116:c0f6e94411f5 1060 /* Digital to Analog Converter (DAC) */
Kojto 116:c0f6e94411f5 1061 /* */
Kojto 116:c0f6e94411f5 1062 /******************************************************************************/
Kojto 116:c0f6e94411f5 1063 /******************** Bit definition for DAC_CR register ********************/
Kojto 116:c0f6e94411f5 1064 #define DAC_CR_EN1 ((uint32_t)0x00000001) /*!< DAC channel1 enable */
Kojto 116:c0f6e94411f5 1065 #define DAC_CR_BOFF1 ((uint32_t)0x00000002) /*!< DAC channel1 output buffer disable */
Kojto 116:c0f6e94411f5 1066 #define DAC_CR_TEN1 ((uint32_t)0x00000004) /*!< DAC channel1 Trigger enable */
Kojto 116:c0f6e94411f5 1067
Kojto 116:c0f6e94411f5 1068 #define DAC_CR_TSEL1 ((uint32_t)0x00000038) /*!< TSEL1[2:0] (DAC channel1 Trigger selection) */
Kojto 116:c0f6e94411f5 1069 #define DAC_CR_TSEL1_0 ((uint32_t)0x00000008) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 1070 #define DAC_CR_TSEL1_1 ((uint32_t)0x00000010) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 1071 #define DAC_CR_TSEL1_2 ((uint32_t)0x00000020) /*!< Bit 2 */
Kojto 116:c0f6e94411f5 1072
Kojto 116:c0f6e94411f5 1073 #define DAC_CR_WAVE1 ((uint32_t)0x000000C0) /*!< WAVE1[1:0] (DAC channel1 noise/triangle wave generation enable) */
Kojto 116:c0f6e94411f5 1074 #define DAC_CR_WAVE1_0 ((uint32_t)0x00000040) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 1075 #define DAC_CR_WAVE1_1 ((uint32_t)0x00000080) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 1076
Kojto 116:c0f6e94411f5 1077 #define DAC_CR_MAMP1 ((uint32_t)0x00000F00) /*!< MAMP1[3:0] (DAC channel1 Mask/Amplitude selector) */
Kojto 116:c0f6e94411f5 1078 #define DAC_CR_MAMP1_0 ((uint32_t)0x00000100) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 1079 #define DAC_CR_MAMP1_1 ((uint32_t)0x00000200) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 1080 #define DAC_CR_MAMP1_2 ((uint32_t)0x00000400) /*!< Bit 2 */
Kojto 116:c0f6e94411f5 1081 #define DAC_CR_MAMP1_3 ((uint32_t)0x00000800) /*!< Bit 3 */
Kojto 116:c0f6e94411f5 1082
Kojto 116:c0f6e94411f5 1083 #define DAC_CR_DMAEN1 ((uint32_t)0x00001000) /*!< DAC channel1 DMA enable */
Kojto 116:c0f6e94411f5 1084 #define DAC_CR_DMAUDRIE1 ((uint32_t)0x00002000) /*!< DAC channel1 DMA Underrun interrupt enable */
Kojto 116:c0f6e94411f5 1085
Kojto 116:c0f6e94411f5 1086 #define DAC_CR_EN2 ((uint32_t)0x00010000) /*!< DAC channel2 enable */
Kojto 116:c0f6e94411f5 1087 #define DAC_CR_BOFF2 ((uint32_t)0x00020000) /*!< DAC channel2 output buffer disable */
Kojto 116:c0f6e94411f5 1088 #define DAC_CR_TEN2 ((uint32_t)0x00040000) /*!< DAC channel2 Trigger enable */
Kojto 116:c0f6e94411f5 1089
Kojto 116:c0f6e94411f5 1090 #define DAC_CR_TSEL2 ((uint32_t)0x00380000) /*!< TSEL2[2:0] (DAC channel2 Trigger selection) */
Kojto 116:c0f6e94411f5 1091 #define DAC_CR_TSEL2_0 ((uint32_t)0x00080000) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 1092 #define DAC_CR_TSEL2_1 ((uint32_t)0x00100000) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 1093 #define DAC_CR_TSEL2_2 ((uint32_t)0x00200000) /*!< Bit 2 */
Kojto 116:c0f6e94411f5 1094
Kojto 116:c0f6e94411f5 1095 #define DAC_CR_WAVE2 ((uint32_t)0x00C00000) /*!< WAVE2[1:0] (DAC channel2 noise/triangle wave generation enable) */
Kojto 116:c0f6e94411f5 1096 #define DAC_CR_WAVE2_0 ((uint32_t)0x00400000) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 1097 #define DAC_CR_WAVE2_1 ((uint32_t)0x00800000) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 1098
Kojto 116:c0f6e94411f5 1099 #define DAC_CR_MAMP2 ((uint32_t)0x0F000000) /*!< MAMP2[3:0] (DAC channel2 Mask/Amplitude selector) */
Kojto 116:c0f6e94411f5 1100 #define DAC_CR_MAMP2_0 ((uint32_t)0x01000000) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 1101 #define DAC_CR_MAMP2_1 ((uint32_t)0x02000000) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 1102 #define DAC_CR_MAMP2_2 ((uint32_t)0x04000000) /*!< Bit 2 */
Kojto 116:c0f6e94411f5 1103 #define DAC_CR_MAMP2_3 ((uint32_t)0x08000000) /*!< Bit 3 */
Kojto 116:c0f6e94411f5 1104
Kojto 116:c0f6e94411f5 1105 #define DAC_CR_DMAEN2 ((uint32_t)0x10000000) /*!< DAC channel2 DMA enabled */
Kojto 116:c0f6e94411f5 1106 #define DAC_CR_DMAUDRIE2 ((uint32_t)0x20000000) /*!< DAC channel12DMA Underrun interrupt enable */
Kojto 116:c0f6e94411f5 1107
Kojto 116:c0f6e94411f5 1108 /***************** Bit definition for DAC_SWTRIGR register ******************/
Kojto 116:c0f6e94411f5 1109 #define DAC_SWTRIGR_SWTRIG1 ((uint32_t)0x00000001) /*!< DAC channel1 software trigger */
Kojto 116:c0f6e94411f5 1110 #define DAC_SWTRIGR_SWTRIG2 ((uint32_t)0x00000002) /*!< DAC channel2 software trigger */
Kojto 116:c0f6e94411f5 1111
Kojto 116:c0f6e94411f5 1112 /***************** Bit definition for DAC_DHR12R1 register ******************/
Kojto 116:c0f6e94411f5 1113 #define DAC_DHR12R1_DACC1DHR ((uint32_t)0x00000FFF) /*!< DAC channel1 12-bit Right aligned data */
Kojto 116:c0f6e94411f5 1114
Kojto 116:c0f6e94411f5 1115 /***************** Bit definition for DAC_DHR12L1 register ******************/
Kojto 116:c0f6e94411f5 1116 #define DAC_DHR12L1_DACC1DHR ((uint32_t)0x0000FFF0) /*!< DAC channel1 12-bit Left aligned data */
Kojto 116:c0f6e94411f5 1117
Kojto 116:c0f6e94411f5 1118 /****************** Bit definition for DAC_DHR8R1 register ******************/
Kojto 116:c0f6e94411f5 1119 #define DAC_DHR8R1_DACC1DHR ((uint32_t)0x000000FF) /*!< DAC channel1 8-bit Right aligned data */
Kojto 116:c0f6e94411f5 1120
Kojto 116:c0f6e94411f5 1121 /***************** Bit definition for DAC_DHR12R2 register ******************/
Kojto 116:c0f6e94411f5 1122 #define DAC_DHR12R2_DACC2DHR ((uint32_t)0x00000FFF) /*!< DAC channel2 12-bit Right aligned data */
Kojto 116:c0f6e94411f5 1123
Kojto 116:c0f6e94411f5 1124 /***************** Bit definition for DAC_DHR12L2 register ******************/
Kojto 116:c0f6e94411f5 1125 #define DAC_DHR12L2_DACC2DHR ((uint32_t)0x0000FFF0) /*!< DAC channel2 12-bit Left aligned data */
Kojto 116:c0f6e94411f5 1126
Kojto 116:c0f6e94411f5 1127 /****************** Bit definition for DAC_DHR8R2 register ******************/
Kojto 116:c0f6e94411f5 1128 #define DAC_DHR8R2_DACC2DHR ((uint32_t)0x000000FF) /*!< DAC channel2 8-bit Right aligned data */
Kojto 116:c0f6e94411f5 1129
Kojto 116:c0f6e94411f5 1130 /***************** Bit definition for DAC_DHR12RD register ******************/
Kojto 116:c0f6e94411f5 1131 #define DAC_DHR12RD_DACC1DHR ((uint32_t)0x00000FFF) /*!< DAC channel1 12-bit Right aligned data */
Kojto 116:c0f6e94411f5 1132 #define DAC_DHR12RD_DACC2DHR ((uint32_t)0x0FFF0000) /*!< DAC channel2 12-bit Right aligned data */
Kojto 116:c0f6e94411f5 1133
Kojto 116:c0f6e94411f5 1134 /***************** Bit definition for DAC_DHR12LD register ******************/
Kojto 116:c0f6e94411f5 1135 #define DAC_DHR12LD_DACC1DHR ((uint32_t)0x0000FFF0) /*!< DAC channel1 12-bit Left aligned data */
Kojto 116:c0f6e94411f5 1136 #define DAC_DHR12LD_DACC2DHR ((uint32_t)0xFFF00000) /*!< DAC channel2 12-bit Left aligned data */
Kojto 116:c0f6e94411f5 1137
Kojto 116:c0f6e94411f5 1138 /****************** Bit definition for DAC_DHR8RD register ******************/
Kojto 116:c0f6e94411f5 1139 #define DAC_DHR8RD_DACC1DHR ((uint32_t)0x000000FF) /*!< DAC channel1 8-bit Right aligned data */
Kojto 116:c0f6e94411f5 1140 #define DAC_DHR8RD_DACC2DHR ((uint32_t)0x0000FF00) /*!< DAC channel2 8-bit Right aligned data */
Kojto 116:c0f6e94411f5 1141
Kojto 116:c0f6e94411f5 1142 /******************* Bit definition for DAC_DOR1 register *******************/
Kojto 116:c0f6e94411f5 1143 #define DAC_DOR1_DACC1DOR ((uint16_t)0x00000FFF) /*!< DAC channel1 data output */
Kojto 116:c0f6e94411f5 1144
Kojto 116:c0f6e94411f5 1145 /******************* Bit definition for DAC_DOR2 register *******************/
Kojto 116:c0f6e94411f5 1146 #define DAC_DOR2_DACC2DOR ((uint32_t)0x00000FFF) /*!< DAC channel2 data output */
Kojto 116:c0f6e94411f5 1147
Kojto 116:c0f6e94411f5 1148 /******************** Bit definition for DAC_SR register ********************/
Kojto 116:c0f6e94411f5 1149 #define DAC_SR_DMAUDR1 ((uint32_t)0x00002000) /*!< DAC channel1 DMA underrun flag */
Kojto 116:c0f6e94411f5 1150 #define DAC_SR_DMAUDR2 ((uint32_t)0x20000000) /*!< DAC channel2 DMA underrun flag */
Kojto 116:c0f6e94411f5 1151
Kojto 116:c0f6e94411f5 1152 /******************************************************************************/
Kojto 116:c0f6e94411f5 1153 /* */
Kojto 116:c0f6e94411f5 1154 /* Debug MCU (DBGMCU) */
Kojto 116:c0f6e94411f5 1155 /* */
Kojto 116:c0f6e94411f5 1156 /******************************************************************************/
Kojto 116:c0f6e94411f5 1157
Kojto 116:c0f6e94411f5 1158 /**************** Bit definition for DBGMCU_IDCODE register *****************/
Kojto 116:c0f6e94411f5 1159 #define DBGMCU_IDCODE_DEV_ID ((uint32_t)0x00000FFF) /*!< Device Identifier */
Kojto 116:c0f6e94411f5 1160
Kojto 116:c0f6e94411f5 1161 #define DBGMCU_IDCODE_DIV_ID ((uint32_t)0x0000F000) /*!< Division Identifier */
Kojto 116:c0f6e94411f5 1162 #define DBGMCU_IDCODE_MCD_DIV_ID ((uint32_t)0x00006000) /*!< MCD divsion ID is 6 */
Kojto 116:c0f6e94411f5 1163 #define DBGMCU_IDCODE_REV_ID ((uint32_t)0xFFFF0000) /*!< REV_ID[15:0] bits (Revision Identifier) */
Kojto 116:c0f6e94411f5 1164 #define DBGMCU_IDCODE_REV_ID_0 ((uint32_t)0x00010000) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 1165 #define DBGMCU_IDCODE_REV_ID_1 ((uint32_t)0x00020000) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 1166 #define DBGMCU_IDCODE_REV_ID_2 ((uint32_t)0x00040000) /*!< Bit 2 */
Kojto 116:c0f6e94411f5 1167 #define DBGMCU_IDCODE_REV_ID_3 ((uint32_t)0x00080000) /*!< Bit 3 */
Kojto 116:c0f6e94411f5 1168 #define DBGMCU_IDCODE_REV_ID_4 ((uint32_t)0x00100000) /*!< Bit 4 */
Kojto 116:c0f6e94411f5 1169 #define DBGMCU_IDCODE_REV_ID_5 ((uint32_t)0x00200000) /*!< Bit 5 */
Kojto 116:c0f6e94411f5 1170 #define DBGMCU_IDCODE_REV_ID_6 ((uint32_t)0x00400000) /*!< Bit 6 */
Kojto 116:c0f6e94411f5 1171 #define DBGMCU_IDCODE_REV_ID_7 ((uint32_t)0x00800000) /*!< Bit 7 */
Kojto 116:c0f6e94411f5 1172 #define DBGMCU_IDCODE_REV_ID_8 ((uint32_t)0x01000000) /*!< Bit 8 */
Kojto 116:c0f6e94411f5 1173 #define DBGMCU_IDCODE_REV_ID_9 ((uint32_t)0x02000000) /*!< Bit 9 */
Kojto 116:c0f6e94411f5 1174 #define DBGMCU_IDCODE_REV_ID_10 ((uint32_t)0x04000000) /*!< Bit 10 */
Kojto 116:c0f6e94411f5 1175 #define DBGMCU_IDCODE_REV_ID_11 ((uint32_t)0x08000000) /*!< Bit 11 */
Kojto 116:c0f6e94411f5 1176 #define DBGMCU_IDCODE_REV_ID_12 ((uint32_t)0x10000000) /*!< Bit 12 */
Kojto 116:c0f6e94411f5 1177 #define DBGMCU_IDCODE_REV_ID_13 ((uint32_t)0x20000000) /*!< Bit 13 */
Kojto 116:c0f6e94411f5 1178 #define DBGMCU_IDCODE_REV_ID_14 ((uint32_t)0x40000000) /*!< Bit 14 */
Kojto 116:c0f6e94411f5 1179 #define DBGMCU_IDCODE_REV_ID_15 ((uint32_t)0x80000000) /*!< Bit 15 */
Kojto 116:c0f6e94411f5 1180
Kojto 116:c0f6e94411f5 1181 /****************** Bit definition for DBGMCU_CR register *******************/
Kojto 116:c0f6e94411f5 1182 #define DBGMCU_CR_DBG ((uint32_t)0x00000007) /*!< Debug mode mask */
Kojto 116:c0f6e94411f5 1183 #define DBGMCU_CR_DBG_SLEEP ((uint32_t)0x00000001) /*!< Debug Sleep Mode */
Kojto 116:c0f6e94411f5 1184 #define DBGMCU_CR_DBG_STOP ((uint32_t)0x00000002) /*!< Debug Stop Mode */
Kojto 116:c0f6e94411f5 1185 #define DBGMCU_CR_DBG_STANDBY ((uint32_t)0x00000004) /*!< Debug Standby mode */
Kojto 116:c0f6e94411f5 1186
Kojto 116:c0f6e94411f5 1187 /****************** Bit definition for DBGMCU_APB1_FZ register **************/
Kojto 116:c0f6e94411f5 1188 #define DBGMCU_APB1_FZ_DBG_TIM2_STOP ((uint32_t)0x00000001) /*!< TIM2 counter stopped when core is halted */
Kojto 116:c0f6e94411f5 1189 #define DBGMCU_APB1_FZ_DBG_TIM3_STOP ((uint32_t)0x00000002)
Kojto 116:c0f6e94411f5 1190 #define DBGMCU_APB1_FZ_DBG_TIM6_STOP ((uint32_t)0x00000010) /*!< TIM6 counter stopped when core is halted */
Kojto 116:c0f6e94411f5 1191 #define DBGMCU_APB1_FZ_DBG_TIM7_STOP ((uint32_t)0x00000020)
Kojto 116:c0f6e94411f5 1192 #define DBGMCU_APB1_FZ_DBG_RTC_STOP ((uint32_t)0x00000400) /*!< RTC Calendar frozen when core is halted */
Kojto 116:c0f6e94411f5 1193 #define DBGMCU_APB1_FZ_DBG_WWDG_STOP ((uint32_t)0x00000800) /*!< Debug Window Watchdog stopped when Core is halted */
Kojto 116:c0f6e94411f5 1194 #define DBGMCU_APB1_FZ_DBG_IWDG_STOP ((uint32_t)0x00001000) /*!< Debug Independent Watchdog stopped when Core is halted */
Kojto 116:c0f6e94411f5 1195 #define DBGMCU_APB1_FZ_DBG_I2C1_STOP ((uint32_t)0x00200000) /*!< I2C1 SMBUS timeout mode stopped when Core is halted */
Kojto 116:c0f6e94411f5 1196 #define DBGMCU_APB1_FZ_DBG_I2C2_STOP ((uint32_t)0x00400000) /*!< I2C2 SMBUS timeout mode stopped when Core is halted */
Kojto 116:c0f6e94411f5 1197 #define DBGMCU_APB1_FZ_DBG_I2C3_STOP ((uint32_t)0x00800000) /*!< I2C3 SMBUS timeout mode stopped when Core is halted */
Kojto 116:c0f6e94411f5 1198 #define DBGMCU_APB1_FZ_DBG_LPTIMER_STOP ((uint32_t)0x80000000) /*!< LPTIM1 counter stopped when core is halted */
Kojto 116:c0f6e94411f5 1199 /****************** Bit definition for DBGMCU_APB2_FZ register **************/
Kojto 116:c0f6e94411f5 1200 #define DBGMCU_APB2_FZ_DBG_TIM22_STOP ((uint32_t)0x00000020) /*!< TIM22 counter stopped when core is halted */
Kojto 116:c0f6e94411f5 1201 #define DBGMCU_APB2_FZ_DBG_TIM21_STOP ((uint32_t)0x00000004) /*!< TIM21 counter stopped when core is halted */
Kojto 116:c0f6e94411f5 1202
Kojto 116:c0f6e94411f5 1203 /******************************************************************************/
Kojto 116:c0f6e94411f5 1204 /* */
Kojto 116:c0f6e94411f5 1205 /* DMA Controller (DMA) */
Kojto 116:c0f6e94411f5 1206 /* */
Kojto 116:c0f6e94411f5 1207 /******************************************************************************/
Kojto 116:c0f6e94411f5 1208
Kojto 116:c0f6e94411f5 1209 /******************* Bit definition for DMA_ISR register ********************/
Kojto 116:c0f6e94411f5 1210 #define DMA_ISR_GIF1 ((uint32_t)0x00000001) /*!< Channel 1 Global interrupt flag */
Kojto 116:c0f6e94411f5 1211 #define DMA_ISR_TCIF1 ((uint32_t)0x00000002) /*!< Channel 1 Transfer Complete flag */
Kojto 116:c0f6e94411f5 1212 #define DMA_ISR_HTIF1 ((uint32_t)0x00000004) /*!< Channel 1 Half Transfer flag */
Kojto 116:c0f6e94411f5 1213 #define DMA_ISR_TEIF1 ((uint32_t)0x00000008) /*!< Channel 1 Transfer Error flag */
Kojto 116:c0f6e94411f5 1214 #define DMA_ISR_GIF2 ((uint32_t)0x00000010) /*!< Channel 2 Global interrupt flag */
Kojto 116:c0f6e94411f5 1215 #define DMA_ISR_TCIF2 ((uint32_t)0x00000020) /*!< Channel 2 Transfer Complete flag */
Kojto 116:c0f6e94411f5 1216 #define DMA_ISR_HTIF2 ((uint32_t)0x00000040) /*!< Channel 2 Half Transfer flag */
Kojto 116:c0f6e94411f5 1217 #define DMA_ISR_TEIF2 ((uint32_t)0x00000080) /*!< Channel 2 Transfer Error flag */
Kojto 116:c0f6e94411f5 1218 #define DMA_ISR_GIF3 ((uint32_t)0x00000100) /*!< Channel 3 Global interrupt flag */
Kojto 116:c0f6e94411f5 1219 #define DMA_ISR_TCIF3 ((uint32_t)0x00000200) /*!< Channel 3 Transfer Complete flag */
Kojto 116:c0f6e94411f5 1220 #define DMA_ISR_HTIF3 ((uint32_t)0x00000400) /*!< Channel 3 Half Transfer flag */
Kojto 116:c0f6e94411f5 1221 #define DMA_ISR_TEIF3 ((uint32_t)0x00000800) /*!< Channel 3 Transfer Error flag */
Kojto 116:c0f6e94411f5 1222 #define DMA_ISR_GIF4 ((uint32_t)0x00001000) /*!< Channel 4 Global interrupt flag */
Kojto 116:c0f6e94411f5 1223 #define DMA_ISR_TCIF4 ((uint32_t)0x00002000) /*!< Channel 4 Transfer Complete flag */
Kojto 116:c0f6e94411f5 1224 #define DMA_ISR_HTIF4 ((uint32_t)0x00004000) /*!< Channel 4 Half Transfer flag */
Kojto 116:c0f6e94411f5 1225 #define DMA_ISR_TEIF4 ((uint32_t)0x00008000) /*!< Channel 4 Transfer Error flag */
Kojto 116:c0f6e94411f5 1226 #define DMA_ISR_GIF5 ((uint32_t)0x00010000) /*!< Channel 5 Global interrupt flag */
Kojto 116:c0f6e94411f5 1227 #define DMA_ISR_TCIF5 ((uint32_t)0x00020000) /*!< Channel 5 Transfer Complete flag */
Kojto 116:c0f6e94411f5 1228 #define DMA_ISR_HTIF5 ((uint32_t)0x00040000) /*!< Channel 5 Half Transfer flag */
Kojto 116:c0f6e94411f5 1229 #define DMA_ISR_TEIF5 ((uint32_t)0x00080000) /*!< Channel 5 Transfer Error flag */
Kojto 116:c0f6e94411f5 1230 #define DMA_ISR_GIF6 ((uint32_t)0x00100000) /*!< Channel 6 Global interrupt flag */
Kojto 116:c0f6e94411f5 1231 #define DMA_ISR_TCIF6 ((uint32_t)0x00200000) /*!< Channel 6 Transfer Complete flag */
Kojto 116:c0f6e94411f5 1232 #define DMA_ISR_HTIF6 ((uint32_t)0x00400000) /*!< Channel 6 Half Transfer flag */
Kojto 116:c0f6e94411f5 1233 #define DMA_ISR_TEIF6 ((uint32_t)0x00800000) /*!< Channel 6 Transfer Error flag */
Kojto 116:c0f6e94411f5 1234 #define DMA_ISR_GIF7 ((uint32_t)0x01000000) /*!< Channel 7 Global interrupt flag */
Kojto 116:c0f6e94411f5 1235 #define DMA_ISR_TCIF7 ((uint32_t)0x02000000) /*!< Channel 7 Transfer Complete flag */
Kojto 116:c0f6e94411f5 1236 #define DMA_ISR_HTIF7 ((uint32_t)0x04000000) /*!< Channel 7 Half Transfer flag */
Kojto 116:c0f6e94411f5 1237 #define DMA_ISR_TEIF7 ((uint32_t)0x08000000) /*!< Channel 7 Transfer Error flag */
Kojto 116:c0f6e94411f5 1238
Kojto 116:c0f6e94411f5 1239 /******************* Bit definition for DMA_IFCR register *******************/
Kojto 116:c0f6e94411f5 1240 #define DMA_IFCR_CGIF1 ((uint32_t)0x00000001) /*!< Channel 1 Global interrupt clear */
Kojto 116:c0f6e94411f5 1241 #define DMA_IFCR_CTCIF1 ((uint32_t)0x00000002) /*!< Channel 1 Transfer Complete clear */
Kojto 116:c0f6e94411f5 1242 #define DMA_IFCR_CHTIF1 ((uint32_t)0x00000004) /*!< Channel 1 Half Transfer clear */
Kojto 116:c0f6e94411f5 1243 #define DMA_IFCR_CTEIF1 ((uint32_t)0x00000008) /*!< Channel 1 Transfer Error clear */
Kojto 116:c0f6e94411f5 1244 #define DMA_IFCR_CGIF2 ((uint32_t)0x00000010) /*!< Channel 2 Global interrupt clear */
Kojto 116:c0f6e94411f5 1245 #define DMA_IFCR_CTCIF2 ((uint32_t)0x00000020) /*!< Channel 2 Transfer Complete clear */
Kojto 116:c0f6e94411f5 1246 #define DMA_IFCR_CHTIF2 ((uint32_t)0x00000040) /*!< Channel 2 Half Transfer clear */
Kojto 116:c0f6e94411f5 1247 #define DMA_IFCR_CTEIF2 ((uint32_t)0x00000080) /*!< Channel 2 Transfer Error clear */
Kojto 116:c0f6e94411f5 1248 #define DMA_IFCR_CGIF3 ((uint32_t)0x00000100) /*!< Channel 3 Global interrupt clear */
Kojto 116:c0f6e94411f5 1249 #define DMA_IFCR_CTCIF3 ((uint32_t)0x00000200) /*!< Channel 3 Transfer Complete clear */
Kojto 116:c0f6e94411f5 1250 #define DMA_IFCR_CHTIF3 ((uint32_t)0x00000400) /*!< Channel 3 Half Transfer clear */
Kojto 116:c0f6e94411f5 1251 #define DMA_IFCR_CTEIF3 ((uint32_t)0x00000800) /*!< Channel 3 Transfer Error clear */
Kojto 116:c0f6e94411f5 1252 #define DMA_IFCR_CGIF4 ((uint32_t)0x00001000) /*!< Channel 4 Global interrupt clear */
Kojto 116:c0f6e94411f5 1253 #define DMA_IFCR_CTCIF4 ((uint32_t)0x00002000) /*!< Channel 4 Transfer Complete clear */
Kojto 116:c0f6e94411f5 1254 #define DMA_IFCR_CHTIF4 ((uint32_t)0x00004000) /*!< Channel 4 Half Transfer clear */
Kojto 116:c0f6e94411f5 1255 #define DMA_IFCR_CTEIF4 ((uint32_t)0x00008000) /*!< Channel 4 Transfer Error clear */
Kojto 116:c0f6e94411f5 1256 #define DMA_IFCR_CGIF5 ((uint32_t)0x00010000) /*!< Channel 5 Global interrupt clear */
Kojto 116:c0f6e94411f5 1257 #define DMA_IFCR_CTCIF5 ((uint32_t)0x00020000) /*!< Channel 5 Transfer Complete clear */
Kojto 116:c0f6e94411f5 1258 #define DMA_IFCR_CHTIF5 ((uint32_t)0x00040000) /*!< Channel 5 Half Transfer clear */
Kojto 116:c0f6e94411f5 1259 #define DMA_IFCR_CTEIF5 ((uint32_t)0x00080000) /*!< Channel 5 Transfer Error clear */
Kojto 116:c0f6e94411f5 1260 #define DMA_IFCR_CGIF6 ((uint32_t)0x00100000) /*!< Channel 6 Global interrupt clear */
Kojto 116:c0f6e94411f5 1261 #define DMA_IFCR_CTCIF6 ((uint32_t)0x00200000) /*!< Channel 6 Transfer Complete clear */
Kojto 116:c0f6e94411f5 1262 #define DMA_IFCR_CHTIF6 ((uint32_t)0x00400000) /*!< Channel 6 Half Transfer clear */
Kojto 116:c0f6e94411f5 1263 #define DMA_IFCR_CTEIF6 ((uint32_t)0x00800000) /*!< Channel 6 Transfer Error clear */
Kojto 116:c0f6e94411f5 1264 #define DMA_IFCR_CGIF7 ((uint32_t)0x01000000) /*!< Channel 7 Global interrupt clear */
Kojto 116:c0f6e94411f5 1265 #define DMA_IFCR_CTCIF7 ((uint32_t)0x02000000) /*!< Channel 7 Transfer Complete clear */
Kojto 116:c0f6e94411f5 1266 #define DMA_IFCR_CHTIF7 ((uint32_t)0x04000000) /*!< Channel 7 Half Transfer clear */
Kojto 116:c0f6e94411f5 1267 #define DMA_IFCR_CTEIF7 ((uint32_t)0x08000000) /*!< Channel 7 Transfer Error clear */
Kojto 116:c0f6e94411f5 1268
Kojto 116:c0f6e94411f5 1269 /******************* Bit definition for DMA_CCR register ********************/
Kojto 116:c0f6e94411f5 1270 #define DMA_CCR_EN ((uint32_t)0x00000001) /*!< Channel enable */
Kojto 116:c0f6e94411f5 1271 #define DMA_CCR_TCIE ((uint32_t)0x00000002) /*!< Transfer complete interrupt enable */
Kojto 116:c0f6e94411f5 1272 #define DMA_CCR_HTIE ((uint32_t)0x00000004) /*!< Half Transfer interrupt enable */
Kojto 116:c0f6e94411f5 1273 #define DMA_CCR_TEIE ((uint32_t)0x00000008) /*!< Transfer error interrupt enable */
Kojto 116:c0f6e94411f5 1274 #define DMA_CCR_DIR ((uint32_t)0x00000010) /*!< Data transfer direction */
Kojto 116:c0f6e94411f5 1275 #define DMA_CCR_CIRC ((uint32_t)0x00000020) /*!< Circular mode */
Kojto 116:c0f6e94411f5 1276 #define DMA_CCR_PINC ((uint32_t)0x00000040) /*!< Peripheral increment mode */
Kojto 116:c0f6e94411f5 1277 #define DMA_CCR_MINC ((uint32_t)0x00000080) /*!< Memory increment mode */
Kojto 116:c0f6e94411f5 1278
Kojto 116:c0f6e94411f5 1279 #define DMA_CCR_PSIZE ((uint32_t)0x00000300) /*!< PSIZE[1:0] bits (Peripheral size) */
Kojto 116:c0f6e94411f5 1280 #define DMA_CCR_PSIZE_0 ((uint32_t)0x00000100) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 1281 #define DMA_CCR_PSIZE_1 ((uint32_t)0x00000200) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 1282
Kojto 116:c0f6e94411f5 1283 #define DMA_CCR_MSIZE ((uint32_t)0x00000C00) /*!< MSIZE[1:0] bits (Memory size) */
Kojto 116:c0f6e94411f5 1284 #define DMA_CCR_MSIZE_0 ((uint32_t)0x00000400) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 1285 #define DMA_CCR_MSIZE_1 ((uint32_t)0x00000800) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 1286
Kojto 116:c0f6e94411f5 1287 #define DMA_CCR_PL ((uint32_t)0x00003000) /*!< PL[1:0] bits(Channel Priority level)*/
Kojto 116:c0f6e94411f5 1288 #define DMA_CCR_PL_0 ((uint32_t)0x00001000) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 1289 #define DMA_CCR_PL_1 ((uint32_t)0x00002000) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 1290
Kojto 116:c0f6e94411f5 1291 #define DMA_CCR_MEM2MEM ((uint32_t)0x00004000) /*!< Memory to memory mode */
Kojto 116:c0f6e94411f5 1292
Kojto 116:c0f6e94411f5 1293 /****************** Bit definition for DMA_CNDTR register *******************/
Kojto 116:c0f6e94411f5 1294 #define DMA_CNDTR_NDT ((uint32_t)0x0000FFFF) /*!< Number of data to Transfer */
Kojto 116:c0f6e94411f5 1295
Kojto 116:c0f6e94411f5 1296 /****************** Bit definition for DMA_CPAR register ********************/
Kojto 116:c0f6e94411f5 1297 #define DMA_CPAR_PA ((uint32_t)0xFFFFFFFF) /*!< Peripheral Address */
Kojto 116:c0f6e94411f5 1298
Kojto 116:c0f6e94411f5 1299 /****************** Bit definition for DMA_CMAR register ********************/
Kojto 116:c0f6e94411f5 1300 #define DMA_CMAR_MA ((uint32_t)0xFFFFFFFF) /*!< Memory Address */
Kojto 116:c0f6e94411f5 1301
Kojto 116:c0f6e94411f5 1302
Kojto 116:c0f6e94411f5 1303 /******************* Bit definition for DMA_CSELR register *******************/
Kojto 116:c0f6e94411f5 1304 #define DMA_CSELR_C1S ((uint32_t)0x0000000F) /*!< Channel 1 Selection */
Kojto 116:c0f6e94411f5 1305 #define DMA_CSELR_C2S ((uint32_t)0x000000F0) /*!< Channel 2 Selection */
Kojto 116:c0f6e94411f5 1306 #define DMA_CSELR_C3S ((uint32_t)0x00000F00) /*!< Channel 3 Selection */
Kojto 116:c0f6e94411f5 1307 #define DMA_CSELR_C4S ((uint32_t)0x0000F000) /*!< Channel 4 Selection */
Kojto 116:c0f6e94411f5 1308 #define DMA_CSELR_C5S ((uint32_t)0x000F0000) /*!< Channel 5 Selection */
Kojto 116:c0f6e94411f5 1309 #define DMA_CSELR_C6S ((uint32_t)0x00F00000) /*!< Channel 6 Selection */
Kojto 116:c0f6e94411f5 1310 #define DMA_CSELR_C7S ((uint32_t)0x0F000000) /*!< Channel 7 Selection */
Kojto 116:c0f6e94411f5 1311
Kojto 116:c0f6e94411f5 1312
Kojto 116:c0f6e94411f5 1313 /******************************************************************************/
Kojto 116:c0f6e94411f5 1314 /* */
Kojto 116:c0f6e94411f5 1315 /* External Interrupt/Event Controller (EXTI) */
Kojto 116:c0f6e94411f5 1316 /* */
Kojto 116:c0f6e94411f5 1317 /******************************************************************************/
Kojto 116:c0f6e94411f5 1318
Kojto 116:c0f6e94411f5 1319 /******************* Bit definition for EXTI_IMR register *******************/
Kojto 116:c0f6e94411f5 1320 #define EXTI_IMR_IM0 ((uint32_t)0x00000001) /*!< Interrupt Mask on line 0 */
Kojto 116:c0f6e94411f5 1321 #define EXTI_IMR_IM1 ((uint32_t)0x00000002) /*!< Interrupt Mask on line 1 */
Kojto 116:c0f6e94411f5 1322 #define EXTI_IMR_IM2 ((uint32_t)0x00000004) /*!< Interrupt Mask on line 2 */
Kojto 116:c0f6e94411f5 1323 #define EXTI_IMR_IM3 ((uint32_t)0x00000008) /*!< Interrupt Mask on line 3 */
Kojto 116:c0f6e94411f5 1324 #define EXTI_IMR_IM4 ((uint32_t)0x00000010) /*!< Interrupt Mask on line 4 */
Kojto 116:c0f6e94411f5 1325 #define EXTI_IMR_IM5 ((uint32_t)0x00000020) /*!< Interrupt Mask on line 5 */
Kojto 116:c0f6e94411f5 1326 #define EXTI_IMR_IM6 ((uint32_t)0x00000040) /*!< Interrupt Mask on line 6 */
Kojto 116:c0f6e94411f5 1327 #define EXTI_IMR_IM7 ((uint32_t)0x00000080) /*!< Interrupt Mask on line 7 */
Kojto 116:c0f6e94411f5 1328 #define EXTI_IMR_IM8 ((uint32_t)0x00000100) /*!< Interrupt Mask on line 8 */
Kojto 116:c0f6e94411f5 1329 #define EXTI_IMR_IM9 ((uint32_t)0x00000200) /*!< Interrupt Mask on line 9 */
Kojto 116:c0f6e94411f5 1330 #define EXTI_IMR_IM10 ((uint32_t)0x00000400) /*!< Interrupt Mask on line 10 */
Kojto 116:c0f6e94411f5 1331 #define EXTI_IMR_IM11 ((uint32_t)0x00000800) /*!< Interrupt Mask on line 11 */
Kojto 116:c0f6e94411f5 1332 #define EXTI_IMR_IM12 ((uint32_t)0x00001000) /*!< Interrupt Mask on line 12 */
Kojto 116:c0f6e94411f5 1333 #define EXTI_IMR_IM13 ((uint32_t)0x00002000) /*!< Interrupt Mask on line 13 */
Kojto 116:c0f6e94411f5 1334 #define EXTI_IMR_IM14 ((uint32_t)0x00004000) /*!< Interrupt Mask on line 14 */
Kojto 116:c0f6e94411f5 1335 #define EXTI_IMR_IM15 ((uint32_t)0x00008000) /*!< Interrupt Mask on line 15 */
Kojto 116:c0f6e94411f5 1336 #define EXTI_IMR_IM16 ((uint32_t)0x00010000) /*!< Interrupt Mask on line 16 */
Kojto 116:c0f6e94411f5 1337 #define EXTI_IMR_IM17 ((uint32_t)0x00020000) /*!< Interrupt Mask on line 17 */
Kojto 116:c0f6e94411f5 1338 #define EXTI_IMR_IM18 ((uint32_t)0x00040000) /*!< Interrupt Mask on line 18 */
Kojto 116:c0f6e94411f5 1339 #define EXTI_IMR_IM19 ((uint32_t)0x00080000) /*!< Interrupt Mask on line 19 */
Kojto 116:c0f6e94411f5 1340 #define EXTI_IMR_IM20 ((uint32_t)0x00100000) /*!< Interrupt Mask on line 20 */
Kojto 116:c0f6e94411f5 1341 #define EXTI_IMR_IM21 ((uint32_t)0x00200000) /*!< Interrupt Mask on line 21 */
Kojto 116:c0f6e94411f5 1342 #define EXTI_IMR_IM22 ((uint32_t)0x00400000) /*!< Interrupt Mask on line 22 */
Kojto 116:c0f6e94411f5 1343 #define EXTI_IMR_IM23 ((uint32_t)0x00800000) /*!< Interrupt Mask on line 23 */
Kojto 116:c0f6e94411f5 1344 #define EXTI_IMR_IM24 ((uint32_t)0x01000000) /*!< Interrupt Mask on line 24 */
Kojto 116:c0f6e94411f5 1345 #define EXTI_IMR_IM25 ((uint32_t)0x02000000) /*!< Interrupt Mask on line 25 */
Kojto 116:c0f6e94411f5 1346 #define EXTI_IMR_IM26 ((uint32_t)0x04000000) /*!< Interrupt Mask on line 26 */
Kojto 116:c0f6e94411f5 1347 #define EXTI_IMR_IM28 ((uint32_t)0x10000000) /*!< Interrupt Mask on line 28 */
Kojto 116:c0f6e94411f5 1348 #define EXTI_IMR_IM29 ((uint32_t)0x20000000) /*!< Interrupt Mask on line 29 */
Kojto 116:c0f6e94411f5 1349
Kojto 116:c0f6e94411f5 1350 /****************** Bit definition for EXTI_EMR register ********************/
Kojto 116:c0f6e94411f5 1351 #define EXTI_EMR_EM0 ((uint32_t)0x00000001) /*!< Event Mask on line 0 */
Kojto 116:c0f6e94411f5 1352 #define EXTI_EMR_EM1 ((uint32_t)0x00000002) /*!< Event Mask on line 1 */
Kojto 116:c0f6e94411f5 1353 #define EXTI_EMR_EM2 ((uint32_t)0x00000004) /*!< Event Mask on line 2 */
Kojto 116:c0f6e94411f5 1354 #define EXTI_EMR_EM3 ((uint32_t)0x00000008) /*!< Event Mask on line 3 */
Kojto 116:c0f6e94411f5 1355 #define EXTI_EMR_EM4 ((uint32_t)0x00000010) /*!< Event Mask on line 4 */
Kojto 116:c0f6e94411f5 1356 #define EXTI_EMR_EM5 ((uint32_t)0x00000020) /*!< Event Mask on line 5 */
Kojto 116:c0f6e94411f5 1357 #define EXTI_EMR_EM6 ((uint32_t)0x00000040) /*!< Event Mask on line 6 */
Kojto 116:c0f6e94411f5 1358 #define EXTI_EMR_EM7 ((uint32_t)0x00000080) /*!< Event Mask on line 7 */
Kojto 116:c0f6e94411f5 1359 #define EXTI_EMR_EM8 ((uint32_t)0x00000100) /*!< Event Mask on line 8 */
Kojto 116:c0f6e94411f5 1360 #define EXTI_EMR_EM9 ((uint32_t)0x00000200) /*!< Event Mask on line 9 */
Kojto 116:c0f6e94411f5 1361 #define EXTI_EMR_EM10 ((uint32_t)0x00000400) /*!< Event Mask on line 10 */
Kojto 116:c0f6e94411f5 1362 #define EXTI_EMR_EM11 ((uint32_t)0x00000800) /*!< Event Mask on line 11 */
Kojto 116:c0f6e94411f5 1363 #define EXTI_EMR_EM12 ((uint32_t)0x00001000) /*!< Event Mask on line 12 */
Kojto 116:c0f6e94411f5 1364 #define EXTI_EMR_EM13 ((uint32_t)0x00002000) /*!< Event Mask on line 13 */
Kojto 116:c0f6e94411f5 1365 #define EXTI_EMR_EM14 ((uint32_t)0x00004000) /*!< Event Mask on line 14 */
Kojto 116:c0f6e94411f5 1366 #define EXTI_EMR_EM15 ((uint32_t)0x00008000) /*!< Event Mask on line 15 */
Kojto 116:c0f6e94411f5 1367 #define EXTI_EMR_EM16 ((uint32_t)0x00010000) /*!< Event Mask on line 16 */
Kojto 116:c0f6e94411f5 1368 #define EXTI_EMR_EM17 ((uint32_t)0x00020000) /*!< Event Mask on line 17 */
Kojto 116:c0f6e94411f5 1369 #define EXTI_EMR_EM18 ((uint32_t)0x00040000) /*!< Event Mask on line 18 */
Kojto 116:c0f6e94411f5 1370 #define EXTI_EMR_EM19 ((uint32_t)0x00080000) /*!< Event Mask on line 19 */
Kojto 116:c0f6e94411f5 1371 #define EXTI_EMR_EM20 ((uint32_t)0x00100000) /*!< Event Mask on line 20 */
Kojto 116:c0f6e94411f5 1372 #define EXTI_EMR_EM21 ((uint32_t)0x00200000) /*!< Event Mask on line 21 */
Kojto 116:c0f6e94411f5 1373 #define EXTI_EMR_EM22 ((uint32_t)0x00400000) /*!< Event Mask on line 22 */
Kojto 116:c0f6e94411f5 1374 #define EXTI_EMR_EM23 ((uint32_t)0x00800000) /*!< Event Mask on line 23 */
Kojto 116:c0f6e94411f5 1375 #define EXTI_EMR_EM24 ((uint32_t)0x01000000) /*!< Event Mask on line 24 */
Kojto 116:c0f6e94411f5 1376 #define EXTI_EMR_EM25 ((uint32_t)0x02000000) /*!< Event Mask on line 25 */
Kojto 116:c0f6e94411f5 1377 #define EXTI_EMR_EM26 ((uint32_t)0x04000000) /*!< Event Mask on line 26 */
Kojto 116:c0f6e94411f5 1378 #define EXTI_EMR_EM28 ((uint32_t)0x10000000) /*!< Event Mask on line 28 */
Kojto 116:c0f6e94411f5 1379 #define EXTI_EMR_EM29 ((uint32_t)0x20000000) /*!< Event Mask on line 29 */
Kojto 116:c0f6e94411f5 1380
Kojto 116:c0f6e94411f5 1381 /******************* Bit definition for EXTI_RTSR register ******************/
Kojto 116:c0f6e94411f5 1382 #define EXTI_RTSR_TR0 ((uint32_t)0x00000001) /*!< Rising trigger event configuration bit of line 0 */
Kojto 116:c0f6e94411f5 1383 #define EXTI_RTSR_TR1 ((uint32_t)0x00000002) /*!< Rising trigger event configuration bit of line 1 */
Kojto 116:c0f6e94411f5 1384 #define EXTI_RTSR_TR2 ((uint32_t)0x00000004) /*!< Rising trigger event configuration bit of line 2 */
Kojto 116:c0f6e94411f5 1385 #define EXTI_RTSR_TR3 ((uint32_t)0x00000008) /*!< Rising trigger event configuration bit of line 3 */
Kojto 116:c0f6e94411f5 1386 #define EXTI_RTSR_TR4 ((uint32_t)0x00000010) /*!< Rising trigger event configuration bit of line 4 */
Kojto 116:c0f6e94411f5 1387 #define EXTI_RTSR_TR5 ((uint32_t)0x00000020) /*!< Rising trigger event configuration bit of line 5 */
Kojto 116:c0f6e94411f5 1388 #define EXTI_RTSR_TR6 ((uint32_t)0x00000040) /*!< Rising trigger event configuration bit of line 6 */
Kojto 116:c0f6e94411f5 1389 #define EXTI_RTSR_TR7 ((uint32_t)0x00000080) /*!< Rising trigger event configuration bit of line 7 */
Kojto 116:c0f6e94411f5 1390 #define EXTI_RTSR_TR8 ((uint32_t)0x00000100) /*!< Rising trigger event configuration bit of line 8 */
Kojto 116:c0f6e94411f5 1391 #define EXTI_RTSR_TR9 ((uint32_t)0x00000200) /*!< Rising trigger event configuration bit of line 9 */
Kojto 116:c0f6e94411f5 1392 #define EXTI_RTSR_TR10 ((uint32_t)0x00000400) /*!< Rising trigger event configuration bit of line 10 */
Kojto 116:c0f6e94411f5 1393 #define EXTI_RTSR_TR11 ((uint32_t)0x00000800) /*!< Rising trigger event configuration bit of line 11 */
Kojto 116:c0f6e94411f5 1394 #define EXTI_RTSR_TR12 ((uint32_t)0x00001000) /*!< Rising trigger event configuration bit of line 12 */
Kojto 116:c0f6e94411f5 1395 #define EXTI_RTSR_TR13 ((uint32_t)0x00002000) /*!< Rising trigger event configuration bit of line 13 */
Kojto 116:c0f6e94411f5 1396 #define EXTI_RTSR_TR14 ((uint32_t)0x00004000) /*!< Rising trigger event configuration bit of line 14 */
Kojto 116:c0f6e94411f5 1397 #define EXTI_RTSR_TR15 ((uint32_t)0x00008000) /*!< Rising trigger event configuration bit of line 15 */
Kojto 116:c0f6e94411f5 1398 #define EXTI_RTSR_TR16 ((uint32_t)0x00010000) /*!< Rising trigger event configuration bit of line 16 */
Kojto 116:c0f6e94411f5 1399 #define EXTI_RTSR_TR17 ((uint32_t)0x00020000) /*!< Rising trigger event configuration bit of line 17 */
Kojto 116:c0f6e94411f5 1400 #define EXTI_RTSR_TR19 ((uint32_t)0x00080000) /*!< Rising trigger event configuration bit of line 19 */
Kojto 116:c0f6e94411f5 1401 #define EXTI_RTSR_TR20 ((uint32_t)0x00100000) /*!< Rising trigger event configuration bit of line 20 */
Kojto 116:c0f6e94411f5 1402 #define EXTI_RTSR_TR21 ((uint32_t)0x00200000) /*!< Rising trigger event configuration bit of line 21 */
Kojto 116:c0f6e94411f5 1403 #define EXTI_RTSR_TR22 ((uint32_t)0x00400000) /*!< Rising trigger event configuration bit of line 22 */
Kojto 116:c0f6e94411f5 1404
Kojto 116:c0f6e94411f5 1405 /******************* Bit definition for EXTI_FTSR register *******************/
Kojto 116:c0f6e94411f5 1406 #define EXTI_FTSR_TR0 ((uint32_t)0x00000001) /*!< Falling trigger event configuration bit of line 0 */
Kojto 116:c0f6e94411f5 1407 #define EXTI_FTSR_TR1 ((uint32_t)0x00000002) /*!< Falling trigger event configuration bit of line 1 */
Kojto 116:c0f6e94411f5 1408 #define EXTI_FTSR_TR2 ((uint32_t)0x00000004) /*!< Falling trigger event configuration bit of line 2 */
Kojto 116:c0f6e94411f5 1409 #define EXTI_FTSR_TR3 ((uint32_t)0x00000008) /*!< Falling trigger event configuration bit of line 3 */
Kojto 116:c0f6e94411f5 1410 #define EXTI_FTSR_TR4 ((uint32_t)0x00000010) /*!< Falling trigger event configuration bit of line 4 */
Kojto 116:c0f6e94411f5 1411 #define EXTI_FTSR_TR5 ((uint32_t)0x00000020) /*!< Falling trigger event configuration bit of line 5 */
Kojto 116:c0f6e94411f5 1412 #define EXTI_FTSR_TR6 ((uint32_t)0x00000040) /*!< Falling trigger event configuration bit of line 6 */
Kojto 116:c0f6e94411f5 1413 #define EXTI_FTSR_TR7 ((uint32_t)0x00000080) /*!< Falling trigger event configuration bit of line 7 */
Kojto 116:c0f6e94411f5 1414 #define EXTI_FTSR_TR8 ((uint32_t)0x00000100) /*!< Falling trigger event configuration bit of line 8 */
Kojto 116:c0f6e94411f5 1415 #define EXTI_FTSR_TR9 ((uint32_t)0x00000200) /*!< Falling trigger event configuration bit of line 9 */
Kojto 116:c0f6e94411f5 1416 #define EXTI_FTSR_TR10 ((uint32_t)0x00000400) /*!< Falling trigger event configuration bit of line 10 */
Kojto 116:c0f6e94411f5 1417 #define EXTI_FTSR_TR11 ((uint32_t)0x00000800) /*!< Falling trigger event configuration bit of line 11 */
Kojto 116:c0f6e94411f5 1418 #define EXTI_FTSR_TR12 ((uint32_t)0x00001000) /*!< Falling trigger event configuration bit of line 12 */
Kojto 116:c0f6e94411f5 1419 #define EXTI_FTSR_TR13 ((uint32_t)0x00002000) /*!< Falling trigger event configuration bit of line 13 */
Kojto 116:c0f6e94411f5 1420 #define EXTI_FTSR_TR14 ((uint32_t)0x00004000) /*!< Falling trigger event configuration bit of line 14 */
Kojto 116:c0f6e94411f5 1421 #define EXTI_FTSR_TR15 ((uint32_t)0x00008000) /*!< Falling trigger event configuration bit of line 15 */
Kojto 116:c0f6e94411f5 1422 #define EXTI_FTSR_TR16 ((uint32_t)0x00010000) /*!< Falling trigger event configuration bit of line 16 */
Kojto 116:c0f6e94411f5 1423 #define EXTI_FTSR_TR17 ((uint32_t)0x00020000) /*!< Falling trigger event configuration bit of line 17 */
Kojto 116:c0f6e94411f5 1424 #define EXTI_FTSR_TR19 ((uint32_t)0x00080000) /*!< Falling trigger event configuration bit of line 19 */
Kojto 116:c0f6e94411f5 1425 #define EXTI_FTSR_TR20 ((uint32_t)0x00100000) /*!< Falling trigger event configuration bit of line 20 */
Kojto 116:c0f6e94411f5 1426 #define EXTI_FTSR_TR21 ((uint32_t)0x00200000) /*!< Falling trigger event configuration bit of line 21 */
Kojto 116:c0f6e94411f5 1427 #define EXTI_FTSR_TR22 ((uint32_t)0x00400000) /*!< Falling trigger event configuration bit of line 22 */
Kojto 116:c0f6e94411f5 1428
Kojto 116:c0f6e94411f5 1429 /******************* Bit definition for EXTI_SWIER register *******************/
Kojto 116:c0f6e94411f5 1430 #define EXTI_SWIER_SWIER0 ((uint32_t)0x00000001) /*!< Software Interrupt on line 0 */
Kojto 116:c0f6e94411f5 1431 #define EXTI_SWIER_SWIER1 ((uint32_t)0x00000002) /*!< Software Interrupt on line 1 */
Kojto 116:c0f6e94411f5 1432 #define EXTI_SWIER_SWIER2 ((uint32_t)0x00000004) /*!< Software Interrupt on line 2 */
Kojto 116:c0f6e94411f5 1433 #define EXTI_SWIER_SWIER3 ((uint32_t)0x00000008) /*!< Software Interrupt on line 3 */
Kojto 116:c0f6e94411f5 1434 #define EXTI_SWIER_SWIER4 ((uint32_t)0x00000010) /*!< Software Interrupt on line 4 */
Kojto 116:c0f6e94411f5 1435 #define EXTI_SWIER_SWIER5 ((uint32_t)0x00000020) /*!< Software Interrupt on line 5 */
Kojto 116:c0f6e94411f5 1436 #define EXTI_SWIER_SWIER6 ((uint32_t)0x00000040) /*!< Software Interrupt on line 6 */
Kojto 116:c0f6e94411f5 1437 #define EXTI_SWIER_SWIER7 ((uint32_t)0x00000080) /*!< Software Interrupt on line 7 */
Kojto 116:c0f6e94411f5 1438 #define EXTI_SWIER_SWIER8 ((uint32_t)0x00000100) /*!< Software Interrupt on line 8 */
Kojto 116:c0f6e94411f5 1439 #define EXTI_SWIER_SWIER9 ((uint32_t)0x00000200) /*!< Software Interrupt on line 9 */
Kojto 116:c0f6e94411f5 1440 #define EXTI_SWIER_SWIER10 ((uint32_t)0x00000400) /*!< Software Interrupt on line 10 */
Kojto 116:c0f6e94411f5 1441 #define EXTI_SWIER_SWIER11 ((uint32_t)0x00000800) /*!< Software Interrupt on line 11 */
Kojto 116:c0f6e94411f5 1442 #define EXTI_SWIER_SWIER12 ((uint32_t)0x00001000) /*!< Software Interrupt on line 12 */
Kojto 116:c0f6e94411f5 1443 #define EXTI_SWIER_SWIER13 ((uint32_t)0x00002000) /*!< Software Interrupt on line 13 */
Kojto 116:c0f6e94411f5 1444 #define EXTI_SWIER_SWIER14 ((uint32_t)0x00004000) /*!< Software Interrupt on line 14 */
Kojto 116:c0f6e94411f5 1445 #define EXTI_SWIER_SWIER15 ((uint32_t)0x00008000) /*!< Software Interrupt on line 15 */
Kojto 116:c0f6e94411f5 1446 #define EXTI_SWIER_SWIER16 ((uint32_t)0x00010000) /*!< Software Interrupt on line 16 */
Kojto 116:c0f6e94411f5 1447 #define EXTI_SWIER_SWIER17 ((uint32_t)0x00020000) /*!< Software Interrupt on line 17 */
Kojto 116:c0f6e94411f5 1448 #define EXTI_SWIER_SWIER19 ((uint32_t)0x00080000) /*!< Software Interrupt on line 19 */
Kojto 116:c0f6e94411f5 1449 #define EXTI_SWIER_SWIER20 ((uint32_t)0x00100000) /*!< Software Interrupt on line 20 */
Kojto 116:c0f6e94411f5 1450 #define EXTI_SWIER_SWIER21 ((uint32_t)0x00200000) /*!< Software Interrupt on line 21 */
Kojto 116:c0f6e94411f5 1451 #define EXTI_SWIER_SWIER22 ((uint32_t)0x00400000) /*!< Software Interrupt on line 22 */
Kojto 116:c0f6e94411f5 1452
Kojto 116:c0f6e94411f5 1453 /****************** Bit definition for EXTI_PR register *********************/
Kojto 116:c0f6e94411f5 1454 #define EXTI_PR_PR0 ((uint32_t)0x00000001) /*!< Pending bit 0 */
Kojto 116:c0f6e94411f5 1455 #define EXTI_PR_PR1 ((uint32_t)0x00000002) /*!< Pending bit 1 */
Kojto 116:c0f6e94411f5 1456 #define EXTI_PR_PR2 ((uint32_t)0x00000004) /*!< Pending bit 2 */
Kojto 116:c0f6e94411f5 1457 #define EXTI_PR_PR3 ((uint32_t)0x00000008) /*!< Pending bit 3 */
Kojto 116:c0f6e94411f5 1458 #define EXTI_PR_PR4 ((uint32_t)0x00000010) /*!< Pending bit 4 */
Kojto 116:c0f6e94411f5 1459 #define EXTI_PR_PR5 ((uint32_t)0x00000020) /*!< Pending bit 5 */
Kojto 116:c0f6e94411f5 1460 #define EXTI_PR_PR6 ((uint32_t)0x00000040) /*!< Pending bit 6 */
Kojto 116:c0f6e94411f5 1461 #define EXTI_PR_PR7 ((uint32_t)0x00000080) /*!< Pending bit 7 */
Kojto 116:c0f6e94411f5 1462 #define EXTI_PR_PR8 ((uint32_t)0x00000100) /*!< Pending bit 8 */
Kojto 116:c0f6e94411f5 1463 #define EXTI_PR_PR9 ((uint32_t)0x00000200) /*!< Pending bit 9 */
Kojto 116:c0f6e94411f5 1464 #define EXTI_PR_PR10 ((uint32_t)0x00000400) /*!< Pending bit 10 */
Kojto 116:c0f6e94411f5 1465 #define EXTI_PR_PR11 ((uint32_t)0x00000800) /*!< Pending bit 11 */
Kojto 116:c0f6e94411f5 1466 #define EXTI_PR_PR12 ((uint32_t)0x00001000) /*!< Pending bit 12 */
Kojto 116:c0f6e94411f5 1467 #define EXTI_PR_PR13 ((uint32_t)0x00002000) /*!< Pending bit 13 */
Kojto 116:c0f6e94411f5 1468 #define EXTI_PR_PR14 ((uint32_t)0x00004000) /*!< Pending bit 14 */
Kojto 116:c0f6e94411f5 1469 #define EXTI_PR_PR15 ((uint32_t)0x00008000) /*!< Pending bit 15 */
Kojto 116:c0f6e94411f5 1470 #define EXTI_PR_PR16 ((uint32_t)0x00010000) /*!< Pending bit 16 */
Kojto 116:c0f6e94411f5 1471 #define EXTI_PR_PR17 ((uint32_t)0x00020000) /*!< Pending bit 17 */
Kojto 116:c0f6e94411f5 1472 #define EXTI_PR_PR19 ((uint32_t)0x00080000) /*!< Pending bit 19 */
Kojto 116:c0f6e94411f5 1473 #define EXTI_PR_PR20 ((uint32_t)0x00100000) /*!< Pending bit 20 */
Kojto 116:c0f6e94411f5 1474 #define EXTI_PR_PR21 ((uint32_t)0x00200000) /*!< Pending bit 21 */
Kojto 116:c0f6e94411f5 1475 #define EXTI_PR_PR22 ((uint32_t)0x00400000) /*!< Pending bit 22 */
Kojto 116:c0f6e94411f5 1476
Kojto 116:c0f6e94411f5 1477 /******************************************************************************/
Kojto 116:c0f6e94411f5 1478 /* */
Kojto 116:c0f6e94411f5 1479 /* FLASH and Option Bytes Registers */
Kojto 116:c0f6e94411f5 1480 /* */
Kojto 116:c0f6e94411f5 1481 /******************************************************************************/
Kojto 116:c0f6e94411f5 1482
Kojto 116:c0f6e94411f5 1483 /******************* Bit definition for FLASH_ACR register ******************/
Kojto 116:c0f6e94411f5 1484 #define FLASH_ACR_LATENCY ((uint32_t)0x00000001) /*!< LATENCY bit (Latency) */
Kojto 116:c0f6e94411f5 1485 #define FLASH_ACR_PRFTEN ((uint32_t)0x00000002) /*!< Prefetch Buffer Enable */
Kojto 116:c0f6e94411f5 1486 #define FLASH_ACR_SLEEP_PD ((uint32_t)0x00000008) /*!< Flash mode during sleep mode */
Kojto 116:c0f6e94411f5 1487 #define FLASH_ACR_RUN_PD ((uint32_t)0x00000010) /*!< Flash mode during RUN mode */
Kojto 116:c0f6e94411f5 1488 #define FLASH_ACR_DISAB_BUF ((uint32_t)0x00000020) /*!< Disable Buffer */
Kojto 116:c0f6e94411f5 1489 #define FLASH_ACR_PRE_READ ((uint32_t)0x00000040) /*!< Pre-read data address */
Kojto 116:c0f6e94411f5 1490
Kojto 116:c0f6e94411f5 1491 /******************* Bit definition for FLASH_PECR register ******************/
Kojto 116:c0f6e94411f5 1492 #define FLASH_PECR_PELOCK ((uint32_t)0x00000001) /*!< FLASH_PECR and Flash data Lock */
Kojto 116:c0f6e94411f5 1493 #define FLASH_PECR_PRGLOCK ((uint32_t)0x00000002) /*!< Program matrix Lock */
Kojto 116:c0f6e94411f5 1494 #define FLASH_PECR_OPTLOCK ((uint32_t)0x00000004) /*!< Option byte matrix Lock */
Kojto 116:c0f6e94411f5 1495 #define FLASH_PECR_PROG ((uint32_t)0x00000008) /*!< Program matrix selection */
Kojto 116:c0f6e94411f5 1496 #define FLASH_PECR_DATA ((uint32_t)0x00000010) /*!< Data matrix selection */
Kojto 116:c0f6e94411f5 1497 #define FLASH_PECR_FIX ((uint32_t)0x00000100) /*!< Fixed Time Data write for Word/Half Word/Byte programming */
Kojto 116:c0f6e94411f5 1498 #define FLASH_PECR_ERASE ((uint32_t)0x00000200) /*!< Page erasing mode */
Kojto 116:c0f6e94411f5 1499 #define FLASH_PECR_FPRG ((uint32_t)0x00000400) /*!< Fast Page/Half Page programming mode */
Kojto 116:c0f6e94411f5 1500 #define FLASH_PECR_PARALLBANK ((uint32_t)0x00008000) /*!< Parallel Bank mode */
Kojto 116:c0f6e94411f5 1501 #define FLASH_PECR_EOPIE ((uint32_t)0x00010000) /*!< End of programming interrupt */
Kojto 116:c0f6e94411f5 1502 #define FLASH_PECR_ERRIE ((uint32_t)0x00020000) /*!< Error interrupt */
Kojto 116:c0f6e94411f5 1503 #define FLASH_PECR_OBL_LAUNCH ((uint32_t)0x00040000) /*!< Launch the option byte loading */
Kojto 116:c0f6e94411f5 1504 #define FLASH_PECR_HALF_ARRAY ((uint32_t)0x00080000) /*!< Half array mode */
Kojto 116:c0f6e94411f5 1505 #define FLASH_PECR_NZDISABLE ((uint32_t)0x00400000) /*!< Non-Zero check disable */
Kojto 116:c0f6e94411f5 1506
Kojto 116:c0f6e94411f5 1507 /****************** Bit definition for FLASH_PDKEYR register ******************/
Kojto 116:c0f6e94411f5 1508 #define FLASH_PDKEYR_PDKEYR ((uint32_t)0xFFFFFFFF) /*!< FLASH_PEC and data matrix Key */
Kojto 116:c0f6e94411f5 1509
Kojto 116:c0f6e94411f5 1510 /****************** Bit definition for FLASH_PEKEYR register ******************/
Kojto 116:c0f6e94411f5 1511 #define FLASH_PEKEYR_PEKEYR ((uint32_t)0xFFFFFFFF) /*!< FLASH_PEC and data matrix Key */
Kojto 116:c0f6e94411f5 1512
Kojto 116:c0f6e94411f5 1513 /****************** Bit definition for FLASH_PRGKEYR register ******************/
Kojto 116:c0f6e94411f5 1514 #define FLASH_PRGKEYR_PRGKEYR ((uint32_t)0xFFFFFFFF) /*!< Program matrix Key */
Kojto 116:c0f6e94411f5 1515
Kojto 116:c0f6e94411f5 1516 /****************** Bit definition for FLASH_OPTKEYR register ******************/
Kojto 116:c0f6e94411f5 1517 #define FLASH_OPTKEYR_OPTKEYR ((uint32_t)0xFFFFFFFF) /*!< Option bytes matrix Key */
Kojto 116:c0f6e94411f5 1518
Kojto 116:c0f6e94411f5 1519 /****************** Bit definition for FLASH_SR register *******************/
Kojto 116:c0f6e94411f5 1520 #define FLASH_SR_BSY ((uint32_t)0x00000001) /*!< Busy */
Kojto 116:c0f6e94411f5 1521 #define FLASH_SR_EOP ((uint32_t)0x00000002) /*!< End Of Programming*/
Kojto 116:c0f6e94411f5 1522 #define FLASH_SR_HVOFF ((uint32_t)0x00000004) /*!< End of high voltage */
Kojto 116:c0f6e94411f5 1523 #define FLASH_SR_READY ((uint32_t)0x00000008) /*!< Flash ready after low power mode */
Kojto 116:c0f6e94411f5 1524
Kojto 116:c0f6e94411f5 1525 #define FLASH_SR_WRPERR ((uint32_t)0x00000100) /*!< Write protection error */
Kojto 116:c0f6e94411f5 1526 #define FLASH_SR_PGAERR ((uint32_t)0x00000200) /*!< Programming Alignment Error */
Kojto 116:c0f6e94411f5 1527 #define FLASH_SR_SIZERR ((uint32_t)0x00000400) /*!< Size error */
Kojto 116:c0f6e94411f5 1528 #define FLASH_SR_OPTVERR ((uint32_t)0x00000800) /*!< Option Valid error */
Kojto 116:c0f6e94411f5 1529 #define FLASH_SR_RDERR ((uint32_t)0x00002000) /*!< Read protected error */
Kojto 116:c0f6e94411f5 1530 #define FLASH_SR_NOTZEROERR ((uint32_t)0x00010000) /*!< Not Zero error */
Kojto 116:c0f6e94411f5 1531 #define FLASH_SR_FWWERR ((uint32_t)0x00020000) /*!< Write/Errase operation aborted */
Kojto 116:c0f6e94411f5 1532
Kojto 116:c0f6e94411f5 1533 /* alias maintained for legacy */
Kojto 116:c0f6e94411f5 1534 #define FLASH_SR_FWWER FLASH_SR_FWWERR
Kojto 116:c0f6e94411f5 1535 #define FLASH_SR_ENHV FLASH_SR_HVOFF
Kojto 116:c0f6e94411f5 1536 #define FLASH_SR_ENDHV FLASH_SR_HVOFF
Kojto 116:c0f6e94411f5 1537
Kojto 116:c0f6e94411f5 1538 /****************** Bit definition for FLASH_OPTR register *******************/
Kojto 116:c0f6e94411f5 1539 #define FLASH_OPTR_RDPROT ((uint32_t)0x000000FF) /*!< Read Protection */
Kojto 116:c0f6e94411f5 1540 #define FLASH_OPTR_WPRMOD ((uint32_t)0x00000100) /*!< Selection of protection mode of WPR bits */
Kojto 116:c0f6e94411f5 1541 #define FLASH_OPTR_BOR_LEV ((uint32_t)0x000F0000) /*!< BOR_LEV[3:0] Brown Out Reset Threshold Level*/
Kojto 116:c0f6e94411f5 1542 #define FLASH_OPTR_IWDG_SW ((uint32_t)0x00100000) /*!< IWDG_SW */
Kojto 116:c0f6e94411f5 1543 #define FLASH_OPTR_nRST_STOP ((uint32_t)0x00200000) /*!< nRST_STOP */
Kojto 116:c0f6e94411f5 1544 #define FLASH_OPTR_nRST_STDBY ((uint32_t)0x00400000) /*!< nRST_STDBY */
Kojto 116:c0f6e94411f5 1545 #define FLASH_OPTR_BFB2 ((uint32_t)0x00800000) /*!< BFB2 */
Kojto 116:c0f6e94411f5 1546 #define FLASH_OPTR_USER ((uint32_t)0x00700000) /*!< User Option Bytes */
Kojto 116:c0f6e94411f5 1547 #define FLASH_OPTR_BOOT1 ((uint32_t)0x80000000) /*!< BOOT1 */
Kojto 116:c0f6e94411f5 1548
Kojto 116:c0f6e94411f5 1549 /****************** Bit definition for FLASH_WRPR register ******************/
Kojto 116:c0f6e94411f5 1550 #define FLASH_WRPR_WRP ((uint32_t)0x0000FFFF) /*!< Write Protection bits */
Kojto 116:c0f6e94411f5 1551
Kojto 116:c0f6e94411f5 1552 /******************************************************************************/
Kojto 116:c0f6e94411f5 1553 /* */
Kojto 116:c0f6e94411f5 1554 /* General Purpose IOs (GPIO) */
Kojto 116:c0f6e94411f5 1555 /* */
Kojto 116:c0f6e94411f5 1556 /******************************************************************************/
Kojto 116:c0f6e94411f5 1557 /******************* Bit definition for GPIO_MODER register *****************/
Kojto 116:c0f6e94411f5 1558 #define GPIO_MODER_MODE0 ((uint32_t)0x00000003)
Kojto 116:c0f6e94411f5 1559 #define GPIO_MODER_MODE0_0 ((uint32_t)0x00000001)
Kojto 116:c0f6e94411f5 1560 #define GPIO_MODER_MODE0_1 ((uint32_t)0x00000002)
Kojto 116:c0f6e94411f5 1561 #define GPIO_MODER_MODE1 ((uint32_t)0x0000000C)
Kojto 116:c0f6e94411f5 1562 #define GPIO_MODER_MODE1_0 ((uint32_t)0x00000004)
Kojto 116:c0f6e94411f5 1563 #define GPIO_MODER_MODE1_1 ((uint32_t)0x00000008)
Kojto 116:c0f6e94411f5 1564 #define GPIO_MODER_MODE2 ((uint32_t)0x00000030)
Kojto 116:c0f6e94411f5 1565 #define GPIO_MODER_MODE2_0 ((uint32_t)0x00000010)
Kojto 116:c0f6e94411f5 1566 #define GPIO_MODER_MODE2_1 ((uint32_t)0x00000020)
Kojto 116:c0f6e94411f5 1567 #define GPIO_MODER_MODE3 ((uint32_t)0x000000C0)
Kojto 116:c0f6e94411f5 1568 #define GPIO_MODER_MODE3_0 ((uint32_t)0x00000040)
Kojto 116:c0f6e94411f5 1569 #define GPIO_MODER_MODE3_1 ((uint32_t)0x00000080)
Kojto 116:c0f6e94411f5 1570 #define GPIO_MODER_MODE4 ((uint32_t)0x00000300)
Kojto 116:c0f6e94411f5 1571 #define GPIO_MODER_MODE4_0 ((uint32_t)0x00000100)
Kojto 116:c0f6e94411f5 1572 #define GPIO_MODER_MODE4_1 ((uint32_t)0x00000200)
Kojto 116:c0f6e94411f5 1573 #define GPIO_MODER_MODE5 ((uint32_t)0x00000C00)
Kojto 116:c0f6e94411f5 1574 #define GPIO_MODER_MODE5_0 ((uint32_t)0x00000400)
Kojto 116:c0f6e94411f5 1575 #define GPIO_MODER_MODE5_1 ((uint32_t)0x00000800)
Kojto 116:c0f6e94411f5 1576 #define GPIO_MODER_MODE6 ((uint32_t)0x00003000)
Kojto 116:c0f6e94411f5 1577 #define GPIO_MODER_MODE6_0 ((uint32_t)0x00001000)
Kojto 116:c0f6e94411f5 1578 #define GPIO_MODER_MODE6_1 ((uint32_t)0x00002000)
Kojto 116:c0f6e94411f5 1579 #define GPIO_MODER_MODE7 ((uint32_t)0x0000C000)
Kojto 116:c0f6e94411f5 1580 #define GPIO_MODER_MODE7_0 ((uint32_t)0x00004000)
Kojto 116:c0f6e94411f5 1581 #define GPIO_MODER_MODE7_1 ((uint32_t)0x00008000)
Kojto 116:c0f6e94411f5 1582 #define GPIO_MODER_MODE8 ((uint32_t)0x00030000)
Kojto 116:c0f6e94411f5 1583 #define GPIO_MODER_MODE8_0 ((uint32_t)0x00010000)
Kojto 116:c0f6e94411f5 1584 #define GPIO_MODER_MODE8_1 ((uint32_t)0x00020000)
Kojto 116:c0f6e94411f5 1585 #define GPIO_MODER_MODE9 ((uint32_t)0x000C0000)
Kojto 116:c0f6e94411f5 1586 #define GPIO_MODER_MODE9_0 ((uint32_t)0x00040000)
Kojto 116:c0f6e94411f5 1587 #define GPIO_MODER_MODE9_1 ((uint32_t)0x00080000)
Kojto 116:c0f6e94411f5 1588 #define GPIO_MODER_MODE10 ((uint32_t)0x00300000)
Kojto 116:c0f6e94411f5 1589 #define GPIO_MODER_MODE10_0 ((uint32_t)0x00100000)
Kojto 116:c0f6e94411f5 1590 #define GPIO_MODER_MODE10_1 ((uint32_t)0x00200000)
Kojto 116:c0f6e94411f5 1591 #define GPIO_MODER_MODE11 ((uint32_t)0x00C00000)
Kojto 116:c0f6e94411f5 1592 #define GPIO_MODER_MODE11_0 ((uint32_t)0x00400000)
Kojto 116:c0f6e94411f5 1593 #define GPIO_MODER_MODE11_1 ((uint32_t)0x00800000)
Kojto 116:c0f6e94411f5 1594 #define GPIO_MODER_MODE12 ((uint32_t)0x03000000)
Kojto 116:c0f6e94411f5 1595 #define GPIO_MODER_MODE12_0 ((uint32_t)0x01000000)
Kojto 116:c0f6e94411f5 1596 #define GPIO_MODER_MODE12_1 ((uint32_t)0x02000000)
Kojto 116:c0f6e94411f5 1597 #define GPIO_MODER_MODE13 ((uint32_t)0x0C000000)
Kojto 116:c0f6e94411f5 1598 #define GPIO_MODER_MODE13_0 ((uint32_t)0x04000000)
Kojto 116:c0f6e94411f5 1599 #define GPIO_MODER_MODE13_1 ((uint32_t)0x08000000)
Kojto 116:c0f6e94411f5 1600 #define GPIO_MODER_MODE14 ((uint32_t)0x30000000)
Kojto 116:c0f6e94411f5 1601 #define GPIO_MODER_MODE14_0 ((uint32_t)0x10000000)
Kojto 116:c0f6e94411f5 1602 #define GPIO_MODER_MODE14_1 ((uint32_t)0x20000000)
Kojto 116:c0f6e94411f5 1603 #define GPIO_MODER_MODE15 ((uint32_t)0xC0000000)
Kojto 116:c0f6e94411f5 1604 #define GPIO_MODER_MODE15_0 ((uint32_t)0x40000000)
Kojto 116:c0f6e94411f5 1605 #define GPIO_MODER_MODE15_1 ((uint32_t)0x80000000)
Kojto 116:c0f6e94411f5 1606
Kojto 116:c0f6e94411f5 1607 /****************** Bit definition for GPIO_OTYPER register *****************/
Kojto 116:c0f6e94411f5 1608 #define GPIO_OTYPER_OT_0 ((uint32_t)0x00000001)
Kojto 116:c0f6e94411f5 1609 #define GPIO_OTYPER_OT_1 ((uint32_t)0x00000002)
Kojto 116:c0f6e94411f5 1610 #define GPIO_OTYPER_OT_2 ((uint32_t)0x00000004)
Kojto 116:c0f6e94411f5 1611 #define GPIO_OTYPER_OT_3 ((uint32_t)0x00000008)
Kojto 116:c0f6e94411f5 1612 #define GPIO_OTYPER_OT_4 ((uint32_t)0x00000010)
Kojto 116:c0f6e94411f5 1613 #define GPIO_OTYPER_OT_5 ((uint32_t)0x00000020)
Kojto 116:c0f6e94411f5 1614 #define GPIO_OTYPER_OT_6 ((uint32_t)0x00000040)
Kojto 116:c0f6e94411f5 1615 #define GPIO_OTYPER_OT_7 ((uint32_t)0x00000080)
Kojto 116:c0f6e94411f5 1616 #define GPIO_OTYPER_OT_8 ((uint32_t)0x00000100)
Kojto 116:c0f6e94411f5 1617 #define GPIO_OTYPER_OT_9 ((uint32_t)0x00000200)
Kojto 116:c0f6e94411f5 1618 #define GPIO_OTYPER_OT_10 ((uint32_t)0x00000400)
Kojto 116:c0f6e94411f5 1619 #define GPIO_OTYPER_OT_11 ((uint32_t)0x00000800)
Kojto 116:c0f6e94411f5 1620 #define GPIO_OTYPER_OT_12 ((uint32_t)0x00001000)
Kojto 116:c0f6e94411f5 1621 #define GPIO_OTYPER_OT_13 ((uint32_t)0x00002000)
Kojto 116:c0f6e94411f5 1622 #define GPIO_OTYPER_OT_14 ((uint32_t)0x00004000)
Kojto 116:c0f6e94411f5 1623 #define GPIO_OTYPER_OT_15 ((uint32_t)0x00008000)
Kojto 116:c0f6e94411f5 1624
Kojto 116:c0f6e94411f5 1625 /**************** Bit definition for GPIO_OSPEEDR register ******************/
Kojto 116:c0f6e94411f5 1626 #define GPIO_OSPEEDER_OSPEED0 ((uint32_t)0x00000003)
Kojto 116:c0f6e94411f5 1627 #define GPIO_OSPEEDER_OSPEED0_0 ((uint32_t)0x00000001)
Kojto 116:c0f6e94411f5 1628 #define GPIO_OSPEEDER_OSPEED0_1 ((uint32_t)0x00000002)
Kojto 116:c0f6e94411f5 1629 #define GPIO_OSPEEDER_OSPEED1 ((uint32_t)0x0000000C)
Kojto 116:c0f6e94411f5 1630 #define GPIO_OSPEEDER_OSPEED1_0 ((uint32_t)0x00000004)
Kojto 116:c0f6e94411f5 1631 #define GPIO_OSPEEDER_OSPEED1_1 ((uint32_t)0x00000008)
Kojto 116:c0f6e94411f5 1632 #define GPIO_OSPEEDER_OSPEED2 ((uint32_t)0x00000030)
Kojto 116:c0f6e94411f5 1633 #define GPIO_OSPEEDER_OSPEED2_0 ((uint32_t)0x00000010)
Kojto 116:c0f6e94411f5 1634 #define GPIO_OSPEEDER_OSPEED2_1 ((uint32_t)0x00000020)
Kojto 116:c0f6e94411f5 1635 #define GPIO_OSPEEDER_OSPEED3 ((uint32_t)0x000000C0)
Kojto 116:c0f6e94411f5 1636 #define GPIO_OSPEEDER_OSPEED3_0 ((uint32_t)0x00000040)
Kojto 116:c0f6e94411f5 1637 #define GPIO_OSPEEDER_OSPEED3_1 ((uint32_t)0x00000080)
Kojto 116:c0f6e94411f5 1638 #define GPIO_OSPEEDER_OSPEED4 ((uint32_t)0x00000300)
Kojto 116:c0f6e94411f5 1639 #define GPIO_OSPEEDER_OSPEED4_0 ((uint32_t)0x00000100)
Kojto 116:c0f6e94411f5 1640 #define GPIO_OSPEEDER_OSPEED4_1 ((uint32_t)0x00000200)
Kojto 116:c0f6e94411f5 1641 #define GPIO_OSPEEDER_OSPEED5 ((uint32_t)0x00000C00)
Kojto 116:c0f6e94411f5 1642 #define GPIO_OSPEEDER_OSPEED5_0 ((uint32_t)0x00000400)
Kojto 116:c0f6e94411f5 1643 #define GPIO_OSPEEDER_OSPEED5_1 ((uint32_t)0x00000800)
Kojto 116:c0f6e94411f5 1644 #define GPIO_OSPEEDER_OSPEED6 ((uint32_t)0x00003000)
Kojto 116:c0f6e94411f5 1645 #define GPIO_OSPEEDER_OSPEED6_0 ((uint32_t)0x00001000)
Kojto 116:c0f6e94411f5 1646 #define GPIO_OSPEEDER_OSPEED6_1 ((uint32_t)0x00002000)
Kojto 116:c0f6e94411f5 1647 #define GPIO_OSPEEDER_OSPEED7 ((uint32_t)0x0000C000)
Kojto 116:c0f6e94411f5 1648 #define GPIO_OSPEEDER_OSPEED7_0 ((uint32_t)0x00004000)
Kojto 116:c0f6e94411f5 1649 #define GPIO_OSPEEDER_OSPEED7_1 ((uint32_t)0x00008000)
Kojto 116:c0f6e94411f5 1650 #define GPIO_OSPEEDER_OSPEED8 ((uint32_t)0x00030000)
Kojto 116:c0f6e94411f5 1651 #define GPIO_OSPEEDER_OSPEED8_0 ((uint32_t)0x00010000)
Kojto 116:c0f6e94411f5 1652 #define GPIO_OSPEEDER_OSPEED8_1 ((uint32_t)0x00020000)
Kojto 116:c0f6e94411f5 1653 #define GPIO_OSPEEDER_OSPEED9 ((uint32_t)0x000C0000)
Kojto 116:c0f6e94411f5 1654 #define GPIO_OSPEEDER_OSPEED9_0 ((uint32_t)0x00040000)
Kojto 116:c0f6e94411f5 1655 #define GPIO_OSPEEDER_OSPEED9_1 ((uint32_t)0x00080000)
Kojto 116:c0f6e94411f5 1656 #define GPIO_OSPEEDER_OSPEED10 ((uint32_t)0x00300000)
Kojto 116:c0f6e94411f5 1657 #define GPIO_OSPEEDER_OSPEED10_0 ((uint32_t)0x00100000)
Kojto 116:c0f6e94411f5 1658 #define GPIO_OSPEEDER_OSPEED10_1 ((uint32_t)0x00200000)
Kojto 116:c0f6e94411f5 1659 #define GPIO_OSPEEDER_OSPEED11 ((uint32_t)0x00C00000)
Kojto 116:c0f6e94411f5 1660 #define GPIO_OSPEEDER_OSPEED11_0 ((uint32_t)0x00400000)
Kojto 116:c0f6e94411f5 1661 #define GPIO_OSPEEDER_OSPEED11_1 ((uint32_t)0x00800000)
Kojto 116:c0f6e94411f5 1662 #define GPIO_OSPEEDER_OSPEED12 ((uint32_t)0x03000000)
Kojto 116:c0f6e94411f5 1663 #define GPIO_OSPEEDER_OSPEED12_0 ((uint32_t)0x01000000)
Kojto 116:c0f6e94411f5 1664 #define GPIO_OSPEEDER_OSPEED12_1 ((uint32_t)0x02000000)
Kojto 116:c0f6e94411f5 1665 #define GPIO_OSPEEDER_OSPEED13 ((uint32_t)0x0C000000)
Kojto 116:c0f6e94411f5 1666 #define GPIO_OSPEEDER_OSPEED13_0 ((uint32_t)0x04000000)
Kojto 116:c0f6e94411f5 1667 #define GPIO_OSPEEDER_OSPEED13_1 ((uint32_t)0x08000000)
Kojto 116:c0f6e94411f5 1668 #define GPIO_OSPEEDER_OSPEED14 ((uint32_t)0x30000000)
Kojto 116:c0f6e94411f5 1669 #define GPIO_OSPEEDER_OSPEED14_0 ((uint32_t)0x10000000)
Kojto 116:c0f6e94411f5 1670 #define GPIO_OSPEEDER_OSPEED14_1 ((uint32_t)0x20000000)
Kojto 116:c0f6e94411f5 1671 #define GPIO_OSPEEDER_OSPEED15 ((uint32_t)0xC0000000)
Kojto 116:c0f6e94411f5 1672 #define GPIO_OSPEEDER_OSPEED15_0 ((uint32_t)0x40000000)
Kojto 116:c0f6e94411f5 1673 #define GPIO_OSPEEDER_OSPEED15_1 ((uint32_t)0x80000000)
Kojto 116:c0f6e94411f5 1674
Kojto 116:c0f6e94411f5 1675 /******************* Bit definition for GPIO_PUPDR register ******************/
Kojto 116:c0f6e94411f5 1676 #define GPIO_PUPDR_PUPD0 ((uint32_t)0x00000003)
Kojto 116:c0f6e94411f5 1677 #define GPIO_PUPDR_PUPD0_0 ((uint32_t)0x00000001)
Kojto 116:c0f6e94411f5 1678 #define GPIO_PUPDR_PUPD0_1 ((uint32_t)0x00000002)
Kojto 116:c0f6e94411f5 1679 #define GPIO_PUPDR_PUPD1 ((uint32_t)0x0000000C)
Kojto 116:c0f6e94411f5 1680 #define GPIO_PUPDR_PUPD1_0 ((uint32_t)0x00000004)
Kojto 116:c0f6e94411f5 1681 #define GPIO_PUPDR_PUPD1_1 ((uint32_t)0x00000008)
Kojto 116:c0f6e94411f5 1682 #define GPIO_PUPDR_PUPD2 ((uint32_t)0x00000030)
Kojto 116:c0f6e94411f5 1683 #define GPIO_PUPDR_PUPD2_0 ((uint32_t)0x00000010)
Kojto 116:c0f6e94411f5 1684 #define GPIO_PUPDR_PUPD2_1 ((uint32_t)0x00000020)
Kojto 116:c0f6e94411f5 1685 #define GPIO_PUPDR_PUPD3 ((uint32_t)0x000000C0)
Kojto 116:c0f6e94411f5 1686 #define GPIO_PUPDR_PUPD3_0 ((uint32_t)0x00000040)
Kojto 116:c0f6e94411f5 1687 #define GPIO_PUPDR_PUPD3_1 ((uint32_t)0x00000080)
Kojto 116:c0f6e94411f5 1688 #define GPIO_PUPDR_PUPD4 ((uint32_t)0x00000300)
Kojto 116:c0f6e94411f5 1689 #define GPIO_PUPDR_PUPD4_0 ((uint32_t)0x00000100)
Kojto 116:c0f6e94411f5 1690 #define GPIO_PUPDR_PUPD4_1 ((uint32_t)0x00000200)
Kojto 116:c0f6e94411f5 1691 #define GPIO_PUPDR_PUPD5 ((uint32_t)0x00000C00)
Kojto 116:c0f6e94411f5 1692 #define GPIO_PUPDR_PUPD5_0 ((uint32_t)0x00000400)
Kojto 116:c0f6e94411f5 1693 #define GPIO_PUPDR_PUPD5_1 ((uint32_t)0x00000800)
Kojto 116:c0f6e94411f5 1694 #define GPIO_PUPDR_PUPD6 ((uint32_t)0x00003000)
Kojto 116:c0f6e94411f5 1695 #define GPIO_PUPDR_PUPD6_0 ((uint32_t)0x00001000)
Kojto 116:c0f6e94411f5 1696 #define GPIO_PUPDR_PUPD6_1 ((uint32_t)0x00002000)
Kojto 116:c0f6e94411f5 1697 #define GPIO_PUPDR_PUPD7 ((uint32_t)0x0000C000)
Kojto 116:c0f6e94411f5 1698 #define GPIO_PUPDR_PUPD7_0 ((uint32_t)0x00004000)
Kojto 116:c0f6e94411f5 1699 #define GPIO_PUPDR_PUPD7_1 ((uint32_t)0x00008000)
Kojto 116:c0f6e94411f5 1700 #define GPIO_PUPDR_PUPD8 ((uint32_t)0x00030000)
Kojto 116:c0f6e94411f5 1701 #define GPIO_PUPDR_PUPD8_0 ((uint32_t)0x00010000)
Kojto 116:c0f6e94411f5 1702 #define GPIO_PUPDR_PUPD8_1 ((uint32_t)0x00020000)
Kojto 116:c0f6e94411f5 1703 #define GPIO_PUPDR_PUPD9 ((uint32_t)0x000C0000)
Kojto 116:c0f6e94411f5 1704 #define GPIO_PUPDR_PUPD9_0 ((uint32_t)0x00040000)
Kojto 116:c0f6e94411f5 1705 #define GPIO_PUPDR_PUPD9_1 ((uint32_t)0x00080000)
Kojto 116:c0f6e94411f5 1706 #define GPIO_PUPDR_PUPD10 ((uint32_t)0x00300000)
Kojto 116:c0f6e94411f5 1707 #define GPIO_PUPDR_PUPD10_0 ((uint32_t)0x00100000)
Kojto 116:c0f6e94411f5 1708 #define GPIO_PUPDR_PUPD10_1 ((uint32_t)0x00200000)
Kojto 116:c0f6e94411f5 1709 #define GPIO_PUPDR_PUPD11 ((uint32_t)0x00C00000)
Kojto 116:c0f6e94411f5 1710 #define GPIO_PUPDR_PUPD11_0 ((uint32_t)0x00400000)
Kojto 116:c0f6e94411f5 1711 #define GPIO_PUPDR_PUPD11_1 ((uint32_t)0x00800000)
Kojto 116:c0f6e94411f5 1712 #define GPIO_PUPDR_PUPD12 ((uint32_t)0x03000000)
Kojto 116:c0f6e94411f5 1713 #define GPIO_PUPDR_PUPD12_0 ((uint32_t)0x01000000)
Kojto 116:c0f6e94411f5 1714 #define GPIO_PUPDR_PUPD12_1 ((uint32_t)0x02000000)
Kojto 116:c0f6e94411f5 1715 #define GPIO_PUPDR_PUPD13 ((uint32_t)0x0C000000)
Kojto 116:c0f6e94411f5 1716 #define GPIO_PUPDR_PUPD13_0 ((uint32_t)0x04000000)
Kojto 116:c0f6e94411f5 1717 #define GPIO_PUPDR_PUPD13_1 ((uint32_t)0x08000000)
Kojto 116:c0f6e94411f5 1718 #define GPIO_PUPDR_PUPD14 ((uint32_t)0x30000000)
Kojto 116:c0f6e94411f5 1719 #define GPIO_PUPDR_PUPD14_0 ((uint32_t)0x10000000)
Kojto 116:c0f6e94411f5 1720 #define GPIO_PUPDR_PUPD14_1 ((uint32_t)0x20000000)
Kojto 116:c0f6e94411f5 1721 #define GPIO_PUPDR_PUPD15 ((uint32_t)0xC0000000)
Kojto 116:c0f6e94411f5 1722 #define GPIO_PUPDR_PUPD15_0 ((uint32_t)0x40000000)
Kojto 116:c0f6e94411f5 1723 #define GPIO_PUPDR_PUPD15_1 ((uint32_t)0x80000000)
Kojto 116:c0f6e94411f5 1724
Kojto 116:c0f6e94411f5 1725 /******************* Bit definition for GPIO_IDR register *******************/
Kojto 116:c0f6e94411f5 1726 #define GPIO_IDR_ID0 ((uint32_t)0x00000001)
Kojto 116:c0f6e94411f5 1727 #define GPIO_IDR_ID1 ((uint32_t)0x00000002)
Kojto 116:c0f6e94411f5 1728 #define GPIO_IDR_ID2 ((uint32_t)0x00000004)
Kojto 116:c0f6e94411f5 1729 #define GPIO_IDR_ID3 ((uint32_t)0x00000008)
Kojto 116:c0f6e94411f5 1730 #define GPIO_IDR_ID4 ((uint32_t)0x00000010)
Kojto 116:c0f6e94411f5 1731 #define GPIO_IDR_ID5 ((uint32_t)0x00000020)
Kojto 116:c0f6e94411f5 1732 #define GPIO_IDR_ID6 ((uint32_t)0x00000040)
Kojto 116:c0f6e94411f5 1733 #define GPIO_IDR_ID7 ((uint32_t)0x00000080)
Kojto 116:c0f6e94411f5 1734 #define GPIO_IDR_ID8 ((uint32_t)0x00000100)
Kojto 116:c0f6e94411f5 1735 #define GPIO_IDR_ID9 ((uint32_t)0x00000200)
Kojto 116:c0f6e94411f5 1736 #define GPIO_IDR_ID10 ((uint32_t)0x00000400)
Kojto 116:c0f6e94411f5 1737 #define GPIO_IDR_ID11 ((uint32_t)0x00000800)
Kojto 116:c0f6e94411f5 1738 #define GPIO_IDR_ID12 ((uint32_t)0x00001000)
Kojto 116:c0f6e94411f5 1739 #define GPIO_IDR_ID13 ((uint32_t)0x00002000)
Kojto 116:c0f6e94411f5 1740 #define GPIO_IDR_ID14 ((uint32_t)0x00004000)
Kojto 116:c0f6e94411f5 1741 #define GPIO_IDR_ID15 ((uint32_t)0x00008000)
Kojto 116:c0f6e94411f5 1742
Kojto 116:c0f6e94411f5 1743 /****************** Bit definition for GPIO_ODR register ********************/
Kojto 116:c0f6e94411f5 1744 #define GPIO_ODR_OD0 ((uint32_t)0x00000001)
Kojto 116:c0f6e94411f5 1745 #define GPIO_ODR_OD1 ((uint32_t)0x00000002)
Kojto 116:c0f6e94411f5 1746 #define GPIO_ODR_OD2 ((uint32_t)0x00000004)
Kojto 116:c0f6e94411f5 1747 #define GPIO_ODR_OD3 ((uint32_t)0x00000008)
Kojto 116:c0f6e94411f5 1748 #define GPIO_ODR_OD4 ((uint32_t)0x00000010)
Kojto 116:c0f6e94411f5 1749 #define GPIO_ODR_OD5 ((uint32_t)0x00000020)
Kojto 116:c0f6e94411f5 1750 #define GPIO_ODR_OD6 ((uint32_t)0x00000040)
Kojto 116:c0f6e94411f5 1751 #define GPIO_ODR_OD7 ((uint32_t)0x00000080)
Kojto 116:c0f6e94411f5 1752 #define GPIO_ODR_OD8 ((uint32_t)0x00000100)
Kojto 116:c0f6e94411f5 1753 #define GPIO_ODR_OD9 ((uint32_t)0x00000200)
Kojto 116:c0f6e94411f5 1754 #define GPIO_ODR_OD10 ((uint32_t)0x00000400)
Kojto 116:c0f6e94411f5 1755 #define GPIO_ODR_OD11 ((uint32_t)0x00000800)
Kojto 116:c0f6e94411f5 1756 #define GPIO_ODR_OD12 ((uint32_t)0x00001000)
Kojto 116:c0f6e94411f5 1757 #define GPIO_ODR_OD13 ((uint32_t)0x00002000)
Kojto 116:c0f6e94411f5 1758 #define GPIO_ODR_OD14 ((uint32_t)0x00004000)
Kojto 116:c0f6e94411f5 1759 #define GPIO_ODR_OD15 ((uint32_t)0x00008000)
Kojto 116:c0f6e94411f5 1760
Kojto 116:c0f6e94411f5 1761 /****************** Bit definition for GPIO_BSRR register ********************/
Kojto 116:c0f6e94411f5 1762 #define GPIO_BSRR_BS_0 ((uint32_t)0x00000001)
Kojto 116:c0f6e94411f5 1763 #define GPIO_BSRR_BS_1 ((uint32_t)0x00000002)
Kojto 116:c0f6e94411f5 1764 #define GPIO_BSRR_BS_2 ((uint32_t)0x00000004)
Kojto 116:c0f6e94411f5 1765 #define GPIO_BSRR_BS_3 ((uint32_t)0x00000008)
Kojto 116:c0f6e94411f5 1766 #define GPIO_BSRR_BS_4 ((uint32_t)0x00000010)
Kojto 116:c0f6e94411f5 1767 #define GPIO_BSRR_BS_5 ((uint32_t)0x00000020)
Kojto 116:c0f6e94411f5 1768 #define GPIO_BSRR_BS_6 ((uint32_t)0x00000040)
Kojto 116:c0f6e94411f5 1769 #define GPIO_BSRR_BS_7 ((uint32_t)0x00000080)
Kojto 116:c0f6e94411f5 1770 #define GPIO_BSRR_BS_8 ((uint32_t)0x00000100)
Kojto 116:c0f6e94411f5 1771 #define GPIO_BSRR_BS_9 ((uint32_t)0x00000200)
Kojto 116:c0f6e94411f5 1772 #define GPIO_BSRR_BS_10 ((uint32_t)0x00000400)
Kojto 116:c0f6e94411f5 1773 #define GPIO_BSRR_BS_11 ((uint32_t)0x00000800)
Kojto 116:c0f6e94411f5 1774 #define GPIO_BSRR_BS_12 ((uint32_t)0x00001000)
Kojto 116:c0f6e94411f5 1775 #define GPIO_BSRR_BS_13 ((uint32_t)0x00002000)
Kojto 116:c0f6e94411f5 1776 #define GPIO_BSRR_BS_14 ((uint32_t)0x00004000)
Kojto 116:c0f6e94411f5 1777 #define GPIO_BSRR_BS_15 ((uint32_t)0x00008000)
Kojto 116:c0f6e94411f5 1778 #define GPIO_BSRR_BR_0 ((uint32_t)0x00010000)
Kojto 116:c0f6e94411f5 1779 #define GPIO_BSRR_BR_1 ((uint32_t)0x00020000)
Kojto 116:c0f6e94411f5 1780 #define GPIO_BSRR_BR_2 ((uint32_t)0x00040000)
Kojto 116:c0f6e94411f5 1781 #define GPIO_BSRR_BR_3 ((uint32_t)0x00080000)
Kojto 116:c0f6e94411f5 1782 #define GPIO_BSRR_BR_4 ((uint32_t)0x00100000)
Kojto 116:c0f6e94411f5 1783 #define GPIO_BSRR_BR_5 ((uint32_t)0x00200000)
Kojto 116:c0f6e94411f5 1784 #define GPIO_BSRR_BR_6 ((uint32_t)0x00400000)
Kojto 116:c0f6e94411f5 1785 #define GPIO_BSRR_BR_7 ((uint32_t)0x00800000)
Kojto 116:c0f6e94411f5 1786 #define GPIO_BSRR_BR_8 ((uint32_t)0x01000000)
Kojto 116:c0f6e94411f5 1787 #define GPIO_BSRR_BR_9 ((uint32_t)0x02000000)
Kojto 116:c0f6e94411f5 1788 #define GPIO_BSRR_BR_10 ((uint32_t)0x04000000)
Kojto 116:c0f6e94411f5 1789 #define GPIO_BSRR_BR_11 ((uint32_t)0x08000000)
Kojto 116:c0f6e94411f5 1790 #define GPIO_BSRR_BR_12 ((uint32_t)0x10000000)
Kojto 116:c0f6e94411f5 1791 #define GPIO_BSRR_BR_13 ((uint32_t)0x20000000)
Kojto 116:c0f6e94411f5 1792 #define GPIO_BSRR_BR_14 ((uint32_t)0x40000000)
Kojto 116:c0f6e94411f5 1793 #define GPIO_BSRR_BR_15 ((uint32_t)0x80000000)
Kojto 116:c0f6e94411f5 1794
Kojto 116:c0f6e94411f5 1795 /****************** Bit definition for GPIO_LCKR register ********************/
Kojto 116:c0f6e94411f5 1796 #define GPIO_LCKR_LCK0 ((uint32_t)0x00000001)
Kojto 116:c0f6e94411f5 1797 #define GPIO_LCKR_LCK1 ((uint32_t)0x00000002)
Kojto 116:c0f6e94411f5 1798 #define GPIO_LCKR_LCK2 ((uint32_t)0x00000004)
Kojto 116:c0f6e94411f5 1799 #define GPIO_LCKR_LCK3 ((uint32_t)0x00000008)
Kojto 116:c0f6e94411f5 1800 #define GPIO_LCKR_LCK4 ((uint32_t)0x00000010)
Kojto 116:c0f6e94411f5 1801 #define GPIO_LCKR_LCK5 ((uint32_t)0x00000020)
Kojto 116:c0f6e94411f5 1802 #define GPIO_LCKR_LCK6 ((uint32_t)0x00000040)
Kojto 116:c0f6e94411f5 1803 #define GPIO_LCKR_LCK7 ((uint32_t)0x00000080)
Kojto 116:c0f6e94411f5 1804 #define GPIO_LCKR_LCK8 ((uint32_t)0x00000100)
Kojto 116:c0f6e94411f5 1805 #define GPIO_LCKR_LCK9 ((uint32_t)0x00000200)
Kojto 116:c0f6e94411f5 1806 #define GPIO_LCKR_LCK10 ((uint32_t)0x00000400)
Kojto 116:c0f6e94411f5 1807 #define GPIO_LCKR_LCK11 ((uint32_t)0x00000800)
Kojto 116:c0f6e94411f5 1808 #define GPIO_LCKR_LCK12 ((uint32_t)0x00001000)
Kojto 116:c0f6e94411f5 1809 #define GPIO_LCKR_LCK13 ((uint32_t)0x00002000)
Kojto 116:c0f6e94411f5 1810 #define GPIO_LCKR_LCK14 ((uint32_t)0x00004000)
Kojto 116:c0f6e94411f5 1811 #define GPIO_LCKR_LCK15 ((uint32_t)0x00008000)
Kojto 116:c0f6e94411f5 1812 #define GPIO_LCKR_LCKK ((uint32_t)0x00010000)
Kojto 116:c0f6e94411f5 1813
Kojto 116:c0f6e94411f5 1814 /****************** Bit definition for GPIO_BRR register *********************/
Kojto 116:c0f6e94411f5 1815 #define GPIO_BRR_BR_0 ((uint32_t)0x00000001)
Kojto 116:c0f6e94411f5 1816 #define GPIO_BRR_BR_1 ((uint32_t)0x00000002)
Kojto 116:c0f6e94411f5 1817 #define GPIO_BRR_BR_2 ((uint32_t)0x00000004)
Kojto 116:c0f6e94411f5 1818 #define GPIO_BRR_BR_3 ((uint32_t)0x00000008)
Kojto 116:c0f6e94411f5 1819 #define GPIO_BRR_BR_4 ((uint32_t)0x00000010)
Kojto 116:c0f6e94411f5 1820 #define GPIO_BRR_BR_5 ((uint32_t)0x00000020)
Kojto 116:c0f6e94411f5 1821 #define GPIO_BRR_BR_6 ((uint32_t)0x00000040)
Kojto 116:c0f6e94411f5 1822 #define GPIO_BRR_BR_7 ((uint32_t)0x00000080)
Kojto 116:c0f6e94411f5 1823 #define GPIO_BRR_BR_8 ((uint32_t)0x00000100)
Kojto 116:c0f6e94411f5 1824 #define GPIO_BRR_BR_9 ((uint32_t)0x00000200)
Kojto 116:c0f6e94411f5 1825 #define GPIO_BRR_BR_10 ((uint32_t)0x00000400)
Kojto 116:c0f6e94411f5 1826 #define GPIO_BRR_BR_11 ((uint32_t)0x00000800)
Kojto 116:c0f6e94411f5 1827 #define GPIO_BRR_BR_12 ((uint32_t)0x00001000)
Kojto 116:c0f6e94411f5 1828 #define GPIO_BRR_BR_13 ((uint32_t)0x00002000)
Kojto 116:c0f6e94411f5 1829 #define GPIO_BRR_BR_14 ((uint32_t)0x00004000)
Kojto 116:c0f6e94411f5 1830 #define GPIO_BRR_BR_15 ((uint32_t)0x00008000)
Kojto 116:c0f6e94411f5 1831
Kojto 116:c0f6e94411f5 1832 /******************************************************************************/
Kojto 116:c0f6e94411f5 1833 /* */
Kojto 116:c0f6e94411f5 1834 /* Inter-integrated Circuit Interface (I2C) */
Kojto 116:c0f6e94411f5 1835 /* */
Kojto 116:c0f6e94411f5 1836 /******************************************************************************/
Kojto 116:c0f6e94411f5 1837
Kojto 116:c0f6e94411f5 1838 /******************* Bit definition for I2C_CR1 register *******************/
Kojto 116:c0f6e94411f5 1839 #define I2C_CR1_PE ((uint32_t)0x00000001) /*!< Peripheral enable */
Kojto 116:c0f6e94411f5 1840 #define I2C_CR1_TXIE ((uint32_t)0x00000002) /*!< TX interrupt enable */
Kojto 116:c0f6e94411f5 1841 #define I2C_CR1_RXIE ((uint32_t)0x00000004) /*!< RX interrupt enable */
Kojto 116:c0f6e94411f5 1842 #define I2C_CR1_ADDRIE ((uint32_t)0x00000008) /*!< Address match interrupt enable */
Kojto 116:c0f6e94411f5 1843 #define I2C_CR1_NACKIE ((uint32_t)0x00000010) /*!< NACK received interrupt enable */
Kojto 116:c0f6e94411f5 1844 #define I2C_CR1_STOPIE ((uint32_t)0x00000020) /*!< STOP detection interrupt enable */
Kojto 116:c0f6e94411f5 1845 #define I2C_CR1_TCIE ((uint32_t)0x00000040) /*!< Transfer complete interrupt enable */
Kojto 116:c0f6e94411f5 1846 #define I2C_CR1_ERRIE ((uint32_t)0x00000080) /*!< Errors interrupt enable */
Kojto 116:c0f6e94411f5 1847 #define I2C_CR1_DFN ((uint32_t)0x00000F00) /*!< Digital noise filter */
Kojto 116:c0f6e94411f5 1848 #define I2C_CR1_ANFOFF ((uint32_t)0x00001000) /*!< Analog noise filter OFF */
Kojto 116:c0f6e94411f5 1849 #define I2C_CR1_TXDMAEN ((uint32_t)0x00004000) /*!< DMA transmission requests enable */
Kojto 116:c0f6e94411f5 1850 #define I2C_CR1_RXDMAEN ((uint32_t)0x00008000) /*!< DMA reception requests enable */
Kojto 116:c0f6e94411f5 1851 #define I2C_CR1_SBC ((uint32_t)0x00010000) /*!< Slave byte control */
Kojto 116:c0f6e94411f5 1852 #define I2C_CR1_NOSTRETCH ((uint32_t)0x00020000) /*!< Clock stretching disable */
Kojto 116:c0f6e94411f5 1853 #define I2C_CR1_WUPEN ((uint32_t)0x00040000) /*!< Wakeup from STOP enable */
Kojto 116:c0f6e94411f5 1854 #define I2C_CR1_GCEN ((uint32_t)0x00080000) /*!< General call enable */
Kojto 116:c0f6e94411f5 1855 #define I2C_CR1_SMBHEN ((uint32_t)0x00100000) /*!< SMBus host address enable */
Kojto 116:c0f6e94411f5 1856 #define I2C_CR1_SMBDEN ((uint32_t)0x00200000) /*!< SMBus device default address enable */
Kojto 116:c0f6e94411f5 1857 #define I2C_CR1_ALERTEN ((uint32_t)0x00400000) /*!< SMBus alert enable */
Kojto 116:c0f6e94411f5 1858 #define I2C_CR1_PECEN ((uint32_t)0x00800000) /*!< PEC enable */
Kojto 116:c0f6e94411f5 1859
Kojto 116:c0f6e94411f5 1860 /****************** Bit definition for I2C_CR2 register ********************/
Kojto 116:c0f6e94411f5 1861 #define I2C_CR2_SADD ((uint32_t)0x000003FF) /*!< Slave address (master mode) */
Kojto 116:c0f6e94411f5 1862 #define I2C_CR2_RD_WRN ((uint32_t)0x00000400) /*!< Transfer direction (master mode) */
Kojto 116:c0f6e94411f5 1863 #define I2C_CR2_ADD10 ((uint32_t)0x00000800) /*!< 10-bit addressing mode (master mode) */
Kojto 116:c0f6e94411f5 1864 #define I2C_CR2_HEAD10R ((uint32_t)0x00001000) /*!< 10-bit address header only read direction (master mode) */
Kojto 116:c0f6e94411f5 1865 #define I2C_CR2_START ((uint32_t)0x00002000) /*!< START generation */
Kojto 116:c0f6e94411f5 1866 #define I2C_CR2_STOP ((uint32_t)0x00004000) /*!< STOP generation (master mode) */
Kojto 116:c0f6e94411f5 1867 #define I2C_CR2_NACK ((uint32_t)0x00008000) /*!< NACK generation (slave mode) */
Kojto 116:c0f6e94411f5 1868 #define I2C_CR2_NBYTES ((uint32_t)0x00FF0000) /*!< Number of bytes */
Kojto 116:c0f6e94411f5 1869 #define I2C_CR2_RELOAD ((uint32_t)0x01000000) /*!< NBYTES reload mode */
Kojto 116:c0f6e94411f5 1870 #define I2C_CR2_AUTOEND ((uint32_t)0x02000000) /*!< Automatic end mode (master mode) */
Kojto 116:c0f6e94411f5 1871 #define I2C_CR2_PECBYTE ((uint32_t)0x04000000) /*!< Packet error checking byte */
Kojto 116:c0f6e94411f5 1872
Kojto 116:c0f6e94411f5 1873 /******************* Bit definition for I2C_OAR1 register ******************/
Kojto 116:c0f6e94411f5 1874 #define I2C_OAR1_OA1 ((uint32_t)0x000003FF) /*!< Interface own address 1 */
Kojto 116:c0f6e94411f5 1875 #define I2C_OAR1_OA1MODE ((uint32_t)0x00000400) /*!< Own address 1 10-bit mode */
Kojto 116:c0f6e94411f5 1876 #define I2C_OAR1_OA1EN ((uint32_t)0x00008000) /*!< Own address 1 enable */
Kojto 116:c0f6e94411f5 1877
Kojto 116:c0f6e94411f5 1878 /******************* Bit definition for I2C_OAR2 register ******************/
Kojto 116:c0f6e94411f5 1879 #define I2C_OAR2_OA2 ((uint32_t)0x000000FE) /*!< Interface own address 2 */
Kojto 116:c0f6e94411f5 1880 #define I2C_OAR2_OA2MSK ((uint32_t)0x00000700) /*!< Own address 2 masks */
Kojto 116:c0f6e94411f5 1881 #define I2C_OAR2_OA2EN ((uint32_t)0x00008000) /*!< Own address 2 enable */
Kojto 116:c0f6e94411f5 1882
Kojto 116:c0f6e94411f5 1883 /******************* Bit definition for I2C_TIMINGR register *******************/
Kojto 116:c0f6e94411f5 1884 #define I2C_TIMINGR_SCLL ((uint32_t)0x000000FF) /*!< SCL low period (master mode) */
Kojto 116:c0f6e94411f5 1885 #define I2C_TIMINGR_SCLH ((uint32_t)0x0000FF00) /*!< SCL high period (master mode) */
Kojto 116:c0f6e94411f5 1886 #define I2C_TIMINGR_SDADEL ((uint32_t)0x000F0000) /*!< Data hold time */
Kojto 116:c0f6e94411f5 1887 #define I2C_TIMINGR_SCLDEL ((uint32_t)0x00F00000) /*!< Data setup time */
Kojto 116:c0f6e94411f5 1888 #define I2C_TIMINGR_PRESC ((uint32_t)0xF0000000) /*!< Timings prescaler */
Kojto 116:c0f6e94411f5 1889
Kojto 116:c0f6e94411f5 1890 /******************* Bit definition for I2C_TIMEOUTR register *******************/
Kojto 116:c0f6e94411f5 1891 #define I2C_TIMEOUTR_TIMEOUTA ((uint32_t)0x00000FFF) /*!< Bus timeout A */
Kojto 116:c0f6e94411f5 1892 #define I2C_TIMEOUTR_TIDLE ((uint32_t)0x00001000) /*!< Idle clock timeout detection */
Kojto 116:c0f6e94411f5 1893 #define I2C_TIMEOUTR_TIMOUTEN ((uint32_t)0x00008000) /*!< Clock timeout enable */
Kojto 116:c0f6e94411f5 1894 #define I2C_TIMEOUTR_TIMEOUTB ((uint32_t)0x0FFF0000) /*!< Bus timeout B*/
Kojto 116:c0f6e94411f5 1895 #define I2C_TIMEOUTR_TEXTEN ((uint32_t)0x80000000) /*!< Extended clock timeout enable */
Kojto 116:c0f6e94411f5 1896
Kojto 116:c0f6e94411f5 1897 /****************** Bit definition for I2C_ISR register *********************/
Kojto 116:c0f6e94411f5 1898 #define I2C_ISR_TXE ((uint32_t)0x00000001) /*!< Transmit data register empty */
Kojto 116:c0f6e94411f5 1899 #define I2C_ISR_TXIS ((uint32_t)0x00000002) /*!< Transmit interrupt status */
Kojto 116:c0f6e94411f5 1900 #define I2C_ISR_RXNE ((uint32_t)0x00000004) /*!< Receive data register not empty */
Kojto 116:c0f6e94411f5 1901 #define I2C_ISR_ADDR ((uint32_t)0x00000008) /*!< Address matched (slave mode)*/
Kojto 116:c0f6e94411f5 1902 #define I2C_ISR_NACKF ((uint32_t)0x00000010) /*!< NACK received flag */
Kojto 116:c0f6e94411f5 1903 #define I2C_ISR_STOPF ((uint32_t)0x00000020) /*!< STOP detection flag */
Kojto 116:c0f6e94411f5 1904 #define I2C_ISR_TC ((uint32_t)0x00000040) /*!< Transfer complete (master mode) */
Kojto 116:c0f6e94411f5 1905 #define I2C_ISR_TCR ((uint32_t)0x00000080) /*!< Transfer complete reload */
Kojto 116:c0f6e94411f5 1906 #define I2C_ISR_BERR ((uint32_t)0x00000100) /*!< Bus error */
Kojto 116:c0f6e94411f5 1907 #define I2C_ISR_ARLO ((uint32_t)0x00000200) /*!< Arbitration lost */
Kojto 116:c0f6e94411f5 1908 #define I2C_ISR_OVR ((uint32_t)0x00000400) /*!< Overrun/Underrun */
Kojto 116:c0f6e94411f5 1909 #define I2C_ISR_PECERR ((uint32_t)0x00000800) /*!< PEC error in reception */
Kojto 116:c0f6e94411f5 1910 #define I2C_ISR_TIMEOUT ((uint32_t)0x00001000) /*!< Timeout or Tlow detection flag */
Kojto 116:c0f6e94411f5 1911 #define I2C_ISR_ALERT ((uint32_t)0x00002000) /*!< SMBus alert */
Kojto 116:c0f6e94411f5 1912 #define I2C_ISR_BUSY ((uint32_t)0x00008000) /*!< Bus busy */
Kojto 116:c0f6e94411f5 1913 #define I2C_ISR_DIR ((uint32_t)0x00010000) /*!< Transfer direction (slave mode) */
Kojto 116:c0f6e94411f5 1914 #define I2C_ISR_ADDCODE ((uint32_t)0x00FE0000) /*!< Address match code (slave mode) */
Kojto 116:c0f6e94411f5 1915
Kojto 116:c0f6e94411f5 1916 /****************** Bit definition for I2C_ICR register *********************/
Kojto 116:c0f6e94411f5 1917 #define I2C_ICR_ADDRCF ((uint32_t)0x00000008) /*!< Address matched clear flag */
Kojto 116:c0f6e94411f5 1918 #define I2C_ICR_NACKCF ((uint32_t)0x00000010) /*!< NACK clear flag */
Kojto 116:c0f6e94411f5 1919 #define I2C_ICR_STOPCF ((uint32_t)0x00000020) /*!< STOP detection clear flag */
Kojto 116:c0f6e94411f5 1920 #define I2C_ICR_BERRCF ((uint32_t)0x00000100) /*!< Bus error clear flag */
Kojto 116:c0f6e94411f5 1921 #define I2C_ICR_ARLOCF ((uint32_t)0x00000200) /*!< Arbitration lost clear flag */
Kojto 116:c0f6e94411f5 1922 #define I2C_ICR_OVRCF ((uint32_t)0x00000400) /*!< Overrun/Underrun clear flag */
Kojto 116:c0f6e94411f5 1923 #define I2C_ICR_PECCF ((uint32_t)0x00000800) /*!< PAC error clear flag */
Kojto 116:c0f6e94411f5 1924 #define I2C_ICR_TIMOUTCF ((uint32_t)0x00001000) /*!< Timeout clear flag */
Kojto 116:c0f6e94411f5 1925 #define I2C_ICR_ALERTCF ((uint32_t)0x00002000) /*!< Alert clear flag */
Kojto 116:c0f6e94411f5 1926
Kojto 116:c0f6e94411f5 1927 /****************** Bit definition for I2C_PECR register *********************/
Kojto 116:c0f6e94411f5 1928 #define I2C_PECR_PEC ((uint32_t)0x000000FF) /*!< PEC register */
Kojto 116:c0f6e94411f5 1929
Kojto 116:c0f6e94411f5 1930 /****************** Bit definition for I2C_RXDR register *********************/
Kojto 116:c0f6e94411f5 1931 #define I2C_RXDR_RXDATA ((uint32_t)0x000000FF) /*!< 8-bit receive data */
Kojto 116:c0f6e94411f5 1932
Kojto 116:c0f6e94411f5 1933 /****************** Bit definition for I2C_TXDR register *********************/
Kojto 116:c0f6e94411f5 1934 #define I2C_TXDR_TXDATA ((uint32_t)0x000000FF) /*!< 8-bit transmit data */
Kojto 116:c0f6e94411f5 1935
Kojto 116:c0f6e94411f5 1936 /******************************************************************************/
Kojto 116:c0f6e94411f5 1937 /* */
Kojto 116:c0f6e94411f5 1938 /* Independent WATCHDOG (IWDG) */
Kojto 116:c0f6e94411f5 1939 /* */
Kojto 116:c0f6e94411f5 1940 /******************************************************************************/
Kojto 116:c0f6e94411f5 1941 /******************* Bit definition for IWDG_KR register ********************/
Kojto 116:c0f6e94411f5 1942 #define IWDG_KR_KEY ((uint32_t)0x0000FFFF) /*!< Key value (write only, read 0000h) */
Kojto 116:c0f6e94411f5 1943
Kojto 116:c0f6e94411f5 1944 /******************* Bit definition for IWDG_PR register ********************/
Kojto 116:c0f6e94411f5 1945 #define IWDG_PR_PR ((uint32_t)0x00000007) /*!< PR[2:0] (Prescaler divider) */
Kojto 116:c0f6e94411f5 1946 #define IWDG_PR_PR_0 ((uint32_t)0x00000001) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 1947 #define IWDG_PR_PR_1 ((uint32_t)0x00000002) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 1948 #define IWDG_PR_PR_2 ((uint32_t)0x00000004) /*!< Bit 2 */
Kojto 116:c0f6e94411f5 1949
Kojto 116:c0f6e94411f5 1950 /******************* Bit definition for IWDG_RLR register *******************/
Kojto 116:c0f6e94411f5 1951 #define IWDG_RLR_RL ((uint32_t)0x00000FFF) /*!< Watchdog counter reload value */
Kojto 116:c0f6e94411f5 1952
Kojto 116:c0f6e94411f5 1953 /******************* Bit definition for IWDG_SR register ********************/
Kojto 116:c0f6e94411f5 1954 #define IWDG_SR_PVU ((uint32_t)0x00000001) /*!< Watchdog prescaler value update */
Kojto 116:c0f6e94411f5 1955 #define IWDG_SR_RVU ((uint32_t)0x00000002) /*!< Watchdog counter reload value update */
Kojto 116:c0f6e94411f5 1956 #define IWDG_SR_WVU ((uint32_t)0x00000004) /*!< Watchdog counter window value update */
Kojto 116:c0f6e94411f5 1957
Kojto 116:c0f6e94411f5 1958 /******************* Bit definition for IWDG_KR register ********************/
Kojto 116:c0f6e94411f5 1959 #define IWDG_WINR_WIN ((uint32_t)0x00000FFF) /*!< Watchdog counter window value */
Kojto 116:c0f6e94411f5 1960
Kojto 116:c0f6e94411f5 1961 /******************************************************************************/
Kojto 116:c0f6e94411f5 1962 /* */
Kojto 116:c0f6e94411f5 1963 /* LCD Controller (LCD) */
Kojto 116:c0f6e94411f5 1964 /* */
Kojto 116:c0f6e94411f5 1965 /******************************************************************************/
Kojto 116:c0f6e94411f5 1966
Kojto 116:c0f6e94411f5 1967 /******************* Bit definition for LCD_CR register *********************/
Kojto 116:c0f6e94411f5 1968 #define LCD_CR_LCDEN ((uint32_t)0x00000001) /*!< LCD Enable Bit */
Kojto 116:c0f6e94411f5 1969 #define LCD_CR_VSEL ((uint32_t)0x00000002) /*!< Voltage source selector Bit */
Kojto 116:c0f6e94411f5 1970
Kojto 116:c0f6e94411f5 1971 #define LCD_CR_DUTY ((uint32_t)0x0000001C) /*!< DUTY[2:0] bits (Duty selector) */
Kojto 116:c0f6e94411f5 1972 #define LCD_CR_DUTY_0 ((uint32_t)0x00000004) /*!< Duty selector Bit 0 */
Kojto 116:c0f6e94411f5 1973 #define LCD_CR_DUTY_1 ((uint32_t)0x00000008) /*!< Duty selector Bit 1 */
Kojto 116:c0f6e94411f5 1974 #define LCD_CR_DUTY_2 ((uint32_t)0x00000010) /*!< Duty selector Bit 2 */
Kojto 116:c0f6e94411f5 1975
Kojto 116:c0f6e94411f5 1976 #define LCD_CR_BIAS ((uint32_t)0x00000060) /*!< BIAS[1:0] bits (Bias selector) */
Kojto 116:c0f6e94411f5 1977 #define LCD_CR_BIAS_0 ((uint32_t)0x00000020) /*!< Bias selector Bit 0 */
Kojto 116:c0f6e94411f5 1978 #define LCD_CR_BIAS_1 ((uint32_t)0x00000040) /*!< Bias selector Bit 1 */
Kojto 116:c0f6e94411f5 1979
Kojto 116:c0f6e94411f5 1980 /******************* Bit definition for LCD_FCR register ********************/
Kojto 116:c0f6e94411f5 1981 #define LCD_FCR_HD ((uint32_t)0x00000001) /*!< High Drive Enable Bit */
Kojto 116:c0f6e94411f5 1982 #define LCD_FCR_SOFIE ((uint32_t)0x00000002) /*!< Start of Frame Interrupt Enable Bit */
Kojto 116:c0f6e94411f5 1983 #define LCD_FCR_UDDIE ((uint32_t)0x00000008) /*!< Update Display Done Interrupt Enable Bit */
Kojto 116:c0f6e94411f5 1984
Kojto 116:c0f6e94411f5 1985 #define LCD_FCR_PON ((uint32_t)0x00000070) /*!< PON[2:0] bits (Puls ON Duration) */
Kojto 116:c0f6e94411f5 1986 #define LCD_FCR_PON_0 ((uint32_t)0x00000010) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 1987 #define LCD_FCR_PON_1 ((uint32_t)0x00000020) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 1988 #define LCD_FCR_PON_2 ((uint32_t)0x00000040) /*!< Bit 2 */
Kojto 116:c0f6e94411f5 1989
Kojto 116:c0f6e94411f5 1990 #define LCD_FCR_DEAD ((uint32_t)0x00000380) /*!< DEAD[2:0] bits (DEAD Time) */
Kojto 116:c0f6e94411f5 1991 #define LCD_FCR_DEAD_0 ((uint32_t)0x00000080) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 1992 #define LCD_FCR_DEAD_1 ((uint32_t)0x00000100) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 1993 #define LCD_FCR_DEAD_2 ((uint32_t)0x00000200) /*!< Bit 2 */
Kojto 116:c0f6e94411f5 1994
Kojto 116:c0f6e94411f5 1995 #define LCD_FCR_CC ((uint32_t)0x00001C00) /*!< CC[2:0] bits (Contrast Control) */
Kojto 116:c0f6e94411f5 1996 #define LCD_FCR_CC_0 ((uint32_t)0x00000400) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 1997 #define LCD_FCR_CC_1 ((uint32_t)0x00000800) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 1998 #define LCD_FCR_CC_2 ((uint32_t)0x00001000) /*!< Bit 2 */
Kojto 116:c0f6e94411f5 1999
Kojto 116:c0f6e94411f5 2000 #define LCD_FCR_BLINKF ((uint32_t)0x0000E000) /*!< BLINKF[2:0] bits (Blink Frequency) */
Kojto 116:c0f6e94411f5 2001 #define LCD_FCR_BLINKF_0 ((uint32_t)0x00002000) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 2002 #define LCD_FCR_BLINKF_1 ((uint32_t)0x00004000) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 2003 #define LCD_FCR_BLINKF_2 ((uint32_t)0x00008000) /*!< Bit 2 */
Kojto 116:c0f6e94411f5 2004
Kojto 116:c0f6e94411f5 2005 #define LCD_FCR_BLINK ((uint32_t)0x00030000) /*!< BLINK[1:0] bits (Blink Enable) */
Kojto 116:c0f6e94411f5 2006 #define LCD_FCR_BLINK_0 ((uint32_t)0x00010000) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 2007 #define LCD_FCR_BLINK_1 ((uint32_t)0x00020000) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 2008
Kojto 116:c0f6e94411f5 2009 #define LCD_FCR_DIV ((uint32_t)0x003C0000) /*!< DIV[3:0] bits (Divider) */
Kojto 116:c0f6e94411f5 2010 #define LCD_FCR_PS ((uint32_t)0x03C00000) /*!< PS[3:0] bits (Prescaler) */
Kojto 116:c0f6e94411f5 2011
Kojto 116:c0f6e94411f5 2012 /******************* Bit definition for LCD_SR register *********************/
Kojto 116:c0f6e94411f5 2013 #define LCD_SR_ENS ((uint32_t)0x00000001) /*!< LCD Enabled Bit */
Kojto 116:c0f6e94411f5 2014 #define LCD_SR_SOF ((uint32_t)0x00000002) /*!< Start Of Frame Flag Bit */
Kojto 116:c0f6e94411f5 2015 #define LCD_SR_UDR ((uint32_t)0x00000004) /*!< Update Display Request Bit */
Kojto 116:c0f6e94411f5 2016 #define LCD_SR_UDD ((uint32_t)0x00000008) /*!< Update Display Done Flag Bit */
Kojto 116:c0f6e94411f5 2017 #define LCD_SR_RDY ((uint32_t)0x00000010) /*!< Ready Flag Bit */
Kojto 116:c0f6e94411f5 2018 #define LCD_SR_FCRSR ((uint32_t)0x00000020) /*!< LCD FCR Register Synchronization Flag Bit */
Kojto 116:c0f6e94411f5 2019
Kojto 116:c0f6e94411f5 2020 /******************* Bit definition for LCD_CLR register ********************/
Kojto 116:c0f6e94411f5 2021 #define LCD_CLR_SOFC ((uint32_t)0x00000002) /*!< Start Of Frame Flag Clear Bit */
Kojto 116:c0f6e94411f5 2022 #define LCD_CLR_UDDC ((uint32_t)0x00000008) /*!< Update Display Done Flag Clear Bit */
Kojto 116:c0f6e94411f5 2023
Kojto 116:c0f6e94411f5 2024 /******************* Bit definition for LCD_RAM register ********************/
Kojto 116:c0f6e94411f5 2025 #define LCD_RAM_SEGMENT_DATA ((uint32_t)0xFFFFFFFF) /*!< Segment Data Bits */
Kojto 116:c0f6e94411f5 2026
Kojto 116:c0f6e94411f5 2027 /******************************************************************************/
Kojto 116:c0f6e94411f5 2028 /* */
Kojto 116:c0f6e94411f5 2029 /* Low Power Timer (LPTTIM) */
Kojto 116:c0f6e94411f5 2030 /* */
Kojto 116:c0f6e94411f5 2031 /******************************************************************************/
Kojto 116:c0f6e94411f5 2032 /****************** Bit definition for LPTIM_ISR register *******************/
Kojto 116:c0f6e94411f5 2033 #define LPTIM_ISR_CMPM ((uint32_t)0x00000001) /*!< Compare match */
Kojto 116:c0f6e94411f5 2034 #define LPTIM_ISR_ARRM ((uint32_t)0x00000002) /*!< Autoreload match */
Kojto 116:c0f6e94411f5 2035 #define LPTIM_ISR_EXTTRIG ((uint32_t)0x00000004) /*!< External trigger edge event */
Kojto 116:c0f6e94411f5 2036 #define LPTIM_ISR_CMPOK ((uint32_t)0x00000008) /*!< Compare register update OK */
Kojto 116:c0f6e94411f5 2037 #define LPTIM_ISR_ARROK ((uint32_t)0x00000010) /*!< Autoreload register update OK */
Kojto 116:c0f6e94411f5 2038 #define LPTIM_ISR_UP ((uint32_t)0x00000020) /*!< Counter direction change down to up */
Kojto 116:c0f6e94411f5 2039 #define LPTIM_ISR_DOWN ((uint32_t)0x00000040) /*!< Counter direction change up to down */
Kojto 116:c0f6e94411f5 2040
Kojto 116:c0f6e94411f5 2041 /****************** Bit definition for LPTIM_ICR register *******************/
Kojto 116:c0f6e94411f5 2042 #define LPTIM_ICR_CMPMCF ((uint32_t)0x00000001) /*!< Compare match Clear Flag */
Kojto 116:c0f6e94411f5 2043 #define LPTIM_ICR_ARRMCF ((uint32_t)0x00000002) /*!< Autoreload match Clear Flag */
Kojto 116:c0f6e94411f5 2044 #define LPTIM_ICR_EXTTRIGCF ((uint32_t)0x00000004) /*!< External trigger edge event Clear Flag */
Kojto 116:c0f6e94411f5 2045 #define LPTIM_ICR_CMPOKCF ((uint32_t)0x00000008) /*!< Compare register update OK Clear Flag */
Kojto 116:c0f6e94411f5 2046 #define LPTIM_ICR_ARROKCF ((uint32_t)0x00000010) /*!< Autoreload register update OK Clear Flag */
Kojto 116:c0f6e94411f5 2047 #define LPTIM_ICR_UPCF ((uint32_t)0x00000020) /*!< Counter direction change down to up Clear Flag */
Kojto 116:c0f6e94411f5 2048 #define LPTIM_ICR_DOWNCF ((uint32_t)0x00000040) /*!< Counter direction change up to down Clear Flag */
Kojto 116:c0f6e94411f5 2049
Kojto 116:c0f6e94411f5 2050 /****************** Bit definition for LPTIM_IER register ********************/
Kojto 116:c0f6e94411f5 2051 #define LPTIM_IER_CMPMIE ((uint32_t)0x00000001) /*!< Compare match Interrupt Enable */
Kojto 116:c0f6e94411f5 2052 #define LPTIM_IER_ARRMIE ((uint32_t)0x00000002) /*!< Autoreload match Interrupt Enable */
Kojto 116:c0f6e94411f5 2053 #define LPTIM_IER_EXTTRIGIE ((uint32_t)0x00000004) /*!< External trigger edge event Interrupt Enable */
Kojto 116:c0f6e94411f5 2054 #define LPTIM_IER_CMPOKIE ((uint32_t)0x00000008) /*!< Compare register update OK Interrupt Enable */
Kojto 116:c0f6e94411f5 2055 #define LPTIM_IER_ARROKIE ((uint32_t)0x00000010) /*!< Autoreload register update OK Interrupt Enable */
Kojto 116:c0f6e94411f5 2056 #define LPTIM_IER_UPIE ((uint32_t)0x00000020) /*!< Counter direction change down to up Interrupt Enable */
Kojto 116:c0f6e94411f5 2057 #define LPTIM_IER_DOWNIE ((uint32_t)0x00000040) /*!< Counter direction change up to down Interrupt Enable */
Kojto 116:c0f6e94411f5 2058
Kojto 116:c0f6e94411f5 2059 /****************** Bit definition for LPTIM_CFGR register *******************/
Kojto 116:c0f6e94411f5 2060 #define LPTIM_CFGR_CKSEL ((uint32_t)0x00000001) /*!< Clock selector */
Kojto 116:c0f6e94411f5 2061
Kojto 116:c0f6e94411f5 2062 #define LPTIM_CFGR_CKPOL ((uint32_t)0x00000006) /*!< CKPOL[1:0] bits (Clock polarity) */
Kojto 116:c0f6e94411f5 2063 #define LPTIM_CFGR_CKPOL_0 ((uint32_t)0x00000002) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 2064 #define LPTIM_CFGR_CKPOL_1 ((uint32_t)0x00000004) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 2065
Kojto 116:c0f6e94411f5 2066 #define LPTIM_CFGR_CKFLT ((uint32_t)0x00000018) /*!< CKFLT[1:0] bits (Configurable digital filter for external clock) */
Kojto 116:c0f6e94411f5 2067 #define LPTIM_CFGR_CKFLT_0 ((uint32_t)0x00000008) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 2068 #define LPTIM_CFGR_CKFLT_1 ((uint32_t)0x00000010) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 2069
Kojto 116:c0f6e94411f5 2070 #define LPTIM_CFGR_TRGFLT ((uint32_t)0x000000C0) /*!< TRGFLT[1:0] bits (Configurable digital filter for trigger) */
Kojto 116:c0f6e94411f5 2071 #define LPTIM_CFGR_TRGFLT_0 ((uint32_t)0x00000040) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 2072 #define LPTIM_CFGR_TRGFLT_1 ((uint32_t)0x00000080) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 2073
Kojto 116:c0f6e94411f5 2074 #define LPTIM_CFGR_PRESC ((uint32_t)0x00000E00) /*!< PRESC[2:0] bits (Clock prescaler) */
Kojto 116:c0f6e94411f5 2075 #define LPTIM_CFGR_PRESC_0 ((uint32_t)0x00000200) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 2076 #define LPTIM_CFGR_PRESC_1 ((uint32_t)0x00000400) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 2077 #define LPTIM_CFGR_PRESC_2 ((uint32_t)0x00000800) /*!< Bit 2 */
Kojto 116:c0f6e94411f5 2078
Kojto 116:c0f6e94411f5 2079 #define LPTIM_CFGR_TRIGSEL ((uint32_t)0x0000E000) /*!< TRIGSEL[2:0]] bits (Trigger selector) */
Kojto 116:c0f6e94411f5 2080 #define LPTIM_CFGR_TRIGSEL_0 ((uint32_t)0x00002000) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 2081 #define LPTIM_CFGR_TRIGSEL_1 ((uint32_t)0x00004000) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 2082 #define LPTIM_CFGR_TRIGSEL_2 ((uint32_t)0x00008000) /*!< Bit 2 */
Kojto 116:c0f6e94411f5 2083
Kojto 116:c0f6e94411f5 2084 #define LPTIM_CFGR_TRIGEN ((uint32_t)0x00060000) /*!< TRIGEN[1:0] bits (Trigger enable and polarity) */
Kojto 116:c0f6e94411f5 2085 #define LPTIM_CFGR_TRIGEN_0 ((uint32_t)0x00020000) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 2086 #define LPTIM_CFGR_TRIGEN_1 ((uint32_t)0x00040000) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 2087
Kojto 116:c0f6e94411f5 2088 #define LPTIM_CFGR_TIMOUT ((uint32_t)0x00080000) /*!< Timout enable */
Kojto 116:c0f6e94411f5 2089 #define LPTIM_CFGR_WAVE ((uint32_t)0x00100000) /*!< Waveform shape */
Kojto 116:c0f6e94411f5 2090 #define LPTIM_CFGR_WAVPOL ((uint32_t)0x00200000) /*!< Waveform shape polarity */
Kojto 116:c0f6e94411f5 2091 #define LPTIM_CFGR_PRELOAD ((uint32_t)0x00400000) /*!< Reg update mode */
Kojto 116:c0f6e94411f5 2092 #define LPTIM_CFGR_COUNTMODE ((uint32_t)0x00800000) /*!< Counter mode enable */
Kojto 116:c0f6e94411f5 2093 #define LPTIM_CFGR_ENC ((uint32_t)0x01000000) /*!< Encoder mode enable */
Kojto 116:c0f6e94411f5 2094
Kojto 116:c0f6e94411f5 2095 /****************** Bit definition for LPTIM_CR register ********************/
Kojto 116:c0f6e94411f5 2096 #define LPTIM_CR_ENABLE ((uint32_t)0x00000001) /*!< LPTIMer enable */
Kojto 116:c0f6e94411f5 2097 #define LPTIM_CR_SNGSTRT ((uint32_t)0x00000002) /*!< Timer start in single mode */
Kojto 116:c0f6e94411f5 2098 #define LPTIM_CR_CNTSTRT ((uint32_t)0x00000004) /*!< Timer start in continuous mode */
Kojto 116:c0f6e94411f5 2099
Kojto 116:c0f6e94411f5 2100 /****************** Bit definition for LPTIM_CMP register *******************/
Kojto 116:c0f6e94411f5 2101 #define LPTIM_CMP_CMP ((uint32_t)0x0000FFFF) /*!< Compare register */
Kojto 116:c0f6e94411f5 2102
Kojto 116:c0f6e94411f5 2103 /****************** Bit definition for LPTIM_ARR register *******************/
Kojto 116:c0f6e94411f5 2104 #define LPTIM_ARR_ARR ((uint32_t)0x0000FFFF) /*!< Auto reload register */
Kojto 116:c0f6e94411f5 2105
Kojto 116:c0f6e94411f5 2106 /****************** Bit definition for LPTIM_CNT register *******************/
Kojto 116:c0f6e94411f5 2107 #define LPTIM_CNT_CNT ((uint32_t)0x0000FFFF) /*!< Counter register */
Kojto 116:c0f6e94411f5 2108
Kojto 116:c0f6e94411f5 2109 /******************************************************************************/
Kojto 116:c0f6e94411f5 2110 /* */
Kojto 116:c0f6e94411f5 2111 /* MIFARE Firewall */
Kojto 116:c0f6e94411f5 2112 /* */
Kojto 116:c0f6e94411f5 2113 /******************************************************************************/
Kojto 116:c0f6e94411f5 2114
Kojto 116:c0f6e94411f5 2115 /*******Bit definition for CSSA;CSL;NVDSSA;NVDSL;VDSSA;VDSL register */
Kojto 116:c0f6e94411f5 2116 #define FW_CSSA_ADD ((uint32_t)0x00FFFF00) /*!< Code Segment Start Address */
Kojto 116:c0f6e94411f5 2117 #define FW_CSL_LENG ((uint32_t)0x003FFF00) /*!< Code Segment Length */
Kojto 116:c0f6e94411f5 2118 #define FW_NVDSSA_ADD ((uint32_t)0x00FFFF00) /*!< Non Volatile Dat Segment Start Address */
Kojto 116:c0f6e94411f5 2119 #define FW_NVDSL_LENG ((uint32_t)0x003FFF00) /*!< Non Volatile Data Segment Length */
Kojto 116:c0f6e94411f5 2120 #define FW_VDSSA_ADD ((uint32_t)0x0000FFC0) /*!< Volatile Data Segment Start Address */
Kojto 116:c0f6e94411f5 2121 #define FW_VDSL_LENG ((uint32_t)0x0000FFC0) /*!< Volatile Data Segment Length */
Kojto 116:c0f6e94411f5 2122
Kojto 116:c0f6e94411f5 2123 /**************************Bit definition for CR register *********************/
Kojto 116:c0f6e94411f5 2124 #define FW_CR_FPA ((uint32_t)0x00000001) /*!< Firewall Pre Arm*/
Kojto 116:c0f6e94411f5 2125 #define FW_CR_VDS ((uint32_t)0x00000002) /*!< Volatile Data Sharing*/
Kojto 116:c0f6e94411f5 2126 #define FW_CR_VDE ((uint32_t)0x00000004) /*!< Volatile Data Execution*/
Kojto 116:c0f6e94411f5 2127
Kojto 116:c0f6e94411f5 2128 /******************************************************************************/
Kojto 116:c0f6e94411f5 2129 /* */
Kojto 116:c0f6e94411f5 2130 /* Power Control (PWR) */
Kojto 116:c0f6e94411f5 2131 /* */
Kojto 116:c0f6e94411f5 2132 /******************************************************************************/
Kojto 116:c0f6e94411f5 2133
Kojto 116:c0f6e94411f5 2134 /******************** Bit definition for PWR_CR register ********************/
Kojto 116:c0f6e94411f5 2135 #define PWR_CR_LPSDSR ((uint32_t)0x00000001) /*!< Low-power deepsleep/sleep/low power run */
Kojto 116:c0f6e94411f5 2136 #define PWR_CR_PDDS ((uint32_t)0x00000002) /*!< Power Down Deepsleep */
Kojto 116:c0f6e94411f5 2137 #define PWR_CR_CWUF ((uint32_t)0x00000004) /*!< Clear Wakeup Flag */
Kojto 116:c0f6e94411f5 2138 #define PWR_CR_CSBF ((uint32_t)0x00000008) /*!< Clear Standby Flag */
Kojto 116:c0f6e94411f5 2139 #define PWR_CR_PVDE ((uint32_t)0x00000010) /*!< Power Voltage Detector Enable */
Kojto 116:c0f6e94411f5 2140
Kojto 116:c0f6e94411f5 2141 #define PWR_CR_PLS ((uint32_t)0x000000E0) /*!< PLS[2:0] bits (PVD Level Selection) */
Kojto 116:c0f6e94411f5 2142 #define PWR_CR_PLS_0 ((uint32_t)0x00000020) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 2143 #define PWR_CR_PLS_1 ((uint32_t)0x00000040) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 2144 #define PWR_CR_PLS_2 ((uint32_t)0x00000080) /*!< Bit 2 */
Kojto 116:c0f6e94411f5 2145
Kojto 116:c0f6e94411f5 2146 /*!< PVD level configuration */
Kojto 116:c0f6e94411f5 2147 #define PWR_CR_PLS_LEV0 ((uint32_t)0x00000000) /*!< PVD level 0 */
Kojto 116:c0f6e94411f5 2148 #define PWR_CR_PLS_LEV1 ((uint32_t)0x00000020) /*!< PVD level 1 */
Kojto 116:c0f6e94411f5 2149 #define PWR_CR_PLS_LEV2 ((uint32_t)0x00000040) /*!< PVD level 2 */
Kojto 116:c0f6e94411f5 2150 #define PWR_CR_PLS_LEV3 ((uint32_t)0x00000060) /*!< PVD level 3 */
Kojto 116:c0f6e94411f5 2151 #define PWR_CR_PLS_LEV4 ((uint32_t)0x00000080) /*!< PVD level 4 */
Kojto 116:c0f6e94411f5 2152 #define PWR_CR_PLS_LEV5 ((uint32_t)0x000000A0) /*!< PVD level 5 */
Kojto 116:c0f6e94411f5 2153 #define PWR_CR_PLS_LEV6 ((uint32_t)0x000000C0) /*!< PVD level 6 */
Kojto 116:c0f6e94411f5 2154 #define PWR_CR_PLS_LEV7 ((uint32_t)0x000000E0) /*!< PVD level 7 */
Kojto 116:c0f6e94411f5 2155
Kojto 116:c0f6e94411f5 2156 #define PWR_CR_DBP ((uint32_t)0x00000100) /*!< Disable Backup Domain write protection */
Kojto 116:c0f6e94411f5 2157 #define PWR_CR_ULP ((uint32_t)0x00000200) /*!< Ultra Low Power mode */
Kojto 116:c0f6e94411f5 2158 #define PWR_CR_FWU ((uint32_t)0x00000400) /*!< Fast wakeup */
Kojto 116:c0f6e94411f5 2159
Kojto 116:c0f6e94411f5 2160 #define PWR_CR_VOS ((uint32_t)0x00001800) /*!< VOS[1:0] bits (Voltage scaling range selection) */
Kojto 116:c0f6e94411f5 2161 #define PWR_CR_VOS_0 ((uint32_t)0x00000800) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 2162 #define PWR_CR_VOS_1 ((uint32_t)0x00001000) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 2163 #define PWR_CR_DSEEKOFF ((uint32_t)0x00002000) /*!< Deep Sleep mode with EEPROM kept Off */
Kojto 116:c0f6e94411f5 2164 #define PWR_CR_LPRUN ((uint32_t)0x00004000) /*!< Low power run mode */
Kojto 116:c0f6e94411f5 2165
Kojto 116:c0f6e94411f5 2166 /******************* Bit definition for PWR_CSR register ********************/
Kojto 116:c0f6e94411f5 2167 #define PWR_CSR_WUF ((uint32_t)0x00000001) /*!< Wakeup Flag */
Kojto 116:c0f6e94411f5 2168 #define PWR_CSR_SBF ((uint32_t)0x00000002) /*!< Standby Flag */
Kojto 116:c0f6e94411f5 2169 #define PWR_CSR_PVDO ((uint32_t)0x00000004) /*!< PVD Output */
Kojto 116:c0f6e94411f5 2170 #define PWR_CSR_VREFINTRDYF ((uint32_t)0x00000008) /*!< Internal voltage reference (VREFINT) ready flag */
Kojto 116:c0f6e94411f5 2171 #define PWR_CSR_VOSF ((uint32_t)0x00000010) /*!< Voltage Scaling select flag */
Kojto 116:c0f6e94411f5 2172 #define PWR_CSR_REGLPF ((uint32_t)0x00000020) /*!< Regulator LP flag */
Kojto 116:c0f6e94411f5 2173
Kojto 116:c0f6e94411f5 2174 #define PWR_CSR_EWUP1 ((uint32_t)0x00000100) /*!< Enable WKUP pin 1 */
Kojto 116:c0f6e94411f5 2175 #define PWR_CSR_EWUP2 ((uint32_t)0x00000200) /*!< Enable WKUP pin 2 */
Kojto 116:c0f6e94411f5 2176 #define PWR_CSR_EWUP3 ((uint32_t)0x00000400) /*!< Enable WKUP pin 3 */
Kojto 116:c0f6e94411f5 2177
Kojto 116:c0f6e94411f5 2178 /******************************************************************************/
Kojto 116:c0f6e94411f5 2179 /* */
Kojto 116:c0f6e94411f5 2180 /* Reset and Clock Control */
Kojto 116:c0f6e94411f5 2181 /* */
Kojto 116:c0f6e94411f5 2182 /******************************************************************************/
Kojto 116:c0f6e94411f5 2183
Kojto 116:c0f6e94411f5 2184 /******************** Bit definition for RCC_CR register ********************/
Kojto 116:c0f6e94411f5 2185 #define RCC_CR_HSION ((uint32_t)0x00000001) /*!< Internal High Speed clock enable */
Kojto 116:c0f6e94411f5 2186 #define RCC_CR_HSIKERON ((uint32_t)0x00000002) /*!< Internal High Speed clock enable for some IPs Kernel */
Kojto 116:c0f6e94411f5 2187 #define RCC_CR_HSIRDY ((uint32_t)0x00000004) /*!< Internal High Speed clock ready flag */
Kojto 116:c0f6e94411f5 2188 #define RCC_CR_HSIDIVEN ((uint32_t)0x00000008) /*!< Internal High Speed clock divider enable */
Kojto 116:c0f6e94411f5 2189 #define RCC_CR_HSIDIVF ((uint32_t)0x00000010) /*!< Internal High Speed clock divider flag */
Kojto 116:c0f6e94411f5 2190 #define RCC_CR_HSIOUTEN ((uint32_t)0x00000020) /*!< Internal High Speed clock out enable */
Kojto 116:c0f6e94411f5 2191 #define RCC_CR_MSION ((uint32_t)0x00000100) /*!< Internal Multi Speed clock enable */
Kojto 116:c0f6e94411f5 2192 #define RCC_CR_MSIRDY ((uint32_t)0x00000200) /*!< Internal Multi Speed clock ready flag */
Kojto 116:c0f6e94411f5 2193 #define RCC_CR_HSEON ((uint32_t)0x00010000) /*!< External High Speed clock enable */
Kojto 116:c0f6e94411f5 2194 #define RCC_CR_HSERDY ((uint32_t)0x00020000) /*!< External High Speed clock ready flag */
Kojto 116:c0f6e94411f5 2195 #define RCC_CR_HSEBYP ((uint32_t)0x00040000) /*!< External High Speed clock Bypass */
Kojto 116:c0f6e94411f5 2196 #define RCC_CR_CSSHSEON ((uint32_t)0x00080000) /*!< HSE Clock Security System enable */
Kojto 116:c0f6e94411f5 2197 #define RCC_CR_RTCPRE ((uint32_t)0x00300000) /*!< RTC/LCD prescaler [1:0] bits */
Kojto 116:c0f6e94411f5 2198 #define RCC_CR_RTCPRE_0 ((uint32_t)0x00100000) /*!< RTC/LCD prescaler Bit 0 */
Kojto 116:c0f6e94411f5 2199 #define RCC_CR_RTCPRE_1 ((uint32_t)0x00200000) /*!< RTC/LCD prescaler Bit 1 */
Kojto 116:c0f6e94411f5 2200 #define RCC_CR_PLLON ((uint32_t)0x01000000) /*!< PLL enable */
Kojto 116:c0f6e94411f5 2201 #define RCC_CR_PLLRDY ((uint32_t)0x02000000) /*!< PLL clock ready flag */
Kojto 116:c0f6e94411f5 2202
Kojto 116:c0f6e94411f5 2203 /******************** Bit definition for RCC_ICSCR register *****************/
Kojto 116:c0f6e94411f5 2204 #define RCC_ICSCR_HSICAL ((uint32_t)0x000000FF) /*!< Internal High Speed clock Calibration */
Kojto 116:c0f6e94411f5 2205 #define RCC_ICSCR_HSITRIM ((uint32_t)0x00001F00) /*!< Internal High Speed clock trimming */
Kojto 116:c0f6e94411f5 2206
Kojto 116:c0f6e94411f5 2207 #define RCC_ICSCR_MSIRANGE ((uint32_t)0x0000E000) /*!< Internal Multi Speed clock Range */
Kojto 116:c0f6e94411f5 2208 #define RCC_ICSCR_MSIRANGE_0 ((uint32_t)0x00000000) /*!< Internal Multi Speed clock Range 65.536 KHz */
Kojto 116:c0f6e94411f5 2209 #define RCC_ICSCR_MSIRANGE_1 ((uint32_t)0x00002000) /*!< Internal Multi Speed clock Range 131.072 KHz */
Kojto 116:c0f6e94411f5 2210 #define RCC_ICSCR_MSIRANGE_2 ((uint32_t)0x00004000) /*!< Internal Multi Speed clock Range 262.144 KHz */
Kojto 116:c0f6e94411f5 2211 #define RCC_ICSCR_MSIRANGE_3 ((uint32_t)0x00006000) /*!< Internal Multi Speed clock Range 524.288 KHz */
Kojto 116:c0f6e94411f5 2212 #define RCC_ICSCR_MSIRANGE_4 ((uint32_t)0x00008000) /*!< Internal Multi Speed clock Range 1.048 MHz */
Kojto 116:c0f6e94411f5 2213 #define RCC_ICSCR_MSIRANGE_5 ((uint32_t)0x0000A000) /*!< Internal Multi Speed clock Range 2.097 MHz */
Kojto 116:c0f6e94411f5 2214 #define RCC_ICSCR_MSIRANGE_6 ((uint32_t)0x0000C000) /*!< Internal Multi Speed clock Range 4.194 MHz */
Kojto 116:c0f6e94411f5 2215 #define RCC_ICSCR_MSICAL ((uint32_t)0x00FF0000) /*!< Internal Multi Speed clock Calibration */
Kojto 116:c0f6e94411f5 2216 #define RCC_ICSCR_MSITRIM ((uint32_t)0xFF000000) /*!< Internal Multi Speed clock trimming */
Kojto 116:c0f6e94411f5 2217
Kojto 116:c0f6e94411f5 2218 /******************** Bit definition for RCC_CRRCR register *****************/
Kojto 116:c0f6e94411f5 2219 #define RCC_CRRCR_HSI48ON ((uint32_t)0x00000001) /*!< HSI 48MHz clock enable */
Kojto 116:c0f6e94411f5 2220 #define RCC_CRRCR_HSI48RDY ((uint32_t)0x00000002) /*!< HSI 48MHz clock ready flag */
Kojto 116:c0f6e94411f5 2221 #define RCC_CRRCR_HSI48DIV6OUTEN ((uint32_t)0x00000004) /*!< HSI 48MHz DIV6 out enable */
Kojto 116:c0f6e94411f5 2222 #define RCC_CRRCR_HSI48CAL ((uint32_t)0x0000FF00) /*!< HSI 48MHz clock Calibration */
Kojto 116:c0f6e94411f5 2223
Kojto 116:c0f6e94411f5 2224 /******************* Bit definition for RCC_CFGR register *******************/
Kojto 116:c0f6e94411f5 2225 /*!< SW configuration */
Kojto 116:c0f6e94411f5 2226 #define RCC_CFGR_SW ((uint32_t)0x00000003) /*!< SW[1:0] bits (System clock Switch) */
Kojto 116:c0f6e94411f5 2227 #define RCC_CFGR_SW_0 ((uint32_t)0x00000001) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 2228 #define RCC_CFGR_SW_1 ((uint32_t)0x00000002) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 2229
Kojto 116:c0f6e94411f5 2230 #define RCC_CFGR_SW_MSI ((uint32_t)0x00000000) /*!< MSI selected as system clock */
Kojto 116:c0f6e94411f5 2231 #define RCC_CFGR_SW_HSI ((uint32_t)0x00000001) /*!< HSI selected as system clock */
Kojto 116:c0f6e94411f5 2232 #define RCC_CFGR_SW_HSE ((uint32_t)0x00000002) /*!< HSE selected as system clock */
Kojto 116:c0f6e94411f5 2233 #define RCC_CFGR_SW_PLL ((uint32_t)0x00000003) /*!< PLL selected as system clock */
Kojto 116:c0f6e94411f5 2234
Kojto 116:c0f6e94411f5 2235 /*!< SWS configuration */
Kojto 116:c0f6e94411f5 2236 #define RCC_CFGR_SWS ((uint32_t)0x0000000C) /*!< SWS[1:0] bits (System Clock Switch Status) */
Kojto 116:c0f6e94411f5 2237 #define RCC_CFGR_SWS_0 ((uint32_t)0x00000004) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 2238 #define RCC_CFGR_SWS_1 ((uint32_t)0x00000008) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 2239
Kojto 116:c0f6e94411f5 2240 #define RCC_CFGR_SWS_MSI ((uint32_t)0x00000000) /*!< MSI oscillator used as system clock */
Kojto 116:c0f6e94411f5 2241 #define RCC_CFGR_SWS_HSI ((uint32_t)0x00000004) /*!< HSI oscillator used as system clock */
Kojto 116:c0f6e94411f5 2242 #define RCC_CFGR_SWS_HSE ((uint32_t)0x00000008) /*!< HSE oscillator used as system clock */
Kojto 116:c0f6e94411f5 2243 #define RCC_CFGR_SWS_PLL ((uint32_t)0x0000000C) /*!< PLL used as system clock */
Kojto 116:c0f6e94411f5 2244
Kojto 116:c0f6e94411f5 2245 /*!< HPRE configuration */
Kojto 116:c0f6e94411f5 2246 #define RCC_CFGR_HPRE ((uint32_t)0x000000F0) /*!< HPRE[3:0] bits (AHB prescaler) */
Kojto 116:c0f6e94411f5 2247 #define RCC_CFGR_HPRE_0 ((uint32_t)0x00000010) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 2248 #define RCC_CFGR_HPRE_1 ((uint32_t)0x00000020) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 2249 #define RCC_CFGR_HPRE_2 ((uint32_t)0x00000040) /*!< Bit 2 */
Kojto 116:c0f6e94411f5 2250 #define RCC_CFGR_HPRE_3 ((uint32_t)0x00000080) /*!< Bit 3 */
Kojto 116:c0f6e94411f5 2251
Kojto 116:c0f6e94411f5 2252 #define RCC_CFGR_HPRE_DIV1 ((uint32_t)0x00000000) /*!< SYSCLK not divided */
Kojto 116:c0f6e94411f5 2253 #define RCC_CFGR_HPRE_DIV2 ((uint32_t)0x00000080) /*!< SYSCLK divided by 2 */
Kojto 116:c0f6e94411f5 2254 #define RCC_CFGR_HPRE_DIV4 ((uint32_t)0x00000090) /*!< SYSCLK divided by 4 */
Kojto 116:c0f6e94411f5 2255 #define RCC_CFGR_HPRE_DIV8 ((uint32_t)0x000000A0) /*!< SYSCLK divided by 8 */
Kojto 116:c0f6e94411f5 2256 #define RCC_CFGR_HPRE_DIV16 ((uint32_t)0x000000B0) /*!< SYSCLK divided by 16 */
Kojto 116:c0f6e94411f5 2257 #define RCC_CFGR_HPRE_DIV64 ((uint32_t)0x000000C0) /*!< SYSCLK divided by 64 */
Kojto 116:c0f6e94411f5 2258 #define RCC_CFGR_HPRE_DIV128 ((uint32_t)0x000000D0) /*!< SYSCLK divided by 128 */
Kojto 116:c0f6e94411f5 2259 #define RCC_CFGR_HPRE_DIV256 ((uint32_t)0x000000E0) /*!< SYSCLK divided by 256 */
Kojto 116:c0f6e94411f5 2260 #define RCC_CFGR_HPRE_DIV512 ((uint32_t)0x000000F0) /*!< SYSCLK divided by 512 */
Kojto 116:c0f6e94411f5 2261
Kojto 116:c0f6e94411f5 2262 /*!< PPRE1 configuration */
Kojto 116:c0f6e94411f5 2263 #define RCC_CFGR_PPRE1 ((uint32_t)0x00000700) /*!< PRE1[2:0] bits (APB1 prescaler) */
Kojto 116:c0f6e94411f5 2264 #define RCC_CFGR_PPRE1_0 ((uint32_t)0x00000100) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 2265 #define RCC_CFGR_PPRE1_1 ((uint32_t)0x00000200) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 2266 #define RCC_CFGR_PPRE1_2 ((uint32_t)0x00000400) /*!< Bit 2 */
Kojto 116:c0f6e94411f5 2267
Kojto 116:c0f6e94411f5 2268 #define RCC_CFGR_PPRE1_DIV1 ((uint32_t)0x00000000) /*!< HCLK not divided */
Kojto 116:c0f6e94411f5 2269 #define RCC_CFGR_PPRE1_DIV2 ((uint32_t)0x00000400) /*!< HCLK divided by 2 */
Kojto 116:c0f6e94411f5 2270 #define RCC_CFGR_PPRE1_DIV4 ((uint32_t)0x00000500) /*!< HCLK divided by 4 */
Kojto 116:c0f6e94411f5 2271 #define RCC_CFGR_PPRE1_DIV8 ((uint32_t)0x00000600) /*!< HCLK divided by 8 */
Kojto 116:c0f6e94411f5 2272 #define RCC_CFGR_PPRE1_DIV16 ((uint32_t)0x00000700) /*!< HCLK divided by 16 */
Kojto 116:c0f6e94411f5 2273
Kojto 116:c0f6e94411f5 2274 /*!< PPRE2 configuration */
Kojto 116:c0f6e94411f5 2275 #define RCC_CFGR_PPRE2 ((uint32_t)0x00003800) /*!< PRE2[2:0] bits (APB2 prescaler) */
Kojto 116:c0f6e94411f5 2276 #define RCC_CFGR_PPRE2_0 ((uint32_t)0x00000800) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 2277 #define RCC_CFGR_PPRE2_1 ((uint32_t)0x00001000) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 2278 #define RCC_CFGR_PPRE2_2 ((uint32_t)0x00002000) /*!< Bit 2 */
Kojto 116:c0f6e94411f5 2279
Kojto 116:c0f6e94411f5 2280 #define RCC_CFGR_PPRE2_DIV1 ((uint32_t)0x00000000) /*!< HCLK not divided */
Kojto 116:c0f6e94411f5 2281 #define RCC_CFGR_PPRE2_DIV2 ((uint32_t)0x00002000) /*!< HCLK divided by 2 */
Kojto 116:c0f6e94411f5 2282 #define RCC_CFGR_PPRE2_DIV4 ((uint32_t)0x00002800) /*!< HCLK divided by 4 */
Kojto 116:c0f6e94411f5 2283 #define RCC_CFGR_PPRE2_DIV8 ((uint32_t)0x00003000) /*!< HCLK divided by 8 */
Kojto 116:c0f6e94411f5 2284 #define RCC_CFGR_PPRE2_DIV16 ((uint32_t)0x00003800) /*!< HCLK divided by 16 */
Kojto 116:c0f6e94411f5 2285
Kojto 116:c0f6e94411f5 2286 #define RCC_CFGR_STOPWUCK ((uint32_t)0x00008000) /*!< Wake Up from Stop Clock selection */
Kojto 116:c0f6e94411f5 2287
Kojto 116:c0f6e94411f5 2288 /*!< PLL entry clock source*/
Kojto 116:c0f6e94411f5 2289 #define RCC_CFGR_PLLSRC ((uint32_t)0x00010000) /*!< PLL entry clock source */
Kojto 116:c0f6e94411f5 2290
Kojto 116:c0f6e94411f5 2291 #define RCC_CFGR_PLLSRC_HSI ((uint32_t)0x00000000) /*!< HSI as PLL entry clock source */
Kojto 116:c0f6e94411f5 2292 #define RCC_CFGR_PLLSRC_HSE ((uint32_t)0x00010000) /*!< HSE as PLL entry clock source */
Kojto 116:c0f6e94411f5 2293
Kojto 116:c0f6e94411f5 2294
Kojto 116:c0f6e94411f5 2295 /*!< PLLMUL configuration */
Kojto 116:c0f6e94411f5 2296 #define RCC_CFGR_PLLMUL ((uint32_t)0x003C0000) /*!< PLLMUL[3:0] bits (PLL multiplication factor) */
Kojto 116:c0f6e94411f5 2297 #define RCC_CFGR_PLLMUL_0 ((uint32_t)0x00040000) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 2298 #define RCC_CFGR_PLLMUL_1 ((uint32_t)0x00080000) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 2299 #define RCC_CFGR_PLLMUL_2 ((uint32_t)0x00100000) /*!< Bit 2 */
Kojto 116:c0f6e94411f5 2300 #define RCC_CFGR_PLLMUL_3 ((uint32_t)0x00200000) /*!< Bit 3 */
Kojto 116:c0f6e94411f5 2301
Kojto 116:c0f6e94411f5 2302 #define RCC_CFGR_PLLMUL3 ((uint32_t)0x00000000) /*!< PLL input clock * 3 */
Kojto 116:c0f6e94411f5 2303 #define RCC_CFGR_PLLMUL4 ((uint32_t)0x00040000) /*!< PLL input clock * 4 */
Kojto 116:c0f6e94411f5 2304 #define RCC_CFGR_PLLMUL6 ((uint32_t)0x00080000) /*!< PLL input clock * 6 */
Kojto 116:c0f6e94411f5 2305 #define RCC_CFGR_PLLMUL8 ((uint32_t)0x000C0000) /*!< PLL input clock * 8 */
Kojto 116:c0f6e94411f5 2306 #define RCC_CFGR_PLLMUL12 ((uint32_t)0x00100000) /*!< PLL input clock * 12 */
Kojto 116:c0f6e94411f5 2307 #define RCC_CFGR_PLLMUL16 ((uint32_t)0x00140000) /*!< PLL input clock * 16 */
Kojto 116:c0f6e94411f5 2308 #define RCC_CFGR_PLLMUL24 ((uint32_t)0x00180000) /*!< PLL input clock * 24 */
Kojto 116:c0f6e94411f5 2309 #define RCC_CFGR_PLLMUL32 ((uint32_t)0x001C0000) /*!< PLL input clock * 32 */
Kojto 116:c0f6e94411f5 2310 #define RCC_CFGR_PLLMUL48 ((uint32_t)0x00200000) /*!< PLL input clock * 48 */
Kojto 116:c0f6e94411f5 2311
Kojto 116:c0f6e94411f5 2312 /*!< PLLDIV configuration */
Kojto 116:c0f6e94411f5 2313 #define RCC_CFGR_PLLDIV ((uint32_t)0x00C00000) /*!< PLLDIV[1:0] bits (PLL Output Division) */
Kojto 116:c0f6e94411f5 2314 #define RCC_CFGR_PLLDIV_0 ((uint32_t)0x00400000) /*!< Bit0 */
Kojto 116:c0f6e94411f5 2315 #define RCC_CFGR_PLLDIV_1 ((uint32_t)0x00800000) /*!< Bit1 */
Kojto 116:c0f6e94411f5 2316
Kojto 116:c0f6e94411f5 2317 #define RCC_CFGR_PLLDIV2 ((uint32_t)0x00400000) /*!< PLL clock output = CKVCO / 2 */
Kojto 116:c0f6e94411f5 2318 #define RCC_CFGR_PLLDIV3 ((uint32_t)0x00800000) /*!< PLL clock output = CKVCO / 3 */
Kojto 116:c0f6e94411f5 2319 #define RCC_CFGR_PLLDIV4 ((uint32_t)0x00C00000) /*!< PLL clock output = CKVCO / 4 */
Kojto 116:c0f6e94411f5 2320
Kojto 116:c0f6e94411f5 2321 /*!< MCO configuration */
Kojto 116:c0f6e94411f5 2322 #define RCC_CFGR_MCOSEL ((uint32_t)0x0F000000) /*!< MCO[3:0] bits (Microcontroller Clock Output) */
Kojto 116:c0f6e94411f5 2323 #define RCC_CFGR_MCOSEL_0 ((uint32_t)0x01000000) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 2324 #define RCC_CFGR_MCOSEL_1 ((uint32_t)0x02000000) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 2325 #define RCC_CFGR_MCOSEL_2 ((uint32_t)0x04000000) /*!< Bit 2 */
Kojto 116:c0f6e94411f5 2326 #define RCC_CFGR_MCOSEL_3 ((uint32_t)0x08000000) /*!< Bit 3 */
Kojto 116:c0f6e94411f5 2327
Kojto 116:c0f6e94411f5 2328 #define RCC_CFGR_MCO_NOCLOCK ((uint32_t)0x00000000) /*!< No clock */
Kojto 116:c0f6e94411f5 2329 #define RCC_CFGR_MCO_SYSCLK ((uint32_t)0x01000000) /*!< System clock selected as MCO source */
Kojto 116:c0f6e94411f5 2330 #define RCC_CFGR_MCO_HSI ((uint32_t)0x02000000) /*!< Internal 16 MHz RC oscillator clock selected */
Kojto 116:c0f6e94411f5 2331 #define RCC_CFGR_MCO_MSI ((uint32_t)0x03000000) /*!< Internal Medium Speed RC oscillator clock selected */
Kojto 116:c0f6e94411f5 2332 #define RCC_CFGR_MCO_HSE ((uint32_t)0x04000000) /*!< External 1-25 MHz oscillator clock selected */
Kojto 116:c0f6e94411f5 2333 #define RCC_CFGR_MCO_PLL ((uint32_t)0x05000000) /*!< PLL clock divided */
Kojto 116:c0f6e94411f5 2334 #define RCC_CFGR_MCO_LSI ((uint32_t)0x06000000) /*!< LSI selected */
Kojto 116:c0f6e94411f5 2335 #define RCC_CFGR_MCO_LSE ((uint32_t)0x07000000) /*!< LSE selected */
Kojto 116:c0f6e94411f5 2336 #define RCC_CFGR_MCO_HSI48 ((uint32_t)0x08000000) /*!< HSI48 clock selected as MCO source */
Kojto 116:c0f6e94411f5 2337
Kojto 116:c0f6e94411f5 2338 #define RCC_CFGR_MCO_PRE ((uint32_t)0x70000000) /*!< MCO prescaler */
Kojto 116:c0f6e94411f5 2339 #define RCC_CFGR_MCO_PRE_1 ((uint32_t)0x00000000) /*!< MCO is divided by 1 */
Kojto 116:c0f6e94411f5 2340 #define RCC_CFGR_MCO_PRE_2 ((uint32_t)0x10000000) /*!< MCO is divided by 2 */
Kojto 116:c0f6e94411f5 2341 #define RCC_CFGR_MCO_PRE_4 ((uint32_t)0x20000000) /*!< MCO is divided by 4 */
Kojto 116:c0f6e94411f5 2342 #define RCC_CFGR_MCO_PRE_8 ((uint32_t)0x30000000) /*!< MCO is divided by 8 */
Kojto 116:c0f6e94411f5 2343 #define RCC_CFGR_MCO_PRE_16 ((uint32_t)0x40000000) /*!< MCO is divided by 16 */
Kojto 116:c0f6e94411f5 2344
Kojto 116:c0f6e94411f5 2345 /*!<****************** Bit definition for RCC_CIER register ********************/
Kojto 116:c0f6e94411f5 2346 #define RCC_CIER_LSIRDYIE ((uint32_t)0x00000001) /*!< LSI Ready Interrupt Enable */
Kojto 116:c0f6e94411f5 2347 #define RCC_CIER_LSERDYIE ((uint32_t)0x00000002) /*!< LSE Ready Interrupt Enable */
Kojto 116:c0f6e94411f5 2348 #define RCC_CIER_HSIRDYIE ((uint32_t)0x00000004) /*!< HSI Ready Interrupt Enable */
Kojto 116:c0f6e94411f5 2349 #define RCC_CIER_HSERDYIE ((uint32_t)0x00000008) /*!< HSE Ready Interrupt Enable */
Kojto 116:c0f6e94411f5 2350 #define RCC_CIER_PLLRDYIE ((uint32_t)0x00000010) /*!< PLL Ready Interrupt Enable */
Kojto 116:c0f6e94411f5 2351 #define RCC_CIER_MSIRDYIE ((uint32_t)0x00000020) /*!< MSI Ready Interrupt Enable */
Kojto 116:c0f6e94411f5 2352 #define RCC_CIER_HSI48RDYIE ((uint32_t)0x00000040) /*!< HSI48 Ready Interrupt Enable */
Kojto 116:c0f6e94411f5 2353 #define RCC_CIER_LSECSSIE ((uint32_t)0x00000080) /*!< LSE CSS Interrupt Enable */
Kojto 116:c0f6e94411f5 2354
Kojto 116:c0f6e94411f5 2355 /*!<****************** Bit definition for RCC_CIFR register ********************/
Kojto 116:c0f6e94411f5 2356 #define RCC_CIFR_LSIRDYF ((uint32_t)0x00000001) /*!< LSI Ready Interrupt flag */
Kojto 116:c0f6e94411f5 2357 #define RCC_CIFR_LSERDYF ((uint32_t)0x00000002) /*!< LSE Ready Interrupt flag */
Kojto 116:c0f6e94411f5 2358 #define RCC_CIFR_HSIRDYF ((uint32_t)0x00000004) /*!< HSI Ready Interrupt flag */
Kojto 116:c0f6e94411f5 2359 #define RCC_CIFR_HSERDYF ((uint32_t)0x00000008) /*!< HSE Ready Interrupt flag */
Kojto 116:c0f6e94411f5 2360 #define RCC_CIFR_PLLRDYF ((uint32_t)0x00000010) /*!< PLL Ready Interrupt flag */
Kojto 116:c0f6e94411f5 2361 #define RCC_CIFR_MSIRDYF ((uint32_t)0x00000020) /*!< MSI Ready Interrupt flag */
Kojto 116:c0f6e94411f5 2362 #define RCC_CIFR_HSI48RDYF ((uint32_t)0x00000040) /*!< HSI48 Ready Interrupt flag */
Kojto 116:c0f6e94411f5 2363 #define RCC_CIFR_LSECSSF ((uint32_t)0x00000080) /*!< LSE Clock Security System Interrupt flag */
Kojto 116:c0f6e94411f5 2364 #define RCC_CIFR_CSSF ((uint32_t)0x00000100) /*!< Clock Security System Interrupt flag */
Kojto 116:c0f6e94411f5 2365
Kojto 116:c0f6e94411f5 2366 /*!<****************** Bit definition for RCC_CICR register ********************/
Kojto 116:c0f6e94411f5 2367 #define RCC_CICR_LSIRDYC ((uint32_t)0x00000001) /*!< LSI Ready Interrupt Clear */
Kojto 116:c0f6e94411f5 2368 #define RCC_CICR_LSERDYC ((uint32_t)0x00000002) /*!< LSE Ready Interrupt Clear */
Kojto 116:c0f6e94411f5 2369 #define RCC_CICR_HSIRDYC ((uint32_t)0x00000004) /*!< HSI Ready Interrupt Clear */
Kojto 116:c0f6e94411f5 2370 #define RCC_CICR_HSERDYC ((uint32_t)0x00000008) /*!< HSE Ready Interrupt Clear */
Kojto 116:c0f6e94411f5 2371 #define RCC_CICR_PLLRDYC ((uint32_t)0x00000010) /*!< PLL Ready Interrupt Clear */
Kojto 116:c0f6e94411f5 2372 #define RCC_CICR_MSIRDYC ((uint32_t)0x00000020) /*!< MSI Ready Interrupt Clear */
Kojto 116:c0f6e94411f5 2373 #define RCC_CICR_HSI48RDYC ((uint32_t)0x00000040) /*!< HSI48 Ready Interrupt Clear */
Kojto 116:c0f6e94411f5 2374 #define RCC_CICR_LSECSSC ((uint32_t)0x00000080) /*!< LSE Clock Security System Interrupt Clear */
Kojto 116:c0f6e94411f5 2375 #define RCC_CICR_CSSC ((uint32_t)0x00000100) /*!< Clock Security System Interrupt Clear */
Kojto 116:c0f6e94411f5 2376
Kojto 116:c0f6e94411f5 2377 /***************** Bit definition for RCC_IOPRSTR register ******************/
Kojto 116:c0f6e94411f5 2378 #define RCC_IOPRSTR_GPIOARST ((uint32_t)0x00000001) /*!< GPIO port A reset */
Kojto 116:c0f6e94411f5 2379 #define RCC_IOPRSTR_GPIOBRST ((uint32_t)0x00000002) /*!< GPIO port B reset */
Kojto 116:c0f6e94411f5 2380 #define RCC_IOPRSTR_GPIOCRST ((uint32_t)0x00000004) /*!< GPIO port C reset */
Kojto 116:c0f6e94411f5 2381 #define RCC_IOPRSTR_GPIODRST ((uint32_t)0x00000008) /*!< GPIO port D reset */
Kojto 116:c0f6e94411f5 2382 #define RCC_IOPRSTR_GPIOERST ((uint32_t)0x00000010) /*!< GPIO port E reset */
Kojto 116:c0f6e94411f5 2383 #define RCC_IOPRSTR_GPIOHRST ((uint32_t)0x00000080) /*!< GPIO port H reset */
Kojto 116:c0f6e94411f5 2384
Kojto 116:c0f6e94411f5 2385 /****************** Bit definition for RCC_AHBRST register ******************/
Kojto 116:c0f6e94411f5 2386 #define RCC_AHBRSTR_DMA1RST ((uint32_t)0x00000001) /*!< DMA1 reset */
Kojto 116:c0f6e94411f5 2387 #define RCC_AHBRSTR_MIFRST ((uint32_t)0x00000100) /*!< Memory interface reset reset */
Kojto 116:c0f6e94411f5 2388 #define RCC_AHBRSTR_CRCRST ((uint32_t)0x00001000) /*!< CRC reset */
Kojto 116:c0f6e94411f5 2389 #define RCC_AHBRSTR_TSCRST ((uint32_t)0x00010000) /*!< TSC reset */
Kojto 116:c0f6e94411f5 2390 #define RCC_AHBRSTR_RNGRST ((uint32_t)0x00100000) /*!< RNG reset */
Kojto 116:c0f6e94411f5 2391
Kojto 116:c0f6e94411f5 2392 /***************** Bit definition for RCC_APB2RSTR register *****************/
Kojto 116:c0f6e94411f5 2393 #define RCC_APB2RSTR_SYSCFGRST ((uint32_t)0x00000001) /*!< SYSCFG clock reset */
Kojto 116:c0f6e94411f5 2394 #define RCC_APB2RSTR_TIM21RST ((uint32_t)0x00000004) /*!< TIM21 clock reset */
Kojto 116:c0f6e94411f5 2395 #define RCC_APB2RSTR_TIM22RST ((uint32_t)0x00000020) /*!< TIM22 clock reset */
Kojto 116:c0f6e94411f5 2396 #define RCC_APB2RSTR_ADC1RST ((uint32_t)0x00000200) /*!< ADC1 clock reset */
Kojto 116:c0f6e94411f5 2397 #define RCC_APB2RSTR_SPI1RST ((uint32_t)0x00001000) /*!< SPI1 clock reset */
Kojto 116:c0f6e94411f5 2398 #define RCC_APB2RSTR_USART1RST ((uint32_t)0x00004000) /*!< USART1 clock reset */
Kojto 116:c0f6e94411f5 2399 #define RCC_APB2RSTR_DBGMCURST ((uint32_t)0x00400000) /*!< DBGMCU clock reset */
Kojto 116:c0f6e94411f5 2400
Kojto 116:c0f6e94411f5 2401 /***************** Bit definition for RCC_APB1RSTR register *****************/
Kojto 116:c0f6e94411f5 2402 #define RCC_APB1RSTR_TIM2RST ((uint32_t)0x00000001) /*!< Timer 2 clock reset */
Kojto 116:c0f6e94411f5 2403 #define RCC_APB1RSTR_TIM3RST ((uint32_t)0x00000002) /*!< Timer 3 clock reset */
Kojto 116:c0f6e94411f5 2404 #define RCC_APB1RSTR_TIM6RST ((uint32_t)0x00000010) /*!< Timer 6 clock reset */
Kojto 116:c0f6e94411f5 2405 #define RCC_APB1RSTR_TIM7RST ((uint32_t)0x00000020) /*!< Timer 7 clock reset */
Kojto 116:c0f6e94411f5 2406 #define RCC_APB1RSTR_LCDRST ((uint32_t)0x00000200) /*!< LCD clock reset */
Kojto 116:c0f6e94411f5 2407 #define RCC_APB1RSTR_WWDGRST ((uint32_t)0x00000800) /*!< Window Watchdog clock reset */
Kojto 116:c0f6e94411f5 2408 #define RCC_APB1RSTR_SPI2RST ((uint32_t)0x00004000) /*!< SPI2 clock reset */
Kojto 116:c0f6e94411f5 2409 #define RCC_APB1RSTR_USART2RST ((uint32_t)0x00020000) /*!< USART 2 clock reset */
Kojto 116:c0f6e94411f5 2410 #define RCC_APB1RSTR_LPUART1RST ((uint32_t)0x00040000) /*!< LPUART1 clock reset */
Kojto 116:c0f6e94411f5 2411 #define RCC_APB1RSTR_USART4RST ((uint32_t)0x00080000) /*!< USART4 clock reset */
Kojto 116:c0f6e94411f5 2412 #define RCC_APB1RSTR_USART5RST ((uint32_t)0x00100000) /*!< USART5 clock reset */
Kojto 116:c0f6e94411f5 2413 #define RCC_APB1RSTR_I2C1RST ((uint32_t)0x00200000) /*!< I2C 1 clock reset */
Kojto 116:c0f6e94411f5 2414 #define RCC_APB1RSTR_I2C2RST ((uint32_t)0x00400000) /*!< I2C 2 clock reset */
Kojto 116:c0f6e94411f5 2415 #define RCC_APB1RSTR_USBRST ((uint32_t)0x00800000) /*!< USB clock reset */
Kojto 116:c0f6e94411f5 2416 #define RCC_APB1RSTR_CRSRST ((uint32_t)0x08000000) /*!< CRS clock reset */
Kojto 116:c0f6e94411f5 2417 #define RCC_APB1RSTR_PWRRST ((uint32_t)0x10000000) /*!< PWR clock reset */
Kojto 116:c0f6e94411f5 2418 #define RCC_APB1RSTR_DACRST ((uint32_t)0x20000000) /*!< DAC clock reset */
Kojto 116:c0f6e94411f5 2419 #define RCC_APB1RSTR_I2C3RST ((uint32_t)0x40000000) /*!< I2C 3 clock reset */
Kojto 116:c0f6e94411f5 2420 #define RCC_APB1RSTR_LPTIM1RST ((uint32_t)0x80000000) /*!< LPTIM1 clock reset */
Kojto 116:c0f6e94411f5 2421
Kojto 116:c0f6e94411f5 2422 /***************** Bit definition for RCC_IOPENR register ******************/
Kojto 116:c0f6e94411f5 2423 #define RCC_IOPENR_GPIOAEN ((uint32_t)0x00000001) /*!< GPIO port A clock enable */
Kojto 116:c0f6e94411f5 2424 #define RCC_IOPENR_GPIOBEN ((uint32_t)0x00000002) /*!< GPIO port B clock enable */
Kojto 116:c0f6e94411f5 2425 #define RCC_IOPENR_GPIOCEN ((uint32_t)0x00000004) /*!< GPIO port C clock enable */
Kojto 116:c0f6e94411f5 2426 #define RCC_IOPENR_GPIODEN ((uint32_t)0x00000008) /*!< GPIO port D clock enable */
Kojto 116:c0f6e94411f5 2427 #define RCC_IOPENR_GPIOEEN ((uint32_t)0x00000010) /*!< GPIO port E clock enable */
Kojto 116:c0f6e94411f5 2428 #define RCC_IOPENR_GPIOHEN ((uint32_t)0x00000080) /*!< GPIO port H clock enable */
Kojto 116:c0f6e94411f5 2429
Kojto 116:c0f6e94411f5 2430 /***************** Bit definition for RCC_AHBENR register ******************/
Kojto 116:c0f6e94411f5 2431 #define RCC_AHBENR_DMA1EN ((uint32_t)0x00000001) /*!< DMA1 clock enable */
Kojto 116:c0f6e94411f5 2432 #define RCC_AHBENR_MIFEN ((uint32_t)0x00000100) /*!< NVM interface clock enable bit */
Kojto 116:c0f6e94411f5 2433 #define RCC_AHBENR_CRCEN ((uint32_t)0x00001000) /*!< CRC clock enable */
Kojto 116:c0f6e94411f5 2434 #define RCC_AHBENR_TSCEN ((uint32_t)0x00010000) /*!< TSC clock enable */
Kojto 116:c0f6e94411f5 2435 #define RCC_AHBENR_RNGEN ((uint32_t)0x00100000) /*!< RNG clock enable */
Kojto 116:c0f6e94411f5 2436
Kojto 116:c0f6e94411f5 2437 /***************** Bit definition for RCC_APB2ENR register ******************/
Kojto 116:c0f6e94411f5 2438 #define RCC_APB2ENR_SYSCFGEN ((uint32_t)0x00000001) /*!< SYSCFG clock enable */
Kojto 116:c0f6e94411f5 2439 #define RCC_APB2ENR_TIM21EN ((uint32_t)0x00000004) /*!< TIM21 clock enable */
Kojto 116:c0f6e94411f5 2440 #define RCC_APB2ENR_TIM22EN ((uint32_t)0x00000020) /*!< TIM22 clock enable */
Kojto 116:c0f6e94411f5 2441 #define RCC_APB2ENR_MIFIEN ((uint32_t)0x00000080) /*!< MiFare Firewall clock enable */
Kojto 116:c0f6e94411f5 2442 #define RCC_APB2ENR_ADC1EN ((uint32_t)0x00000200) /*!< ADC1 clock enable */
Kojto 116:c0f6e94411f5 2443 #define RCC_APB2ENR_SPI1EN ((uint32_t)0x00001000) /*!< SPI1 clock enable */
Kojto 116:c0f6e94411f5 2444 #define RCC_APB2ENR_USART1EN ((uint32_t)0x00004000) /*!< USART1 clock enable */
Kojto 116:c0f6e94411f5 2445 #define RCC_APB2ENR_DBGMCUEN ((uint32_t)0x00400000) /*!< DBGMCU clock enable */
Kojto 116:c0f6e94411f5 2446
Kojto 116:c0f6e94411f5 2447 /***************** Bit definition for RCC_APB1ENR register ******************/
Kojto 116:c0f6e94411f5 2448 #define RCC_APB1ENR_TIM2EN ((uint32_t)0x00000001) /*!< Timer 2 clock enable */
Kojto 116:c0f6e94411f5 2449 #define RCC_APB1ENR_TIM3EN ((uint32_t)0x00000002) /*!< Timer 3 clock enable */
Kojto 116:c0f6e94411f5 2450 #define RCC_APB1ENR_TIM6EN ((uint32_t)0x00000010) /*!< Timer 6 clock enable */
Kojto 116:c0f6e94411f5 2451 #define RCC_APB1ENR_TIM7EN ((uint32_t)0x00000020) /*!< Timer 7 clock enable */
Kojto 116:c0f6e94411f5 2452 #define RCC_APB1ENR_LCDEN ((uint32_t)0x00000200) /*!< LCD clock enable */
Kojto 116:c0f6e94411f5 2453 #define RCC_APB1ENR_WWDGEN ((uint32_t)0x00000800) /*!< Window Watchdog clock enable */
Kojto 116:c0f6e94411f5 2454 #define RCC_APB1ENR_SPI2EN ((uint32_t)0x00004000) /*!< SPI2 clock enable */
Kojto 116:c0f6e94411f5 2455 #define RCC_APB1ENR_USART2EN ((uint32_t)0x00020000) /*!< USART2 clock enable */
Kojto 116:c0f6e94411f5 2456 #define RCC_APB1ENR_LPUART1EN ((uint32_t)0x00040000) /*!< LPUART1 clock enable */
Kojto 116:c0f6e94411f5 2457 #define RCC_APB1ENR_USART4EN ((uint32_t)0x00080000) /*!< USART4 clock enable */
Kojto 116:c0f6e94411f5 2458 #define RCC_APB1ENR_USART5EN ((uint32_t)0x00100000) /*!< USART5 clock enable */
Kojto 116:c0f6e94411f5 2459 #define RCC_APB1ENR_I2C1EN ((uint32_t)0x00200000) /*!< I2C1 clock enable */
Kojto 116:c0f6e94411f5 2460 #define RCC_APB1ENR_I2C2EN ((uint32_t)0x00400000) /*!< I2C2 clock enable */
Kojto 116:c0f6e94411f5 2461 #define RCC_APB1ENR_USBEN ((uint32_t)0x00800000) /*!< USB clock enable */
Kojto 116:c0f6e94411f5 2462 #define RCC_APB1ENR_CRSEN ((uint32_t)0x08000000) /*!< CRS clock enable */
Kojto 116:c0f6e94411f5 2463 #define RCC_APB1ENR_PWREN ((uint32_t)0x10000000) /*!< PWR clock enable */
Kojto 116:c0f6e94411f5 2464 #define RCC_APB1ENR_DACEN ((uint32_t)0x20000000) /*!< DAC clock enable */
Kojto 116:c0f6e94411f5 2465 #define RCC_APB1ENR_I2C3EN ((uint32_t)0x40000000) /*!< I2C3 clock enable */
Kojto 116:c0f6e94411f5 2466 #define RCC_APB1ENR_LPTIM1EN ((uint32_t)0x80000000) /*!< LPTIM1 clock enable */
Kojto 116:c0f6e94411f5 2467
Kojto 116:c0f6e94411f5 2468 /****************** Bit definition for RCC_IOPSMENR register ****************/
Kojto 116:c0f6e94411f5 2469 #define RCC_IOPSMENR_GPIOASMEN ((uint32_t)0x00000001) /*!< GPIO port A clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2470 #define RCC_IOPSMENR_GPIOBSMEN ((uint32_t)0x00000002) /*!< GPIO port B clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2471 #define RCC_IOPSMENR_GPIOCSMEN ((uint32_t)0x00000004) /*!< GPIO port C clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2472 #define RCC_IOPSMENR_GPIODSMEN ((uint32_t)0x00000008) /*!< GPIO port D clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2473 #define RCC_IOPSMENR_GPIOESMEN ((uint32_t)0x00000010) /*!< GPIO port E clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2474 #define RCC_IOPSMENR_GPIOHSMEN ((uint32_t)0x00000080) /*!< GPIO port H clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2475
Kojto 116:c0f6e94411f5 2476 /***************** Bit definition for RCC_AHBSMENR register ******************/
Kojto 116:c0f6e94411f5 2477 #define RCC_AHBSMENR_DMA1SMEN ((uint32_t)0x00000001) /*!< DMA1 clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2478 #define RCC_AHBSMENR_MIFSMEN ((uint32_t)0x00000100) /*!< NVM interface clock enable during sleep mode */
Kojto 116:c0f6e94411f5 2479 #define RCC_AHBSMENR_SRAMSMEN ((uint32_t)0x00000200) /*!< SRAM clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2480 #define RCC_AHBSMENR_CRCSMEN ((uint32_t)0x00001000) /*!< CRC clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2481 #define RCC_AHBSMENR_TSCSMEN ((uint32_t)0x00010000) /*!< TSC clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2482 #define RCC_AHBSMENR_RNGSMEN ((uint32_t)0x00100000) /*!< RNG clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2483
Kojto 116:c0f6e94411f5 2484 /***************** Bit definition for RCC_APB2SMENR register ******************/
Kojto 116:c0f6e94411f5 2485 #define RCC_APB2SMENR_SYSCFGSMEN ((uint32_t)0x00000001) /*!< SYSCFG clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2486 #define RCC_APB2SMENR_TIM21SMEN ((uint32_t)0x00000004) /*!< TIM21 clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2487 #define RCC_APB2SMENR_TIM22SMEN ((uint32_t)0x00000020) /*!< TIM22 clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2488 #define RCC_APB2SMENR_ADC1SMEN ((uint32_t)0x00000200) /*!< ADC1 clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2489 #define RCC_APB2SMENR_SPI1SMEN ((uint32_t)0x00001000) /*!< SPI1 clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2490 #define RCC_APB2SMENR_USART1SMEN ((uint32_t)0x00004000) /*!< USART1 clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2491 #define RCC_APB2SMENR_DBGMCUSMEN ((uint32_t)0x00400000) /*!< DBGMCU clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2492
Kojto 116:c0f6e94411f5 2493 /***************** Bit definition for RCC_APB1SMENR register ******************/
Kojto 116:c0f6e94411f5 2494 #define RCC_APB1SMENR_TIM2SMEN ((uint32_t)0x00000001) /*!< Timer 2 clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2495 #define RCC_APB1SMENR_TIM3SMEN ((uint32_t)0x00000002) /*!< Timer 3 clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2496 #define RCC_APB1SMENR_TIM6SMEN ((uint32_t)0x00000010) /*!< Timer 6 clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2497 #define RCC_APB1SMENR_TIM7SMEN ((uint32_t)0x00000020) /*!< Timer 7 clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2498 #define RCC_APB1SMENR_LCDSMEN ((uint32_t)0x00000200) /*!< LCD clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2499 #define RCC_APB1SMENR_WWDGSMEN ((uint32_t)0x00000800) /*!< Window Watchdog clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2500 #define RCC_APB1SMENR_SPI2SMEN ((uint32_t)0x00004000) /*!< SPI2 clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2501 #define RCC_APB1SMENR_USART2SMEN ((uint32_t)0x00020000) /*!< USART2 clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2502 #define RCC_APB1SMENR_LPUART1SMEN ((uint32_t)0x00040000) /*!< LPUART1 clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2503 #define RCC_APB1SMENR_USART4SMEN ((uint32_t)0x00080000) /*!< USART4 clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2504 #define RCC_APB1SMENR_USART5SMEN ((uint32_t)0x00100000) /*!< USART5 clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2505 #define RCC_APB1SMENR_I2C1SMEN ((uint32_t)0x00200000) /*!< I2C1 clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2506 #define RCC_APB1SMENR_I2C2SMEN ((uint32_t)0x00400000) /*!< I2C2 clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2507 #define RCC_APB1SMENR_USBSMEN ((uint32_t)0x00800000) /*!< USB clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2508 #define RCC_APB1SMENR_CRSSMEN ((uint32_t)0x08000000) /*!< CRS clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2509 #define RCC_APB1SMENR_PWRSMEN ((uint32_t)0x10000000) /*!< PWR clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2510 #define RCC_APB1SMENR_DACSMEN ((uint32_t)0x20000000) /*!< DAC clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2511 #define RCC_APB1SMENR_I2C3SMEN ((uint32_t)0x40000000) /*!< I2C3 clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2512 #define RCC_APB1SMENR_LPTIM1SMEN ((uint32_t)0x80000000) /*!< LPTIM1 clock enabled in sleep mode */
Kojto 116:c0f6e94411f5 2513
Kojto 116:c0f6e94411f5 2514 /******************* Bit definition for RCC_CCIPR register *******************/
Kojto 116:c0f6e94411f5 2515 /*!< USART1 Clock source selection */
Kojto 116:c0f6e94411f5 2516 #define RCC_CCIPR_USART1SEL ((uint32_t)0x00000003) /*!< USART1SEL[1:0] bits */
Kojto 116:c0f6e94411f5 2517 #define RCC_CCIPR_USART1SEL_0 ((uint32_t)0x00000001) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 2518 #define RCC_CCIPR_USART1SEL_1 ((uint32_t)0x00000002) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 2519
Kojto 116:c0f6e94411f5 2520 /*!< USART2 Clock source selection */
Kojto 116:c0f6e94411f5 2521 #define RCC_CCIPR_USART2SEL ((uint32_t)0x0000000C) /*!< USART2SEL[1:0] bits */
Kojto 116:c0f6e94411f5 2522 #define RCC_CCIPR_USART2SEL_0 ((uint32_t)0x00000004) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 2523 #define RCC_CCIPR_USART2SEL_1 ((uint32_t)0x00000008) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 2524
Kojto 116:c0f6e94411f5 2525 /*!< LPUART1 Clock source selection */
Kojto 116:c0f6e94411f5 2526 #define RCC_CCIPR_LPUART1SEL ((uint32_t)0x0000C00) /*!< LPUART1SEL[1:0] bits */
Kojto 116:c0f6e94411f5 2527 #define RCC_CCIPR_LPUART1SEL_0 ((uint32_t)0x0000400) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 2528 #define RCC_CCIPR_LPUART1SEL_1 ((uint32_t)0x0000800) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 2529
Kojto 116:c0f6e94411f5 2530 /*!< I2C1 Clock source selection */
Kojto 116:c0f6e94411f5 2531 #define RCC_CCIPR_I2C1SEL ((uint32_t)0x00003000) /*!< I2C1SEL [1:0] bits */
Kojto 116:c0f6e94411f5 2532 #define RCC_CCIPR_I2C1SEL_0 ((uint32_t)0x00001000) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 2533 #define RCC_CCIPR_I2C1SEL_1 ((uint32_t)0x00002000) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 2534
Kojto 116:c0f6e94411f5 2535 /*!< I2C3 Clock source selection */
Kojto 116:c0f6e94411f5 2536 #define RCC_CCIPR_I2C3SEL ((uint32_t)0x00030000) /*!< I2C3SEL [1:0] bits */
Kojto 116:c0f6e94411f5 2537 #define RCC_CCIPR_I2C3SEL_0 ((uint32_t)0x00010000) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 2538 #define RCC_CCIPR_I2C3SEL_1 ((uint32_t)0x00020000) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 2539
Kojto 116:c0f6e94411f5 2540 /*!< LPTIM1 Clock source selection */
Kojto 116:c0f6e94411f5 2541 #define RCC_CCIPR_LPTIM1SEL ((uint32_t)0x000C0000) /*!< LPTIM1SEL [1:0] bits */
Kojto 116:c0f6e94411f5 2542 #define RCC_CCIPR_LPTIM1SEL_0 ((uint32_t)0x00040000) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 2543 #define RCC_CCIPR_LPTIM1SEL_1 ((uint32_t)0x00080000) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 2544
Kojto 116:c0f6e94411f5 2545 /*!< HSI48 Clock source selection */
Kojto 116:c0f6e94411f5 2546 #define RCC_CCIPR_HSI48SEL ((uint32_t)0x04000000) /*!< HSI48 RC clock source selection bit for USB and RNG*/
Kojto 116:c0f6e94411f5 2547
Kojto 116:c0f6e94411f5 2548 /* Bit name alias maintained for legacy */
Kojto 116:c0f6e94411f5 2549 #define RCC_CCIPR_HSI48MSEL RCC_CCIPR_HSI48SEL
Kojto 116:c0f6e94411f5 2550
Kojto 116:c0f6e94411f5 2551 /******************* Bit definition for RCC_CSR register *******************/
Kojto 116:c0f6e94411f5 2552 #define RCC_CSR_LSION ((uint32_t)0x00000001) /*!< Internal Low Speed oscillator enable */
Kojto 116:c0f6e94411f5 2553 #define RCC_CSR_LSIRDY ((uint32_t)0x00000002) /*!< Internal Low Speed oscillator Ready */
Kojto 116:c0f6e94411f5 2554
Kojto 116:c0f6e94411f5 2555 #define RCC_CSR_LSEON ((uint32_t)0x00000100) /*!< External Low Speed oscillator enable */
Kojto 116:c0f6e94411f5 2556 #define RCC_CSR_LSERDY ((uint32_t)0x00000200) /*!< External Low Speed oscillator Ready */
Kojto 116:c0f6e94411f5 2557 #define RCC_CSR_LSEBYP ((uint32_t)0x00000400) /*!< External Low Speed oscillator Bypass */
Kojto 116:c0f6e94411f5 2558
Kojto 116:c0f6e94411f5 2559 #define RCC_CSR_LSEDRV ((uint32_t)0x00001800) /*!< LSEDRV[1:0] bits (LSE Osc. drive capability) */
Kojto 116:c0f6e94411f5 2560 #define RCC_CSR_LSEDRV_0 ((uint32_t)0x00000800) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 2561 #define RCC_CSR_LSEDRV_1 ((uint32_t)0x00001000) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 2562
Kojto 116:c0f6e94411f5 2563 #define RCC_CSR_LSECSSON ((uint32_t)0x00002000) /*!< External Low Speed oscillator CSS Enable */
Kojto 116:c0f6e94411f5 2564 #define RCC_CSR_LSECSSD ((uint32_t)0x00004000) /*!< External Low Speed oscillator CSS Detected */
Kojto 116:c0f6e94411f5 2565
Kojto 116:c0f6e94411f5 2566 /*!< RTC congiguration */
Kojto 116:c0f6e94411f5 2567 #define RCC_CSR_RTCSEL ((uint32_t)0x00030000) /*!< RTCSEL[1:0] bits (RTC clock source selection) */
Kojto 116:c0f6e94411f5 2568 #define RCC_CSR_RTCSEL_0 ((uint32_t)0x00010000) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 2569 #define RCC_CSR_RTCSEL_1 ((uint32_t)0x00020000) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 2570
Kojto 116:c0f6e94411f5 2571 #define RCC_CSR_RTCSEL_NOCLOCK ((uint32_t)0x00000000) /*!< No clock */
Kojto 116:c0f6e94411f5 2572 #define RCC_CSR_RTCSEL_LSE ((uint32_t)0x00010000) /*!< LSE oscillator clock used as RTC clock */
Kojto 116:c0f6e94411f5 2573 #define RCC_CSR_RTCSEL_LSI ((uint32_t)0x00020000) /*!< LSI oscillator clock used as RTC clock */
Kojto 116:c0f6e94411f5 2574 #define RCC_CSR_RTCSEL_HSE ((uint32_t)0x00030000) /*!< HSE oscillator clock used as RTC clock */
Kojto 116:c0f6e94411f5 2575
Kojto 116:c0f6e94411f5 2576 #define RCC_CSR_RTCEN ((uint32_t)0x00040000) /*!< RTC clock enable */
Kojto 116:c0f6e94411f5 2577 #define RCC_CSR_RTCRST ((uint32_t)0x00080000) /*!< RTC software reset */
Kojto 116:c0f6e94411f5 2578
Kojto 116:c0f6e94411f5 2579 #define RCC_CSR_RMVF ((uint32_t)0x00800000) /*!< Remove reset flag */
Kojto 116:c0f6e94411f5 2580 #define RCC_CSR_FWRSTF ((uint32_t)0x01000000) /*!< Mifare Firewall reset flag */
Kojto 116:c0f6e94411f5 2581 #define RCC_CSR_OBL ((uint32_t)0x02000000) /*!< OBL reset flag */
Kojto 116:c0f6e94411f5 2582 #define RCC_CSR_PINRSTF ((uint32_t)0x04000000) /*!< PIN reset flag */
Kojto 116:c0f6e94411f5 2583 #define RCC_CSR_PORRSTF ((uint32_t)0x08000000) /*!< POR/PDR reset flag */
Kojto 116:c0f6e94411f5 2584 #define RCC_CSR_SFTRSTF ((uint32_t)0x10000000) /*!< Software Reset flag */
Kojto 116:c0f6e94411f5 2585 #define RCC_CSR_IWDGRSTF ((uint32_t)0x20000000) /*!< Independent Watchdog reset flag */
Kojto 116:c0f6e94411f5 2586 #define RCC_CSR_WWDGRSTF ((uint32_t)0x40000000) /*!< Window watchdog reset flag */
Kojto 116:c0f6e94411f5 2587 #define RCC_CSR_LPWRRSTF ((uint32_t)0x80000000) /*!< Low-Power reset flag */
Kojto 116:c0f6e94411f5 2588
Kojto 116:c0f6e94411f5 2589 /******************************************************************************/
Kojto 116:c0f6e94411f5 2590 /* */
Kojto 116:c0f6e94411f5 2591 /* RNG */
Kojto 116:c0f6e94411f5 2592 /* */
Kojto 116:c0f6e94411f5 2593 /******************************************************************************/
Kojto 116:c0f6e94411f5 2594 /******************** Bits definition for RNG_CR register *******************/
Kojto 116:c0f6e94411f5 2595 #define RNG_CR_RNGEN ((uint32_t)0x00000004)
Kojto 116:c0f6e94411f5 2596 #define RNG_CR_IE ((uint32_t)0x00000008)
Kojto 116:c0f6e94411f5 2597
Kojto 116:c0f6e94411f5 2598 /******************** Bits definition for RNG_SR register *******************/
Kojto 116:c0f6e94411f5 2599 #define RNG_SR_DRDY ((uint32_t)0x00000001)
Kojto 116:c0f6e94411f5 2600 #define RNG_SR_CECS ((uint32_t)0x00000002)
Kojto 116:c0f6e94411f5 2601 #define RNG_SR_SECS ((uint32_t)0x00000004)
Kojto 116:c0f6e94411f5 2602 #define RNG_SR_CEIS ((uint32_t)0x00000020)
Kojto 116:c0f6e94411f5 2603 #define RNG_SR_SEIS ((uint32_t)0x00000040)
Kojto 116:c0f6e94411f5 2604
Kojto 116:c0f6e94411f5 2605 /******************************************************************************/
Kojto 116:c0f6e94411f5 2606 /* */
Kojto 116:c0f6e94411f5 2607 /* Real-Time Clock (RTC) */
Kojto 116:c0f6e94411f5 2608 /* */
Kojto 116:c0f6e94411f5 2609 /******************************************************************************/
Kojto 116:c0f6e94411f5 2610 /******************** Bits definition for RTC_TR register *******************/
Kojto 116:c0f6e94411f5 2611 #define RTC_TR_PM ((uint32_t)0x00400000) /*!< */
Kojto 116:c0f6e94411f5 2612 #define RTC_TR_HT ((uint32_t)0x00300000) /*!< */
Kojto 116:c0f6e94411f5 2613 #define RTC_TR_HT_0 ((uint32_t)0x00100000) /*!< */
Kojto 116:c0f6e94411f5 2614 #define RTC_TR_HT_1 ((uint32_t)0x00200000) /*!< */
Kojto 116:c0f6e94411f5 2615 #define RTC_TR_HU ((uint32_t)0x000F0000) /*!< */
Kojto 116:c0f6e94411f5 2616 #define RTC_TR_HU_0 ((uint32_t)0x00010000) /*!< */
Kojto 116:c0f6e94411f5 2617 #define RTC_TR_HU_1 ((uint32_t)0x00020000) /*!< */
Kojto 116:c0f6e94411f5 2618 #define RTC_TR_HU_2 ((uint32_t)0x00040000) /*!< */
Kojto 116:c0f6e94411f5 2619 #define RTC_TR_HU_3 ((uint32_t)0x00080000) /*!< */
Kojto 116:c0f6e94411f5 2620 #define RTC_TR_MNT ((uint32_t)0x00007000) /*!< */
Kojto 116:c0f6e94411f5 2621 #define RTC_TR_MNT_0 ((uint32_t)0x00001000) /*!< */
Kojto 116:c0f6e94411f5 2622 #define RTC_TR_MNT_1 ((uint32_t)0x00002000) /*!< */
Kojto 116:c0f6e94411f5 2623 #define RTC_TR_MNT_2 ((uint32_t)0x00004000) /*!< */
Kojto 116:c0f6e94411f5 2624 #define RTC_TR_MNU ((uint32_t)0x00000F00) /*!< */
Kojto 116:c0f6e94411f5 2625 #define RTC_TR_MNU_0 ((uint32_t)0x00000100) /*!< */
Kojto 116:c0f6e94411f5 2626 #define RTC_TR_MNU_1 ((uint32_t)0x00000200) /*!< */
Kojto 116:c0f6e94411f5 2627 #define RTC_TR_MNU_2 ((uint32_t)0x00000400) /*!< */
Kojto 116:c0f6e94411f5 2628 #define RTC_TR_MNU_3 ((uint32_t)0x00000800) /*!< */
Kojto 116:c0f6e94411f5 2629 #define RTC_TR_ST ((uint32_t)0x00000070) /*!< */
Kojto 116:c0f6e94411f5 2630 #define RTC_TR_ST_0 ((uint32_t)0x00000010) /*!< */
Kojto 116:c0f6e94411f5 2631 #define RTC_TR_ST_1 ((uint32_t)0x00000020) /*!< */
Kojto 116:c0f6e94411f5 2632 #define RTC_TR_ST_2 ((uint32_t)0x00000040) /*!< */
Kojto 116:c0f6e94411f5 2633 #define RTC_TR_SU ((uint32_t)0x0000000F) /*!< */
Kojto 116:c0f6e94411f5 2634 #define RTC_TR_SU_0 ((uint32_t)0x00000001) /*!< */
Kojto 116:c0f6e94411f5 2635 #define RTC_TR_SU_1 ((uint32_t)0x00000002) /*!< */
Kojto 116:c0f6e94411f5 2636 #define RTC_TR_SU_2 ((uint32_t)0x00000004) /*!< */
Kojto 116:c0f6e94411f5 2637 #define RTC_TR_SU_3 ((uint32_t)0x00000008) /*!< */
Kojto 116:c0f6e94411f5 2638
Kojto 116:c0f6e94411f5 2639 /******************** Bits definition for RTC_DR register *******************/
Kojto 116:c0f6e94411f5 2640 #define RTC_DR_YT ((uint32_t)0x00F00000) /*!< */
Kojto 116:c0f6e94411f5 2641 #define RTC_DR_YT_0 ((uint32_t)0x00100000) /*!< */
Kojto 116:c0f6e94411f5 2642 #define RTC_DR_YT_1 ((uint32_t)0x00200000) /*!< */
Kojto 116:c0f6e94411f5 2643 #define RTC_DR_YT_2 ((uint32_t)0x00400000) /*!< */
Kojto 116:c0f6e94411f5 2644 #define RTC_DR_YT_3 ((uint32_t)0x00800000) /*!< */
Kojto 116:c0f6e94411f5 2645 #define RTC_DR_YU ((uint32_t)0x000F0000) /*!< */
Kojto 116:c0f6e94411f5 2646 #define RTC_DR_YU_0 ((uint32_t)0x00010000) /*!< */
Kojto 116:c0f6e94411f5 2647 #define RTC_DR_YU_1 ((uint32_t)0x00020000) /*!< */
Kojto 116:c0f6e94411f5 2648 #define RTC_DR_YU_2 ((uint32_t)0x00040000) /*!< */
Kojto 116:c0f6e94411f5 2649 #define RTC_DR_YU_3 ((uint32_t)0x00080000) /*!< */
Kojto 116:c0f6e94411f5 2650 #define RTC_DR_WDU ((uint32_t)0x0000E000) /*!< */
Kojto 116:c0f6e94411f5 2651 #define RTC_DR_WDU_0 ((uint32_t)0x00002000) /*!< */
Kojto 116:c0f6e94411f5 2652 #define RTC_DR_WDU_1 ((uint32_t)0x00004000) /*!< */
Kojto 116:c0f6e94411f5 2653 #define RTC_DR_WDU_2 ((uint32_t)0x00008000) /*!< */
Kojto 116:c0f6e94411f5 2654 #define RTC_DR_MT ((uint32_t)0x00001000) /*!< */
Kojto 116:c0f6e94411f5 2655 #define RTC_DR_MU ((uint32_t)0x00000F00) /*!< */
Kojto 116:c0f6e94411f5 2656 #define RTC_DR_MU_0 ((uint32_t)0x00000100) /*!< */
Kojto 116:c0f6e94411f5 2657 #define RTC_DR_MU_1 ((uint32_t)0x00000200) /*!< */
Kojto 116:c0f6e94411f5 2658 #define RTC_DR_MU_2 ((uint32_t)0x00000400) /*!< */
Kojto 116:c0f6e94411f5 2659 #define RTC_DR_MU_3 ((uint32_t)0x00000800) /*!< */
Kojto 116:c0f6e94411f5 2660 #define RTC_DR_DT ((uint32_t)0x00000030) /*!< */
Kojto 116:c0f6e94411f5 2661 #define RTC_DR_DT_0 ((uint32_t)0x00000010) /*!< */
Kojto 116:c0f6e94411f5 2662 #define RTC_DR_DT_1 ((uint32_t)0x00000020) /*!< */
Kojto 116:c0f6e94411f5 2663 #define RTC_DR_DU ((uint32_t)0x0000000F) /*!< */
Kojto 116:c0f6e94411f5 2664 #define RTC_DR_DU_0 ((uint32_t)0x00000001) /*!< */
Kojto 116:c0f6e94411f5 2665 #define RTC_DR_DU_1 ((uint32_t)0x00000002) /*!< */
Kojto 116:c0f6e94411f5 2666 #define RTC_DR_DU_2 ((uint32_t)0x00000004) /*!< */
Kojto 116:c0f6e94411f5 2667 #define RTC_DR_DU_3 ((uint32_t)0x00000008) /*!< */
Kojto 116:c0f6e94411f5 2668
Kojto 116:c0f6e94411f5 2669 /******************** Bits definition for RTC_CR register *******************/
Kojto 116:c0f6e94411f5 2670 #define RTC_CR_COE ((uint32_t)0x00800000) /*!< */
Kojto 116:c0f6e94411f5 2671 #define RTC_CR_OSEL ((uint32_t)0x00600000) /*!< */
Kojto 116:c0f6e94411f5 2672 #define RTC_CR_OSEL_0 ((uint32_t)0x00200000) /*!< */
Kojto 116:c0f6e94411f5 2673 #define RTC_CR_OSEL_1 ((uint32_t)0x00400000) /*!< */
Kojto 116:c0f6e94411f5 2674 #define RTC_CR_POL ((uint32_t)0x00100000) /*!< */
Kojto 116:c0f6e94411f5 2675 #define RTC_CR_COSEL ((uint32_t)0x00080000) /*!< */
Kojto 116:c0f6e94411f5 2676 #define RTC_CR_BCK ((uint32_t)0x00040000) /*!< */
Kojto 116:c0f6e94411f5 2677 #define RTC_CR_SUB1H ((uint32_t)0x00020000) /*!< */
Kojto 116:c0f6e94411f5 2678 #define RTC_CR_ADD1H ((uint32_t)0x00010000) /*!< */
Kojto 116:c0f6e94411f5 2679 #define RTC_CR_TSIE ((uint32_t)0x00008000) /*!< */
Kojto 116:c0f6e94411f5 2680 #define RTC_CR_WUTIE ((uint32_t)0x00004000) /*!< */
Kojto 116:c0f6e94411f5 2681 #define RTC_CR_ALRBIE ((uint32_t)0x00002000) /*!< */
Kojto 116:c0f6e94411f5 2682 #define RTC_CR_ALRAIE ((uint32_t)0x00001000) /*!< */
Kojto 116:c0f6e94411f5 2683 #define RTC_CR_TSE ((uint32_t)0x00000800) /*!< */
Kojto 116:c0f6e94411f5 2684 #define RTC_CR_WUTE ((uint32_t)0x00000400) /*!< */
Kojto 116:c0f6e94411f5 2685 #define RTC_CR_ALRBE ((uint32_t)0x00000200) /*!< */
Kojto 116:c0f6e94411f5 2686 #define RTC_CR_ALRAE ((uint32_t)0x00000100) /*!< */
Kojto 116:c0f6e94411f5 2687 #define RTC_CR_FMT ((uint32_t)0x00000040) /*!< */
Kojto 116:c0f6e94411f5 2688 #define RTC_CR_BYPSHAD ((uint32_t)0x00000020) /*!< */
Kojto 116:c0f6e94411f5 2689 #define RTC_CR_REFCKON ((uint32_t)0x00000010) /*!< */
Kojto 116:c0f6e94411f5 2690 #define RTC_CR_TSEDGE ((uint32_t)0x00000008) /*!< */
Kojto 116:c0f6e94411f5 2691 #define RTC_CR_WUCKSEL ((uint32_t)0x00000007) /*!< */
Kojto 116:c0f6e94411f5 2692 #define RTC_CR_WUCKSEL_0 ((uint32_t)0x00000001) /*!< */
Kojto 116:c0f6e94411f5 2693 #define RTC_CR_WUCKSEL_1 ((uint32_t)0x00000002) /*!< */
Kojto 116:c0f6e94411f5 2694 #define RTC_CR_WUCKSEL_2 ((uint32_t)0x00000004) /*!< */
Kojto 116:c0f6e94411f5 2695
Kojto 116:c0f6e94411f5 2696 /******************** Bits definition for RTC_ISR register ******************/
Kojto 116:c0f6e94411f5 2697 #define RTC_ISR_RECALPF ((uint32_t)0x00010000) /*!< */
Kojto 116:c0f6e94411f5 2698 #define RTC_ISR_TAMP3F ((uint32_t)0x00008000) /*!< */
Kojto 116:c0f6e94411f5 2699 #define RTC_ISR_TAMP2F ((uint32_t)0x00004000) /*!< */
Kojto 116:c0f6e94411f5 2700 #define RTC_ISR_TAMP1F ((uint32_t)0x00002000) /*!< */
Kojto 116:c0f6e94411f5 2701 #define RTC_ISR_TSOVF ((uint32_t)0x00001000) /*!< */
Kojto 116:c0f6e94411f5 2702 #define RTC_ISR_TSF ((uint32_t)0x00000800) /*!< */
Kojto 116:c0f6e94411f5 2703 #define RTC_ISR_WUTF ((uint32_t)0x00000400) /*!< */
Kojto 116:c0f6e94411f5 2704 #define RTC_ISR_ALRBF ((uint32_t)0x00000200) /*!< */
Kojto 116:c0f6e94411f5 2705 #define RTC_ISR_ALRAF ((uint32_t)0x00000100) /*!< */
Kojto 116:c0f6e94411f5 2706 #define RTC_ISR_INIT ((uint32_t)0x00000080) /*!< */
Kojto 116:c0f6e94411f5 2707 #define RTC_ISR_INITF ((uint32_t)0x00000040) /*!< */
Kojto 116:c0f6e94411f5 2708 #define RTC_ISR_RSF ((uint32_t)0x00000020) /*!< */
Kojto 116:c0f6e94411f5 2709 #define RTC_ISR_INITS ((uint32_t)0x00000010) /*!< */
Kojto 116:c0f6e94411f5 2710 #define RTC_ISR_SHPF ((uint32_t)0x00000008) /*!< */
Kojto 116:c0f6e94411f5 2711 #define RTC_ISR_WUTWF ((uint32_t)0x00000004) /*!< */
Kojto 116:c0f6e94411f5 2712 #define RTC_ISR_ALRBWF ((uint32_t)0x00000002) /*!< */
Kojto 116:c0f6e94411f5 2713 #define RTC_ISR_ALRAWF ((uint32_t)0x00000001) /*!< */
Kojto 116:c0f6e94411f5 2714
Kojto 116:c0f6e94411f5 2715 /******************** Bits definition for RTC_PRER register *****************/
Kojto 116:c0f6e94411f5 2716 #define RTC_PRER_PREDIV_A ((uint32_t)0x007F0000) /*!< */
Kojto 116:c0f6e94411f5 2717 #define RTC_PRER_PREDIV_S ((uint32_t)0x00007FFF) /*!< */
Kojto 116:c0f6e94411f5 2718
Kojto 116:c0f6e94411f5 2719 /******************** Bits definition for RTC_WUTR register *****************/
Kojto 116:c0f6e94411f5 2720 #define RTC_WUTR_WUT ((uint32_t)0x0000FFFF)
Kojto 116:c0f6e94411f5 2721
Kojto 116:c0f6e94411f5 2722 /******************** Bits definition for RTC_ALRMAR register ***************/
Kojto 116:c0f6e94411f5 2723 #define RTC_ALRMAR_MSK4 ((uint32_t)0x80000000) /*!< */
Kojto 116:c0f6e94411f5 2724 #define RTC_ALRMAR_WDSEL ((uint32_t)0x40000000) /*!< */
Kojto 116:c0f6e94411f5 2725 #define RTC_ALRMAR_DT ((uint32_t)0x30000000) /*!< */
Kojto 116:c0f6e94411f5 2726 #define RTC_ALRMAR_DT_0 ((uint32_t)0x10000000) /*!< */
Kojto 116:c0f6e94411f5 2727 #define RTC_ALRMAR_DT_1 ((uint32_t)0x20000000) /*!< */
Kojto 116:c0f6e94411f5 2728 #define RTC_ALRMAR_DU ((uint32_t)0x0F000000) /*!< */
Kojto 116:c0f6e94411f5 2729 #define RTC_ALRMAR_DU_0 ((uint32_t)0x01000000) /*!< */
Kojto 116:c0f6e94411f5 2730 #define RTC_ALRMAR_DU_1 ((uint32_t)0x02000000) /*!< */
Kojto 116:c0f6e94411f5 2731 #define RTC_ALRMAR_DU_2 ((uint32_t)0x04000000) /*!< */
Kojto 116:c0f6e94411f5 2732 #define RTC_ALRMAR_DU_3 ((uint32_t)0x08000000) /*!< */
Kojto 116:c0f6e94411f5 2733 #define RTC_ALRMAR_MSK3 ((uint32_t)0x00800000) /*!< */
Kojto 116:c0f6e94411f5 2734 #define RTC_ALRMAR_PM ((uint32_t)0x00400000) /*!< */
Kojto 116:c0f6e94411f5 2735 #define RTC_ALRMAR_HT ((uint32_t)0x00300000) /*!< */
Kojto 116:c0f6e94411f5 2736 #define RTC_ALRMAR_HT_0 ((uint32_t)0x00100000) /*!< */
Kojto 116:c0f6e94411f5 2737 #define RTC_ALRMAR_HT_1 ((uint32_t)0x00200000) /*!< */
Kojto 116:c0f6e94411f5 2738 #define RTC_ALRMAR_HU ((uint32_t)0x000F0000) /*!< */
Kojto 116:c0f6e94411f5 2739 #define RTC_ALRMAR_HU_0 ((uint32_t)0x00010000) /*!< */
Kojto 116:c0f6e94411f5 2740 #define RTC_ALRMAR_HU_1 ((uint32_t)0x00020000) /*!< */
Kojto 116:c0f6e94411f5 2741 #define RTC_ALRMAR_HU_2 ((uint32_t)0x00040000) /*!< */
Kojto 116:c0f6e94411f5 2742 #define RTC_ALRMAR_HU_3 ((uint32_t)0x00080000) /*!< */
Kojto 116:c0f6e94411f5 2743 #define RTC_ALRMAR_MSK2 ((uint32_t)0x00008000) /*!< */
Kojto 116:c0f6e94411f5 2744 #define RTC_ALRMAR_MNT ((uint32_t)0x00007000) /*!< */
Kojto 116:c0f6e94411f5 2745 #define RTC_ALRMAR_MNT_0 ((uint32_t)0x00001000) /*!< */
Kojto 116:c0f6e94411f5 2746 #define RTC_ALRMAR_MNT_1 ((uint32_t)0x00002000) /*!< */
Kojto 116:c0f6e94411f5 2747 #define RTC_ALRMAR_MNT_2 ((uint32_t)0x00004000) /*!< */
Kojto 116:c0f6e94411f5 2748 #define RTC_ALRMAR_MNU ((uint32_t)0x00000F00) /*!< */
Kojto 116:c0f6e94411f5 2749 #define RTC_ALRMAR_MNU_0 ((uint32_t)0x00000100) /*!< */
Kojto 116:c0f6e94411f5 2750 #define RTC_ALRMAR_MNU_1 ((uint32_t)0x00000200) /*!< */
Kojto 116:c0f6e94411f5 2751 #define RTC_ALRMAR_MNU_2 ((uint32_t)0x00000400) /*!< */
Kojto 116:c0f6e94411f5 2752 #define RTC_ALRMAR_MNU_3 ((uint32_t)0x00000800) /*!< */
Kojto 116:c0f6e94411f5 2753 #define RTC_ALRMAR_MSK1 ((uint32_t)0x00000080) /*!< */
Kojto 116:c0f6e94411f5 2754 #define RTC_ALRMAR_ST ((uint32_t)0x00000070) /*!< */
Kojto 116:c0f6e94411f5 2755 #define RTC_ALRMAR_ST_0 ((uint32_t)0x00000010) /*!< */
Kojto 116:c0f6e94411f5 2756 #define RTC_ALRMAR_ST_1 ((uint32_t)0x00000020) /*!< */
Kojto 116:c0f6e94411f5 2757 #define RTC_ALRMAR_ST_2 ((uint32_t)0x00000040) /*!< */
Kojto 116:c0f6e94411f5 2758 #define RTC_ALRMAR_SU ((uint32_t)0x0000000F) /*!< */
Kojto 116:c0f6e94411f5 2759 #define RTC_ALRMAR_SU_0 ((uint32_t)0x00000001) /*!< */
Kojto 116:c0f6e94411f5 2760 #define RTC_ALRMAR_SU_1 ((uint32_t)0x00000002) /*!< */
Kojto 116:c0f6e94411f5 2761 #define RTC_ALRMAR_SU_2 ((uint32_t)0x00000004) /*!< */
Kojto 116:c0f6e94411f5 2762 #define RTC_ALRMAR_SU_3 ((uint32_t)0x00000008) /*!< */
Kojto 116:c0f6e94411f5 2763
Kojto 116:c0f6e94411f5 2764 /******************** Bits definition for RTC_ALRMBR register ***************/
Kojto 116:c0f6e94411f5 2765 #define RTC_ALRMBR_MSK4 ((uint32_t)0x80000000) /*!< */
Kojto 116:c0f6e94411f5 2766 #define RTC_ALRMBR_WDSEL ((uint32_t)0x40000000) /*!< */
Kojto 116:c0f6e94411f5 2767 #define RTC_ALRMBR_DT ((uint32_t)0x30000000) /*!< */
Kojto 116:c0f6e94411f5 2768 #define RTC_ALRMBR_DT_0 ((uint32_t)0x10000000) /*!< */
Kojto 116:c0f6e94411f5 2769 #define RTC_ALRMBR_DT_1 ((uint32_t)0x20000000) /*!< */
Kojto 116:c0f6e94411f5 2770 #define RTC_ALRMBR_DU ((uint32_t)0x0F000000) /*!< */
Kojto 116:c0f6e94411f5 2771 #define RTC_ALRMBR_DU_0 ((uint32_t)0x01000000) /*!< */
Kojto 116:c0f6e94411f5 2772 #define RTC_ALRMBR_DU_1 ((uint32_t)0x02000000) /*!< */
Kojto 116:c0f6e94411f5 2773 #define RTC_ALRMBR_DU_2 ((uint32_t)0x04000000) /*!< */
Kojto 116:c0f6e94411f5 2774 #define RTC_ALRMBR_DU_3 ((uint32_t)0x08000000) /*!< */
Kojto 116:c0f6e94411f5 2775 #define RTC_ALRMBR_MSK3 ((uint32_t)0x00800000) /*!< */
Kojto 116:c0f6e94411f5 2776 #define RTC_ALRMBR_PM ((uint32_t)0x00400000) /*!< */
Kojto 116:c0f6e94411f5 2777 #define RTC_ALRMBR_HT ((uint32_t)0x00300000) /*!< */
Kojto 116:c0f6e94411f5 2778 #define RTC_ALRMBR_HT_0 ((uint32_t)0x00100000) /*!< */
Kojto 116:c0f6e94411f5 2779 #define RTC_ALRMBR_HT_1 ((uint32_t)0x00200000) /*!< */
Kojto 116:c0f6e94411f5 2780 #define RTC_ALRMBR_HU ((uint32_t)0x000F0000) /*!< */
Kojto 116:c0f6e94411f5 2781 #define RTC_ALRMBR_HU_0 ((uint32_t)0x00010000) /*!< */
Kojto 116:c0f6e94411f5 2782 #define RTC_ALRMBR_HU_1 ((uint32_t)0x00020000) /*!< */
Kojto 116:c0f6e94411f5 2783 #define RTC_ALRMBR_HU_2 ((uint32_t)0x00040000) /*!< */
Kojto 116:c0f6e94411f5 2784 #define RTC_ALRMBR_HU_3 ((uint32_t)0x00080000) /*!< */
Kojto 116:c0f6e94411f5 2785 #define RTC_ALRMBR_MSK2 ((uint32_t)0x00008000) /*!< */
Kojto 116:c0f6e94411f5 2786 #define RTC_ALRMBR_MNT ((uint32_t)0x00007000) /*!< */
Kojto 116:c0f6e94411f5 2787 #define RTC_ALRMBR_MNT_0 ((uint32_t)0x00001000) /*!< */
Kojto 116:c0f6e94411f5 2788 #define RTC_ALRMBR_MNT_1 ((uint32_t)0x00002000) /*!< */
Kojto 116:c0f6e94411f5 2789 #define RTC_ALRMBR_MNT_2 ((uint32_t)0x00004000) /*!< */
Kojto 116:c0f6e94411f5 2790 #define RTC_ALRMBR_MNU ((uint32_t)0x00000F00) /*!< */
Kojto 116:c0f6e94411f5 2791 #define RTC_ALRMBR_MNU_0 ((uint32_t)0x00000100) /*!< */
Kojto 116:c0f6e94411f5 2792 #define RTC_ALRMBR_MNU_1 ((uint32_t)0x00000200) /*!< */
Kojto 116:c0f6e94411f5 2793 #define RTC_ALRMBR_MNU_2 ((uint32_t)0x00000400) /*!< */
Kojto 116:c0f6e94411f5 2794 #define RTC_ALRMBR_MNU_3 ((uint32_t)0x00000800) /*!< */
Kojto 116:c0f6e94411f5 2795 #define RTC_ALRMBR_MSK1 ((uint32_t)0x00000080) /*!< */
Kojto 116:c0f6e94411f5 2796 #define RTC_ALRMBR_ST ((uint32_t)0x00000070) /*!< */
Kojto 116:c0f6e94411f5 2797 #define RTC_ALRMBR_ST_0 ((uint32_t)0x00000010) /*!< */
Kojto 116:c0f6e94411f5 2798 #define RTC_ALRMBR_ST_1 ((uint32_t)0x00000020) /*!< */
Kojto 116:c0f6e94411f5 2799 #define RTC_ALRMBR_ST_2 ((uint32_t)0x00000040) /*!< */
Kojto 116:c0f6e94411f5 2800 #define RTC_ALRMBR_SU ((uint32_t)0x0000000F) /*!< */
Kojto 116:c0f6e94411f5 2801 #define RTC_ALRMBR_SU_0 ((uint32_t)0x00000001) /*!< */
Kojto 116:c0f6e94411f5 2802 #define RTC_ALRMBR_SU_1 ((uint32_t)0x00000002) /*!< */
Kojto 116:c0f6e94411f5 2803 #define RTC_ALRMBR_SU_2 ((uint32_t)0x00000004) /*!< */
Kojto 116:c0f6e94411f5 2804 #define RTC_ALRMBR_SU_3 ((uint32_t)0x00000008) /*!< */
Kojto 116:c0f6e94411f5 2805
Kojto 116:c0f6e94411f5 2806 /******************** Bits definition for RTC_WPR register ******************/
Kojto 116:c0f6e94411f5 2807 #define RTC_WPR_KEY ((uint32_t)0x000000FF) /*!< */
Kojto 116:c0f6e94411f5 2808
Kojto 116:c0f6e94411f5 2809 /******************** Bits definition for RTC_SSR register ******************/
Kojto 116:c0f6e94411f5 2810 #define RTC_SSR_SS ((uint32_t)0x0000FFFF) /*!< */
Kojto 116:c0f6e94411f5 2811
Kojto 116:c0f6e94411f5 2812 /******************** Bits definition for RTC_SHIFTR register ***************/
Kojto 116:c0f6e94411f5 2813 #define RTC_SHIFTR_SUBFS ((uint32_t)0x00007FFF) /*!< */
Kojto 116:c0f6e94411f5 2814 #define RTC_SHIFTR_ADD1S ((uint32_t)0x80000000) /*!< */
Kojto 116:c0f6e94411f5 2815
Kojto 116:c0f6e94411f5 2816 /******************** Bits definition for RTC_TSTR register *****************/
Kojto 116:c0f6e94411f5 2817 #define RTC_TSTR_PM ((uint32_t)0x00400000) /*!< */
Kojto 116:c0f6e94411f5 2818 #define RTC_TSTR_HT ((uint32_t)0x00300000) /*!< */
Kojto 116:c0f6e94411f5 2819 #define RTC_TSTR_HT_0 ((uint32_t)0x00100000) /*!< */
Kojto 116:c0f6e94411f5 2820 #define RTC_TSTR_HT_1 ((uint32_t)0x00200000) /*!< */
Kojto 116:c0f6e94411f5 2821 #define RTC_TSTR_HU ((uint32_t)0x000F0000) /*!< */
Kojto 116:c0f6e94411f5 2822 #define RTC_TSTR_HU_0 ((uint32_t)0x00010000) /*!< */
Kojto 116:c0f6e94411f5 2823 #define RTC_TSTR_HU_1 ((uint32_t)0x00020000) /*!< */
Kojto 116:c0f6e94411f5 2824 #define RTC_TSTR_HU_2 ((uint32_t)0x00040000) /*!< */
Kojto 116:c0f6e94411f5 2825 #define RTC_TSTR_HU_3 ((uint32_t)0x00080000) /*!< */
Kojto 116:c0f6e94411f5 2826 #define RTC_TSTR_MNT ((uint32_t)0x00007000) /*!< */
Kojto 116:c0f6e94411f5 2827 #define RTC_TSTR_MNT_0 ((uint32_t)0x00001000) /*!< */
Kojto 116:c0f6e94411f5 2828 #define RTC_TSTR_MNT_1 ((uint32_t)0x00002000) /*!< */
Kojto 116:c0f6e94411f5 2829 #define RTC_TSTR_MNT_2 ((uint32_t)0x00004000) /*!< */
Kojto 116:c0f6e94411f5 2830 #define RTC_TSTR_MNU ((uint32_t)0x00000F00) /*!< */
Kojto 116:c0f6e94411f5 2831 #define RTC_TSTR_MNU_0 ((uint32_t)0x00000100) /*!< */
Kojto 116:c0f6e94411f5 2832 #define RTC_TSTR_MNU_1 ((uint32_t)0x00000200) /*!< */
Kojto 116:c0f6e94411f5 2833 #define RTC_TSTR_MNU_2 ((uint32_t)0x00000400) /*!< */
Kojto 116:c0f6e94411f5 2834 #define RTC_TSTR_MNU_3 ((uint32_t)0x00000800) /*!< */
Kojto 116:c0f6e94411f5 2835 #define RTC_TSTR_ST ((uint32_t)0x00000070) /*!< */
Kojto 116:c0f6e94411f5 2836 #define RTC_TSTR_ST_0 ((uint32_t)0x00000010) /*!< */
Kojto 116:c0f6e94411f5 2837 #define RTC_TSTR_ST_1 ((uint32_t)0x00000020) /*!< */
Kojto 116:c0f6e94411f5 2838 #define RTC_TSTR_ST_2 ((uint32_t)0x00000040) /*!< */
Kojto 116:c0f6e94411f5 2839 #define RTC_TSTR_SU ((uint32_t)0x0000000F) /*!< */
Kojto 116:c0f6e94411f5 2840 #define RTC_TSTR_SU_0 ((uint32_t)0x00000001) /*!< */
Kojto 116:c0f6e94411f5 2841 #define RTC_TSTR_SU_1 ((uint32_t)0x00000002) /*!< */
Kojto 116:c0f6e94411f5 2842 #define RTC_TSTR_SU_2 ((uint32_t)0x00000004) /*!< */
Kojto 116:c0f6e94411f5 2843 #define RTC_TSTR_SU_3 ((uint32_t)0x00000008) /*!< */
Kojto 116:c0f6e94411f5 2844
Kojto 116:c0f6e94411f5 2845 /******************** Bits definition for RTC_TSDR register *****************/
Kojto 116:c0f6e94411f5 2846 #define RTC_TSDR_WDU ((uint32_t)0x0000E000) /*!< */
Kojto 116:c0f6e94411f5 2847 #define RTC_TSDR_WDU_0 ((uint32_t)0x00002000) /*!< */
Kojto 116:c0f6e94411f5 2848 #define RTC_TSDR_WDU_1 ((uint32_t)0x00004000) /*!< */
Kojto 116:c0f6e94411f5 2849 #define RTC_TSDR_WDU_2 ((uint32_t)0x00008000) /*!< */
Kojto 116:c0f6e94411f5 2850 #define RTC_TSDR_MT ((uint32_t)0x00001000) /*!< */
Kojto 116:c0f6e94411f5 2851 #define RTC_TSDR_MU ((uint32_t)0x00000F00) /*!< */
Kojto 116:c0f6e94411f5 2852 #define RTC_TSDR_MU_0 ((uint32_t)0x00000100) /*!< */
Kojto 116:c0f6e94411f5 2853 #define RTC_TSDR_MU_1 ((uint32_t)0x00000200) /*!< */
Kojto 116:c0f6e94411f5 2854 #define RTC_TSDR_MU_2 ((uint32_t)0x00000400) /*!< */
Kojto 116:c0f6e94411f5 2855 #define RTC_TSDR_MU_3 ((uint32_t)0x00000800) /*!< */
Kojto 116:c0f6e94411f5 2856 #define RTC_TSDR_DT ((uint32_t)0x00000030) /*!< */
Kojto 116:c0f6e94411f5 2857 #define RTC_TSDR_DT_0 ((uint32_t)0x00000010) /*!< */
Kojto 116:c0f6e94411f5 2858 #define RTC_TSDR_DT_1 ((uint32_t)0x00000020) /*!< */
Kojto 116:c0f6e94411f5 2859 #define RTC_TSDR_DU ((uint32_t)0x0000000F) /*!< */
Kojto 116:c0f6e94411f5 2860 #define RTC_TSDR_DU_0 ((uint32_t)0x00000001) /*!< */
Kojto 116:c0f6e94411f5 2861 #define RTC_TSDR_DU_1 ((uint32_t)0x00000002) /*!< */
Kojto 116:c0f6e94411f5 2862 #define RTC_TSDR_DU_2 ((uint32_t)0x00000004) /*!< */
Kojto 116:c0f6e94411f5 2863 #define RTC_TSDR_DU_3 ((uint32_t)0x00000008) /*!< */
Kojto 116:c0f6e94411f5 2864
Kojto 116:c0f6e94411f5 2865 /******************** Bits definition for RTC_TSSSR register ****************/
Kojto 116:c0f6e94411f5 2866 #define RTC_TSSSR_SS ((uint32_t)0x0000FFFF)
Kojto 116:c0f6e94411f5 2867
Kojto 116:c0f6e94411f5 2868 /******************** Bits definition for RTC_CAL register *****************/
Kojto 116:c0f6e94411f5 2869 #define RTC_CAL_CALP ((uint32_t)0x00008000) /*!< */
Kojto 116:c0f6e94411f5 2870 #define RTC_CAL_CALW8 ((uint32_t)0x00004000) /*!< */
Kojto 116:c0f6e94411f5 2871 #define RTC_CAL_CALW16 ((uint32_t)0x00002000) /*!< */
Kojto 116:c0f6e94411f5 2872 #define RTC_CAL_CALM ((uint32_t)0x000001FF) /*!< */
Kojto 116:c0f6e94411f5 2873 #define RTC_CAL_CALM_0 ((uint32_t)0x00000001) /*!< */
Kojto 116:c0f6e94411f5 2874 #define RTC_CAL_CALM_1 ((uint32_t)0x00000002) /*!< */
Kojto 116:c0f6e94411f5 2875 #define RTC_CAL_CALM_2 ((uint32_t)0x00000004) /*!< */
Kojto 116:c0f6e94411f5 2876 #define RTC_CAL_CALM_3 ((uint32_t)0x00000008) /*!< */
Kojto 116:c0f6e94411f5 2877 #define RTC_CAL_CALM_4 ((uint32_t)0x00000010) /*!< */
Kojto 116:c0f6e94411f5 2878 #define RTC_CAL_CALM_5 ((uint32_t)0x00000020) /*!< */
Kojto 116:c0f6e94411f5 2879 #define RTC_CAL_CALM_6 ((uint32_t)0x00000040) /*!< */
Kojto 116:c0f6e94411f5 2880 #define RTC_CAL_CALM_7 ((uint32_t)0x00000080) /*!< */
Kojto 116:c0f6e94411f5 2881 #define RTC_CAL_CALM_8 ((uint32_t)0x00000100) /*!< */
Kojto 116:c0f6e94411f5 2882
Kojto 116:c0f6e94411f5 2883 /******************** Bits definition for RTC_TAMPCR register ****************/
Kojto 116:c0f6e94411f5 2884 #define RTC_TAMPCR_TAMP3MF ((uint32_t)0x01000000) /*!< */
Kojto 116:c0f6e94411f5 2885 #define RTC_TAMPCR_TAMP3NOERASE ((uint32_t)0x00800000) /*!< */
Kojto 116:c0f6e94411f5 2886 #define RTC_TAMPCR_TAMP3IE ((uint32_t)0x00400000) /*!< */
Kojto 116:c0f6e94411f5 2887 #define RTC_TAMPCR_TAMP2MF ((uint32_t)0x00200000) /*!< */
Kojto 116:c0f6e94411f5 2888 #define RTC_TAMPCR_TAMP2NOERASE ((uint32_t)0x00100000) /*!< */
Kojto 116:c0f6e94411f5 2889 #define RTC_TAMPCR_TAMP2IE ((uint32_t)0x00080000) /*!< */
Kojto 116:c0f6e94411f5 2890 #define RTC_TAMPCR_TAMP1MF ((uint32_t)0x00040000) /*!< */
Kojto 116:c0f6e94411f5 2891 #define RTC_TAMPCR_TAMP1NOERASE ((uint32_t)0x00020000) /*!< */
Kojto 116:c0f6e94411f5 2892 #define RTC_TAMPCR_TAMP1IE ((uint32_t)0x00010000) /*!< */
Kojto 116:c0f6e94411f5 2893 #define RTC_TAMPCR_TAMPPUDIS ((uint32_t)0x00008000) /*!< */
Kojto 116:c0f6e94411f5 2894 #define RTC_TAMPCR_TAMPPRCH ((uint32_t)0x00006000) /*!< */
Kojto 116:c0f6e94411f5 2895 #define RTC_TAMPCR_TAMPPRCH_0 ((uint32_t)0x00002000) /*!< */
Kojto 116:c0f6e94411f5 2896 #define RTC_TAMPCR_TAMPPRCH_1 ((uint32_t)0x00004000) /*!< */
Kojto 116:c0f6e94411f5 2897 #define RTC_TAMPCR_TAMPFLT ((uint32_t)0x00001800) /*!< */
Kojto 116:c0f6e94411f5 2898 #define RTC_TAMPCR_TAMPFLT_0 ((uint32_t)0x00000800) /*!< */
Kojto 116:c0f6e94411f5 2899 #define RTC_TAMPCR_TAMPFLT_1 ((uint32_t)0x00001000) /*!< */
Kojto 116:c0f6e94411f5 2900 #define RTC_TAMPCR_TAMPFREQ ((uint32_t)0x00000700) /*!< */
Kojto 116:c0f6e94411f5 2901 #define RTC_TAMPCR_TAMPFREQ_0 ((uint32_t)0x00000100) /*!< */
Kojto 116:c0f6e94411f5 2902 #define RTC_TAMPCR_TAMPFREQ_1 ((uint32_t)0x00000200) /*!< */
Kojto 116:c0f6e94411f5 2903 #define RTC_TAMPCR_TAMPFREQ_2 ((uint32_t)0x00000400) /*!< */
Kojto 116:c0f6e94411f5 2904 #define RTC_TAMPCR_TAMPTS ((uint32_t)0x00000080) /*!< */
Kojto 116:c0f6e94411f5 2905 #define RTC_TAMPCR_TAMP3TRG ((uint32_t)0x00000040) /*!< */
Kojto 116:c0f6e94411f5 2906 #define RTC_TAMPCR_TAMP3E ((uint32_t)0x00000020) /*!< */
Kojto 116:c0f6e94411f5 2907 #define RTC_TAMPCR_TAMP2TRG ((uint32_t)0x00000010) /*!< */
Kojto 116:c0f6e94411f5 2908 #define RTC_TAMPCR_TAMP2E ((uint32_t)0x00000008) /*!< */
Kojto 116:c0f6e94411f5 2909 #define RTC_TAMPCR_TAMPIE ((uint32_t)0x00000004) /*!< */
Kojto 116:c0f6e94411f5 2910 #define RTC_TAMPCR_TAMP1TRG ((uint32_t)0x00000002) /*!< */
Kojto 116:c0f6e94411f5 2911 #define RTC_TAMPCR_TAMP1E ((uint32_t)0x00000001) /*!< */
Kojto 116:c0f6e94411f5 2912
Kojto 116:c0f6e94411f5 2913 /******************** Bits definition for RTC_ALRMASSR register *************/
Kojto 116:c0f6e94411f5 2914 #define RTC_ALRMASSR_MASKSS ((uint32_t)0x0F000000)
Kojto 116:c0f6e94411f5 2915 #define RTC_ALRMASSR_MASKSS_0 ((uint32_t)0x01000000)
Kojto 116:c0f6e94411f5 2916 #define RTC_ALRMASSR_MASKSS_1 ((uint32_t)0x02000000)
Kojto 116:c0f6e94411f5 2917 #define RTC_ALRMASSR_MASKSS_2 ((uint32_t)0x04000000)
Kojto 116:c0f6e94411f5 2918 #define RTC_ALRMASSR_MASKSS_3 ((uint32_t)0x08000000)
Kojto 116:c0f6e94411f5 2919 #define RTC_ALRMASSR_SS ((uint32_t)0x00007FFF)
Kojto 116:c0f6e94411f5 2920
Kojto 116:c0f6e94411f5 2921 /******************** Bits definition for RTC_ALRMBSSR register *************/
Kojto 116:c0f6e94411f5 2922 #define RTC_ALRMBSSR_MASKSS ((uint32_t)0x0F000000)
Kojto 116:c0f6e94411f5 2923 #define RTC_ALRMBSSR_MASKSS_0 ((uint32_t)0x01000000)
Kojto 116:c0f6e94411f5 2924 #define RTC_ALRMBSSR_MASKSS_1 ((uint32_t)0x02000000)
Kojto 116:c0f6e94411f5 2925 #define RTC_ALRMBSSR_MASKSS_2 ((uint32_t)0x04000000)
Kojto 116:c0f6e94411f5 2926 #define RTC_ALRMBSSR_MASKSS_3 ((uint32_t)0x08000000)
Kojto 116:c0f6e94411f5 2927 #define RTC_ALRMBSSR_SS ((uint32_t)0x00007FFF)
Kojto 116:c0f6e94411f5 2928
Kojto 116:c0f6e94411f5 2929 /******************** Bits definition for RTC_OR register ****************/
Kojto 116:c0f6e94411f5 2930 #define RTC_OR_OUT_RMP ((uint32_t)0x00000002) /*!< */
Kojto 116:c0f6e94411f5 2931 #define RTC_OR_ALARMOUTTYPE ((uint32_t)0x00000001) /*!< */
Kojto 116:c0f6e94411f5 2932
Kojto 116:c0f6e94411f5 2933 /* Bit names aliases maintained for legacy */
Kojto 116:c0f6e94411f5 2934 #define RTC_OR_RTC_OUT_RMP RTC_OR_OUT_RMP
Kojto 116:c0f6e94411f5 2935
Kojto 116:c0f6e94411f5 2936 /******************** Bits definition for RTC_BKP0R register ****************/
Kojto 116:c0f6e94411f5 2937 #define RTC_BKP0R ((uint32_t)0xFFFFFFFF) /*!< */
Kojto 116:c0f6e94411f5 2938
Kojto 116:c0f6e94411f5 2939 /******************** Bits definition for RTC_BKP1R register ****************/
Kojto 116:c0f6e94411f5 2940 #define RTC_BKP1R ((uint32_t)0xFFFFFFFF) /*!< */
Kojto 116:c0f6e94411f5 2941
Kojto 116:c0f6e94411f5 2942 /******************** Bits definition for RTC_BKP2R register ****************/
Kojto 116:c0f6e94411f5 2943 #define RTC_BKP2R ((uint32_t)0xFFFFFFFF) /*!< */
Kojto 116:c0f6e94411f5 2944
Kojto 116:c0f6e94411f5 2945 /******************** Bits definition for RTC_BKP3R register ****************/
Kojto 116:c0f6e94411f5 2946 #define RTC_BKP3R ((uint32_t)0xFFFFFFFF) /*!< */
Kojto 116:c0f6e94411f5 2947
Kojto 116:c0f6e94411f5 2948 /******************** Bits definition for RTC_BKP4R register ****************/
Kojto 116:c0f6e94411f5 2949 #define RTC_BKP4R ((uint32_t)0xFFFFFFFF) /*!< */
Kojto 116:c0f6e94411f5 2950
Kojto 116:c0f6e94411f5 2951 /******************************************************************************/
Kojto 116:c0f6e94411f5 2952 /* */
Kojto 116:c0f6e94411f5 2953 /* Serial Peripheral Interface (SPI) */
Kojto 116:c0f6e94411f5 2954 /* */
Kojto 116:c0f6e94411f5 2955 /******************************************************************************/
Kojto 116:c0f6e94411f5 2956 /******************* Bit definition for SPI_CR1 register ********************/
Kojto 116:c0f6e94411f5 2957 #define SPI_CR1_CPHA ((uint32_t)0x00000001) /*!< Clock Phase */
Kojto 116:c0f6e94411f5 2958 #define SPI_CR1_CPOL ((uint32_t)0x00000002) /*!< Clock Polarity */
Kojto 116:c0f6e94411f5 2959 #define SPI_CR1_MSTR ((uint32_t)0x00000004) /*!< Master Selection */
Kojto 116:c0f6e94411f5 2960 #define SPI_CR1_BR ((uint32_t)0x00000038) /*!< BR[2:0] bits (Baud Rate Control) */
Kojto 116:c0f6e94411f5 2961 #define SPI_CR1_BR_0 ((uint32_t)0x00000008) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 2962 #define SPI_CR1_BR_1 ((uint32_t)0x00000010) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 2963 #define SPI_CR1_BR_2 ((uint32_t)0x00000020) /*!< Bit 2 */
Kojto 116:c0f6e94411f5 2964 #define SPI_CR1_SPE ((uint32_t)0x00000040) /*!< SPI Enable */
Kojto 116:c0f6e94411f5 2965 #define SPI_CR1_LSBFIRST ((uint32_t)0x00000080) /*!< Frame Format */
Kojto 116:c0f6e94411f5 2966 #define SPI_CR1_SSI ((uint32_t)0x00000100) /*!< Internal slave select */
Kojto 116:c0f6e94411f5 2967 #define SPI_CR1_SSM ((uint32_t)0x00000200) /*!< Software slave management */
Kojto 116:c0f6e94411f5 2968 #define SPI_CR1_RXONLY ((uint32_t)0x00000400) /*!< Receive only */
Kojto 116:c0f6e94411f5 2969 #define SPI_CR1_DFF ((uint32_t)0x00000800) /*!< Data Frame Format */
Kojto 116:c0f6e94411f5 2970 #define SPI_CR1_CRCNEXT ((uint32_t)0x00001000) /*!< Transmit CRC next */
Kojto 116:c0f6e94411f5 2971 #define SPI_CR1_CRCEN ((uint32_t)0x00002000) /*!< Hardware CRC calculation enable */
Kojto 116:c0f6e94411f5 2972 #define SPI_CR1_BIDIOE ((uint32_t)0x00004000) /*!< Output enable in bidirectional mode */
Kojto 116:c0f6e94411f5 2973 #define SPI_CR1_BIDIMODE ((uint32_t)0x00008000) /*!< Bidirectional data mode enable */
Kojto 116:c0f6e94411f5 2974
Kojto 116:c0f6e94411f5 2975 /******************* Bit definition for SPI_CR2 register ********************/
Kojto 116:c0f6e94411f5 2976 #define SPI_CR2_RXDMAEN ((uint32_t)0x00000001) /*!< Rx Buffer DMA Enable */
Kojto 116:c0f6e94411f5 2977 #define SPI_CR2_TXDMAEN ((uint32_t)0x00000002) /*!< Tx Buffer DMA Enable */
Kojto 116:c0f6e94411f5 2978 #define SPI_CR2_SSOE ((uint32_t)0x00000004) /*!< SS Output Enable */
Kojto 116:c0f6e94411f5 2979 #define SPI_CR2_FRF ((uint32_t)0x00000010) /*!< Frame Format Enable */
Kojto 116:c0f6e94411f5 2980 #define SPI_CR2_ERRIE ((uint32_t)0x00000020) /*!< Error Interrupt Enable */
Kojto 116:c0f6e94411f5 2981 #define SPI_CR2_RXNEIE ((uint32_t)0x00000040) /*!< RX buffer Not Empty Interrupt Enable */
Kojto 116:c0f6e94411f5 2982 #define SPI_CR2_TXEIE ((uint32_t)0x00000080) /*!< Tx buffer Empty Interrupt Enable */
Kojto 116:c0f6e94411f5 2983
Kojto 116:c0f6e94411f5 2984 /******************** Bit definition for SPI_SR register ********************/
Kojto 116:c0f6e94411f5 2985 #define SPI_SR_RXNE ((uint32_t)0x00000001) /*!< Receive buffer Not Empty */
Kojto 116:c0f6e94411f5 2986 #define SPI_SR_TXE ((uint32_t)0x00000002) /*!< Transmit buffer Empty */
Kojto 116:c0f6e94411f5 2987 #define SPI_SR_CHSIDE ((uint32_t)0x00000004) /*!< Channel side */
Kojto 116:c0f6e94411f5 2988 #define SPI_SR_UDR ((uint32_t)0x00000008) /*!< Underrun flag */
Kojto 116:c0f6e94411f5 2989 #define SPI_SR_CRCERR ((uint32_t)0x00000010) /*!< CRC Error flag */
Kojto 116:c0f6e94411f5 2990 #define SPI_SR_MODF ((uint32_t)0x00000020) /*!< Mode fault */
Kojto 116:c0f6e94411f5 2991 #define SPI_SR_OVR ((uint32_t)0x00000040) /*!< Overrun flag */
Kojto 116:c0f6e94411f5 2992 #define SPI_SR_BSY ((uint32_t)0x00000080) /*!< Busy flag */
Kojto 116:c0f6e94411f5 2993 #define SPI_SR_FRE ((uint32_t)0x00000100) /*!< TI frame format error */
Kojto 116:c0f6e94411f5 2994
Kojto 116:c0f6e94411f5 2995 /******************** Bit definition for SPI_DR register ********************/
Kojto 116:c0f6e94411f5 2996 #define SPI_DR_DR ((uint32_t)0x0000FFFF) /*!< Data Register */
Kojto 116:c0f6e94411f5 2997
Kojto 116:c0f6e94411f5 2998 /******************* Bit definition for SPI_CRCPR register ******************/
Kojto 116:c0f6e94411f5 2999 #define SPI_CRCPR_CRCPOLY ((uint32_t)0x0000FFFF) /*!< CRC polynomial register */
Kojto 116:c0f6e94411f5 3000
Kojto 116:c0f6e94411f5 3001 /****************** Bit definition for SPI_RXCRCR register ******************/
Kojto 116:c0f6e94411f5 3002 #define SPI_RXCRCR_RXCRC ((uint32_t)0x0000FFFF) /*!< Rx CRC Register */
Kojto 116:c0f6e94411f5 3003
Kojto 116:c0f6e94411f5 3004 /****************** Bit definition for SPI_TXCRCR register ******************/
Kojto 116:c0f6e94411f5 3005 #define SPI_TXCRCR_TXCRC ((uint32_t)0x0000FFFF) /*!< Tx CRC Register */
Kojto 116:c0f6e94411f5 3006
Kojto 116:c0f6e94411f5 3007 /****************** Bit definition for SPI_I2SCFGR register *****************/
Kojto 116:c0f6e94411f5 3008 #define SPI_I2SCFGR_CHLEN ((uint32_t)0x00000001) /*!<Channel length (number of bits per audio channel) */
Kojto 116:c0f6e94411f5 3009 #define SPI_I2SCFGR_DATLEN ((uint32_t)0x00000006) /*!<DATLEN[1:0] bits (Data length to be transferred) */
Kojto 116:c0f6e94411f5 3010 #define SPI_I2SCFGR_DATLEN_0 ((uint32_t)0x00000002) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3011 #define SPI_I2SCFGR_DATLEN_1 ((uint32_t)0x00000004) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3012 #define SPI_I2SCFGR_CKPOL ((uint32_t)0x00000008) /*!<steady state clock polarity */
Kojto 116:c0f6e94411f5 3013 #define SPI_I2SCFGR_I2SSTD ((uint32_t)0x00000030) /*!<I2SSTD[1:0] bits (I2S standard selection) */
Kojto 116:c0f6e94411f5 3014 #define SPI_I2SCFGR_I2SSTD_0 ((uint32_t)0x00000010) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3015 #define SPI_I2SCFGR_I2SSTD_1 ((uint32_t)0x00000020) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3016 #define SPI_I2SCFGR_PCMSYNC ((uint32_t)0x00000080) /*!<PCM frame synchronization */
Kojto 116:c0f6e94411f5 3017 #define SPI_I2SCFGR_I2SCFG ((uint32_t)0x00000300) /*!<I2SCFG[1:0] bits (I2S configuration mode) */
Kojto 116:c0f6e94411f5 3018 #define SPI_I2SCFGR_I2SCFG_0 ((uint32_t)0x00000100) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3019 #define SPI_I2SCFGR_I2SCFG_1 ((uint32_t)0x00000200) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3020 #define SPI_I2SCFGR_I2SE ((uint32_t)0x00000400) /*!<I2S Enable */
Kojto 116:c0f6e94411f5 3021 #define SPI_I2SCFGR_I2SMOD ((uint32_t)0x00000800) /*!<I2S mode selection */
Kojto 116:c0f6e94411f5 3022 #define SPI_I2SCFGR_ASTRTEN ((uint32_t)0x000001000) /*!<Asynchronous start enable */
Kojto 116:c0f6e94411f5 3023 /****************** Bit definition for SPI_I2SPR register *******************/
Kojto 116:c0f6e94411f5 3024 #define SPI_I2SPR_I2SDIV ((uint32_t)0x000000FF) /*!<I2S Linear prescaler */
Kojto 116:c0f6e94411f5 3025 #define SPI_I2SPR_ODD ((uint32_t)0x00000100) /*!<Odd factor for the prescaler */
Kojto 116:c0f6e94411f5 3026 #define SPI_I2SPR_MCKOE ((uint32_t)0x00000200) /*!<Master Clock Output Enable */
Kojto 116:c0f6e94411f5 3027
Kojto 116:c0f6e94411f5 3028 /******************************************************************************/
Kojto 116:c0f6e94411f5 3029 /* */
Kojto 116:c0f6e94411f5 3030 /* System Configuration (SYSCFG) */
Kojto 116:c0f6e94411f5 3031 /* */
Kojto 116:c0f6e94411f5 3032 /******************************************************************************/
Kojto 116:c0f6e94411f5 3033 /***************** Bit definition for SYSCFG_CFGR1 register ****************/
Kojto 116:c0f6e94411f5 3034 #define SYSCFG_CFGR1_MEM_MODE ((uint32_t)0x00000003) /*!< SYSCFG_Memory Remap Config */
Kojto 116:c0f6e94411f5 3035 #define SYSCFG_CFGR1_MEM_MODE_0 ((uint32_t)0x00000001) /*!< SYSCFG_Memory Remap Config Bit 0 */
Kojto 116:c0f6e94411f5 3036 #define SYSCFG_CFGR1_MEM_MODE_1 ((uint32_t)0x00000002) /*!< SYSCFG_Memory Remap Config Bit 1 */
Kojto 116:c0f6e94411f5 3037 #define SYSCFG_CFGR1_BOOT_MODE ((uint32_t)0x00000300) /*!< SYSCFG_Boot mode Config */
Kojto 116:c0f6e94411f5 3038 #define SYSCFG_CFGR1_BOOT_MOD_0 ((uint32_t)0x00000100) /*!< SYSCFG_Boot mode Config Bit 0 */
Kojto 116:c0f6e94411f5 3039 #define SYSCFG_CFGR1_BOOT_MODE_1 ((uint32_t)0x00000200) /*!< SYSCFG_Boot mode Config Bit 1 */
Kojto 116:c0f6e94411f5 3040
Kojto 116:c0f6e94411f5 3041 /***************** Bit definition for SYSCFG_CFGR2 register ****************/
Kojto 116:c0f6e94411f5 3042 #define SYSCFG_CFGR2_FWDISEN ((uint32_t)0x00000001) /*!< Firewall disable bit */
Kojto 116:c0f6e94411f5 3043 #define SYSCFG_CFGR2_CAPA ((uint32_t)0x0000003E) /*!< Connection of internal Vlcd rail to external capacitors */
Kojto 116:c0f6e94411f5 3044 #define SYSCFG_CFGR2_CAPA_0 ((uint32_t)0x00000002)
Kojto 116:c0f6e94411f5 3045 #define SYSCFG_CFGR2_CAPA_1 ((uint32_t)0x00000004)
Kojto 116:c0f6e94411f5 3046 #define SYSCFG_CFGR2_CAPA_2 ((uint32_t)0x00000008)
Kojto 116:c0f6e94411f5 3047 #define SYSCFG_CFGR2_CAPA_3 ((uint32_t)0x00000010)
Kojto 116:c0f6e94411f5 3048 #define SYSCFG_CFGR2_CAPA_4 ((uint32_t)0x00000020)
Kojto 116:c0f6e94411f5 3049 #define SYSCFG_CFGR2_I2C_PB6_FMP ((uint32_t)0x00000100) /*!< I2C PB6 Fast mode plus */
Kojto 116:c0f6e94411f5 3050 #define SYSCFG_CFGR2_I2C_PB7_FMP ((uint32_t)0x00000200) /*!< I2C PB7 Fast mode plus */
Kojto 116:c0f6e94411f5 3051 #define SYSCFG_CFGR2_I2C_PB8_FMP ((uint32_t)0x00000400) /*!< I2C PB8 Fast mode plus */
Kojto 116:c0f6e94411f5 3052 #define SYSCFG_CFGR2_I2C_PB9_FMP ((uint32_t)0x00000800) /*!< I2C PB9 Fast mode plus */
Kojto 116:c0f6e94411f5 3053 #define SYSCFG_CFGR2_I2C1_FMP ((uint32_t)0x00001000) /*!< I2C1 Fast mode plus */
Kojto 116:c0f6e94411f5 3054 #define SYSCFG_CFGR2_I2C2_FMP ((uint32_t)0x00002000) /*!< I2C2 Fast mode plus */
Kojto 116:c0f6e94411f5 3055 #define SYSCFG_CFGR2_I2C3_FMP ((uint32_t)0x00004000) /*!< I2C3 Fast mode plus */
Kojto 116:c0f6e94411f5 3056
Kojto 116:c0f6e94411f5 3057 /***************** Bit definition for SYSCFG_EXTICR1 register ***************/
Kojto 116:c0f6e94411f5 3058 #define SYSCFG_EXTICR1_EXTI0 ((uint32_t)0x0000000F) /*!< EXTI 0 configuration */
Kojto 116:c0f6e94411f5 3059 #define SYSCFG_EXTICR1_EXTI1 ((uint32_t)0x000000F0) /*!< EXTI 1 configuration */
Kojto 116:c0f6e94411f5 3060 #define SYSCFG_EXTICR1_EXTI2 ((uint32_t)0x00000F00) /*!< EXTI 2 configuration */
Kojto 116:c0f6e94411f5 3061 #define SYSCFG_EXTICR1_EXTI3 ((uint32_t)0x0000F000) /*!< EXTI 3 configuration */
Kojto 116:c0f6e94411f5 3062
Kojto 116:c0f6e94411f5 3063 /**
Kojto 116:c0f6e94411f5 3064 * @brief EXTI0 configuration
Kojto 116:c0f6e94411f5 3065 */
Kojto 116:c0f6e94411f5 3066 #define SYSCFG_EXTICR1_EXTI0_PA ((uint32_t)0x00000000) /*!< PA[0] pin */
Kojto 116:c0f6e94411f5 3067 #define SYSCFG_EXTICR1_EXTI0_PB ((uint32_t)0x00000001) /*!< PB[0] pin */
Kojto 116:c0f6e94411f5 3068 #define SYSCFG_EXTICR1_EXTI0_PC ((uint32_t)0x00000002) /*!< PC[0] pin */
Kojto 116:c0f6e94411f5 3069 #define SYSCFG_EXTICR1_EXTI0_PD ((uint32_t)0x00000003) /*!< PD[0] pin */
Kojto 116:c0f6e94411f5 3070 #define SYSCFG_EXTICR1_EXTI0_PE ((uint32_t)0x00000004) /*!< PE[0] pin */
Kojto 116:c0f6e94411f5 3071 #define SYSCFG_EXTICR1_EXTI0_PH ((uint32_t)0x00000005) /*!< PH[0] pin */
Kojto 116:c0f6e94411f5 3072
Kojto 116:c0f6e94411f5 3073 /**
Kojto 116:c0f6e94411f5 3074 * @brief EXTI1 configuration
Kojto 116:c0f6e94411f5 3075 */
Kojto 116:c0f6e94411f5 3076 #define SYSCFG_EXTICR1_EXTI1_PA ((uint32_t)0x00000000) /*!< PA[1] pin */
Kojto 116:c0f6e94411f5 3077 #define SYSCFG_EXTICR1_EXTI1_PB ((uint32_t)0x00000010) /*!< PB[1] pin */
Kojto 116:c0f6e94411f5 3078 #define SYSCFG_EXTICR1_EXTI1_PC ((uint32_t)0x00000020) /*!< PC[1] pin */
Kojto 116:c0f6e94411f5 3079 #define SYSCFG_EXTICR1_EXTI1_PD ((uint32_t)0x00000030) /*!< PD[1] pin */
Kojto 116:c0f6e94411f5 3080 #define SYSCFG_EXTICR1_EXTI1_PE ((uint32_t)0x00000040) /*!< PE[1] pin */
Kojto 116:c0f6e94411f5 3081 #define SYSCFG_EXTICR1_EXTI1_PH ((uint32_t)0x00000050) /*!< PH[1] pin */
Kojto 116:c0f6e94411f5 3082
Kojto 116:c0f6e94411f5 3083 /**
Kojto 116:c0f6e94411f5 3084 * @brief EXTI2 configuration
Kojto 116:c0f6e94411f5 3085 */
Kojto 116:c0f6e94411f5 3086 #define SYSCFG_EXTICR1_EXTI2_PA ((uint32_t)0x00000000) /*!< PA[2] pin */
Kojto 116:c0f6e94411f5 3087 #define SYSCFG_EXTICR1_EXTI2_PB ((uint32_t)0x00000100) /*!< PB[2] pin */
Kojto 116:c0f6e94411f5 3088 #define SYSCFG_EXTICR1_EXTI2_PC ((uint32_t)0x00000200) /*!< PC[2] pin */
Kojto 116:c0f6e94411f5 3089 #define SYSCFG_EXTICR1_EXTI2_PD ((uint32_t)0x00000300) /*!< PD[2] pin */
Kojto 116:c0f6e94411f5 3090 #define SYSCFG_EXTICR1_EXTI2_PE ((uint32_t)0x00000400) /*!< PE[2] pin */
Kojto 116:c0f6e94411f5 3091
Kojto 116:c0f6e94411f5 3092 /**
Kojto 116:c0f6e94411f5 3093 * @brief EXTI3 configuration
Kojto 116:c0f6e94411f5 3094 */
Kojto 116:c0f6e94411f5 3095 #define SYSCFG_EXTICR1_EXTI3_PA ((uint32_t)0x00000000) /*!< PA[3] pin */
Kojto 116:c0f6e94411f5 3096 #define SYSCFG_EXTICR1_EXTI3_PB ((uint32_t)0x00001000) /*!< PB[3] pin */
Kojto 116:c0f6e94411f5 3097 #define SYSCFG_EXTICR1_EXTI3_PC ((uint32_t)0x00002000) /*!< PC[3] pin */
Kojto 116:c0f6e94411f5 3098 #define SYSCFG_EXTICR1_EXTI3_PD ((uint32_t)0x00003000) /*!< PD[3] pin */
Kojto 116:c0f6e94411f5 3099 #define SYSCFG_EXTICR1_EXTI3_PE ((uint32_t)0x00004000) /*!< PE[3] pin */
Kojto 116:c0f6e94411f5 3100
Kojto 116:c0f6e94411f5 3101 /***************** Bit definition for SYSCFG_EXTICR2 register *****************/
Kojto 116:c0f6e94411f5 3102 #define SYSCFG_EXTICR2_EXTI4 ((uint32_t)0x0000000F) /*!< EXTI 4 configuration */
Kojto 116:c0f6e94411f5 3103 #define SYSCFG_EXTICR2_EXTI5 ((uint32_t)0x000000F0) /*!< EXTI 5 configuration */
Kojto 116:c0f6e94411f5 3104 #define SYSCFG_EXTICR2_EXTI6 ((uint32_t)0x00000F00) /*!< EXTI 6 configuration */
Kojto 116:c0f6e94411f5 3105 #define SYSCFG_EXTICR2_EXTI7 ((uint32_t)0x0000F000) /*!< EXTI 7 configuration */
Kojto 116:c0f6e94411f5 3106
Kojto 116:c0f6e94411f5 3107 /**
Kojto 116:c0f6e94411f5 3108 * @brief EXTI4 configuration
Kojto 116:c0f6e94411f5 3109 */
Kojto 116:c0f6e94411f5 3110 #define SYSCFG_EXTICR2_EXTI4_PA ((uint32_t)0x00000000) /*!< PA[4] pin */
Kojto 116:c0f6e94411f5 3111 #define SYSCFG_EXTICR2_EXTI4_PB ((uint32_t)0x00000001) /*!< PB[4] pin */
Kojto 116:c0f6e94411f5 3112 #define SYSCFG_EXTICR2_EXTI4_PC ((uint32_t)0x00000002) /*!< PC[4] pin */
Kojto 116:c0f6e94411f5 3113 #define SYSCFG_EXTICR2_EXTI4_PD ((uint32_t)0x00000003) /*!< PD[4] pin */
Kojto 116:c0f6e94411f5 3114 #define SYSCFG_EXTICR2_EXTI4_PE ((uint32_t)0x00000004) /*!< PE[4] pin */
Kojto 116:c0f6e94411f5 3115
Kojto 116:c0f6e94411f5 3116 /**
Kojto 116:c0f6e94411f5 3117 * @brief EXTI5 configuration
Kojto 116:c0f6e94411f5 3118 */
Kojto 116:c0f6e94411f5 3119 #define SYSCFG_EXTICR2_EXTI5_PA ((uint32_t)0x00000000) /*!< PA[5] pin */
Kojto 116:c0f6e94411f5 3120 #define SYSCFG_EXTICR2_EXTI5_PB ((uint32_t)0x00000010) /*!< PB[5] pin */
Kojto 116:c0f6e94411f5 3121 #define SYSCFG_EXTICR2_EXTI5_PC ((uint32_t)0x00000020) /*!< PC[5] pin */
Kojto 116:c0f6e94411f5 3122 #define SYSCFG_EXTICR2_EXTI5_PD ((uint32_t)0x00000030) /*!< PD[5] pin */
Kojto 116:c0f6e94411f5 3123 #define SYSCFG_EXTICR2_EXTI5_PE ((uint32_t)0x00000040) /*!< PE[5] pin */
Kojto 116:c0f6e94411f5 3124
Kojto 116:c0f6e94411f5 3125 /**
Kojto 116:c0f6e94411f5 3126 * @brief EXTI6 configuration
Kojto 116:c0f6e94411f5 3127 */
Kojto 116:c0f6e94411f5 3128 #define SYSCFG_EXTICR2_EXTI6_PA ((uint32_t)0x00000000) /*!< PA[6] pin */
Kojto 116:c0f6e94411f5 3129 #define SYSCFG_EXTICR2_EXTI6_PB ((uint32_t)0x00000100) /*!< PB[6] pin */
Kojto 116:c0f6e94411f5 3130 #define SYSCFG_EXTICR2_EXTI6_PC ((uint32_t)0x00000200) /*!< PC[6] pin */
Kojto 116:c0f6e94411f5 3131 #define SYSCFG_EXTICR2_EXTI6_PD ((uint32_t)0x00000300) /*!< PD[6] pin */
Kojto 116:c0f6e94411f5 3132 #define SYSCFG_EXTICR2_EXTI6_PE ((uint32_t)0x00000400) /*!< PE[6] pin */
Kojto 116:c0f6e94411f5 3133
Kojto 116:c0f6e94411f5 3134 /**
Kojto 116:c0f6e94411f5 3135 * @brief EXTI7 configuration
Kojto 116:c0f6e94411f5 3136 */
Kojto 116:c0f6e94411f5 3137 #define SYSCFG_EXTICR2_EXTI7_PA ((uint32_t)0x00000000) /*!< PA[7] pin */
Kojto 116:c0f6e94411f5 3138 #define SYSCFG_EXTICR2_EXTI7_PB ((uint32_t)0x00001000) /*!< PB[7] pin */
Kojto 116:c0f6e94411f5 3139 #define SYSCFG_EXTICR2_EXTI7_PC ((uint32_t)0x00002000) /*!< PC[7] pin */
Kojto 116:c0f6e94411f5 3140 #define SYSCFG_EXTICR2_EXTI7_PD ((uint32_t)0x00003000) /*!< PD[7] pin */
Kojto 116:c0f6e94411f5 3141 #define SYSCFG_EXTICR2_EXTI7_PE ((uint32_t)0x00004000) /*!< PE[7] pin */
Kojto 116:c0f6e94411f5 3142
Kojto 116:c0f6e94411f5 3143 /***************** Bit definition for SYSCFG_EXTICR3 register *****************/
Kojto 116:c0f6e94411f5 3144 #define SYSCFG_EXTICR3_EXTI8 ((uint32_t)0x0000000F) /*!< EXTI 8 configuration */
Kojto 116:c0f6e94411f5 3145 #define SYSCFG_EXTICR3_EXTI9 ((uint32_t)0x000000F0) /*!< EXTI 9 configuration */
Kojto 116:c0f6e94411f5 3146 #define SYSCFG_EXTICR3_EXTI10 ((uint32_t)0x00000F00) /*!< EXTI 10 configuration */
Kojto 116:c0f6e94411f5 3147 #define SYSCFG_EXTICR3_EXTI11 ((uint32_t)0x0000F000) /*!< EXTI 11 configuration */
Kojto 116:c0f6e94411f5 3148
Kojto 116:c0f6e94411f5 3149 /**
Kojto 116:c0f6e94411f5 3150 * @brief EXTI8 configuration
Kojto 116:c0f6e94411f5 3151 */
Kojto 116:c0f6e94411f5 3152 #define SYSCFG_EXTICR3_EXTI8_PA ((uint32_t)0x00000000) /*!< PA[8] pin */
Kojto 116:c0f6e94411f5 3153 #define SYSCFG_EXTICR3_EXTI8_PB ((uint32_t)0x00000001) /*!< PB[8] pin */
Kojto 116:c0f6e94411f5 3154 #define SYSCFG_EXTICR3_EXTI8_PC ((uint32_t)0x00000002) /*!< PC[8] pin */
Kojto 116:c0f6e94411f5 3155 #define SYSCFG_EXTICR3_EXTI8_PD ((uint32_t)0x00000003) /*!< PD[8] pin */
Kojto 116:c0f6e94411f5 3156 #define SYSCFG_EXTICR3_EXTI8_PE ((uint32_t)0x00000004) /*!< PE[8] pin */
Kojto 116:c0f6e94411f5 3157
Kojto 116:c0f6e94411f5 3158 /**
Kojto 116:c0f6e94411f5 3159 * @brief EXTI9 configuration
Kojto 116:c0f6e94411f5 3160 */
Kojto 116:c0f6e94411f5 3161 #define SYSCFG_EXTICR3_EXTI9_PA ((uint32_t)0x00000000) /*!< PA[9] pin */
Kojto 116:c0f6e94411f5 3162 #define SYSCFG_EXTICR3_EXTI9_PB ((uint32_t)0x00000010) /*!< PB[9] pin */
Kojto 116:c0f6e94411f5 3163 #define SYSCFG_EXTICR3_EXTI9_PC ((uint32_t)0x00000020) /*!< PC[9] pin */
Kojto 116:c0f6e94411f5 3164 #define SYSCFG_EXTICR3_EXTI9_PD ((uint32_t)0x00000030) /*!< PD[9] pin */
Kojto 116:c0f6e94411f5 3165 #define SYSCFG_EXTICR3_EXTI9_PE ((uint32_t)0x00000040) /*!< PE[9] pin */
Kojto 116:c0f6e94411f5 3166 #define SYSCFG_EXTICR3_EXTI9_PH ((uint32_t)0x00000050) /*!< PH[9] pin */
Kojto 116:c0f6e94411f5 3167
Kojto 116:c0f6e94411f5 3168 /**
Kojto 116:c0f6e94411f5 3169 * @brief EXTI10 configuration
Kojto 116:c0f6e94411f5 3170 */
Kojto 116:c0f6e94411f5 3171 #define SYSCFG_EXTICR3_EXTI10_PA ((uint32_t)0x00000000) /*!< PA[10] pin */
Kojto 116:c0f6e94411f5 3172 #define SYSCFG_EXTICR3_EXTI10_PB ((uint32_t)0x00000100) /*!< PB[10] pin */
Kojto 116:c0f6e94411f5 3173 #define SYSCFG_EXTICR3_EXTI10_PC ((uint32_t)0x00000200) /*!< PC[10] pin */
Kojto 116:c0f6e94411f5 3174 #define SYSCFG_EXTICR3_EXTI10_PD ((uint32_t)0x00000300) /*!< PD[10] pin */
Kojto 116:c0f6e94411f5 3175 #define SYSCFG_EXTICR3_EXTI10_PE ((uint32_t)0x00000400) /*!< PE[10] pin */
Kojto 116:c0f6e94411f5 3176 #define SYSCFG_EXTICR3_EXTI10_PH ((uint32_t)0x00000500) /*!< PH[10] pin */
Kojto 116:c0f6e94411f5 3177
Kojto 116:c0f6e94411f5 3178 /**
Kojto 116:c0f6e94411f5 3179 * @brief EXTI11 configuration
Kojto 116:c0f6e94411f5 3180 */
Kojto 116:c0f6e94411f5 3181 #define SYSCFG_EXTICR3_EXTI11_PA ((uint32_t)0x00000000) /*!< PA[11] pin */
Kojto 116:c0f6e94411f5 3182 #define SYSCFG_EXTICR3_EXTI11_PB ((uint32_t)0x00001000) /*!< PB[11] pin */
Kojto 116:c0f6e94411f5 3183 #define SYSCFG_EXTICR3_EXTI11_PC ((uint32_t)0x00002000) /*!< PC[11] pin */
Kojto 116:c0f6e94411f5 3184 #define SYSCFG_EXTICR3_EXTI11_PD ((uint32_t)0x00003000) /*!< PD[11] pin */
Kojto 116:c0f6e94411f5 3185 #define SYSCFG_EXTICR3_EXTI11_PE ((uint32_t)0x00004000) /*!< PE[11] pin */
Kojto 116:c0f6e94411f5 3186
Kojto 116:c0f6e94411f5 3187 /***************** Bit definition for SYSCFG_EXTICR4 register *****************/
Kojto 116:c0f6e94411f5 3188 #define SYSCFG_EXTICR4_EXTI12 ((uint32_t)0x0000000F) /*!< EXTI 12 configuration */
Kojto 116:c0f6e94411f5 3189 #define SYSCFG_EXTICR4_EXTI13 ((uint32_t)0x000000F0) /*!< EXTI 13 configuration */
Kojto 116:c0f6e94411f5 3190 #define SYSCFG_EXTICR4_EXTI14 ((uint32_t)0x00000F00) /*!< EXTI 14 configuration */
Kojto 116:c0f6e94411f5 3191 #define SYSCFG_EXTICR4_EXTI15 ((uint32_t)0x0000F000) /*!< EXTI 15 configuration */
Kojto 116:c0f6e94411f5 3192
Kojto 116:c0f6e94411f5 3193 /**
Kojto 116:c0f6e94411f5 3194 * @brief EXTI12 configuration
Kojto 116:c0f6e94411f5 3195 */
Kojto 116:c0f6e94411f5 3196 #define SYSCFG_EXTICR4_EXTI12_PA ((uint32_t)0x00000000) /*!< PA[12] pin */
Kojto 116:c0f6e94411f5 3197 #define SYSCFG_EXTICR4_EXTI12_PB ((uint32_t)0x00000001) /*!< PB[12] pin */
Kojto 116:c0f6e94411f5 3198 #define SYSCFG_EXTICR4_EXTI12_PC ((uint32_t)0x00000002) /*!< PC[12] pin */
Kojto 116:c0f6e94411f5 3199 #define SYSCFG_EXTICR4_EXTI12_PD ((uint32_t)0x00000003) /*!< PD[12] pin */
Kojto 116:c0f6e94411f5 3200 #define SYSCFG_EXTICR4_EXTI12_PE ((uint32_t)0x00000004) /*!< PE[12] pin */
Kojto 116:c0f6e94411f5 3201
Kojto 116:c0f6e94411f5 3202 /**
Kojto 116:c0f6e94411f5 3203 * @brief EXTI13 configuration
Kojto 116:c0f6e94411f5 3204 */
Kojto 116:c0f6e94411f5 3205 #define SYSCFG_EXTICR4_EXTI13_PA ((uint32_t)0x00000000) /*!< PA[13] pin */
Kojto 116:c0f6e94411f5 3206 #define SYSCFG_EXTICR4_EXTI13_PB ((uint32_t)0x00000010) /*!< PB[13] pin */
Kojto 116:c0f6e94411f5 3207 #define SYSCFG_EXTICR4_EXTI13_PC ((uint32_t)0x00000020) /*!< PC[13] pin */
Kojto 116:c0f6e94411f5 3208 #define SYSCFG_EXTICR4_EXTI13_PD ((uint32_t)0x00000030) /*!< PD[13] pin */
Kojto 116:c0f6e94411f5 3209 #define SYSCFG_EXTICR4_EXTI13_PE ((uint32_t)0x00000040) /*!< PE[13] pin */
Kojto 116:c0f6e94411f5 3210
Kojto 116:c0f6e94411f5 3211 /**
Kojto 116:c0f6e94411f5 3212 * @brief EXTI14 configuration
Kojto 116:c0f6e94411f5 3213 */
Kojto 116:c0f6e94411f5 3214 #define SYSCFG_EXTICR4_EXTI14_PA ((uint32_t)0x00000000) /*!< PA[14] pin */
Kojto 116:c0f6e94411f5 3215 #define SYSCFG_EXTICR4_EXTI14_PB ((uint32_t)0x00000100) /*!< PB[14] pin */
Kojto 116:c0f6e94411f5 3216 #define SYSCFG_EXTICR4_EXTI14_PC ((uint32_t)0x00000200) /*!< PC[14] pin */
Kojto 116:c0f6e94411f5 3217 #define SYSCFG_EXTICR4_EXTI14_PD ((uint32_t)0x00000300) /*!< PD[14] pin */
Kojto 116:c0f6e94411f5 3218 #define SYSCFG_EXTICR4_EXTI14_PE ((uint32_t)0x00000400) /*!< PE[14] pin */
Kojto 116:c0f6e94411f5 3219
Kojto 116:c0f6e94411f5 3220 /**
Kojto 116:c0f6e94411f5 3221 * @brief EXTI15 configuration
Kojto 116:c0f6e94411f5 3222 */
Kojto 116:c0f6e94411f5 3223 #define SYSCFG_EXTICR4_EXTI15_PA ((uint32_t)0x00000000) /*!< PA[15] pin */
Kojto 116:c0f6e94411f5 3224 #define SYSCFG_EXTICR4_EXTI15_PB ((uint32_t)0x00001000) /*!< PB[15] pin */
Kojto 116:c0f6e94411f5 3225 #define SYSCFG_EXTICR4_EXTI15_PC ((uint32_t)0x00002000) /*!< PC[15] pin */
Kojto 116:c0f6e94411f5 3226 #define SYSCFG_EXTICR4_EXTI15_PD ((uint32_t)0x00003000) /*!< PD[15] pin */
Kojto 116:c0f6e94411f5 3227 #define SYSCFG_EXTICR4_EXTI15_PE ((uint32_t)0x00004000) /*!< PE[15] pin */
Kojto 116:c0f6e94411f5 3228
Kojto 116:c0f6e94411f5 3229
Kojto 116:c0f6e94411f5 3230 /***************** Bit definition for SYSCFG_CFGR3 register ****************/
Kojto 116:c0f6e94411f5 3231 #define SYSCFG_CFGR3_EN_VREFINT ((uint32_t)0x00000001) /*!< Vref Enable bit*/
Kojto 116:c0f6e94411f5 3232 #define SYSCFG_CFGR3_VREF_OUT ((uint32_t)0x00000030) /*!< Verf_ADC connection bit */
Kojto 116:c0f6e94411f5 3233 #define SYSCFG_CFGR3_VREF_OUT_0 ((uint32_t)0x00000010) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 3234 #define SYSCFG_CFGR3_VREF_OUT_1 ((uint32_t)0x00000020) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 3235 #define SYSCFG_CFGR3_ENBUF_VREFINT_ADC ((uint32_t)0x00000100) /*!< VREFINT reference for ADC enable bit */
Kojto 116:c0f6e94411f5 3236 #define SYSCFG_CFGR3_ENBUF_SENSOR_ADC ((uint32_t)0x00000200) /*!< Sensor reference for ADC enable bit */
Kojto 116:c0f6e94411f5 3237 #define SYSCFG_CFGR3_ENBUFLP_VREFINT_COMP ((uint32_t)0x00001000) /*!< VREFINT reference for comparator 2 enable bit */
Kojto 116:c0f6e94411f5 3238 #define SYSCFG_CFGR3_ENREF_HSI48 ((uint32_t)0x00002000) /*!< VREFINT reference or 48 MHz RC oscillator enable bit */
Kojto 116:c0f6e94411f5 3239 #define SYSCFG_CFGR3_REF_HSI48_RDYF ((uint32_t)0x04000000) /*!< VREFINT for 48 MHz RC oscillator ready flag */
Kojto 116:c0f6e94411f5 3240 #define SYSCFG_CFGR3_SENSOR_ADC_RDYF ((uint32_t)0x08000000) /*!< Sensor for ADC ready flag */
Kojto 116:c0f6e94411f5 3241 #define SYSCFG_CFGR3_VREFINT_ADC_RDYF ((uint32_t)0x10000000) /*!< VREFINT for ADC ready flag */
Kojto 116:c0f6e94411f5 3242 #define SYSCFG_CFGR3_VREFINT_COMP_RDYF ((uint32_t)0x20000000) /*!< VREFINT for comparator ready flag */
Kojto 116:c0f6e94411f5 3243 #define SYSCFG_CFGR3_VREFINT_RDYF ((uint32_t)0x40000000) /*!< VREFINT ready flag */
Kojto 116:c0f6e94411f5 3244 #define SYSCFG_CFGR3_REF_LOCK ((uint32_t)0x80000000) /*!< CFGR3 lock bit */
Kojto 116:c0f6e94411f5 3245
Kojto 116:c0f6e94411f5 3246 /* Bit names aliases maintained for legacy */
Kojto 116:c0f6e94411f5 3247
Kojto 116:c0f6e94411f5 3248 #define SYSCFG_CFGR3_EN_BGAP SYSCFG_CFGR3_EN_VREFINT
Kojto 116:c0f6e94411f5 3249 #define SYSCFG_CFGR3_ENBUF_BGAP_ADC SYSCFG_CFGR3_ENBUF_VREFINT_ADC
Kojto 116:c0f6e94411f5 3250 #define SYSCFG_CFGR3_ENBUFLP_BGAP_COMP SYSCFG_CFGR3_ENBUFLP_VREFINT_COMP
Kojto 116:c0f6e94411f5 3251 #define SYSCFG_CFGR3_ENREF_RC48MHz SYSCFG_CFGR3_ENREF_HSI48
Kojto 116:c0f6e94411f5 3252 #define SYSCFG_CFGR3_REF_RC48MHz_RDYF SYSCFG_CFGR3_REF_HSI48_RDYF
Kojto 116:c0f6e94411f5 3253 #define SYSCFG_VREFINT_ADC_RDYF SYSCFG_CFGR3_VREFINT_ADC_RDYF
Kojto 116:c0f6e94411f5 3254
Kojto 116:c0f6e94411f5 3255 /******************************************************************************/
Kojto 116:c0f6e94411f5 3256 /* */
Kojto 116:c0f6e94411f5 3257 /* Timers (TIM) */
Kojto 116:c0f6e94411f5 3258 /* */
Kojto 116:c0f6e94411f5 3259 /******************************************************************************/
Kojto 116:c0f6e94411f5 3260 /******************* Bit definition for TIM_CR1 register ********************/
Kojto 116:c0f6e94411f5 3261 #define TIM_CR1_CEN ((uint32_t)0x00000001) /*!<Counter enable */
Kojto 116:c0f6e94411f5 3262 #define TIM_CR1_UDIS ((uint32_t)0x00000002) /*!<Update disable */
Kojto 116:c0f6e94411f5 3263 #define TIM_CR1_URS ((uint32_t)0x00000004) /*!<Update request source */
Kojto 116:c0f6e94411f5 3264 #define TIM_CR1_OPM ((uint32_t)0x00000008) /*!<One pulse mode */
Kojto 116:c0f6e94411f5 3265 #define TIM_CR1_DIR ((uint32_t)0x00000010) /*!<Direction */
Kojto 116:c0f6e94411f5 3266
Kojto 116:c0f6e94411f5 3267 #define TIM_CR1_CMS ((uint32_t)0x00000060) /*!<CMS[1:0] bits (Center-aligned mode selection) */
Kojto 116:c0f6e94411f5 3268 #define TIM_CR1_CMS_0 ((uint32_t)0x00000020) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3269 #define TIM_CR1_CMS_1 ((uint32_t)0x00000040) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3270
Kojto 116:c0f6e94411f5 3271 #define TIM_CR1_ARPE ((uint32_t)0x00000080) /*!<Auto-reload preload enable */
Kojto 116:c0f6e94411f5 3272
Kojto 116:c0f6e94411f5 3273 #define TIM_CR1_CKD ((uint32_t)0x00000300) /*!<CKD[1:0] bits (clock division) */
Kojto 116:c0f6e94411f5 3274 #define TIM_CR1_CKD_0 ((uint32_t)0x00000100) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3275 #define TIM_CR1_CKD_1 ((uint32_t)0x00000200) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3276
Kojto 116:c0f6e94411f5 3277 /******************* Bit definition for TIM_CR2 register ********************/
Kojto 116:c0f6e94411f5 3278 #define TIM_CR2_CCPC ((uint32_t)0x00000001) /*!<Capture/Compare Preloaded Control */
Kojto 116:c0f6e94411f5 3279 #define TIM_CR2_CCUS ((uint32_t)0x00000004) /*!<Capture/Compare Control Update Selection */
Kojto 116:c0f6e94411f5 3280 #define TIM_CR2_CCDS ((uint32_t)0x00000008) /*!<Capture/Compare DMA Selection */
Kojto 116:c0f6e94411f5 3281
Kojto 116:c0f6e94411f5 3282 #define TIM_CR2_MMS ((uint32_t)0x00000070) /*!<MMS[2:0] bits (Master Mode Selection) */
Kojto 116:c0f6e94411f5 3283 #define TIM_CR2_MMS_0 ((uint32_t)0x00000010) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3284 #define TIM_CR2_MMS_1 ((uint32_t)0x00000020) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3285 #define TIM_CR2_MMS_2 ((uint32_t)0x00000040) /*!<Bit 2 */
Kojto 116:c0f6e94411f5 3286
Kojto 116:c0f6e94411f5 3287 #define TIM_CR2_TI1S ((uint32_t)0x00000080) /*!<TI1 Selection */
Kojto 116:c0f6e94411f5 3288 #define TIM_CR2_OIS1 ((uint32_t)0x00000100) /*!<Output Idle state 1 (OC1 output) */
Kojto 116:c0f6e94411f5 3289 #define TIM_CR2_OIS1N ((uint32_t)0x00000200) /*!<Output Idle state 1 (OC1N output) */
Kojto 116:c0f6e94411f5 3290 #define TIM_CR2_OIS2 ((uint32_t)0x00000400) /*!<Output Idle state 2 (OC2 output) */
Kojto 116:c0f6e94411f5 3291 #define TIM_CR2_OIS2N ((uint32_t)0x00000800) /*!<Output Idle state 2 (OC2N output) */
Kojto 116:c0f6e94411f5 3292 #define TIM_CR2_OIS3 ((uint32_t)0x00001000) /*!<Output Idle state 3 (OC3 output) */
Kojto 116:c0f6e94411f5 3293 #define TIM_CR2_OIS3N ((uint32_t)0x00002000) /*!<Output Idle state 3 (OC3N output) */
Kojto 116:c0f6e94411f5 3294 #define TIM_CR2_OIS4 ((uint32_t)0x00004000) /*!<Output Idle state 4 (OC4 output) */
Kojto 116:c0f6e94411f5 3295
Kojto 116:c0f6e94411f5 3296 /******************* Bit definition for TIM_SMCR register *******************/
Kojto 116:c0f6e94411f5 3297 #define TIM_SMCR_SMS ((uint32_t)0x00000007) /*!<SMS[2:0] bits (Slave mode selection) */
Kojto 116:c0f6e94411f5 3298 #define TIM_SMCR_SMS_0 ((uint32_t)0x00000001) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3299 #define TIM_SMCR_SMS_1 ((uint32_t)0x00000002) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3300 #define TIM_SMCR_SMS_2 ((uint32_t)0x00000004) /*!<Bit 2 */
Kojto 116:c0f6e94411f5 3301
Kojto 116:c0f6e94411f5 3302 #define TIM_SMCR_OCCS ((uint32_t)0x00000008) /*!< OCREF clear selection */
Kojto 116:c0f6e94411f5 3303
Kojto 116:c0f6e94411f5 3304 #define TIM_SMCR_TS ((uint32_t)0x00000070) /*!<TS[2:0] bits (Trigger selection) */
Kojto 116:c0f6e94411f5 3305 #define TIM_SMCR_TS_0 ((uint32_t)0x00000010) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3306 #define TIM_SMCR_TS_1 ((uint32_t)0x00000020) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3307 #define TIM_SMCR_TS_2 ((uint32_t)0x00000040) /*!<Bit 2 */
Kojto 116:c0f6e94411f5 3308
Kojto 116:c0f6e94411f5 3309 #define TIM_SMCR_MSM ((uint32_t)0x00000080) /*!<Master/slave mode */
Kojto 116:c0f6e94411f5 3310
Kojto 116:c0f6e94411f5 3311 #define TIM_SMCR_ETF ((uint32_t)0x00000F00) /*!<ETF[3:0] bits (External trigger filter) */
Kojto 116:c0f6e94411f5 3312 #define TIM_SMCR_ETF_0 ((uint32_t)0x00000100) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3313 #define TIM_SMCR_ETF_1 ((uint32_t)0x00000200) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3314 #define TIM_SMCR_ETF_2 ((uint32_t)0x00000400) /*!<Bit 2 */
Kojto 116:c0f6e94411f5 3315 #define TIM_SMCR_ETF_3 ((uint32_t)0x00000800) /*!<Bit 3 */
Kojto 116:c0f6e94411f5 3316
Kojto 116:c0f6e94411f5 3317 #define TIM_SMCR_ETPS ((uint32_t)0x00003000) /*!<ETPS[1:0] bits (External trigger prescaler) */
Kojto 116:c0f6e94411f5 3318 #define TIM_SMCR_ETPS_0 ((uint32_t)0x00001000) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3319 #define TIM_SMCR_ETPS_1 ((uint32_t)0x00002000) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3320
Kojto 116:c0f6e94411f5 3321 #define TIM_SMCR_ECE ((uint32_t)0x00004000) /*!<External clock enable */
Kojto 116:c0f6e94411f5 3322 #define TIM_SMCR_ETP ((uint32_t)0x00008000) /*!<External trigger polarity */
Kojto 116:c0f6e94411f5 3323
Kojto 116:c0f6e94411f5 3324 /******************* Bit definition for TIM_DIER register *******************/
Kojto 116:c0f6e94411f5 3325 #define TIM_DIER_UIE ((uint32_t)0x00000001) /*!<Update interrupt enable */
Kojto 116:c0f6e94411f5 3326 #define TIM_DIER_CC1IE ((uint32_t)0x00000002) /*!<Capture/Compare 1 interrupt enable */
Kojto 116:c0f6e94411f5 3327 #define TIM_DIER_CC2IE ((uint32_t)0x00000004) /*!<Capture/Compare 2 interrupt enable */
Kojto 116:c0f6e94411f5 3328 #define TIM_DIER_CC3IE ((uint32_t)0x00000008) /*!<Capture/Compare 3 interrupt enable */
Kojto 116:c0f6e94411f5 3329 #define TIM_DIER_CC4IE ((uint32_t)0x00000010) /*!<Capture/Compare 4 interrupt enable */
Kojto 116:c0f6e94411f5 3330 #define TIM_DIER_TIE ((uint32_t)0x00000040) /*!<Trigger interrupt enable */
Kojto 116:c0f6e94411f5 3331 #define TIM_DIER_UDE ((uint32_t)0x00000100) /*!<Update DMA request enable */
Kojto 116:c0f6e94411f5 3332 #define TIM_DIER_CC1DE ((uint32_t)0x00000200) /*!<Capture/Compare 1 DMA request enable */
Kojto 116:c0f6e94411f5 3333 #define TIM_DIER_CC2DE ((uint32_t)0x00000400) /*!<Capture/Compare 2 DMA request enable */
Kojto 116:c0f6e94411f5 3334 #define TIM_DIER_CC3DE ((uint32_t)0x00000800) /*!<Capture/Compare 3 DMA request enable */
Kojto 116:c0f6e94411f5 3335 #define TIM_DIER_CC4DE ((uint32_t)0x00001000) /*!<Capture/Compare 4 DMA request enable */
Kojto 116:c0f6e94411f5 3336 #define TIM_DIER_TDE ((uint32_t)0x00004000) /*!<Trigger DMA request enable */
Kojto 116:c0f6e94411f5 3337
Kojto 116:c0f6e94411f5 3338 /******************** Bit definition for TIM_SR register ********************/
Kojto 116:c0f6e94411f5 3339 #define TIM_SR_UIF ((uint32_t)0x00000001) /*!<Update interrupt Flag */
Kojto 116:c0f6e94411f5 3340 #define TIM_SR_CC1IF ((uint32_t)0x00000002) /*!<Capture/Compare 1 interrupt Flag */
Kojto 116:c0f6e94411f5 3341 #define TIM_SR_CC2IF ((uint32_t)0x00000004) /*!<Capture/Compare 2 interrupt Flag */
Kojto 116:c0f6e94411f5 3342 #define TIM_SR_CC3IF ((uint32_t)0x00000008) /*!<Capture/Compare 3 interrupt Flag */
Kojto 116:c0f6e94411f5 3343 #define TIM_SR_CC4IF ((uint32_t)0x00000010) /*!<Capture/Compare 4 interrupt Flag */
Kojto 116:c0f6e94411f5 3344 #define TIM_SR_COMIF ((uint32_t)0x00000020) /*!<COM interrupt Flag */
Kojto 116:c0f6e94411f5 3345 #define TIM_SR_TIF ((uint32_t)0x00000040) /*!<Trigger interrupt Flag */
Kojto 116:c0f6e94411f5 3346 #define TIM_SR_BIF ((uint32_t)0x00000080) /*!<Break interrupt Flag */
Kojto 116:c0f6e94411f5 3347 #define TIM_SR_CC1OF ((uint32_t)0x00000200) /*!<Capture/Compare 1 Overcapture Flag */
Kojto 116:c0f6e94411f5 3348 #define TIM_SR_CC2OF ((uint32_t)0x00000400) /*!<Capture/Compare 2 Overcapture Flag */
Kojto 116:c0f6e94411f5 3349 #define TIM_SR_CC3OF ((uint32_t)0x00000800) /*!<Capture/Compare 3 Overcapture Flag */
Kojto 116:c0f6e94411f5 3350 #define TIM_SR_CC4OF ((uint32_t)0x00001000) /*!<Capture/Compare 4 Overcapture Flag */
Kojto 116:c0f6e94411f5 3351
Kojto 116:c0f6e94411f5 3352 /******************* Bit definition for TIM_EGR register ********************/
Kojto 116:c0f6e94411f5 3353 #define TIM_EGR_UG ((uint32_t)0x00000001) /*!<Update Generation */
Kojto 116:c0f6e94411f5 3354 #define TIM_EGR_CC1G ((uint32_t)0x00000002) /*!<Capture/Compare 1 Generation */
Kojto 116:c0f6e94411f5 3355 #define TIM_EGR_CC2G ((uint32_t)0x00000004) /*!<Capture/Compare 2 Generation */
Kojto 116:c0f6e94411f5 3356 #define TIM_EGR_CC3G ((uint32_t)0x00000008) /*!<Capture/Compare 3 Generation */
Kojto 116:c0f6e94411f5 3357 #define TIM_EGR_CC4G ((uint32_t)0x00000010) /*!<Capture/Compare 4 Generation */
Kojto 116:c0f6e94411f5 3358 #define TIM_EGR_COMG ((uint32_t)0x00000020) /*!<Capture/Compare Control Update Generation */
Kojto 116:c0f6e94411f5 3359 #define TIM_EGR_TG ((uint32_t)0x00000040) /*!<Trigger Generation */
Kojto 116:c0f6e94411f5 3360 #define TIM_EGR_BG ((uint32_t)0x00000080) /*!<Break Generation */
Kojto 116:c0f6e94411f5 3361
Kojto 116:c0f6e94411f5 3362 /****************** Bit definition for TIM_CCMR1 register *******************/
Kojto 116:c0f6e94411f5 3363 #define TIM_CCMR1_CC1S ((uint32_t)0x00000003) /*!<CC1S[1:0] bits (Capture/Compare 1 Selection) */
Kojto 116:c0f6e94411f5 3364 #define TIM_CCMR1_CC1S_0 ((uint32_t)0x00000001) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3365 #define TIM_CCMR1_CC1S_1 ((uint32_t)0x00000002) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3366
Kojto 116:c0f6e94411f5 3367 #define TIM_CCMR1_OC1FE ((uint32_t)0x00000004) /*!<Output Compare 1 Fast enable */
Kojto 116:c0f6e94411f5 3368 #define TIM_CCMR1_OC1PE ((uint32_t)0x00000008) /*!<Output Compare 1 Preload enable */
Kojto 116:c0f6e94411f5 3369
Kojto 116:c0f6e94411f5 3370 #define TIM_CCMR1_OC1M ((uint32_t)0x00000070) /*!<OC1M[2:0] bits (Output Compare 1 Mode) */
Kojto 116:c0f6e94411f5 3371 #define TIM_CCMR1_OC1M_0 ((uint32_t)0x00000010) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3372 #define TIM_CCMR1_OC1M_1 ((uint32_t)0x00000020) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3373 #define TIM_CCMR1_OC1M_2 ((uint32_t)0x00000040) /*!<Bit 2 */
Kojto 116:c0f6e94411f5 3374
Kojto 116:c0f6e94411f5 3375 #define TIM_CCMR1_OC1CE ((uint32_t)0x00000080) /*!<Output Compare 1Clear Enable */
Kojto 116:c0f6e94411f5 3376
Kojto 116:c0f6e94411f5 3377 #define TIM_CCMR1_CC2S ((uint32_t)0x00000300) /*!<CC2S[1:0] bits (Capture/Compare 2 Selection) */
Kojto 116:c0f6e94411f5 3378 #define TIM_CCMR1_CC2S_0 ((uint32_t)0x00000100) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3379 #define TIM_CCMR1_CC2S_1 ((uint32_t)0x00000200) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3380
Kojto 116:c0f6e94411f5 3381 #define TIM_CCMR1_OC2FE ((uint32_t)0x00000400) /*!<Output Compare 2 Fast enable */
Kojto 116:c0f6e94411f5 3382 #define TIM_CCMR1_OC2PE ((uint32_t)0x00000800) /*!<Output Compare 2 Preload enable */
Kojto 116:c0f6e94411f5 3383
Kojto 116:c0f6e94411f5 3384 #define TIM_CCMR1_OC2M ((uint32_t)0x00007000) /*!<OC2M[2:0] bits (Output Compare 2 Mode) */
Kojto 116:c0f6e94411f5 3385 #define TIM_CCMR1_OC2M_0 ((uint32_t)0x00001000) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3386 #define TIM_CCMR1_OC2M_1 ((uint32_t)0x00002000) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3387 #define TIM_CCMR1_OC2M_2 ((uint32_t)0x00004000) /*!<Bit 2 */
Kojto 116:c0f6e94411f5 3388
Kojto 116:c0f6e94411f5 3389 #define TIM_CCMR1_OC2CE ((uint32_t)0x00008000) /*!<Output Compare 2 Clear Enable */
Kojto 116:c0f6e94411f5 3390
Kojto 116:c0f6e94411f5 3391 /*----------------------------------------------------------------------------*/
Kojto 116:c0f6e94411f5 3392
Kojto 116:c0f6e94411f5 3393 #define TIM_CCMR1_IC1PSC ((uint32_t)0x0000000C) /*!<IC1PSC[1:0] bits (Input Capture 1 Prescaler) */
Kojto 116:c0f6e94411f5 3394 #define TIM_CCMR1_IC1PSC_0 ((uint32_t)0x00000004) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3395 #define TIM_CCMR1_IC1PSC_1 ((uint32_t)0x00000008) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3396
Kojto 116:c0f6e94411f5 3397 #define TIM_CCMR1_IC1F ((uint32_t)0x000000F0) /*!<IC1F[3:0] bits (Input Capture 1 Filter) */
Kojto 116:c0f6e94411f5 3398 #define TIM_CCMR1_IC1F_0 ((uint32_t)0x00000010) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3399 #define TIM_CCMR1_IC1F_1 ((uint32_t)0x00000020) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3400 #define TIM_CCMR1_IC1F_2 ((uint32_t)0x00000040) /*!<Bit 2 */
Kojto 116:c0f6e94411f5 3401 #define TIM_CCMR1_IC1F_3 ((uint32_t)0x00000080) /*!<Bit 3 */
Kojto 116:c0f6e94411f5 3402
Kojto 116:c0f6e94411f5 3403 #define TIM_CCMR1_IC2PSC ((uint32_t)0x00000C00) /*!<IC2PSC[1:0] bits (Input Capture 2 Prescaler) */
Kojto 116:c0f6e94411f5 3404 #define TIM_CCMR1_IC2PSC_0 ((uint32_t)0x00000400) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3405 #define TIM_CCMR1_IC2PSC_1 ((uint32_t)0x00000800) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3406
Kojto 116:c0f6e94411f5 3407 #define TIM_CCMR1_IC2F ((uint32_t)0x0000F000) /*!<IC2F[3:0] bits (Input Capture 2 Filter) */
Kojto 116:c0f6e94411f5 3408 #define TIM_CCMR1_IC2F_0 ((uint32_t)0x00001000) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3409 #define TIM_CCMR1_IC2F_1 ((uint32_t)0x00002000) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3410 #define TIM_CCMR1_IC2F_2 ((uint32_t)0x00004000) /*!<Bit 2 */
Kojto 116:c0f6e94411f5 3411 #define TIM_CCMR1_IC2F_3 ((uint32_t)0x00008000) /*!<Bit 3 */
Kojto 116:c0f6e94411f5 3412
Kojto 116:c0f6e94411f5 3413 /****************** Bit definition for TIM_CCMR2 register *******************/
Kojto 116:c0f6e94411f5 3414 #define TIM_CCMR2_CC3S ((uint32_t)0x00000003) /*!<CC3S[1:0] bits (Capture/Compare 3 Selection) */
Kojto 116:c0f6e94411f5 3415 #define TIM_CCMR2_CC3S_0 ((uint32_t)0x00000001) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3416 #define TIM_CCMR2_CC3S_1 ((uint32_t)0x00000002) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3417
Kojto 116:c0f6e94411f5 3418 #define TIM_CCMR2_OC3FE ((uint32_t)0x00000004) /*!<Output Compare 3 Fast enable */
Kojto 116:c0f6e94411f5 3419 #define TIM_CCMR2_OC3PE ((uint32_t)0x00000008) /*!<Output Compare 3 Preload enable */
Kojto 116:c0f6e94411f5 3420
Kojto 116:c0f6e94411f5 3421 #define TIM_CCMR2_OC3M ((uint32_t)0x00000070) /*!<OC3M[2:0] bits (Output Compare 3 Mode) */
Kojto 116:c0f6e94411f5 3422 #define TIM_CCMR2_OC3M_0 ((uint32_t)0x00000010) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3423 #define TIM_CCMR2_OC3M_1 ((uint32_t)0x00000020) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3424 #define TIM_CCMR2_OC3M_2 ((uint32_t)0x00000040) /*!<Bit 2 */
Kojto 116:c0f6e94411f5 3425
Kojto 116:c0f6e94411f5 3426 #define TIM_CCMR2_OC3CE ((uint32_t)0x00000080) /*!<Output Compare 3 Clear Enable */
Kojto 116:c0f6e94411f5 3427
Kojto 116:c0f6e94411f5 3428 #define TIM_CCMR2_CC4S ((uint32_t)0x00000300) /*!<CC4S[1:0] bits (Capture/Compare 4 Selection) */
Kojto 116:c0f6e94411f5 3429 #define TIM_CCMR2_CC4S_0 ((uint32_t)0x00000100) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3430 #define TIM_CCMR2_CC4S_1 ((uint32_t)0x00000200) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3431
Kojto 116:c0f6e94411f5 3432 #define TIM_CCMR2_OC4FE ((uint32_t)0x00000400) /*!<Output Compare 4 Fast enable */
Kojto 116:c0f6e94411f5 3433 #define TIM_CCMR2_OC4PE ((uint32_t)0x00000800) /*!<Output Compare 4 Preload enable */
Kojto 116:c0f6e94411f5 3434
Kojto 116:c0f6e94411f5 3435 #define TIM_CCMR2_OC4M ((uint32_t)0x00007000) /*!<OC4M[2:0] bits (Output Compare 4 Mode) */
Kojto 116:c0f6e94411f5 3436 #define TIM_CCMR2_OC4M_0 ((uint32_t)0x00001000) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3437 #define TIM_CCMR2_OC4M_1 ((uint32_t)0x00002000) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3438 #define TIM_CCMR2_OC4M_2 ((uint32_t)0x00004000) /*!<Bit 2 */
Kojto 116:c0f6e94411f5 3439
Kojto 116:c0f6e94411f5 3440 #define TIM_CCMR2_OC4CE ((uint32_t)0x00008000) /*!<Output Compare 4 Clear Enable */
Kojto 116:c0f6e94411f5 3441
Kojto 116:c0f6e94411f5 3442 /*----------------------------------------------------------------------------*/
Kojto 116:c0f6e94411f5 3443
Kojto 116:c0f6e94411f5 3444 #define TIM_CCMR2_IC3PSC ((uint32_t)0x0000000C) /*!<IC3PSC[1:0] bits (Input Capture 3 Prescaler) */
Kojto 116:c0f6e94411f5 3445 #define TIM_CCMR2_IC3PSC_0 ((uint32_t)0x00000004) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3446 #define TIM_CCMR2_IC3PSC_1 ((uint32_t)0x00000008) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3447
Kojto 116:c0f6e94411f5 3448 #define TIM_CCMR2_IC3F ((uint32_t)0x000000F0) /*!<IC3F[3:0] bits (Input Capture 3 Filter) */
Kojto 116:c0f6e94411f5 3449 #define TIM_CCMR2_IC3F_0 ((uint32_t)0x00000010) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3450 #define TIM_CCMR2_IC3F_1 ((uint32_t)0x00000020) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3451 #define TIM_CCMR2_IC3F_2 ((uint32_t)0x00000040) /*!<Bit 2 */
Kojto 116:c0f6e94411f5 3452 #define TIM_CCMR2_IC3F_3 ((uint32_t)0x00000080) /*!<Bit 3 */
Kojto 116:c0f6e94411f5 3453
Kojto 116:c0f6e94411f5 3454 #define TIM_CCMR2_IC4PSC ((uint32_t)0x00000C00) /*!<IC4PSC[1:0] bits (Input Capture 4 Prescaler) */
Kojto 116:c0f6e94411f5 3455 #define TIM_CCMR2_IC4PSC_0 ((uint32_t)0x00000400) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3456 #define TIM_CCMR2_IC4PSC_1 ((uint32_t)0x00000800) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3457
Kojto 116:c0f6e94411f5 3458 #define TIM_CCMR2_IC4F ((uint32_t)0x0000F000) /*!<IC4F[3:0] bits (Input Capture 4 Filter) */
Kojto 116:c0f6e94411f5 3459 #define TIM_CCMR2_IC4F_0 ((uint32_t)0x00001000) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3460 #define TIM_CCMR2_IC4F_1 ((uint32_t)0x00002000) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3461 #define TIM_CCMR2_IC4F_2 ((uint32_t)0x00004000) /*!<Bit 2 */
Kojto 116:c0f6e94411f5 3462 #define TIM_CCMR2_IC4F_3 ((uint32_t)0x00008000) /*!<Bit 3 */
Kojto 116:c0f6e94411f5 3463
Kojto 116:c0f6e94411f5 3464 /******************* Bit definition for TIM_CCER register *******************/
Kojto 116:c0f6e94411f5 3465 #define TIM_CCER_CC1E ((uint32_t)0x00000001) /*!<Capture/Compare 1 output enable */
Kojto 116:c0f6e94411f5 3466 #define TIM_CCER_CC1P ((uint32_t)0x00000002) /*!<Capture/Compare 1 output Polarity */
Kojto 116:c0f6e94411f5 3467 #define TIM_CCER_CC1NE ((uint32_t)0x00000004) /*!<Capture/Compare 1 Complementary output enable */
Kojto 116:c0f6e94411f5 3468 #define TIM_CCER_CC1NP ((uint32_t)0x00000008) /*!<Capture/Compare 1 Complementary output Polarity */
Kojto 116:c0f6e94411f5 3469 #define TIM_CCER_CC2E ((uint32_t)0x00000010) /*!<Capture/Compare 2 output enable */
Kojto 116:c0f6e94411f5 3470 #define TIM_CCER_CC2P ((uint32_t)0x00000020) /*!<Capture/Compare 2 output Polarity */
Kojto 116:c0f6e94411f5 3471 #define TIM_CCER_CC2NE ((uint32_t)0x00000040) /*!<Capture/Compare 2 Complementary output enable */
Kojto 116:c0f6e94411f5 3472 #define TIM_CCER_CC2NP ((uint32_t)0x00000080) /*!<Capture/Compare 2 Complementary output Polarity */
Kojto 116:c0f6e94411f5 3473 #define TIM_CCER_CC3E ((uint32_t)0x00000100) /*!<Capture/Compare 3 output enable */
Kojto 116:c0f6e94411f5 3474 #define TIM_CCER_CC3P ((uint32_t)0x00000200) /*!<Capture/Compare 3 output Polarity */
Kojto 116:c0f6e94411f5 3475 #define TIM_CCER_CC3NE ((uint32_t)0x00000400) /*!<Capture/Compare 3 Complementary output enable */
Kojto 116:c0f6e94411f5 3476 #define TIM_CCER_CC3NP ((uint32_t)0x00000800) /*!<Capture/Compare 3 Complementary output Polarity */
Kojto 116:c0f6e94411f5 3477 #define TIM_CCER_CC4E ((uint32_t)0x00001000) /*!<Capture/Compare 4 output enable */
Kojto 116:c0f6e94411f5 3478 #define TIM_CCER_CC4P ((uint32_t)0x00002000) /*!<Capture/Compare 4 output Polarity */
Kojto 116:c0f6e94411f5 3479 #define TIM_CCER_CC4NP ((uint32_t)0x00008000) /*!<Capture/Compare 4 Complementary output Polarity */
Kojto 116:c0f6e94411f5 3480
Kojto 116:c0f6e94411f5 3481 /******************* Bit definition for TIM_CNT register ********************/
Kojto 116:c0f6e94411f5 3482 #define TIM_CNT_CNT ((uint32_t)0x0000FFFF) /*!<Counter Value */
Kojto 116:c0f6e94411f5 3483
Kojto 116:c0f6e94411f5 3484 /******************* Bit definition for TIM_PSC register ********************/
Kojto 116:c0f6e94411f5 3485 #define TIM_PSC_PSC ((uint32_t)0x0000FFFF) /*!<Prescaler Value */
Kojto 116:c0f6e94411f5 3486
Kojto 116:c0f6e94411f5 3487 /******************* Bit definition for TIM_ARR register ********************/
Kojto 116:c0f6e94411f5 3488 #define TIM_ARR_ARR ((uint32_t)0x0000FFFF) /*!<actual auto-reload Value */
Kojto 116:c0f6e94411f5 3489
Kojto 116:c0f6e94411f5 3490 /******************* Bit definition for TIM_RCR register ********************/
Kojto 116:c0f6e94411f5 3491 #define TIM_RCR_REP ((uint32_t)0x000000FF) /*!<Repetition Counter Value */
Kojto 116:c0f6e94411f5 3492
Kojto 116:c0f6e94411f5 3493 /******************* Bit definition for TIM_CCR1 register *******************/
Kojto 116:c0f6e94411f5 3494 #define TIM_CCR1_CCR1 ((uint32_t)0x0000FFFF) /*!<Capture/Compare 1 Value */
Kojto 116:c0f6e94411f5 3495
Kojto 116:c0f6e94411f5 3496 /******************* Bit definition for TIM_CCR2 register *******************/
Kojto 116:c0f6e94411f5 3497 #define TIM_CCR2_CCR2 ((uint32_t)0x0000FFFF) /*!<Capture/Compare 2 Value */
Kojto 116:c0f6e94411f5 3498
Kojto 116:c0f6e94411f5 3499 /******************* Bit definition for TIM_CCR3 register *******************/
Kojto 116:c0f6e94411f5 3500 #define TIM_CCR3_CCR3 ((uint32_t)0x0000FFFF) /*!<Capture/Compare 3 Value */
Kojto 116:c0f6e94411f5 3501
Kojto 116:c0f6e94411f5 3502 /******************* Bit definition for TIM_CCR4 register *******************/
Kojto 116:c0f6e94411f5 3503 #define TIM_CCR4_CCR4 ((uint32_t)0x0000FFFF) /*!<Capture/Compare 4 Value */
Kojto 116:c0f6e94411f5 3504
Kojto 116:c0f6e94411f5 3505 /******************* Bit definition for TIM_BDTR register *******************/
Kojto 116:c0f6e94411f5 3506 #define TIM_BDTR_DTG ((uint32_t)0x000000FF) /*!<DTG[0:7] bits (Dead-Time Generator set-up) */
Kojto 116:c0f6e94411f5 3507 #define TIM_BDTR_DTG_0 ((uint32_t)0x00000001) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3508 #define TIM_BDTR_DTG_1 ((uint32_t)0x00000002) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3509 #define TIM_BDTR_DTG_2 ((uint32_t)0x00000004) /*!<Bit 2 */
Kojto 116:c0f6e94411f5 3510 #define TIM_BDTR_DTG_3 ((uint32_t)0x00000008) /*!<Bit 3 */
Kojto 116:c0f6e94411f5 3511 #define TIM_BDTR_DTG_4 ((uint32_t)0x00000010) /*!<Bit 4 */
Kojto 116:c0f6e94411f5 3512 #define TIM_BDTR_DTG_5 ((uint32_t)0x00000020) /*!<Bit 5 */
Kojto 116:c0f6e94411f5 3513 #define TIM_BDTR_DTG_6 ((uint32_t)0x00000040) /*!<Bit 6 */
Kojto 116:c0f6e94411f5 3514 #define TIM_BDTR_DTG_7 ((uint32_t)0x00000080) /*!<Bit 7 */
Kojto 116:c0f6e94411f5 3515
Kojto 116:c0f6e94411f5 3516 #define TIM_BDTR_LOCK ((uint32_t)0x00000300) /*!<LOCK[1:0] bits (Lock Configuration) */
Kojto 116:c0f6e94411f5 3517 #define TIM_BDTR_LOCK_0 ((uint32_t)0x00000100) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3518 #define TIM_BDTR_LOCK_1 ((uint32_t)0x00000200) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3519
Kojto 116:c0f6e94411f5 3520 #define TIM_BDTR_OSSI ((uint32_t)0x00000400) /*!<Off-State Selection for Idle mode */
Kojto 116:c0f6e94411f5 3521 #define TIM_BDTR_OSSR ((uint32_t)0x00000800) /*!<Off-State Selection for Run mode */
Kojto 116:c0f6e94411f5 3522 #define TIM_BDTR_BKE ((uint32_t)0x00001000) /*!<Break enable */
Kojto 116:c0f6e94411f5 3523 #define TIM_BDTR_BKP ((uint32_t)0x00002000) /*!<Break Polarity */
Kojto 116:c0f6e94411f5 3524 #define TIM_BDTR_AOE ((uint32_t)0x00004000) /*!<Automatic Output enable */
Kojto 116:c0f6e94411f5 3525 #define TIM_BDTR_MOE ((uint32_t)0x00008000) /*!<Main Output enable */
Kojto 116:c0f6e94411f5 3526
Kojto 116:c0f6e94411f5 3527 /******************* Bit definition for TIM_DCR register ********************/
Kojto 116:c0f6e94411f5 3528 #define TIM_DCR_DBA ((uint32_t)0x0000001F) /*!<DBA[4:0] bits (DMA Base Address) */
Kojto 116:c0f6e94411f5 3529 #define TIM_DCR_DBA_0 ((uint32_t)0x00000001) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3530 #define TIM_DCR_DBA_1 ((uint32_t)0x00000002) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3531 #define TIM_DCR_DBA_2 ((uint32_t)0x00000004) /*!<Bit 2 */
Kojto 116:c0f6e94411f5 3532 #define TIM_DCR_DBA_3 ((uint32_t)0x00000008) /*!<Bit 3 */
Kojto 116:c0f6e94411f5 3533 #define TIM_DCR_DBA_4 ((uint32_t)0x00000010) /*!<Bit 4 */
Kojto 116:c0f6e94411f5 3534
Kojto 116:c0f6e94411f5 3535 #define TIM_DCR_DBL ((uint32_t)0x00001F00) /*!<DBL[4:0] bits (DMA Burst Length) */
Kojto 116:c0f6e94411f5 3536 #define TIM_DCR_DBL_0 ((uint32_t)0x00000100) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3537 #define TIM_DCR_DBL_1 ((uint32_t)0x00000200) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3538 #define TIM_DCR_DBL_2 ((uint32_t)0x00000400) /*!<Bit 2 */
Kojto 116:c0f6e94411f5 3539 #define TIM_DCR_DBL_3 ((uint32_t)0x00000800) /*!<Bit 3 */
Kojto 116:c0f6e94411f5 3540 #define TIM_DCR_DBL_4 ((uint32_t)0x00001000) /*!<Bit 4 */
Kojto 116:c0f6e94411f5 3541
Kojto 116:c0f6e94411f5 3542 /******************* Bit definition for TIM_DMAR register *******************/
Kojto 116:c0f6e94411f5 3543 #define TIM_DMAR_DMAB ((uint32_t)0x0000FFFF) /*!<DMA register for burst accesses */
Kojto 116:c0f6e94411f5 3544
Kojto 116:c0f6e94411f5 3545 /******************* Bit definition for TIM_OR register *********************/
Kojto 116:c0f6e94411f5 3546 #define TIM2_OR_ETR_RMP ((uint32_t)0x00000007) /*!<ETR_RMP[1:0] bits (TIM2 ETR remap) */
Kojto 116:c0f6e94411f5 3547 #define TIM2_OR_ETR_RMP_0 ((uint32_t)0x00000001) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3548 #define TIM2_OR_ETR_RMP_1 ((uint32_t)0x00000002) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3549 #define TIM2_OR_ETR_RMP_2 ((uint32_t)0x00000004) /*!<Bit 2 */
Kojto 116:c0f6e94411f5 3550 #define TIM2_OR_TI4_RMP ((uint32_t)0x0000018) /*!<TI4_RMP[1:0] bits (TIM2 Input 4 remap) */
Kojto 116:c0f6e94411f5 3551 #define TIM2_OR_TI4_RMP_0 ((uint32_t)0x00000008) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3552 #define TIM2_OR_TI4_RMP_1 ((uint32_t)0x00000010) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3553
Kojto 116:c0f6e94411f5 3554 #define TIM21_OR_ETR_RMP ((uint32_t)0x00000003) /*!<ETR_RMP[1:0] bits (TIM21 ETR remap) */
Kojto 116:c0f6e94411f5 3555 #define TIM21_OR_ETR_RMP_0 ((uint32_t)0x00000001) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3556 #define TIM21_OR_ETR_RMP_1 ((uint32_t)0x00000002) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3557 #define TIM21_OR_TI1_RMP ((uint32_t)0x0000001C) /*!<TI1_RMP[2:0] bits (TIM21 Input 1 remap) */
Kojto 116:c0f6e94411f5 3558 #define TIM21_OR_TI1_RMP_0 ((uint32_t)0x00000004) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3559 #define TIM21_OR_TI1_RMP_1 ((uint32_t)0x00000008) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3560 #define TIM21_OR_TI1_RMP_2 ((uint32_t)0x00000010) /*!<Bit 2 */
Kojto 116:c0f6e94411f5 3561 #define TIM21_OR_TI2_RMP ((uint32_t)0x00000020) /*!<TI2_RMP bit (TIM21 Input 2 remap) */
Kojto 116:c0f6e94411f5 3562
Kojto 116:c0f6e94411f5 3563 #define TIM22_OR_ETR_RMP ((uint32_t)0x00000003) /*!<ETR_RMP[1:0] bits (TIM22 ETR remap) */
Kojto 116:c0f6e94411f5 3564 #define TIM22_OR_ETR_RMP_0 ((uint32_t)0x00000001) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3565 #define TIM22_OR_ETR_RMP_1 ((uint32_t)0x00000002) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3566 #define TIM22_OR_TI1_RMP ((uint32_t)0x0000000C) /*!<TI1_RMP[2:0] bits (TIM22 Input 1 remap) */
Kojto 116:c0f6e94411f5 3567 #define TIM22_OR_TI1_RMP_0 ((uint32_t)0x00000004) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3568 #define TIM22_OR_TI1_RMP_1 ((uint32_t)0x00000008) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3569
Kojto 116:c0f6e94411f5 3570 #define TIM3_OR_ETR_RMP ((uint32_t)0x00000003) /*!<ETR_RMP[1:0] bits (TIM3 ETR remap) */
Kojto 116:c0f6e94411f5 3571 #define TIM3_OR_ETR_RMP_0 ((uint32_t)0x00000001) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3572 #define TIM3_OR_ETR_RMP_1 ((uint32_t)0x00000002) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3573 #define TIM3_OR_TI1_RMP ((uint32_t)0x00000004) /*!<TI1_RMP[2] bit */
Kojto 116:c0f6e94411f5 3574 #define TIM3_OR_TI2_RMP ((uint32_t)0x00000008) /*!<TI2_RMP[3] bit */
Kojto 116:c0f6e94411f5 3575 #define TIM3_OR_TI4_RMP ((uint32_t)0x00000010) /*!<TI4_RMP[4] bit */
Kojto 116:c0f6e94411f5 3576
Kojto 116:c0f6e94411f5 3577
Kojto 116:c0f6e94411f5 3578 /******************************************************************************/
Kojto 116:c0f6e94411f5 3579 /* */
Kojto 116:c0f6e94411f5 3580 /* Touch Sensing Controller (TSC) */
Kojto 116:c0f6e94411f5 3581 /* */
Kojto 116:c0f6e94411f5 3582 /******************************************************************************/
Kojto 116:c0f6e94411f5 3583 /******************* Bit definition for TSC_CR register *********************/
Kojto 116:c0f6e94411f5 3584 #define TSC_CR_TSCE ((uint32_t)0x00000001) /*!<Touch sensing controller enable */
Kojto 116:c0f6e94411f5 3585 #define TSC_CR_START ((uint32_t)0x00000002) /*!<Start acquisition */
Kojto 116:c0f6e94411f5 3586 #define TSC_CR_AM ((uint32_t)0x00000004) /*!<Acquisition mode */
Kojto 116:c0f6e94411f5 3587 #define TSC_CR_SYNCPOL ((uint32_t)0x00000008) /*!<Synchronization pin polarity */
Kojto 116:c0f6e94411f5 3588 #define TSC_CR_IODEF ((uint32_t)0x00000010) /*!<IO default mode */
Kojto 116:c0f6e94411f5 3589
Kojto 116:c0f6e94411f5 3590 #define TSC_CR_MCV ((uint32_t)0x000000E0) /*!<MCV[2:0] bits (Max Count Value) */
Kojto 116:c0f6e94411f5 3591 #define TSC_CR_MCV_0 ((uint32_t)0x00000020) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3592 #define TSC_CR_MCV_1 ((uint32_t)0x00000040) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3593 #define TSC_CR_MCV_2 ((uint32_t)0x00000080) /*!<Bit 2 */
Kojto 116:c0f6e94411f5 3594
Kojto 116:c0f6e94411f5 3595 #define TSC_CR_PGPSC ((uint32_t)0x00007000) /*!<PGPSC[2:0] bits (Pulse Generator Prescaler) */
Kojto 116:c0f6e94411f5 3596 #define TSC_CR_PGPSC_0 ((uint32_t)0x00001000) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3597 #define TSC_CR_PGPSC_1 ((uint32_t)0x00002000) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3598 #define TSC_CR_PGPSC_2 ((uint32_t)0x00004000) /*!<Bit 2 */
Kojto 116:c0f6e94411f5 3599
Kojto 116:c0f6e94411f5 3600 #define TSC_CR_SSPSC ((uint32_t)0x00008000) /*!<Spread Spectrum Prescaler */
Kojto 116:c0f6e94411f5 3601 #define TSC_CR_SSE ((uint32_t)0x00010000) /*!<Spread Spectrum Enable */
Kojto 116:c0f6e94411f5 3602
Kojto 116:c0f6e94411f5 3603 #define TSC_CR_SSD ((uint32_t)0x00FE0000) /*!<SSD[6:0] bits (Spread Spectrum Deviation) */
Kojto 116:c0f6e94411f5 3604 #define TSC_CR_SSD_0 ((uint32_t)0x00020000) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3605 #define TSC_CR_SSD_1 ((uint32_t)0x00040000) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3606 #define TSC_CR_SSD_2 ((uint32_t)0x00080000) /*!<Bit 2 */
Kojto 116:c0f6e94411f5 3607 #define TSC_CR_SSD_3 ((uint32_t)0x00100000) /*!<Bit 3 */
Kojto 116:c0f6e94411f5 3608 #define TSC_CR_SSD_4 ((uint32_t)0x00200000) /*!<Bit 4 */
Kojto 116:c0f6e94411f5 3609 #define TSC_CR_SSD_5 ((uint32_t)0x00400000) /*!<Bit 5 */
Kojto 116:c0f6e94411f5 3610 #define TSC_CR_SSD_6 ((uint32_t)0x00800000) /*!<Bit 6 */
Kojto 116:c0f6e94411f5 3611
Kojto 116:c0f6e94411f5 3612 #define TSC_CR_CTPL ((uint32_t)0x0F000000) /*!<CTPL[3:0] bits (Charge Transfer pulse low) */
Kojto 116:c0f6e94411f5 3613 #define TSC_CR_CTPL_0 ((uint32_t)0x01000000) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3614 #define TSC_CR_CTPL_1 ((uint32_t)0x02000000) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3615 #define TSC_CR_CTPL_2 ((uint32_t)0x04000000) /*!<Bit 2 */
Kojto 116:c0f6e94411f5 3616 #define TSC_CR_CTPL_3 ((uint32_t)0x08000000) /*!<Bit 3 */
Kojto 116:c0f6e94411f5 3617
Kojto 116:c0f6e94411f5 3618 #define TSC_CR_CTPH ((uint32_t)0xF0000000) /*!<CTPH[3:0] bits (Charge Transfer pulse high) */
Kojto 116:c0f6e94411f5 3619 #define TSC_CR_CTPH_0 ((uint32_t)0x10000000) /*!<Bit 0 */
Kojto 116:c0f6e94411f5 3620 #define TSC_CR_CTPH_1 ((uint32_t)0x20000000) /*!<Bit 1 */
Kojto 116:c0f6e94411f5 3621 #define TSC_CR_CTPH_2 ((uint32_t)0x40000000) /*!<Bit 2 */
Kojto 116:c0f6e94411f5 3622 #define TSC_CR_CTPH_3 ((uint32_t)0x80000000) /*!<Bit 3 */
Kojto 116:c0f6e94411f5 3623
Kojto 116:c0f6e94411f5 3624 /******************* Bit definition for TSC_IER register ********************/
Kojto 116:c0f6e94411f5 3625 #define TSC_IER_EOAIE ((uint32_t)0x00000001) /*!<End of acquisition interrupt enable */
Kojto 116:c0f6e94411f5 3626 #define TSC_IER_MCEIE ((uint32_t)0x00000002) /*!<Max count error interrupt enable */
Kojto 116:c0f6e94411f5 3627
Kojto 116:c0f6e94411f5 3628 /******************* Bit definition for TSC_ICR register ********************/
Kojto 116:c0f6e94411f5 3629 #define TSC_ICR_EOAIC ((uint32_t)0x00000001) /*!<End of acquisition interrupt clear */
Kojto 116:c0f6e94411f5 3630 #define TSC_ICR_MCEIC ((uint32_t)0x00000002) /*!<Max count error interrupt clear */
Kojto 116:c0f6e94411f5 3631
Kojto 116:c0f6e94411f5 3632 /******************* Bit definition for TSC_ISR register ********************/
Kojto 116:c0f6e94411f5 3633 #define TSC_ISR_EOAF ((uint32_t)0x00000001) /*!<End of acquisition flag */
Kojto 116:c0f6e94411f5 3634 #define TSC_ISR_MCEF ((uint32_t)0x00000002) /*!<Max count error flag */
Kojto 116:c0f6e94411f5 3635
Kojto 116:c0f6e94411f5 3636 /******************* Bit definition for TSC_IOHCR register ******************/
Kojto 116:c0f6e94411f5 3637 #define TSC_IOHCR_G1_IO1 ((uint32_t)0x00000001) /*!<GROUP1_IO1 schmitt trigger hysteresis mode */
Kojto 116:c0f6e94411f5 3638 #define TSC_IOHCR_G1_IO2 ((uint32_t)0x00000002) /*!<GROUP1_IO2 schmitt trigger hysteresis mode */
Kojto 116:c0f6e94411f5 3639 #define TSC_IOHCR_G1_IO3 ((uint32_t)0x00000004) /*!<GROUP1_IO3 schmitt trigger hysteresis mode */
Kojto 116:c0f6e94411f5 3640 #define TSC_IOHCR_G1_IO4 ((uint32_t)0x00000008) /*!<GROUP1_IO4 schmitt trigger hysteresis mode */
Kojto 116:c0f6e94411f5 3641 #define TSC_IOHCR_G2_IO1 ((uint32_t)0x00000010) /*!<GROUP2_IO1 schmitt trigger hysteresis mode */
Kojto 116:c0f6e94411f5 3642 #define TSC_IOHCR_G2_IO2 ((uint32_t)0x00000020) /*!<GROUP2_IO2 schmitt trigger hysteresis mode */
Kojto 116:c0f6e94411f5 3643 #define TSC_IOHCR_G2_IO3 ((uint32_t)0x00000040) /*!<GROUP2_IO3 schmitt trigger hysteresis mode */
Kojto 116:c0f6e94411f5 3644 #define TSC_IOHCR_G2_IO4 ((uint32_t)0x00000080) /*!<GROUP2_IO4 schmitt trigger hysteresis mode */
Kojto 116:c0f6e94411f5 3645 #define TSC_IOHCR_G3_IO1 ((uint32_t)0x00000100) /*!<GROUP3_IO1 schmitt trigger hysteresis mode */
Kojto 116:c0f6e94411f5 3646 #define TSC_IOHCR_G3_IO2 ((uint32_t)0x00000200) /*!<GROUP3_IO2 schmitt trigger hysteresis mode */
Kojto 116:c0f6e94411f5 3647 #define TSC_IOHCR_G3_IO3 ((uint32_t)0x00000400) /*!<GROUP3_IO3 schmitt trigger hysteresis mode */
Kojto 116:c0f6e94411f5 3648 #define TSC_IOHCR_G3_IO4 ((uint32_t)0x00000800) /*!<GROUP3_IO4 schmitt trigger hysteresis mode */
Kojto 116:c0f6e94411f5 3649 #define TSC_IOHCR_G4_IO1 ((uint32_t)0x00001000) /*!<GROUP4_IO1 schmitt trigger hysteresis mode */
Kojto 116:c0f6e94411f5 3650 #define TSC_IOHCR_G4_IO2 ((uint32_t)0x00002000) /*!<GROUP4_IO2 schmitt trigger hysteresis mode */
Kojto 116:c0f6e94411f5 3651 #define TSC_IOHCR_G4_IO3 ((uint32_t)0x00004000) /*!<GROUP4_IO3 schmitt trigger hysteresis mode */
Kojto 116:c0f6e94411f5 3652 #define TSC_IOHCR_G4_IO4 ((uint32_t)0x00008000) /*!<GROUP4_IO4 schmitt trigger hysteresis mode */
Kojto 116:c0f6e94411f5 3653 #define TSC_IOHCR_G5_IO1 ((uint32_t)0x00010000) /*!<GROUP5_IO1 schmitt trigger hysteresis mode */
Kojto 116:c0f6e94411f5 3654 #define TSC_IOHCR_G5_IO2 ((uint32_t)0x00020000) /*!<GROUP5_IO2 schmitt trigger hysteresis mode */
Kojto 116:c0f6e94411f5 3655 #define TSC_IOHCR_G5_IO3 ((uint32_t)0x00040000) /*!<GROUP5_IO3 schmitt trigger hysteresis mode */
Kojto 116:c0f6e94411f5 3656 #define TSC_IOHCR_G5_IO4 ((uint32_t)0x00080000) /*!<GROUP5_IO4 schmitt trigger hysteresis mode */
Kojto 116:c0f6e94411f5 3657 #define TSC_IOHCR_G6_IO1 ((uint32_t)0x00100000) /*!<GROUP6_IO1 schmitt trigger hysteresis mode */
Kojto 116:c0f6e94411f5 3658 #define TSC_IOHCR_G6_IO2 ((uint32_t)0x00200000) /*!<GROUP6_IO2 schmitt trigger hysteresis mode */
Kojto 116:c0f6e94411f5 3659 #define TSC_IOHCR_G6_IO3 ((uint32_t)0x00400000) /*!<GROUP6_IO3 schmitt trigger hysteresis mode */
Kojto 116:c0f6e94411f5 3660 #define TSC_IOHCR_G6_IO4 ((uint32_t)0x00800000) /*!<GROUP6_IO4 schmitt trigger hysteresis mode */
Kojto 116:c0f6e94411f5 3661 #define TSC_IOHCR_G7_IO1 ((uint32_t)0x01000000) /*!<GROUP7_IO1 schmitt trigger hysteresis mode */
Kojto 116:c0f6e94411f5 3662 #define TSC_IOHCR_G7_IO2 ((uint32_t)0x02000000) /*!<GROUP7_IO2 schmitt trigger hysteresis mode */
Kojto 116:c0f6e94411f5 3663 #define TSC_IOHCR_G7_IO3 ((uint32_t)0x04000000) /*!<GROUP7_IO3 schmitt trigger hysteresis mode */
Kojto 116:c0f6e94411f5 3664 #define TSC_IOHCR_G7_IO4 ((uint32_t)0x08000000) /*!<GROUP7_IO4 schmitt trigger hysteresis mode */
Kojto 116:c0f6e94411f5 3665 #define TSC_IOHCR_G8_IO1 ((uint32_t)0x10000000) /*!<GROUP8_IO1 schmitt trigger hysteresis mode */
Kojto 116:c0f6e94411f5 3666 #define TSC_IOHCR_G8_IO2 ((uint32_t)0x20000000) /*!<GROUP8_IO2 schmitt trigger hysteresis mode */
Kojto 116:c0f6e94411f5 3667 #define TSC_IOHCR_G8_IO3 ((uint32_t)0x40000000) /*!<GROUP8_IO3 schmitt trigger hysteresis mode */
Kojto 116:c0f6e94411f5 3668 #define TSC_IOHCR_G8_IO4 ((uint32_t)0x80000000) /*!<GROUP8_IO4 schmitt trigger hysteresis mode */
Kojto 116:c0f6e94411f5 3669
Kojto 116:c0f6e94411f5 3670 /******************* Bit definition for TSC_IOASCR register *****************/
Kojto 116:c0f6e94411f5 3671 #define TSC_IOASCR_G1_IO1 ((uint32_t)0x00000001) /*!<GROUP1_IO1 analog switch enable */
Kojto 116:c0f6e94411f5 3672 #define TSC_IOASCR_G1_IO2 ((uint32_t)0x00000002) /*!<GROUP1_IO2 analog switch enable */
Kojto 116:c0f6e94411f5 3673 #define TSC_IOASCR_G1_IO3 ((uint32_t)0x00000004) /*!<GROUP1_IO3 analog switch enable */
Kojto 116:c0f6e94411f5 3674 #define TSC_IOASCR_G1_IO4 ((uint32_t)0x00000008) /*!<GROUP1_IO4 analog switch enable */
Kojto 116:c0f6e94411f5 3675 #define TSC_IOASCR_G2_IO1 ((uint32_t)0x00000010) /*!<GROUP2_IO1 analog switch enable */
Kojto 116:c0f6e94411f5 3676 #define TSC_IOASCR_G2_IO2 ((uint32_t)0x00000020) /*!<GROUP2_IO2 analog switch enable */
Kojto 116:c0f6e94411f5 3677 #define TSC_IOASCR_G2_IO3 ((uint32_t)0x00000040) /*!<GROUP2_IO3 analog switch enable */
Kojto 116:c0f6e94411f5 3678 #define TSC_IOASCR_G2_IO4 ((uint32_t)0x00000080) /*!<GROUP2_IO4 analog switch enable */
Kojto 116:c0f6e94411f5 3679 #define TSC_IOASCR_G3_IO1 ((uint32_t)0x00000100) /*!<GROUP3_IO1 analog switch enable */
Kojto 116:c0f6e94411f5 3680 #define TSC_IOASCR_G3_IO2 ((uint32_t)0x00000200) /*!<GROUP3_IO2 analog switch enable */
Kojto 116:c0f6e94411f5 3681 #define TSC_IOASCR_G3_IO3 ((uint32_t)0x00000400) /*!<GROUP3_IO3 analog switch enable */
Kojto 116:c0f6e94411f5 3682 #define TSC_IOASCR_G3_IO4 ((uint32_t)0x00000800) /*!<GROUP3_IO4 analog switch enable */
Kojto 116:c0f6e94411f5 3683 #define TSC_IOASCR_G4_IO1 ((uint32_t)0x00001000) /*!<GROUP4_IO1 analog switch enable */
Kojto 116:c0f6e94411f5 3684 #define TSC_IOASCR_G4_IO2 ((uint32_t)0x00002000) /*!<GROUP4_IO2 analog switch enable */
Kojto 116:c0f6e94411f5 3685 #define TSC_IOASCR_G4_IO3 ((uint32_t)0x00004000) /*!<GROUP4_IO3 analog switch enable */
Kojto 116:c0f6e94411f5 3686 #define TSC_IOASCR_G4_IO4 ((uint32_t)0x00008000) /*!<GROUP4_IO4 analog switch enable */
Kojto 116:c0f6e94411f5 3687 #define TSC_IOASCR_G5_IO1 ((uint32_t)0x00010000) /*!<GROUP5_IO1 analog switch enable */
Kojto 116:c0f6e94411f5 3688 #define TSC_IOASCR_G5_IO2 ((uint32_t)0x00020000) /*!<GROUP5_IO2 analog switch enable */
Kojto 116:c0f6e94411f5 3689 #define TSC_IOASCR_G5_IO3 ((uint32_t)0x00040000) /*!<GROUP5_IO3 analog switch enable */
Kojto 116:c0f6e94411f5 3690 #define TSC_IOASCR_G5_IO4 ((uint32_t)0x00080000) /*!<GROUP5_IO4 analog switch enable */
Kojto 116:c0f6e94411f5 3691 #define TSC_IOASCR_G6_IO1 ((uint32_t)0x00100000) /*!<GROUP6_IO1 analog switch enable */
Kojto 116:c0f6e94411f5 3692 #define TSC_IOASCR_G6_IO2 ((uint32_t)0x00200000) /*!<GROUP6_IO2 analog switch enable */
Kojto 116:c0f6e94411f5 3693 #define TSC_IOASCR_G6_IO3 ((uint32_t)0x00400000) /*!<GROUP6_IO3 analog switch enable */
Kojto 116:c0f6e94411f5 3694 #define TSC_IOASCR_G6_IO4 ((uint32_t)0x00800000) /*!<GROUP6_IO4 analog switch enable */
Kojto 116:c0f6e94411f5 3695 #define TSC_IOASCR_G7_IO1 ((uint32_t)0x01000000) /*!<GROUP7_IO1 analog switch enable */
Kojto 116:c0f6e94411f5 3696 #define TSC_IOASCR_G7_IO2 ((uint32_t)0x02000000) /*!<GROUP7_IO2 analog switch enable */
Kojto 116:c0f6e94411f5 3697 #define TSC_IOASCR_G7_IO3 ((uint32_t)0x04000000) /*!<GROUP7_IO3 analog switch enable */
Kojto 116:c0f6e94411f5 3698 #define TSC_IOASCR_G7_IO4 ((uint32_t)0x08000000) /*!<GROUP7_IO4 analog switch enable */
Kojto 116:c0f6e94411f5 3699 #define TSC_IOASCR_G8_IO1 ((uint32_t)0x10000000) /*!<GROUP8_IO1 analog switch enable */
Kojto 116:c0f6e94411f5 3700 #define TSC_IOASCR_G8_IO2 ((uint32_t)0x20000000) /*!<GROUP8_IO2 analog switch enable */
Kojto 116:c0f6e94411f5 3701 #define TSC_IOASCR_G8_IO3 ((uint32_t)0x40000000) /*!<GROUP8_IO3 analog switch enable */
Kojto 116:c0f6e94411f5 3702 #define TSC_IOASCR_G8_IO4 ((uint32_t)0x80000000) /*!<GROUP8_IO4 analog switch enable */
Kojto 116:c0f6e94411f5 3703
Kojto 116:c0f6e94411f5 3704 /******************* Bit definition for TSC_IOSCR register ******************/
Kojto 116:c0f6e94411f5 3705 #define TSC_IOSCR_G1_IO1 ((uint32_t)0x00000001) /*!<GROUP1_IO1 sampling mode */
Kojto 116:c0f6e94411f5 3706 #define TSC_IOSCR_G1_IO2 ((uint32_t)0x00000002) /*!<GROUP1_IO2 sampling mode */
Kojto 116:c0f6e94411f5 3707 #define TSC_IOSCR_G1_IO3 ((uint32_t)0x00000004) /*!<GROUP1_IO3 sampling mode */
Kojto 116:c0f6e94411f5 3708 #define TSC_IOSCR_G1_IO4 ((uint32_t)0x00000008) /*!<GROUP1_IO4 sampling mode */
Kojto 116:c0f6e94411f5 3709 #define TSC_IOSCR_G2_IO1 ((uint32_t)0x00000010) /*!<GROUP2_IO1 sampling mode */
Kojto 116:c0f6e94411f5 3710 #define TSC_IOSCR_G2_IO2 ((uint32_t)0x00000020) /*!<GROUP2_IO2 sampling mode */
Kojto 116:c0f6e94411f5 3711 #define TSC_IOSCR_G2_IO3 ((uint32_t)0x00000040) /*!<GROUP2_IO3 sampling mode */
Kojto 116:c0f6e94411f5 3712 #define TSC_IOSCR_G2_IO4 ((uint32_t)0x00000080) /*!<GROUP2_IO4 sampling mode */
Kojto 116:c0f6e94411f5 3713 #define TSC_IOSCR_G3_IO1 ((uint32_t)0x00000100) /*!<GROUP3_IO1 sampling mode */
Kojto 116:c0f6e94411f5 3714 #define TSC_IOSCR_G3_IO2 ((uint32_t)0x00000200) /*!<GROUP3_IO2 sampling mode */
Kojto 116:c0f6e94411f5 3715 #define TSC_IOSCR_G3_IO3 ((uint32_t)0x00000400) /*!<GROUP3_IO3 sampling mode */
Kojto 116:c0f6e94411f5 3716 #define TSC_IOSCR_G3_IO4 ((uint32_t)0x00000800) /*!<GROUP3_IO4 sampling mode */
Kojto 116:c0f6e94411f5 3717 #define TSC_IOSCR_G4_IO1 ((uint32_t)0x00001000) /*!<GROUP4_IO1 sampling mode */
Kojto 116:c0f6e94411f5 3718 #define TSC_IOSCR_G4_IO2 ((uint32_t)0x00002000) /*!<GROUP4_IO2 sampling mode */
Kojto 116:c0f6e94411f5 3719 #define TSC_IOSCR_G4_IO3 ((uint32_t)0x00004000) /*!<GROUP4_IO3 sampling mode */
Kojto 116:c0f6e94411f5 3720 #define TSC_IOSCR_G4_IO4 ((uint32_t)0x00008000) /*!<GROUP4_IO4 sampling mode */
Kojto 116:c0f6e94411f5 3721 #define TSC_IOSCR_G5_IO1 ((uint32_t)0x00010000) /*!<GROUP5_IO1 sampling mode */
Kojto 116:c0f6e94411f5 3722 #define TSC_IOSCR_G5_IO2 ((uint32_t)0x00020000) /*!<GROUP5_IO2 sampling mode */
Kojto 116:c0f6e94411f5 3723 #define TSC_IOSCR_G5_IO3 ((uint32_t)0x00040000) /*!<GROUP5_IO3 sampling mode */
Kojto 116:c0f6e94411f5 3724 #define TSC_IOSCR_G5_IO4 ((uint32_t)0x00080000) /*!<GROUP5_IO4 sampling mode */
Kojto 116:c0f6e94411f5 3725 #define TSC_IOSCR_G6_IO1 ((uint32_t)0x00100000) /*!<GROUP6_IO1 sampling mode */
Kojto 116:c0f6e94411f5 3726 #define TSC_IOSCR_G6_IO2 ((uint32_t)0x00200000) /*!<GROUP6_IO2 sampling mode */
Kojto 116:c0f6e94411f5 3727 #define TSC_IOSCR_G6_IO3 ((uint32_t)0x00400000) /*!<GROUP6_IO3 sampling mode */
Kojto 116:c0f6e94411f5 3728 #define TSC_IOSCR_G6_IO4 ((uint32_t)0x00800000) /*!<GROUP6_IO4 sampling mode */
Kojto 116:c0f6e94411f5 3729 #define TSC_IOSCR_G7_IO1 ((uint32_t)0x01000000) /*!<GROUP7_IO1 sampling mode */
Kojto 116:c0f6e94411f5 3730 #define TSC_IOSCR_G7_IO2 ((uint32_t)0x02000000) /*!<GROUP7_IO2 sampling mode */
Kojto 116:c0f6e94411f5 3731 #define TSC_IOSCR_G7_IO3 ((uint32_t)0x04000000) /*!<GROUP7_IO3 sampling mode */
Kojto 116:c0f6e94411f5 3732 #define TSC_IOSCR_G7_IO4 ((uint32_t)0x08000000) /*!<GROUP7_IO4 sampling mode */
Kojto 116:c0f6e94411f5 3733 #define TSC_IOSCR_G8_IO1 ((uint32_t)0x10000000) /*!<GROUP8_IO1 sampling mode */
Kojto 116:c0f6e94411f5 3734 #define TSC_IOSCR_G8_IO2 ((uint32_t)0x20000000) /*!<GROUP8_IO2 sampling mode */
Kojto 116:c0f6e94411f5 3735 #define TSC_IOSCR_G8_IO3 ((uint32_t)0x40000000) /*!<GROUP8_IO3 sampling mode */
Kojto 116:c0f6e94411f5 3736 #define TSC_IOSCR_G8_IO4 ((uint32_t)0x80000000) /*!<GROUP8_IO4 sampling mode */
Kojto 116:c0f6e94411f5 3737
Kojto 116:c0f6e94411f5 3738 /******************* Bit definition for TSC_IOCCR register ******************/
Kojto 116:c0f6e94411f5 3739 #define TSC_IOCCR_G1_IO1 ((uint32_t)0x00000001) /*!<GROUP1_IO1 channel mode */
Kojto 116:c0f6e94411f5 3740 #define TSC_IOCCR_G1_IO2 ((uint32_t)0x00000002) /*!<GROUP1_IO2 channel mode */
Kojto 116:c0f6e94411f5 3741 #define TSC_IOCCR_G1_IO3 ((uint32_t)0x00000004) /*!<GROUP1_IO3 channel mode */
Kojto 116:c0f6e94411f5 3742 #define TSC_IOCCR_G1_IO4 ((uint32_t)0x00000008) /*!<GROUP1_IO4 channel mode */
Kojto 116:c0f6e94411f5 3743 #define TSC_IOCCR_G2_IO1 ((uint32_t)0x00000010) /*!<GROUP2_IO1 channel mode */
Kojto 116:c0f6e94411f5 3744 #define TSC_IOCCR_G2_IO2 ((uint32_t)0x00000020) /*!<GROUP2_IO2 channel mode */
Kojto 116:c0f6e94411f5 3745 #define TSC_IOCCR_G2_IO3 ((uint32_t)0x00000040) /*!<GROUP2_IO3 channel mode */
Kojto 116:c0f6e94411f5 3746 #define TSC_IOCCR_G2_IO4 ((uint32_t)0x00000080) /*!<GROUP2_IO4 channel mode */
Kojto 116:c0f6e94411f5 3747 #define TSC_IOCCR_G3_IO1 ((uint32_t)0x00000100) /*!<GROUP3_IO1 channel mode */
Kojto 116:c0f6e94411f5 3748 #define TSC_IOCCR_G3_IO2 ((uint32_t)0x00000200) /*!<GROUP3_IO2 channel mode */
Kojto 116:c0f6e94411f5 3749 #define TSC_IOCCR_G3_IO3 ((uint32_t)0x00000400) /*!<GROUP3_IO3 channel mode */
Kojto 116:c0f6e94411f5 3750 #define TSC_IOCCR_G3_IO4 ((uint32_t)0x00000800) /*!<GROUP3_IO4 channel mode */
Kojto 116:c0f6e94411f5 3751 #define TSC_IOCCR_G4_IO1 ((uint32_t)0x00001000) /*!<GROUP4_IO1 channel mode */
Kojto 116:c0f6e94411f5 3752 #define TSC_IOCCR_G4_IO2 ((uint32_t)0x00002000) /*!<GROUP4_IO2 channel mode */
Kojto 116:c0f6e94411f5 3753 #define TSC_IOCCR_G4_IO3 ((uint32_t)0x00004000) /*!<GROUP4_IO3 channel mode */
Kojto 116:c0f6e94411f5 3754 #define TSC_IOCCR_G4_IO4 ((uint32_t)0x00008000) /*!<GROUP4_IO4 channel mode */
Kojto 116:c0f6e94411f5 3755 #define TSC_IOCCR_G5_IO1 ((uint32_t)0x00010000) /*!<GROUP5_IO1 channel mode */
Kojto 116:c0f6e94411f5 3756 #define TSC_IOCCR_G5_IO2 ((uint32_t)0x00020000) /*!<GROUP5_IO2 channel mode */
Kojto 116:c0f6e94411f5 3757 #define TSC_IOCCR_G5_IO3 ((uint32_t)0x00040000) /*!<GROUP5_IO3 channel mode */
Kojto 116:c0f6e94411f5 3758 #define TSC_IOCCR_G5_IO4 ((uint32_t)0x00080000) /*!<GROUP5_IO4 channel mode */
Kojto 116:c0f6e94411f5 3759 #define TSC_IOCCR_G6_IO1 ((uint32_t)0x00100000) /*!<GROUP6_IO1 channel mode */
Kojto 116:c0f6e94411f5 3760 #define TSC_IOCCR_G6_IO2 ((uint32_t)0x00200000) /*!<GROUP6_IO2 channel mode */
Kojto 116:c0f6e94411f5 3761 #define TSC_IOCCR_G6_IO3 ((uint32_t)0x00400000) /*!<GROUP6_IO3 channel mode */
Kojto 116:c0f6e94411f5 3762 #define TSC_IOCCR_G6_IO4 ((uint32_t)0x00800000) /*!<GROUP6_IO4 channel mode */
Kojto 116:c0f6e94411f5 3763 #define TSC_IOCCR_G7_IO1 ((uint32_t)0x01000000) /*!<GROUP7_IO1 channel mode */
Kojto 116:c0f6e94411f5 3764 #define TSC_IOCCR_G7_IO2 ((uint32_t)0x02000000) /*!<GROUP7_IO2 channel mode */
Kojto 116:c0f6e94411f5 3765 #define TSC_IOCCR_G7_IO3 ((uint32_t)0x04000000) /*!<GROUP7_IO3 channel mode */
Kojto 116:c0f6e94411f5 3766 #define TSC_IOCCR_G7_IO4 ((uint32_t)0x08000000) /*!<GROUP7_IO4 channel mode */
Kojto 116:c0f6e94411f5 3767 #define TSC_IOCCR_G8_IO1 ((uint32_t)0x10000000) /*!<GROUP8_IO1 channel mode */
Kojto 116:c0f6e94411f5 3768 #define TSC_IOCCR_G8_IO2 ((uint32_t)0x20000000) /*!<GROUP8_IO2 channel mode */
Kojto 116:c0f6e94411f5 3769 #define TSC_IOCCR_G8_IO3 ((uint32_t)0x40000000) /*!<GROUP8_IO3 channel mode */
Kojto 116:c0f6e94411f5 3770 #define TSC_IOCCR_G8_IO4 ((uint32_t)0x80000000) /*!<GROUP8_IO4 channel mode */
Kojto 116:c0f6e94411f5 3771
Kojto 116:c0f6e94411f5 3772 /******************* Bit definition for TSC_IOGCSR register *****************/
Kojto 116:c0f6e94411f5 3773 #define TSC_IOGCSR_G1E ((uint32_t)0x00000001) /*!<Analog IO GROUP1 enable */
Kojto 116:c0f6e94411f5 3774 #define TSC_IOGCSR_G2E ((uint32_t)0x00000002) /*!<Analog IO GROUP2 enable */
Kojto 116:c0f6e94411f5 3775 #define TSC_IOGCSR_G3E ((uint32_t)0x00000004) /*!<Analog IO GROUP3 enable */
Kojto 116:c0f6e94411f5 3776 #define TSC_IOGCSR_G4E ((uint32_t)0x00000008) /*!<Analog IO GROUP4 enable */
Kojto 116:c0f6e94411f5 3777 #define TSC_IOGCSR_G5E ((uint32_t)0x00000010) /*!<Analog IO GROUP5 enable */
Kojto 116:c0f6e94411f5 3778 #define TSC_IOGCSR_G6E ((uint32_t)0x00000020) /*!<Analog IO GROUP6 enable */
Kojto 116:c0f6e94411f5 3779 #define TSC_IOGCSR_G7E ((uint32_t)0x00000040) /*!<Analog IO GROUP7 enable */
Kojto 116:c0f6e94411f5 3780 #define TSC_IOGCSR_G8E ((uint32_t)0x00000080) /*!<Analog IO GROUP8 enable */
Kojto 116:c0f6e94411f5 3781 #define TSC_IOGCSR_G1S ((uint32_t)0x00010000) /*!<Analog IO GROUP1 status */
Kojto 116:c0f6e94411f5 3782 #define TSC_IOGCSR_G2S ((uint32_t)0x00020000) /*!<Analog IO GROUP2 status */
Kojto 116:c0f6e94411f5 3783 #define TSC_IOGCSR_G3S ((uint32_t)0x00040000) /*!<Analog IO GROUP3 status */
Kojto 116:c0f6e94411f5 3784 #define TSC_IOGCSR_G4S ((uint32_t)0x00080000) /*!<Analog IO GROUP4 status */
Kojto 116:c0f6e94411f5 3785 #define TSC_IOGCSR_G5S ((uint32_t)0x00100000) /*!<Analog IO GROUP5 status */
Kojto 116:c0f6e94411f5 3786 #define TSC_IOGCSR_G6S ((uint32_t)0x00200000) /*!<Analog IO GROUP6 status */
Kojto 116:c0f6e94411f5 3787 #define TSC_IOGCSR_G7S ((uint32_t)0x00400000) /*!<Analog IO GROUP7 status */
Kojto 116:c0f6e94411f5 3788 #define TSC_IOGCSR_G8S ((uint32_t)0x00800000) /*!<Analog IO GROUP8 status */
Kojto 116:c0f6e94411f5 3789
Kojto 116:c0f6e94411f5 3790 /******************* Bit definition for TSC_IOGXCR register *****************/
Kojto 116:c0f6e94411f5 3791 #define TSC_IOGXCR_CNT ((uint32_t)0x00003FFF) /*!<CNT[13:0] bits (Counter value) */
Kojto 116:c0f6e94411f5 3792
Kojto 116:c0f6e94411f5 3793 /******************************************************************************/
Kojto 116:c0f6e94411f5 3794 /* */
Kojto 116:c0f6e94411f5 3795 /* Universal Synchronous Asynchronous Receiver Transmitter (USART) */
Kojto 116:c0f6e94411f5 3796 /* */
Kojto 116:c0f6e94411f5 3797 /******************************************************************************/
Kojto 116:c0f6e94411f5 3798 /****************** Bit definition for USART_CR1 register *******************/
Kojto 116:c0f6e94411f5 3799 #define USART_CR1_UE ((uint32_t)0x00000001) /*!< USART Enable */
Kojto 116:c0f6e94411f5 3800 #define USART_CR1_UESM ((uint32_t)0x00000002) /*!< USART Enable in STOP Mode */
Kojto 116:c0f6e94411f5 3801 #define USART_CR1_RE ((uint32_t)0x00000004) /*!< Receiver Enable */
Kojto 116:c0f6e94411f5 3802 #define USART_CR1_TE ((uint32_t)0x00000008) /*!< Transmitter Enable */
Kojto 116:c0f6e94411f5 3803 #define USART_CR1_IDLEIE ((uint32_t)0x00000010) /*!< IDLE Interrupt Enable */
Kojto 116:c0f6e94411f5 3804 #define USART_CR1_RXNEIE ((uint32_t)0x00000020) /*!< RXNE Interrupt Enable */
Kojto 116:c0f6e94411f5 3805 #define USART_CR1_TCIE ((uint32_t)0x00000040) /*!< Transmission Complete Interrupt Enable */
Kojto 116:c0f6e94411f5 3806 #define USART_CR1_TXEIE ((uint32_t)0x00000080) /*!< TXE Interrupt Enable */
Kojto 116:c0f6e94411f5 3807 #define USART_CR1_PEIE ((uint32_t)0x00000100) /*!< PE Interrupt Enable */
Kojto 116:c0f6e94411f5 3808 #define USART_CR1_PS ((uint32_t)0x00000200) /*!< Parity Selection */
Kojto 116:c0f6e94411f5 3809 #define USART_CR1_PCE ((uint32_t)0x00000400) /*!< Parity Control Enable */
Kojto 116:c0f6e94411f5 3810 #define USART_CR1_WAKE ((uint32_t)0x00000800) /*!< Receiver Wakeup method */
Kojto 116:c0f6e94411f5 3811 #define USART_CR1_M ((uint32_t)0x10001000) /*!< Word length */
Kojto 116:c0f6e94411f5 3812 #define USART_CR1_M_0 ((uint32_t)0x00001000) /*!< Word length - Bit 0 */
Kojto 116:c0f6e94411f5 3813 #define USART_CR1_MME ((uint32_t)0x00002000) /*!< Mute Mode Enable */
Kojto 116:c0f6e94411f5 3814 #define USART_CR1_CMIE ((uint32_t)0x00004000) /*!< Character match interrupt enable */
Kojto 116:c0f6e94411f5 3815 #define USART_CR1_OVER8 ((uint32_t)0x00008000) /*!< Oversampling by 8-bit or 16-bit mode */
Kojto 116:c0f6e94411f5 3816 #define USART_CR1_DEDT ((uint32_t)0x001F0000) /*!< DEDT[4:0] bits (Driver Enable Deassertion Time) */
Kojto 116:c0f6e94411f5 3817 #define USART_CR1_DEDT_0 ((uint32_t)0x00010000) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 3818 #define USART_CR1_DEDT_1 ((uint32_t)0x00020000) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 3819 #define USART_CR1_DEDT_2 ((uint32_t)0x00040000) /*!< Bit 2 */
Kojto 116:c0f6e94411f5 3820 #define USART_CR1_DEDT_3 ((uint32_t)0x00080000) /*!< Bit 3 */
Kojto 116:c0f6e94411f5 3821 #define USART_CR1_DEDT_4 ((uint32_t)0x00100000) /*!< Bit 4 */
Kojto 116:c0f6e94411f5 3822 #define USART_CR1_DEAT ((uint32_t)0x03E00000) /*!< DEAT[4:0] bits (Driver Enable Assertion Time) */
Kojto 116:c0f6e94411f5 3823 #define USART_CR1_DEAT_0 ((uint32_t)0x00200000) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 3824 #define USART_CR1_DEAT_1 ((uint32_t)0x00400000) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 3825 #define USART_CR1_DEAT_2 ((uint32_t)0x00800000) /*!< Bit 2 */
Kojto 116:c0f6e94411f5 3826 #define USART_CR1_DEAT_3 ((uint32_t)0x01000000) /*!< Bit 3 */
Kojto 116:c0f6e94411f5 3827 #define USART_CR1_DEAT_4 ((uint32_t)0x02000000) /*!< Bit 4 */
Kojto 116:c0f6e94411f5 3828 #define USART_CR1_RTOIE ((uint32_t)0x04000000) /*!< Receive Time Out interrupt enable */
Kojto 116:c0f6e94411f5 3829 #define USART_CR1_EOBIE ((uint32_t)0x08000000) /*!< End of Block interrupt enable */
Kojto 116:c0f6e94411f5 3830 #define USART_CR1_M_1 ((uint32_t)0x10000000) /*!< Word length - Bit 1 */
Kojto 116:c0f6e94411f5 3831 /****************** Bit definition for USART_CR2 register *******************/
Kojto 116:c0f6e94411f5 3832 #define USART_CR2_ADDM7 ((uint32_t)0x00000010) /*!< 7-bit or 4-bit Address Detection */
Kojto 116:c0f6e94411f5 3833 #define USART_CR2_LBDL ((uint32_t)0x00000020) /*!< LIN Break Detection Length */
Kojto 116:c0f6e94411f5 3834 #define USART_CR2_LBDIE ((uint32_t)0x00000040) /*!< LIN Break Detection Interrupt Enable */
Kojto 116:c0f6e94411f5 3835 #define USART_CR2_LBCL ((uint32_t)0x00000100) /*!< Last Bit Clock pulse */
Kojto 116:c0f6e94411f5 3836 #define USART_CR2_CPHA ((uint32_t)0x00000200) /*!< Clock Phase */
Kojto 116:c0f6e94411f5 3837 #define USART_CR2_CPOL ((uint32_t)0x00000400) /*!< Clock Polarity */
Kojto 116:c0f6e94411f5 3838 #define USART_CR2_CLKEN ((uint32_t)0x00000800) /*!< Clock Enable */
Kojto 116:c0f6e94411f5 3839 #define USART_CR2_STOP ((uint32_t)0x00003000) /*!< STOP[1:0] bits (STOP bits) */
Kojto 116:c0f6e94411f5 3840 #define USART_CR2_STOP_0 ((uint32_t)0x00001000) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 3841 #define USART_CR2_STOP_1 ((uint32_t)0x00002000) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 3842 #define USART_CR2_LINEN ((uint32_t)0x00004000) /*!< LIN mode enable */
Kojto 116:c0f6e94411f5 3843 #define USART_CR2_SWAP ((uint32_t)0x00008000) /*!< SWAP TX/RX pins */
Kojto 116:c0f6e94411f5 3844 #define USART_CR2_RXINV ((uint32_t)0x00010000) /*!< RX pin active level inversion */
Kojto 116:c0f6e94411f5 3845 #define USART_CR2_TXINV ((uint32_t)0x00020000) /*!< TX pin active level inversion */
Kojto 116:c0f6e94411f5 3846 #define USART_CR2_DATAINV ((uint32_t)0x00040000) /*!< Binary data inversion */
Kojto 116:c0f6e94411f5 3847 #define USART_CR2_MSBFIRST ((uint32_t)0x00080000) /*!< Most Significant Bit First */
Kojto 116:c0f6e94411f5 3848 #define USART_CR2_ABREN ((uint32_t)0x00100000) /*!< Auto Baud-Rate Enable*/
Kojto 116:c0f6e94411f5 3849 #define USART_CR2_ABRMODE ((uint32_t)0x00600000) /*!< ABRMOD[1:0] bits (Auto Baud-Rate Mode) */
Kojto 116:c0f6e94411f5 3850 #define USART_CR2_ABRMODE_0 ((uint32_t)0x00200000) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 3851 #define USART_CR2_ABRMODE_1 ((uint32_t)0x00400000) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 3852 #define USART_CR2_RTOEN ((uint32_t)0x00800000) /*!< Receiver Time-Out enable */
Kojto 116:c0f6e94411f5 3853 #define USART_CR2_ADD ((uint32_t)0xFF000000) /*!< Address of the USART node */
Kojto 116:c0f6e94411f5 3854
Kojto 116:c0f6e94411f5 3855 /****************** Bit definition for USART_CR3 register *******************/
Kojto 116:c0f6e94411f5 3856 #define USART_CR3_EIE ((uint32_t)0x00000001) /*!< Error Interrupt Enable */
Kojto 116:c0f6e94411f5 3857 #define USART_CR3_IREN ((uint32_t)0x00000002) /*!< IrDA mode Enable */
Kojto 116:c0f6e94411f5 3858 #define USART_CR3_IRLP ((uint32_t)0x00000004) /*!< IrDA Low-Power */
Kojto 116:c0f6e94411f5 3859 #define USART_CR3_HDSEL ((uint32_t)0x00000008) /*!< Half-Duplex Selection */
Kojto 116:c0f6e94411f5 3860 #define USART_CR3_NACK ((uint32_t)0x00000010) /*!< SmartCard NACK enable */
Kojto 116:c0f6e94411f5 3861 #define USART_CR3_SCEN ((uint32_t)0x00000020) /*!< SmartCard mode enable */
Kojto 116:c0f6e94411f5 3862 #define USART_CR3_DMAR ((uint32_t)0x00000040) /*!< DMA Enable Receiver */
Kojto 116:c0f6e94411f5 3863 #define USART_CR3_DMAT ((uint32_t)0x00000080) /*!< DMA Enable Transmitter */
Kojto 116:c0f6e94411f5 3864 #define USART_CR3_RTSE ((uint32_t)0x00000100) /*!< RTS Enable */
Kojto 116:c0f6e94411f5 3865 #define USART_CR3_CTSE ((uint32_t)0x00000200) /*!< CTS Enable */
Kojto 116:c0f6e94411f5 3866 #define USART_CR3_CTSIE ((uint32_t)0x00000400) /*!< CTS Interrupt Enable */
Kojto 116:c0f6e94411f5 3867 #define USART_CR3_ONEBIT ((uint32_t)0x00000800) /*!< One sample bit method enable */
Kojto 116:c0f6e94411f5 3868 #define USART_CR3_OVRDIS ((uint32_t)0x00001000) /*!< Overrun Disable */
Kojto 116:c0f6e94411f5 3869 #define USART_CR3_DDRE ((uint32_t)0x00002000) /*!< DMA Disable on Reception Error */
Kojto 116:c0f6e94411f5 3870 #define USART_CR3_DEM ((uint32_t)0x00004000) /*!< Driver Enable Mode */
Kojto 116:c0f6e94411f5 3871 #define USART_CR3_DEP ((uint32_t)0x00008000) /*!< Driver Enable Polarity Selection */
Kojto 116:c0f6e94411f5 3872 #define USART_CR3_SCARCNT ((uint32_t)0x000E0000) /*!< SCARCNT[2:0] bits (SmartCard Auto-Retry Count) */
Kojto 116:c0f6e94411f5 3873 #define USART_CR3_SCARCNT_0 ((uint32_t)0x00020000) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 3874 #define USART_CR3_SCARCNT_1 ((uint32_t)0x00040000) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 3875 #define USART_CR3_SCARCNT_2 ((uint32_t)0x00080000) /*!< Bit 2 */
Kojto 116:c0f6e94411f5 3876 #define USART_CR3_WUS ((uint32_t)0x00300000) /*!< WUS[1:0] bits (Wake UP Interrupt Flag Selection) */
Kojto 116:c0f6e94411f5 3877 #define USART_CR3_WUS_0 ((uint32_t)0x00100000) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 3878 #define USART_CR3_WUS_1 ((uint32_t)0x00200000) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 3879 #define USART_CR3_WUFIE ((uint32_t)0x00400000) /*!< Wake Up Interrupt Enable */
Kojto 116:c0f6e94411f5 3880 #define USART_CR3_UCESM ((uint32_t)0x00800000) /*!< Clock Enable in Stop mode */
Kojto 116:c0f6e94411f5 3881
Kojto 116:c0f6e94411f5 3882 /****************** Bit definition for USART_BRR register *******************/
Kojto 116:c0f6e94411f5 3883 #define USART_BRR_DIV_FRACTION ((uint32_t)0x0000000F) /*!< Fraction of USARTDIV */
Kojto 116:c0f6e94411f5 3884 #define USART_BRR_DIV_MANTISSA ((uint32_t)0x0000FFF0) /*!< Mantissa of USARTDIV */
Kojto 116:c0f6e94411f5 3885
Kojto 116:c0f6e94411f5 3886 /****************** Bit definition for USART_GTPR register ******************/
Kojto 116:c0f6e94411f5 3887 #define USART_GTPR_PSC ((uint32_t)0x000000FF) /*!< PSC[7:0] bits (Prescaler value) */
Kojto 116:c0f6e94411f5 3888 #define USART_GTPR_GT ((uint32_t)0x0000FF00) /*!< GT[7:0] bits (Guard time value) */
Kojto 116:c0f6e94411f5 3889
Kojto 116:c0f6e94411f5 3890
Kojto 116:c0f6e94411f5 3891 /******************* Bit definition for USART_RTOR register *****************/
Kojto 116:c0f6e94411f5 3892 #define USART_RTOR_RTO ((uint32_t)0x00FFFFFF) /*!< Receiver Time Out Value */
Kojto 116:c0f6e94411f5 3893 #define USART_RTOR_BLEN ((uint32_t)0xFF000000) /*!< Block Length */
Kojto 116:c0f6e94411f5 3894
Kojto 116:c0f6e94411f5 3895 /******************* Bit definition for USART_RQR register ******************/
Kojto 116:c0f6e94411f5 3896 #define USART_RQR_ABRRQ ((uint32_t)0x00000001) /*!< Auto-Baud Rate Request */
Kojto 116:c0f6e94411f5 3897 #define USART_RQR_SBKRQ ((uint32_t)0x00000002) /*!< Send Break Request */
Kojto 116:c0f6e94411f5 3898 #define USART_RQR_MMRQ ((uint32_t)0x00000004) /*!< Mute Mode Request */
Kojto 116:c0f6e94411f5 3899 #define USART_RQR_RXFRQ ((uint32_t)0x00000008) /*!< Receive Data flush Request */
Kojto 116:c0f6e94411f5 3900 #define USART_RQR_TXFRQ ((uint32_t)0x00000010) /*!< Transmit data flush Request */
Kojto 116:c0f6e94411f5 3901
Kojto 116:c0f6e94411f5 3902 /******************* Bit definition for USART_ISR register ******************/
Kojto 116:c0f6e94411f5 3903 #define USART_ISR_PE ((uint32_t)0x00000001) /*!< Parity Error */
Kojto 116:c0f6e94411f5 3904 #define USART_ISR_FE ((uint32_t)0x00000002) /*!< Framing Error */
Kojto 116:c0f6e94411f5 3905 #define USART_ISR_NE ((uint32_t)0x00000004) /*!< Noise detected Flag */
Kojto 116:c0f6e94411f5 3906 #define USART_ISR_ORE ((uint32_t)0x00000008) /*!< OverRun Error */
Kojto 116:c0f6e94411f5 3907 #define USART_ISR_IDLE ((uint32_t)0x00000010) /*!< IDLE line detected */
Kojto 116:c0f6e94411f5 3908 #define USART_ISR_RXNE ((uint32_t)0x00000020) /*!< Read Data Register Not Empty */
Kojto 116:c0f6e94411f5 3909 #define USART_ISR_TC ((uint32_t)0x00000040) /*!< Transmission Complete */
Kojto 116:c0f6e94411f5 3910 #define USART_ISR_TXE ((uint32_t)0x00000080) /*!< Transmit Data Register Empty */
Kojto 116:c0f6e94411f5 3911 #define USART_ISR_LBD ((uint32_t)0x00000100) /*!< LIN Break Detection Flag */
Kojto 116:c0f6e94411f5 3912 #define USART_ISR_CTSIF ((uint32_t)0x00000200) /*!< CTS interrupt flag */
Kojto 116:c0f6e94411f5 3913 #define USART_ISR_CTS ((uint32_t)0x00000400) /*!< CTS flag */
Kojto 116:c0f6e94411f5 3914 #define USART_ISR_RTOF ((uint32_t)0x00000800) /*!< Receiver Time Out */
Kojto 116:c0f6e94411f5 3915 #define USART_ISR_EOBF ((uint32_t)0x00001000) /*!< End Of Block Flag */
Kojto 116:c0f6e94411f5 3916 #define USART_ISR_ABRE ((uint32_t)0x00004000) /*!< Auto-Baud Rate Error */
Kojto 116:c0f6e94411f5 3917 #define USART_ISR_ABRF ((uint32_t)0x00008000) /*!< Auto-Baud Rate Flag */
Kojto 116:c0f6e94411f5 3918 #define USART_ISR_BUSY ((uint32_t)0x00010000) /*!< Busy Flag */
Kojto 116:c0f6e94411f5 3919 #define USART_ISR_CMF ((uint32_t)0x00020000) /*!< Character Match Flag */
Kojto 116:c0f6e94411f5 3920 #define USART_ISR_SBKF ((uint32_t)0x00040000) /*!< Send Break Flag */
Kojto 116:c0f6e94411f5 3921 #define USART_ISR_RWU ((uint32_t)0x00080000) /*!< Receive Wake Up from mute mode Flag */
Kojto 116:c0f6e94411f5 3922 #define USART_ISR_WUF ((uint32_t)0x00100000) /*!< Wake Up from stop mode Flag */
Kojto 116:c0f6e94411f5 3923 #define USART_ISR_TEACK ((uint32_t)0x00200000) /*!< Transmit Enable Acknowledge Flag */
Kojto 116:c0f6e94411f5 3924 #define USART_ISR_REACK ((uint32_t)0x00400000) /*!< Receive Enable Acknowledge Flag */
Kojto 116:c0f6e94411f5 3925
Kojto 116:c0f6e94411f5 3926 /******************* Bit definition for USART_ICR register ******************/
Kojto 116:c0f6e94411f5 3927 #define USART_ICR_PECF ((uint32_t)0x00000001) /*!< Parity Error Clear Flag */
Kojto 116:c0f6e94411f5 3928 #define USART_ICR_FECF ((uint32_t)0x00000002) /*!< Framing Error Clear Flag */
Kojto 116:c0f6e94411f5 3929 #define USART_ICR_NCF ((uint32_t)0x00000004) /*!< Noise detected Clear Flag */
Kojto 116:c0f6e94411f5 3930 #define USART_ICR_ORECF ((uint32_t)0x00000008) /*!< OverRun Error Clear Flag */
Kojto 116:c0f6e94411f5 3931 #define USART_ICR_IDLECF ((uint32_t)0x00000010) /*!< IDLE line detected Clear Flag */
Kojto 116:c0f6e94411f5 3932 #define USART_ICR_TCCF ((uint32_t)0x00000040) /*!< Transmission Complete Clear Flag */
Kojto 116:c0f6e94411f5 3933 #define USART_ICR_LBDCF ((uint32_t)0x00000100) /*!< LIN Break Detection Clear Flag */
Kojto 116:c0f6e94411f5 3934 #define USART_ICR_CTSCF ((uint32_t)0x00000200) /*!< CTS Interrupt Clear Flag */
Kojto 116:c0f6e94411f5 3935 #define USART_ICR_RTOCF ((uint32_t)0x00000800) /*!< Receiver Time Out Clear Flag */
Kojto 116:c0f6e94411f5 3936 #define USART_ICR_EOBCF ((uint32_t)0x00001000) /*!< End Of Block Clear Flag */
Kojto 116:c0f6e94411f5 3937 #define USART_ICR_CMCF ((uint32_t)0x00020000) /*!< Character Match Clear Flag */
Kojto 116:c0f6e94411f5 3938 #define USART_ICR_WUCF ((uint32_t)0x00100000) /*!< Wake Up from stop mode Clear Flag */
Kojto 116:c0f6e94411f5 3939
Kojto 116:c0f6e94411f5 3940 /******************* Bit definition for USART_RDR register ******************/
Kojto 116:c0f6e94411f5 3941 #define USART_RDR_RDR ((uint32_t)0x000001FF) /*!< RDR[8:0] bits (Receive Data value) */
Kojto 116:c0f6e94411f5 3942
Kojto 116:c0f6e94411f5 3943 /******************* Bit definition for USART_TDR register ******************/
Kojto 116:c0f6e94411f5 3944 #define USART_TDR_TDR ((uint32_t)0x000001FF) /*!< TDR[8:0] bits (Transmit Data value) */
Kojto 116:c0f6e94411f5 3945
Kojto 116:c0f6e94411f5 3946 /******************************************************************************/
Kojto 116:c0f6e94411f5 3947 /* */
Kojto 116:c0f6e94411f5 3948 /* USB Device General registers */
Kojto 116:c0f6e94411f5 3949 /* */
Kojto 116:c0f6e94411f5 3950 /******************************************************************************/
Kojto 116:c0f6e94411f5 3951 #define USB_BASE ((uint32_t)0x40005C00) /*!< USB_IP Peripheral Registers base address */
Kojto 116:c0f6e94411f5 3952 #define USB_PMAADDR ((uint32_t)0x40006000) /*!< USB_IP Packet Memory Area base address */
Kojto 116:c0f6e94411f5 3953
Kojto 116:c0f6e94411f5 3954 #define USB_CNTR (USB_BASE + 0x40) /*!< Control register */
Kojto 116:c0f6e94411f5 3955 #define USB_ISTR (USB_BASE + 0x44) /*!< Interrupt status register */
Kojto 116:c0f6e94411f5 3956 #define USB_FNR (USB_BASE + 0x48) /*!< Frame number register */
Kojto 116:c0f6e94411f5 3957 #define USB_DADDR (USB_BASE + 0x4C) /*!< Device address register */
Kojto 116:c0f6e94411f5 3958 #define USB_BTABLE (USB_BASE + 0x50) /*!< Buffer Table address register */
Kojto 116:c0f6e94411f5 3959 #define USB_LPMCSR (USB_BASE + 0x54) /*!< LPM Control and Status register */
Kojto 116:c0f6e94411f5 3960 #define USB_BCDR (USB_BASE + 0x58) /*!< Battery Charging detector register*/
Kojto 116:c0f6e94411f5 3961
Kojto 116:c0f6e94411f5 3962 /**************************** ISTR interrupt events *************************/
Kojto 116:c0f6e94411f5 3963 #define USB_ISTR_CTR ((uint16_t)0x8000) /*!< Correct TRansfer (clear-only bit) */
Kojto 116:c0f6e94411f5 3964 #define USB_ISTR_PMAOVR ((uint16_t)0x4000) /*!< DMA OVeR/underrun (clear-only bit) */
Kojto 116:c0f6e94411f5 3965 #define USB_ISTR_ERR ((uint16_t)0x2000) /*!< ERRor (clear-only bit) */
Kojto 116:c0f6e94411f5 3966 #define USB_ISTR_WKUP ((uint16_t)0x1000) /*!< WaKe UP (clear-only bit) */
Kojto 116:c0f6e94411f5 3967 #define USB_ISTR_SUSP ((uint16_t)0x0800) /*!< SUSPend (clear-only bit) */
Kojto 116:c0f6e94411f5 3968 #define USB_ISTR_RESET ((uint16_t)0x0400) /*!< RESET (clear-only bit) */
Kojto 116:c0f6e94411f5 3969 #define USB_ISTR_SOF ((uint16_t)0x0200) /*!< Start Of Frame (clear-only bit) */
Kojto 116:c0f6e94411f5 3970 #define USB_ISTR_ESOF ((uint16_t)0x0100) /*!< Expected Start Of Frame (clear-only bit) */
Kojto 116:c0f6e94411f5 3971 #define USB_ISTR_L1REQ ((uint16_t)0x0080) /*!< LPM L1 state request */
Kojto 116:c0f6e94411f5 3972 #define USB_ISTR_DIR ((uint16_t)0x0010) /*!< DIRection of transaction (read-only bit) */
Kojto 116:c0f6e94411f5 3973 #define USB_ISTR_EP_ID ((uint16_t)0x000F) /*!< EndPoint IDentifier (read-only bit) */
Kojto 116:c0f6e94411f5 3974
Kojto 116:c0f6e94411f5 3975 #define USB_CLR_CTR (~USB_ISTR_CTR) /*!< clear Correct TRansfer bit */
Kojto 116:c0f6e94411f5 3976 #define USB_CLR_PMAOVR (~USB_ISTR_PMAOVR) /*!< clear DMA OVeR/underrun bit*/
Kojto 116:c0f6e94411f5 3977 #define USB_CLR_ERR (~USB_ISTR_ERR) /*!< clear ERRor bit */
Kojto 116:c0f6e94411f5 3978 #define USB_CLR_WKUP (~USB_ISTR_WKUP) /*!< clear WaKe UP bit */
Kojto 116:c0f6e94411f5 3979 #define USB_CLR_SUSP (~USB_ISTR_SUSP) /*!< clear SUSPend bit */
Kojto 116:c0f6e94411f5 3980 #define USB_CLR_RESET (~USB_ISTR_RESET) /*!< clear RESET bit */
Kojto 116:c0f6e94411f5 3981 #define USB_CLR_SOF (~USB_ISTR_SOF) /*!< clear Start Of Frame bit */
Kojto 116:c0f6e94411f5 3982 #define USB_CLR_ESOF (~USB_ISTR_ESOF) /*!< clear Expected Start Of Frame bit */
Kojto 116:c0f6e94411f5 3983 #define USB_CLR_L1REQ (~USB_ISTR_L1REQ) /*!< clear LPM L1 bit */
Kojto 116:c0f6e94411f5 3984 /************************* CNTR control register bits definitions ***********/
Kojto 116:c0f6e94411f5 3985 #define USB_CNTR_CTRM ((uint16_t)0x8000) /*!< Correct TRansfer Mask */
Kojto 116:c0f6e94411f5 3986 #define USB_CNTR_PMAOVRM ((uint16_t)0x4000) /*!< DMA OVeR/underrun Mask */
Kojto 116:c0f6e94411f5 3987 #define USB_CNTR_ERRM ((uint16_t)0x2000) /*!< ERRor Mask */
Kojto 116:c0f6e94411f5 3988 #define USB_CNTR_WKUPM ((uint16_t)0x1000) /*!< WaKe UP Mask */
Kojto 116:c0f6e94411f5 3989 #define USB_CNTR_SUSPM ((uint16_t)0x0800) /*!< SUSPend Mask */
Kojto 116:c0f6e94411f5 3990 #define USB_CNTR_RESETM ((uint16_t)0x0400) /*!< RESET Mask */
Kojto 116:c0f6e94411f5 3991 #define USB_CNTR_SOFM ((uint16_t)0x0200) /*!< Start Of Frame Mask */
Kojto 116:c0f6e94411f5 3992 #define USB_CNTR_ESOFM ((uint16_t)0x0100) /*!< Expected Start Of Frame Mask */
Kojto 116:c0f6e94411f5 3993 #define USB_CNTR_L1REQM ((uint16_t)0x0080) /*!< LPM L1 state request interrupt mask */
Kojto 116:c0f6e94411f5 3994 #define USB_CNTR_L1RESUME ((uint16_t)0x0020) /*!< LPM L1 Resume request */
Kojto 116:c0f6e94411f5 3995 #define USB_CNTR_RESUME ((uint16_t)0x0010) /*!< RESUME request */
Kojto 116:c0f6e94411f5 3996 #define USB_CNTR_FSUSP ((uint16_t)0x0008) /*!< Force SUSPend */
Kojto 116:c0f6e94411f5 3997 #define USB_CNTR_LPMODE ((uint16_t)0x0004) /*!< Low-power MODE */
Kojto 116:c0f6e94411f5 3998 #define USB_CNTR_PDWN ((uint16_t)0x0002) /*!< Power DoWN */
Kojto 116:c0f6e94411f5 3999 #define USB_CNTR_FRES ((uint16_t)0x0001) /*!< Force USB RESet */
Kojto 116:c0f6e94411f5 4000 /************************* BCDR control register bits definitions ***********/
Kojto 116:c0f6e94411f5 4001 #define USB_BCDR_DPPU ((uint16_t)0x8000) /*!< DP Pull-up Enable */
Kojto 116:c0f6e94411f5 4002 #define USB_BCDR_PS2DET ((uint16_t)0x0080) /*!< PS2 port or proprietary charger detected */
Kojto 116:c0f6e94411f5 4003 #define USB_BCDR_SDET ((uint16_t)0x0040) /*!< Secondary detection (SD) status */
Kojto 116:c0f6e94411f5 4004 #define USB_BCDR_PDET ((uint16_t)0x0020) /*!< Primary detection (PD) status */
Kojto 116:c0f6e94411f5 4005 #define USB_BCDR_DCDET ((uint16_t)0x0010) /*!< Data contact detection (DCD) status */
Kojto 116:c0f6e94411f5 4006 #define USB_BCDR_SDEN ((uint16_t)0x0008) /*!< Secondary detection (SD) mode enable */
Kojto 116:c0f6e94411f5 4007 #define USB_BCDR_PDEN ((uint16_t)0x0004) /*!< Primary detection (PD) mode enable */
Kojto 116:c0f6e94411f5 4008 #define USB_BCDR_DCDEN ((uint16_t)0x0002) /*!< Data contact detection (DCD) mode enable */
Kojto 116:c0f6e94411f5 4009 #define USB_BCDR_BCDEN ((uint16_t)0x0001) /*!< Battery charging detector (BCD) enable */
Kojto 116:c0f6e94411f5 4010 /*************************** LPM register bits definitions ******************/
Kojto 116:c0f6e94411f5 4011 #define USB_LPMCSR_BESL ((uint16_t)0x00F0) /*!< BESL value received with last ACKed LPM Token */
Kojto 116:c0f6e94411f5 4012 #define USB_LPMCSR_REMWAKE ((uint16_t)0x0008) /*!< bRemoteWake value received with last ACKed LPM Token */
Kojto 116:c0f6e94411f5 4013 #define USB_LPMCSR_LPMACK ((uint16_t)0x0002) /*!< LPM Token acknowledge enable*/
Kojto 116:c0f6e94411f5 4014 #define USB_LPMCSR_LMPEN ((uint16_t)0x0001) /*!< LPM support enable */
Kojto 116:c0f6e94411f5 4015 /******************** FNR Frame Number Register bit definitions ************/
Kojto 116:c0f6e94411f5 4016 #define USB_FNR_RXDP ((uint16_t)0x8000) /*!< status of D+ data line */
Kojto 116:c0f6e94411f5 4017 #define USB_FNR_RXDM ((uint16_t)0x4000) /*!< status of D- data line */
Kojto 116:c0f6e94411f5 4018 #define USB_FNR_LCK ((uint16_t)0x2000) /*!< LoCKed */
Kojto 116:c0f6e94411f5 4019 #define USB_FNR_LSOF ((uint16_t)0x1800) /*!< Lost SOF */
Kojto 116:c0f6e94411f5 4020 #define USB_FNR_FN ((uint16_t)0x07FF) /*!< Frame Number */
Kojto 116:c0f6e94411f5 4021 /******************** DADDR Device ADDRess bit definitions ****************/
Kojto 116:c0f6e94411f5 4022 #define USB_DADDR_EF ((uint8_t)0x80) /*!< USB device address Enable Function */
Kojto 116:c0f6e94411f5 4023 #define USB_DADDR_ADD ((uint8_t)0x7F) /*!< USB device address */
Kojto 116:c0f6e94411f5 4024 /****************************** Endpoint register *************************/
Kojto 116:c0f6e94411f5 4025 #define USB_EP0R USB_BASE /*!< endpoint 0 register address */
Kojto 116:c0f6e94411f5 4026 #define USB_EP1R (USB_BASE + 0x04) /*!< endpoint 1 register address */
Kojto 116:c0f6e94411f5 4027 #define USB_EP2R (USB_BASE + 0x08) /*!< endpoint 2 register address */
Kojto 116:c0f6e94411f5 4028 #define USB_EP3R (USB_BASE + 0x0C) /*!< endpoint 3 register address */
Kojto 116:c0f6e94411f5 4029 #define USB_EP4R (USB_BASE + 0x10) /*!< endpoint 4 register address */
Kojto 116:c0f6e94411f5 4030 #define USB_EP5R (USB_BASE + 0x14) /*!< endpoint 5 register address */
Kojto 116:c0f6e94411f5 4031 #define USB_EP6R (USB_BASE + 0x18) /*!< endpoint 6 register address */
Kojto 116:c0f6e94411f5 4032 #define USB_EP7R (USB_BASE + 0x1C) /*!< endpoint 7 register address */
Kojto 116:c0f6e94411f5 4033 /* bit positions */
Kojto 116:c0f6e94411f5 4034 #define USB_EP_CTR_RX ((uint16_t)0x8000) /*!< EndPoint Correct TRansfer RX */
Kojto 116:c0f6e94411f5 4035 #define USB_EP_DTOG_RX ((uint16_t)0x4000) /*!< EndPoint Data TOGGLE RX */
Kojto 116:c0f6e94411f5 4036 #define USB_EPRX_STAT ((uint16_t)0x3000) /*!< EndPoint RX STATus bit field */
Kojto 116:c0f6e94411f5 4037 #define USB_EP_SETUP ((uint16_t)0x0800) /*!< EndPoint SETUP */
Kojto 116:c0f6e94411f5 4038 #define USB_EP_T_FIELD ((uint16_t)0x0600) /*!< EndPoint TYPE */
Kojto 116:c0f6e94411f5 4039 #define USB_EP_KIND ((uint16_t)0x0100) /*!< EndPoint KIND */
Kojto 116:c0f6e94411f5 4040 #define USB_EP_CTR_TX ((uint16_t)0x0080) /*!< EndPoint Correct TRansfer TX */
Kojto 116:c0f6e94411f5 4041 #define USB_EP_DTOG_TX ((uint16_t)0x0040) /*!< EndPoint Data TOGGLE TX */
Kojto 116:c0f6e94411f5 4042 #define USB_EPTX_STAT ((uint16_t)0x0030) /*!< EndPoint TX STATus bit field */
Kojto 116:c0f6e94411f5 4043 #define USB_EPADDR_FIELD ((uint16_t)0x000F) /*!< EndPoint ADDRess FIELD */
Kojto 116:c0f6e94411f5 4044
Kojto 116:c0f6e94411f5 4045 /* EndPoint REGister MASK (no toggle fields) */
Kojto 116:c0f6e94411f5 4046 #define USB_EPREG_MASK (USB_EP_CTR_RX|USB_EP_SETUP|USB_EP_T_FIELD|USB_EP_KIND|USB_EP_CTR_TX|USB_EPADDR_FIELD)
Kojto 116:c0f6e94411f5 4047 /*!< EP_TYPE[1:0] EndPoint TYPE */
Kojto 116:c0f6e94411f5 4048 #define USB_EP_TYPE_MASK ((uint16_t)0x0600) /*!< EndPoint TYPE Mask */
Kojto 116:c0f6e94411f5 4049 #define USB_EP_BULK ((uint16_t)0x0000) /*!< EndPoint BULK */
Kojto 116:c0f6e94411f5 4050 #define USB_EP_CONTROL ((uint16_t)0x0200) /*!< EndPoint CONTROL */
Kojto 116:c0f6e94411f5 4051 #define USB_EP_ISOCHRONOUS ((uint16_t)0x0400) /*!< EndPoint ISOCHRONOUS */
Kojto 116:c0f6e94411f5 4052 #define USB_EP_INTERRUPT ((uint16_t)0x0600) /*!< EndPoint INTERRUPT */
Kojto 116:c0f6e94411f5 4053 #define USB_EP_T_MASK (~USB_EP_T_FIELD & USB_EPREG_MASK)
Kojto 116:c0f6e94411f5 4054
Kojto 116:c0f6e94411f5 4055 #define USB_EPKIND_MASK (~USB_EP_KIND & USB_EPREG_MASK) /*!< EP_KIND EndPoint KIND */
Kojto 116:c0f6e94411f5 4056 /*!< STAT_TX[1:0] STATus for TX transfer */
Kojto 116:c0f6e94411f5 4057 #define USB_EP_TX_DIS ((uint16_t)0x0000) /*!< EndPoint TX DISabled */
Kojto 116:c0f6e94411f5 4058 #define USB_EP_TX_STALL ((uint16_t)0x0010) /*!< EndPoint TX STALLed */
Kojto 116:c0f6e94411f5 4059 #define USB_EP_TX_NAK ((uint16_t)0x0020) /*!< EndPoint TX NAKed */
Kojto 116:c0f6e94411f5 4060 #define USB_EP_TX_VALID ((uint16_t)0x0030) /*!< EndPoint TX VALID */
Kojto 116:c0f6e94411f5 4061 #define USB_EPTX_DTOG1 ((uint16_t)0x0010) /*!< EndPoint TX Data TOGgle bit1 */
Kojto 116:c0f6e94411f5 4062 #define USB_EPTX_DTOG2 ((uint16_t)0x0020) /*!< EndPoint TX Data TOGgle bit2 */
Kojto 116:c0f6e94411f5 4063 #define USB_EPTX_DTOGMASK (USB_EPTX_STAT|USB_EPREG_MASK)
Kojto 116:c0f6e94411f5 4064 /*!< STAT_RX[1:0] STATus for RX transfer */
Kojto 116:c0f6e94411f5 4065 #define USB_EP_RX_DIS ((uint16_t)0x0000) /*!< EndPoint RX DISabled */
Kojto 116:c0f6e94411f5 4066 #define USB_EP_RX_STALL ((uint16_t)0x1000) /*!< EndPoint RX STALLed */
Kojto 116:c0f6e94411f5 4067 #define USB_EP_RX_NAK ((uint16_t)0x2000) /*!< EndPoint RX NAKed */
Kojto 116:c0f6e94411f5 4068 #define USB_EP_RX_VALID ((uint16_t)0x3000) /*!< EndPoint RX VALID */
Kojto 116:c0f6e94411f5 4069 #define USB_EPRX_DTOG1 ((uint16_t)0x1000) /*!< EndPoint RX Data TOGgle bit1 */
Kojto 116:c0f6e94411f5 4070 #define USB_EPRX_DTOG2 ((uint16_t)0x2000) /*!< EndPoint RX Data TOGgle bit1 */
Kojto 116:c0f6e94411f5 4071 #define USB_EPRX_DTOGMASK (USB_EPRX_STAT|USB_EPREG_MASK)
Kojto 116:c0f6e94411f5 4072
Kojto 116:c0f6e94411f5 4073 /******************************************************************************/
Kojto 116:c0f6e94411f5 4074 /* */
Kojto 116:c0f6e94411f5 4075 /* Window WATCHDOG (WWDG) */
Kojto 116:c0f6e94411f5 4076 /* */
Kojto 116:c0f6e94411f5 4077 /******************************************************************************/
Kojto 116:c0f6e94411f5 4078
Kojto 116:c0f6e94411f5 4079 /******************* Bit definition for WWDG_CR register ********************/
Kojto 116:c0f6e94411f5 4080 #define WWDG_CR_T ((uint32_t)0x0000007F) /*!< T[6:0] bits (7-Bit counter (MSB to LSB)) */
Kojto 116:c0f6e94411f5 4081 #define WWDG_CR_T0 ((uint32_t)0x00000001) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 4082 #define WWDG_CR_T1 ((uint32_t)0x00000002) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 4083 #define WWDG_CR_T2 ((uint32_t)0x00000004) /*!< Bit 2 */
Kojto 116:c0f6e94411f5 4084 #define WWDG_CR_T3 ((uint32_t)0x00000008) /*!< Bit 3 */
Kojto 116:c0f6e94411f5 4085 #define WWDG_CR_T4 ((uint32_t)0x00000010) /*!< Bit 4 */
Kojto 116:c0f6e94411f5 4086 #define WWDG_CR_T5 ((uint32_t)0x00000020) /*!< Bit 5 */
Kojto 116:c0f6e94411f5 4087 #define WWDG_CR_T6 ((uint32_t)0x00000040) /*!< Bit 6 */
Kojto 116:c0f6e94411f5 4088
Kojto 116:c0f6e94411f5 4089 #define WWDG_CR_WDGA ((uint32_t)0x00000080) /*!< Activation bit */
Kojto 116:c0f6e94411f5 4090
Kojto 116:c0f6e94411f5 4091 /******************* Bit definition for WWDG_CFR register *******************/
Kojto 116:c0f6e94411f5 4092 #define WWDG_CFR_W ((uint32_t)0x0000007F) /*!< W[6:0] bits (7-bit window value) */
Kojto 116:c0f6e94411f5 4093 #define WWDG_CFR_W0 ((uint32_t)0x00000001) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 4094 #define WWDG_CFR_W1 ((uint32_t)0x00000002) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 4095 #define WWDG_CFR_W2 ((uint32_t)0x00000004) /*!< Bit 2 */
Kojto 116:c0f6e94411f5 4096 #define WWDG_CFR_W3 ((uint32_t)0x00000008) /*!< Bit 3 */
Kojto 116:c0f6e94411f5 4097 #define WWDG_CFR_W4 ((uint32_t)0x00000010) /*!< Bit 4 */
Kojto 116:c0f6e94411f5 4098 #define WWDG_CFR_W5 ((uint32_t)0x00000020) /*!< Bit 5 */
Kojto 116:c0f6e94411f5 4099 #define WWDG_CFR_W6 ((uint32_t)0x00000040) /*!< Bit 6 */
Kojto 116:c0f6e94411f5 4100
Kojto 116:c0f6e94411f5 4101 #define WWDG_CFR_WDGTB ((uint32_t)0x00000180) /*!< WDGTB[1:0] bits (Timer Base) */
Kojto 116:c0f6e94411f5 4102 #define WWDG_CFR_WDGTB0 ((uint32_t)0x00000080) /*!< Bit 0 */
Kojto 116:c0f6e94411f5 4103 #define WWDG_CFR_WDGTB1 ((uint32_t)0x00000100) /*!< Bit 1 */
Kojto 116:c0f6e94411f5 4104
Kojto 116:c0f6e94411f5 4105 #define WWDG_CFR_EWI ((uint32_t)0x00000200) /*!< Early Wakeup Interrupt */
Kojto 116:c0f6e94411f5 4106
Kojto 116:c0f6e94411f5 4107 /******************* Bit definition for WWDG_SR register ********************/
Kojto 116:c0f6e94411f5 4108 #define WWDG_SR_EWIF ((uint32_t)0x00000001) /*!< Early Wakeup Interrupt Flag */
Kojto 116:c0f6e94411f5 4109
Kojto 116:c0f6e94411f5 4110 /**
Kojto 116:c0f6e94411f5 4111 * @}
Kojto 116:c0f6e94411f5 4112 */
Kojto 116:c0f6e94411f5 4113
Kojto 116:c0f6e94411f5 4114 /**
Kojto 116:c0f6e94411f5 4115 * @}
Kojto 116:c0f6e94411f5 4116 */
Kojto 116:c0f6e94411f5 4117
Kojto 116:c0f6e94411f5 4118 /** @addtogroup Exported_macros
Kojto 116:c0f6e94411f5 4119 * @{
Kojto 116:c0f6e94411f5 4120 */
Kojto 116:c0f6e94411f5 4121
Kojto 116:c0f6e94411f5 4122 /******************************* ADC Instances ********************************/
Kojto 116:c0f6e94411f5 4123 #define IS_ADC_ALL_INSTANCE(INSTANCE) ((INSTANCE) == ADC1)
Kojto 116:c0f6e94411f5 4124
Kojto 116:c0f6e94411f5 4125 /******************************* COMP Instances *******************************/
Kojto 116:c0f6e94411f5 4126 #define IS_COMP_ALL_INSTANCE(INSTANCE) (((INSTANCE) == COMP1) || \
Kojto 116:c0f6e94411f5 4127 ((INSTANCE) == COMP2))
Kojto 116:c0f6e94411f5 4128
Kojto 116:c0f6e94411f5 4129 /******************************* CRC Instances ********************************/
Kojto 116:c0f6e94411f5 4130 #define IS_CRC_ALL_INSTANCE(INSTANCE) ((INSTANCE) == CRC)
Kojto 116:c0f6e94411f5 4131
Kojto 116:c0f6e94411f5 4132 /******************************* DAC Instances *********************************/
Kojto 116:c0f6e94411f5 4133 #define IS_DAC_ALL_INSTANCE(INSTANCE) ((INSTANCE) == DAC)
Kojto 116:c0f6e94411f5 4134
Kojto 116:c0f6e94411f5 4135 /******************************* DMA Instances *********************************/
Kojto 116:c0f6e94411f5 4136 #define IS_DMA_STREAM_ALL_INSTANCE(INSTANCE) (((INSTANCE) == DMA1_Stream0) || \
Kojto 116:c0f6e94411f5 4137 ((INSTANCE) == DMA1_Stream1) || \
Kojto 116:c0f6e94411f5 4138 ((INSTANCE) == DMA1_Stream2) || \
Kojto 116:c0f6e94411f5 4139 ((INSTANCE) == DMA1_Stream3) || \
Kojto 116:c0f6e94411f5 4140 ((INSTANCE) == DMA1_Stream4) || \
Kojto 116:c0f6e94411f5 4141 ((INSTANCE) == DMA1_Stream5) || \
Kojto 116:c0f6e94411f5 4142 ((INSTANCE) == DMA1_Stream6) || \
Kojto 116:c0f6e94411f5 4143 ((INSTANCE) == DMA1_Stream7))
Kojto 116:c0f6e94411f5 4144
Kojto 116:c0f6e94411f5 4145 /******************************* GPIO Instances *******************************/
Kojto 116:c0f6e94411f5 4146 #define IS_GPIO_ALL_INSTANCE(INSTANCE) (((INSTANCE) == GPIOA) || \
Kojto 116:c0f6e94411f5 4147 ((INSTANCE) == GPIOB) || \
Kojto 116:c0f6e94411f5 4148 ((INSTANCE) == GPIOC) || \
Kojto 116:c0f6e94411f5 4149 ((INSTANCE) == GPIOD) || \
Kojto 116:c0f6e94411f5 4150 ((INSTANCE) == GPIOE) || \
Kojto 116:c0f6e94411f5 4151 ((INSTANCE) == GPIOH))
Kojto 116:c0f6e94411f5 4152
Kojto 116:c0f6e94411f5 4153 /******************************** I2C Instances *******************************/
Kojto 116:c0f6e94411f5 4154 #define IS_I2C_ALL_INSTANCE(INSTANCE) (((INSTANCE) == I2C1) || \
Kojto 116:c0f6e94411f5 4155 ((INSTANCE) == I2C2) || \
Kojto 116:c0f6e94411f5 4156 ((INSTANCE) == I2C3))
Kojto 116:c0f6e94411f5 4157
Kojto 116:c0f6e94411f5 4158 /******************************** I2S Instances *******************************/
Kojto 116:c0f6e94411f5 4159 #define IS_I2S_ALL_INSTANCE(INSTANCE) ((INSTANCE) == SPI2)
Kojto 116:c0f6e94411f5 4160
Kojto 116:c0f6e94411f5 4161 /******************************* RNG Instances ********************************/
Kojto 116:c0f6e94411f5 4162 #define IS_RNG_ALL_INSTANCE(INSTANCE) ((INSTANCE) == RNG)
Kojto 116:c0f6e94411f5 4163
Kojto 116:c0f6e94411f5 4164 /****************************** RTC Instances *********************************/
Kojto 116:c0f6e94411f5 4165 #define IS_RTC_ALL_INSTANCE(INSTANCE) ((INSTANCE) == RTC)
Kojto 116:c0f6e94411f5 4166
Kojto 116:c0f6e94411f5 4167 /******************************** SMBUS Instances *****************************/
Kojto 116:c0f6e94411f5 4168 #define IS_SMBUS_INSTANCE(INSTANCE) (((INSTANCE) == I2C1) || \
Kojto 116:c0f6e94411f5 4169 ((INSTANCE) == I2C3))
Kojto 116:c0f6e94411f5 4170
Kojto 116:c0f6e94411f5 4171 /******************************** SPI Instances *******************************/
Kojto 116:c0f6e94411f5 4172 #define IS_SPI_ALL_INSTANCE(INSTANCE) (((INSTANCE) == SPI1) || \
Kojto 116:c0f6e94411f5 4173 ((INSTANCE) == SPI2))
Kojto 116:c0f6e94411f5 4174
Kojto 116:c0f6e94411f5 4175 /****************** LPTIM Instances : All supported instances *****************/
Kojto 116:c0f6e94411f5 4176 #define IS_LPTIM_INSTANCE(INSTANCE) ((INSTANCE) == LPTIM1)
Kojto 116:c0f6e94411f5 4177
Kojto 116:c0f6e94411f5 4178 /****************** TIM Instances : All supported instances *******************/
Kojto 116:c0f6e94411f5 4179 #define IS_TIM_INSTANCE(INSTANCE) (((INSTANCE) == TIM2) || \
Kojto 116:c0f6e94411f5 4180 ((INSTANCE) == TIM3) || \
Kojto 116:c0f6e94411f5 4181 ((INSTANCE) == TIM6) || \
Kojto 116:c0f6e94411f5 4182 ((INSTANCE) == TIM7) || \
Kojto 116:c0f6e94411f5 4183 ((INSTANCE) == TIM21) || \
Kojto 116:c0f6e94411f5 4184 ((INSTANCE) == TIM22))
Kojto 116:c0f6e94411f5 4185
Kojto 116:c0f6e94411f5 4186 /************* TIM Instances : at least 1 capture/compare channel *************/
Kojto 116:c0f6e94411f5 4187 #define IS_TIM_CC1_INSTANCE(INSTANCE) (((INSTANCE) == TIM2) || \
Kojto 116:c0f6e94411f5 4188 ((INSTANCE) == TIM3) || \
Kojto 116:c0f6e94411f5 4189 ((INSTANCE) == TIM21) || \
Kojto 116:c0f6e94411f5 4190 ((INSTANCE) == TIM22))
Kojto 116:c0f6e94411f5 4191
Kojto 116:c0f6e94411f5 4192 /************ TIM Instances : at least 2 capture/compare channels *************/
Kojto 116:c0f6e94411f5 4193 #define IS_TIM_CC2_INSTANCE(INSTANCE) (((INSTANCE) == TIM2) || \
Kojto 116:c0f6e94411f5 4194 ((INSTANCE) == TIM3) || \
Kojto 116:c0f6e94411f5 4195 ((INSTANCE) == TIM21) || \
Kojto 116:c0f6e94411f5 4196 ((INSTANCE) == TIM22))
Kojto 116:c0f6e94411f5 4197
Kojto 116:c0f6e94411f5 4198 /************ TIM Instances : at least 3 capture/compare channels *************/
Kojto 116:c0f6e94411f5 4199 #define IS_TIM_CC3_INSTANCE(INSTANCE) (((INSTANCE) == TIM2) || \
Kojto 116:c0f6e94411f5 4200 ((INSTANCE) == TIM3))
Kojto 116:c0f6e94411f5 4201
Kojto 116:c0f6e94411f5 4202 /************ TIM Instances : at least 4 capture/compare channels *************/
Kojto 116:c0f6e94411f5 4203 #define IS_TIM_CC4_INSTANCE(INSTANCE) (((INSTANCE) == TIM2) || \
Kojto 116:c0f6e94411f5 4204 ((INSTANCE) == TIM3))
Kojto 116:c0f6e94411f5 4205
Kojto 116:c0f6e94411f5 4206 /******************** TIM Instances : Advanced-control timers *****************/
Kojto 116:c0f6e94411f5 4207
Kojto 116:c0f6e94411f5 4208 /******************* TIM Instances : Timer input XOR function *****************/
Kojto 116:c0f6e94411f5 4209 #define IS_TIM_XOR_INSTANCE(INSTANCE) (((INSTANCE) == TIM2) || \
Kojto 116:c0f6e94411f5 4210 ((INSTANCE) == TIM3))
Kojto 116:c0f6e94411f5 4211
Kojto 116:c0f6e94411f5 4212 /****************** TIM Instances : DMA requests generation (UDE) *************/
Kojto 116:c0f6e94411f5 4213 #define IS_TIM_DMA_INSTANCE(INSTANCE) (((INSTANCE) == TIM2) || \
Kojto 116:c0f6e94411f5 4214 ((INSTANCE) == TIM3) || \
Kojto 116:c0f6e94411f5 4215 ((INSTANCE) == TIM6) || \
Kojto 116:c0f6e94411f5 4216 ((INSTANCE) == TIM7))
Kojto 116:c0f6e94411f5 4217
Kojto 116:c0f6e94411f5 4218 /************ TIM Instances : DMA requests generation (CCxDE) *****************/
Kojto 116:c0f6e94411f5 4219 #define IS_TIM_DMA_CC_INSTANCE(INSTANCE) (((INSTANCE) == TIM2) || \
Kojto 116:c0f6e94411f5 4220 ((INSTANCE) == TIM3))
Kojto 116:c0f6e94411f5 4221
Kojto 116:c0f6e94411f5 4222 /************ TIM Instances : DMA requests generation (COMDE) *****************/
Kojto 116:c0f6e94411f5 4223 #define IS_TIM_CCDMA_INSTANCE(INSTANCE) (((INSTANCE) == TIM2) || \
Kojto 116:c0f6e94411f5 4224 (INSTANCE) == TIM3))
Kojto 116:c0f6e94411f5 4225
Kojto 116:c0f6e94411f5 4226 /******************** TIM Instances : DMA burst feature ***********************/
Kojto 116:c0f6e94411f5 4227 #define IS_TIM_DMABURST_INSTANCE(INSTANCE) (((INSTANCE) == TIM2) || \
Kojto 116:c0f6e94411f5 4228 ((INSTANCE) == TIM3))
Kojto 116:c0f6e94411f5 4229
Kojto 116:c0f6e94411f5 4230 /****** TIM Instances : master mode available (TIMx_CR2.MMS available )********/
Kojto 116:c0f6e94411f5 4231 #define IS_TIM_MASTER_INSTANCE(INSTANCE) (((INSTANCE) == TIM2) || \
Kojto 116:c0f6e94411f5 4232 ((INSTANCE) == TIM3) || \
Kojto 116:c0f6e94411f5 4233 ((INSTANCE) == TIM6) || \
Kojto 116:c0f6e94411f5 4234 ((INSTANCE) == TIM7) || \
Kojto 116:c0f6e94411f5 4235 ((INSTANCE) == TIM21) || \
Kojto 116:c0f6e94411f5 4236 ((INSTANCE) == TIM22))
Kojto 116:c0f6e94411f5 4237
Kojto 116:c0f6e94411f5 4238 /*********** TIM Instances : Slave mode available (TIMx_SMCR available )*******/
Kojto 116:c0f6e94411f5 4239 #define IS_TIM_SLAVE_INSTANCE(INSTANCE) (((INSTANCE) == TIM2) || \
Kojto 116:c0f6e94411f5 4240 ((INSTANCE) == TIM3) || \
Kojto 116:c0f6e94411f5 4241 ((INSTANCE) == TIM21) || \
Kojto 116:c0f6e94411f5 4242 ((INSTANCE) == TIM22))
Kojto 116:c0f6e94411f5 4243
Kojto 116:c0f6e94411f5 4244 /********************** TIM Instances : 32 bit Counter ************************/
Kojto 116:c0f6e94411f5 4245
Kojto 116:c0f6e94411f5 4246 /***************** TIM Instances : external trigger input availabe ************/
Kojto 116:c0f6e94411f5 4247 #define IS_TIM_ETR_INSTANCE(INSTANCE) (((INSTANCE) == TIM2) || \
Kojto 116:c0f6e94411f5 4248 ((INSTANCE) == TIM3) || \
Kojto 116:c0f6e94411f5 4249 ((INSTANCE) == TIM21) || \
Kojto 116:c0f6e94411f5 4250 ((INSTANCE) == TIM22))
Kojto 116:c0f6e94411f5 4251
Kojto 116:c0f6e94411f5 4252 /****************** TIM Instances : remapping capability **********************/
Kojto 116:c0f6e94411f5 4253 #define IS_TIM_REMAP_INSTANCE(INSTANCE) (((INSTANCE) == TIM2) || \
Kojto 116:c0f6e94411f5 4254 ((INSTANCE) == TIM3) || \
Kojto 116:c0f6e94411f5 4255 ((INSTANCE) == TIM21) || \
Kojto 116:c0f6e94411f5 4256 ((INSTANCE) == TIM22))
Kojto 116:c0f6e94411f5 4257
Kojto 116:c0f6e94411f5 4258 /******************* TIM Instances : output(s) available **********************/
Kojto 116:c0f6e94411f5 4259 #define IS_TIM_CCX_INSTANCE(INSTANCE, CHANNEL) \
Kojto 116:c0f6e94411f5 4260 (((((INSTANCE) == TIM2) || \
Kojto 116:c0f6e94411f5 4261 ((INSTANCE) == TIM3)) \
Kojto 116:c0f6e94411f5 4262 && \
Kojto 116:c0f6e94411f5 4263 (((CHANNEL) == TIM_CHANNEL_1) || \
Kojto 116:c0f6e94411f5 4264 ((CHANNEL) == TIM_CHANNEL_2) || \
Kojto 116:c0f6e94411f5 4265 ((CHANNEL) == TIM_CHANNEL_3) || \
Kojto 116:c0f6e94411f5 4266 ((CHANNEL) == TIM_CHANNEL_4))) \
Kojto 116:c0f6e94411f5 4267 || \
Kojto 116:c0f6e94411f5 4268 (((INSTANCE) == TIM21) && \
Kojto 116:c0f6e94411f5 4269 (((CHANNEL) == TIM_CHANNEL_1) || \
Kojto 116:c0f6e94411f5 4270 ((CHANNEL) == TIM_CHANNEL_2))) \
Kojto 116:c0f6e94411f5 4271 || \
Kojto 116:c0f6e94411f5 4272 (((INSTANCE) == TIM22) && \
Kojto 116:c0f6e94411f5 4273 (((CHANNEL) == TIM_CHANNEL_1) || \
Kojto 116:c0f6e94411f5 4274 ((CHANNEL) == TIM_CHANNEL_2))))
Kojto 116:c0f6e94411f5 4275
Kojto 116:c0f6e94411f5 4276 /******************** UART Instances : Asynchronous mode **********************/
Kojto 116:c0f6e94411f5 4277 #define IS_UART_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
Kojto 116:c0f6e94411f5 4278 ((INSTANCE) == USART2) || \
Kojto 116:c0f6e94411f5 4279 ((INSTANCE) == USART4) || \
Kojto 116:c0f6e94411f5 4280 ((INSTANCE) == USART5) || \
Kojto 116:c0f6e94411f5 4281 ((INSTANCE) == LPUART1))
Kojto 116:c0f6e94411f5 4282
Kojto 116:c0f6e94411f5 4283 /******************** USART Instances : Synchronous mode **********************/
Kojto 116:c0f6e94411f5 4284 #define IS_USART_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
Kojto 116:c0f6e94411f5 4285 ((INSTANCE) == USART2) || \
Kojto 116:c0f6e94411f5 4286 ((INSTANCE) == USART4) || \
Kojto 116:c0f6e94411f5 4287 ((INSTANCE) == USART5))
Kojto 116:c0f6e94411f5 4288
Kojto 116:c0f6e94411f5 4289 /****************** USART Instances : Auto Baud Rate detection ****************/
Kojto 116:c0f6e94411f5 4290
Kojto 116:c0f6e94411f5 4291 #define IS_USART_AUTOBAUDRATE_DETECTION_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
Kojto 116:c0f6e94411f5 4292 ((INSTANCE) == USART2))
Kojto 116:c0f6e94411f5 4293
Kojto 116:c0f6e94411f5 4294 /******************** UART Instances : Half-Duplex mode **********************/
Kojto 116:c0f6e94411f5 4295 #define IS_UART_HALFDUPLEX_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
Kojto 116:c0f6e94411f5 4296 ((INSTANCE) == USART2) || \
Kojto 116:c0f6e94411f5 4297 ((INSTANCE) == USART4) || \
Kojto 116:c0f6e94411f5 4298 ((INSTANCE) == USART5) || \
Kojto 116:c0f6e94411f5 4299 ((INSTANCE) == LPUART1))
Kojto 116:c0f6e94411f5 4300
Kojto 116:c0f6e94411f5 4301 /******************** UART Instances : LIN mode **********************/
Kojto 116:c0f6e94411f5 4302 #define IS_UART_LIN_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
Kojto 116:c0f6e94411f5 4303 ((INSTANCE) == USART2))
Kojto 116:c0f6e94411f5 4304
Kojto 116:c0f6e94411f5 4305 /******************** UART Instances : Wake-up from Stop mode **********************/
Kojto 116:c0f6e94411f5 4306
Kojto 116:c0f6e94411f5 4307 #define IS_UART_WAKEUP_FROMSTOP_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
Kojto 116:c0f6e94411f5 4308 ((INSTANCE) == USART2) || \
Kojto 116:c0f6e94411f5 4309 ((INSTANCE) == LPUART1))
Kojto 116:c0f6e94411f5 4310
Kojto 116:c0f6e94411f5 4311 /****************** UART Instances : Hardware Flow control ********************/
Kojto 116:c0f6e94411f5 4312 #define IS_UART_HWFLOW_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
Kojto 116:c0f6e94411f5 4313 ((INSTANCE) == USART2) || \
Kojto 116:c0f6e94411f5 4314 ((INSTANCE) == USART4) || \
Kojto 116:c0f6e94411f5 4315 ((INSTANCE) == USART5) || \
Kojto 116:c0f6e94411f5 4316 ((INSTANCE) == LPUART1))
Kojto 116:c0f6e94411f5 4317
Kojto 116:c0f6e94411f5 4318 /********************* UART Instances : Smard card mode ***********************/
Kojto 116:c0f6e94411f5 4319 #define IS_SMARTCARD_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
Kojto 116:c0f6e94411f5 4320 ((INSTANCE) == USART2))
Kojto 116:c0f6e94411f5 4321
Kojto 116:c0f6e94411f5 4322 /*********************** UART Instances : IRDA mode ***************************/
Kojto 116:c0f6e94411f5 4323 #define IS_IRDA_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
Kojto 116:c0f6e94411f5 4324 ((INSTANCE) == USART2))
Kojto 116:c0f6e94411f5 4325
Kojto 116:c0f6e94411f5 4326 /****************************** IWDG Instances ********************************/
Kojto 116:c0f6e94411f5 4327 #define IS_IWDG_ALL_INSTANCE(INSTANCE) ((INSTANCE) == IWDG)
Kojto 116:c0f6e94411f5 4328
Kojto 116:c0f6e94411f5 4329 /****************************** USB Instances ********************************/
Kojto 116:c0f6e94411f5 4330 #define IS_USB_ALL_INSTANCE(INSTANCE) ((INSTANCE) == USB)
Kojto 116:c0f6e94411f5 4331
Kojto 116:c0f6e94411f5 4332 /****************************** WWDG Instances ********************************/
Kojto 116:c0f6e94411f5 4333 #define IS_WWDG_ALL_INSTANCE(INSTANCE) ((INSTANCE) == WWDG)
Kojto 116:c0f6e94411f5 4334
Kojto 116:c0f6e94411f5 4335 /****************************** LCD Instances ********************************/
Kojto 116:c0f6e94411f5 4336 #define IS_LCD_ALL_INSTANCE(INSTANCE) ((INSTANCE) == LCD)
Kojto 116:c0f6e94411f5 4337
Kojto 116:c0f6e94411f5 4338 /**
Kojto 116:c0f6e94411f5 4339 * @}
Kojto 116:c0f6e94411f5 4340 */
Kojto 116:c0f6e94411f5 4341
Kojto 116:c0f6e94411f5 4342 /******************************************************************************/
Kojto 116:c0f6e94411f5 4343 /* For a painless codes migration between the STM32L0xx device product */
Kojto 116:c0f6e94411f5 4344 /* lines, the aliases defined below are put in place to overcome the */
Kojto 116:c0f6e94411f5 4345 /* differences in the interrupt handlers and IRQn definitions. */
Kojto 116:c0f6e94411f5 4346 /* No need to update developed interrupt code when moving across */
Kojto 116:c0f6e94411f5 4347 /* product lines within the same STM32L0 Family */
Kojto 116:c0f6e94411f5 4348 /******************************************************************************/
Kojto 116:c0f6e94411f5 4349
Kojto 116:c0f6e94411f5 4350 /* Aliases for __IRQn */
Kojto 116:c0f6e94411f5 4351
Kojto 116:c0f6e94411f5 4352 #define LPUART1_IRQn RNG_LPUART1_IRQn
Kojto 116:c0f6e94411f5 4353 #define AES_LPUART1_IRQn RNG_LPUART1_IRQn
Kojto 116:c0f6e94411f5 4354 #define AES_RNG_LPUART1_IRQn RNG_LPUART1_IRQn
Kojto 116:c0f6e94411f5 4355 #define TIM6_IRQn TIM6_DAC_IRQn
Kojto 116:c0f6e94411f5 4356 #define RCC_IRQn RCC_CRS_IRQn
Kojto 116:c0f6e94411f5 4357
Kojto 116:c0f6e94411f5 4358 /* Aliases for __IRQHandler */
Kojto 116:c0f6e94411f5 4359 #define LPUART1_IRQHandler RNG_LPUART1_IRQHandler
Kojto 116:c0f6e94411f5 4360 #define AES_LPUART1_IRQHandler RNG_LPUART1_IRQHandler
Kojto 116:c0f6e94411f5 4361 #define AES_RNG_LPUART1_IRQHandler RNG_LPUART1_IRQHandler
Kojto 116:c0f6e94411f5 4362 #define TIM6_IRQHandler TIM6_DAC_IRQHandler
Kojto 116:c0f6e94411f5 4363 #define RCC_IRQHandler RCC_CRS_IRQHandler
Kojto 116:c0f6e94411f5 4364
Kojto 116:c0f6e94411f5 4365 /**
Kojto 116:c0f6e94411f5 4366 * @}
Kojto 116:c0f6e94411f5 4367 */
Kojto 116:c0f6e94411f5 4368
Kojto 116:c0f6e94411f5 4369 /**
Kojto 116:c0f6e94411f5 4370 * @}
Kojto 116:c0f6e94411f5 4371 */
Kojto 116:c0f6e94411f5 4372
Kojto 116:c0f6e94411f5 4373 #ifdef __cplusplus
Kojto 116:c0f6e94411f5 4374 }
Kojto 116:c0f6e94411f5 4375 #endif /* __cplusplus */
Kojto 116:c0f6e94411f5 4376
Kojto 116:c0f6e94411f5 4377 #endif /* __STM32L073xx_H */
Kojto 116:c0f6e94411f5 4378
Kojto 116:c0f6e94411f5 4379
Kojto 116:c0f6e94411f5 4380
Kojto 116:c0f6e94411f5 4381 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/