Initial commit

Dependencies:   FastPWM

Committer:
lypinator
Date:
Wed Sep 16 01:11:49 2020 +0000
Revision:
0:bb348c97df44
Added PWM

Who changed what in which revision?

UserRevisionLine numberNew contents of line
lypinator 0:bb348c97df44 1 /**
lypinator 0:bb348c97df44 2 ******************************************************************************
lypinator 0:bb348c97df44 3 * @file stm32f439xx.h
lypinator 0:bb348c97df44 4 * @author MCD Application Team
lypinator 0:bb348c97df44 5 * @brief CMSIS STM32F439xx Device Peripheral Access Layer Header File.
lypinator 0:bb348c97df44 6 *
lypinator 0:bb348c97df44 7 * This file contains:
lypinator 0:bb348c97df44 8 * - Data structures and the address mapping for all peripherals
lypinator 0:bb348c97df44 9 * - peripherals registers declarations and bits definition
lypinator 0:bb348c97df44 10 * - Macros to access peripheral's registers hardware
lypinator 0:bb348c97df44 11 *
lypinator 0:bb348c97df44 12 ******************************************************************************
lypinator 0:bb348c97df44 13 * @attention
lypinator 0:bb348c97df44 14 *
lypinator 0:bb348c97df44 15 * <h2><center>&copy; COPYRIGHT(c) 2017 STMicroelectronics</center></h2>
lypinator 0:bb348c97df44 16 *
lypinator 0:bb348c97df44 17 * Redistribution and use in source and binary forms, with or without modification,
lypinator 0:bb348c97df44 18 * are permitted provided that the following conditions are met:
lypinator 0:bb348c97df44 19 * 1. Redistributions of source code must retain the above copyright notice,
lypinator 0:bb348c97df44 20 * this list of conditions and the following disclaimer.
lypinator 0:bb348c97df44 21 * 2. Redistributions in binary form must reproduce the above copyright notice,
lypinator 0:bb348c97df44 22 * this list of conditions and the following disclaimer in the documentation
lypinator 0:bb348c97df44 23 * and/or other materials provided with the distribution.
lypinator 0:bb348c97df44 24 * 3. Neither the name of STMicroelectronics nor the names of its contributors
lypinator 0:bb348c97df44 25 * may be used to endorse or promote products derived from this software
lypinator 0:bb348c97df44 26 * without specific prior written permission.
lypinator 0:bb348c97df44 27 *
lypinator 0:bb348c97df44 28 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
lypinator 0:bb348c97df44 29 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
lypinator 0:bb348c97df44 30 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
lypinator 0:bb348c97df44 31 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
lypinator 0:bb348c97df44 32 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
lypinator 0:bb348c97df44 33 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
lypinator 0:bb348c97df44 34 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
lypinator 0:bb348c97df44 35 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
lypinator 0:bb348c97df44 36 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
lypinator 0:bb348c97df44 37 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
lypinator 0:bb348c97df44 38 *
lypinator 0:bb348c97df44 39 ******************************************************************************
lypinator 0:bb348c97df44 40 */
lypinator 0:bb348c97df44 41
lypinator 0:bb348c97df44 42 /** @addtogroup CMSIS_Device
lypinator 0:bb348c97df44 43 * @{
lypinator 0:bb348c97df44 44 */
lypinator 0:bb348c97df44 45
lypinator 0:bb348c97df44 46 /** @addtogroup stm32f439xx
lypinator 0:bb348c97df44 47 * @{
lypinator 0:bb348c97df44 48 */
lypinator 0:bb348c97df44 49
lypinator 0:bb348c97df44 50 #ifndef __STM32F439xx_H
lypinator 0:bb348c97df44 51 #define __STM32F439xx_H
lypinator 0:bb348c97df44 52
lypinator 0:bb348c97df44 53 #ifdef __cplusplus
lypinator 0:bb348c97df44 54 extern "C" {
lypinator 0:bb348c97df44 55 #endif /* __cplusplus */
lypinator 0:bb348c97df44 56
lypinator 0:bb348c97df44 57 /** @addtogroup Configuration_section_for_CMSIS
lypinator 0:bb348c97df44 58 * @{
lypinator 0:bb348c97df44 59 */
lypinator 0:bb348c97df44 60
lypinator 0:bb348c97df44 61 /**
lypinator 0:bb348c97df44 62 * @brief Configuration of the Cortex-M4 Processor and Core Peripherals
lypinator 0:bb348c97df44 63 */
lypinator 0:bb348c97df44 64 #define __CM4_REV 0x0001U /*!< Core revision r0p1 */
lypinator 0:bb348c97df44 65 #define __MPU_PRESENT 1U /*!< STM32F4XX provides an MPU */
lypinator 0:bb348c97df44 66 #define __NVIC_PRIO_BITS 4U /*!< STM32F4XX uses 4 Bits for the Priority Levels */
lypinator 0:bb348c97df44 67 #define __Vendor_SysTickConfig 0U /*!< Set to 1 if different SysTick Config is used */
lypinator 0:bb348c97df44 68 /* MBED */
lypinator 0:bb348c97df44 69 #ifndef __FPU_PRESENT
lypinator 0:bb348c97df44 70 #define __FPU_PRESENT 1U /*!< FPU present */
lypinator 0:bb348c97df44 71 #endif /* __FPU_PRESENT */
lypinator 0:bb348c97df44 72 /* MBED */
lypinator 0:bb348c97df44 73
lypinator 0:bb348c97df44 74 /**
lypinator 0:bb348c97df44 75 * @}
lypinator 0:bb348c97df44 76 */
lypinator 0:bb348c97df44 77
lypinator 0:bb348c97df44 78 /** @addtogroup Peripheral_interrupt_number_definition
lypinator 0:bb348c97df44 79 * @{
lypinator 0:bb348c97df44 80 */
lypinator 0:bb348c97df44 81
lypinator 0:bb348c97df44 82 /**
lypinator 0:bb348c97df44 83 * @brief STM32F4XX Interrupt Number Definition, according to the selected device
lypinator 0:bb348c97df44 84 * in @ref Library_configuration_section
lypinator 0:bb348c97df44 85 */
lypinator 0:bb348c97df44 86 typedef enum
lypinator 0:bb348c97df44 87 {
lypinator 0:bb348c97df44 88 /****** Cortex-M4 Processor Exceptions Numbers ****************************************************************/
lypinator 0:bb348c97df44 89 NonMaskableInt_IRQn = -14, /*!< 2 Non Maskable Interrupt */
lypinator 0:bb348c97df44 90 MemoryManagement_IRQn = -12, /*!< 4 Cortex-M4 Memory Management Interrupt */
lypinator 0:bb348c97df44 91 BusFault_IRQn = -11, /*!< 5 Cortex-M4 Bus Fault Interrupt */
lypinator 0:bb348c97df44 92 UsageFault_IRQn = -10, /*!< 6 Cortex-M4 Usage Fault Interrupt */
lypinator 0:bb348c97df44 93 SVCall_IRQn = -5, /*!< 11 Cortex-M4 SV Call Interrupt */
lypinator 0:bb348c97df44 94 DebugMonitor_IRQn = -4, /*!< 12 Cortex-M4 Debug Monitor Interrupt */
lypinator 0:bb348c97df44 95 PendSV_IRQn = -2, /*!< 14 Cortex-M4 Pend SV Interrupt */
lypinator 0:bb348c97df44 96 SysTick_IRQn = -1, /*!< 15 Cortex-M4 System Tick Interrupt */
lypinator 0:bb348c97df44 97 /****** STM32 specific Interrupt Numbers **********************************************************************/
lypinator 0:bb348c97df44 98 WWDG_IRQn = 0, /*!< Window WatchDog Interrupt */
lypinator 0:bb348c97df44 99 PVD_IRQn = 1, /*!< PVD through EXTI Line detection Interrupt */
lypinator 0:bb348c97df44 100 TAMP_STAMP_IRQn = 2, /*!< Tamper and TimeStamp interrupts through the EXTI line */
lypinator 0:bb348c97df44 101 RTC_WKUP_IRQn = 3, /*!< RTC Wakeup interrupt through the EXTI line */
lypinator 0:bb348c97df44 102 FLASH_IRQn = 4, /*!< FLASH global Interrupt */
lypinator 0:bb348c97df44 103 RCC_IRQn = 5, /*!< RCC global Interrupt */
lypinator 0:bb348c97df44 104 EXTI0_IRQn = 6, /*!< EXTI Line0 Interrupt */
lypinator 0:bb348c97df44 105 EXTI1_IRQn = 7, /*!< EXTI Line1 Interrupt */
lypinator 0:bb348c97df44 106 EXTI2_IRQn = 8, /*!< EXTI Line2 Interrupt */
lypinator 0:bb348c97df44 107 EXTI3_IRQn = 9, /*!< EXTI Line3 Interrupt */
lypinator 0:bb348c97df44 108 EXTI4_IRQn = 10, /*!< EXTI Line4 Interrupt */
lypinator 0:bb348c97df44 109 DMA1_Stream0_IRQn = 11, /*!< DMA1 Stream 0 global Interrupt */
lypinator 0:bb348c97df44 110 DMA1_Stream1_IRQn = 12, /*!< DMA1 Stream 1 global Interrupt */
lypinator 0:bb348c97df44 111 DMA1_Stream2_IRQn = 13, /*!< DMA1 Stream 2 global Interrupt */
lypinator 0:bb348c97df44 112 DMA1_Stream3_IRQn = 14, /*!< DMA1 Stream 3 global Interrupt */
lypinator 0:bb348c97df44 113 DMA1_Stream4_IRQn = 15, /*!< DMA1 Stream 4 global Interrupt */
lypinator 0:bb348c97df44 114 DMA1_Stream5_IRQn = 16, /*!< DMA1 Stream 5 global Interrupt */
lypinator 0:bb348c97df44 115 DMA1_Stream6_IRQn = 17, /*!< DMA1 Stream 6 global Interrupt */
lypinator 0:bb348c97df44 116 ADC_IRQn = 18, /*!< ADC1, ADC2 and ADC3 global Interrupts */
lypinator 0:bb348c97df44 117 CAN1_TX_IRQn = 19, /*!< CAN1 TX Interrupt */
lypinator 0:bb348c97df44 118 CAN1_RX0_IRQn = 20, /*!< CAN1 RX0 Interrupt */
lypinator 0:bb348c97df44 119 CAN1_RX1_IRQn = 21, /*!< CAN1 RX1 Interrupt */
lypinator 0:bb348c97df44 120 CAN1_SCE_IRQn = 22, /*!< CAN1 SCE Interrupt */
lypinator 0:bb348c97df44 121 EXTI9_5_IRQn = 23, /*!< External Line[9:5] Interrupts */
lypinator 0:bb348c97df44 122 TIM1_BRK_TIM9_IRQn = 24, /*!< TIM1 Break interrupt and TIM9 global interrupt */
lypinator 0:bb348c97df44 123 TIM1_UP_TIM10_IRQn = 25, /*!< TIM1 Update Interrupt and TIM10 global interrupt */
lypinator 0:bb348c97df44 124 TIM1_TRG_COM_TIM11_IRQn = 26, /*!< TIM1 Trigger and Commutation Interrupt and TIM11 global interrupt */
lypinator 0:bb348c97df44 125 TIM1_CC_IRQn = 27, /*!< TIM1 Capture Compare Interrupt */
lypinator 0:bb348c97df44 126 TIM2_IRQn = 28, /*!< TIM2 global Interrupt */
lypinator 0:bb348c97df44 127 TIM3_IRQn = 29, /*!< TIM3 global Interrupt */
lypinator 0:bb348c97df44 128 TIM4_IRQn = 30, /*!< TIM4 global Interrupt */
lypinator 0:bb348c97df44 129 I2C1_EV_IRQn = 31, /*!< I2C1 Event Interrupt */
lypinator 0:bb348c97df44 130 I2C1_ER_IRQn = 32, /*!< I2C1 Error Interrupt */
lypinator 0:bb348c97df44 131 I2C2_EV_IRQn = 33, /*!< I2C2 Event Interrupt */
lypinator 0:bb348c97df44 132 I2C2_ER_IRQn = 34, /*!< I2C2 Error Interrupt */
lypinator 0:bb348c97df44 133 SPI1_IRQn = 35, /*!< SPI1 global Interrupt */
lypinator 0:bb348c97df44 134 SPI2_IRQn = 36, /*!< SPI2 global Interrupt */
lypinator 0:bb348c97df44 135 USART1_IRQn = 37, /*!< USART1 global Interrupt */
lypinator 0:bb348c97df44 136 USART2_IRQn = 38, /*!< USART2 global Interrupt */
lypinator 0:bb348c97df44 137 USART3_IRQn = 39, /*!< USART3 global Interrupt */
lypinator 0:bb348c97df44 138 EXTI15_10_IRQn = 40, /*!< External Line[15:10] Interrupts */
lypinator 0:bb348c97df44 139 RTC_Alarm_IRQn = 41, /*!< RTC Alarm (A and B) through EXTI Line Interrupt */
lypinator 0:bb348c97df44 140 OTG_FS_WKUP_IRQn = 42, /*!< USB OTG FS Wakeup through EXTI line interrupt */
lypinator 0:bb348c97df44 141 TIM8_BRK_TIM12_IRQn = 43, /*!< TIM8 Break Interrupt and TIM12 global interrupt */
lypinator 0:bb348c97df44 142 TIM8_UP_TIM13_IRQn = 44, /*!< TIM8 Update Interrupt and TIM13 global interrupt */
lypinator 0:bb348c97df44 143 TIM8_TRG_COM_TIM14_IRQn = 45, /*!< TIM8 Trigger and Commutation Interrupt and TIM14 global interrupt */
lypinator 0:bb348c97df44 144 TIM8_CC_IRQn = 46, /*!< TIM8 Capture Compare global interrupt */
lypinator 0:bb348c97df44 145 DMA1_Stream7_IRQn = 47, /*!< DMA1 Stream7 Interrupt */
lypinator 0:bb348c97df44 146 FMC_IRQn = 48, /*!< FMC global Interrupt */
lypinator 0:bb348c97df44 147 SDIO_IRQn = 49, /*!< SDIO global Interrupt */
lypinator 0:bb348c97df44 148 TIM5_IRQn = 50, /*!< TIM5 global Interrupt */
lypinator 0:bb348c97df44 149 SPI3_IRQn = 51, /*!< SPI3 global Interrupt */
lypinator 0:bb348c97df44 150 UART4_IRQn = 52, /*!< UART4 global Interrupt */
lypinator 0:bb348c97df44 151 UART5_IRQn = 53, /*!< UART5 global Interrupt */
lypinator 0:bb348c97df44 152 TIM6_DAC_IRQn = 54, /*!< TIM6 global and DAC1&2 underrun error interrupts */
lypinator 0:bb348c97df44 153 TIM7_IRQn = 55, /*!< TIM7 global interrupt */
lypinator 0:bb348c97df44 154 DMA2_Stream0_IRQn = 56, /*!< DMA2 Stream 0 global Interrupt */
lypinator 0:bb348c97df44 155 DMA2_Stream1_IRQn = 57, /*!< DMA2 Stream 1 global Interrupt */
lypinator 0:bb348c97df44 156 DMA2_Stream2_IRQn = 58, /*!< DMA2 Stream 2 global Interrupt */
lypinator 0:bb348c97df44 157 DMA2_Stream3_IRQn = 59, /*!< DMA2 Stream 3 global Interrupt */
lypinator 0:bb348c97df44 158 DMA2_Stream4_IRQn = 60, /*!< DMA2 Stream 4 global Interrupt */
lypinator 0:bb348c97df44 159 ETH_IRQn = 61, /*!< Ethernet global Interrupt */
lypinator 0:bb348c97df44 160 ETH_WKUP_IRQn = 62, /*!< Ethernet Wakeup through EXTI line Interrupt */
lypinator 0:bb348c97df44 161 CAN2_TX_IRQn = 63, /*!< CAN2 TX Interrupt */
lypinator 0:bb348c97df44 162 CAN2_RX0_IRQn = 64, /*!< CAN2 RX0 Interrupt */
lypinator 0:bb348c97df44 163 CAN2_RX1_IRQn = 65, /*!< CAN2 RX1 Interrupt */
lypinator 0:bb348c97df44 164 CAN2_SCE_IRQn = 66, /*!< CAN2 SCE Interrupt */
lypinator 0:bb348c97df44 165 OTG_FS_IRQn = 67, /*!< USB OTG FS global Interrupt */
lypinator 0:bb348c97df44 166 DMA2_Stream5_IRQn = 68, /*!< DMA2 Stream 5 global interrupt */
lypinator 0:bb348c97df44 167 DMA2_Stream6_IRQn = 69, /*!< DMA2 Stream 6 global interrupt */
lypinator 0:bb348c97df44 168 DMA2_Stream7_IRQn = 70, /*!< DMA2 Stream 7 global interrupt */
lypinator 0:bb348c97df44 169 USART6_IRQn = 71, /*!< USART6 global interrupt */
lypinator 0:bb348c97df44 170 I2C3_EV_IRQn = 72, /*!< I2C3 event interrupt */
lypinator 0:bb348c97df44 171 I2C3_ER_IRQn = 73, /*!< I2C3 error interrupt */
lypinator 0:bb348c97df44 172 OTG_HS_EP1_OUT_IRQn = 74, /*!< USB OTG HS End Point 1 Out global interrupt */
lypinator 0:bb348c97df44 173 OTG_HS_EP1_IN_IRQn = 75, /*!< USB OTG HS End Point 1 In global interrupt */
lypinator 0:bb348c97df44 174 OTG_HS_WKUP_IRQn = 76, /*!< USB OTG HS Wakeup through EXTI interrupt */
lypinator 0:bb348c97df44 175 OTG_HS_IRQn = 77, /*!< USB OTG HS global interrupt */
lypinator 0:bb348c97df44 176 DCMI_IRQn = 78, /*!< DCMI global interrupt */
lypinator 0:bb348c97df44 177 CRYP_IRQn = 79, /*!< CRYP crypto global interrupt */
lypinator 0:bb348c97df44 178 HASH_RNG_IRQn = 80, /*!< Hash and Rng global interrupt */
lypinator 0:bb348c97df44 179 FPU_IRQn = 81, /*!< FPU global interrupt */
lypinator 0:bb348c97df44 180 UART7_IRQn = 82, /*!< UART7 global interrupt */
lypinator 0:bb348c97df44 181 UART8_IRQn = 83, /*!< UART8 global interrupt */
lypinator 0:bb348c97df44 182 SPI4_IRQn = 84, /*!< SPI4 global Interrupt */
lypinator 0:bb348c97df44 183 SPI5_IRQn = 85, /*!< SPI5 global Interrupt */
lypinator 0:bb348c97df44 184 SPI6_IRQn = 86, /*!< SPI6 global Interrupt */
lypinator 0:bb348c97df44 185 SAI1_IRQn = 87, /*!< SAI1 global Interrupt */
lypinator 0:bb348c97df44 186 LTDC_IRQn = 88, /*!< LTDC global Interrupt */
lypinator 0:bb348c97df44 187 LTDC_ER_IRQn = 89, /*!< LTDC Error global Interrupt */
lypinator 0:bb348c97df44 188 DMA2D_IRQn = 90 /*!< DMA2D global Interrupt */
lypinator 0:bb348c97df44 189 } IRQn_Type;
lypinator 0:bb348c97df44 190
lypinator 0:bb348c97df44 191 /**
lypinator 0:bb348c97df44 192 * @}
lypinator 0:bb348c97df44 193 */
lypinator 0:bb348c97df44 194
lypinator 0:bb348c97df44 195 #include "core_cm4.h" /* Cortex-M4 processor and core peripherals */
lypinator 0:bb348c97df44 196 #include "system_stm32f4xx.h"
lypinator 0:bb348c97df44 197 #include <stdint.h>
lypinator 0:bb348c97df44 198
lypinator 0:bb348c97df44 199 /** @addtogroup Peripheral_registers_structures
lypinator 0:bb348c97df44 200 * @{
lypinator 0:bb348c97df44 201 */
lypinator 0:bb348c97df44 202
lypinator 0:bb348c97df44 203 /**
lypinator 0:bb348c97df44 204 * @brief Analog to Digital Converter
lypinator 0:bb348c97df44 205 */
lypinator 0:bb348c97df44 206
lypinator 0:bb348c97df44 207 typedef struct
lypinator 0:bb348c97df44 208 {
lypinator 0:bb348c97df44 209 __IO uint32_t SR; /*!< ADC status register, Address offset: 0x00 */
lypinator 0:bb348c97df44 210 __IO uint32_t CR1; /*!< ADC control register 1, Address offset: 0x04 */
lypinator 0:bb348c97df44 211 __IO uint32_t CR2; /*!< ADC control register 2, Address offset: 0x08 */
lypinator 0:bb348c97df44 212 __IO uint32_t SMPR1; /*!< ADC sample time register 1, Address offset: 0x0C */
lypinator 0:bb348c97df44 213 __IO uint32_t SMPR2; /*!< ADC sample time register 2, Address offset: 0x10 */
lypinator 0:bb348c97df44 214 __IO uint32_t JOFR1; /*!< ADC injected channel data offset register 1, Address offset: 0x14 */
lypinator 0:bb348c97df44 215 __IO uint32_t JOFR2; /*!< ADC injected channel data offset register 2, Address offset: 0x18 */
lypinator 0:bb348c97df44 216 __IO uint32_t JOFR3; /*!< ADC injected channel data offset register 3, Address offset: 0x1C */
lypinator 0:bb348c97df44 217 __IO uint32_t JOFR4; /*!< ADC injected channel data offset register 4, Address offset: 0x20 */
lypinator 0:bb348c97df44 218 __IO uint32_t HTR; /*!< ADC watchdog higher threshold register, Address offset: 0x24 */
lypinator 0:bb348c97df44 219 __IO uint32_t LTR; /*!< ADC watchdog lower threshold register, Address offset: 0x28 */
lypinator 0:bb348c97df44 220 __IO uint32_t SQR1; /*!< ADC regular sequence register 1, Address offset: 0x2C */
lypinator 0:bb348c97df44 221 __IO uint32_t SQR2; /*!< ADC regular sequence register 2, Address offset: 0x30 */
lypinator 0:bb348c97df44 222 __IO uint32_t SQR3; /*!< ADC regular sequence register 3, Address offset: 0x34 */
lypinator 0:bb348c97df44 223 __IO uint32_t JSQR; /*!< ADC injected sequence register, Address offset: 0x38*/
lypinator 0:bb348c97df44 224 __IO uint32_t JDR1; /*!< ADC injected data register 1, Address offset: 0x3C */
lypinator 0:bb348c97df44 225 __IO uint32_t JDR2; /*!< ADC injected data register 2, Address offset: 0x40 */
lypinator 0:bb348c97df44 226 __IO uint32_t JDR3; /*!< ADC injected data register 3, Address offset: 0x44 */
lypinator 0:bb348c97df44 227 __IO uint32_t JDR4; /*!< ADC injected data register 4, Address offset: 0x48 */
lypinator 0:bb348c97df44 228 __IO uint32_t DR; /*!< ADC regular data register, Address offset: 0x4C */
lypinator 0:bb348c97df44 229 } ADC_TypeDef;
lypinator 0:bb348c97df44 230
lypinator 0:bb348c97df44 231 typedef struct
lypinator 0:bb348c97df44 232 {
lypinator 0:bb348c97df44 233 __IO uint32_t CSR; /*!< ADC Common status register, Address offset: ADC1 base address + 0x300 */
lypinator 0:bb348c97df44 234 __IO uint32_t CCR; /*!< ADC common control register, Address offset: ADC1 base address + 0x304 */
lypinator 0:bb348c97df44 235 __IO uint32_t CDR; /*!< ADC common regular data register for dual
lypinator 0:bb348c97df44 236 AND triple modes, Address offset: ADC1 base address + 0x308 */
lypinator 0:bb348c97df44 237 } ADC_Common_TypeDef;
lypinator 0:bb348c97df44 238
lypinator 0:bb348c97df44 239
lypinator 0:bb348c97df44 240 /**
lypinator 0:bb348c97df44 241 * @brief Controller Area Network TxMailBox
lypinator 0:bb348c97df44 242 */
lypinator 0:bb348c97df44 243
lypinator 0:bb348c97df44 244 typedef struct
lypinator 0:bb348c97df44 245 {
lypinator 0:bb348c97df44 246 __IO uint32_t TIR; /*!< CAN TX mailbox identifier register */
lypinator 0:bb348c97df44 247 __IO uint32_t TDTR; /*!< CAN mailbox data length control and time stamp register */
lypinator 0:bb348c97df44 248 __IO uint32_t TDLR; /*!< CAN mailbox data low register */
lypinator 0:bb348c97df44 249 __IO uint32_t TDHR; /*!< CAN mailbox data high register */
lypinator 0:bb348c97df44 250 } CAN_TxMailBox_TypeDef;
lypinator 0:bb348c97df44 251
lypinator 0:bb348c97df44 252 /**
lypinator 0:bb348c97df44 253 * @brief Controller Area Network FIFOMailBox
lypinator 0:bb348c97df44 254 */
lypinator 0:bb348c97df44 255
lypinator 0:bb348c97df44 256 typedef struct
lypinator 0:bb348c97df44 257 {
lypinator 0:bb348c97df44 258 __IO uint32_t RIR; /*!< CAN receive FIFO mailbox identifier register */
lypinator 0:bb348c97df44 259 __IO uint32_t RDTR; /*!< CAN receive FIFO mailbox data length control and time stamp register */
lypinator 0:bb348c97df44 260 __IO uint32_t RDLR; /*!< CAN receive FIFO mailbox data low register */
lypinator 0:bb348c97df44 261 __IO uint32_t RDHR; /*!< CAN receive FIFO mailbox data high register */
lypinator 0:bb348c97df44 262 } CAN_FIFOMailBox_TypeDef;
lypinator 0:bb348c97df44 263
lypinator 0:bb348c97df44 264 /**
lypinator 0:bb348c97df44 265 * @brief Controller Area Network FilterRegister
lypinator 0:bb348c97df44 266 */
lypinator 0:bb348c97df44 267
lypinator 0:bb348c97df44 268 typedef struct
lypinator 0:bb348c97df44 269 {
lypinator 0:bb348c97df44 270 __IO uint32_t FR1; /*!< CAN Filter bank register 1 */
lypinator 0:bb348c97df44 271 __IO uint32_t FR2; /*!< CAN Filter bank register 1 */
lypinator 0:bb348c97df44 272 } CAN_FilterRegister_TypeDef;
lypinator 0:bb348c97df44 273
lypinator 0:bb348c97df44 274 /**
lypinator 0:bb348c97df44 275 * @brief Controller Area Network
lypinator 0:bb348c97df44 276 */
lypinator 0:bb348c97df44 277
lypinator 0:bb348c97df44 278 typedef struct
lypinator 0:bb348c97df44 279 {
lypinator 0:bb348c97df44 280 __IO uint32_t MCR; /*!< CAN master control register, Address offset: 0x00 */
lypinator 0:bb348c97df44 281 __IO uint32_t MSR; /*!< CAN master status register, Address offset: 0x04 */
lypinator 0:bb348c97df44 282 __IO uint32_t TSR; /*!< CAN transmit status register, Address offset: 0x08 */
lypinator 0:bb348c97df44 283 __IO uint32_t RF0R; /*!< CAN receive FIFO 0 register, Address offset: 0x0C */
lypinator 0:bb348c97df44 284 __IO uint32_t RF1R; /*!< CAN receive FIFO 1 register, Address offset: 0x10 */
lypinator 0:bb348c97df44 285 __IO uint32_t IER; /*!< CAN interrupt enable register, Address offset: 0x14 */
lypinator 0:bb348c97df44 286 __IO uint32_t ESR; /*!< CAN error status register, Address offset: 0x18 */
lypinator 0:bb348c97df44 287 __IO uint32_t BTR; /*!< CAN bit timing register, Address offset: 0x1C */
lypinator 0:bb348c97df44 288 uint32_t RESERVED0[88]; /*!< Reserved, 0x020 - 0x17F */
lypinator 0:bb348c97df44 289 CAN_TxMailBox_TypeDef sTxMailBox[3]; /*!< CAN Tx MailBox, Address offset: 0x180 - 0x1AC */
lypinator 0:bb348c97df44 290 CAN_FIFOMailBox_TypeDef sFIFOMailBox[2]; /*!< CAN FIFO MailBox, Address offset: 0x1B0 - 0x1CC */
lypinator 0:bb348c97df44 291 uint32_t RESERVED1[12]; /*!< Reserved, 0x1D0 - 0x1FF */
lypinator 0:bb348c97df44 292 __IO uint32_t FMR; /*!< CAN filter master register, Address offset: 0x200 */
lypinator 0:bb348c97df44 293 __IO uint32_t FM1R; /*!< CAN filter mode register, Address offset: 0x204 */
lypinator 0:bb348c97df44 294 uint32_t RESERVED2; /*!< Reserved, 0x208 */
lypinator 0:bb348c97df44 295 __IO uint32_t FS1R; /*!< CAN filter scale register, Address offset: 0x20C */
lypinator 0:bb348c97df44 296 uint32_t RESERVED3; /*!< Reserved, 0x210 */
lypinator 0:bb348c97df44 297 __IO uint32_t FFA1R; /*!< CAN filter FIFO assignment register, Address offset: 0x214 */
lypinator 0:bb348c97df44 298 uint32_t RESERVED4; /*!< Reserved, 0x218 */
lypinator 0:bb348c97df44 299 __IO uint32_t FA1R; /*!< CAN filter activation register, Address offset: 0x21C */
lypinator 0:bb348c97df44 300 uint32_t RESERVED5[8]; /*!< Reserved, 0x220-0x23F */
lypinator 0:bb348c97df44 301 CAN_FilterRegister_TypeDef sFilterRegister[28]; /*!< CAN Filter Register, Address offset: 0x240-0x31C */
lypinator 0:bb348c97df44 302 } CAN_TypeDef;
lypinator 0:bb348c97df44 303
lypinator 0:bb348c97df44 304 /**
lypinator 0:bb348c97df44 305 * @brief CRC calculation unit
lypinator 0:bb348c97df44 306 */
lypinator 0:bb348c97df44 307
lypinator 0:bb348c97df44 308 typedef struct
lypinator 0:bb348c97df44 309 {
lypinator 0:bb348c97df44 310 __IO uint32_t DR; /*!< CRC Data register, Address offset: 0x00 */
lypinator 0:bb348c97df44 311 __IO uint8_t IDR; /*!< CRC Independent data register, Address offset: 0x04 */
lypinator 0:bb348c97df44 312 uint8_t RESERVED0; /*!< Reserved, 0x05 */
lypinator 0:bb348c97df44 313 uint16_t RESERVED1; /*!< Reserved, 0x06 */
lypinator 0:bb348c97df44 314 __IO uint32_t CR; /*!< CRC Control register, Address offset: 0x08 */
lypinator 0:bb348c97df44 315 } CRC_TypeDef;
lypinator 0:bb348c97df44 316
lypinator 0:bb348c97df44 317 /**
lypinator 0:bb348c97df44 318 * @brief Digital to Analog Converter
lypinator 0:bb348c97df44 319 */
lypinator 0:bb348c97df44 320
lypinator 0:bb348c97df44 321 typedef struct
lypinator 0:bb348c97df44 322 {
lypinator 0:bb348c97df44 323 __IO uint32_t CR; /*!< DAC control register, Address offset: 0x00 */
lypinator 0:bb348c97df44 324 __IO uint32_t SWTRIGR; /*!< DAC software trigger register, Address offset: 0x04 */
lypinator 0:bb348c97df44 325 __IO uint32_t DHR12R1; /*!< DAC channel1 12-bit right-aligned data holding register, Address offset: 0x08 */
lypinator 0:bb348c97df44 326 __IO uint32_t DHR12L1; /*!< DAC channel1 12-bit left aligned data holding register, Address offset: 0x0C */
lypinator 0:bb348c97df44 327 __IO uint32_t DHR8R1; /*!< DAC channel1 8-bit right aligned data holding register, Address offset: 0x10 */
lypinator 0:bb348c97df44 328 __IO uint32_t DHR12R2; /*!< DAC channel2 12-bit right aligned data holding register, Address offset: 0x14 */
lypinator 0:bb348c97df44 329 __IO uint32_t DHR12L2; /*!< DAC channel2 12-bit left aligned data holding register, Address offset: 0x18 */
lypinator 0:bb348c97df44 330 __IO uint32_t DHR8R2; /*!< DAC channel2 8-bit right-aligned data holding register, Address offset: 0x1C */
lypinator 0:bb348c97df44 331 __IO uint32_t DHR12RD; /*!< Dual DAC 12-bit right-aligned data holding register, Address offset: 0x20 */
lypinator 0:bb348c97df44 332 __IO uint32_t DHR12LD; /*!< DUAL DAC 12-bit left aligned data holding register, Address offset: 0x24 */
lypinator 0:bb348c97df44 333 __IO uint32_t DHR8RD; /*!< DUAL DAC 8-bit right aligned data holding register, Address offset: 0x28 */
lypinator 0:bb348c97df44 334 __IO uint32_t DOR1; /*!< DAC channel1 data output register, Address offset: 0x2C */
lypinator 0:bb348c97df44 335 __IO uint32_t DOR2; /*!< DAC channel2 data output register, Address offset: 0x30 */
lypinator 0:bb348c97df44 336 __IO uint32_t SR; /*!< DAC status register, Address offset: 0x34 */
lypinator 0:bb348c97df44 337 } DAC_TypeDef;
lypinator 0:bb348c97df44 338
lypinator 0:bb348c97df44 339 /**
lypinator 0:bb348c97df44 340 * @brief Debug MCU
lypinator 0:bb348c97df44 341 */
lypinator 0:bb348c97df44 342
lypinator 0:bb348c97df44 343 typedef struct
lypinator 0:bb348c97df44 344 {
lypinator 0:bb348c97df44 345 __IO uint32_t IDCODE; /*!< MCU device ID code, Address offset: 0x00 */
lypinator 0:bb348c97df44 346 __IO uint32_t CR; /*!< Debug MCU configuration register, Address offset: 0x04 */
lypinator 0:bb348c97df44 347 __IO uint32_t APB1FZ; /*!< Debug MCU APB1 freeze register, Address offset: 0x08 */
lypinator 0:bb348c97df44 348 __IO uint32_t APB2FZ; /*!< Debug MCU APB2 freeze register, Address offset: 0x0C */
lypinator 0:bb348c97df44 349 }DBGMCU_TypeDef;
lypinator 0:bb348c97df44 350
lypinator 0:bb348c97df44 351 /**
lypinator 0:bb348c97df44 352 * @brief DCMI
lypinator 0:bb348c97df44 353 */
lypinator 0:bb348c97df44 354
lypinator 0:bb348c97df44 355 typedef struct
lypinator 0:bb348c97df44 356 {
lypinator 0:bb348c97df44 357 __IO uint32_t CR; /*!< DCMI control register 1, Address offset: 0x00 */
lypinator 0:bb348c97df44 358 __IO uint32_t SR; /*!< DCMI status register, Address offset: 0x04 */
lypinator 0:bb348c97df44 359 __IO uint32_t RISR; /*!< DCMI raw interrupt status register, Address offset: 0x08 */
lypinator 0:bb348c97df44 360 __IO uint32_t IER; /*!< DCMI interrupt enable register, Address offset: 0x0C */
lypinator 0:bb348c97df44 361 __IO uint32_t MISR; /*!< DCMI masked interrupt status register, Address offset: 0x10 */
lypinator 0:bb348c97df44 362 __IO uint32_t ICR; /*!< DCMI interrupt clear register, Address offset: 0x14 */
lypinator 0:bb348c97df44 363 __IO uint32_t ESCR; /*!< DCMI embedded synchronization code register, Address offset: 0x18 */
lypinator 0:bb348c97df44 364 __IO uint32_t ESUR; /*!< DCMI embedded synchronization unmask register, Address offset: 0x1C */
lypinator 0:bb348c97df44 365 __IO uint32_t CWSTRTR; /*!< DCMI crop window start, Address offset: 0x20 */
lypinator 0:bb348c97df44 366 __IO uint32_t CWSIZER; /*!< DCMI crop window size, Address offset: 0x24 */
lypinator 0:bb348c97df44 367 __IO uint32_t DR; /*!< DCMI data register, Address offset: 0x28 */
lypinator 0:bb348c97df44 368 } DCMI_TypeDef;
lypinator 0:bb348c97df44 369
lypinator 0:bb348c97df44 370 /**
lypinator 0:bb348c97df44 371 * @brief DMA Controller
lypinator 0:bb348c97df44 372 */
lypinator 0:bb348c97df44 373
lypinator 0:bb348c97df44 374 typedef struct
lypinator 0:bb348c97df44 375 {
lypinator 0:bb348c97df44 376 __IO uint32_t CR; /*!< DMA stream x configuration register */
lypinator 0:bb348c97df44 377 __IO uint32_t NDTR; /*!< DMA stream x number of data register */
lypinator 0:bb348c97df44 378 __IO uint32_t PAR; /*!< DMA stream x peripheral address register */
lypinator 0:bb348c97df44 379 __IO uint32_t M0AR; /*!< DMA stream x memory 0 address register */
lypinator 0:bb348c97df44 380 __IO uint32_t M1AR; /*!< DMA stream x memory 1 address register */
lypinator 0:bb348c97df44 381 __IO uint32_t FCR; /*!< DMA stream x FIFO control register */
lypinator 0:bb348c97df44 382 } DMA_Stream_TypeDef;
lypinator 0:bb348c97df44 383
lypinator 0:bb348c97df44 384 typedef struct
lypinator 0:bb348c97df44 385 {
lypinator 0:bb348c97df44 386 __IO uint32_t LISR; /*!< DMA low interrupt status register, Address offset: 0x00 */
lypinator 0:bb348c97df44 387 __IO uint32_t HISR; /*!< DMA high interrupt status register, Address offset: 0x04 */
lypinator 0:bb348c97df44 388 __IO uint32_t LIFCR; /*!< DMA low interrupt flag clear register, Address offset: 0x08 */
lypinator 0:bb348c97df44 389 __IO uint32_t HIFCR; /*!< DMA high interrupt flag clear register, Address offset: 0x0C */
lypinator 0:bb348c97df44 390 } DMA_TypeDef;
lypinator 0:bb348c97df44 391
lypinator 0:bb348c97df44 392 /**
lypinator 0:bb348c97df44 393 * @brief DMA2D Controller
lypinator 0:bb348c97df44 394 */
lypinator 0:bb348c97df44 395
lypinator 0:bb348c97df44 396 typedef struct
lypinator 0:bb348c97df44 397 {
lypinator 0:bb348c97df44 398 __IO uint32_t CR; /*!< DMA2D Control Register, Address offset: 0x00 */
lypinator 0:bb348c97df44 399 __IO uint32_t ISR; /*!< DMA2D Interrupt Status Register, Address offset: 0x04 */
lypinator 0:bb348c97df44 400 __IO uint32_t IFCR; /*!< DMA2D Interrupt Flag Clear Register, Address offset: 0x08 */
lypinator 0:bb348c97df44 401 __IO uint32_t FGMAR; /*!< DMA2D Foreground Memory Address Register, Address offset: 0x0C */
lypinator 0:bb348c97df44 402 __IO uint32_t FGOR; /*!< DMA2D Foreground Offset Register, Address offset: 0x10 */
lypinator 0:bb348c97df44 403 __IO uint32_t BGMAR; /*!< DMA2D Background Memory Address Register, Address offset: 0x14 */
lypinator 0:bb348c97df44 404 __IO uint32_t BGOR; /*!< DMA2D Background Offset Register, Address offset: 0x18 */
lypinator 0:bb348c97df44 405 __IO uint32_t FGPFCCR; /*!< DMA2D Foreground PFC Control Register, Address offset: 0x1C */
lypinator 0:bb348c97df44 406 __IO uint32_t FGCOLR; /*!< DMA2D Foreground Color Register, Address offset: 0x20 */
lypinator 0:bb348c97df44 407 __IO uint32_t BGPFCCR; /*!< DMA2D Background PFC Control Register, Address offset: 0x24 */
lypinator 0:bb348c97df44 408 __IO uint32_t BGCOLR; /*!< DMA2D Background Color Register, Address offset: 0x28 */
lypinator 0:bb348c97df44 409 __IO uint32_t FGCMAR; /*!< DMA2D Foreground CLUT Memory Address Register, Address offset: 0x2C */
lypinator 0:bb348c97df44 410 __IO uint32_t BGCMAR; /*!< DMA2D Background CLUT Memory Address Register, Address offset: 0x30 */
lypinator 0:bb348c97df44 411 __IO uint32_t OPFCCR; /*!< DMA2D Output PFC Control Register, Address offset: 0x34 */
lypinator 0:bb348c97df44 412 __IO uint32_t OCOLR; /*!< DMA2D Output Color Register, Address offset: 0x38 */
lypinator 0:bb348c97df44 413 __IO uint32_t OMAR; /*!< DMA2D Output Memory Address Register, Address offset: 0x3C */
lypinator 0:bb348c97df44 414 __IO uint32_t OOR; /*!< DMA2D Output Offset Register, Address offset: 0x40 */
lypinator 0:bb348c97df44 415 __IO uint32_t NLR; /*!< DMA2D Number of Line Register, Address offset: 0x44 */
lypinator 0:bb348c97df44 416 __IO uint32_t LWR; /*!< DMA2D Line Watermark Register, Address offset: 0x48 */
lypinator 0:bb348c97df44 417 __IO uint32_t AMTCR; /*!< DMA2D AHB Master Timer Configuration Register, Address offset: 0x4C */
lypinator 0:bb348c97df44 418 uint32_t RESERVED[236]; /*!< Reserved, 0x50-0x3FF */
lypinator 0:bb348c97df44 419 __IO uint32_t FGCLUT[256]; /*!< DMA2D Foreground CLUT, Address offset:400-7FF */
lypinator 0:bb348c97df44 420 __IO uint32_t BGCLUT[256]; /*!< DMA2D Background CLUT, Address offset:800-BFF */
lypinator 0:bb348c97df44 421 } DMA2D_TypeDef;
lypinator 0:bb348c97df44 422
lypinator 0:bb348c97df44 423 /**
lypinator 0:bb348c97df44 424 * @brief Ethernet MAC
lypinator 0:bb348c97df44 425 */
lypinator 0:bb348c97df44 426
lypinator 0:bb348c97df44 427 typedef struct
lypinator 0:bb348c97df44 428 {
lypinator 0:bb348c97df44 429 __IO uint32_t MACCR;
lypinator 0:bb348c97df44 430 __IO uint32_t MACFFR;
lypinator 0:bb348c97df44 431 __IO uint32_t MACHTHR;
lypinator 0:bb348c97df44 432 __IO uint32_t MACHTLR;
lypinator 0:bb348c97df44 433 __IO uint32_t MACMIIAR;
lypinator 0:bb348c97df44 434 __IO uint32_t MACMIIDR;
lypinator 0:bb348c97df44 435 __IO uint32_t MACFCR;
lypinator 0:bb348c97df44 436 __IO uint32_t MACVLANTR; /* 8 */
lypinator 0:bb348c97df44 437 uint32_t RESERVED0[2];
lypinator 0:bb348c97df44 438 __IO uint32_t MACRWUFFR; /* 11 */
lypinator 0:bb348c97df44 439 __IO uint32_t MACPMTCSR;
lypinator 0:bb348c97df44 440 uint32_t RESERVED1;
lypinator 0:bb348c97df44 441 __IO uint32_t MACDBGR;
lypinator 0:bb348c97df44 442 __IO uint32_t MACSR; /* 15 */
lypinator 0:bb348c97df44 443 __IO uint32_t MACIMR;
lypinator 0:bb348c97df44 444 __IO uint32_t MACA0HR;
lypinator 0:bb348c97df44 445 __IO uint32_t MACA0LR;
lypinator 0:bb348c97df44 446 __IO uint32_t MACA1HR;
lypinator 0:bb348c97df44 447 __IO uint32_t MACA1LR;
lypinator 0:bb348c97df44 448 __IO uint32_t MACA2HR;
lypinator 0:bb348c97df44 449 __IO uint32_t MACA2LR;
lypinator 0:bb348c97df44 450 __IO uint32_t MACA3HR;
lypinator 0:bb348c97df44 451 __IO uint32_t MACA3LR; /* 24 */
lypinator 0:bb348c97df44 452 uint32_t RESERVED2[40];
lypinator 0:bb348c97df44 453 __IO uint32_t MMCCR; /* 65 */
lypinator 0:bb348c97df44 454 __IO uint32_t MMCRIR;
lypinator 0:bb348c97df44 455 __IO uint32_t MMCTIR;
lypinator 0:bb348c97df44 456 __IO uint32_t MMCRIMR;
lypinator 0:bb348c97df44 457 __IO uint32_t MMCTIMR; /* 69 */
lypinator 0:bb348c97df44 458 uint32_t RESERVED3[14];
lypinator 0:bb348c97df44 459 __IO uint32_t MMCTGFSCCR; /* 84 */
lypinator 0:bb348c97df44 460 __IO uint32_t MMCTGFMSCCR;
lypinator 0:bb348c97df44 461 uint32_t RESERVED4[5];
lypinator 0:bb348c97df44 462 __IO uint32_t MMCTGFCR;
lypinator 0:bb348c97df44 463 uint32_t RESERVED5[10];
lypinator 0:bb348c97df44 464 __IO uint32_t MMCRFCECR;
lypinator 0:bb348c97df44 465 __IO uint32_t MMCRFAECR;
lypinator 0:bb348c97df44 466 uint32_t RESERVED6[10];
lypinator 0:bb348c97df44 467 __IO uint32_t MMCRGUFCR;
lypinator 0:bb348c97df44 468 uint32_t RESERVED7[334];
lypinator 0:bb348c97df44 469 __IO uint32_t PTPTSCR;
lypinator 0:bb348c97df44 470 __IO uint32_t PTPSSIR;
lypinator 0:bb348c97df44 471 __IO uint32_t PTPTSHR;
lypinator 0:bb348c97df44 472 __IO uint32_t PTPTSLR;
lypinator 0:bb348c97df44 473 __IO uint32_t PTPTSHUR;
lypinator 0:bb348c97df44 474 __IO uint32_t PTPTSLUR;
lypinator 0:bb348c97df44 475 __IO uint32_t PTPTSAR;
lypinator 0:bb348c97df44 476 __IO uint32_t PTPTTHR;
lypinator 0:bb348c97df44 477 __IO uint32_t PTPTTLR;
lypinator 0:bb348c97df44 478 __IO uint32_t RESERVED8;
lypinator 0:bb348c97df44 479 __IO uint32_t PTPTSSR;
lypinator 0:bb348c97df44 480 uint32_t RESERVED9[565];
lypinator 0:bb348c97df44 481 __IO uint32_t DMABMR;
lypinator 0:bb348c97df44 482 __IO uint32_t DMATPDR;
lypinator 0:bb348c97df44 483 __IO uint32_t DMARPDR;
lypinator 0:bb348c97df44 484 __IO uint32_t DMARDLAR;
lypinator 0:bb348c97df44 485 __IO uint32_t DMATDLAR;
lypinator 0:bb348c97df44 486 __IO uint32_t DMASR;
lypinator 0:bb348c97df44 487 __IO uint32_t DMAOMR;
lypinator 0:bb348c97df44 488 __IO uint32_t DMAIER;
lypinator 0:bb348c97df44 489 __IO uint32_t DMAMFBOCR;
lypinator 0:bb348c97df44 490 __IO uint32_t DMARSWTR;
lypinator 0:bb348c97df44 491 uint32_t RESERVED10[8];
lypinator 0:bb348c97df44 492 __IO uint32_t DMACHTDR;
lypinator 0:bb348c97df44 493 __IO uint32_t DMACHRDR;
lypinator 0:bb348c97df44 494 __IO uint32_t DMACHTBAR;
lypinator 0:bb348c97df44 495 __IO uint32_t DMACHRBAR;
lypinator 0:bb348c97df44 496 } ETH_TypeDef;
lypinator 0:bb348c97df44 497
lypinator 0:bb348c97df44 498 /**
lypinator 0:bb348c97df44 499 * @brief External Interrupt/Event Controller
lypinator 0:bb348c97df44 500 */
lypinator 0:bb348c97df44 501
lypinator 0:bb348c97df44 502 typedef struct
lypinator 0:bb348c97df44 503 {
lypinator 0:bb348c97df44 504 __IO uint32_t IMR; /*!< EXTI Interrupt mask register, Address offset: 0x00 */
lypinator 0:bb348c97df44 505 __IO uint32_t EMR; /*!< EXTI Event mask register, Address offset: 0x04 */
lypinator 0:bb348c97df44 506 __IO uint32_t RTSR; /*!< EXTI Rising trigger selection register, Address offset: 0x08 */
lypinator 0:bb348c97df44 507 __IO uint32_t FTSR; /*!< EXTI Falling trigger selection register, Address offset: 0x0C */
lypinator 0:bb348c97df44 508 __IO uint32_t SWIER; /*!< EXTI Software interrupt event register, Address offset: 0x10 */
lypinator 0:bb348c97df44 509 __IO uint32_t PR; /*!< EXTI Pending register, Address offset: 0x14 */
lypinator 0:bb348c97df44 510 } EXTI_TypeDef;
lypinator 0:bb348c97df44 511
lypinator 0:bb348c97df44 512 /**
lypinator 0:bb348c97df44 513 * @brief FLASH Registers
lypinator 0:bb348c97df44 514 */
lypinator 0:bb348c97df44 515
lypinator 0:bb348c97df44 516 typedef struct
lypinator 0:bb348c97df44 517 {
lypinator 0:bb348c97df44 518 __IO uint32_t ACR; /*!< FLASH access control register, Address offset: 0x00 */
lypinator 0:bb348c97df44 519 __IO uint32_t KEYR; /*!< FLASH key register, Address offset: 0x04 */
lypinator 0:bb348c97df44 520 __IO uint32_t OPTKEYR; /*!< FLASH option key register, Address offset: 0x08 */
lypinator 0:bb348c97df44 521 __IO uint32_t SR; /*!< FLASH status register, Address offset: 0x0C */
lypinator 0:bb348c97df44 522 __IO uint32_t CR; /*!< FLASH control register, Address offset: 0x10 */
lypinator 0:bb348c97df44 523 __IO uint32_t OPTCR; /*!< FLASH option control register , Address offset: 0x14 */
lypinator 0:bb348c97df44 524 __IO uint32_t OPTCR1; /*!< FLASH option control register 1, Address offset: 0x18 */
lypinator 0:bb348c97df44 525 } FLASH_TypeDef;
lypinator 0:bb348c97df44 526
lypinator 0:bb348c97df44 527 /**
lypinator 0:bb348c97df44 528 * @brief Flexible Memory Controller
lypinator 0:bb348c97df44 529 */
lypinator 0:bb348c97df44 530
lypinator 0:bb348c97df44 531 typedef struct
lypinator 0:bb348c97df44 532 {
lypinator 0:bb348c97df44 533 __IO uint32_t BTCR[8]; /*!< NOR/PSRAM chip-select control register(BCR) and chip-select timing register(BTR), Address offset: 0x00-1C */
lypinator 0:bb348c97df44 534 } FMC_Bank1_TypeDef;
lypinator 0:bb348c97df44 535
lypinator 0:bb348c97df44 536 /**
lypinator 0:bb348c97df44 537 * @brief Flexible Memory Controller Bank1E
lypinator 0:bb348c97df44 538 */
lypinator 0:bb348c97df44 539
lypinator 0:bb348c97df44 540 typedef struct
lypinator 0:bb348c97df44 541 {
lypinator 0:bb348c97df44 542 __IO uint32_t BWTR[7]; /*!< NOR/PSRAM write timing registers, Address offset: 0x104-0x11C */
lypinator 0:bb348c97df44 543 } FMC_Bank1E_TypeDef;
lypinator 0:bb348c97df44 544 /**
lypinator 0:bb348c97df44 545 * @brief Flexible Memory Controller Bank2
lypinator 0:bb348c97df44 546 */
lypinator 0:bb348c97df44 547
lypinator 0:bb348c97df44 548 typedef struct
lypinator 0:bb348c97df44 549 {
lypinator 0:bb348c97df44 550 __IO uint32_t PCR2; /*!< NAND Flash control register 2, Address offset: 0x60 */
lypinator 0:bb348c97df44 551 __IO uint32_t SR2; /*!< NAND Flash FIFO status and interrupt register 2, Address offset: 0x64 */
lypinator 0:bb348c97df44 552 __IO uint32_t PMEM2; /*!< NAND Flash Common memory space timing register 2, Address offset: 0x68 */
lypinator 0:bb348c97df44 553 __IO uint32_t PATT2; /*!< NAND Flash Attribute memory space timing register 2, Address offset: 0x6C */
lypinator 0:bb348c97df44 554 uint32_t RESERVED0; /*!< Reserved, 0x70 */
lypinator 0:bb348c97df44 555 __IO uint32_t ECCR2; /*!< NAND Flash ECC result registers 2, Address offset: 0x74 */
lypinator 0:bb348c97df44 556 uint32_t RESERVED1; /*!< Reserved, 0x78 */
lypinator 0:bb348c97df44 557 uint32_t RESERVED2; /*!< Reserved, 0x7C */
lypinator 0:bb348c97df44 558 __IO uint32_t PCR3; /*!< NAND Flash control register 3, Address offset: 0x80 */
lypinator 0:bb348c97df44 559 __IO uint32_t SR3; /*!< NAND Flash FIFO status and interrupt register 3, Address offset: 0x84 */
lypinator 0:bb348c97df44 560 __IO uint32_t PMEM3; /*!< NAND Flash Common memory space timing register 3, Address offset: 0x88 */
lypinator 0:bb348c97df44 561 __IO uint32_t PATT3; /*!< NAND Flash Attribute memory space timing register 3, Address offset: 0x8C */
lypinator 0:bb348c97df44 562 uint32_t RESERVED3; /*!< Reserved, 0x90 */
lypinator 0:bb348c97df44 563 __IO uint32_t ECCR3; /*!< NAND Flash ECC result registers 3, Address offset: 0x94 */
lypinator 0:bb348c97df44 564 } FMC_Bank2_3_TypeDef;
lypinator 0:bb348c97df44 565
lypinator 0:bb348c97df44 566 /**
lypinator 0:bb348c97df44 567 * @brief Flexible Memory Controller Bank4
lypinator 0:bb348c97df44 568 */
lypinator 0:bb348c97df44 569
lypinator 0:bb348c97df44 570 typedef struct
lypinator 0:bb348c97df44 571 {
lypinator 0:bb348c97df44 572 __IO uint32_t PCR4; /*!< PC Card control register 4, Address offset: 0xA0 */
lypinator 0:bb348c97df44 573 __IO uint32_t SR4; /*!< PC Card FIFO status and interrupt register 4, Address offset: 0xA4 */
lypinator 0:bb348c97df44 574 __IO uint32_t PMEM4; /*!< PC Card Common memory space timing register 4, Address offset: 0xA8 */
lypinator 0:bb348c97df44 575 __IO uint32_t PATT4; /*!< PC Card Attribute memory space timing register 4, Address offset: 0xAC */
lypinator 0:bb348c97df44 576 __IO uint32_t PIO4; /*!< PC Card I/O space timing register 4, Address offset: 0xB0 */
lypinator 0:bb348c97df44 577 } FMC_Bank4_TypeDef;
lypinator 0:bb348c97df44 578
lypinator 0:bb348c97df44 579 /**
lypinator 0:bb348c97df44 580 * @brief Flexible Memory Controller Bank5_6
lypinator 0:bb348c97df44 581 */
lypinator 0:bb348c97df44 582
lypinator 0:bb348c97df44 583 typedef struct
lypinator 0:bb348c97df44 584 {
lypinator 0:bb348c97df44 585 __IO uint32_t SDCR[2]; /*!< SDRAM Control registers , Address offset: 0x140-0x144 */
lypinator 0:bb348c97df44 586 __IO uint32_t SDTR[2]; /*!< SDRAM Timing registers , Address offset: 0x148-0x14C */
lypinator 0:bb348c97df44 587 __IO uint32_t SDCMR; /*!< SDRAM Command Mode register, Address offset: 0x150 */
lypinator 0:bb348c97df44 588 __IO uint32_t SDRTR; /*!< SDRAM Refresh Timer register, Address offset: 0x154 */
lypinator 0:bb348c97df44 589 __IO uint32_t SDSR; /*!< SDRAM Status register, Address offset: 0x158 */
lypinator 0:bb348c97df44 590 } FMC_Bank5_6_TypeDef;
lypinator 0:bb348c97df44 591
lypinator 0:bb348c97df44 592 /**
lypinator 0:bb348c97df44 593 * @brief General Purpose I/O
lypinator 0:bb348c97df44 594 */
lypinator 0:bb348c97df44 595
lypinator 0:bb348c97df44 596 typedef struct
lypinator 0:bb348c97df44 597 {
lypinator 0:bb348c97df44 598 __IO uint32_t MODER; /*!< GPIO port mode register, Address offset: 0x00 */
lypinator 0:bb348c97df44 599 __IO uint32_t OTYPER; /*!< GPIO port output type register, Address offset: 0x04 */
lypinator 0:bb348c97df44 600 __IO uint32_t OSPEEDR; /*!< GPIO port output speed register, Address offset: 0x08 */
lypinator 0:bb348c97df44 601 __IO uint32_t PUPDR; /*!< GPIO port pull-up/pull-down register, Address offset: 0x0C */
lypinator 0:bb348c97df44 602 __IO uint32_t IDR; /*!< GPIO port input data register, Address offset: 0x10 */
lypinator 0:bb348c97df44 603 __IO uint32_t ODR; /*!< GPIO port output data register, Address offset: 0x14 */
lypinator 0:bb348c97df44 604 __IO uint32_t BSRR; /*!< GPIO port bit set/reset register, Address offset: 0x18 */
lypinator 0:bb348c97df44 605 __IO uint32_t LCKR; /*!< GPIO port configuration lock register, Address offset: 0x1C */
lypinator 0:bb348c97df44 606 __IO uint32_t AFR[2]; /*!< GPIO alternate function registers, Address offset: 0x20-0x24 */
lypinator 0:bb348c97df44 607 } GPIO_TypeDef;
lypinator 0:bb348c97df44 608
lypinator 0:bb348c97df44 609 /**
lypinator 0:bb348c97df44 610 * @brief System configuration controller
lypinator 0:bb348c97df44 611 */
lypinator 0:bb348c97df44 612
lypinator 0:bb348c97df44 613 typedef struct
lypinator 0:bb348c97df44 614 {
lypinator 0:bb348c97df44 615 __IO uint32_t MEMRMP; /*!< SYSCFG memory remap register, Address offset: 0x00 */
lypinator 0:bb348c97df44 616 __IO uint32_t PMC; /*!< SYSCFG peripheral mode configuration register, Address offset: 0x04 */
lypinator 0:bb348c97df44 617 __IO uint32_t EXTICR[4]; /*!< SYSCFG external interrupt configuration registers, Address offset: 0x08-0x14 */
lypinator 0:bb348c97df44 618 uint32_t RESERVED[2]; /*!< Reserved, 0x18-0x1C */
lypinator 0:bb348c97df44 619 __IO uint32_t CMPCR; /*!< SYSCFG Compensation cell control register, Address offset: 0x20 */
lypinator 0:bb348c97df44 620 } SYSCFG_TypeDef;
lypinator 0:bb348c97df44 621
lypinator 0:bb348c97df44 622 /**
lypinator 0:bb348c97df44 623 * @brief Inter-integrated Circuit Interface
lypinator 0:bb348c97df44 624 */
lypinator 0:bb348c97df44 625
lypinator 0:bb348c97df44 626 typedef struct
lypinator 0:bb348c97df44 627 {
lypinator 0:bb348c97df44 628 __IO uint32_t CR1; /*!< I2C Control register 1, Address offset: 0x00 */
lypinator 0:bb348c97df44 629 __IO uint32_t CR2; /*!< I2C Control register 2, Address offset: 0x04 */
lypinator 0:bb348c97df44 630 __IO uint32_t OAR1; /*!< I2C Own address register 1, Address offset: 0x08 */
lypinator 0:bb348c97df44 631 __IO uint32_t OAR2; /*!< I2C Own address register 2, Address offset: 0x0C */
lypinator 0:bb348c97df44 632 __IO uint32_t DR; /*!< I2C Data register, Address offset: 0x10 */
lypinator 0:bb348c97df44 633 __IO uint32_t SR1; /*!< I2C Status register 1, Address offset: 0x14 */
lypinator 0:bb348c97df44 634 __IO uint32_t SR2; /*!< I2C Status register 2, Address offset: 0x18 */
lypinator 0:bb348c97df44 635 __IO uint32_t CCR; /*!< I2C Clock control register, Address offset: 0x1C */
lypinator 0:bb348c97df44 636 __IO uint32_t TRISE; /*!< I2C TRISE register, Address offset: 0x20 */
lypinator 0:bb348c97df44 637 __IO uint32_t FLTR; /*!< I2C FLTR register, Address offset: 0x24 */
lypinator 0:bb348c97df44 638 } I2C_TypeDef;
lypinator 0:bb348c97df44 639
lypinator 0:bb348c97df44 640 /**
lypinator 0:bb348c97df44 641 * @brief Independent WATCHDOG
lypinator 0:bb348c97df44 642 */
lypinator 0:bb348c97df44 643
lypinator 0:bb348c97df44 644 typedef struct
lypinator 0:bb348c97df44 645 {
lypinator 0:bb348c97df44 646 __IO uint32_t KR; /*!< IWDG Key register, Address offset: 0x00 */
lypinator 0:bb348c97df44 647 __IO uint32_t PR; /*!< IWDG Prescaler register, Address offset: 0x04 */
lypinator 0:bb348c97df44 648 __IO uint32_t RLR; /*!< IWDG Reload register, Address offset: 0x08 */
lypinator 0:bb348c97df44 649 __IO uint32_t SR; /*!< IWDG Status register, Address offset: 0x0C */
lypinator 0:bb348c97df44 650 } IWDG_TypeDef;
lypinator 0:bb348c97df44 651
lypinator 0:bb348c97df44 652 /**
lypinator 0:bb348c97df44 653 * @brief LCD-TFT Display Controller
lypinator 0:bb348c97df44 654 */
lypinator 0:bb348c97df44 655
lypinator 0:bb348c97df44 656 typedef struct
lypinator 0:bb348c97df44 657 {
lypinator 0:bb348c97df44 658 uint32_t RESERVED0[2]; /*!< Reserved, 0x00-0x04 */
lypinator 0:bb348c97df44 659 __IO uint32_t SSCR; /*!< LTDC Synchronization Size Configuration Register, Address offset: 0x08 */
lypinator 0:bb348c97df44 660 __IO uint32_t BPCR; /*!< LTDC Back Porch Configuration Register, Address offset: 0x0C */
lypinator 0:bb348c97df44 661 __IO uint32_t AWCR; /*!< LTDC Active Width Configuration Register, Address offset: 0x10 */
lypinator 0:bb348c97df44 662 __IO uint32_t TWCR; /*!< LTDC Total Width Configuration Register, Address offset: 0x14 */
lypinator 0:bb348c97df44 663 __IO uint32_t GCR; /*!< LTDC Global Control Register, Address offset: 0x18 */
lypinator 0:bb348c97df44 664 uint32_t RESERVED1[2]; /*!< Reserved, 0x1C-0x20 */
lypinator 0:bb348c97df44 665 __IO uint32_t SRCR; /*!< LTDC Shadow Reload Configuration Register, Address offset: 0x24 */
lypinator 0:bb348c97df44 666 uint32_t RESERVED2[1]; /*!< Reserved, 0x28 */
lypinator 0:bb348c97df44 667 __IO uint32_t BCCR; /*!< LTDC Background Color Configuration Register, Address offset: 0x2C */
lypinator 0:bb348c97df44 668 uint32_t RESERVED3[1]; /*!< Reserved, 0x30 */
lypinator 0:bb348c97df44 669 __IO uint32_t IER; /*!< LTDC Interrupt Enable Register, Address offset: 0x34 */
lypinator 0:bb348c97df44 670 __IO uint32_t ISR; /*!< LTDC Interrupt Status Register, Address offset: 0x38 */
lypinator 0:bb348c97df44 671 __IO uint32_t ICR; /*!< LTDC Interrupt Clear Register, Address offset: 0x3C */
lypinator 0:bb348c97df44 672 __IO uint32_t LIPCR; /*!< LTDC Line Interrupt Position Configuration Register, Address offset: 0x40 */
lypinator 0:bb348c97df44 673 __IO uint32_t CPSR; /*!< LTDC Current Position Status Register, Address offset: 0x44 */
lypinator 0:bb348c97df44 674 __IO uint32_t CDSR; /*!< LTDC Current Display Status Register, Address offset: 0x48 */
lypinator 0:bb348c97df44 675 } LTDC_TypeDef;
lypinator 0:bb348c97df44 676
lypinator 0:bb348c97df44 677 /**
lypinator 0:bb348c97df44 678 * @brief LCD-TFT Display layer x Controller
lypinator 0:bb348c97df44 679 */
lypinator 0:bb348c97df44 680
lypinator 0:bb348c97df44 681 typedef struct
lypinator 0:bb348c97df44 682 {
lypinator 0:bb348c97df44 683 __IO uint32_t CR; /*!< LTDC Layerx Control Register Address offset: 0x84 */
lypinator 0:bb348c97df44 684 __IO uint32_t WHPCR; /*!< LTDC Layerx Window Horizontal Position Configuration Register Address offset: 0x88 */
lypinator 0:bb348c97df44 685 __IO uint32_t WVPCR; /*!< LTDC Layerx Window Vertical Position Configuration Register Address offset: 0x8C */
lypinator 0:bb348c97df44 686 __IO uint32_t CKCR; /*!< LTDC Layerx Color Keying Configuration Register Address offset: 0x90 */
lypinator 0:bb348c97df44 687 __IO uint32_t PFCR; /*!< LTDC Layerx Pixel Format Configuration Register Address offset: 0x94 */
lypinator 0:bb348c97df44 688 __IO uint32_t CACR; /*!< LTDC Layerx Constant Alpha Configuration Register Address offset: 0x98 */
lypinator 0:bb348c97df44 689 __IO uint32_t DCCR; /*!< LTDC Layerx Default Color Configuration Register Address offset: 0x9C */
lypinator 0:bb348c97df44 690 __IO uint32_t BFCR; /*!< LTDC Layerx Blending Factors Configuration Register Address offset: 0xA0 */
lypinator 0:bb348c97df44 691 uint32_t RESERVED0[2]; /*!< Reserved */
lypinator 0:bb348c97df44 692 __IO uint32_t CFBAR; /*!< LTDC Layerx Color Frame Buffer Address Register Address offset: 0xAC */
lypinator 0:bb348c97df44 693 __IO uint32_t CFBLR; /*!< LTDC Layerx Color Frame Buffer Length Register Address offset: 0xB0 */
lypinator 0:bb348c97df44 694 __IO uint32_t CFBLNR; /*!< LTDC Layerx ColorFrame Buffer Line Number Register Address offset: 0xB4 */
lypinator 0:bb348c97df44 695 uint32_t RESERVED1[3]; /*!< Reserved */
lypinator 0:bb348c97df44 696 __IO uint32_t CLUTWR; /*!< LTDC Layerx CLUT Write Register Address offset: 0x144*/
lypinator 0:bb348c97df44 697 } LTDC_Layer_TypeDef;
lypinator 0:bb348c97df44 698
lypinator 0:bb348c97df44 699 /**
lypinator 0:bb348c97df44 700 * @brief Power Control
lypinator 0:bb348c97df44 701 */
lypinator 0:bb348c97df44 702
lypinator 0:bb348c97df44 703 typedef struct
lypinator 0:bb348c97df44 704 {
lypinator 0:bb348c97df44 705 __IO uint32_t CR; /*!< PWR power control register, Address offset: 0x00 */
lypinator 0:bb348c97df44 706 __IO uint32_t CSR; /*!< PWR power control/status register, Address offset: 0x04 */
lypinator 0:bb348c97df44 707 } PWR_TypeDef;
lypinator 0:bb348c97df44 708
lypinator 0:bb348c97df44 709 /**
lypinator 0:bb348c97df44 710 * @brief Reset and Clock Control
lypinator 0:bb348c97df44 711 */
lypinator 0:bb348c97df44 712
lypinator 0:bb348c97df44 713 typedef struct
lypinator 0:bb348c97df44 714 {
lypinator 0:bb348c97df44 715 __IO uint32_t CR; /*!< RCC clock control register, Address offset: 0x00 */
lypinator 0:bb348c97df44 716 __IO uint32_t PLLCFGR; /*!< RCC PLL configuration register, Address offset: 0x04 */
lypinator 0:bb348c97df44 717 __IO uint32_t CFGR; /*!< RCC clock configuration register, Address offset: 0x08 */
lypinator 0:bb348c97df44 718 __IO uint32_t CIR; /*!< RCC clock interrupt register, Address offset: 0x0C */
lypinator 0:bb348c97df44 719 __IO uint32_t AHB1RSTR; /*!< RCC AHB1 peripheral reset register, Address offset: 0x10 */
lypinator 0:bb348c97df44 720 __IO uint32_t AHB2RSTR; /*!< RCC AHB2 peripheral reset register, Address offset: 0x14 */
lypinator 0:bb348c97df44 721 __IO uint32_t AHB3RSTR; /*!< RCC AHB3 peripheral reset register, Address offset: 0x18 */
lypinator 0:bb348c97df44 722 uint32_t RESERVED0; /*!< Reserved, 0x1C */
lypinator 0:bb348c97df44 723 __IO uint32_t APB1RSTR; /*!< RCC APB1 peripheral reset register, Address offset: 0x20 */
lypinator 0:bb348c97df44 724 __IO uint32_t APB2RSTR; /*!< RCC APB2 peripheral reset register, Address offset: 0x24 */
lypinator 0:bb348c97df44 725 uint32_t RESERVED1[2]; /*!< Reserved, 0x28-0x2C */
lypinator 0:bb348c97df44 726 __IO uint32_t AHB1ENR; /*!< RCC AHB1 peripheral clock register, Address offset: 0x30 */
lypinator 0:bb348c97df44 727 __IO uint32_t AHB2ENR; /*!< RCC AHB2 peripheral clock register, Address offset: 0x34 */
lypinator 0:bb348c97df44 728 __IO uint32_t AHB3ENR; /*!< RCC AHB3 peripheral clock register, Address offset: 0x38 */
lypinator 0:bb348c97df44 729 uint32_t RESERVED2; /*!< Reserved, 0x3C */
lypinator 0:bb348c97df44 730 __IO uint32_t APB1ENR; /*!< RCC APB1 peripheral clock enable register, Address offset: 0x40 */
lypinator 0:bb348c97df44 731 __IO uint32_t APB2ENR; /*!< RCC APB2 peripheral clock enable register, Address offset: 0x44 */
lypinator 0:bb348c97df44 732 uint32_t RESERVED3[2]; /*!< Reserved, 0x48-0x4C */
lypinator 0:bb348c97df44 733 __IO uint32_t AHB1LPENR; /*!< RCC AHB1 peripheral clock enable in low power mode register, Address offset: 0x50 */
lypinator 0:bb348c97df44 734 __IO uint32_t AHB2LPENR; /*!< RCC AHB2 peripheral clock enable in low power mode register, Address offset: 0x54 */
lypinator 0:bb348c97df44 735 __IO uint32_t AHB3LPENR; /*!< RCC AHB3 peripheral clock enable in low power mode register, Address offset: 0x58 */
lypinator 0:bb348c97df44 736 uint32_t RESERVED4; /*!< Reserved, 0x5C */
lypinator 0:bb348c97df44 737 __IO uint32_t APB1LPENR; /*!< RCC APB1 peripheral clock enable in low power mode register, Address offset: 0x60 */
lypinator 0:bb348c97df44 738 __IO uint32_t APB2LPENR; /*!< RCC APB2 peripheral clock enable in low power mode register, Address offset: 0x64 */
lypinator 0:bb348c97df44 739 uint32_t RESERVED5[2]; /*!< Reserved, 0x68-0x6C */
lypinator 0:bb348c97df44 740 __IO uint32_t BDCR; /*!< RCC Backup domain control register, Address offset: 0x70 */
lypinator 0:bb348c97df44 741 __IO uint32_t CSR; /*!< RCC clock control & status register, Address offset: 0x74 */
lypinator 0:bb348c97df44 742 uint32_t RESERVED6[2]; /*!< Reserved, 0x78-0x7C */
lypinator 0:bb348c97df44 743 __IO uint32_t SSCGR; /*!< RCC spread spectrum clock generation register, Address offset: 0x80 */
lypinator 0:bb348c97df44 744 __IO uint32_t PLLI2SCFGR; /*!< RCC PLLI2S configuration register, Address offset: 0x84 */
lypinator 0:bb348c97df44 745 __IO uint32_t PLLSAICFGR; /*!< RCC PLLSAI configuration register, Address offset: 0x88 */
lypinator 0:bb348c97df44 746 __IO uint32_t DCKCFGR; /*!< RCC Dedicated Clocks configuration register, Address offset: 0x8C */
lypinator 0:bb348c97df44 747 } RCC_TypeDef;
lypinator 0:bb348c97df44 748
lypinator 0:bb348c97df44 749 /**
lypinator 0:bb348c97df44 750 * @brief Real-Time Clock
lypinator 0:bb348c97df44 751 */
lypinator 0:bb348c97df44 752
lypinator 0:bb348c97df44 753 typedef struct
lypinator 0:bb348c97df44 754 {
lypinator 0:bb348c97df44 755 __IO uint32_t TR; /*!< RTC time register, Address offset: 0x00 */
lypinator 0:bb348c97df44 756 __IO uint32_t DR; /*!< RTC date register, Address offset: 0x04 */
lypinator 0:bb348c97df44 757 __IO uint32_t CR; /*!< RTC control register, Address offset: 0x08 */
lypinator 0:bb348c97df44 758 __IO uint32_t ISR; /*!< RTC initialization and status register, Address offset: 0x0C */
lypinator 0:bb348c97df44 759 __IO uint32_t PRER; /*!< RTC prescaler register, Address offset: 0x10 */
lypinator 0:bb348c97df44 760 __IO uint32_t WUTR; /*!< RTC wakeup timer register, Address offset: 0x14 */
lypinator 0:bb348c97df44 761 __IO uint32_t CALIBR; /*!< RTC calibration register, Address offset: 0x18 */
lypinator 0:bb348c97df44 762 __IO uint32_t ALRMAR; /*!< RTC alarm A register, Address offset: 0x1C */
lypinator 0:bb348c97df44 763 __IO uint32_t ALRMBR; /*!< RTC alarm B register, Address offset: 0x20 */
lypinator 0:bb348c97df44 764 __IO uint32_t WPR; /*!< RTC write protection register, Address offset: 0x24 */
lypinator 0:bb348c97df44 765 __IO uint32_t SSR; /*!< RTC sub second register, Address offset: 0x28 */
lypinator 0:bb348c97df44 766 __IO uint32_t SHIFTR; /*!< RTC shift control register, Address offset: 0x2C */
lypinator 0:bb348c97df44 767 __IO uint32_t TSTR; /*!< RTC time stamp time register, Address offset: 0x30 */
lypinator 0:bb348c97df44 768 __IO uint32_t TSDR; /*!< RTC time stamp date register, Address offset: 0x34 */
lypinator 0:bb348c97df44 769 __IO uint32_t TSSSR; /*!< RTC time-stamp sub second register, Address offset: 0x38 */
lypinator 0:bb348c97df44 770 __IO uint32_t CALR; /*!< RTC calibration register, Address offset: 0x3C */
lypinator 0:bb348c97df44 771 __IO uint32_t TAFCR; /*!< RTC tamper and alternate function configuration register, Address offset: 0x40 */
lypinator 0:bb348c97df44 772 __IO uint32_t ALRMASSR;/*!< RTC alarm A sub second register, Address offset: 0x44 */
lypinator 0:bb348c97df44 773 __IO uint32_t ALRMBSSR;/*!< RTC alarm B sub second register, Address offset: 0x48 */
lypinator 0:bb348c97df44 774 uint32_t RESERVED7; /*!< Reserved, 0x4C */
lypinator 0:bb348c97df44 775 __IO uint32_t BKP0R; /*!< RTC backup register 1, Address offset: 0x50 */
lypinator 0:bb348c97df44 776 __IO uint32_t BKP1R; /*!< RTC backup register 1, Address offset: 0x54 */
lypinator 0:bb348c97df44 777 __IO uint32_t BKP2R; /*!< RTC backup register 2, Address offset: 0x58 */
lypinator 0:bb348c97df44 778 __IO uint32_t BKP3R; /*!< RTC backup register 3, Address offset: 0x5C */
lypinator 0:bb348c97df44 779 __IO uint32_t BKP4R; /*!< RTC backup register 4, Address offset: 0x60 */
lypinator 0:bb348c97df44 780 __IO uint32_t BKP5R; /*!< RTC backup register 5, Address offset: 0x64 */
lypinator 0:bb348c97df44 781 __IO uint32_t BKP6R; /*!< RTC backup register 6, Address offset: 0x68 */
lypinator 0:bb348c97df44 782 __IO uint32_t BKP7R; /*!< RTC backup register 7, Address offset: 0x6C */
lypinator 0:bb348c97df44 783 __IO uint32_t BKP8R; /*!< RTC backup register 8, Address offset: 0x70 */
lypinator 0:bb348c97df44 784 __IO uint32_t BKP9R; /*!< RTC backup register 9, Address offset: 0x74 */
lypinator 0:bb348c97df44 785 __IO uint32_t BKP10R; /*!< RTC backup register 10, Address offset: 0x78 */
lypinator 0:bb348c97df44 786 __IO uint32_t BKP11R; /*!< RTC backup register 11, Address offset: 0x7C */
lypinator 0:bb348c97df44 787 __IO uint32_t BKP12R; /*!< RTC backup register 12, Address offset: 0x80 */
lypinator 0:bb348c97df44 788 __IO uint32_t BKP13R; /*!< RTC backup register 13, Address offset: 0x84 */
lypinator 0:bb348c97df44 789 __IO uint32_t BKP14R; /*!< RTC backup register 14, Address offset: 0x88 */
lypinator 0:bb348c97df44 790 __IO uint32_t BKP15R; /*!< RTC backup register 15, Address offset: 0x8C */
lypinator 0:bb348c97df44 791 __IO uint32_t BKP16R; /*!< RTC backup register 16, Address offset: 0x90 */
lypinator 0:bb348c97df44 792 __IO uint32_t BKP17R; /*!< RTC backup register 17, Address offset: 0x94 */
lypinator 0:bb348c97df44 793 __IO uint32_t BKP18R; /*!< RTC backup register 18, Address offset: 0x98 */
lypinator 0:bb348c97df44 794 __IO uint32_t BKP19R; /*!< RTC backup register 19, Address offset: 0x9C */
lypinator 0:bb348c97df44 795 } RTC_TypeDef;
lypinator 0:bb348c97df44 796
lypinator 0:bb348c97df44 797 /**
lypinator 0:bb348c97df44 798 * @brief Serial Audio Interface
lypinator 0:bb348c97df44 799 */
lypinator 0:bb348c97df44 800
lypinator 0:bb348c97df44 801 typedef struct
lypinator 0:bb348c97df44 802 {
lypinator 0:bb348c97df44 803 __IO uint32_t GCR; /*!< SAI global configuration register, Address offset: 0x00 */
lypinator 0:bb348c97df44 804 } SAI_TypeDef;
lypinator 0:bb348c97df44 805
lypinator 0:bb348c97df44 806 typedef struct
lypinator 0:bb348c97df44 807 {
lypinator 0:bb348c97df44 808 __IO uint32_t CR1; /*!< SAI block x configuration register 1, Address offset: 0x04 */
lypinator 0:bb348c97df44 809 __IO uint32_t CR2; /*!< SAI block x configuration register 2, Address offset: 0x08 */
lypinator 0:bb348c97df44 810 __IO uint32_t FRCR; /*!< SAI block x frame configuration register, Address offset: 0x0C */
lypinator 0:bb348c97df44 811 __IO uint32_t SLOTR; /*!< SAI block x slot register, Address offset: 0x10 */
lypinator 0:bb348c97df44 812 __IO uint32_t IMR; /*!< SAI block x interrupt mask register, Address offset: 0x14 */
lypinator 0:bb348c97df44 813 __IO uint32_t SR; /*!< SAI block x status register, Address offset: 0x18 */
lypinator 0:bb348c97df44 814 __IO uint32_t CLRFR; /*!< SAI block x clear flag register, Address offset: 0x1C */
lypinator 0:bb348c97df44 815 __IO uint32_t DR; /*!< SAI block x data register, Address offset: 0x20 */
lypinator 0:bb348c97df44 816 } SAI_Block_TypeDef;
lypinator 0:bb348c97df44 817
lypinator 0:bb348c97df44 818 /**
lypinator 0:bb348c97df44 819 * @brief SD host Interface
lypinator 0:bb348c97df44 820 */
lypinator 0:bb348c97df44 821
lypinator 0:bb348c97df44 822 typedef struct
lypinator 0:bb348c97df44 823 {
lypinator 0:bb348c97df44 824 __IO uint32_t POWER; /*!< SDIO power control register, Address offset: 0x00 */
lypinator 0:bb348c97df44 825 __IO uint32_t CLKCR; /*!< SDI clock control register, Address offset: 0x04 */
lypinator 0:bb348c97df44 826 __IO uint32_t ARG; /*!< SDIO argument register, Address offset: 0x08 */
lypinator 0:bb348c97df44 827 __IO uint32_t CMD; /*!< SDIO command register, Address offset: 0x0C */
lypinator 0:bb348c97df44 828 __IO const uint32_t RESPCMD; /*!< SDIO command response register, Address offset: 0x10 */
lypinator 0:bb348c97df44 829 __IO const uint32_t RESP1; /*!< SDIO response 1 register, Address offset: 0x14 */
lypinator 0:bb348c97df44 830 __IO const uint32_t RESP2; /*!< SDIO response 2 register, Address offset: 0x18 */
lypinator 0:bb348c97df44 831 __IO const uint32_t RESP3; /*!< SDIO response 3 register, Address offset: 0x1C */
lypinator 0:bb348c97df44 832 __IO const uint32_t RESP4; /*!< SDIO response 4 register, Address offset: 0x20 */
lypinator 0:bb348c97df44 833 __IO uint32_t DTIMER; /*!< SDIO data timer register, Address offset: 0x24 */
lypinator 0:bb348c97df44 834 __IO uint32_t DLEN; /*!< SDIO data length register, Address offset: 0x28 */
lypinator 0:bb348c97df44 835 __IO uint32_t DCTRL; /*!< SDIO data control register, Address offset: 0x2C */
lypinator 0:bb348c97df44 836 __IO const uint32_t DCOUNT; /*!< SDIO data counter register, Address offset: 0x30 */
lypinator 0:bb348c97df44 837 __IO const uint32_t STA; /*!< SDIO status register, Address offset: 0x34 */
lypinator 0:bb348c97df44 838 __IO uint32_t ICR; /*!< SDIO interrupt clear register, Address offset: 0x38 */
lypinator 0:bb348c97df44 839 __IO uint32_t MASK; /*!< SDIO mask register, Address offset: 0x3C */
lypinator 0:bb348c97df44 840 uint32_t RESERVED0[2]; /*!< Reserved, 0x40-0x44 */
lypinator 0:bb348c97df44 841 __IO const uint32_t FIFOCNT; /*!< SDIO FIFO counter register, Address offset: 0x48 */
lypinator 0:bb348c97df44 842 uint32_t RESERVED1[13]; /*!< Reserved, 0x4C-0x7C */
lypinator 0:bb348c97df44 843 __IO uint32_t FIFO; /*!< SDIO data FIFO register, Address offset: 0x80 */
lypinator 0:bb348c97df44 844 } SDIO_TypeDef;
lypinator 0:bb348c97df44 845
lypinator 0:bb348c97df44 846 /**
lypinator 0:bb348c97df44 847 * @brief Serial Peripheral Interface
lypinator 0:bb348c97df44 848 */
lypinator 0:bb348c97df44 849
lypinator 0:bb348c97df44 850 typedef struct
lypinator 0:bb348c97df44 851 {
lypinator 0:bb348c97df44 852 __IO uint32_t CR1; /*!< SPI control register 1 (not used in I2S mode), Address offset: 0x00 */
lypinator 0:bb348c97df44 853 __IO uint32_t CR2; /*!< SPI control register 2, Address offset: 0x04 */
lypinator 0:bb348c97df44 854 __IO uint32_t SR; /*!< SPI status register, Address offset: 0x08 */
lypinator 0:bb348c97df44 855 __IO uint32_t DR; /*!< SPI data register, Address offset: 0x0C */
lypinator 0:bb348c97df44 856 __IO uint32_t CRCPR; /*!< SPI CRC polynomial register (not used in I2S mode), Address offset: 0x10 */
lypinator 0:bb348c97df44 857 __IO uint32_t RXCRCR; /*!< SPI RX CRC register (not used in I2S mode), Address offset: 0x14 */
lypinator 0:bb348c97df44 858 __IO uint32_t TXCRCR; /*!< SPI TX CRC register (not used in I2S mode), Address offset: 0x18 */
lypinator 0:bb348c97df44 859 __IO uint32_t I2SCFGR; /*!< SPI_I2S configuration register, Address offset: 0x1C */
lypinator 0:bb348c97df44 860 __IO uint32_t I2SPR; /*!< SPI_I2S prescaler register, Address offset: 0x20 */
lypinator 0:bb348c97df44 861 } SPI_TypeDef;
lypinator 0:bb348c97df44 862
lypinator 0:bb348c97df44 863
lypinator 0:bb348c97df44 864 /**
lypinator 0:bb348c97df44 865 * @brief TIM
lypinator 0:bb348c97df44 866 */
lypinator 0:bb348c97df44 867
lypinator 0:bb348c97df44 868 typedef struct
lypinator 0:bb348c97df44 869 {
lypinator 0:bb348c97df44 870 __IO uint32_t CR1; /*!< TIM control register 1, Address offset: 0x00 */
lypinator 0:bb348c97df44 871 __IO uint32_t CR2; /*!< TIM control register 2, Address offset: 0x04 */
lypinator 0:bb348c97df44 872 __IO uint32_t SMCR; /*!< TIM slave mode control register, Address offset: 0x08 */
lypinator 0:bb348c97df44 873 __IO uint32_t DIER; /*!< TIM DMA/interrupt enable register, Address offset: 0x0C */
lypinator 0:bb348c97df44 874 __IO uint32_t SR; /*!< TIM status register, Address offset: 0x10 */
lypinator 0:bb348c97df44 875 __IO uint32_t EGR; /*!< TIM event generation register, Address offset: 0x14 */
lypinator 0:bb348c97df44 876 __IO uint32_t CCMR1; /*!< TIM capture/compare mode register 1, Address offset: 0x18 */
lypinator 0:bb348c97df44 877 __IO uint32_t CCMR2; /*!< TIM capture/compare mode register 2, Address offset: 0x1C */
lypinator 0:bb348c97df44 878 __IO uint32_t CCER; /*!< TIM capture/compare enable register, Address offset: 0x20 */
lypinator 0:bb348c97df44 879 __IO uint32_t CNT; /*!< TIM counter register, Address offset: 0x24 */
lypinator 0:bb348c97df44 880 __IO uint32_t PSC; /*!< TIM prescaler, Address offset: 0x28 */
lypinator 0:bb348c97df44 881 __IO uint32_t ARR; /*!< TIM auto-reload register, Address offset: 0x2C */
lypinator 0:bb348c97df44 882 __IO uint32_t RCR; /*!< TIM repetition counter register, Address offset: 0x30 */
lypinator 0:bb348c97df44 883 __IO uint32_t CCR1; /*!< TIM capture/compare register 1, Address offset: 0x34 */
lypinator 0:bb348c97df44 884 __IO uint32_t CCR2; /*!< TIM capture/compare register 2, Address offset: 0x38 */
lypinator 0:bb348c97df44 885 __IO uint32_t CCR3; /*!< TIM capture/compare register 3, Address offset: 0x3C */
lypinator 0:bb348c97df44 886 __IO uint32_t CCR4; /*!< TIM capture/compare register 4, Address offset: 0x40 */
lypinator 0:bb348c97df44 887 __IO uint32_t BDTR; /*!< TIM break and dead-time register, Address offset: 0x44 */
lypinator 0:bb348c97df44 888 __IO uint32_t DCR; /*!< TIM DMA control register, Address offset: 0x48 */
lypinator 0:bb348c97df44 889 __IO uint32_t DMAR; /*!< TIM DMA address for full transfer, Address offset: 0x4C */
lypinator 0:bb348c97df44 890 __IO uint32_t OR; /*!< TIM option register, Address offset: 0x50 */
lypinator 0:bb348c97df44 891 } TIM_TypeDef;
lypinator 0:bb348c97df44 892
lypinator 0:bb348c97df44 893 /**
lypinator 0:bb348c97df44 894 * @brief Universal Synchronous Asynchronous Receiver Transmitter
lypinator 0:bb348c97df44 895 */
lypinator 0:bb348c97df44 896
lypinator 0:bb348c97df44 897 typedef struct
lypinator 0:bb348c97df44 898 {
lypinator 0:bb348c97df44 899 __IO uint32_t SR; /*!< USART Status register, Address offset: 0x00 */
lypinator 0:bb348c97df44 900 __IO uint32_t DR; /*!< USART Data register, Address offset: 0x04 */
lypinator 0:bb348c97df44 901 __IO uint32_t BRR; /*!< USART Baud rate register, Address offset: 0x08 */
lypinator 0:bb348c97df44 902 __IO uint32_t CR1; /*!< USART Control register 1, Address offset: 0x0C */
lypinator 0:bb348c97df44 903 __IO uint32_t CR2; /*!< USART Control register 2, Address offset: 0x10 */
lypinator 0:bb348c97df44 904 __IO uint32_t CR3; /*!< USART Control register 3, Address offset: 0x14 */
lypinator 0:bb348c97df44 905 __IO uint32_t GTPR; /*!< USART Guard time and prescaler register, Address offset: 0x18 */
lypinator 0:bb348c97df44 906 } USART_TypeDef;
lypinator 0:bb348c97df44 907
lypinator 0:bb348c97df44 908 /**
lypinator 0:bb348c97df44 909 * @brief Window WATCHDOG
lypinator 0:bb348c97df44 910 */
lypinator 0:bb348c97df44 911
lypinator 0:bb348c97df44 912 typedef struct
lypinator 0:bb348c97df44 913 {
lypinator 0:bb348c97df44 914 __IO uint32_t CR; /*!< WWDG Control register, Address offset: 0x00 */
lypinator 0:bb348c97df44 915 __IO uint32_t CFR; /*!< WWDG Configuration register, Address offset: 0x04 */
lypinator 0:bb348c97df44 916 __IO uint32_t SR; /*!< WWDG Status register, Address offset: 0x08 */
lypinator 0:bb348c97df44 917 } WWDG_TypeDef;
lypinator 0:bb348c97df44 918
lypinator 0:bb348c97df44 919 /**
lypinator 0:bb348c97df44 920 * @brief Crypto Processor
lypinator 0:bb348c97df44 921 */
lypinator 0:bb348c97df44 922
lypinator 0:bb348c97df44 923 typedef struct
lypinator 0:bb348c97df44 924 {
lypinator 0:bb348c97df44 925 __IO uint32_t CR; /*!< CRYP control register, Address offset: 0x00 */
lypinator 0:bb348c97df44 926 __IO uint32_t SR; /*!< CRYP status register, Address offset: 0x04 */
lypinator 0:bb348c97df44 927 __IO uint32_t DR; /*!< CRYP data input register, Address offset: 0x08 */
lypinator 0:bb348c97df44 928 __IO uint32_t DOUT; /*!< CRYP data output register, Address offset: 0x0C */
lypinator 0:bb348c97df44 929 __IO uint32_t DMACR; /*!< CRYP DMA control register, Address offset: 0x10 */
lypinator 0:bb348c97df44 930 __IO uint32_t IMSCR; /*!< CRYP interrupt mask set/clear register, Address offset: 0x14 */
lypinator 0:bb348c97df44 931 __IO uint32_t RISR; /*!< CRYP raw interrupt status register, Address offset: 0x18 */
lypinator 0:bb348c97df44 932 __IO uint32_t MISR; /*!< CRYP masked interrupt status register, Address offset: 0x1C */
lypinator 0:bb348c97df44 933 __IO uint32_t K0LR; /*!< CRYP key left register 0, Address offset: 0x20 */
lypinator 0:bb348c97df44 934 __IO uint32_t K0RR; /*!< CRYP key right register 0, Address offset: 0x24 */
lypinator 0:bb348c97df44 935 __IO uint32_t K1LR; /*!< CRYP key left register 1, Address offset: 0x28 */
lypinator 0:bb348c97df44 936 __IO uint32_t K1RR; /*!< CRYP key right register 1, Address offset: 0x2C */
lypinator 0:bb348c97df44 937 __IO uint32_t K2LR; /*!< CRYP key left register 2, Address offset: 0x30 */
lypinator 0:bb348c97df44 938 __IO uint32_t K2RR; /*!< CRYP key right register 2, Address offset: 0x34 */
lypinator 0:bb348c97df44 939 __IO uint32_t K3LR; /*!< CRYP key left register 3, Address offset: 0x38 */
lypinator 0:bb348c97df44 940 __IO uint32_t K3RR; /*!< CRYP key right register 3, Address offset: 0x3C */
lypinator 0:bb348c97df44 941 __IO uint32_t IV0LR; /*!< CRYP initialization vector left-word register 0, Address offset: 0x40 */
lypinator 0:bb348c97df44 942 __IO uint32_t IV0RR; /*!< CRYP initialization vector right-word register 0, Address offset: 0x44 */
lypinator 0:bb348c97df44 943 __IO uint32_t IV1LR; /*!< CRYP initialization vector left-word register 1, Address offset: 0x48 */
lypinator 0:bb348c97df44 944 __IO uint32_t IV1RR; /*!< CRYP initialization vector right-word register 1, Address offset: 0x4C */
lypinator 0:bb348c97df44 945 __IO uint32_t CSGCMCCM0R; /*!< CRYP GCM/GMAC or CCM/CMAC context swap register 0, Address offset: 0x50 */
lypinator 0:bb348c97df44 946 __IO uint32_t CSGCMCCM1R; /*!< CRYP GCM/GMAC or CCM/CMAC context swap register 1, Address offset: 0x54 */
lypinator 0:bb348c97df44 947 __IO uint32_t CSGCMCCM2R; /*!< CRYP GCM/GMAC or CCM/CMAC context swap register 2, Address offset: 0x58 */
lypinator 0:bb348c97df44 948 __IO uint32_t CSGCMCCM3R; /*!< CRYP GCM/GMAC or CCM/CMAC context swap register 3, Address offset: 0x5C */
lypinator 0:bb348c97df44 949 __IO uint32_t CSGCMCCM4R; /*!< CRYP GCM/GMAC or CCM/CMAC context swap register 4, Address offset: 0x60 */
lypinator 0:bb348c97df44 950 __IO uint32_t CSGCMCCM5R; /*!< CRYP GCM/GMAC or CCM/CMAC context swap register 5, Address offset: 0x64 */
lypinator 0:bb348c97df44 951 __IO uint32_t CSGCMCCM6R; /*!< CRYP GCM/GMAC or CCM/CMAC context swap register 6, Address offset: 0x68 */
lypinator 0:bb348c97df44 952 __IO uint32_t CSGCMCCM7R; /*!< CRYP GCM/GMAC or CCM/CMAC context swap register 7, Address offset: 0x6C */
lypinator 0:bb348c97df44 953 __IO uint32_t CSGCM0R; /*!< CRYP GCM/GMAC context swap register 0, Address offset: 0x70 */
lypinator 0:bb348c97df44 954 __IO uint32_t CSGCM1R; /*!< CRYP GCM/GMAC context swap register 1, Address offset: 0x74 */
lypinator 0:bb348c97df44 955 __IO uint32_t CSGCM2R; /*!< CRYP GCM/GMAC context swap register 2, Address offset: 0x78 */
lypinator 0:bb348c97df44 956 __IO uint32_t CSGCM3R; /*!< CRYP GCM/GMAC context swap register 3, Address offset: 0x7C */
lypinator 0:bb348c97df44 957 __IO uint32_t CSGCM4R; /*!< CRYP GCM/GMAC context swap register 4, Address offset: 0x80 */
lypinator 0:bb348c97df44 958 __IO uint32_t CSGCM5R; /*!< CRYP GCM/GMAC context swap register 5, Address offset: 0x84 */
lypinator 0:bb348c97df44 959 __IO uint32_t CSGCM6R; /*!< CRYP GCM/GMAC context swap register 6, Address offset: 0x88 */
lypinator 0:bb348c97df44 960 __IO uint32_t CSGCM7R; /*!< CRYP GCM/GMAC context swap register 7, Address offset: 0x8C */
lypinator 0:bb348c97df44 961 } CRYP_TypeDef;
lypinator 0:bb348c97df44 962
lypinator 0:bb348c97df44 963 /**
lypinator 0:bb348c97df44 964 * @brief HASH
lypinator 0:bb348c97df44 965 */
lypinator 0:bb348c97df44 966
lypinator 0:bb348c97df44 967 typedef struct
lypinator 0:bb348c97df44 968 {
lypinator 0:bb348c97df44 969 __IO uint32_t CR; /*!< HASH control register, Address offset: 0x00 */
lypinator 0:bb348c97df44 970 __IO uint32_t DIN; /*!< HASH data input register, Address offset: 0x04 */
lypinator 0:bb348c97df44 971 __IO uint32_t STR; /*!< HASH start register, Address offset: 0x08 */
lypinator 0:bb348c97df44 972 __IO uint32_t HR[5]; /*!< HASH digest registers, Address offset: 0x0C-0x1C */
lypinator 0:bb348c97df44 973 __IO uint32_t IMR; /*!< HASH interrupt enable register, Address offset: 0x20 */
lypinator 0:bb348c97df44 974 __IO uint32_t SR; /*!< HASH status register, Address offset: 0x24 */
lypinator 0:bb348c97df44 975 uint32_t RESERVED[52]; /*!< Reserved, 0x28-0xF4 */
lypinator 0:bb348c97df44 976 __IO uint32_t CSR[54]; /*!< HASH context swap registers, Address offset: 0x0F8-0x1CC */
lypinator 0:bb348c97df44 977 } HASH_TypeDef;
lypinator 0:bb348c97df44 978
lypinator 0:bb348c97df44 979 /**
lypinator 0:bb348c97df44 980 * @brief HASH_DIGEST
lypinator 0:bb348c97df44 981 */
lypinator 0:bb348c97df44 982
lypinator 0:bb348c97df44 983 typedef struct
lypinator 0:bb348c97df44 984 {
lypinator 0:bb348c97df44 985 __IO uint32_t HR[8]; /*!< HASH digest registers, Address offset: 0x310-0x32C */
lypinator 0:bb348c97df44 986 } HASH_DIGEST_TypeDef;
lypinator 0:bb348c97df44 987
lypinator 0:bb348c97df44 988 /**
lypinator 0:bb348c97df44 989 * @brief RNG
lypinator 0:bb348c97df44 990 */
lypinator 0:bb348c97df44 991
lypinator 0:bb348c97df44 992 typedef struct
lypinator 0:bb348c97df44 993 {
lypinator 0:bb348c97df44 994 __IO uint32_t CR; /*!< RNG control register, Address offset: 0x00 */
lypinator 0:bb348c97df44 995 __IO uint32_t SR; /*!< RNG status register, Address offset: 0x04 */
lypinator 0:bb348c97df44 996 __IO uint32_t DR; /*!< RNG data register, Address offset: 0x08 */
lypinator 0:bb348c97df44 997 } RNG_TypeDef;
lypinator 0:bb348c97df44 998
lypinator 0:bb348c97df44 999 /**
lypinator 0:bb348c97df44 1000 * @brief USB_OTG_Core_Registers
lypinator 0:bb348c97df44 1001 */
lypinator 0:bb348c97df44 1002 typedef struct
lypinator 0:bb348c97df44 1003 {
lypinator 0:bb348c97df44 1004 __IO uint32_t GOTGCTL; /*!< USB_OTG Control and Status Register 000h */
lypinator 0:bb348c97df44 1005 __IO uint32_t GOTGINT; /*!< USB_OTG Interrupt Register 004h */
lypinator 0:bb348c97df44 1006 __IO uint32_t GAHBCFG; /*!< Core AHB Configuration Register 008h */
lypinator 0:bb348c97df44 1007 __IO uint32_t GUSBCFG; /*!< Core USB Configuration Register 00Ch */
lypinator 0:bb348c97df44 1008 __IO uint32_t GRSTCTL; /*!< Core Reset Register 010h */
lypinator 0:bb348c97df44 1009 __IO uint32_t GINTSTS; /*!< Core Interrupt Register 014h */
lypinator 0:bb348c97df44 1010 __IO uint32_t GINTMSK; /*!< Core Interrupt Mask Register 018h */
lypinator 0:bb348c97df44 1011 __IO uint32_t GRXSTSR; /*!< Receive Sts Q Read Register 01Ch */
lypinator 0:bb348c97df44 1012 __IO uint32_t GRXSTSP; /*!< Receive Sts Q Read & POP Register 020h */
lypinator 0:bb348c97df44 1013 __IO uint32_t GRXFSIZ; /*!< Receive FIFO Size Register 024h */
lypinator 0:bb348c97df44 1014 __IO uint32_t DIEPTXF0_HNPTXFSIZ; /*!< EP0 / Non Periodic Tx FIFO Size Register 028h */
lypinator 0:bb348c97df44 1015 __IO uint32_t HNPTXSTS; /*!< Non Periodic Tx FIFO/Queue Sts reg 02Ch */
lypinator 0:bb348c97df44 1016 uint32_t Reserved30[2]; /*!< Reserved 030h */
lypinator 0:bb348c97df44 1017 __IO uint32_t GCCFG; /*!< General Purpose IO Register 038h */
lypinator 0:bb348c97df44 1018 __IO uint32_t CID; /*!< User ID Register 03Ch */
lypinator 0:bb348c97df44 1019 uint32_t Reserved40[48]; /*!< Reserved 0x40-0xFF */
lypinator 0:bb348c97df44 1020 __IO uint32_t HPTXFSIZ; /*!< Host Periodic Tx FIFO Size Reg 100h */
lypinator 0:bb348c97df44 1021 __IO uint32_t DIEPTXF[0x0F]; /*!< dev Periodic Transmit FIFO */
lypinator 0:bb348c97df44 1022 } USB_OTG_GlobalTypeDef;
lypinator 0:bb348c97df44 1023
lypinator 0:bb348c97df44 1024 /**
lypinator 0:bb348c97df44 1025 * @brief USB_OTG_device_Registers
lypinator 0:bb348c97df44 1026 */
lypinator 0:bb348c97df44 1027 typedef struct
lypinator 0:bb348c97df44 1028 {
lypinator 0:bb348c97df44 1029 __IO uint32_t DCFG; /*!< dev Configuration Register 800h */
lypinator 0:bb348c97df44 1030 __IO uint32_t DCTL; /*!< dev Control Register 804h */
lypinator 0:bb348c97df44 1031 __IO uint32_t DSTS; /*!< dev Status Register (RO) 808h */
lypinator 0:bb348c97df44 1032 uint32_t Reserved0C; /*!< Reserved 80Ch */
lypinator 0:bb348c97df44 1033 __IO uint32_t DIEPMSK; /*!< dev IN Endpoint Mask 810h */
lypinator 0:bb348c97df44 1034 __IO uint32_t DOEPMSK; /*!< dev OUT Endpoint Mask 814h */
lypinator 0:bb348c97df44 1035 __IO uint32_t DAINT; /*!< dev All Endpoints Itr Reg 818h */
lypinator 0:bb348c97df44 1036 __IO uint32_t DAINTMSK; /*!< dev All Endpoints Itr Mask 81Ch */
lypinator 0:bb348c97df44 1037 uint32_t Reserved20; /*!< Reserved 820h */
lypinator 0:bb348c97df44 1038 uint32_t Reserved9; /*!< Reserved 824h */
lypinator 0:bb348c97df44 1039 __IO uint32_t DVBUSDIS; /*!< dev VBUS discharge Register 828h */
lypinator 0:bb348c97df44 1040 __IO uint32_t DVBUSPULSE; /*!< dev VBUS Pulse Register 82Ch */
lypinator 0:bb348c97df44 1041 __IO uint32_t DTHRCTL; /*!< dev threshold 830h */
lypinator 0:bb348c97df44 1042 __IO uint32_t DIEPEMPMSK; /*!< dev empty msk 834h */
lypinator 0:bb348c97df44 1043 __IO uint32_t DEACHINT; /*!< dedicated EP interrupt 838h */
lypinator 0:bb348c97df44 1044 __IO uint32_t DEACHMSK; /*!< dedicated EP msk 83Ch */
lypinator 0:bb348c97df44 1045 uint32_t Reserved40; /*!< dedicated EP mask 840h */
lypinator 0:bb348c97df44 1046 __IO uint32_t DINEP1MSK; /*!< dedicated EP mask 844h */
lypinator 0:bb348c97df44 1047 uint32_t Reserved44[15]; /*!< Reserved 844-87Ch */
lypinator 0:bb348c97df44 1048 __IO uint32_t DOUTEP1MSK; /*!< dedicated EP msk 884h */
lypinator 0:bb348c97df44 1049 } USB_OTG_DeviceTypeDef;
lypinator 0:bb348c97df44 1050
lypinator 0:bb348c97df44 1051 /**
lypinator 0:bb348c97df44 1052 * @brief USB_OTG_IN_Endpoint-Specific_Register
lypinator 0:bb348c97df44 1053 */
lypinator 0:bb348c97df44 1054 typedef struct
lypinator 0:bb348c97df44 1055 {
lypinator 0:bb348c97df44 1056 __IO uint32_t DIEPCTL; /*!< dev IN Endpoint Control Reg 900h + (ep_num * 20h) + 00h */
lypinator 0:bb348c97df44 1057 uint32_t Reserved04; /*!< Reserved 900h + (ep_num * 20h) + 04h */
lypinator 0:bb348c97df44 1058 __IO uint32_t DIEPINT; /*!< dev IN Endpoint Itr Reg 900h + (ep_num * 20h) + 08h */
lypinator 0:bb348c97df44 1059 uint32_t Reserved0C; /*!< Reserved 900h + (ep_num * 20h) + 0Ch */
lypinator 0:bb348c97df44 1060 __IO uint32_t DIEPTSIZ; /*!< IN Endpoint Txfer Size 900h + (ep_num * 20h) + 10h */
lypinator 0:bb348c97df44 1061 __IO uint32_t DIEPDMA; /*!< IN Endpoint DMA Address Reg 900h + (ep_num * 20h) + 14h */
lypinator 0:bb348c97df44 1062 __IO uint32_t DTXFSTS; /*!< IN Endpoint Tx FIFO Status Reg 900h + (ep_num * 20h) + 18h */
lypinator 0:bb348c97df44 1063 uint32_t Reserved18; /*!< Reserved 900h+(ep_num*20h)+1Ch-900h+ (ep_num * 20h) + 1Ch */
lypinator 0:bb348c97df44 1064 } USB_OTG_INEndpointTypeDef;
lypinator 0:bb348c97df44 1065
lypinator 0:bb348c97df44 1066 /**
lypinator 0:bb348c97df44 1067 * @brief USB_OTG_OUT_Endpoint-Specific_Registers
lypinator 0:bb348c97df44 1068 */
lypinator 0:bb348c97df44 1069 typedef struct
lypinator 0:bb348c97df44 1070 {
lypinator 0:bb348c97df44 1071 __IO uint32_t DOEPCTL; /*!< dev OUT Endpoint Control Reg B00h + (ep_num * 20h) + 00h */
lypinator 0:bb348c97df44 1072 uint32_t Reserved04; /*!< Reserved B00h + (ep_num * 20h) + 04h */
lypinator 0:bb348c97df44 1073 __IO uint32_t DOEPINT; /*!< dev OUT Endpoint Itr Reg B00h + (ep_num * 20h) + 08h */
lypinator 0:bb348c97df44 1074 uint32_t Reserved0C; /*!< Reserved B00h + (ep_num * 20h) + 0Ch */
lypinator 0:bb348c97df44 1075 __IO uint32_t DOEPTSIZ; /*!< dev OUT Endpoint Txfer Size B00h + (ep_num * 20h) + 10h */
lypinator 0:bb348c97df44 1076 __IO uint32_t DOEPDMA; /*!< dev OUT Endpoint DMA Address B00h + (ep_num * 20h) + 14h */
lypinator 0:bb348c97df44 1077 uint32_t Reserved18[2]; /*!< Reserved B00h + (ep_num * 20h) + 18h - B00h + (ep_num * 20h) + 1Ch */
lypinator 0:bb348c97df44 1078 } USB_OTG_OUTEndpointTypeDef;
lypinator 0:bb348c97df44 1079
lypinator 0:bb348c97df44 1080 /**
lypinator 0:bb348c97df44 1081 * @brief USB_OTG_Host_Mode_Register_Structures
lypinator 0:bb348c97df44 1082 */
lypinator 0:bb348c97df44 1083 typedef struct
lypinator 0:bb348c97df44 1084 {
lypinator 0:bb348c97df44 1085 __IO uint32_t HCFG; /*!< Host Configuration Register 400h */
lypinator 0:bb348c97df44 1086 __IO uint32_t HFIR; /*!< Host Frame Interval Register 404h */
lypinator 0:bb348c97df44 1087 __IO uint32_t HFNUM; /*!< Host Frame Nbr/Frame Remaining 408h */
lypinator 0:bb348c97df44 1088 uint32_t Reserved40C; /*!< Reserved 40Ch */
lypinator 0:bb348c97df44 1089 __IO uint32_t HPTXSTS; /*!< Host Periodic Tx FIFO/ Queue Status 410h */
lypinator 0:bb348c97df44 1090 __IO uint32_t HAINT; /*!< Host All Channels Interrupt Register 414h */
lypinator 0:bb348c97df44 1091 __IO uint32_t HAINTMSK; /*!< Host All Channels Interrupt Mask 418h */
lypinator 0:bb348c97df44 1092 } USB_OTG_HostTypeDef;
lypinator 0:bb348c97df44 1093
lypinator 0:bb348c97df44 1094 /**
lypinator 0:bb348c97df44 1095 * @brief USB_OTG_Host_Channel_Specific_Registers
lypinator 0:bb348c97df44 1096 */
lypinator 0:bb348c97df44 1097 typedef struct
lypinator 0:bb348c97df44 1098 {
lypinator 0:bb348c97df44 1099 __IO uint32_t HCCHAR; /*!< Host Channel Characteristics Register 500h */
lypinator 0:bb348c97df44 1100 __IO uint32_t HCSPLT; /*!< Host Channel Split Control Register 504h */
lypinator 0:bb348c97df44 1101 __IO uint32_t HCINT; /*!< Host Channel Interrupt Register 508h */
lypinator 0:bb348c97df44 1102 __IO uint32_t HCINTMSK; /*!< Host Channel Interrupt Mask Register 50Ch */
lypinator 0:bb348c97df44 1103 __IO uint32_t HCTSIZ; /*!< Host Channel Transfer Size Register 510h */
lypinator 0:bb348c97df44 1104 __IO uint32_t HCDMA; /*!< Host Channel DMA Address Register 514h */
lypinator 0:bb348c97df44 1105 uint32_t Reserved[2]; /*!< Reserved */
lypinator 0:bb348c97df44 1106 } USB_OTG_HostChannelTypeDef;
lypinator 0:bb348c97df44 1107
lypinator 0:bb348c97df44 1108 /**
lypinator 0:bb348c97df44 1109 * @}
lypinator 0:bb348c97df44 1110 */
lypinator 0:bb348c97df44 1111
lypinator 0:bb348c97df44 1112 /** @addtogroup Peripheral_memory_map
lypinator 0:bb348c97df44 1113 * @{
lypinator 0:bb348c97df44 1114 */
lypinator 0:bb348c97df44 1115 #define FLASH_BASE 0x08000000U /*!< FLASH(up to 2 MB) base address in the alias region */
lypinator 0:bb348c97df44 1116 #define CCMDATARAM_BASE 0x10000000U /*!< CCM(core coupled memory) data RAM(64 KB) base address in the alias region */
lypinator 0:bb348c97df44 1117 #define SRAM1_BASE 0x20000000U /*!< SRAM1(112 KB) base address in the alias region */
lypinator 0:bb348c97df44 1118 #define SRAM2_BASE 0x2001C000U /*!< SRAM2(16 KB) base address in the alias region */
lypinator 0:bb348c97df44 1119 #define SRAM3_BASE 0x20020000U /*!< SRAM3(64 KB) base address in the alias region */
lypinator 0:bb348c97df44 1120 #define PERIPH_BASE 0x40000000U /*!< Peripheral base address in the alias region */
lypinator 0:bb348c97df44 1121 #define BKPSRAM_BASE 0x40024000U /*!< Backup SRAM(4 KB) base address in the alias region */
lypinator 0:bb348c97df44 1122 #define FMC_R_BASE 0xA0000000U /*!< FMC registers base address */
lypinator 0:bb348c97df44 1123 #define SRAM1_BB_BASE 0x22000000U /*!< SRAM1(112 KB) base address in the bit-band region */
lypinator 0:bb348c97df44 1124 #define SRAM2_BB_BASE 0x22380000U /*!< SRAM2(16 KB) base address in the bit-band region */
lypinator 0:bb348c97df44 1125 #define SRAM3_BB_BASE 0x22400000U /*!< SRAM3(64 KB) base address in the bit-band region */
lypinator 0:bb348c97df44 1126 #define PERIPH_BB_BASE 0x42000000U /*!< Peripheral base address in the bit-band region */
lypinator 0:bb348c97df44 1127 #define BKPSRAM_BB_BASE 0x42480000U /*!< Backup SRAM(4 KB) base address in the bit-band region */
lypinator 0:bb348c97df44 1128 #define FLASH_END 0x081FFFFFU /*!< FLASH end address */
lypinator 0:bb348c97df44 1129 #define FLASH_OTP_BASE 0x1FFF7800U /*!< Base address of : (up to 528 Bytes) embedded FLASH OTP Area */
lypinator 0:bb348c97df44 1130 #define FLASH_OTP_END 0x1FFF7A0FU /*!< End address of : (up to 528 Bytes) embedded FLASH OTP Area */
lypinator 0:bb348c97df44 1131 #define CCMDATARAM_END 0x1000FFFFU /*!< CCM data RAM end address */
lypinator 0:bb348c97df44 1132
lypinator 0:bb348c97df44 1133 /* Legacy defines */
lypinator 0:bb348c97df44 1134 #define SRAM_BASE SRAM1_BASE
lypinator 0:bb348c97df44 1135 #define SRAM_BB_BASE SRAM1_BB_BASE
lypinator 0:bb348c97df44 1136
lypinator 0:bb348c97df44 1137 /*!< Peripheral memory map */
lypinator 0:bb348c97df44 1138 #define APB1PERIPH_BASE PERIPH_BASE
lypinator 0:bb348c97df44 1139 #define APB2PERIPH_BASE (PERIPH_BASE + 0x00010000U)
lypinator 0:bb348c97df44 1140 #define AHB1PERIPH_BASE (PERIPH_BASE + 0x00020000U)
lypinator 0:bb348c97df44 1141 #define AHB2PERIPH_BASE (PERIPH_BASE + 0x10000000U)
lypinator 0:bb348c97df44 1142
lypinator 0:bb348c97df44 1143 /*!< APB1 peripherals */
lypinator 0:bb348c97df44 1144 #define TIM2_BASE (APB1PERIPH_BASE + 0x0000U)
lypinator 0:bb348c97df44 1145 #define TIM3_BASE (APB1PERIPH_BASE + 0x0400U)
lypinator 0:bb348c97df44 1146 #define TIM4_BASE (APB1PERIPH_BASE + 0x0800U)
lypinator 0:bb348c97df44 1147 #define TIM5_BASE (APB1PERIPH_BASE + 0x0C00U)
lypinator 0:bb348c97df44 1148 #define TIM6_BASE (APB1PERIPH_BASE + 0x1000U)
lypinator 0:bb348c97df44 1149 #define TIM7_BASE (APB1PERIPH_BASE + 0x1400U)
lypinator 0:bb348c97df44 1150 #define TIM12_BASE (APB1PERIPH_BASE + 0x1800U)
lypinator 0:bb348c97df44 1151 #define TIM13_BASE (APB1PERIPH_BASE + 0x1C00U)
lypinator 0:bb348c97df44 1152 #define TIM14_BASE (APB1PERIPH_BASE + 0x2000U)
lypinator 0:bb348c97df44 1153 #define RTC_BASE (APB1PERIPH_BASE + 0x2800U)
lypinator 0:bb348c97df44 1154 #define WWDG_BASE (APB1PERIPH_BASE + 0x2C00U)
lypinator 0:bb348c97df44 1155 #define IWDG_BASE (APB1PERIPH_BASE + 0x3000U)
lypinator 0:bb348c97df44 1156 #define I2S2ext_BASE (APB1PERIPH_BASE + 0x3400U)
lypinator 0:bb348c97df44 1157 #define SPI2_BASE (APB1PERIPH_BASE + 0x3800U)
lypinator 0:bb348c97df44 1158 #define SPI3_BASE (APB1PERIPH_BASE + 0x3C00U)
lypinator 0:bb348c97df44 1159 #define I2S3ext_BASE (APB1PERIPH_BASE + 0x4000U)
lypinator 0:bb348c97df44 1160 #define USART2_BASE (APB1PERIPH_BASE + 0x4400U)
lypinator 0:bb348c97df44 1161 #define USART3_BASE (APB1PERIPH_BASE + 0x4800U)
lypinator 0:bb348c97df44 1162 #define UART4_BASE (APB1PERIPH_BASE + 0x4C00U)
lypinator 0:bb348c97df44 1163 #define UART5_BASE (APB1PERIPH_BASE + 0x5000U)
lypinator 0:bb348c97df44 1164 #define I2C1_BASE (APB1PERIPH_BASE + 0x5400U)
lypinator 0:bb348c97df44 1165 #define I2C2_BASE (APB1PERIPH_BASE + 0x5800U)
lypinator 0:bb348c97df44 1166 #define I2C3_BASE (APB1PERIPH_BASE + 0x5C00U)
lypinator 0:bb348c97df44 1167 #define CAN1_BASE (APB1PERIPH_BASE + 0x6400U)
lypinator 0:bb348c97df44 1168 #define CAN2_BASE (APB1PERIPH_BASE + 0x6800U)
lypinator 0:bb348c97df44 1169 #define PWR_BASE (APB1PERIPH_BASE + 0x7000U)
lypinator 0:bb348c97df44 1170 #define DAC_BASE (APB1PERIPH_BASE + 0x7400U)
lypinator 0:bb348c97df44 1171 #define UART7_BASE (APB1PERIPH_BASE + 0x7800U)
lypinator 0:bb348c97df44 1172 #define UART8_BASE (APB1PERIPH_BASE + 0x7C00U)
lypinator 0:bb348c97df44 1173
lypinator 0:bb348c97df44 1174 /*!< APB2 peripherals */
lypinator 0:bb348c97df44 1175 #define TIM1_BASE (APB2PERIPH_BASE + 0x0000U)
lypinator 0:bb348c97df44 1176 #define TIM8_BASE (APB2PERIPH_BASE + 0x0400U)
lypinator 0:bb348c97df44 1177 #define USART1_BASE (APB2PERIPH_BASE + 0x1000U)
lypinator 0:bb348c97df44 1178 #define USART6_BASE (APB2PERIPH_BASE + 0x1400U)
lypinator 0:bb348c97df44 1179 #define ADC1_BASE (APB2PERIPH_BASE + 0x2000U)
lypinator 0:bb348c97df44 1180 #define ADC2_BASE (APB2PERIPH_BASE + 0x2100U)
lypinator 0:bb348c97df44 1181 #define ADC3_BASE (APB2PERIPH_BASE + 0x2200U)
lypinator 0:bb348c97df44 1182 #define ADC123_COMMON_BASE (APB2PERIPH_BASE + 0x2300U)
lypinator 0:bb348c97df44 1183 /* Legacy define */
lypinator 0:bb348c97df44 1184 #define ADC_BASE ADC123_COMMON_BASE
lypinator 0:bb348c97df44 1185 #define SDIO_BASE (APB2PERIPH_BASE + 0x2C00U)
lypinator 0:bb348c97df44 1186 #define SPI1_BASE (APB2PERIPH_BASE + 0x3000U)
lypinator 0:bb348c97df44 1187 #define SPI4_BASE (APB2PERIPH_BASE + 0x3400U)
lypinator 0:bb348c97df44 1188 #define SYSCFG_BASE (APB2PERIPH_BASE + 0x3800U)
lypinator 0:bb348c97df44 1189 #define EXTI_BASE (APB2PERIPH_BASE + 0x3C00U)
lypinator 0:bb348c97df44 1190 #define TIM9_BASE (APB2PERIPH_BASE + 0x4000U)
lypinator 0:bb348c97df44 1191 #define TIM10_BASE (APB2PERIPH_BASE + 0x4400U)
lypinator 0:bb348c97df44 1192 #define TIM11_BASE (APB2PERIPH_BASE + 0x4800U)
lypinator 0:bb348c97df44 1193 #define SPI5_BASE (APB2PERIPH_BASE + 0x5000U)
lypinator 0:bb348c97df44 1194 #define SPI6_BASE (APB2PERIPH_BASE + 0x5400U)
lypinator 0:bb348c97df44 1195 #define SAI1_BASE (APB2PERIPH_BASE + 0x5800U)
lypinator 0:bb348c97df44 1196 #define SAI1_Block_A_BASE (SAI1_BASE + 0x004U)
lypinator 0:bb348c97df44 1197 #define SAI1_Block_B_BASE (SAI1_BASE + 0x024U)
lypinator 0:bb348c97df44 1198 #define LTDC_BASE (APB2PERIPH_BASE + 0x6800U)
lypinator 0:bb348c97df44 1199 #define LTDC_Layer1_BASE (LTDC_BASE + 0x84U)
lypinator 0:bb348c97df44 1200 #define LTDC_Layer2_BASE (LTDC_BASE + 0x104U)
lypinator 0:bb348c97df44 1201
lypinator 0:bb348c97df44 1202 /*!< AHB1 peripherals */
lypinator 0:bb348c97df44 1203 #define GPIOA_BASE (AHB1PERIPH_BASE + 0x0000U)
lypinator 0:bb348c97df44 1204 #define GPIOB_BASE (AHB1PERIPH_BASE + 0x0400U)
lypinator 0:bb348c97df44 1205 #define GPIOC_BASE (AHB1PERIPH_BASE + 0x0800U)
lypinator 0:bb348c97df44 1206 #define GPIOD_BASE (AHB1PERIPH_BASE + 0x0C00U)
lypinator 0:bb348c97df44 1207 #define GPIOE_BASE (AHB1PERIPH_BASE + 0x1000U)
lypinator 0:bb348c97df44 1208 #define GPIOF_BASE (AHB1PERIPH_BASE + 0x1400U)
lypinator 0:bb348c97df44 1209 #define GPIOG_BASE (AHB1PERIPH_BASE + 0x1800U)
lypinator 0:bb348c97df44 1210 #define GPIOH_BASE (AHB1PERIPH_BASE + 0x1C00U)
lypinator 0:bb348c97df44 1211 #define GPIOI_BASE (AHB1PERIPH_BASE + 0x2000U)
lypinator 0:bb348c97df44 1212 #define GPIOJ_BASE (AHB1PERIPH_BASE + 0x2400U)
lypinator 0:bb348c97df44 1213 #define GPIOK_BASE (AHB1PERIPH_BASE + 0x2800U)
lypinator 0:bb348c97df44 1214 #define CRC_BASE (AHB1PERIPH_BASE + 0x3000U)
lypinator 0:bb348c97df44 1215 #define RCC_BASE (AHB1PERIPH_BASE + 0x3800U)
lypinator 0:bb348c97df44 1216 #define FLASH_R_BASE (AHB1PERIPH_BASE + 0x3C00U)
lypinator 0:bb348c97df44 1217 #define DMA1_BASE (AHB1PERIPH_BASE + 0x6000U)
lypinator 0:bb348c97df44 1218 #define DMA1_Stream0_BASE (DMA1_BASE + 0x010U)
lypinator 0:bb348c97df44 1219 #define DMA1_Stream1_BASE (DMA1_BASE + 0x028U)
lypinator 0:bb348c97df44 1220 #define DMA1_Stream2_BASE (DMA1_BASE + 0x040U)
lypinator 0:bb348c97df44 1221 #define DMA1_Stream3_BASE (DMA1_BASE + 0x058U)
lypinator 0:bb348c97df44 1222 #define DMA1_Stream4_BASE (DMA1_BASE + 0x070U)
lypinator 0:bb348c97df44 1223 #define DMA1_Stream5_BASE (DMA1_BASE + 0x088U)
lypinator 0:bb348c97df44 1224 #define DMA1_Stream6_BASE (DMA1_BASE + 0x0A0U)
lypinator 0:bb348c97df44 1225 #define DMA1_Stream7_BASE (DMA1_BASE + 0x0B8U)
lypinator 0:bb348c97df44 1226 #define DMA2_BASE (AHB1PERIPH_BASE + 0x6400U)
lypinator 0:bb348c97df44 1227 #define DMA2_Stream0_BASE (DMA2_BASE + 0x010U)
lypinator 0:bb348c97df44 1228 #define DMA2_Stream1_BASE (DMA2_BASE + 0x028U)
lypinator 0:bb348c97df44 1229 #define DMA2_Stream2_BASE (DMA2_BASE + 0x040U)
lypinator 0:bb348c97df44 1230 #define DMA2_Stream3_BASE (DMA2_BASE + 0x058U)
lypinator 0:bb348c97df44 1231 #define DMA2_Stream4_BASE (DMA2_BASE + 0x070U)
lypinator 0:bb348c97df44 1232 #define DMA2_Stream5_BASE (DMA2_BASE + 0x088U)
lypinator 0:bb348c97df44 1233 #define DMA2_Stream6_BASE (DMA2_BASE + 0x0A0U)
lypinator 0:bb348c97df44 1234 #define DMA2_Stream7_BASE (DMA2_BASE + 0x0B8U)
lypinator 0:bb348c97df44 1235 #define ETH_BASE (AHB1PERIPH_BASE + 0x8000U)
lypinator 0:bb348c97df44 1236 #define ETH_MAC_BASE (ETH_BASE)
lypinator 0:bb348c97df44 1237 #define ETH_MMC_BASE (ETH_BASE + 0x0100U)
lypinator 0:bb348c97df44 1238 #define ETH_PTP_BASE (ETH_BASE + 0x0700U)
lypinator 0:bb348c97df44 1239 #define ETH_DMA_BASE (ETH_BASE + 0x1000U)
lypinator 0:bb348c97df44 1240 #define DMA2D_BASE (AHB1PERIPH_BASE + 0xB000U)
lypinator 0:bb348c97df44 1241
lypinator 0:bb348c97df44 1242 /*!< AHB2 peripherals */
lypinator 0:bb348c97df44 1243 #define DCMI_BASE (AHB2PERIPH_BASE + 0x50000U)
lypinator 0:bb348c97df44 1244 #define CRYP_BASE (AHB2PERIPH_BASE + 0x60000U)
lypinator 0:bb348c97df44 1245 #define HASH_BASE (AHB2PERIPH_BASE + 0x60400U)
lypinator 0:bb348c97df44 1246 #define HASH_DIGEST_BASE (AHB2PERIPH_BASE + 0x60710U)
lypinator 0:bb348c97df44 1247 #define RNG_BASE (AHB2PERIPH_BASE + 0x60800U)
lypinator 0:bb348c97df44 1248
lypinator 0:bb348c97df44 1249 /*!< FMC Bankx registers base address */
lypinator 0:bb348c97df44 1250 #define FMC_Bank1_R_BASE (FMC_R_BASE + 0x0000U)
lypinator 0:bb348c97df44 1251 #define FMC_Bank1E_R_BASE (FMC_R_BASE + 0x0104U)
lypinator 0:bb348c97df44 1252 #define FMC_Bank2_3_R_BASE (FMC_R_BASE + 0x0060U)
lypinator 0:bb348c97df44 1253 #define FMC_Bank4_R_BASE (FMC_R_BASE + 0x00A0U)
lypinator 0:bb348c97df44 1254 #define FMC_Bank5_6_R_BASE (FMC_R_BASE + 0x0140U)
lypinator 0:bb348c97df44 1255
lypinator 0:bb348c97df44 1256
lypinator 0:bb348c97df44 1257 /*!< Debug MCU registers base address */
lypinator 0:bb348c97df44 1258 #define DBGMCU_BASE 0xE0042000U
lypinator 0:bb348c97df44 1259 /*!< USB registers base address */
lypinator 0:bb348c97df44 1260 #define USB_OTG_HS_PERIPH_BASE 0x40040000U
lypinator 0:bb348c97df44 1261 #define USB_OTG_FS_PERIPH_BASE 0x50000000U
lypinator 0:bb348c97df44 1262
lypinator 0:bb348c97df44 1263 #define USB_OTG_GLOBAL_BASE 0x000U
lypinator 0:bb348c97df44 1264 #define USB_OTG_DEVICE_BASE 0x800U
lypinator 0:bb348c97df44 1265 #define USB_OTG_IN_ENDPOINT_BASE 0x900U
lypinator 0:bb348c97df44 1266 #define USB_OTG_OUT_ENDPOINT_BASE 0xB00U
lypinator 0:bb348c97df44 1267 #define USB_OTG_EP_REG_SIZE 0x20U
lypinator 0:bb348c97df44 1268 #define USB_OTG_HOST_BASE 0x400U
lypinator 0:bb348c97df44 1269 #define USB_OTG_HOST_PORT_BASE 0x440U
lypinator 0:bb348c97df44 1270 #define USB_OTG_HOST_CHANNEL_BASE 0x500U
lypinator 0:bb348c97df44 1271 #define USB_OTG_HOST_CHANNEL_SIZE 0x20U
lypinator 0:bb348c97df44 1272 #define USB_OTG_PCGCCTL_BASE 0xE00U
lypinator 0:bb348c97df44 1273 #define USB_OTG_FIFO_BASE 0x1000U
lypinator 0:bb348c97df44 1274 #define USB_OTG_FIFO_SIZE 0x1000U
lypinator 0:bb348c97df44 1275
lypinator 0:bb348c97df44 1276 #define UID_BASE 0x1FFF7A10U /*!< Unique device ID register base address */
lypinator 0:bb348c97df44 1277 #define FLASHSIZE_BASE 0x1FFF7A22U /*!< FLASH Size register base address */
lypinator 0:bb348c97df44 1278 #define PACKAGE_BASE 0x1FFF7BF0U /*!< Package size register base address */
lypinator 0:bb348c97df44 1279 /**
lypinator 0:bb348c97df44 1280 * @}
lypinator 0:bb348c97df44 1281 */
lypinator 0:bb348c97df44 1282
lypinator 0:bb348c97df44 1283 /** @addtogroup Peripheral_declaration
lypinator 0:bb348c97df44 1284 * @{
lypinator 0:bb348c97df44 1285 */
lypinator 0:bb348c97df44 1286 #define TIM2 ((TIM_TypeDef *) TIM2_BASE)
lypinator 0:bb348c97df44 1287 #define TIM3 ((TIM_TypeDef *) TIM3_BASE)
lypinator 0:bb348c97df44 1288 #define TIM4 ((TIM_TypeDef *) TIM4_BASE)
lypinator 0:bb348c97df44 1289 #define TIM5 ((TIM_TypeDef *) TIM5_BASE)
lypinator 0:bb348c97df44 1290 #define TIM6 ((TIM_TypeDef *) TIM6_BASE)
lypinator 0:bb348c97df44 1291 #define TIM7 ((TIM_TypeDef *) TIM7_BASE)
lypinator 0:bb348c97df44 1292 #define TIM12 ((TIM_TypeDef *) TIM12_BASE)
lypinator 0:bb348c97df44 1293 #define TIM13 ((TIM_TypeDef *) TIM13_BASE)
lypinator 0:bb348c97df44 1294 #define TIM14 ((TIM_TypeDef *) TIM14_BASE)
lypinator 0:bb348c97df44 1295 #define RTC ((RTC_TypeDef *) RTC_BASE)
lypinator 0:bb348c97df44 1296 #define WWDG ((WWDG_TypeDef *) WWDG_BASE)
lypinator 0:bb348c97df44 1297 #define IWDG ((IWDG_TypeDef *) IWDG_BASE)
lypinator 0:bb348c97df44 1298 #define I2S2ext ((SPI_TypeDef *) I2S2ext_BASE)
lypinator 0:bb348c97df44 1299 #define SPI2 ((SPI_TypeDef *) SPI2_BASE)
lypinator 0:bb348c97df44 1300 #define SPI3 ((SPI_TypeDef *) SPI3_BASE)
lypinator 0:bb348c97df44 1301 #define I2S3ext ((SPI_TypeDef *) I2S3ext_BASE)
lypinator 0:bb348c97df44 1302 #define USART2 ((USART_TypeDef *) USART2_BASE)
lypinator 0:bb348c97df44 1303 #define USART3 ((USART_TypeDef *) USART3_BASE)
lypinator 0:bb348c97df44 1304 #define UART4 ((USART_TypeDef *) UART4_BASE)
lypinator 0:bb348c97df44 1305 #define UART5 ((USART_TypeDef *) UART5_BASE)
lypinator 0:bb348c97df44 1306 #define I2C1 ((I2C_TypeDef *) I2C1_BASE)
lypinator 0:bb348c97df44 1307 #define I2C2 ((I2C_TypeDef *) I2C2_BASE)
lypinator 0:bb348c97df44 1308 #define I2C3 ((I2C_TypeDef *) I2C3_BASE)
lypinator 0:bb348c97df44 1309 #define CAN1 ((CAN_TypeDef *) CAN1_BASE)
lypinator 0:bb348c97df44 1310 #define CAN2 ((CAN_TypeDef *) CAN2_BASE)
lypinator 0:bb348c97df44 1311 #define PWR ((PWR_TypeDef *) PWR_BASE)
lypinator 0:bb348c97df44 1312 #define DAC1 ((DAC_TypeDef *) DAC_BASE)
lypinator 0:bb348c97df44 1313 #define DAC ((DAC_TypeDef *) DAC_BASE) /* Kept for legacy purpose */
lypinator 0:bb348c97df44 1314 #define UART7 ((USART_TypeDef *) UART7_BASE)
lypinator 0:bb348c97df44 1315 #define UART8 ((USART_TypeDef *) UART8_BASE)
lypinator 0:bb348c97df44 1316 #define TIM1 ((TIM_TypeDef *) TIM1_BASE)
lypinator 0:bb348c97df44 1317 #define TIM8 ((TIM_TypeDef *) TIM8_BASE)
lypinator 0:bb348c97df44 1318 #define USART1 ((USART_TypeDef *) USART1_BASE)
lypinator 0:bb348c97df44 1319 #define USART6 ((USART_TypeDef *) USART6_BASE)
lypinator 0:bb348c97df44 1320 #define ADC1 ((ADC_TypeDef *) ADC1_BASE)
lypinator 0:bb348c97df44 1321 #define ADC2 ((ADC_TypeDef *) ADC2_BASE)
lypinator 0:bb348c97df44 1322 #define ADC3 ((ADC_TypeDef *) ADC3_BASE)
lypinator 0:bb348c97df44 1323 #define ADC123_COMMON ((ADC_Common_TypeDef *) ADC123_COMMON_BASE)
lypinator 0:bb348c97df44 1324 /* Legacy define */
lypinator 0:bb348c97df44 1325 #define ADC ADC123_COMMON
lypinator 0:bb348c97df44 1326 #define SDIO ((SDIO_TypeDef *) SDIO_BASE)
lypinator 0:bb348c97df44 1327 #define SPI1 ((SPI_TypeDef *) SPI1_BASE)
lypinator 0:bb348c97df44 1328 #define SPI4 ((SPI_TypeDef *) SPI4_BASE)
lypinator 0:bb348c97df44 1329 #define SYSCFG ((SYSCFG_TypeDef *) SYSCFG_BASE)
lypinator 0:bb348c97df44 1330 #define EXTI ((EXTI_TypeDef *) EXTI_BASE)
lypinator 0:bb348c97df44 1331 #define TIM9 ((TIM_TypeDef *) TIM9_BASE)
lypinator 0:bb348c97df44 1332 #define TIM10 ((TIM_TypeDef *) TIM10_BASE)
lypinator 0:bb348c97df44 1333 #define TIM11 ((TIM_TypeDef *) TIM11_BASE)
lypinator 0:bb348c97df44 1334 #define SPI5 ((SPI_TypeDef *) SPI5_BASE)
lypinator 0:bb348c97df44 1335 #define SPI6 ((SPI_TypeDef *) SPI6_BASE)
lypinator 0:bb348c97df44 1336 #define SAI1 ((SAI_TypeDef *) SAI1_BASE)
lypinator 0:bb348c97df44 1337 #define SAI1_Block_A ((SAI_Block_TypeDef *)SAI1_Block_A_BASE)
lypinator 0:bb348c97df44 1338 #define SAI1_Block_B ((SAI_Block_TypeDef *)SAI1_Block_B_BASE)
lypinator 0:bb348c97df44 1339 #define LTDC ((LTDC_TypeDef *)LTDC_BASE)
lypinator 0:bb348c97df44 1340 #define LTDC_Layer1 ((LTDC_Layer_TypeDef *)LTDC_Layer1_BASE)
lypinator 0:bb348c97df44 1341 #define LTDC_Layer2 ((LTDC_Layer_TypeDef *)LTDC_Layer2_BASE)
lypinator 0:bb348c97df44 1342 #define GPIOA ((GPIO_TypeDef *) GPIOA_BASE)
lypinator 0:bb348c97df44 1343 #define GPIOB ((GPIO_TypeDef *) GPIOB_BASE)
lypinator 0:bb348c97df44 1344 #define GPIOC ((GPIO_TypeDef *) GPIOC_BASE)
lypinator 0:bb348c97df44 1345 #define GPIOD ((GPIO_TypeDef *) GPIOD_BASE)
lypinator 0:bb348c97df44 1346 #define GPIOE ((GPIO_TypeDef *) GPIOE_BASE)
lypinator 0:bb348c97df44 1347 #define GPIOF ((GPIO_TypeDef *) GPIOF_BASE)
lypinator 0:bb348c97df44 1348 #define GPIOG ((GPIO_TypeDef *) GPIOG_BASE)
lypinator 0:bb348c97df44 1349 #define GPIOH ((GPIO_TypeDef *) GPIOH_BASE)
lypinator 0:bb348c97df44 1350 #define GPIOI ((GPIO_TypeDef *) GPIOI_BASE)
lypinator 0:bb348c97df44 1351 #define GPIOJ ((GPIO_TypeDef *) GPIOJ_BASE)
lypinator 0:bb348c97df44 1352 #define GPIOK ((GPIO_TypeDef *) GPIOK_BASE)
lypinator 0:bb348c97df44 1353 #define CRC ((CRC_TypeDef *) CRC_BASE)
lypinator 0:bb348c97df44 1354 #define RCC ((RCC_TypeDef *) RCC_BASE)
lypinator 0:bb348c97df44 1355 #define FLASH ((FLASH_TypeDef *) FLASH_R_BASE)
lypinator 0:bb348c97df44 1356 #define DMA1 ((DMA_TypeDef *) DMA1_BASE)
lypinator 0:bb348c97df44 1357 #define DMA1_Stream0 ((DMA_Stream_TypeDef *) DMA1_Stream0_BASE)
lypinator 0:bb348c97df44 1358 #define DMA1_Stream1 ((DMA_Stream_TypeDef *) DMA1_Stream1_BASE)
lypinator 0:bb348c97df44 1359 #define DMA1_Stream2 ((DMA_Stream_TypeDef *) DMA1_Stream2_BASE)
lypinator 0:bb348c97df44 1360 #define DMA1_Stream3 ((DMA_Stream_TypeDef *) DMA1_Stream3_BASE)
lypinator 0:bb348c97df44 1361 #define DMA1_Stream4 ((DMA_Stream_TypeDef *) DMA1_Stream4_BASE)
lypinator 0:bb348c97df44 1362 #define DMA1_Stream5 ((DMA_Stream_TypeDef *) DMA1_Stream5_BASE)
lypinator 0:bb348c97df44 1363 #define DMA1_Stream6 ((DMA_Stream_TypeDef *) DMA1_Stream6_BASE)
lypinator 0:bb348c97df44 1364 #define DMA1_Stream7 ((DMA_Stream_TypeDef *) DMA1_Stream7_BASE)
lypinator 0:bb348c97df44 1365 #define DMA2 ((DMA_TypeDef *) DMA2_BASE)
lypinator 0:bb348c97df44 1366 #define DMA2_Stream0 ((DMA_Stream_TypeDef *) DMA2_Stream0_BASE)
lypinator 0:bb348c97df44 1367 #define DMA2_Stream1 ((DMA_Stream_TypeDef *) DMA2_Stream1_BASE)
lypinator 0:bb348c97df44 1368 #define DMA2_Stream2 ((DMA_Stream_TypeDef *) DMA2_Stream2_BASE)
lypinator 0:bb348c97df44 1369 #define DMA2_Stream3 ((DMA_Stream_TypeDef *) DMA2_Stream3_BASE)
lypinator 0:bb348c97df44 1370 #define DMA2_Stream4 ((DMA_Stream_TypeDef *) DMA2_Stream4_BASE)
lypinator 0:bb348c97df44 1371 #define DMA2_Stream5 ((DMA_Stream_TypeDef *) DMA2_Stream5_BASE)
lypinator 0:bb348c97df44 1372 #define DMA2_Stream6 ((DMA_Stream_TypeDef *) DMA2_Stream6_BASE)
lypinator 0:bb348c97df44 1373 #define DMA2_Stream7 ((DMA_Stream_TypeDef *) DMA2_Stream7_BASE)
lypinator 0:bb348c97df44 1374 #define ETH ((ETH_TypeDef *) ETH_BASE)
lypinator 0:bb348c97df44 1375 #define DMA2D ((DMA2D_TypeDef *)DMA2D_BASE)
lypinator 0:bb348c97df44 1376 #define DCMI ((DCMI_TypeDef *) DCMI_BASE)
lypinator 0:bb348c97df44 1377 #define CRYP ((CRYP_TypeDef *) CRYP_BASE)
lypinator 0:bb348c97df44 1378 #define HASH ((HASH_TypeDef *) HASH_BASE)
lypinator 0:bb348c97df44 1379 #define HASH_DIGEST ((HASH_DIGEST_TypeDef *) HASH_DIGEST_BASE)
lypinator 0:bb348c97df44 1380 #define RNG ((RNG_TypeDef *) RNG_BASE)
lypinator 0:bb348c97df44 1381 #define FMC_Bank1 ((FMC_Bank1_TypeDef *) FMC_Bank1_R_BASE)
lypinator 0:bb348c97df44 1382 #define FMC_Bank1E ((FMC_Bank1E_TypeDef *) FMC_Bank1E_R_BASE)
lypinator 0:bb348c97df44 1383 #define FMC_Bank2_3 ((FMC_Bank2_3_TypeDef *) FMC_Bank2_3_R_BASE)
lypinator 0:bb348c97df44 1384 #define FMC_Bank4 ((FMC_Bank4_TypeDef *) FMC_Bank4_R_BASE)
lypinator 0:bb348c97df44 1385 #define FMC_Bank5_6 ((FMC_Bank5_6_TypeDef *) FMC_Bank5_6_R_BASE)
lypinator 0:bb348c97df44 1386 #define DBGMCU ((DBGMCU_TypeDef *) DBGMCU_BASE)
lypinator 0:bb348c97df44 1387 #define USB_OTG_FS ((USB_OTG_GlobalTypeDef *) USB_OTG_FS_PERIPH_BASE)
lypinator 0:bb348c97df44 1388 #define USB_OTG_HS ((USB_OTG_GlobalTypeDef *) USB_OTG_HS_PERIPH_BASE)
lypinator 0:bb348c97df44 1389
lypinator 0:bb348c97df44 1390 /**
lypinator 0:bb348c97df44 1391 * @}
lypinator 0:bb348c97df44 1392 */
lypinator 0:bb348c97df44 1393
lypinator 0:bb348c97df44 1394 /** @addtogroup Exported_constants
lypinator 0:bb348c97df44 1395 * @{
lypinator 0:bb348c97df44 1396 */
lypinator 0:bb348c97df44 1397
lypinator 0:bb348c97df44 1398 /** @addtogroup Peripheral_Registers_Bits_Definition
lypinator 0:bb348c97df44 1399 * @{
lypinator 0:bb348c97df44 1400 */
lypinator 0:bb348c97df44 1401
lypinator 0:bb348c97df44 1402 /******************************************************************************/
lypinator 0:bb348c97df44 1403 /* Peripheral Registers_Bits_Definition */
lypinator 0:bb348c97df44 1404 /******************************************************************************/
lypinator 0:bb348c97df44 1405
lypinator 0:bb348c97df44 1406 /******************************************************************************/
lypinator 0:bb348c97df44 1407 /* */
lypinator 0:bb348c97df44 1408 /* Analog to Digital Converter */
lypinator 0:bb348c97df44 1409 /* */
lypinator 0:bb348c97df44 1410 /******************************************************************************/
lypinator 0:bb348c97df44 1411 /*
lypinator 0:bb348c97df44 1412 * @brief Specific device feature definitions (not present on all devices in the STM32F4 serie)
lypinator 0:bb348c97df44 1413 */
lypinator 0:bb348c97df44 1414 #define ADC_MULTIMODE_SUPPORT /*!<ADC Multimode feature available on specific devices */
lypinator 0:bb348c97df44 1415
lypinator 0:bb348c97df44 1416 /******************** Bit definition for ADC_SR register ********************/
lypinator 0:bb348c97df44 1417 #define ADC_SR_AWD_Pos (0U)
lypinator 0:bb348c97df44 1418 #define ADC_SR_AWD_Msk (0x1U << ADC_SR_AWD_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 1419 #define ADC_SR_AWD ADC_SR_AWD_Msk /*!<Analog watchdog flag */
lypinator 0:bb348c97df44 1420 #define ADC_SR_EOC_Pos (1U)
lypinator 0:bb348c97df44 1421 #define ADC_SR_EOC_Msk (0x1U << ADC_SR_EOC_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 1422 #define ADC_SR_EOC ADC_SR_EOC_Msk /*!<End of conversion */
lypinator 0:bb348c97df44 1423 #define ADC_SR_JEOC_Pos (2U)
lypinator 0:bb348c97df44 1424 #define ADC_SR_JEOC_Msk (0x1U << ADC_SR_JEOC_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 1425 #define ADC_SR_JEOC ADC_SR_JEOC_Msk /*!<Injected channel end of conversion */
lypinator 0:bb348c97df44 1426 #define ADC_SR_JSTRT_Pos (3U)
lypinator 0:bb348c97df44 1427 #define ADC_SR_JSTRT_Msk (0x1U << ADC_SR_JSTRT_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 1428 #define ADC_SR_JSTRT ADC_SR_JSTRT_Msk /*!<Injected channel Start flag */
lypinator 0:bb348c97df44 1429 #define ADC_SR_STRT_Pos (4U)
lypinator 0:bb348c97df44 1430 #define ADC_SR_STRT_Msk (0x1U << ADC_SR_STRT_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 1431 #define ADC_SR_STRT ADC_SR_STRT_Msk /*!<Regular channel Start flag */
lypinator 0:bb348c97df44 1432 #define ADC_SR_OVR_Pos (5U)
lypinator 0:bb348c97df44 1433 #define ADC_SR_OVR_Msk (0x1U << ADC_SR_OVR_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 1434 #define ADC_SR_OVR ADC_SR_OVR_Msk /*!<Overrun flag */
lypinator 0:bb348c97df44 1435
lypinator 0:bb348c97df44 1436 /******************* Bit definition for ADC_CR1 register ********************/
lypinator 0:bb348c97df44 1437 #define ADC_CR1_AWDCH_Pos (0U)
lypinator 0:bb348c97df44 1438 #define ADC_CR1_AWDCH_Msk (0x1FU << ADC_CR1_AWDCH_Pos) /*!< 0x0000001F */
lypinator 0:bb348c97df44 1439 #define ADC_CR1_AWDCH ADC_CR1_AWDCH_Msk /*!<AWDCH[4:0] bits (Analog watchdog channel select bits) */
lypinator 0:bb348c97df44 1440 #define ADC_CR1_AWDCH_0 (0x01U << ADC_CR1_AWDCH_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 1441 #define ADC_CR1_AWDCH_1 (0x02U << ADC_CR1_AWDCH_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 1442 #define ADC_CR1_AWDCH_2 (0x04U << ADC_CR1_AWDCH_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 1443 #define ADC_CR1_AWDCH_3 (0x08U << ADC_CR1_AWDCH_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 1444 #define ADC_CR1_AWDCH_4 (0x10U << ADC_CR1_AWDCH_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 1445 #define ADC_CR1_EOCIE_Pos (5U)
lypinator 0:bb348c97df44 1446 #define ADC_CR1_EOCIE_Msk (0x1U << ADC_CR1_EOCIE_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 1447 #define ADC_CR1_EOCIE ADC_CR1_EOCIE_Msk /*!<Interrupt enable for EOC */
lypinator 0:bb348c97df44 1448 #define ADC_CR1_AWDIE_Pos (6U)
lypinator 0:bb348c97df44 1449 #define ADC_CR1_AWDIE_Msk (0x1U << ADC_CR1_AWDIE_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 1450 #define ADC_CR1_AWDIE ADC_CR1_AWDIE_Msk /*!<AAnalog Watchdog interrupt enable */
lypinator 0:bb348c97df44 1451 #define ADC_CR1_JEOCIE_Pos (7U)
lypinator 0:bb348c97df44 1452 #define ADC_CR1_JEOCIE_Msk (0x1U << ADC_CR1_JEOCIE_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 1453 #define ADC_CR1_JEOCIE ADC_CR1_JEOCIE_Msk /*!<Interrupt enable for injected channels */
lypinator 0:bb348c97df44 1454 #define ADC_CR1_SCAN_Pos (8U)
lypinator 0:bb348c97df44 1455 #define ADC_CR1_SCAN_Msk (0x1U << ADC_CR1_SCAN_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 1456 #define ADC_CR1_SCAN ADC_CR1_SCAN_Msk /*!<Scan mode */
lypinator 0:bb348c97df44 1457 #define ADC_CR1_AWDSGL_Pos (9U)
lypinator 0:bb348c97df44 1458 #define ADC_CR1_AWDSGL_Msk (0x1U << ADC_CR1_AWDSGL_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 1459 #define ADC_CR1_AWDSGL ADC_CR1_AWDSGL_Msk /*!<Enable the watchdog on a single channel in scan mode */
lypinator 0:bb348c97df44 1460 #define ADC_CR1_JAUTO_Pos (10U)
lypinator 0:bb348c97df44 1461 #define ADC_CR1_JAUTO_Msk (0x1U << ADC_CR1_JAUTO_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 1462 #define ADC_CR1_JAUTO ADC_CR1_JAUTO_Msk /*!<Automatic injected group conversion */
lypinator 0:bb348c97df44 1463 #define ADC_CR1_DISCEN_Pos (11U)
lypinator 0:bb348c97df44 1464 #define ADC_CR1_DISCEN_Msk (0x1U << ADC_CR1_DISCEN_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 1465 #define ADC_CR1_DISCEN ADC_CR1_DISCEN_Msk /*!<Discontinuous mode on regular channels */
lypinator 0:bb348c97df44 1466 #define ADC_CR1_JDISCEN_Pos (12U)
lypinator 0:bb348c97df44 1467 #define ADC_CR1_JDISCEN_Msk (0x1U << ADC_CR1_JDISCEN_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 1468 #define ADC_CR1_JDISCEN ADC_CR1_JDISCEN_Msk /*!<Discontinuous mode on injected channels */
lypinator 0:bb348c97df44 1469 #define ADC_CR1_DISCNUM_Pos (13U)
lypinator 0:bb348c97df44 1470 #define ADC_CR1_DISCNUM_Msk (0x7U << ADC_CR1_DISCNUM_Pos) /*!< 0x0000E000 */
lypinator 0:bb348c97df44 1471 #define ADC_CR1_DISCNUM ADC_CR1_DISCNUM_Msk /*!<DISCNUM[2:0] bits (Discontinuous mode channel count) */
lypinator 0:bb348c97df44 1472 #define ADC_CR1_DISCNUM_0 (0x1U << ADC_CR1_DISCNUM_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 1473 #define ADC_CR1_DISCNUM_1 (0x2U << ADC_CR1_DISCNUM_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 1474 #define ADC_CR1_DISCNUM_2 (0x4U << ADC_CR1_DISCNUM_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 1475 #define ADC_CR1_JAWDEN_Pos (22U)
lypinator 0:bb348c97df44 1476 #define ADC_CR1_JAWDEN_Msk (0x1U << ADC_CR1_JAWDEN_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 1477 #define ADC_CR1_JAWDEN ADC_CR1_JAWDEN_Msk /*!<Analog watchdog enable on injected channels */
lypinator 0:bb348c97df44 1478 #define ADC_CR1_AWDEN_Pos (23U)
lypinator 0:bb348c97df44 1479 #define ADC_CR1_AWDEN_Msk (0x1U << ADC_CR1_AWDEN_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 1480 #define ADC_CR1_AWDEN ADC_CR1_AWDEN_Msk /*!<Analog watchdog enable on regular channels */
lypinator 0:bb348c97df44 1481 #define ADC_CR1_RES_Pos (24U)
lypinator 0:bb348c97df44 1482 #define ADC_CR1_RES_Msk (0x3U << ADC_CR1_RES_Pos) /*!< 0x03000000 */
lypinator 0:bb348c97df44 1483 #define ADC_CR1_RES ADC_CR1_RES_Msk /*!<RES[2:0] bits (Resolution) */
lypinator 0:bb348c97df44 1484 #define ADC_CR1_RES_0 (0x1U << ADC_CR1_RES_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 1485 #define ADC_CR1_RES_1 (0x2U << ADC_CR1_RES_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 1486 #define ADC_CR1_OVRIE_Pos (26U)
lypinator 0:bb348c97df44 1487 #define ADC_CR1_OVRIE_Msk (0x1U << ADC_CR1_OVRIE_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 1488 #define ADC_CR1_OVRIE ADC_CR1_OVRIE_Msk /*!<overrun interrupt enable */
lypinator 0:bb348c97df44 1489
lypinator 0:bb348c97df44 1490 /******************* Bit definition for ADC_CR2 register ********************/
lypinator 0:bb348c97df44 1491 #define ADC_CR2_ADON_Pos (0U)
lypinator 0:bb348c97df44 1492 #define ADC_CR2_ADON_Msk (0x1U << ADC_CR2_ADON_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 1493 #define ADC_CR2_ADON ADC_CR2_ADON_Msk /*!<A/D Converter ON / OFF */
lypinator 0:bb348c97df44 1494 #define ADC_CR2_CONT_Pos (1U)
lypinator 0:bb348c97df44 1495 #define ADC_CR2_CONT_Msk (0x1U << ADC_CR2_CONT_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 1496 #define ADC_CR2_CONT ADC_CR2_CONT_Msk /*!<Continuous Conversion */
lypinator 0:bb348c97df44 1497 #define ADC_CR2_DMA_Pos (8U)
lypinator 0:bb348c97df44 1498 #define ADC_CR2_DMA_Msk (0x1U << ADC_CR2_DMA_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 1499 #define ADC_CR2_DMA ADC_CR2_DMA_Msk /*!<Direct Memory access mode */
lypinator 0:bb348c97df44 1500 #define ADC_CR2_DDS_Pos (9U)
lypinator 0:bb348c97df44 1501 #define ADC_CR2_DDS_Msk (0x1U << ADC_CR2_DDS_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 1502 #define ADC_CR2_DDS ADC_CR2_DDS_Msk /*!<DMA disable selection (Single ADC) */
lypinator 0:bb348c97df44 1503 #define ADC_CR2_EOCS_Pos (10U)
lypinator 0:bb348c97df44 1504 #define ADC_CR2_EOCS_Msk (0x1U << ADC_CR2_EOCS_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 1505 #define ADC_CR2_EOCS ADC_CR2_EOCS_Msk /*!<End of conversion selection */
lypinator 0:bb348c97df44 1506 #define ADC_CR2_ALIGN_Pos (11U)
lypinator 0:bb348c97df44 1507 #define ADC_CR2_ALIGN_Msk (0x1U << ADC_CR2_ALIGN_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 1508 #define ADC_CR2_ALIGN ADC_CR2_ALIGN_Msk /*!<Data Alignment */
lypinator 0:bb348c97df44 1509 #define ADC_CR2_JEXTSEL_Pos (16U)
lypinator 0:bb348c97df44 1510 #define ADC_CR2_JEXTSEL_Msk (0xFU << ADC_CR2_JEXTSEL_Pos) /*!< 0x000F0000 */
lypinator 0:bb348c97df44 1511 #define ADC_CR2_JEXTSEL ADC_CR2_JEXTSEL_Msk /*!<JEXTSEL[3:0] bits (External event select for injected group) */
lypinator 0:bb348c97df44 1512 #define ADC_CR2_JEXTSEL_0 (0x1U << ADC_CR2_JEXTSEL_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 1513 #define ADC_CR2_JEXTSEL_1 (0x2U << ADC_CR2_JEXTSEL_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 1514 #define ADC_CR2_JEXTSEL_2 (0x4U << ADC_CR2_JEXTSEL_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 1515 #define ADC_CR2_JEXTSEL_3 (0x8U << ADC_CR2_JEXTSEL_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 1516 #define ADC_CR2_JEXTEN_Pos (20U)
lypinator 0:bb348c97df44 1517 #define ADC_CR2_JEXTEN_Msk (0x3U << ADC_CR2_JEXTEN_Pos) /*!< 0x00300000 */
lypinator 0:bb348c97df44 1518 #define ADC_CR2_JEXTEN ADC_CR2_JEXTEN_Msk /*!<JEXTEN[1:0] bits (External Trigger Conversion mode for injected channelsp) */
lypinator 0:bb348c97df44 1519 #define ADC_CR2_JEXTEN_0 (0x1U << ADC_CR2_JEXTEN_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 1520 #define ADC_CR2_JEXTEN_1 (0x2U << ADC_CR2_JEXTEN_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 1521 #define ADC_CR2_JSWSTART_Pos (22U)
lypinator 0:bb348c97df44 1522 #define ADC_CR2_JSWSTART_Msk (0x1U << ADC_CR2_JSWSTART_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 1523 #define ADC_CR2_JSWSTART ADC_CR2_JSWSTART_Msk /*!<Start Conversion of injected channels */
lypinator 0:bb348c97df44 1524 #define ADC_CR2_EXTSEL_Pos (24U)
lypinator 0:bb348c97df44 1525 #define ADC_CR2_EXTSEL_Msk (0xFU << ADC_CR2_EXTSEL_Pos) /*!< 0x0F000000 */
lypinator 0:bb348c97df44 1526 #define ADC_CR2_EXTSEL ADC_CR2_EXTSEL_Msk /*!<EXTSEL[3:0] bits (External Event Select for regular group) */
lypinator 0:bb348c97df44 1527 #define ADC_CR2_EXTSEL_0 (0x1U << ADC_CR2_EXTSEL_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 1528 #define ADC_CR2_EXTSEL_1 (0x2U << ADC_CR2_EXTSEL_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 1529 #define ADC_CR2_EXTSEL_2 (0x4U << ADC_CR2_EXTSEL_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 1530 #define ADC_CR2_EXTSEL_3 (0x8U << ADC_CR2_EXTSEL_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 1531 #define ADC_CR2_EXTEN_Pos (28U)
lypinator 0:bb348c97df44 1532 #define ADC_CR2_EXTEN_Msk (0x3U << ADC_CR2_EXTEN_Pos) /*!< 0x30000000 */
lypinator 0:bb348c97df44 1533 #define ADC_CR2_EXTEN ADC_CR2_EXTEN_Msk /*!<EXTEN[1:0] bits (External Trigger Conversion mode for regular channelsp) */
lypinator 0:bb348c97df44 1534 #define ADC_CR2_EXTEN_0 (0x1U << ADC_CR2_EXTEN_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 1535 #define ADC_CR2_EXTEN_1 (0x2U << ADC_CR2_EXTEN_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 1536 #define ADC_CR2_SWSTART_Pos (30U)
lypinator 0:bb348c97df44 1537 #define ADC_CR2_SWSTART_Msk (0x1U << ADC_CR2_SWSTART_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 1538 #define ADC_CR2_SWSTART ADC_CR2_SWSTART_Msk /*!<Start Conversion of regular channels */
lypinator 0:bb348c97df44 1539
lypinator 0:bb348c97df44 1540 /****************** Bit definition for ADC_SMPR1 register *******************/
lypinator 0:bb348c97df44 1541 #define ADC_SMPR1_SMP10_Pos (0U)
lypinator 0:bb348c97df44 1542 #define ADC_SMPR1_SMP10_Msk (0x7U << ADC_SMPR1_SMP10_Pos) /*!< 0x00000007 */
lypinator 0:bb348c97df44 1543 #define ADC_SMPR1_SMP10 ADC_SMPR1_SMP10_Msk /*!<SMP10[2:0] bits (Channel 10 Sample time selection) */
lypinator 0:bb348c97df44 1544 #define ADC_SMPR1_SMP10_0 (0x1U << ADC_SMPR1_SMP10_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 1545 #define ADC_SMPR1_SMP10_1 (0x2U << ADC_SMPR1_SMP10_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 1546 #define ADC_SMPR1_SMP10_2 (0x4U << ADC_SMPR1_SMP10_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 1547 #define ADC_SMPR1_SMP11_Pos (3U)
lypinator 0:bb348c97df44 1548 #define ADC_SMPR1_SMP11_Msk (0x7U << ADC_SMPR1_SMP11_Pos) /*!< 0x00000038 */
lypinator 0:bb348c97df44 1549 #define ADC_SMPR1_SMP11 ADC_SMPR1_SMP11_Msk /*!<SMP11[2:0] bits (Channel 11 Sample time selection) */
lypinator 0:bb348c97df44 1550 #define ADC_SMPR1_SMP11_0 (0x1U << ADC_SMPR1_SMP11_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 1551 #define ADC_SMPR1_SMP11_1 (0x2U << ADC_SMPR1_SMP11_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 1552 #define ADC_SMPR1_SMP11_2 (0x4U << ADC_SMPR1_SMP11_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 1553 #define ADC_SMPR1_SMP12_Pos (6U)
lypinator 0:bb348c97df44 1554 #define ADC_SMPR1_SMP12_Msk (0x7U << ADC_SMPR1_SMP12_Pos) /*!< 0x000001C0 */
lypinator 0:bb348c97df44 1555 #define ADC_SMPR1_SMP12 ADC_SMPR1_SMP12_Msk /*!<SMP12[2:0] bits (Channel 12 Sample time selection) */
lypinator 0:bb348c97df44 1556 #define ADC_SMPR1_SMP12_0 (0x1U << ADC_SMPR1_SMP12_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 1557 #define ADC_SMPR1_SMP12_1 (0x2U << ADC_SMPR1_SMP12_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 1558 #define ADC_SMPR1_SMP12_2 (0x4U << ADC_SMPR1_SMP12_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 1559 #define ADC_SMPR1_SMP13_Pos (9U)
lypinator 0:bb348c97df44 1560 #define ADC_SMPR1_SMP13_Msk (0x7U << ADC_SMPR1_SMP13_Pos) /*!< 0x00000E00 */
lypinator 0:bb348c97df44 1561 #define ADC_SMPR1_SMP13 ADC_SMPR1_SMP13_Msk /*!<SMP13[2:0] bits (Channel 13 Sample time selection) */
lypinator 0:bb348c97df44 1562 #define ADC_SMPR1_SMP13_0 (0x1U << ADC_SMPR1_SMP13_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 1563 #define ADC_SMPR1_SMP13_1 (0x2U << ADC_SMPR1_SMP13_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 1564 #define ADC_SMPR1_SMP13_2 (0x4U << ADC_SMPR1_SMP13_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 1565 #define ADC_SMPR1_SMP14_Pos (12U)
lypinator 0:bb348c97df44 1566 #define ADC_SMPR1_SMP14_Msk (0x7U << ADC_SMPR1_SMP14_Pos) /*!< 0x00007000 */
lypinator 0:bb348c97df44 1567 #define ADC_SMPR1_SMP14 ADC_SMPR1_SMP14_Msk /*!<SMP14[2:0] bits (Channel 14 Sample time selection) */
lypinator 0:bb348c97df44 1568 #define ADC_SMPR1_SMP14_0 (0x1U << ADC_SMPR1_SMP14_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 1569 #define ADC_SMPR1_SMP14_1 (0x2U << ADC_SMPR1_SMP14_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 1570 #define ADC_SMPR1_SMP14_2 (0x4U << ADC_SMPR1_SMP14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 1571 #define ADC_SMPR1_SMP15_Pos (15U)
lypinator 0:bb348c97df44 1572 #define ADC_SMPR1_SMP15_Msk (0x7U << ADC_SMPR1_SMP15_Pos) /*!< 0x00038000 */
lypinator 0:bb348c97df44 1573 #define ADC_SMPR1_SMP15 ADC_SMPR1_SMP15_Msk /*!<SMP15[2:0] bits (Channel 15 Sample time selection) */
lypinator 0:bb348c97df44 1574 #define ADC_SMPR1_SMP15_0 (0x1U << ADC_SMPR1_SMP15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 1575 #define ADC_SMPR1_SMP15_1 (0x2U << ADC_SMPR1_SMP15_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 1576 #define ADC_SMPR1_SMP15_2 (0x4U << ADC_SMPR1_SMP15_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 1577 #define ADC_SMPR1_SMP16_Pos (18U)
lypinator 0:bb348c97df44 1578 #define ADC_SMPR1_SMP16_Msk (0x7U << ADC_SMPR1_SMP16_Pos) /*!< 0x001C0000 */
lypinator 0:bb348c97df44 1579 #define ADC_SMPR1_SMP16 ADC_SMPR1_SMP16_Msk /*!<SMP16[2:0] bits (Channel 16 Sample time selection) */
lypinator 0:bb348c97df44 1580 #define ADC_SMPR1_SMP16_0 (0x1U << ADC_SMPR1_SMP16_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 1581 #define ADC_SMPR1_SMP16_1 (0x2U << ADC_SMPR1_SMP16_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 1582 #define ADC_SMPR1_SMP16_2 (0x4U << ADC_SMPR1_SMP16_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 1583 #define ADC_SMPR1_SMP17_Pos (21U)
lypinator 0:bb348c97df44 1584 #define ADC_SMPR1_SMP17_Msk (0x7U << ADC_SMPR1_SMP17_Pos) /*!< 0x00E00000 */
lypinator 0:bb348c97df44 1585 #define ADC_SMPR1_SMP17 ADC_SMPR1_SMP17_Msk /*!<SMP17[2:0] bits (Channel 17 Sample time selection) */
lypinator 0:bb348c97df44 1586 #define ADC_SMPR1_SMP17_0 (0x1U << ADC_SMPR1_SMP17_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 1587 #define ADC_SMPR1_SMP17_1 (0x2U << ADC_SMPR1_SMP17_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 1588 #define ADC_SMPR1_SMP17_2 (0x4U << ADC_SMPR1_SMP17_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 1589 #define ADC_SMPR1_SMP18_Pos (24U)
lypinator 0:bb348c97df44 1590 #define ADC_SMPR1_SMP18_Msk (0x7U << ADC_SMPR1_SMP18_Pos) /*!< 0x07000000 */
lypinator 0:bb348c97df44 1591 #define ADC_SMPR1_SMP18 ADC_SMPR1_SMP18_Msk /*!<SMP18[2:0] bits (Channel 18 Sample time selection) */
lypinator 0:bb348c97df44 1592 #define ADC_SMPR1_SMP18_0 (0x1U << ADC_SMPR1_SMP18_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 1593 #define ADC_SMPR1_SMP18_1 (0x2U << ADC_SMPR1_SMP18_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 1594 #define ADC_SMPR1_SMP18_2 (0x4U << ADC_SMPR1_SMP18_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 1595
lypinator 0:bb348c97df44 1596 /****************** Bit definition for ADC_SMPR2 register *******************/
lypinator 0:bb348c97df44 1597 #define ADC_SMPR2_SMP0_Pos (0U)
lypinator 0:bb348c97df44 1598 #define ADC_SMPR2_SMP0_Msk (0x7U << ADC_SMPR2_SMP0_Pos) /*!< 0x00000007 */
lypinator 0:bb348c97df44 1599 #define ADC_SMPR2_SMP0 ADC_SMPR2_SMP0_Msk /*!<SMP0[2:0] bits (Channel 0 Sample time selection) */
lypinator 0:bb348c97df44 1600 #define ADC_SMPR2_SMP0_0 (0x1U << ADC_SMPR2_SMP0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 1601 #define ADC_SMPR2_SMP0_1 (0x2U << ADC_SMPR2_SMP0_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 1602 #define ADC_SMPR2_SMP0_2 (0x4U << ADC_SMPR2_SMP0_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 1603 #define ADC_SMPR2_SMP1_Pos (3U)
lypinator 0:bb348c97df44 1604 #define ADC_SMPR2_SMP1_Msk (0x7U << ADC_SMPR2_SMP1_Pos) /*!< 0x00000038 */
lypinator 0:bb348c97df44 1605 #define ADC_SMPR2_SMP1 ADC_SMPR2_SMP1_Msk /*!<SMP1[2:0] bits (Channel 1 Sample time selection) */
lypinator 0:bb348c97df44 1606 #define ADC_SMPR2_SMP1_0 (0x1U << ADC_SMPR2_SMP1_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 1607 #define ADC_SMPR2_SMP1_1 (0x2U << ADC_SMPR2_SMP1_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 1608 #define ADC_SMPR2_SMP1_2 (0x4U << ADC_SMPR2_SMP1_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 1609 #define ADC_SMPR2_SMP2_Pos (6U)
lypinator 0:bb348c97df44 1610 #define ADC_SMPR2_SMP2_Msk (0x7U << ADC_SMPR2_SMP2_Pos) /*!< 0x000001C0 */
lypinator 0:bb348c97df44 1611 #define ADC_SMPR2_SMP2 ADC_SMPR2_SMP2_Msk /*!<SMP2[2:0] bits (Channel 2 Sample time selection) */
lypinator 0:bb348c97df44 1612 #define ADC_SMPR2_SMP2_0 (0x1U << ADC_SMPR2_SMP2_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 1613 #define ADC_SMPR2_SMP2_1 (0x2U << ADC_SMPR2_SMP2_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 1614 #define ADC_SMPR2_SMP2_2 (0x4U << ADC_SMPR2_SMP2_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 1615 #define ADC_SMPR2_SMP3_Pos (9U)
lypinator 0:bb348c97df44 1616 #define ADC_SMPR2_SMP3_Msk (0x7U << ADC_SMPR2_SMP3_Pos) /*!< 0x00000E00 */
lypinator 0:bb348c97df44 1617 #define ADC_SMPR2_SMP3 ADC_SMPR2_SMP3_Msk /*!<SMP3[2:0] bits (Channel 3 Sample time selection) */
lypinator 0:bb348c97df44 1618 #define ADC_SMPR2_SMP3_0 (0x1U << ADC_SMPR2_SMP3_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 1619 #define ADC_SMPR2_SMP3_1 (0x2U << ADC_SMPR2_SMP3_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 1620 #define ADC_SMPR2_SMP3_2 (0x4U << ADC_SMPR2_SMP3_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 1621 #define ADC_SMPR2_SMP4_Pos (12U)
lypinator 0:bb348c97df44 1622 #define ADC_SMPR2_SMP4_Msk (0x7U << ADC_SMPR2_SMP4_Pos) /*!< 0x00007000 */
lypinator 0:bb348c97df44 1623 #define ADC_SMPR2_SMP4 ADC_SMPR2_SMP4_Msk /*!<SMP4[2:0] bits (Channel 4 Sample time selection) */
lypinator 0:bb348c97df44 1624 #define ADC_SMPR2_SMP4_0 (0x1U << ADC_SMPR2_SMP4_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 1625 #define ADC_SMPR2_SMP4_1 (0x2U << ADC_SMPR2_SMP4_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 1626 #define ADC_SMPR2_SMP4_2 (0x4U << ADC_SMPR2_SMP4_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 1627 #define ADC_SMPR2_SMP5_Pos (15U)
lypinator 0:bb348c97df44 1628 #define ADC_SMPR2_SMP5_Msk (0x7U << ADC_SMPR2_SMP5_Pos) /*!< 0x00038000 */
lypinator 0:bb348c97df44 1629 #define ADC_SMPR2_SMP5 ADC_SMPR2_SMP5_Msk /*!<SMP5[2:0] bits (Channel 5 Sample time selection) */
lypinator 0:bb348c97df44 1630 #define ADC_SMPR2_SMP5_0 (0x1U << ADC_SMPR2_SMP5_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 1631 #define ADC_SMPR2_SMP5_1 (0x2U << ADC_SMPR2_SMP5_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 1632 #define ADC_SMPR2_SMP5_2 (0x4U << ADC_SMPR2_SMP5_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 1633 #define ADC_SMPR2_SMP6_Pos (18U)
lypinator 0:bb348c97df44 1634 #define ADC_SMPR2_SMP6_Msk (0x7U << ADC_SMPR2_SMP6_Pos) /*!< 0x001C0000 */
lypinator 0:bb348c97df44 1635 #define ADC_SMPR2_SMP6 ADC_SMPR2_SMP6_Msk /*!<SMP6[2:0] bits (Channel 6 Sample time selection) */
lypinator 0:bb348c97df44 1636 #define ADC_SMPR2_SMP6_0 (0x1U << ADC_SMPR2_SMP6_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 1637 #define ADC_SMPR2_SMP6_1 (0x2U << ADC_SMPR2_SMP6_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 1638 #define ADC_SMPR2_SMP6_2 (0x4U << ADC_SMPR2_SMP6_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 1639 #define ADC_SMPR2_SMP7_Pos (21U)
lypinator 0:bb348c97df44 1640 #define ADC_SMPR2_SMP7_Msk (0x7U << ADC_SMPR2_SMP7_Pos) /*!< 0x00E00000 */
lypinator 0:bb348c97df44 1641 #define ADC_SMPR2_SMP7 ADC_SMPR2_SMP7_Msk /*!<SMP7[2:0] bits (Channel 7 Sample time selection) */
lypinator 0:bb348c97df44 1642 #define ADC_SMPR2_SMP7_0 (0x1U << ADC_SMPR2_SMP7_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 1643 #define ADC_SMPR2_SMP7_1 (0x2U << ADC_SMPR2_SMP7_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 1644 #define ADC_SMPR2_SMP7_2 (0x4U << ADC_SMPR2_SMP7_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 1645 #define ADC_SMPR2_SMP8_Pos (24U)
lypinator 0:bb348c97df44 1646 #define ADC_SMPR2_SMP8_Msk (0x7U << ADC_SMPR2_SMP8_Pos) /*!< 0x07000000 */
lypinator 0:bb348c97df44 1647 #define ADC_SMPR2_SMP8 ADC_SMPR2_SMP8_Msk /*!<SMP8[2:0] bits (Channel 8 Sample time selection) */
lypinator 0:bb348c97df44 1648 #define ADC_SMPR2_SMP8_0 (0x1U << ADC_SMPR2_SMP8_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 1649 #define ADC_SMPR2_SMP8_1 (0x2U << ADC_SMPR2_SMP8_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 1650 #define ADC_SMPR2_SMP8_2 (0x4U << ADC_SMPR2_SMP8_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 1651 #define ADC_SMPR2_SMP9_Pos (27U)
lypinator 0:bb348c97df44 1652 #define ADC_SMPR2_SMP9_Msk (0x7U << ADC_SMPR2_SMP9_Pos) /*!< 0x38000000 */
lypinator 0:bb348c97df44 1653 #define ADC_SMPR2_SMP9 ADC_SMPR2_SMP9_Msk /*!<SMP9[2:0] bits (Channel 9 Sample time selection) */
lypinator 0:bb348c97df44 1654 #define ADC_SMPR2_SMP9_0 (0x1U << ADC_SMPR2_SMP9_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 1655 #define ADC_SMPR2_SMP9_1 (0x2U << ADC_SMPR2_SMP9_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 1656 #define ADC_SMPR2_SMP9_2 (0x4U << ADC_SMPR2_SMP9_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 1657
lypinator 0:bb348c97df44 1658 /****************** Bit definition for ADC_JOFR1 register *******************/
lypinator 0:bb348c97df44 1659 #define ADC_JOFR1_JOFFSET1_Pos (0U)
lypinator 0:bb348c97df44 1660 #define ADC_JOFR1_JOFFSET1_Msk (0xFFFU << ADC_JOFR1_JOFFSET1_Pos) /*!< 0x00000FFF */
lypinator 0:bb348c97df44 1661 #define ADC_JOFR1_JOFFSET1 ADC_JOFR1_JOFFSET1_Msk /*!<Data offset for injected channel 1 */
lypinator 0:bb348c97df44 1662
lypinator 0:bb348c97df44 1663 /****************** Bit definition for ADC_JOFR2 register *******************/
lypinator 0:bb348c97df44 1664 #define ADC_JOFR2_JOFFSET2_Pos (0U)
lypinator 0:bb348c97df44 1665 #define ADC_JOFR2_JOFFSET2_Msk (0xFFFU << ADC_JOFR2_JOFFSET2_Pos) /*!< 0x00000FFF */
lypinator 0:bb348c97df44 1666 #define ADC_JOFR2_JOFFSET2 ADC_JOFR2_JOFFSET2_Msk /*!<Data offset for injected channel 2 */
lypinator 0:bb348c97df44 1667
lypinator 0:bb348c97df44 1668 /****************** Bit definition for ADC_JOFR3 register *******************/
lypinator 0:bb348c97df44 1669 #define ADC_JOFR3_JOFFSET3_Pos (0U)
lypinator 0:bb348c97df44 1670 #define ADC_JOFR3_JOFFSET3_Msk (0xFFFU << ADC_JOFR3_JOFFSET3_Pos) /*!< 0x00000FFF */
lypinator 0:bb348c97df44 1671 #define ADC_JOFR3_JOFFSET3 ADC_JOFR3_JOFFSET3_Msk /*!<Data offset for injected channel 3 */
lypinator 0:bb348c97df44 1672
lypinator 0:bb348c97df44 1673 /****************** Bit definition for ADC_JOFR4 register *******************/
lypinator 0:bb348c97df44 1674 #define ADC_JOFR4_JOFFSET4_Pos (0U)
lypinator 0:bb348c97df44 1675 #define ADC_JOFR4_JOFFSET4_Msk (0xFFFU << ADC_JOFR4_JOFFSET4_Pos) /*!< 0x00000FFF */
lypinator 0:bb348c97df44 1676 #define ADC_JOFR4_JOFFSET4 ADC_JOFR4_JOFFSET4_Msk /*!<Data offset for injected channel 4 */
lypinator 0:bb348c97df44 1677
lypinator 0:bb348c97df44 1678 /******************* Bit definition for ADC_HTR register ********************/
lypinator 0:bb348c97df44 1679 #define ADC_HTR_HT_Pos (0U)
lypinator 0:bb348c97df44 1680 #define ADC_HTR_HT_Msk (0xFFFU << ADC_HTR_HT_Pos) /*!< 0x00000FFF */
lypinator 0:bb348c97df44 1681 #define ADC_HTR_HT ADC_HTR_HT_Msk /*!<Analog watchdog high threshold */
lypinator 0:bb348c97df44 1682
lypinator 0:bb348c97df44 1683 /******************* Bit definition for ADC_LTR register ********************/
lypinator 0:bb348c97df44 1684 #define ADC_LTR_LT_Pos (0U)
lypinator 0:bb348c97df44 1685 #define ADC_LTR_LT_Msk (0xFFFU << ADC_LTR_LT_Pos) /*!< 0x00000FFF */
lypinator 0:bb348c97df44 1686 #define ADC_LTR_LT ADC_LTR_LT_Msk /*!<Analog watchdog low threshold */
lypinator 0:bb348c97df44 1687
lypinator 0:bb348c97df44 1688 /******************* Bit definition for ADC_SQR1 register *******************/
lypinator 0:bb348c97df44 1689 #define ADC_SQR1_SQ13_Pos (0U)
lypinator 0:bb348c97df44 1690 #define ADC_SQR1_SQ13_Msk (0x1FU << ADC_SQR1_SQ13_Pos) /*!< 0x0000001F */
lypinator 0:bb348c97df44 1691 #define ADC_SQR1_SQ13 ADC_SQR1_SQ13_Msk /*!<SQ13[4:0] bits (13th conversion in regular sequence) */
lypinator 0:bb348c97df44 1692 #define ADC_SQR1_SQ13_0 (0x01U << ADC_SQR1_SQ13_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 1693 #define ADC_SQR1_SQ13_1 (0x02U << ADC_SQR1_SQ13_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 1694 #define ADC_SQR1_SQ13_2 (0x04U << ADC_SQR1_SQ13_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 1695 #define ADC_SQR1_SQ13_3 (0x08U << ADC_SQR1_SQ13_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 1696 #define ADC_SQR1_SQ13_4 (0x10U << ADC_SQR1_SQ13_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 1697 #define ADC_SQR1_SQ14_Pos (5U)
lypinator 0:bb348c97df44 1698 #define ADC_SQR1_SQ14_Msk (0x1FU << ADC_SQR1_SQ14_Pos) /*!< 0x000003E0 */
lypinator 0:bb348c97df44 1699 #define ADC_SQR1_SQ14 ADC_SQR1_SQ14_Msk /*!<SQ14[4:0] bits (14th conversion in regular sequence) */
lypinator 0:bb348c97df44 1700 #define ADC_SQR1_SQ14_0 (0x01U << ADC_SQR1_SQ14_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 1701 #define ADC_SQR1_SQ14_1 (0x02U << ADC_SQR1_SQ14_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 1702 #define ADC_SQR1_SQ14_2 (0x04U << ADC_SQR1_SQ14_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 1703 #define ADC_SQR1_SQ14_3 (0x08U << ADC_SQR1_SQ14_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 1704 #define ADC_SQR1_SQ14_4 (0x10U << ADC_SQR1_SQ14_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 1705 #define ADC_SQR1_SQ15_Pos (10U)
lypinator 0:bb348c97df44 1706 #define ADC_SQR1_SQ15_Msk (0x1FU << ADC_SQR1_SQ15_Pos) /*!< 0x00007C00 */
lypinator 0:bb348c97df44 1707 #define ADC_SQR1_SQ15 ADC_SQR1_SQ15_Msk /*!<SQ15[4:0] bits (15th conversion in regular sequence) */
lypinator 0:bb348c97df44 1708 #define ADC_SQR1_SQ15_0 (0x01U << ADC_SQR1_SQ15_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 1709 #define ADC_SQR1_SQ15_1 (0x02U << ADC_SQR1_SQ15_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 1710 #define ADC_SQR1_SQ15_2 (0x04U << ADC_SQR1_SQ15_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 1711 #define ADC_SQR1_SQ15_3 (0x08U << ADC_SQR1_SQ15_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 1712 #define ADC_SQR1_SQ15_4 (0x10U << ADC_SQR1_SQ15_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 1713 #define ADC_SQR1_SQ16_Pos (15U)
lypinator 0:bb348c97df44 1714 #define ADC_SQR1_SQ16_Msk (0x1FU << ADC_SQR1_SQ16_Pos) /*!< 0x000F8000 */
lypinator 0:bb348c97df44 1715 #define ADC_SQR1_SQ16 ADC_SQR1_SQ16_Msk /*!<SQ16[4:0] bits (16th conversion in regular sequence) */
lypinator 0:bb348c97df44 1716 #define ADC_SQR1_SQ16_0 (0x01U << ADC_SQR1_SQ16_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 1717 #define ADC_SQR1_SQ16_1 (0x02U << ADC_SQR1_SQ16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 1718 #define ADC_SQR1_SQ16_2 (0x04U << ADC_SQR1_SQ16_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 1719 #define ADC_SQR1_SQ16_3 (0x08U << ADC_SQR1_SQ16_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 1720 #define ADC_SQR1_SQ16_4 (0x10U << ADC_SQR1_SQ16_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 1721 #define ADC_SQR1_L_Pos (20U)
lypinator 0:bb348c97df44 1722 #define ADC_SQR1_L_Msk (0xFU << ADC_SQR1_L_Pos) /*!< 0x00F00000 */
lypinator 0:bb348c97df44 1723 #define ADC_SQR1_L ADC_SQR1_L_Msk /*!<L[3:0] bits (Regular channel sequence length) */
lypinator 0:bb348c97df44 1724 #define ADC_SQR1_L_0 (0x1U << ADC_SQR1_L_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 1725 #define ADC_SQR1_L_1 (0x2U << ADC_SQR1_L_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 1726 #define ADC_SQR1_L_2 (0x4U << ADC_SQR1_L_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 1727 #define ADC_SQR1_L_3 (0x8U << ADC_SQR1_L_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 1728
lypinator 0:bb348c97df44 1729 /******************* Bit definition for ADC_SQR2 register *******************/
lypinator 0:bb348c97df44 1730 #define ADC_SQR2_SQ7_Pos (0U)
lypinator 0:bb348c97df44 1731 #define ADC_SQR2_SQ7_Msk (0x1FU << ADC_SQR2_SQ7_Pos) /*!< 0x0000001F */
lypinator 0:bb348c97df44 1732 #define ADC_SQR2_SQ7 ADC_SQR2_SQ7_Msk /*!<SQ7[4:0] bits (7th conversion in regular sequence) */
lypinator 0:bb348c97df44 1733 #define ADC_SQR2_SQ7_0 (0x01U << ADC_SQR2_SQ7_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 1734 #define ADC_SQR2_SQ7_1 (0x02U << ADC_SQR2_SQ7_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 1735 #define ADC_SQR2_SQ7_2 (0x04U << ADC_SQR2_SQ7_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 1736 #define ADC_SQR2_SQ7_3 (0x08U << ADC_SQR2_SQ7_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 1737 #define ADC_SQR2_SQ7_4 (0x10U << ADC_SQR2_SQ7_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 1738 #define ADC_SQR2_SQ8_Pos (5U)
lypinator 0:bb348c97df44 1739 #define ADC_SQR2_SQ8_Msk (0x1FU << ADC_SQR2_SQ8_Pos) /*!< 0x000003E0 */
lypinator 0:bb348c97df44 1740 #define ADC_SQR2_SQ8 ADC_SQR2_SQ8_Msk /*!<SQ8[4:0] bits (8th conversion in regular sequence) */
lypinator 0:bb348c97df44 1741 #define ADC_SQR2_SQ8_0 (0x01U << ADC_SQR2_SQ8_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 1742 #define ADC_SQR2_SQ8_1 (0x02U << ADC_SQR2_SQ8_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 1743 #define ADC_SQR2_SQ8_2 (0x04U << ADC_SQR2_SQ8_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 1744 #define ADC_SQR2_SQ8_3 (0x08U << ADC_SQR2_SQ8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 1745 #define ADC_SQR2_SQ8_4 (0x10U << ADC_SQR2_SQ8_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 1746 #define ADC_SQR2_SQ9_Pos (10U)
lypinator 0:bb348c97df44 1747 #define ADC_SQR2_SQ9_Msk (0x1FU << ADC_SQR2_SQ9_Pos) /*!< 0x00007C00 */
lypinator 0:bb348c97df44 1748 #define ADC_SQR2_SQ9 ADC_SQR2_SQ9_Msk /*!<SQ9[4:0] bits (9th conversion in regular sequence) */
lypinator 0:bb348c97df44 1749 #define ADC_SQR2_SQ9_0 (0x01U << ADC_SQR2_SQ9_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 1750 #define ADC_SQR2_SQ9_1 (0x02U << ADC_SQR2_SQ9_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 1751 #define ADC_SQR2_SQ9_2 (0x04U << ADC_SQR2_SQ9_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 1752 #define ADC_SQR2_SQ9_3 (0x08U << ADC_SQR2_SQ9_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 1753 #define ADC_SQR2_SQ9_4 (0x10U << ADC_SQR2_SQ9_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 1754 #define ADC_SQR2_SQ10_Pos (15U)
lypinator 0:bb348c97df44 1755 #define ADC_SQR2_SQ10_Msk (0x1FU << ADC_SQR2_SQ10_Pos) /*!< 0x000F8000 */
lypinator 0:bb348c97df44 1756 #define ADC_SQR2_SQ10 ADC_SQR2_SQ10_Msk /*!<SQ10[4:0] bits (10th conversion in regular sequence) */
lypinator 0:bb348c97df44 1757 #define ADC_SQR2_SQ10_0 (0x01U << ADC_SQR2_SQ10_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 1758 #define ADC_SQR2_SQ10_1 (0x02U << ADC_SQR2_SQ10_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 1759 #define ADC_SQR2_SQ10_2 (0x04U << ADC_SQR2_SQ10_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 1760 #define ADC_SQR2_SQ10_3 (0x08U << ADC_SQR2_SQ10_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 1761 #define ADC_SQR2_SQ10_4 (0x10U << ADC_SQR2_SQ10_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 1762 #define ADC_SQR2_SQ11_Pos (20U)
lypinator 0:bb348c97df44 1763 #define ADC_SQR2_SQ11_Msk (0x1FU << ADC_SQR2_SQ11_Pos) /*!< 0x01F00000 */
lypinator 0:bb348c97df44 1764 #define ADC_SQR2_SQ11 ADC_SQR2_SQ11_Msk /*!<SQ11[4:0] bits (11th conversion in regular sequence) */
lypinator 0:bb348c97df44 1765 #define ADC_SQR2_SQ11_0 (0x01U << ADC_SQR2_SQ11_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 1766 #define ADC_SQR2_SQ11_1 (0x02U << ADC_SQR2_SQ11_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 1767 #define ADC_SQR2_SQ11_2 (0x04U << ADC_SQR2_SQ11_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 1768 #define ADC_SQR2_SQ11_3 (0x08U << ADC_SQR2_SQ11_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 1769 #define ADC_SQR2_SQ11_4 (0x10U << ADC_SQR2_SQ11_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 1770 #define ADC_SQR2_SQ12_Pos (25U)
lypinator 0:bb348c97df44 1771 #define ADC_SQR2_SQ12_Msk (0x1FU << ADC_SQR2_SQ12_Pos) /*!< 0x3E000000 */
lypinator 0:bb348c97df44 1772 #define ADC_SQR2_SQ12 ADC_SQR2_SQ12_Msk /*!<SQ12[4:0] bits (12th conversion in regular sequence) */
lypinator 0:bb348c97df44 1773 #define ADC_SQR2_SQ12_0 (0x01U << ADC_SQR2_SQ12_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 1774 #define ADC_SQR2_SQ12_1 (0x02U << ADC_SQR2_SQ12_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 1775 #define ADC_SQR2_SQ12_2 (0x04U << ADC_SQR2_SQ12_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 1776 #define ADC_SQR2_SQ12_3 (0x08U << ADC_SQR2_SQ12_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 1777 #define ADC_SQR2_SQ12_4 (0x10U << ADC_SQR2_SQ12_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 1778
lypinator 0:bb348c97df44 1779 /******************* Bit definition for ADC_SQR3 register *******************/
lypinator 0:bb348c97df44 1780 #define ADC_SQR3_SQ1_Pos (0U)
lypinator 0:bb348c97df44 1781 #define ADC_SQR3_SQ1_Msk (0x1FU << ADC_SQR3_SQ1_Pos) /*!< 0x0000001F */
lypinator 0:bb348c97df44 1782 #define ADC_SQR3_SQ1 ADC_SQR3_SQ1_Msk /*!<SQ1[4:0] bits (1st conversion in regular sequence) */
lypinator 0:bb348c97df44 1783 #define ADC_SQR3_SQ1_0 (0x01U << ADC_SQR3_SQ1_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 1784 #define ADC_SQR3_SQ1_1 (0x02U << ADC_SQR3_SQ1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 1785 #define ADC_SQR3_SQ1_2 (0x04U << ADC_SQR3_SQ1_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 1786 #define ADC_SQR3_SQ1_3 (0x08U << ADC_SQR3_SQ1_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 1787 #define ADC_SQR3_SQ1_4 (0x10U << ADC_SQR3_SQ1_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 1788 #define ADC_SQR3_SQ2_Pos (5U)
lypinator 0:bb348c97df44 1789 #define ADC_SQR3_SQ2_Msk (0x1FU << ADC_SQR3_SQ2_Pos) /*!< 0x000003E0 */
lypinator 0:bb348c97df44 1790 #define ADC_SQR3_SQ2 ADC_SQR3_SQ2_Msk /*!<SQ2[4:0] bits (2nd conversion in regular sequence) */
lypinator 0:bb348c97df44 1791 #define ADC_SQR3_SQ2_0 (0x01U << ADC_SQR3_SQ2_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 1792 #define ADC_SQR3_SQ2_1 (0x02U << ADC_SQR3_SQ2_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 1793 #define ADC_SQR3_SQ2_2 (0x04U << ADC_SQR3_SQ2_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 1794 #define ADC_SQR3_SQ2_3 (0x08U << ADC_SQR3_SQ2_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 1795 #define ADC_SQR3_SQ2_4 (0x10U << ADC_SQR3_SQ2_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 1796 #define ADC_SQR3_SQ3_Pos (10U)
lypinator 0:bb348c97df44 1797 #define ADC_SQR3_SQ3_Msk (0x1FU << ADC_SQR3_SQ3_Pos) /*!< 0x00007C00 */
lypinator 0:bb348c97df44 1798 #define ADC_SQR3_SQ3 ADC_SQR3_SQ3_Msk /*!<SQ3[4:0] bits (3rd conversion in regular sequence) */
lypinator 0:bb348c97df44 1799 #define ADC_SQR3_SQ3_0 (0x01U << ADC_SQR3_SQ3_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 1800 #define ADC_SQR3_SQ3_1 (0x02U << ADC_SQR3_SQ3_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 1801 #define ADC_SQR3_SQ3_2 (0x04U << ADC_SQR3_SQ3_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 1802 #define ADC_SQR3_SQ3_3 (0x08U << ADC_SQR3_SQ3_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 1803 #define ADC_SQR3_SQ3_4 (0x10U << ADC_SQR3_SQ3_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 1804 #define ADC_SQR3_SQ4_Pos (15U)
lypinator 0:bb348c97df44 1805 #define ADC_SQR3_SQ4_Msk (0x1FU << ADC_SQR3_SQ4_Pos) /*!< 0x000F8000 */
lypinator 0:bb348c97df44 1806 #define ADC_SQR3_SQ4 ADC_SQR3_SQ4_Msk /*!<SQ4[4:0] bits (4th conversion in regular sequence) */
lypinator 0:bb348c97df44 1807 #define ADC_SQR3_SQ4_0 (0x01U << ADC_SQR3_SQ4_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 1808 #define ADC_SQR3_SQ4_1 (0x02U << ADC_SQR3_SQ4_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 1809 #define ADC_SQR3_SQ4_2 (0x04U << ADC_SQR3_SQ4_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 1810 #define ADC_SQR3_SQ4_3 (0x08U << ADC_SQR3_SQ4_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 1811 #define ADC_SQR3_SQ4_4 (0x10U << ADC_SQR3_SQ4_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 1812 #define ADC_SQR3_SQ5_Pos (20U)
lypinator 0:bb348c97df44 1813 #define ADC_SQR3_SQ5_Msk (0x1FU << ADC_SQR3_SQ5_Pos) /*!< 0x01F00000 */
lypinator 0:bb348c97df44 1814 #define ADC_SQR3_SQ5 ADC_SQR3_SQ5_Msk /*!<SQ5[4:0] bits (5th conversion in regular sequence) */
lypinator 0:bb348c97df44 1815 #define ADC_SQR3_SQ5_0 (0x01U << ADC_SQR3_SQ5_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 1816 #define ADC_SQR3_SQ5_1 (0x02U << ADC_SQR3_SQ5_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 1817 #define ADC_SQR3_SQ5_2 (0x04U << ADC_SQR3_SQ5_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 1818 #define ADC_SQR3_SQ5_3 (0x08U << ADC_SQR3_SQ5_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 1819 #define ADC_SQR3_SQ5_4 (0x10U << ADC_SQR3_SQ5_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 1820 #define ADC_SQR3_SQ6_Pos (25U)
lypinator 0:bb348c97df44 1821 #define ADC_SQR3_SQ6_Msk (0x1FU << ADC_SQR3_SQ6_Pos) /*!< 0x3E000000 */
lypinator 0:bb348c97df44 1822 #define ADC_SQR3_SQ6 ADC_SQR3_SQ6_Msk /*!<SQ6[4:0] bits (6th conversion in regular sequence) */
lypinator 0:bb348c97df44 1823 #define ADC_SQR3_SQ6_0 (0x01U << ADC_SQR3_SQ6_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 1824 #define ADC_SQR3_SQ6_1 (0x02U << ADC_SQR3_SQ6_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 1825 #define ADC_SQR3_SQ6_2 (0x04U << ADC_SQR3_SQ6_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 1826 #define ADC_SQR3_SQ6_3 (0x08U << ADC_SQR3_SQ6_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 1827 #define ADC_SQR3_SQ6_4 (0x10U << ADC_SQR3_SQ6_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 1828
lypinator 0:bb348c97df44 1829 /******************* Bit definition for ADC_JSQR register *******************/
lypinator 0:bb348c97df44 1830 #define ADC_JSQR_JSQ1_Pos (0U)
lypinator 0:bb348c97df44 1831 #define ADC_JSQR_JSQ1_Msk (0x1FU << ADC_JSQR_JSQ1_Pos) /*!< 0x0000001F */
lypinator 0:bb348c97df44 1832 #define ADC_JSQR_JSQ1 ADC_JSQR_JSQ1_Msk /*!<JSQ1[4:0] bits (1st conversion in injected sequence) */
lypinator 0:bb348c97df44 1833 #define ADC_JSQR_JSQ1_0 (0x01U << ADC_JSQR_JSQ1_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 1834 #define ADC_JSQR_JSQ1_1 (0x02U << ADC_JSQR_JSQ1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 1835 #define ADC_JSQR_JSQ1_2 (0x04U << ADC_JSQR_JSQ1_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 1836 #define ADC_JSQR_JSQ1_3 (0x08U << ADC_JSQR_JSQ1_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 1837 #define ADC_JSQR_JSQ1_4 (0x10U << ADC_JSQR_JSQ1_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 1838 #define ADC_JSQR_JSQ2_Pos (5U)
lypinator 0:bb348c97df44 1839 #define ADC_JSQR_JSQ2_Msk (0x1FU << ADC_JSQR_JSQ2_Pos) /*!< 0x000003E0 */
lypinator 0:bb348c97df44 1840 #define ADC_JSQR_JSQ2 ADC_JSQR_JSQ2_Msk /*!<JSQ2[4:0] bits (2nd conversion in injected sequence) */
lypinator 0:bb348c97df44 1841 #define ADC_JSQR_JSQ2_0 (0x01U << ADC_JSQR_JSQ2_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 1842 #define ADC_JSQR_JSQ2_1 (0x02U << ADC_JSQR_JSQ2_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 1843 #define ADC_JSQR_JSQ2_2 (0x04U << ADC_JSQR_JSQ2_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 1844 #define ADC_JSQR_JSQ2_3 (0x08U << ADC_JSQR_JSQ2_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 1845 #define ADC_JSQR_JSQ2_4 (0x10U << ADC_JSQR_JSQ2_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 1846 #define ADC_JSQR_JSQ3_Pos (10U)
lypinator 0:bb348c97df44 1847 #define ADC_JSQR_JSQ3_Msk (0x1FU << ADC_JSQR_JSQ3_Pos) /*!< 0x00007C00 */
lypinator 0:bb348c97df44 1848 #define ADC_JSQR_JSQ3 ADC_JSQR_JSQ3_Msk /*!<JSQ3[4:0] bits (3rd conversion in injected sequence) */
lypinator 0:bb348c97df44 1849 #define ADC_JSQR_JSQ3_0 (0x01U << ADC_JSQR_JSQ3_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 1850 #define ADC_JSQR_JSQ3_1 (0x02U << ADC_JSQR_JSQ3_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 1851 #define ADC_JSQR_JSQ3_2 (0x04U << ADC_JSQR_JSQ3_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 1852 #define ADC_JSQR_JSQ3_3 (0x08U << ADC_JSQR_JSQ3_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 1853 #define ADC_JSQR_JSQ3_4 (0x10U << ADC_JSQR_JSQ3_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 1854 #define ADC_JSQR_JSQ4_Pos (15U)
lypinator 0:bb348c97df44 1855 #define ADC_JSQR_JSQ4_Msk (0x1FU << ADC_JSQR_JSQ4_Pos) /*!< 0x000F8000 */
lypinator 0:bb348c97df44 1856 #define ADC_JSQR_JSQ4 ADC_JSQR_JSQ4_Msk /*!<JSQ4[4:0] bits (4th conversion in injected sequence) */
lypinator 0:bb348c97df44 1857 #define ADC_JSQR_JSQ4_0 (0x01U << ADC_JSQR_JSQ4_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 1858 #define ADC_JSQR_JSQ4_1 (0x02U << ADC_JSQR_JSQ4_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 1859 #define ADC_JSQR_JSQ4_2 (0x04U << ADC_JSQR_JSQ4_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 1860 #define ADC_JSQR_JSQ4_3 (0x08U << ADC_JSQR_JSQ4_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 1861 #define ADC_JSQR_JSQ4_4 (0x10U << ADC_JSQR_JSQ4_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 1862 #define ADC_JSQR_JL_Pos (20U)
lypinator 0:bb348c97df44 1863 #define ADC_JSQR_JL_Msk (0x3U << ADC_JSQR_JL_Pos) /*!< 0x00300000 */
lypinator 0:bb348c97df44 1864 #define ADC_JSQR_JL ADC_JSQR_JL_Msk /*!<JL[1:0] bits (Injected Sequence length) */
lypinator 0:bb348c97df44 1865 #define ADC_JSQR_JL_0 (0x1U << ADC_JSQR_JL_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 1866 #define ADC_JSQR_JL_1 (0x2U << ADC_JSQR_JL_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 1867
lypinator 0:bb348c97df44 1868 /******************* Bit definition for ADC_JDR1 register *******************/
lypinator 0:bb348c97df44 1869 #define ADC_JDR1_JDATA_Pos (0U)
lypinator 0:bb348c97df44 1870 #define ADC_JDR1_JDATA_Msk (0xFFFFU << ADC_JDR1_JDATA_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 1871 #define ADC_JDR1_JDATA ADC_JDR1_JDATA_Msk /*!<Injected data */
lypinator 0:bb348c97df44 1872
lypinator 0:bb348c97df44 1873 /******************* Bit definition for ADC_JDR2 register *******************/
lypinator 0:bb348c97df44 1874 #define ADC_JDR2_JDATA_Pos (0U)
lypinator 0:bb348c97df44 1875 #define ADC_JDR2_JDATA_Msk (0xFFFFU << ADC_JDR2_JDATA_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 1876 #define ADC_JDR2_JDATA ADC_JDR2_JDATA_Msk /*!<Injected data */
lypinator 0:bb348c97df44 1877
lypinator 0:bb348c97df44 1878 /******************* Bit definition for ADC_JDR3 register *******************/
lypinator 0:bb348c97df44 1879 #define ADC_JDR3_JDATA_Pos (0U)
lypinator 0:bb348c97df44 1880 #define ADC_JDR3_JDATA_Msk (0xFFFFU << ADC_JDR3_JDATA_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 1881 #define ADC_JDR3_JDATA ADC_JDR3_JDATA_Msk /*!<Injected data */
lypinator 0:bb348c97df44 1882
lypinator 0:bb348c97df44 1883 /******************* Bit definition for ADC_JDR4 register *******************/
lypinator 0:bb348c97df44 1884 #define ADC_JDR4_JDATA_Pos (0U)
lypinator 0:bb348c97df44 1885 #define ADC_JDR4_JDATA_Msk (0xFFFFU << ADC_JDR4_JDATA_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 1886 #define ADC_JDR4_JDATA ADC_JDR4_JDATA_Msk /*!<Injected data */
lypinator 0:bb348c97df44 1887
lypinator 0:bb348c97df44 1888 /******************** Bit definition for ADC_DR register ********************/
lypinator 0:bb348c97df44 1889 #define ADC_DR_DATA_Pos (0U)
lypinator 0:bb348c97df44 1890 #define ADC_DR_DATA_Msk (0xFFFFU << ADC_DR_DATA_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 1891 #define ADC_DR_DATA ADC_DR_DATA_Msk /*!<Regular data */
lypinator 0:bb348c97df44 1892 #define ADC_DR_ADC2DATA_Pos (16U)
lypinator 0:bb348c97df44 1893 #define ADC_DR_ADC2DATA_Msk (0xFFFFU << ADC_DR_ADC2DATA_Pos) /*!< 0xFFFF0000 */
lypinator 0:bb348c97df44 1894 #define ADC_DR_ADC2DATA ADC_DR_ADC2DATA_Msk /*!<ADC2 data */
lypinator 0:bb348c97df44 1895
lypinator 0:bb348c97df44 1896 /******************* Bit definition for ADC_CSR register ********************/
lypinator 0:bb348c97df44 1897 #define ADC_CSR_AWD1_Pos (0U)
lypinator 0:bb348c97df44 1898 #define ADC_CSR_AWD1_Msk (0x1U << ADC_CSR_AWD1_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 1899 #define ADC_CSR_AWD1 ADC_CSR_AWD1_Msk /*!<ADC1 Analog watchdog flag */
lypinator 0:bb348c97df44 1900 #define ADC_CSR_EOC1_Pos (1U)
lypinator 0:bb348c97df44 1901 #define ADC_CSR_EOC1_Msk (0x1U << ADC_CSR_EOC1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 1902 #define ADC_CSR_EOC1 ADC_CSR_EOC1_Msk /*!<ADC1 End of conversion */
lypinator 0:bb348c97df44 1903 #define ADC_CSR_JEOC1_Pos (2U)
lypinator 0:bb348c97df44 1904 #define ADC_CSR_JEOC1_Msk (0x1U << ADC_CSR_JEOC1_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 1905 #define ADC_CSR_JEOC1 ADC_CSR_JEOC1_Msk /*!<ADC1 Injected channel end of conversion */
lypinator 0:bb348c97df44 1906 #define ADC_CSR_JSTRT1_Pos (3U)
lypinator 0:bb348c97df44 1907 #define ADC_CSR_JSTRT1_Msk (0x1U << ADC_CSR_JSTRT1_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 1908 #define ADC_CSR_JSTRT1 ADC_CSR_JSTRT1_Msk /*!<ADC1 Injected channel Start flag */
lypinator 0:bb348c97df44 1909 #define ADC_CSR_STRT1_Pos (4U)
lypinator 0:bb348c97df44 1910 #define ADC_CSR_STRT1_Msk (0x1U << ADC_CSR_STRT1_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 1911 #define ADC_CSR_STRT1 ADC_CSR_STRT1_Msk /*!<ADC1 Regular channel Start flag */
lypinator 0:bb348c97df44 1912 #define ADC_CSR_OVR1_Pos (5U)
lypinator 0:bb348c97df44 1913 #define ADC_CSR_OVR1_Msk (0x1U << ADC_CSR_OVR1_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 1914 #define ADC_CSR_OVR1 ADC_CSR_OVR1_Msk /*!<ADC1 DMA overrun flag */
lypinator 0:bb348c97df44 1915 #define ADC_CSR_AWD2_Pos (8U)
lypinator 0:bb348c97df44 1916 #define ADC_CSR_AWD2_Msk (0x1U << ADC_CSR_AWD2_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 1917 #define ADC_CSR_AWD2 ADC_CSR_AWD2_Msk /*!<ADC2 Analog watchdog flag */
lypinator 0:bb348c97df44 1918 #define ADC_CSR_EOC2_Pos (9U)
lypinator 0:bb348c97df44 1919 #define ADC_CSR_EOC2_Msk (0x1U << ADC_CSR_EOC2_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 1920 #define ADC_CSR_EOC2 ADC_CSR_EOC2_Msk /*!<ADC2 End of conversion */
lypinator 0:bb348c97df44 1921 #define ADC_CSR_JEOC2_Pos (10U)
lypinator 0:bb348c97df44 1922 #define ADC_CSR_JEOC2_Msk (0x1U << ADC_CSR_JEOC2_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 1923 #define ADC_CSR_JEOC2 ADC_CSR_JEOC2_Msk /*!<ADC2 Injected channel end of conversion */
lypinator 0:bb348c97df44 1924 #define ADC_CSR_JSTRT2_Pos (11U)
lypinator 0:bb348c97df44 1925 #define ADC_CSR_JSTRT2_Msk (0x1U << ADC_CSR_JSTRT2_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 1926 #define ADC_CSR_JSTRT2 ADC_CSR_JSTRT2_Msk /*!<ADC2 Injected channel Start flag */
lypinator 0:bb348c97df44 1927 #define ADC_CSR_STRT2_Pos (12U)
lypinator 0:bb348c97df44 1928 #define ADC_CSR_STRT2_Msk (0x1U << ADC_CSR_STRT2_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 1929 #define ADC_CSR_STRT2 ADC_CSR_STRT2_Msk /*!<ADC2 Regular channel Start flag */
lypinator 0:bb348c97df44 1930 #define ADC_CSR_OVR2_Pos (13U)
lypinator 0:bb348c97df44 1931 #define ADC_CSR_OVR2_Msk (0x1U << ADC_CSR_OVR2_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 1932 #define ADC_CSR_OVR2 ADC_CSR_OVR2_Msk /*!<ADC2 DMA overrun flag */
lypinator 0:bb348c97df44 1933 #define ADC_CSR_AWD3_Pos (16U)
lypinator 0:bb348c97df44 1934 #define ADC_CSR_AWD3_Msk (0x1U << ADC_CSR_AWD3_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 1935 #define ADC_CSR_AWD3 ADC_CSR_AWD3_Msk /*!<ADC3 Analog watchdog flag */
lypinator 0:bb348c97df44 1936 #define ADC_CSR_EOC3_Pos (17U)
lypinator 0:bb348c97df44 1937 #define ADC_CSR_EOC3_Msk (0x1U << ADC_CSR_EOC3_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 1938 #define ADC_CSR_EOC3 ADC_CSR_EOC3_Msk /*!<ADC3 End of conversion */
lypinator 0:bb348c97df44 1939 #define ADC_CSR_JEOC3_Pos (18U)
lypinator 0:bb348c97df44 1940 #define ADC_CSR_JEOC3_Msk (0x1U << ADC_CSR_JEOC3_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 1941 #define ADC_CSR_JEOC3 ADC_CSR_JEOC3_Msk /*!<ADC3 Injected channel end of conversion */
lypinator 0:bb348c97df44 1942 #define ADC_CSR_JSTRT3_Pos (19U)
lypinator 0:bb348c97df44 1943 #define ADC_CSR_JSTRT3_Msk (0x1U << ADC_CSR_JSTRT3_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 1944 #define ADC_CSR_JSTRT3 ADC_CSR_JSTRT3_Msk /*!<ADC3 Injected channel Start flag */
lypinator 0:bb348c97df44 1945 #define ADC_CSR_STRT3_Pos (20U)
lypinator 0:bb348c97df44 1946 #define ADC_CSR_STRT3_Msk (0x1U << ADC_CSR_STRT3_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 1947 #define ADC_CSR_STRT3 ADC_CSR_STRT3_Msk /*!<ADC3 Regular channel Start flag */
lypinator 0:bb348c97df44 1948 #define ADC_CSR_OVR3_Pos (21U)
lypinator 0:bb348c97df44 1949 #define ADC_CSR_OVR3_Msk (0x1U << ADC_CSR_OVR3_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 1950 #define ADC_CSR_OVR3 ADC_CSR_OVR3_Msk /*!<ADC3 DMA overrun flag */
lypinator 0:bb348c97df44 1951
lypinator 0:bb348c97df44 1952 /* Legacy defines */
lypinator 0:bb348c97df44 1953 #define ADC_CSR_DOVR1 ADC_CSR_OVR1
lypinator 0:bb348c97df44 1954 #define ADC_CSR_DOVR2 ADC_CSR_OVR2
lypinator 0:bb348c97df44 1955 #define ADC_CSR_DOVR3 ADC_CSR_OVR3
lypinator 0:bb348c97df44 1956
lypinator 0:bb348c97df44 1957 /******************* Bit definition for ADC_CCR register ********************/
lypinator 0:bb348c97df44 1958 #define ADC_CCR_MULTI_Pos (0U)
lypinator 0:bb348c97df44 1959 #define ADC_CCR_MULTI_Msk (0x1FU << ADC_CCR_MULTI_Pos) /*!< 0x0000001F */
lypinator 0:bb348c97df44 1960 #define ADC_CCR_MULTI ADC_CCR_MULTI_Msk /*!<MULTI[4:0] bits (Multi-ADC mode selection) */
lypinator 0:bb348c97df44 1961 #define ADC_CCR_MULTI_0 (0x01U << ADC_CCR_MULTI_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 1962 #define ADC_CCR_MULTI_1 (0x02U << ADC_CCR_MULTI_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 1963 #define ADC_CCR_MULTI_2 (0x04U << ADC_CCR_MULTI_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 1964 #define ADC_CCR_MULTI_3 (0x08U << ADC_CCR_MULTI_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 1965 #define ADC_CCR_MULTI_4 (0x10U << ADC_CCR_MULTI_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 1966 #define ADC_CCR_DELAY_Pos (8U)
lypinator 0:bb348c97df44 1967 #define ADC_CCR_DELAY_Msk (0xFU << ADC_CCR_DELAY_Pos) /*!< 0x00000F00 */
lypinator 0:bb348c97df44 1968 #define ADC_CCR_DELAY ADC_CCR_DELAY_Msk /*!<DELAY[3:0] bits (Delay between 2 sampling phases) */
lypinator 0:bb348c97df44 1969 #define ADC_CCR_DELAY_0 (0x1U << ADC_CCR_DELAY_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 1970 #define ADC_CCR_DELAY_1 (0x2U << ADC_CCR_DELAY_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 1971 #define ADC_CCR_DELAY_2 (0x4U << ADC_CCR_DELAY_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 1972 #define ADC_CCR_DELAY_3 (0x8U << ADC_CCR_DELAY_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 1973 #define ADC_CCR_DDS_Pos (13U)
lypinator 0:bb348c97df44 1974 #define ADC_CCR_DDS_Msk (0x1U << ADC_CCR_DDS_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 1975 #define ADC_CCR_DDS ADC_CCR_DDS_Msk /*!<DMA disable selection (Multi-ADC mode) */
lypinator 0:bb348c97df44 1976 #define ADC_CCR_DMA_Pos (14U)
lypinator 0:bb348c97df44 1977 #define ADC_CCR_DMA_Msk (0x3U << ADC_CCR_DMA_Pos) /*!< 0x0000C000 */
lypinator 0:bb348c97df44 1978 #define ADC_CCR_DMA ADC_CCR_DMA_Msk /*!<DMA[1:0] bits (Direct Memory Access mode for multimode) */
lypinator 0:bb348c97df44 1979 #define ADC_CCR_DMA_0 (0x1U << ADC_CCR_DMA_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 1980 #define ADC_CCR_DMA_1 (0x2U << ADC_CCR_DMA_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 1981 #define ADC_CCR_ADCPRE_Pos (16U)
lypinator 0:bb348c97df44 1982 #define ADC_CCR_ADCPRE_Msk (0x3U << ADC_CCR_ADCPRE_Pos) /*!< 0x00030000 */
lypinator 0:bb348c97df44 1983 #define ADC_CCR_ADCPRE ADC_CCR_ADCPRE_Msk /*!<ADCPRE[1:0] bits (ADC prescaler) */
lypinator 0:bb348c97df44 1984 #define ADC_CCR_ADCPRE_0 (0x1U << ADC_CCR_ADCPRE_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 1985 #define ADC_CCR_ADCPRE_1 (0x2U << ADC_CCR_ADCPRE_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 1986 #define ADC_CCR_VBATE_Pos (22U)
lypinator 0:bb348c97df44 1987 #define ADC_CCR_VBATE_Msk (0x1U << ADC_CCR_VBATE_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 1988 #define ADC_CCR_VBATE ADC_CCR_VBATE_Msk /*!<VBAT Enable */
lypinator 0:bb348c97df44 1989 #define ADC_CCR_TSVREFE_Pos (23U)
lypinator 0:bb348c97df44 1990 #define ADC_CCR_TSVREFE_Msk (0x1U << ADC_CCR_TSVREFE_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 1991 #define ADC_CCR_TSVREFE ADC_CCR_TSVREFE_Msk /*!<Temperature Sensor and VREFINT Enable */
lypinator 0:bb348c97df44 1992
lypinator 0:bb348c97df44 1993 /******************* Bit definition for ADC_CDR register ********************/
lypinator 0:bb348c97df44 1994 #define ADC_CDR_DATA1_Pos (0U)
lypinator 0:bb348c97df44 1995 #define ADC_CDR_DATA1_Msk (0xFFFFU << ADC_CDR_DATA1_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 1996 #define ADC_CDR_DATA1 ADC_CDR_DATA1_Msk /*!<1st data of a pair of regular conversions */
lypinator 0:bb348c97df44 1997 #define ADC_CDR_DATA2_Pos (16U)
lypinator 0:bb348c97df44 1998 #define ADC_CDR_DATA2_Msk (0xFFFFU << ADC_CDR_DATA2_Pos) /*!< 0xFFFF0000 */
lypinator 0:bb348c97df44 1999 #define ADC_CDR_DATA2 ADC_CDR_DATA2_Msk /*!<2nd data of a pair of regular conversions */
lypinator 0:bb348c97df44 2000
lypinator 0:bb348c97df44 2001 /* Legacy defines */
lypinator 0:bb348c97df44 2002 #define ADC_CDR_RDATA_MST ADC_CDR_DATA1
lypinator 0:bb348c97df44 2003 #define ADC_CDR_RDATA_SLV ADC_CDR_DATA2
lypinator 0:bb348c97df44 2004
lypinator 0:bb348c97df44 2005 /******************************************************************************/
lypinator 0:bb348c97df44 2006 /* */
lypinator 0:bb348c97df44 2007 /* Controller Area Network */
lypinator 0:bb348c97df44 2008 /* */
lypinator 0:bb348c97df44 2009 /******************************************************************************/
lypinator 0:bb348c97df44 2010 /*!<CAN control and status registers */
lypinator 0:bb348c97df44 2011 /******************* Bit definition for CAN_MCR register ********************/
lypinator 0:bb348c97df44 2012 #define CAN_MCR_INRQ_Pos (0U)
lypinator 0:bb348c97df44 2013 #define CAN_MCR_INRQ_Msk (0x1U << CAN_MCR_INRQ_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 2014 #define CAN_MCR_INRQ CAN_MCR_INRQ_Msk /*!<Initialization Request */
lypinator 0:bb348c97df44 2015 #define CAN_MCR_SLEEP_Pos (1U)
lypinator 0:bb348c97df44 2016 #define CAN_MCR_SLEEP_Msk (0x1U << CAN_MCR_SLEEP_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 2017 #define CAN_MCR_SLEEP CAN_MCR_SLEEP_Msk /*!<Sleep Mode Request */
lypinator 0:bb348c97df44 2018 #define CAN_MCR_TXFP_Pos (2U)
lypinator 0:bb348c97df44 2019 #define CAN_MCR_TXFP_Msk (0x1U << CAN_MCR_TXFP_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 2020 #define CAN_MCR_TXFP CAN_MCR_TXFP_Msk /*!<Transmit FIFO Priority */
lypinator 0:bb348c97df44 2021 #define CAN_MCR_RFLM_Pos (3U)
lypinator 0:bb348c97df44 2022 #define CAN_MCR_RFLM_Msk (0x1U << CAN_MCR_RFLM_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 2023 #define CAN_MCR_RFLM CAN_MCR_RFLM_Msk /*!<Receive FIFO Locked Mode */
lypinator 0:bb348c97df44 2024 #define CAN_MCR_NART_Pos (4U)
lypinator 0:bb348c97df44 2025 #define CAN_MCR_NART_Msk (0x1U << CAN_MCR_NART_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 2026 #define CAN_MCR_NART CAN_MCR_NART_Msk /*!<No Automatic Retransmission */
lypinator 0:bb348c97df44 2027 #define CAN_MCR_AWUM_Pos (5U)
lypinator 0:bb348c97df44 2028 #define CAN_MCR_AWUM_Msk (0x1U << CAN_MCR_AWUM_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 2029 #define CAN_MCR_AWUM CAN_MCR_AWUM_Msk /*!<Automatic Wakeup Mode */
lypinator 0:bb348c97df44 2030 #define CAN_MCR_ABOM_Pos (6U)
lypinator 0:bb348c97df44 2031 #define CAN_MCR_ABOM_Msk (0x1U << CAN_MCR_ABOM_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 2032 #define CAN_MCR_ABOM CAN_MCR_ABOM_Msk /*!<Automatic Bus-Off Management */
lypinator 0:bb348c97df44 2033 #define CAN_MCR_TTCM_Pos (7U)
lypinator 0:bb348c97df44 2034 #define CAN_MCR_TTCM_Msk (0x1U << CAN_MCR_TTCM_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 2035 #define CAN_MCR_TTCM CAN_MCR_TTCM_Msk /*!<Time Triggered Communication Mode */
lypinator 0:bb348c97df44 2036 #define CAN_MCR_RESET_Pos (15U)
lypinator 0:bb348c97df44 2037 #define CAN_MCR_RESET_Msk (0x1U << CAN_MCR_RESET_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 2038 #define CAN_MCR_RESET CAN_MCR_RESET_Msk /*!<bxCAN software master reset */
lypinator 0:bb348c97df44 2039 #define CAN_MCR_DBF_Pos (16U)
lypinator 0:bb348c97df44 2040 #define CAN_MCR_DBF_Msk (0x1U << CAN_MCR_DBF_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 2041 #define CAN_MCR_DBF CAN_MCR_DBF_Msk /*!<bxCAN Debug freeze */
lypinator 0:bb348c97df44 2042 /******************* Bit definition for CAN_MSR register ********************/
lypinator 0:bb348c97df44 2043 #define CAN_MSR_INAK_Pos (0U)
lypinator 0:bb348c97df44 2044 #define CAN_MSR_INAK_Msk (0x1U << CAN_MSR_INAK_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 2045 #define CAN_MSR_INAK CAN_MSR_INAK_Msk /*!<Initialization Acknowledge */
lypinator 0:bb348c97df44 2046 #define CAN_MSR_SLAK_Pos (1U)
lypinator 0:bb348c97df44 2047 #define CAN_MSR_SLAK_Msk (0x1U << CAN_MSR_SLAK_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 2048 #define CAN_MSR_SLAK CAN_MSR_SLAK_Msk /*!<Sleep Acknowledge */
lypinator 0:bb348c97df44 2049 #define CAN_MSR_ERRI_Pos (2U)
lypinator 0:bb348c97df44 2050 #define CAN_MSR_ERRI_Msk (0x1U << CAN_MSR_ERRI_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 2051 #define CAN_MSR_ERRI CAN_MSR_ERRI_Msk /*!<Error Interrupt */
lypinator 0:bb348c97df44 2052 #define CAN_MSR_WKUI_Pos (3U)
lypinator 0:bb348c97df44 2053 #define CAN_MSR_WKUI_Msk (0x1U << CAN_MSR_WKUI_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 2054 #define CAN_MSR_WKUI CAN_MSR_WKUI_Msk /*!<Wakeup Interrupt */
lypinator 0:bb348c97df44 2055 #define CAN_MSR_SLAKI_Pos (4U)
lypinator 0:bb348c97df44 2056 #define CAN_MSR_SLAKI_Msk (0x1U << CAN_MSR_SLAKI_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 2057 #define CAN_MSR_SLAKI CAN_MSR_SLAKI_Msk /*!<Sleep Acknowledge Interrupt */
lypinator 0:bb348c97df44 2058 #define CAN_MSR_TXM_Pos (8U)
lypinator 0:bb348c97df44 2059 #define CAN_MSR_TXM_Msk (0x1U << CAN_MSR_TXM_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 2060 #define CAN_MSR_TXM CAN_MSR_TXM_Msk /*!<Transmit Mode */
lypinator 0:bb348c97df44 2061 #define CAN_MSR_RXM_Pos (9U)
lypinator 0:bb348c97df44 2062 #define CAN_MSR_RXM_Msk (0x1U << CAN_MSR_RXM_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 2063 #define CAN_MSR_RXM CAN_MSR_RXM_Msk /*!<Receive Mode */
lypinator 0:bb348c97df44 2064 #define CAN_MSR_SAMP_Pos (10U)
lypinator 0:bb348c97df44 2065 #define CAN_MSR_SAMP_Msk (0x1U << CAN_MSR_SAMP_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 2066 #define CAN_MSR_SAMP CAN_MSR_SAMP_Msk /*!<Last Sample Point */
lypinator 0:bb348c97df44 2067 #define CAN_MSR_RX_Pos (11U)
lypinator 0:bb348c97df44 2068 #define CAN_MSR_RX_Msk (0x1U << CAN_MSR_RX_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 2069 #define CAN_MSR_RX CAN_MSR_RX_Msk /*!<CAN Rx Signal */
lypinator 0:bb348c97df44 2070
lypinator 0:bb348c97df44 2071 /******************* Bit definition for CAN_TSR register ********************/
lypinator 0:bb348c97df44 2072 #define CAN_TSR_RQCP0_Pos (0U)
lypinator 0:bb348c97df44 2073 #define CAN_TSR_RQCP0_Msk (0x1U << CAN_TSR_RQCP0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 2074 #define CAN_TSR_RQCP0 CAN_TSR_RQCP0_Msk /*!<Request Completed Mailbox0 */
lypinator 0:bb348c97df44 2075 #define CAN_TSR_TXOK0_Pos (1U)
lypinator 0:bb348c97df44 2076 #define CAN_TSR_TXOK0_Msk (0x1U << CAN_TSR_TXOK0_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 2077 #define CAN_TSR_TXOK0 CAN_TSR_TXOK0_Msk /*!<Transmission OK of Mailbox0 */
lypinator 0:bb348c97df44 2078 #define CAN_TSR_ALST0_Pos (2U)
lypinator 0:bb348c97df44 2079 #define CAN_TSR_ALST0_Msk (0x1U << CAN_TSR_ALST0_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 2080 #define CAN_TSR_ALST0 CAN_TSR_ALST0_Msk /*!<Arbitration Lost for Mailbox0 */
lypinator 0:bb348c97df44 2081 #define CAN_TSR_TERR0_Pos (3U)
lypinator 0:bb348c97df44 2082 #define CAN_TSR_TERR0_Msk (0x1U << CAN_TSR_TERR0_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 2083 #define CAN_TSR_TERR0 CAN_TSR_TERR0_Msk /*!<Transmission Error of Mailbox0 */
lypinator 0:bb348c97df44 2084 #define CAN_TSR_ABRQ0_Pos (7U)
lypinator 0:bb348c97df44 2085 #define CAN_TSR_ABRQ0_Msk (0x1U << CAN_TSR_ABRQ0_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 2086 #define CAN_TSR_ABRQ0 CAN_TSR_ABRQ0_Msk /*!<Abort Request for Mailbox0 */
lypinator 0:bb348c97df44 2087 #define CAN_TSR_RQCP1_Pos (8U)
lypinator 0:bb348c97df44 2088 #define CAN_TSR_RQCP1_Msk (0x1U << CAN_TSR_RQCP1_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 2089 #define CAN_TSR_RQCP1 CAN_TSR_RQCP1_Msk /*!<Request Completed Mailbox1 */
lypinator 0:bb348c97df44 2090 #define CAN_TSR_TXOK1_Pos (9U)
lypinator 0:bb348c97df44 2091 #define CAN_TSR_TXOK1_Msk (0x1U << CAN_TSR_TXOK1_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 2092 #define CAN_TSR_TXOK1 CAN_TSR_TXOK1_Msk /*!<Transmission OK of Mailbox1 */
lypinator 0:bb348c97df44 2093 #define CAN_TSR_ALST1_Pos (10U)
lypinator 0:bb348c97df44 2094 #define CAN_TSR_ALST1_Msk (0x1U << CAN_TSR_ALST1_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 2095 #define CAN_TSR_ALST1 CAN_TSR_ALST1_Msk /*!<Arbitration Lost for Mailbox1 */
lypinator 0:bb348c97df44 2096 #define CAN_TSR_TERR1_Pos (11U)
lypinator 0:bb348c97df44 2097 #define CAN_TSR_TERR1_Msk (0x1U << CAN_TSR_TERR1_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 2098 #define CAN_TSR_TERR1 CAN_TSR_TERR1_Msk /*!<Transmission Error of Mailbox1 */
lypinator 0:bb348c97df44 2099 #define CAN_TSR_ABRQ1_Pos (15U)
lypinator 0:bb348c97df44 2100 #define CAN_TSR_ABRQ1_Msk (0x1U << CAN_TSR_ABRQ1_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 2101 #define CAN_TSR_ABRQ1 CAN_TSR_ABRQ1_Msk /*!<Abort Request for Mailbox 1 */
lypinator 0:bb348c97df44 2102 #define CAN_TSR_RQCP2_Pos (16U)
lypinator 0:bb348c97df44 2103 #define CAN_TSR_RQCP2_Msk (0x1U << CAN_TSR_RQCP2_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 2104 #define CAN_TSR_RQCP2 CAN_TSR_RQCP2_Msk /*!<Request Completed Mailbox2 */
lypinator 0:bb348c97df44 2105 #define CAN_TSR_TXOK2_Pos (17U)
lypinator 0:bb348c97df44 2106 #define CAN_TSR_TXOK2_Msk (0x1U << CAN_TSR_TXOK2_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 2107 #define CAN_TSR_TXOK2 CAN_TSR_TXOK2_Msk /*!<Transmission OK of Mailbox 2 */
lypinator 0:bb348c97df44 2108 #define CAN_TSR_ALST2_Pos (18U)
lypinator 0:bb348c97df44 2109 #define CAN_TSR_ALST2_Msk (0x1U << CAN_TSR_ALST2_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 2110 #define CAN_TSR_ALST2 CAN_TSR_ALST2_Msk /*!<Arbitration Lost for mailbox 2 */
lypinator 0:bb348c97df44 2111 #define CAN_TSR_TERR2_Pos (19U)
lypinator 0:bb348c97df44 2112 #define CAN_TSR_TERR2_Msk (0x1U << CAN_TSR_TERR2_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 2113 #define CAN_TSR_TERR2 CAN_TSR_TERR2_Msk /*!<Transmission Error of Mailbox 2 */
lypinator 0:bb348c97df44 2114 #define CAN_TSR_ABRQ2_Pos (23U)
lypinator 0:bb348c97df44 2115 #define CAN_TSR_ABRQ2_Msk (0x1U << CAN_TSR_ABRQ2_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 2116 #define CAN_TSR_ABRQ2 CAN_TSR_ABRQ2_Msk /*!<Abort Request for Mailbox 2 */
lypinator 0:bb348c97df44 2117 #define CAN_TSR_CODE_Pos (24U)
lypinator 0:bb348c97df44 2118 #define CAN_TSR_CODE_Msk (0x3U << CAN_TSR_CODE_Pos) /*!< 0x03000000 */
lypinator 0:bb348c97df44 2119 #define CAN_TSR_CODE CAN_TSR_CODE_Msk /*!<Mailbox Code */
lypinator 0:bb348c97df44 2120
lypinator 0:bb348c97df44 2121 #define CAN_TSR_TME_Pos (26U)
lypinator 0:bb348c97df44 2122 #define CAN_TSR_TME_Msk (0x7U << CAN_TSR_TME_Pos) /*!< 0x1C000000 */
lypinator 0:bb348c97df44 2123 #define CAN_TSR_TME CAN_TSR_TME_Msk /*!<TME[2:0] bits */
lypinator 0:bb348c97df44 2124 #define CAN_TSR_TME0_Pos (26U)
lypinator 0:bb348c97df44 2125 #define CAN_TSR_TME0_Msk (0x1U << CAN_TSR_TME0_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 2126 #define CAN_TSR_TME0 CAN_TSR_TME0_Msk /*!<Transmit Mailbox 0 Empty */
lypinator 0:bb348c97df44 2127 #define CAN_TSR_TME1_Pos (27U)
lypinator 0:bb348c97df44 2128 #define CAN_TSR_TME1_Msk (0x1U << CAN_TSR_TME1_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 2129 #define CAN_TSR_TME1 CAN_TSR_TME1_Msk /*!<Transmit Mailbox 1 Empty */
lypinator 0:bb348c97df44 2130 #define CAN_TSR_TME2_Pos (28U)
lypinator 0:bb348c97df44 2131 #define CAN_TSR_TME2_Msk (0x1U << CAN_TSR_TME2_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 2132 #define CAN_TSR_TME2 CAN_TSR_TME2_Msk /*!<Transmit Mailbox 2 Empty */
lypinator 0:bb348c97df44 2133
lypinator 0:bb348c97df44 2134 #define CAN_TSR_LOW_Pos (29U)
lypinator 0:bb348c97df44 2135 #define CAN_TSR_LOW_Msk (0x7U << CAN_TSR_LOW_Pos) /*!< 0xE0000000 */
lypinator 0:bb348c97df44 2136 #define CAN_TSR_LOW CAN_TSR_LOW_Msk /*!<LOW[2:0] bits */
lypinator 0:bb348c97df44 2137 #define CAN_TSR_LOW0_Pos (29U)
lypinator 0:bb348c97df44 2138 #define CAN_TSR_LOW0_Msk (0x1U << CAN_TSR_LOW0_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 2139 #define CAN_TSR_LOW0 CAN_TSR_LOW0_Msk /*!<Lowest Priority Flag for Mailbox 0 */
lypinator 0:bb348c97df44 2140 #define CAN_TSR_LOW1_Pos (30U)
lypinator 0:bb348c97df44 2141 #define CAN_TSR_LOW1_Msk (0x1U << CAN_TSR_LOW1_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 2142 #define CAN_TSR_LOW1 CAN_TSR_LOW1_Msk /*!<Lowest Priority Flag for Mailbox 1 */
lypinator 0:bb348c97df44 2143 #define CAN_TSR_LOW2_Pos (31U)
lypinator 0:bb348c97df44 2144 #define CAN_TSR_LOW2_Msk (0x1U << CAN_TSR_LOW2_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 2145 #define CAN_TSR_LOW2 CAN_TSR_LOW2_Msk /*!<Lowest Priority Flag for Mailbox 2 */
lypinator 0:bb348c97df44 2146
lypinator 0:bb348c97df44 2147 /******************* Bit definition for CAN_RF0R register *******************/
lypinator 0:bb348c97df44 2148 #define CAN_RF0R_FMP0_Pos (0U)
lypinator 0:bb348c97df44 2149 #define CAN_RF0R_FMP0_Msk (0x3U << CAN_RF0R_FMP0_Pos) /*!< 0x00000003 */
lypinator 0:bb348c97df44 2150 #define CAN_RF0R_FMP0 CAN_RF0R_FMP0_Msk /*!<FIFO 0 Message Pending */
lypinator 0:bb348c97df44 2151 #define CAN_RF0R_FULL0_Pos (3U)
lypinator 0:bb348c97df44 2152 #define CAN_RF0R_FULL0_Msk (0x1U << CAN_RF0R_FULL0_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 2153 #define CAN_RF0R_FULL0 CAN_RF0R_FULL0_Msk /*!<FIFO 0 Full */
lypinator 0:bb348c97df44 2154 #define CAN_RF0R_FOVR0_Pos (4U)
lypinator 0:bb348c97df44 2155 #define CAN_RF0R_FOVR0_Msk (0x1U << CAN_RF0R_FOVR0_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 2156 #define CAN_RF0R_FOVR0 CAN_RF0R_FOVR0_Msk /*!<FIFO 0 Overrun */
lypinator 0:bb348c97df44 2157 #define CAN_RF0R_RFOM0_Pos (5U)
lypinator 0:bb348c97df44 2158 #define CAN_RF0R_RFOM0_Msk (0x1U << CAN_RF0R_RFOM0_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 2159 #define CAN_RF0R_RFOM0 CAN_RF0R_RFOM0_Msk /*!<Release FIFO 0 Output Mailbox */
lypinator 0:bb348c97df44 2160
lypinator 0:bb348c97df44 2161 /******************* Bit definition for CAN_RF1R register *******************/
lypinator 0:bb348c97df44 2162 #define CAN_RF1R_FMP1_Pos (0U)
lypinator 0:bb348c97df44 2163 #define CAN_RF1R_FMP1_Msk (0x3U << CAN_RF1R_FMP1_Pos) /*!< 0x00000003 */
lypinator 0:bb348c97df44 2164 #define CAN_RF1R_FMP1 CAN_RF1R_FMP1_Msk /*!<FIFO 1 Message Pending */
lypinator 0:bb348c97df44 2165 #define CAN_RF1R_FULL1_Pos (3U)
lypinator 0:bb348c97df44 2166 #define CAN_RF1R_FULL1_Msk (0x1U << CAN_RF1R_FULL1_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 2167 #define CAN_RF1R_FULL1 CAN_RF1R_FULL1_Msk /*!<FIFO 1 Full */
lypinator 0:bb348c97df44 2168 #define CAN_RF1R_FOVR1_Pos (4U)
lypinator 0:bb348c97df44 2169 #define CAN_RF1R_FOVR1_Msk (0x1U << CAN_RF1R_FOVR1_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 2170 #define CAN_RF1R_FOVR1 CAN_RF1R_FOVR1_Msk /*!<FIFO 1 Overrun */
lypinator 0:bb348c97df44 2171 #define CAN_RF1R_RFOM1_Pos (5U)
lypinator 0:bb348c97df44 2172 #define CAN_RF1R_RFOM1_Msk (0x1U << CAN_RF1R_RFOM1_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 2173 #define CAN_RF1R_RFOM1 CAN_RF1R_RFOM1_Msk /*!<Release FIFO 1 Output Mailbox */
lypinator 0:bb348c97df44 2174
lypinator 0:bb348c97df44 2175 /******************** Bit definition for CAN_IER register *******************/
lypinator 0:bb348c97df44 2176 #define CAN_IER_TMEIE_Pos (0U)
lypinator 0:bb348c97df44 2177 #define CAN_IER_TMEIE_Msk (0x1U << CAN_IER_TMEIE_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 2178 #define CAN_IER_TMEIE CAN_IER_TMEIE_Msk /*!<Transmit Mailbox Empty Interrupt Enable */
lypinator 0:bb348c97df44 2179 #define CAN_IER_FMPIE0_Pos (1U)
lypinator 0:bb348c97df44 2180 #define CAN_IER_FMPIE0_Msk (0x1U << CAN_IER_FMPIE0_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 2181 #define CAN_IER_FMPIE0 CAN_IER_FMPIE0_Msk /*!<FIFO Message Pending Interrupt Enable */
lypinator 0:bb348c97df44 2182 #define CAN_IER_FFIE0_Pos (2U)
lypinator 0:bb348c97df44 2183 #define CAN_IER_FFIE0_Msk (0x1U << CAN_IER_FFIE0_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 2184 #define CAN_IER_FFIE0 CAN_IER_FFIE0_Msk /*!<FIFO Full Interrupt Enable */
lypinator 0:bb348c97df44 2185 #define CAN_IER_FOVIE0_Pos (3U)
lypinator 0:bb348c97df44 2186 #define CAN_IER_FOVIE0_Msk (0x1U << CAN_IER_FOVIE0_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 2187 #define CAN_IER_FOVIE0 CAN_IER_FOVIE0_Msk /*!<FIFO Overrun Interrupt Enable */
lypinator 0:bb348c97df44 2188 #define CAN_IER_FMPIE1_Pos (4U)
lypinator 0:bb348c97df44 2189 #define CAN_IER_FMPIE1_Msk (0x1U << CAN_IER_FMPIE1_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 2190 #define CAN_IER_FMPIE1 CAN_IER_FMPIE1_Msk /*!<FIFO Message Pending Interrupt Enable */
lypinator 0:bb348c97df44 2191 #define CAN_IER_FFIE1_Pos (5U)
lypinator 0:bb348c97df44 2192 #define CAN_IER_FFIE1_Msk (0x1U << CAN_IER_FFIE1_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 2193 #define CAN_IER_FFIE1 CAN_IER_FFIE1_Msk /*!<FIFO Full Interrupt Enable */
lypinator 0:bb348c97df44 2194 #define CAN_IER_FOVIE1_Pos (6U)
lypinator 0:bb348c97df44 2195 #define CAN_IER_FOVIE1_Msk (0x1U << CAN_IER_FOVIE1_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 2196 #define CAN_IER_FOVIE1 CAN_IER_FOVIE1_Msk /*!<FIFO Overrun Interrupt Enable */
lypinator 0:bb348c97df44 2197 #define CAN_IER_EWGIE_Pos (8U)
lypinator 0:bb348c97df44 2198 #define CAN_IER_EWGIE_Msk (0x1U << CAN_IER_EWGIE_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 2199 #define CAN_IER_EWGIE CAN_IER_EWGIE_Msk /*!<Error Warning Interrupt Enable */
lypinator 0:bb348c97df44 2200 #define CAN_IER_EPVIE_Pos (9U)
lypinator 0:bb348c97df44 2201 #define CAN_IER_EPVIE_Msk (0x1U << CAN_IER_EPVIE_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 2202 #define CAN_IER_EPVIE CAN_IER_EPVIE_Msk /*!<Error Passive Interrupt Enable */
lypinator 0:bb348c97df44 2203 #define CAN_IER_BOFIE_Pos (10U)
lypinator 0:bb348c97df44 2204 #define CAN_IER_BOFIE_Msk (0x1U << CAN_IER_BOFIE_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 2205 #define CAN_IER_BOFIE CAN_IER_BOFIE_Msk /*!<Bus-Off Interrupt Enable */
lypinator 0:bb348c97df44 2206 #define CAN_IER_LECIE_Pos (11U)
lypinator 0:bb348c97df44 2207 #define CAN_IER_LECIE_Msk (0x1U << CAN_IER_LECIE_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 2208 #define CAN_IER_LECIE CAN_IER_LECIE_Msk /*!<Last Error Code Interrupt Enable */
lypinator 0:bb348c97df44 2209 #define CAN_IER_ERRIE_Pos (15U)
lypinator 0:bb348c97df44 2210 #define CAN_IER_ERRIE_Msk (0x1U << CAN_IER_ERRIE_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 2211 #define CAN_IER_ERRIE CAN_IER_ERRIE_Msk /*!<Error Interrupt Enable */
lypinator 0:bb348c97df44 2212 #define CAN_IER_WKUIE_Pos (16U)
lypinator 0:bb348c97df44 2213 #define CAN_IER_WKUIE_Msk (0x1U << CAN_IER_WKUIE_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 2214 #define CAN_IER_WKUIE CAN_IER_WKUIE_Msk /*!<Wakeup Interrupt Enable */
lypinator 0:bb348c97df44 2215 #define CAN_IER_SLKIE_Pos (17U)
lypinator 0:bb348c97df44 2216 #define CAN_IER_SLKIE_Msk (0x1U << CAN_IER_SLKIE_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 2217 #define CAN_IER_SLKIE CAN_IER_SLKIE_Msk /*!<Sleep Interrupt Enable */
lypinator 0:bb348c97df44 2218 #define CAN_IER_EWGIE_Pos (8U)
lypinator 0:bb348c97df44 2219
lypinator 0:bb348c97df44 2220 /******************** Bit definition for CAN_ESR register *******************/
lypinator 0:bb348c97df44 2221 #define CAN_ESR_EWGF_Pos (0U)
lypinator 0:bb348c97df44 2222 #define CAN_ESR_EWGF_Msk (0x1U << CAN_ESR_EWGF_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 2223 #define CAN_ESR_EWGF CAN_ESR_EWGF_Msk /*!<Error Warning Flag */
lypinator 0:bb348c97df44 2224 #define CAN_ESR_EPVF_Pos (1U)
lypinator 0:bb348c97df44 2225 #define CAN_ESR_EPVF_Msk (0x1U << CAN_ESR_EPVF_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 2226 #define CAN_ESR_EPVF CAN_ESR_EPVF_Msk /*!<Error Passive Flag */
lypinator 0:bb348c97df44 2227 #define CAN_ESR_BOFF_Pos (2U)
lypinator 0:bb348c97df44 2228 #define CAN_ESR_BOFF_Msk (0x1U << CAN_ESR_BOFF_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 2229 #define CAN_ESR_BOFF CAN_ESR_BOFF_Msk /*!<Bus-Off Flag */
lypinator 0:bb348c97df44 2230
lypinator 0:bb348c97df44 2231 #define CAN_ESR_LEC_Pos (4U)
lypinator 0:bb348c97df44 2232 #define CAN_ESR_LEC_Msk (0x7U << CAN_ESR_LEC_Pos) /*!< 0x00000070 */
lypinator 0:bb348c97df44 2233 #define CAN_ESR_LEC CAN_ESR_LEC_Msk /*!<LEC[2:0] bits (Last Error Code) */
lypinator 0:bb348c97df44 2234 #define CAN_ESR_LEC_0 (0x1U << CAN_ESR_LEC_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 2235 #define CAN_ESR_LEC_1 (0x2U << CAN_ESR_LEC_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 2236 #define CAN_ESR_LEC_2 (0x4U << CAN_ESR_LEC_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 2237
lypinator 0:bb348c97df44 2238 #define CAN_ESR_TEC_Pos (16U)
lypinator 0:bb348c97df44 2239 #define CAN_ESR_TEC_Msk (0xFFU << CAN_ESR_TEC_Pos) /*!< 0x00FF0000 */
lypinator 0:bb348c97df44 2240 #define CAN_ESR_TEC CAN_ESR_TEC_Msk /*!<Least significant byte of the 9-bit Transmit Error Counter */
lypinator 0:bb348c97df44 2241 #define CAN_ESR_REC_Pos (24U)
lypinator 0:bb348c97df44 2242 #define CAN_ESR_REC_Msk (0xFFU << CAN_ESR_REC_Pos) /*!< 0xFF000000 */
lypinator 0:bb348c97df44 2243 #define CAN_ESR_REC CAN_ESR_REC_Msk /*!<Receive Error Counter */
lypinator 0:bb348c97df44 2244
lypinator 0:bb348c97df44 2245 /******************* Bit definition for CAN_BTR register ********************/
lypinator 0:bb348c97df44 2246 #define CAN_BTR_BRP_Pos (0U)
lypinator 0:bb348c97df44 2247 #define CAN_BTR_BRP_Msk (0x3FFU << CAN_BTR_BRP_Pos) /*!< 0x000003FF */
lypinator 0:bb348c97df44 2248 #define CAN_BTR_BRP CAN_BTR_BRP_Msk /*!<Baud Rate Prescaler */
lypinator 0:bb348c97df44 2249 #define CAN_BTR_TS1_Pos (16U)
lypinator 0:bb348c97df44 2250 #define CAN_BTR_TS1_Msk (0xFU << CAN_BTR_TS1_Pos) /*!< 0x000F0000 */
lypinator 0:bb348c97df44 2251 #define CAN_BTR_TS1 CAN_BTR_TS1_Msk /*!<Time Segment 1 */
lypinator 0:bb348c97df44 2252 #define CAN_BTR_TS1_0 (0x1U << CAN_BTR_TS1_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 2253 #define CAN_BTR_TS1_1 (0x2U << CAN_BTR_TS1_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 2254 #define CAN_BTR_TS1_2 (0x4U << CAN_BTR_TS1_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 2255 #define CAN_BTR_TS1_3 (0x8U << CAN_BTR_TS1_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 2256 #define CAN_BTR_TS2_Pos (20U)
lypinator 0:bb348c97df44 2257 #define CAN_BTR_TS2_Msk (0x7U << CAN_BTR_TS2_Pos) /*!< 0x00700000 */
lypinator 0:bb348c97df44 2258 #define CAN_BTR_TS2 CAN_BTR_TS2_Msk /*!<Time Segment 2 */
lypinator 0:bb348c97df44 2259 #define CAN_BTR_TS2_0 (0x1U << CAN_BTR_TS2_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 2260 #define CAN_BTR_TS2_1 (0x2U << CAN_BTR_TS2_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 2261 #define CAN_BTR_TS2_2 (0x4U << CAN_BTR_TS2_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 2262 #define CAN_BTR_SJW_Pos (24U)
lypinator 0:bb348c97df44 2263 #define CAN_BTR_SJW_Msk (0x3U << CAN_BTR_SJW_Pos) /*!< 0x03000000 */
lypinator 0:bb348c97df44 2264 #define CAN_BTR_SJW CAN_BTR_SJW_Msk /*!<Resynchronization Jump Width */
lypinator 0:bb348c97df44 2265 #define CAN_BTR_SJW_0 (0x1U << CAN_BTR_SJW_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 2266 #define CAN_BTR_SJW_1 (0x2U << CAN_BTR_SJW_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 2267 #define CAN_BTR_LBKM_Pos (30U)
lypinator 0:bb348c97df44 2268 #define CAN_BTR_LBKM_Msk (0x1U << CAN_BTR_LBKM_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 2269 #define CAN_BTR_LBKM CAN_BTR_LBKM_Msk /*!<Loop Back Mode (Debug) */
lypinator 0:bb348c97df44 2270 #define CAN_BTR_SILM_Pos (31U)
lypinator 0:bb348c97df44 2271 #define CAN_BTR_SILM_Msk (0x1U << CAN_BTR_SILM_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 2272 #define CAN_BTR_SILM CAN_BTR_SILM_Msk /*!<Silent Mode */
lypinator 0:bb348c97df44 2273
lypinator 0:bb348c97df44 2274
lypinator 0:bb348c97df44 2275 /*!<Mailbox registers */
lypinator 0:bb348c97df44 2276 /****************** Bit definition for CAN_TI0R register ********************/
lypinator 0:bb348c97df44 2277 #define CAN_TI0R_TXRQ_Pos (0U)
lypinator 0:bb348c97df44 2278 #define CAN_TI0R_TXRQ_Msk (0x1U << CAN_TI0R_TXRQ_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 2279 #define CAN_TI0R_TXRQ CAN_TI0R_TXRQ_Msk /*!<Transmit Mailbox Request */
lypinator 0:bb348c97df44 2280 #define CAN_TI0R_RTR_Pos (1U)
lypinator 0:bb348c97df44 2281 #define CAN_TI0R_RTR_Msk (0x1U << CAN_TI0R_RTR_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 2282 #define CAN_TI0R_RTR CAN_TI0R_RTR_Msk /*!<Remote Transmission Request */
lypinator 0:bb348c97df44 2283 #define CAN_TI0R_IDE_Pos (2U)
lypinator 0:bb348c97df44 2284 #define CAN_TI0R_IDE_Msk (0x1U << CAN_TI0R_IDE_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 2285 #define CAN_TI0R_IDE CAN_TI0R_IDE_Msk /*!<Identifier Extension */
lypinator 0:bb348c97df44 2286 #define CAN_TI0R_EXID_Pos (3U)
lypinator 0:bb348c97df44 2287 #define CAN_TI0R_EXID_Msk (0x3FFFFU << CAN_TI0R_EXID_Pos) /*!< 0x001FFFF8 */
lypinator 0:bb348c97df44 2288 #define CAN_TI0R_EXID CAN_TI0R_EXID_Msk /*!<Extended Identifier */
lypinator 0:bb348c97df44 2289 #define CAN_TI0R_STID_Pos (21U)
lypinator 0:bb348c97df44 2290 #define CAN_TI0R_STID_Msk (0x7FFU << CAN_TI0R_STID_Pos) /*!< 0xFFE00000 */
lypinator 0:bb348c97df44 2291 #define CAN_TI0R_STID CAN_TI0R_STID_Msk /*!<Standard Identifier or Extended Identifier */
lypinator 0:bb348c97df44 2292
lypinator 0:bb348c97df44 2293 /****************** Bit definition for CAN_TDT0R register *******************/
lypinator 0:bb348c97df44 2294 #define CAN_TDT0R_DLC_Pos (0U)
lypinator 0:bb348c97df44 2295 #define CAN_TDT0R_DLC_Msk (0xFU << CAN_TDT0R_DLC_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 2296 #define CAN_TDT0R_DLC CAN_TDT0R_DLC_Msk /*!<Data Length Code */
lypinator 0:bb348c97df44 2297 #define CAN_TDT0R_TGT_Pos (8U)
lypinator 0:bb348c97df44 2298 #define CAN_TDT0R_TGT_Msk (0x1U << CAN_TDT0R_TGT_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 2299 #define CAN_TDT0R_TGT CAN_TDT0R_TGT_Msk /*!<Transmit Global Time */
lypinator 0:bb348c97df44 2300 #define CAN_TDT0R_TIME_Pos (16U)
lypinator 0:bb348c97df44 2301 #define CAN_TDT0R_TIME_Msk (0xFFFFU << CAN_TDT0R_TIME_Pos) /*!< 0xFFFF0000 */
lypinator 0:bb348c97df44 2302 #define CAN_TDT0R_TIME CAN_TDT0R_TIME_Msk /*!<Message Time Stamp */
lypinator 0:bb348c97df44 2303
lypinator 0:bb348c97df44 2304 /****************** Bit definition for CAN_TDL0R register *******************/
lypinator 0:bb348c97df44 2305 #define CAN_TDL0R_DATA0_Pos (0U)
lypinator 0:bb348c97df44 2306 #define CAN_TDL0R_DATA0_Msk (0xFFU << CAN_TDL0R_DATA0_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 2307 #define CAN_TDL0R_DATA0 CAN_TDL0R_DATA0_Msk /*!<Data byte 0 */
lypinator 0:bb348c97df44 2308 #define CAN_TDL0R_DATA1_Pos (8U)
lypinator 0:bb348c97df44 2309 #define CAN_TDL0R_DATA1_Msk (0xFFU << CAN_TDL0R_DATA1_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 2310 #define CAN_TDL0R_DATA1 CAN_TDL0R_DATA1_Msk /*!<Data byte 1 */
lypinator 0:bb348c97df44 2311 #define CAN_TDL0R_DATA2_Pos (16U)
lypinator 0:bb348c97df44 2312 #define CAN_TDL0R_DATA2_Msk (0xFFU << CAN_TDL0R_DATA2_Pos) /*!< 0x00FF0000 */
lypinator 0:bb348c97df44 2313 #define CAN_TDL0R_DATA2 CAN_TDL0R_DATA2_Msk /*!<Data byte 2 */
lypinator 0:bb348c97df44 2314 #define CAN_TDL0R_DATA3_Pos (24U)
lypinator 0:bb348c97df44 2315 #define CAN_TDL0R_DATA3_Msk (0xFFU << CAN_TDL0R_DATA3_Pos) /*!< 0xFF000000 */
lypinator 0:bb348c97df44 2316 #define CAN_TDL0R_DATA3 CAN_TDL0R_DATA3_Msk /*!<Data byte 3 */
lypinator 0:bb348c97df44 2317
lypinator 0:bb348c97df44 2318 /****************** Bit definition for CAN_TDH0R register *******************/
lypinator 0:bb348c97df44 2319 #define CAN_TDH0R_DATA4_Pos (0U)
lypinator 0:bb348c97df44 2320 #define CAN_TDH0R_DATA4_Msk (0xFFU << CAN_TDH0R_DATA4_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 2321 #define CAN_TDH0R_DATA4 CAN_TDH0R_DATA4_Msk /*!<Data byte 4 */
lypinator 0:bb348c97df44 2322 #define CAN_TDH0R_DATA5_Pos (8U)
lypinator 0:bb348c97df44 2323 #define CAN_TDH0R_DATA5_Msk (0xFFU << CAN_TDH0R_DATA5_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 2324 #define CAN_TDH0R_DATA5 CAN_TDH0R_DATA5_Msk /*!<Data byte 5 */
lypinator 0:bb348c97df44 2325 #define CAN_TDH0R_DATA6_Pos (16U)
lypinator 0:bb348c97df44 2326 #define CAN_TDH0R_DATA6_Msk (0xFFU << CAN_TDH0R_DATA6_Pos) /*!< 0x00FF0000 */
lypinator 0:bb348c97df44 2327 #define CAN_TDH0R_DATA6 CAN_TDH0R_DATA6_Msk /*!<Data byte 6 */
lypinator 0:bb348c97df44 2328 #define CAN_TDH0R_DATA7_Pos (24U)
lypinator 0:bb348c97df44 2329 #define CAN_TDH0R_DATA7_Msk (0xFFU << CAN_TDH0R_DATA7_Pos) /*!< 0xFF000000 */
lypinator 0:bb348c97df44 2330 #define CAN_TDH0R_DATA7 CAN_TDH0R_DATA7_Msk /*!<Data byte 7 */
lypinator 0:bb348c97df44 2331
lypinator 0:bb348c97df44 2332 /******************* Bit definition for CAN_TI1R register *******************/
lypinator 0:bb348c97df44 2333 #define CAN_TI1R_TXRQ_Pos (0U)
lypinator 0:bb348c97df44 2334 #define CAN_TI1R_TXRQ_Msk (0x1U << CAN_TI1R_TXRQ_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 2335 #define CAN_TI1R_TXRQ CAN_TI1R_TXRQ_Msk /*!<Transmit Mailbox Request */
lypinator 0:bb348c97df44 2336 #define CAN_TI1R_RTR_Pos (1U)
lypinator 0:bb348c97df44 2337 #define CAN_TI1R_RTR_Msk (0x1U << CAN_TI1R_RTR_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 2338 #define CAN_TI1R_RTR CAN_TI1R_RTR_Msk /*!<Remote Transmission Request */
lypinator 0:bb348c97df44 2339 #define CAN_TI1R_IDE_Pos (2U)
lypinator 0:bb348c97df44 2340 #define CAN_TI1R_IDE_Msk (0x1U << CAN_TI1R_IDE_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 2341 #define CAN_TI1R_IDE CAN_TI1R_IDE_Msk /*!<Identifier Extension */
lypinator 0:bb348c97df44 2342 #define CAN_TI1R_EXID_Pos (3U)
lypinator 0:bb348c97df44 2343 #define CAN_TI1R_EXID_Msk (0x3FFFFU << CAN_TI1R_EXID_Pos) /*!< 0x001FFFF8 */
lypinator 0:bb348c97df44 2344 #define CAN_TI1R_EXID CAN_TI1R_EXID_Msk /*!<Extended Identifier */
lypinator 0:bb348c97df44 2345 #define CAN_TI1R_STID_Pos (21U)
lypinator 0:bb348c97df44 2346 #define CAN_TI1R_STID_Msk (0x7FFU << CAN_TI1R_STID_Pos) /*!< 0xFFE00000 */
lypinator 0:bb348c97df44 2347 #define CAN_TI1R_STID CAN_TI1R_STID_Msk /*!<Standard Identifier or Extended Identifier */
lypinator 0:bb348c97df44 2348
lypinator 0:bb348c97df44 2349 /******************* Bit definition for CAN_TDT1R register ******************/
lypinator 0:bb348c97df44 2350 #define CAN_TDT1R_DLC_Pos (0U)
lypinator 0:bb348c97df44 2351 #define CAN_TDT1R_DLC_Msk (0xFU << CAN_TDT1R_DLC_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 2352 #define CAN_TDT1R_DLC CAN_TDT1R_DLC_Msk /*!<Data Length Code */
lypinator 0:bb348c97df44 2353 #define CAN_TDT1R_TGT_Pos (8U)
lypinator 0:bb348c97df44 2354 #define CAN_TDT1R_TGT_Msk (0x1U << CAN_TDT1R_TGT_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 2355 #define CAN_TDT1R_TGT CAN_TDT1R_TGT_Msk /*!<Transmit Global Time */
lypinator 0:bb348c97df44 2356 #define CAN_TDT1R_TIME_Pos (16U)
lypinator 0:bb348c97df44 2357 #define CAN_TDT1R_TIME_Msk (0xFFFFU << CAN_TDT1R_TIME_Pos) /*!< 0xFFFF0000 */
lypinator 0:bb348c97df44 2358 #define CAN_TDT1R_TIME CAN_TDT1R_TIME_Msk /*!<Message Time Stamp */
lypinator 0:bb348c97df44 2359
lypinator 0:bb348c97df44 2360 /******************* Bit definition for CAN_TDL1R register ******************/
lypinator 0:bb348c97df44 2361 #define CAN_TDL1R_DATA0_Pos (0U)
lypinator 0:bb348c97df44 2362 #define CAN_TDL1R_DATA0_Msk (0xFFU << CAN_TDL1R_DATA0_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 2363 #define CAN_TDL1R_DATA0 CAN_TDL1R_DATA0_Msk /*!<Data byte 0 */
lypinator 0:bb348c97df44 2364 #define CAN_TDL1R_DATA1_Pos (8U)
lypinator 0:bb348c97df44 2365 #define CAN_TDL1R_DATA1_Msk (0xFFU << CAN_TDL1R_DATA1_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 2366 #define CAN_TDL1R_DATA1 CAN_TDL1R_DATA1_Msk /*!<Data byte 1 */
lypinator 0:bb348c97df44 2367 #define CAN_TDL1R_DATA2_Pos (16U)
lypinator 0:bb348c97df44 2368 #define CAN_TDL1R_DATA2_Msk (0xFFU << CAN_TDL1R_DATA2_Pos) /*!< 0x00FF0000 */
lypinator 0:bb348c97df44 2369 #define CAN_TDL1R_DATA2 CAN_TDL1R_DATA2_Msk /*!<Data byte 2 */
lypinator 0:bb348c97df44 2370 #define CAN_TDL1R_DATA3_Pos (24U)
lypinator 0:bb348c97df44 2371 #define CAN_TDL1R_DATA3_Msk (0xFFU << CAN_TDL1R_DATA3_Pos) /*!< 0xFF000000 */
lypinator 0:bb348c97df44 2372 #define CAN_TDL1R_DATA3 CAN_TDL1R_DATA3_Msk /*!<Data byte 3 */
lypinator 0:bb348c97df44 2373
lypinator 0:bb348c97df44 2374 /******************* Bit definition for CAN_TDH1R register ******************/
lypinator 0:bb348c97df44 2375 #define CAN_TDH1R_DATA4_Pos (0U)
lypinator 0:bb348c97df44 2376 #define CAN_TDH1R_DATA4_Msk (0xFFU << CAN_TDH1R_DATA4_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 2377 #define CAN_TDH1R_DATA4 CAN_TDH1R_DATA4_Msk /*!<Data byte 4 */
lypinator 0:bb348c97df44 2378 #define CAN_TDH1R_DATA5_Pos (8U)
lypinator 0:bb348c97df44 2379 #define CAN_TDH1R_DATA5_Msk (0xFFU << CAN_TDH1R_DATA5_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 2380 #define CAN_TDH1R_DATA5 CAN_TDH1R_DATA5_Msk /*!<Data byte 5 */
lypinator 0:bb348c97df44 2381 #define CAN_TDH1R_DATA6_Pos (16U)
lypinator 0:bb348c97df44 2382 #define CAN_TDH1R_DATA6_Msk (0xFFU << CAN_TDH1R_DATA6_Pos) /*!< 0x00FF0000 */
lypinator 0:bb348c97df44 2383 #define CAN_TDH1R_DATA6 CAN_TDH1R_DATA6_Msk /*!<Data byte 6 */
lypinator 0:bb348c97df44 2384 #define CAN_TDH1R_DATA7_Pos (24U)
lypinator 0:bb348c97df44 2385 #define CAN_TDH1R_DATA7_Msk (0xFFU << CAN_TDH1R_DATA7_Pos) /*!< 0xFF000000 */
lypinator 0:bb348c97df44 2386 #define CAN_TDH1R_DATA7 CAN_TDH1R_DATA7_Msk /*!<Data byte 7 */
lypinator 0:bb348c97df44 2387
lypinator 0:bb348c97df44 2388 /******************* Bit definition for CAN_TI2R register *******************/
lypinator 0:bb348c97df44 2389 #define CAN_TI2R_TXRQ_Pos (0U)
lypinator 0:bb348c97df44 2390 #define CAN_TI2R_TXRQ_Msk (0x1U << CAN_TI2R_TXRQ_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 2391 #define CAN_TI2R_TXRQ CAN_TI2R_TXRQ_Msk /*!<Transmit Mailbox Request */
lypinator 0:bb348c97df44 2392 #define CAN_TI2R_RTR_Pos (1U)
lypinator 0:bb348c97df44 2393 #define CAN_TI2R_RTR_Msk (0x1U << CAN_TI2R_RTR_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 2394 #define CAN_TI2R_RTR CAN_TI2R_RTR_Msk /*!<Remote Transmission Request */
lypinator 0:bb348c97df44 2395 #define CAN_TI2R_IDE_Pos (2U)
lypinator 0:bb348c97df44 2396 #define CAN_TI2R_IDE_Msk (0x1U << CAN_TI2R_IDE_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 2397 #define CAN_TI2R_IDE CAN_TI2R_IDE_Msk /*!<Identifier Extension */
lypinator 0:bb348c97df44 2398 #define CAN_TI2R_EXID_Pos (3U)
lypinator 0:bb348c97df44 2399 #define CAN_TI2R_EXID_Msk (0x3FFFFU << CAN_TI2R_EXID_Pos) /*!< 0x001FFFF8 */
lypinator 0:bb348c97df44 2400 #define CAN_TI2R_EXID CAN_TI2R_EXID_Msk /*!<Extended identifier */
lypinator 0:bb348c97df44 2401 #define CAN_TI2R_STID_Pos (21U)
lypinator 0:bb348c97df44 2402 #define CAN_TI2R_STID_Msk (0x7FFU << CAN_TI2R_STID_Pos) /*!< 0xFFE00000 */
lypinator 0:bb348c97df44 2403 #define CAN_TI2R_STID CAN_TI2R_STID_Msk /*!<Standard Identifier or Extended Identifier */
lypinator 0:bb348c97df44 2404
lypinator 0:bb348c97df44 2405 /******************* Bit definition for CAN_TDT2R register ******************/
lypinator 0:bb348c97df44 2406 #define CAN_TDT2R_DLC_Pos (0U)
lypinator 0:bb348c97df44 2407 #define CAN_TDT2R_DLC_Msk (0xFU << CAN_TDT2R_DLC_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 2408 #define CAN_TDT2R_DLC CAN_TDT2R_DLC_Msk /*!<Data Length Code */
lypinator 0:bb348c97df44 2409 #define CAN_TDT2R_TGT_Pos (8U)
lypinator 0:bb348c97df44 2410 #define CAN_TDT2R_TGT_Msk (0x1U << CAN_TDT2R_TGT_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 2411 #define CAN_TDT2R_TGT CAN_TDT2R_TGT_Msk /*!<Transmit Global Time */
lypinator 0:bb348c97df44 2412 #define CAN_TDT2R_TIME_Pos (16U)
lypinator 0:bb348c97df44 2413 #define CAN_TDT2R_TIME_Msk (0xFFFFU << CAN_TDT2R_TIME_Pos) /*!< 0xFFFF0000 */
lypinator 0:bb348c97df44 2414 #define CAN_TDT2R_TIME CAN_TDT2R_TIME_Msk /*!<Message Time Stamp */
lypinator 0:bb348c97df44 2415
lypinator 0:bb348c97df44 2416 /******************* Bit definition for CAN_TDL2R register ******************/
lypinator 0:bb348c97df44 2417 #define CAN_TDL2R_DATA0_Pos (0U)
lypinator 0:bb348c97df44 2418 #define CAN_TDL2R_DATA0_Msk (0xFFU << CAN_TDL2R_DATA0_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 2419 #define CAN_TDL2R_DATA0 CAN_TDL2R_DATA0_Msk /*!<Data byte 0 */
lypinator 0:bb348c97df44 2420 #define CAN_TDL2R_DATA1_Pos (8U)
lypinator 0:bb348c97df44 2421 #define CAN_TDL2R_DATA1_Msk (0xFFU << CAN_TDL2R_DATA1_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 2422 #define CAN_TDL2R_DATA1 CAN_TDL2R_DATA1_Msk /*!<Data byte 1 */
lypinator 0:bb348c97df44 2423 #define CAN_TDL2R_DATA2_Pos (16U)
lypinator 0:bb348c97df44 2424 #define CAN_TDL2R_DATA2_Msk (0xFFU << CAN_TDL2R_DATA2_Pos) /*!< 0x00FF0000 */
lypinator 0:bb348c97df44 2425 #define CAN_TDL2R_DATA2 CAN_TDL2R_DATA2_Msk /*!<Data byte 2 */
lypinator 0:bb348c97df44 2426 #define CAN_TDL2R_DATA3_Pos (24U)
lypinator 0:bb348c97df44 2427 #define CAN_TDL2R_DATA3_Msk (0xFFU << CAN_TDL2R_DATA3_Pos) /*!< 0xFF000000 */
lypinator 0:bb348c97df44 2428 #define CAN_TDL2R_DATA3 CAN_TDL2R_DATA3_Msk /*!<Data byte 3 */
lypinator 0:bb348c97df44 2429
lypinator 0:bb348c97df44 2430 /******************* Bit definition for CAN_TDH2R register ******************/
lypinator 0:bb348c97df44 2431 #define CAN_TDH2R_DATA4_Pos (0U)
lypinator 0:bb348c97df44 2432 #define CAN_TDH2R_DATA4_Msk (0xFFU << CAN_TDH2R_DATA4_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 2433 #define CAN_TDH2R_DATA4 CAN_TDH2R_DATA4_Msk /*!<Data byte 4 */
lypinator 0:bb348c97df44 2434 #define CAN_TDH2R_DATA5_Pos (8U)
lypinator 0:bb348c97df44 2435 #define CAN_TDH2R_DATA5_Msk (0xFFU << CAN_TDH2R_DATA5_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 2436 #define CAN_TDH2R_DATA5 CAN_TDH2R_DATA5_Msk /*!<Data byte 5 */
lypinator 0:bb348c97df44 2437 #define CAN_TDH2R_DATA6_Pos (16U)
lypinator 0:bb348c97df44 2438 #define CAN_TDH2R_DATA6_Msk (0xFFU << CAN_TDH2R_DATA6_Pos) /*!< 0x00FF0000 */
lypinator 0:bb348c97df44 2439 #define CAN_TDH2R_DATA6 CAN_TDH2R_DATA6_Msk /*!<Data byte 6 */
lypinator 0:bb348c97df44 2440 #define CAN_TDH2R_DATA7_Pos (24U)
lypinator 0:bb348c97df44 2441 #define CAN_TDH2R_DATA7_Msk (0xFFU << CAN_TDH2R_DATA7_Pos) /*!< 0xFF000000 */
lypinator 0:bb348c97df44 2442 #define CAN_TDH2R_DATA7 CAN_TDH2R_DATA7_Msk /*!<Data byte 7 */
lypinator 0:bb348c97df44 2443
lypinator 0:bb348c97df44 2444 /******************* Bit definition for CAN_RI0R register *******************/
lypinator 0:bb348c97df44 2445 #define CAN_RI0R_RTR_Pos (1U)
lypinator 0:bb348c97df44 2446 #define CAN_RI0R_RTR_Msk (0x1U << CAN_RI0R_RTR_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 2447 #define CAN_RI0R_RTR CAN_RI0R_RTR_Msk /*!<Remote Transmission Request */
lypinator 0:bb348c97df44 2448 #define CAN_RI0R_IDE_Pos (2U)
lypinator 0:bb348c97df44 2449 #define CAN_RI0R_IDE_Msk (0x1U << CAN_RI0R_IDE_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 2450 #define CAN_RI0R_IDE CAN_RI0R_IDE_Msk /*!<Identifier Extension */
lypinator 0:bb348c97df44 2451 #define CAN_RI0R_EXID_Pos (3U)
lypinator 0:bb348c97df44 2452 #define CAN_RI0R_EXID_Msk (0x3FFFFU << CAN_RI0R_EXID_Pos) /*!< 0x001FFFF8 */
lypinator 0:bb348c97df44 2453 #define CAN_RI0R_EXID CAN_RI0R_EXID_Msk /*!<Extended Identifier */
lypinator 0:bb348c97df44 2454 #define CAN_RI0R_STID_Pos (21U)
lypinator 0:bb348c97df44 2455 #define CAN_RI0R_STID_Msk (0x7FFU << CAN_RI0R_STID_Pos) /*!< 0xFFE00000 */
lypinator 0:bb348c97df44 2456 #define CAN_RI0R_STID CAN_RI0R_STID_Msk /*!<Standard Identifier or Extended Identifier */
lypinator 0:bb348c97df44 2457
lypinator 0:bb348c97df44 2458 /******************* Bit definition for CAN_RDT0R register ******************/
lypinator 0:bb348c97df44 2459 #define CAN_RDT0R_DLC_Pos (0U)
lypinator 0:bb348c97df44 2460 #define CAN_RDT0R_DLC_Msk (0xFU << CAN_RDT0R_DLC_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 2461 #define CAN_RDT0R_DLC CAN_RDT0R_DLC_Msk /*!<Data Length Code */
lypinator 0:bb348c97df44 2462 #define CAN_RDT0R_FMI_Pos (8U)
lypinator 0:bb348c97df44 2463 #define CAN_RDT0R_FMI_Msk (0xFFU << CAN_RDT0R_FMI_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 2464 #define CAN_RDT0R_FMI CAN_RDT0R_FMI_Msk /*!<Filter Match Index */
lypinator 0:bb348c97df44 2465 #define CAN_RDT0R_TIME_Pos (16U)
lypinator 0:bb348c97df44 2466 #define CAN_RDT0R_TIME_Msk (0xFFFFU << CAN_RDT0R_TIME_Pos) /*!< 0xFFFF0000 */
lypinator 0:bb348c97df44 2467 #define CAN_RDT0R_TIME CAN_RDT0R_TIME_Msk /*!<Message Time Stamp */
lypinator 0:bb348c97df44 2468
lypinator 0:bb348c97df44 2469 /******************* Bit definition for CAN_RDL0R register ******************/
lypinator 0:bb348c97df44 2470 #define CAN_RDL0R_DATA0_Pos (0U)
lypinator 0:bb348c97df44 2471 #define CAN_RDL0R_DATA0_Msk (0xFFU << CAN_RDL0R_DATA0_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 2472 #define CAN_RDL0R_DATA0 CAN_RDL0R_DATA0_Msk /*!<Data byte 0 */
lypinator 0:bb348c97df44 2473 #define CAN_RDL0R_DATA1_Pos (8U)
lypinator 0:bb348c97df44 2474 #define CAN_RDL0R_DATA1_Msk (0xFFU << CAN_RDL0R_DATA1_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 2475 #define CAN_RDL0R_DATA1 CAN_RDL0R_DATA1_Msk /*!<Data byte 1 */
lypinator 0:bb348c97df44 2476 #define CAN_RDL0R_DATA2_Pos (16U)
lypinator 0:bb348c97df44 2477 #define CAN_RDL0R_DATA2_Msk (0xFFU << CAN_RDL0R_DATA2_Pos) /*!< 0x00FF0000 */
lypinator 0:bb348c97df44 2478 #define CAN_RDL0R_DATA2 CAN_RDL0R_DATA2_Msk /*!<Data byte 2 */
lypinator 0:bb348c97df44 2479 #define CAN_RDL0R_DATA3_Pos (24U)
lypinator 0:bb348c97df44 2480 #define CAN_RDL0R_DATA3_Msk (0xFFU << CAN_RDL0R_DATA3_Pos) /*!< 0xFF000000 */
lypinator 0:bb348c97df44 2481 #define CAN_RDL0R_DATA3 CAN_RDL0R_DATA3_Msk /*!<Data byte 3 */
lypinator 0:bb348c97df44 2482
lypinator 0:bb348c97df44 2483 /******************* Bit definition for CAN_RDH0R register ******************/
lypinator 0:bb348c97df44 2484 #define CAN_RDH0R_DATA4_Pos (0U)
lypinator 0:bb348c97df44 2485 #define CAN_RDH0R_DATA4_Msk (0xFFU << CAN_RDH0R_DATA4_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 2486 #define CAN_RDH0R_DATA4 CAN_RDH0R_DATA4_Msk /*!<Data byte 4 */
lypinator 0:bb348c97df44 2487 #define CAN_RDH0R_DATA5_Pos (8U)
lypinator 0:bb348c97df44 2488 #define CAN_RDH0R_DATA5_Msk (0xFFU << CAN_RDH0R_DATA5_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 2489 #define CAN_RDH0R_DATA5 CAN_RDH0R_DATA5_Msk /*!<Data byte 5 */
lypinator 0:bb348c97df44 2490 #define CAN_RDH0R_DATA6_Pos (16U)
lypinator 0:bb348c97df44 2491 #define CAN_RDH0R_DATA6_Msk (0xFFU << CAN_RDH0R_DATA6_Pos) /*!< 0x00FF0000 */
lypinator 0:bb348c97df44 2492 #define CAN_RDH0R_DATA6 CAN_RDH0R_DATA6_Msk /*!<Data byte 6 */
lypinator 0:bb348c97df44 2493 #define CAN_RDH0R_DATA7_Pos (24U)
lypinator 0:bb348c97df44 2494 #define CAN_RDH0R_DATA7_Msk (0xFFU << CAN_RDH0R_DATA7_Pos) /*!< 0xFF000000 */
lypinator 0:bb348c97df44 2495 #define CAN_RDH0R_DATA7 CAN_RDH0R_DATA7_Msk /*!<Data byte 7 */
lypinator 0:bb348c97df44 2496
lypinator 0:bb348c97df44 2497 /******************* Bit definition for CAN_RI1R register *******************/
lypinator 0:bb348c97df44 2498 #define CAN_RI1R_RTR_Pos (1U)
lypinator 0:bb348c97df44 2499 #define CAN_RI1R_RTR_Msk (0x1U << CAN_RI1R_RTR_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 2500 #define CAN_RI1R_RTR CAN_RI1R_RTR_Msk /*!<Remote Transmission Request */
lypinator 0:bb348c97df44 2501 #define CAN_RI1R_IDE_Pos (2U)
lypinator 0:bb348c97df44 2502 #define CAN_RI1R_IDE_Msk (0x1U << CAN_RI1R_IDE_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 2503 #define CAN_RI1R_IDE CAN_RI1R_IDE_Msk /*!<Identifier Extension */
lypinator 0:bb348c97df44 2504 #define CAN_RI1R_EXID_Pos (3U)
lypinator 0:bb348c97df44 2505 #define CAN_RI1R_EXID_Msk (0x3FFFFU << CAN_RI1R_EXID_Pos) /*!< 0x001FFFF8 */
lypinator 0:bb348c97df44 2506 #define CAN_RI1R_EXID CAN_RI1R_EXID_Msk /*!<Extended identifier */
lypinator 0:bb348c97df44 2507 #define CAN_RI1R_STID_Pos (21U)
lypinator 0:bb348c97df44 2508 #define CAN_RI1R_STID_Msk (0x7FFU << CAN_RI1R_STID_Pos) /*!< 0xFFE00000 */
lypinator 0:bb348c97df44 2509 #define CAN_RI1R_STID CAN_RI1R_STID_Msk /*!<Standard Identifier or Extended Identifier */
lypinator 0:bb348c97df44 2510
lypinator 0:bb348c97df44 2511 /******************* Bit definition for CAN_RDT1R register ******************/
lypinator 0:bb348c97df44 2512 #define CAN_RDT1R_DLC_Pos (0U)
lypinator 0:bb348c97df44 2513 #define CAN_RDT1R_DLC_Msk (0xFU << CAN_RDT1R_DLC_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 2514 #define CAN_RDT1R_DLC CAN_RDT1R_DLC_Msk /*!<Data Length Code */
lypinator 0:bb348c97df44 2515 #define CAN_RDT1R_FMI_Pos (8U)
lypinator 0:bb348c97df44 2516 #define CAN_RDT1R_FMI_Msk (0xFFU << CAN_RDT1R_FMI_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 2517 #define CAN_RDT1R_FMI CAN_RDT1R_FMI_Msk /*!<Filter Match Index */
lypinator 0:bb348c97df44 2518 #define CAN_RDT1R_TIME_Pos (16U)
lypinator 0:bb348c97df44 2519 #define CAN_RDT1R_TIME_Msk (0xFFFFU << CAN_RDT1R_TIME_Pos) /*!< 0xFFFF0000 */
lypinator 0:bb348c97df44 2520 #define CAN_RDT1R_TIME CAN_RDT1R_TIME_Msk /*!<Message Time Stamp */
lypinator 0:bb348c97df44 2521
lypinator 0:bb348c97df44 2522 /******************* Bit definition for CAN_RDL1R register ******************/
lypinator 0:bb348c97df44 2523 #define CAN_RDL1R_DATA0_Pos (0U)
lypinator 0:bb348c97df44 2524 #define CAN_RDL1R_DATA0_Msk (0xFFU << CAN_RDL1R_DATA0_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 2525 #define CAN_RDL1R_DATA0 CAN_RDL1R_DATA0_Msk /*!<Data byte 0 */
lypinator 0:bb348c97df44 2526 #define CAN_RDL1R_DATA1_Pos (8U)
lypinator 0:bb348c97df44 2527 #define CAN_RDL1R_DATA1_Msk (0xFFU << CAN_RDL1R_DATA1_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 2528 #define CAN_RDL1R_DATA1 CAN_RDL1R_DATA1_Msk /*!<Data byte 1 */
lypinator 0:bb348c97df44 2529 #define CAN_RDL1R_DATA2_Pos (16U)
lypinator 0:bb348c97df44 2530 #define CAN_RDL1R_DATA2_Msk (0xFFU << CAN_RDL1R_DATA2_Pos) /*!< 0x00FF0000 */
lypinator 0:bb348c97df44 2531 #define CAN_RDL1R_DATA2 CAN_RDL1R_DATA2_Msk /*!<Data byte 2 */
lypinator 0:bb348c97df44 2532 #define CAN_RDL1R_DATA3_Pos (24U)
lypinator 0:bb348c97df44 2533 #define CAN_RDL1R_DATA3_Msk (0xFFU << CAN_RDL1R_DATA3_Pos) /*!< 0xFF000000 */
lypinator 0:bb348c97df44 2534 #define CAN_RDL1R_DATA3 CAN_RDL1R_DATA3_Msk /*!<Data byte 3 */
lypinator 0:bb348c97df44 2535
lypinator 0:bb348c97df44 2536 /******************* Bit definition for CAN_RDH1R register ******************/
lypinator 0:bb348c97df44 2537 #define CAN_RDH1R_DATA4_Pos (0U)
lypinator 0:bb348c97df44 2538 #define CAN_RDH1R_DATA4_Msk (0xFFU << CAN_RDH1R_DATA4_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 2539 #define CAN_RDH1R_DATA4 CAN_RDH1R_DATA4_Msk /*!<Data byte 4 */
lypinator 0:bb348c97df44 2540 #define CAN_RDH1R_DATA5_Pos (8U)
lypinator 0:bb348c97df44 2541 #define CAN_RDH1R_DATA5_Msk (0xFFU << CAN_RDH1R_DATA5_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 2542 #define CAN_RDH1R_DATA5 CAN_RDH1R_DATA5_Msk /*!<Data byte 5 */
lypinator 0:bb348c97df44 2543 #define CAN_RDH1R_DATA6_Pos (16U)
lypinator 0:bb348c97df44 2544 #define CAN_RDH1R_DATA6_Msk (0xFFU << CAN_RDH1R_DATA6_Pos) /*!< 0x00FF0000 */
lypinator 0:bb348c97df44 2545 #define CAN_RDH1R_DATA6 CAN_RDH1R_DATA6_Msk /*!<Data byte 6 */
lypinator 0:bb348c97df44 2546 #define CAN_RDH1R_DATA7_Pos (24U)
lypinator 0:bb348c97df44 2547 #define CAN_RDH1R_DATA7_Msk (0xFFU << CAN_RDH1R_DATA7_Pos) /*!< 0xFF000000 */
lypinator 0:bb348c97df44 2548 #define CAN_RDH1R_DATA7 CAN_RDH1R_DATA7_Msk /*!<Data byte 7 */
lypinator 0:bb348c97df44 2549
lypinator 0:bb348c97df44 2550 /*!<CAN filter registers */
lypinator 0:bb348c97df44 2551 /******************* Bit definition for CAN_FMR register ********************/
lypinator 0:bb348c97df44 2552 #define CAN_FMR_FINIT_Pos (0U)
lypinator 0:bb348c97df44 2553 #define CAN_FMR_FINIT_Msk (0x1U << CAN_FMR_FINIT_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 2554 #define CAN_FMR_FINIT CAN_FMR_FINIT_Msk /*!<Filter Init Mode */
lypinator 0:bb348c97df44 2555 #define CAN_FMR_CAN2SB_Pos (8U)
lypinator 0:bb348c97df44 2556 #define CAN_FMR_CAN2SB_Msk (0x3FU << CAN_FMR_CAN2SB_Pos) /*!< 0x00003F00 */
lypinator 0:bb348c97df44 2557 #define CAN_FMR_CAN2SB CAN_FMR_CAN2SB_Msk /*!<CAN2 start bank */
lypinator 0:bb348c97df44 2558
lypinator 0:bb348c97df44 2559 /******************* Bit definition for CAN_FM1R register *******************/
lypinator 0:bb348c97df44 2560 #define CAN_FM1R_FBM_Pos (0U)
lypinator 0:bb348c97df44 2561 #define CAN_FM1R_FBM_Msk (0xFFFFFFFU << CAN_FM1R_FBM_Pos) /*!< 0x0FFFFFFF */
lypinator 0:bb348c97df44 2562 #define CAN_FM1R_FBM CAN_FM1R_FBM_Msk /*!<Filter Mode */
lypinator 0:bb348c97df44 2563 #define CAN_FM1R_FBM0_Pos (0U)
lypinator 0:bb348c97df44 2564 #define CAN_FM1R_FBM0_Msk (0x1U << CAN_FM1R_FBM0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 2565 #define CAN_FM1R_FBM0 CAN_FM1R_FBM0_Msk /*!<Filter Init Mode bit 0 */
lypinator 0:bb348c97df44 2566 #define CAN_FM1R_FBM1_Pos (1U)
lypinator 0:bb348c97df44 2567 #define CAN_FM1R_FBM1_Msk (0x1U << CAN_FM1R_FBM1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 2568 #define CAN_FM1R_FBM1 CAN_FM1R_FBM1_Msk /*!<Filter Init Mode bit 1 */
lypinator 0:bb348c97df44 2569 #define CAN_FM1R_FBM2_Pos (2U)
lypinator 0:bb348c97df44 2570 #define CAN_FM1R_FBM2_Msk (0x1U << CAN_FM1R_FBM2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 2571 #define CAN_FM1R_FBM2 CAN_FM1R_FBM2_Msk /*!<Filter Init Mode bit 2 */
lypinator 0:bb348c97df44 2572 #define CAN_FM1R_FBM3_Pos (3U)
lypinator 0:bb348c97df44 2573 #define CAN_FM1R_FBM3_Msk (0x1U << CAN_FM1R_FBM3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 2574 #define CAN_FM1R_FBM3 CAN_FM1R_FBM3_Msk /*!<Filter Init Mode bit 3 */
lypinator 0:bb348c97df44 2575 #define CAN_FM1R_FBM4_Pos (4U)
lypinator 0:bb348c97df44 2576 #define CAN_FM1R_FBM4_Msk (0x1U << CAN_FM1R_FBM4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 2577 #define CAN_FM1R_FBM4 CAN_FM1R_FBM4_Msk /*!<Filter Init Mode bit 4 */
lypinator 0:bb348c97df44 2578 #define CAN_FM1R_FBM5_Pos (5U)
lypinator 0:bb348c97df44 2579 #define CAN_FM1R_FBM5_Msk (0x1U << CAN_FM1R_FBM5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 2580 #define CAN_FM1R_FBM5 CAN_FM1R_FBM5_Msk /*!<Filter Init Mode bit 5 */
lypinator 0:bb348c97df44 2581 #define CAN_FM1R_FBM6_Pos (6U)
lypinator 0:bb348c97df44 2582 #define CAN_FM1R_FBM6_Msk (0x1U << CAN_FM1R_FBM6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 2583 #define CAN_FM1R_FBM6 CAN_FM1R_FBM6_Msk /*!<Filter Init Mode bit 6 */
lypinator 0:bb348c97df44 2584 #define CAN_FM1R_FBM7_Pos (7U)
lypinator 0:bb348c97df44 2585 #define CAN_FM1R_FBM7_Msk (0x1U << CAN_FM1R_FBM7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 2586 #define CAN_FM1R_FBM7 CAN_FM1R_FBM7_Msk /*!<Filter Init Mode bit 7 */
lypinator 0:bb348c97df44 2587 #define CAN_FM1R_FBM8_Pos (8U)
lypinator 0:bb348c97df44 2588 #define CAN_FM1R_FBM8_Msk (0x1U << CAN_FM1R_FBM8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 2589 #define CAN_FM1R_FBM8 CAN_FM1R_FBM8_Msk /*!<Filter Init Mode bit 8 */
lypinator 0:bb348c97df44 2590 #define CAN_FM1R_FBM9_Pos (9U)
lypinator 0:bb348c97df44 2591 #define CAN_FM1R_FBM9_Msk (0x1U << CAN_FM1R_FBM9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 2592 #define CAN_FM1R_FBM9 CAN_FM1R_FBM9_Msk /*!<Filter Init Mode bit 9 */
lypinator 0:bb348c97df44 2593 #define CAN_FM1R_FBM10_Pos (10U)
lypinator 0:bb348c97df44 2594 #define CAN_FM1R_FBM10_Msk (0x1U << CAN_FM1R_FBM10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 2595 #define CAN_FM1R_FBM10 CAN_FM1R_FBM10_Msk /*!<Filter Init Mode bit 10 */
lypinator 0:bb348c97df44 2596 #define CAN_FM1R_FBM11_Pos (11U)
lypinator 0:bb348c97df44 2597 #define CAN_FM1R_FBM11_Msk (0x1U << CAN_FM1R_FBM11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 2598 #define CAN_FM1R_FBM11 CAN_FM1R_FBM11_Msk /*!<Filter Init Mode bit 11 */
lypinator 0:bb348c97df44 2599 #define CAN_FM1R_FBM12_Pos (12U)
lypinator 0:bb348c97df44 2600 #define CAN_FM1R_FBM12_Msk (0x1U << CAN_FM1R_FBM12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 2601 #define CAN_FM1R_FBM12 CAN_FM1R_FBM12_Msk /*!<Filter Init Mode bit 12 */
lypinator 0:bb348c97df44 2602 #define CAN_FM1R_FBM13_Pos (13U)
lypinator 0:bb348c97df44 2603 #define CAN_FM1R_FBM13_Msk (0x1U << CAN_FM1R_FBM13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 2604 #define CAN_FM1R_FBM13 CAN_FM1R_FBM13_Msk /*!<Filter Init Mode bit 13 */
lypinator 0:bb348c97df44 2605 #define CAN_FM1R_FBM14_Pos (14U)
lypinator 0:bb348c97df44 2606 #define CAN_FM1R_FBM14_Msk (0x1U << CAN_FM1R_FBM14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 2607 #define CAN_FM1R_FBM14 CAN_FM1R_FBM14_Msk /*!<Filter Init Mode bit 14 */
lypinator 0:bb348c97df44 2608 #define CAN_FM1R_FBM15_Pos (15U)
lypinator 0:bb348c97df44 2609 #define CAN_FM1R_FBM15_Msk (0x1U << CAN_FM1R_FBM15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 2610 #define CAN_FM1R_FBM15 CAN_FM1R_FBM15_Msk /*!<Filter Init Mode bit 15 */
lypinator 0:bb348c97df44 2611 #define CAN_FM1R_FBM16_Pos (16U)
lypinator 0:bb348c97df44 2612 #define CAN_FM1R_FBM16_Msk (0x1U << CAN_FM1R_FBM16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 2613 #define CAN_FM1R_FBM16 CAN_FM1R_FBM16_Msk /*!<Filter Init Mode bit 16 */
lypinator 0:bb348c97df44 2614 #define CAN_FM1R_FBM17_Pos (17U)
lypinator 0:bb348c97df44 2615 #define CAN_FM1R_FBM17_Msk (0x1U << CAN_FM1R_FBM17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 2616 #define CAN_FM1R_FBM17 CAN_FM1R_FBM17_Msk /*!<Filter Init Mode bit 17 */
lypinator 0:bb348c97df44 2617 #define CAN_FM1R_FBM18_Pos (18U)
lypinator 0:bb348c97df44 2618 #define CAN_FM1R_FBM18_Msk (0x1U << CAN_FM1R_FBM18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 2619 #define CAN_FM1R_FBM18 CAN_FM1R_FBM18_Msk /*!<Filter Init Mode bit 18 */
lypinator 0:bb348c97df44 2620 #define CAN_FM1R_FBM19_Pos (19U)
lypinator 0:bb348c97df44 2621 #define CAN_FM1R_FBM19_Msk (0x1U << CAN_FM1R_FBM19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 2622 #define CAN_FM1R_FBM19 CAN_FM1R_FBM19_Msk /*!<Filter Init Mode bit 19 */
lypinator 0:bb348c97df44 2623 #define CAN_FM1R_FBM20_Pos (20U)
lypinator 0:bb348c97df44 2624 #define CAN_FM1R_FBM20_Msk (0x1U << CAN_FM1R_FBM20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 2625 #define CAN_FM1R_FBM20 CAN_FM1R_FBM20_Msk /*!<Filter Init Mode bit 20 */
lypinator 0:bb348c97df44 2626 #define CAN_FM1R_FBM21_Pos (21U)
lypinator 0:bb348c97df44 2627 #define CAN_FM1R_FBM21_Msk (0x1U << CAN_FM1R_FBM21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 2628 #define CAN_FM1R_FBM21 CAN_FM1R_FBM21_Msk /*!<Filter Init Mode bit 21 */
lypinator 0:bb348c97df44 2629 #define CAN_FM1R_FBM22_Pos (22U)
lypinator 0:bb348c97df44 2630 #define CAN_FM1R_FBM22_Msk (0x1U << CAN_FM1R_FBM22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 2631 #define CAN_FM1R_FBM22 CAN_FM1R_FBM22_Msk /*!<Filter Init Mode bit 22 */
lypinator 0:bb348c97df44 2632 #define CAN_FM1R_FBM23_Pos (23U)
lypinator 0:bb348c97df44 2633 #define CAN_FM1R_FBM23_Msk (0x1U << CAN_FM1R_FBM23_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 2634 #define CAN_FM1R_FBM23 CAN_FM1R_FBM23_Msk /*!<Filter Init Mode bit 23 */
lypinator 0:bb348c97df44 2635 #define CAN_FM1R_FBM24_Pos (24U)
lypinator 0:bb348c97df44 2636 #define CAN_FM1R_FBM24_Msk (0x1U << CAN_FM1R_FBM24_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 2637 #define CAN_FM1R_FBM24 CAN_FM1R_FBM24_Msk /*!<Filter Init Mode bit 24 */
lypinator 0:bb348c97df44 2638 #define CAN_FM1R_FBM25_Pos (25U)
lypinator 0:bb348c97df44 2639 #define CAN_FM1R_FBM25_Msk (0x1U << CAN_FM1R_FBM25_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 2640 #define CAN_FM1R_FBM25 CAN_FM1R_FBM25_Msk /*!<Filter Init Mode bit 25 */
lypinator 0:bb348c97df44 2641 #define CAN_FM1R_FBM26_Pos (26U)
lypinator 0:bb348c97df44 2642 #define CAN_FM1R_FBM26_Msk (0x1U << CAN_FM1R_FBM26_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 2643 #define CAN_FM1R_FBM26 CAN_FM1R_FBM26_Msk /*!<Filter Init Mode bit 26 */
lypinator 0:bb348c97df44 2644 #define CAN_FM1R_FBM27_Pos (27U)
lypinator 0:bb348c97df44 2645 #define CAN_FM1R_FBM27_Msk (0x1U << CAN_FM1R_FBM27_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 2646 #define CAN_FM1R_FBM27 CAN_FM1R_FBM27_Msk /*!<Filter Init Mode bit 27 */
lypinator 0:bb348c97df44 2647
lypinator 0:bb348c97df44 2648 /******************* Bit definition for CAN_FS1R register *******************/
lypinator 0:bb348c97df44 2649 #define CAN_FS1R_FSC_Pos (0U)
lypinator 0:bb348c97df44 2650 #define CAN_FS1R_FSC_Msk (0xFFFFFFFU << CAN_FS1R_FSC_Pos) /*!< 0x0FFFFFFF */
lypinator 0:bb348c97df44 2651 #define CAN_FS1R_FSC CAN_FS1R_FSC_Msk /*!<Filter Scale Configuration */
lypinator 0:bb348c97df44 2652 #define CAN_FS1R_FSC0_Pos (0U)
lypinator 0:bb348c97df44 2653 #define CAN_FS1R_FSC0_Msk (0x1U << CAN_FS1R_FSC0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 2654 #define CAN_FS1R_FSC0 CAN_FS1R_FSC0_Msk /*!<Filter Scale Configuration bit 0 */
lypinator 0:bb348c97df44 2655 #define CAN_FS1R_FSC1_Pos (1U)
lypinator 0:bb348c97df44 2656 #define CAN_FS1R_FSC1_Msk (0x1U << CAN_FS1R_FSC1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 2657 #define CAN_FS1R_FSC1 CAN_FS1R_FSC1_Msk /*!<Filter Scale Configuration bit 1 */
lypinator 0:bb348c97df44 2658 #define CAN_FS1R_FSC2_Pos (2U)
lypinator 0:bb348c97df44 2659 #define CAN_FS1R_FSC2_Msk (0x1U << CAN_FS1R_FSC2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 2660 #define CAN_FS1R_FSC2 CAN_FS1R_FSC2_Msk /*!<Filter Scale Configuration bit 2 */
lypinator 0:bb348c97df44 2661 #define CAN_FS1R_FSC3_Pos (3U)
lypinator 0:bb348c97df44 2662 #define CAN_FS1R_FSC3_Msk (0x1U << CAN_FS1R_FSC3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 2663 #define CAN_FS1R_FSC3 CAN_FS1R_FSC3_Msk /*!<Filter Scale Configuration bit 3 */
lypinator 0:bb348c97df44 2664 #define CAN_FS1R_FSC4_Pos (4U)
lypinator 0:bb348c97df44 2665 #define CAN_FS1R_FSC4_Msk (0x1U << CAN_FS1R_FSC4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 2666 #define CAN_FS1R_FSC4 CAN_FS1R_FSC4_Msk /*!<Filter Scale Configuration bit 4 */
lypinator 0:bb348c97df44 2667 #define CAN_FS1R_FSC5_Pos (5U)
lypinator 0:bb348c97df44 2668 #define CAN_FS1R_FSC5_Msk (0x1U << CAN_FS1R_FSC5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 2669 #define CAN_FS1R_FSC5 CAN_FS1R_FSC5_Msk /*!<Filter Scale Configuration bit 5 */
lypinator 0:bb348c97df44 2670 #define CAN_FS1R_FSC6_Pos (6U)
lypinator 0:bb348c97df44 2671 #define CAN_FS1R_FSC6_Msk (0x1U << CAN_FS1R_FSC6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 2672 #define CAN_FS1R_FSC6 CAN_FS1R_FSC6_Msk /*!<Filter Scale Configuration bit 6 */
lypinator 0:bb348c97df44 2673 #define CAN_FS1R_FSC7_Pos (7U)
lypinator 0:bb348c97df44 2674 #define CAN_FS1R_FSC7_Msk (0x1U << CAN_FS1R_FSC7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 2675 #define CAN_FS1R_FSC7 CAN_FS1R_FSC7_Msk /*!<Filter Scale Configuration bit 7 */
lypinator 0:bb348c97df44 2676 #define CAN_FS1R_FSC8_Pos (8U)
lypinator 0:bb348c97df44 2677 #define CAN_FS1R_FSC8_Msk (0x1U << CAN_FS1R_FSC8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 2678 #define CAN_FS1R_FSC8 CAN_FS1R_FSC8_Msk /*!<Filter Scale Configuration bit 8 */
lypinator 0:bb348c97df44 2679 #define CAN_FS1R_FSC9_Pos (9U)
lypinator 0:bb348c97df44 2680 #define CAN_FS1R_FSC9_Msk (0x1U << CAN_FS1R_FSC9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 2681 #define CAN_FS1R_FSC9 CAN_FS1R_FSC9_Msk /*!<Filter Scale Configuration bit 9 */
lypinator 0:bb348c97df44 2682 #define CAN_FS1R_FSC10_Pos (10U)
lypinator 0:bb348c97df44 2683 #define CAN_FS1R_FSC10_Msk (0x1U << CAN_FS1R_FSC10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 2684 #define CAN_FS1R_FSC10 CAN_FS1R_FSC10_Msk /*!<Filter Scale Configuration bit 10 */
lypinator 0:bb348c97df44 2685 #define CAN_FS1R_FSC11_Pos (11U)
lypinator 0:bb348c97df44 2686 #define CAN_FS1R_FSC11_Msk (0x1U << CAN_FS1R_FSC11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 2687 #define CAN_FS1R_FSC11 CAN_FS1R_FSC11_Msk /*!<Filter Scale Configuration bit 11 */
lypinator 0:bb348c97df44 2688 #define CAN_FS1R_FSC12_Pos (12U)
lypinator 0:bb348c97df44 2689 #define CAN_FS1R_FSC12_Msk (0x1U << CAN_FS1R_FSC12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 2690 #define CAN_FS1R_FSC12 CAN_FS1R_FSC12_Msk /*!<Filter Scale Configuration bit 12 */
lypinator 0:bb348c97df44 2691 #define CAN_FS1R_FSC13_Pos (13U)
lypinator 0:bb348c97df44 2692 #define CAN_FS1R_FSC13_Msk (0x1U << CAN_FS1R_FSC13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 2693 #define CAN_FS1R_FSC13 CAN_FS1R_FSC13_Msk /*!<Filter Scale Configuration bit 13 */
lypinator 0:bb348c97df44 2694 #define CAN_FS1R_FSC14_Pos (14U)
lypinator 0:bb348c97df44 2695 #define CAN_FS1R_FSC14_Msk (0x1U << CAN_FS1R_FSC14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 2696 #define CAN_FS1R_FSC14 CAN_FS1R_FSC14_Msk /*!<Filter Scale Configuration bit 14 */
lypinator 0:bb348c97df44 2697 #define CAN_FS1R_FSC15_Pos (15U)
lypinator 0:bb348c97df44 2698 #define CAN_FS1R_FSC15_Msk (0x1U << CAN_FS1R_FSC15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 2699 #define CAN_FS1R_FSC15 CAN_FS1R_FSC15_Msk /*!<Filter Scale Configuration bit 15 */
lypinator 0:bb348c97df44 2700 #define CAN_FS1R_FSC16_Pos (16U)
lypinator 0:bb348c97df44 2701 #define CAN_FS1R_FSC16_Msk (0x1U << CAN_FS1R_FSC16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 2702 #define CAN_FS1R_FSC16 CAN_FS1R_FSC16_Msk /*!<Filter Scale Configuration bit 16 */
lypinator 0:bb348c97df44 2703 #define CAN_FS1R_FSC17_Pos (17U)
lypinator 0:bb348c97df44 2704 #define CAN_FS1R_FSC17_Msk (0x1U << CAN_FS1R_FSC17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 2705 #define CAN_FS1R_FSC17 CAN_FS1R_FSC17_Msk /*!<Filter Scale Configuration bit 17 */
lypinator 0:bb348c97df44 2706 #define CAN_FS1R_FSC18_Pos (18U)
lypinator 0:bb348c97df44 2707 #define CAN_FS1R_FSC18_Msk (0x1U << CAN_FS1R_FSC18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 2708 #define CAN_FS1R_FSC18 CAN_FS1R_FSC18_Msk /*!<Filter Scale Configuration bit 18 */
lypinator 0:bb348c97df44 2709 #define CAN_FS1R_FSC19_Pos (19U)
lypinator 0:bb348c97df44 2710 #define CAN_FS1R_FSC19_Msk (0x1U << CAN_FS1R_FSC19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 2711 #define CAN_FS1R_FSC19 CAN_FS1R_FSC19_Msk /*!<Filter Scale Configuration bit 19 */
lypinator 0:bb348c97df44 2712 #define CAN_FS1R_FSC20_Pos (20U)
lypinator 0:bb348c97df44 2713 #define CAN_FS1R_FSC20_Msk (0x1U << CAN_FS1R_FSC20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 2714 #define CAN_FS1R_FSC20 CAN_FS1R_FSC20_Msk /*!<Filter Scale Configuration bit 20 */
lypinator 0:bb348c97df44 2715 #define CAN_FS1R_FSC21_Pos (21U)
lypinator 0:bb348c97df44 2716 #define CAN_FS1R_FSC21_Msk (0x1U << CAN_FS1R_FSC21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 2717 #define CAN_FS1R_FSC21 CAN_FS1R_FSC21_Msk /*!<Filter Scale Configuration bit 21 */
lypinator 0:bb348c97df44 2718 #define CAN_FS1R_FSC22_Pos (22U)
lypinator 0:bb348c97df44 2719 #define CAN_FS1R_FSC22_Msk (0x1U << CAN_FS1R_FSC22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 2720 #define CAN_FS1R_FSC22 CAN_FS1R_FSC22_Msk /*!<Filter Scale Configuration bit 22 */
lypinator 0:bb348c97df44 2721 #define CAN_FS1R_FSC23_Pos (23U)
lypinator 0:bb348c97df44 2722 #define CAN_FS1R_FSC23_Msk (0x1U << CAN_FS1R_FSC23_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 2723 #define CAN_FS1R_FSC23 CAN_FS1R_FSC23_Msk /*!<Filter Scale Configuration bit 23 */
lypinator 0:bb348c97df44 2724 #define CAN_FS1R_FSC24_Pos (24U)
lypinator 0:bb348c97df44 2725 #define CAN_FS1R_FSC24_Msk (0x1U << CAN_FS1R_FSC24_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 2726 #define CAN_FS1R_FSC24 CAN_FS1R_FSC24_Msk /*!<Filter Scale Configuration bit 24 */
lypinator 0:bb348c97df44 2727 #define CAN_FS1R_FSC25_Pos (25U)
lypinator 0:bb348c97df44 2728 #define CAN_FS1R_FSC25_Msk (0x1U << CAN_FS1R_FSC25_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 2729 #define CAN_FS1R_FSC25 CAN_FS1R_FSC25_Msk /*!<Filter Scale Configuration bit 25 */
lypinator 0:bb348c97df44 2730 #define CAN_FS1R_FSC26_Pos (26U)
lypinator 0:bb348c97df44 2731 #define CAN_FS1R_FSC26_Msk (0x1U << CAN_FS1R_FSC26_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 2732 #define CAN_FS1R_FSC26 CAN_FS1R_FSC26_Msk /*!<Filter Scale Configuration bit 26 */
lypinator 0:bb348c97df44 2733 #define CAN_FS1R_FSC27_Pos (27U)
lypinator 0:bb348c97df44 2734 #define CAN_FS1R_FSC27_Msk (0x1U << CAN_FS1R_FSC27_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 2735 #define CAN_FS1R_FSC27 CAN_FS1R_FSC27_Msk /*!<Filter Scale Configuration bit 27 */
lypinator 0:bb348c97df44 2736
lypinator 0:bb348c97df44 2737 /****************** Bit definition for CAN_FFA1R register *******************/
lypinator 0:bb348c97df44 2738 #define CAN_FFA1R_FFA_Pos (0U)
lypinator 0:bb348c97df44 2739 #define CAN_FFA1R_FFA_Msk (0xFFFFFFFU << CAN_FFA1R_FFA_Pos) /*!< 0x0FFFFFFF */
lypinator 0:bb348c97df44 2740 #define CAN_FFA1R_FFA CAN_FFA1R_FFA_Msk /*!<Filter FIFO Assignment */
lypinator 0:bb348c97df44 2741 #define CAN_FFA1R_FFA0_Pos (0U)
lypinator 0:bb348c97df44 2742 #define CAN_FFA1R_FFA0_Msk (0x1U << CAN_FFA1R_FFA0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 2743 #define CAN_FFA1R_FFA0 CAN_FFA1R_FFA0_Msk /*!<Filter FIFO Assignment bit 0 */
lypinator 0:bb348c97df44 2744 #define CAN_FFA1R_FFA1_Pos (1U)
lypinator 0:bb348c97df44 2745 #define CAN_FFA1R_FFA1_Msk (0x1U << CAN_FFA1R_FFA1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 2746 #define CAN_FFA1R_FFA1 CAN_FFA1R_FFA1_Msk /*!<Filter FIFO Assignment bit 1 */
lypinator 0:bb348c97df44 2747 #define CAN_FFA1R_FFA2_Pos (2U)
lypinator 0:bb348c97df44 2748 #define CAN_FFA1R_FFA2_Msk (0x1U << CAN_FFA1R_FFA2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 2749 #define CAN_FFA1R_FFA2 CAN_FFA1R_FFA2_Msk /*!<Filter FIFO Assignment bit 2 */
lypinator 0:bb348c97df44 2750 #define CAN_FFA1R_FFA3_Pos (3U)
lypinator 0:bb348c97df44 2751 #define CAN_FFA1R_FFA3_Msk (0x1U << CAN_FFA1R_FFA3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 2752 #define CAN_FFA1R_FFA3 CAN_FFA1R_FFA3_Msk /*!<Filter FIFO Assignment bit 3 */
lypinator 0:bb348c97df44 2753 #define CAN_FFA1R_FFA4_Pos (4U)
lypinator 0:bb348c97df44 2754 #define CAN_FFA1R_FFA4_Msk (0x1U << CAN_FFA1R_FFA4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 2755 #define CAN_FFA1R_FFA4 CAN_FFA1R_FFA4_Msk /*!<Filter FIFO Assignment bit 4 */
lypinator 0:bb348c97df44 2756 #define CAN_FFA1R_FFA5_Pos (5U)
lypinator 0:bb348c97df44 2757 #define CAN_FFA1R_FFA5_Msk (0x1U << CAN_FFA1R_FFA5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 2758 #define CAN_FFA1R_FFA5 CAN_FFA1R_FFA5_Msk /*!<Filter FIFO Assignment bit 5 */
lypinator 0:bb348c97df44 2759 #define CAN_FFA1R_FFA6_Pos (6U)
lypinator 0:bb348c97df44 2760 #define CAN_FFA1R_FFA6_Msk (0x1U << CAN_FFA1R_FFA6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 2761 #define CAN_FFA1R_FFA6 CAN_FFA1R_FFA6_Msk /*!<Filter FIFO Assignment bit 6 */
lypinator 0:bb348c97df44 2762 #define CAN_FFA1R_FFA7_Pos (7U)
lypinator 0:bb348c97df44 2763 #define CAN_FFA1R_FFA7_Msk (0x1U << CAN_FFA1R_FFA7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 2764 #define CAN_FFA1R_FFA7 CAN_FFA1R_FFA7_Msk /*!<Filter FIFO Assignment bit 7 */
lypinator 0:bb348c97df44 2765 #define CAN_FFA1R_FFA8_Pos (8U)
lypinator 0:bb348c97df44 2766 #define CAN_FFA1R_FFA8_Msk (0x1U << CAN_FFA1R_FFA8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 2767 #define CAN_FFA1R_FFA8 CAN_FFA1R_FFA8_Msk /*!<Filter FIFO Assignment bit 8 */
lypinator 0:bb348c97df44 2768 #define CAN_FFA1R_FFA9_Pos (9U)
lypinator 0:bb348c97df44 2769 #define CAN_FFA1R_FFA9_Msk (0x1U << CAN_FFA1R_FFA9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 2770 #define CAN_FFA1R_FFA9 CAN_FFA1R_FFA9_Msk /*!<Filter FIFO Assignment bit 9 */
lypinator 0:bb348c97df44 2771 #define CAN_FFA1R_FFA10_Pos (10U)
lypinator 0:bb348c97df44 2772 #define CAN_FFA1R_FFA10_Msk (0x1U << CAN_FFA1R_FFA10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 2773 #define CAN_FFA1R_FFA10 CAN_FFA1R_FFA10_Msk /*!<Filter FIFO Assignment bit 10 */
lypinator 0:bb348c97df44 2774 #define CAN_FFA1R_FFA11_Pos (11U)
lypinator 0:bb348c97df44 2775 #define CAN_FFA1R_FFA11_Msk (0x1U << CAN_FFA1R_FFA11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 2776 #define CAN_FFA1R_FFA11 CAN_FFA1R_FFA11_Msk /*!<Filter FIFO Assignment bit 11 */
lypinator 0:bb348c97df44 2777 #define CAN_FFA1R_FFA12_Pos (12U)
lypinator 0:bb348c97df44 2778 #define CAN_FFA1R_FFA12_Msk (0x1U << CAN_FFA1R_FFA12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 2779 #define CAN_FFA1R_FFA12 CAN_FFA1R_FFA12_Msk /*!<Filter FIFO Assignment bit 12 */
lypinator 0:bb348c97df44 2780 #define CAN_FFA1R_FFA13_Pos (13U)
lypinator 0:bb348c97df44 2781 #define CAN_FFA1R_FFA13_Msk (0x1U << CAN_FFA1R_FFA13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 2782 #define CAN_FFA1R_FFA13 CAN_FFA1R_FFA13_Msk /*!<Filter FIFO Assignment bit 13 */
lypinator 0:bb348c97df44 2783 #define CAN_FFA1R_FFA14_Pos (14U)
lypinator 0:bb348c97df44 2784 #define CAN_FFA1R_FFA14_Msk (0x1U << CAN_FFA1R_FFA14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 2785 #define CAN_FFA1R_FFA14 CAN_FFA1R_FFA14_Msk /*!<Filter FIFO Assignment bit 14 */
lypinator 0:bb348c97df44 2786 #define CAN_FFA1R_FFA15_Pos (15U)
lypinator 0:bb348c97df44 2787 #define CAN_FFA1R_FFA15_Msk (0x1U << CAN_FFA1R_FFA15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 2788 #define CAN_FFA1R_FFA15 CAN_FFA1R_FFA15_Msk /*!<Filter FIFO Assignment bit 15 */
lypinator 0:bb348c97df44 2789 #define CAN_FFA1R_FFA16_Pos (16U)
lypinator 0:bb348c97df44 2790 #define CAN_FFA1R_FFA16_Msk (0x1U << CAN_FFA1R_FFA16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 2791 #define CAN_FFA1R_FFA16 CAN_FFA1R_FFA16_Msk /*!<Filter FIFO Assignment bit 16 */
lypinator 0:bb348c97df44 2792 #define CAN_FFA1R_FFA17_Pos (17U)
lypinator 0:bb348c97df44 2793 #define CAN_FFA1R_FFA17_Msk (0x1U << CAN_FFA1R_FFA17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 2794 #define CAN_FFA1R_FFA17 CAN_FFA1R_FFA17_Msk /*!<Filter FIFO Assignment bit 17 */
lypinator 0:bb348c97df44 2795 #define CAN_FFA1R_FFA18_Pos (18U)
lypinator 0:bb348c97df44 2796 #define CAN_FFA1R_FFA18_Msk (0x1U << CAN_FFA1R_FFA18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 2797 #define CAN_FFA1R_FFA18 CAN_FFA1R_FFA18_Msk /*!<Filter FIFO Assignment bit 18 */
lypinator 0:bb348c97df44 2798 #define CAN_FFA1R_FFA19_Pos (19U)
lypinator 0:bb348c97df44 2799 #define CAN_FFA1R_FFA19_Msk (0x1U << CAN_FFA1R_FFA19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 2800 #define CAN_FFA1R_FFA19 CAN_FFA1R_FFA19_Msk /*!<Filter FIFO Assignment bit 19 */
lypinator 0:bb348c97df44 2801 #define CAN_FFA1R_FFA20_Pos (20U)
lypinator 0:bb348c97df44 2802 #define CAN_FFA1R_FFA20_Msk (0x1U << CAN_FFA1R_FFA20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 2803 #define CAN_FFA1R_FFA20 CAN_FFA1R_FFA20_Msk /*!<Filter FIFO Assignment bit 20 */
lypinator 0:bb348c97df44 2804 #define CAN_FFA1R_FFA21_Pos (21U)
lypinator 0:bb348c97df44 2805 #define CAN_FFA1R_FFA21_Msk (0x1U << CAN_FFA1R_FFA21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 2806 #define CAN_FFA1R_FFA21 CAN_FFA1R_FFA21_Msk /*!<Filter FIFO Assignment bit 21 */
lypinator 0:bb348c97df44 2807 #define CAN_FFA1R_FFA22_Pos (22U)
lypinator 0:bb348c97df44 2808 #define CAN_FFA1R_FFA22_Msk (0x1U << CAN_FFA1R_FFA22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 2809 #define CAN_FFA1R_FFA22 CAN_FFA1R_FFA22_Msk /*!<Filter FIFO Assignment bit 22 */
lypinator 0:bb348c97df44 2810 #define CAN_FFA1R_FFA23_Pos (23U)
lypinator 0:bb348c97df44 2811 #define CAN_FFA1R_FFA23_Msk (0x1U << CAN_FFA1R_FFA23_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 2812 #define CAN_FFA1R_FFA23 CAN_FFA1R_FFA23_Msk /*!<Filter FIFO Assignment bit 23 */
lypinator 0:bb348c97df44 2813 #define CAN_FFA1R_FFA24_Pos (24U)
lypinator 0:bb348c97df44 2814 #define CAN_FFA1R_FFA24_Msk (0x1U << CAN_FFA1R_FFA24_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 2815 #define CAN_FFA1R_FFA24 CAN_FFA1R_FFA24_Msk /*!<Filter FIFO Assignment bit 24 */
lypinator 0:bb348c97df44 2816 #define CAN_FFA1R_FFA25_Pos (25U)
lypinator 0:bb348c97df44 2817 #define CAN_FFA1R_FFA25_Msk (0x1U << CAN_FFA1R_FFA25_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 2818 #define CAN_FFA1R_FFA25 CAN_FFA1R_FFA25_Msk /*!<Filter FIFO Assignment bit 25 */
lypinator 0:bb348c97df44 2819 #define CAN_FFA1R_FFA26_Pos (26U)
lypinator 0:bb348c97df44 2820 #define CAN_FFA1R_FFA26_Msk (0x1U << CAN_FFA1R_FFA26_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 2821 #define CAN_FFA1R_FFA26 CAN_FFA1R_FFA26_Msk /*!<Filter FIFO Assignment bit 26 */
lypinator 0:bb348c97df44 2822 #define CAN_FFA1R_FFA27_Pos (27U)
lypinator 0:bb348c97df44 2823 #define CAN_FFA1R_FFA27_Msk (0x1U << CAN_FFA1R_FFA27_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 2824 #define CAN_FFA1R_FFA27 CAN_FFA1R_FFA27_Msk /*!<Filter FIFO Assignment bit 27 */
lypinator 0:bb348c97df44 2825
lypinator 0:bb348c97df44 2826 /******************* Bit definition for CAN_FA1R register *******************/
lypinator 0:bb348c97df44 2827 #define CAN_FA1R_FACT_Pos (0U)
lypinator 0:bb348c97df44 2828 #define CAN_FA1R_FACT_Msk (0xFFFFFFFU << CAN_FA1R_FACT_Pos) /*!< 0x0FFFFFFF */
lypinator 0:bb348c97df44 2829 #define CAN_FA1R_FACT CAN_FA1R_FACT_Msk /*!<Filter Active */
lypinator 0:bb348c97df44 2830 #define CAN_FA1R_FACT0_Pos (0U)
lypinator 0:bb348c97df44 2831 #define CAN_FA1R_FACT0_Msk (0x1U << CAN_FA1R_FACT0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 2832 #define CAN_FA1R_FACT0 CAN_FA1R_FACT0_Msk /*!<Filter Active bit 0 */
lypinator 0:bb348c97df44 2833 #define CAN_FA1R_FACT1_Pos (1U)
lypinator 0:bb348c97df44 2834 #define CAN_FA1R_FACT1_Msk (0x1U << CAN_FA1R_FACT1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 2835 #define CAN_FA1R_FACT1 CAN_FA1R_FACT1_Msk /*!<Filter Active bit 1 */
lypinator 0:bb348c97df44 2836 #define CAN_FA1R_FACT2_Pos (2U)
lypinator 0:bb348c97df44 2837 #define CAN_FA1R_FACT2_Msk (0x1U << CAN_FA1R_FACT2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 2838 #define CAN_FA1R_FACT2 CAN_FA1R_FACT2_Msk /*!<Filter Active bit 2 */
lypinator 0:bb348c97df44 2839 #define CAN_FA1R_FACT3_Pos (3U)
lypinator 0:bb348c97df44 2840 #define CAN_FA1R_FACT3_Msk (0x1U << CAN_FA1R_FACT3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 2841 #define CAN_FA1R_FACT3 CAN_FA1R_FACT3_Msk /*!<Filter Active bit 3 */
lypinator 0:bb348c97df44 2842 #define CAN_FA1R_FACT4_Pos (4U)
lypinator 0:bb348c97df44 2843 #define CAN_FA1R_FACT4_Msk (0x1U << CAN_FA1R_FACT4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 2844 #define CAN_FA1R_FACT4 CAN_FA1R_FACT4_Msk /*!<Filter Active bit 4 */
lypinator 0:bb348c97df44 2845 #define CAN_FA1R_FACT5_Pos (5U)
lypinator 0:bb348c97df44 2846 #define CAN_FA1R_FACT5_Msk (0x1U << CAN_FA1R_FACT5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 2847 #define CAN_FA1R_FACT5 CAN_FA1R_FACT5_Msk /*!<Filter Active bit 5 */
lypinator 0:bb348c97df44 2848 #define CAN_FA1R_FACT6_Pos (6U)
lypinator 0:bb348c97df44 2849 #define CAN_FA1R_FACT6_Msk (0x1U << CAN_FA1R_FACT6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 2850 #define CAN_FA1R_FACT6 CAN_FA1R_FACT6_Msk /*!<Filter Active bit 6 */
lypinator 0:bb348c97df44 2851 #define CAN_FA1R_FACT7_Pos (7U)
lypinator 0:bb348c97df44 2852 #define CAN_FA1R_FACT7_Msk (0x1U << CAN_FA1R_FACT7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 2853 #define CAN_FA1R_FACT7 CAN_FA1R_FACT7_Msk /*!<Filter Active bit 7 */
lypinator 0:bb348c97df44 2854 #define CAN_FA1R_FACT8_Pos (8U)
lypinator 0:bb348c97df44 2855 #define CAN_FA1R_FACT8_Msk (0x1U << CAN_FA1R_FACT8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 2856 #define CAN_FA1R_FACT8 CAN_FA1R_FACT8_Msk /*!<Filter Active bit 8 */
lypinator 0:bb348c97df44 2857 #define CAN_FA1R_FACT9_Pos (9U)
lypinator 0:bb348c97df44 2858 #define CAN_FA1R_FACT9_Msk (0x1U << CAN_FA1R_FACT9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 2859 #define CAN_FA1R_FACT9 CAN_FA1R_FACT9_Msk /*!<Filter Active bit 9 */
lypinator 0:bb348c97df44 2860 #define CAN_FA1R_FACT10_Pos (10U)
lypinator 0:bb348c97df44 2861 #define CAN_FA1R_FACT10_Msk (0x1U << CAN_FA1R_FACT10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 2862 #define CAN_FA1R_FACT10 CAN_FA1R_FACT10_Msk /*!<Filter Active bit 10 */
lypinator 0:bb348c97df44 2863 #define CAN_FA1R_FACT11_Pos (11U)
lypinator 0:bb348c97df44 2864 #define CAN_FA1R_FACT11_Msk (0x1U << CAN_FA1R_FACT11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 2865 #define CAN_FA1R_FACT11 CAN_FA1R_FACT11_Msk /*!<Filter Active bit 11 */
lypinator 0:bb348c97df44 2866 #define CAN_FA1R_FACT12_Pos (12U)
lypinator 0:bb348c97df44 2867 #define CAN_FA1R_FACT12_Msk (0x1U << CAN_FA1R_FACT12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 2868 #define CAN_FA1R_FACT12 CAN_FA1R_FACT12_Msk /*!<Filter Active bit 12 */
lypinator 0:bb348c97df44 2869 #define CAN_FA1R_FACT13_Pos (13U)
lypinator 0:bb348c97df44 2870 #define CAN_FA1R_FACT13_Msk (0x1U << CAN_FA1R_FACT13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 2871 #define CAN_FA1R_FACT13 CAN_FA1R_FACT13_Msk /*!<Filter Active bit 13 */
lypinator 0:bb348c97df44 2872 #define CAN_FA1R_FACT14_Pos (14U)
lypinator 0:bb348c97df44 2873 #define CAN_FA1R_FACT14_Msk (0x1U << CAN_FA1R_FACT14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 2874 #define CAN_FA1R_FACT14 CAN_FA1R_FACT14_Msk /*!<Filter Active bit 14 */
lypinator 0:bb348c97df44 2875 #define CAN_FA1R_FACT15_Pos (15U)
lypinator 0:bb348c97df44 2876 #define CAN_FA1R_FACT15_Msk (0x1U << CAN_FA1R_FACT15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 2877 #define CAN_FA1R_FACT15 CAN_FA1R_FACT15_Msk /*!<Filter Active bit 15 */
lypinator 0:bb348c97df44 2878 #define CAN_FA1R_FACT16_Pos (16U)
lypinator 0:bb348c97df44 2879 #define CAN_FA1R_FACT16_Msk (0x1U << CAN_FA1R_FACT16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 2880 #define CAN_FA1R_FACT16 CAN_FA1R_FACT16_Msk /*!<Filter Active bit 16 */
lypinator 0:bb348c97df44 2881 #define CAN_FA1R_FACT17_Pos (17U)
lypinator 0:bb348c97df44 2882 #define CAN_FA1R_FACT17_Msk (0x1U << CAN_FA1R_FACT17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 2883 #define CAN_FA1R_FACT17 CAN_FA1R_FACT17_Msk /*!<Filter Active bit 17 */
lypinator 0:bb348c97df44 2884 #define CAN_FA1R_FACT18_Pos (18U)
lypinator 0:bb348c97df44 2885 #define CAN_FA1R_FACT18_Msk (0x1U << CAN_FA1R_FACT18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 2886 #define CAN_FA1R_FACT18 CAN_FA1R_FACT18_Msk /*!<Filter Active bit 18 */
lypinator 0:bb348c97df44 2887 #define CAN_FA1R_FACT19_Pos (19U)
lypinator 0:bb348c97df44 2888 #define CAN_FA1R_FACT19_Msk (0x1U << CAN_FA1R_FACT19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 2889 #define CAN_FA1R_FACT19 CAN_FA1R_FACT19_Msk /*!<Filter Active bit 19 */
lypinator 0:bb348c97df44 2890 #define CAN_FA1R_FACT20_Pos (20U)
lypinator 0:bb348c97df44 2891 #define CAN_FA1R_FACT20_Msk (0x1U << CAN_FA1R_FACT20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 2892 #define CAN_FA1R_FACT20 CAN_FA1R_FACT20_Msk /*!<Filter Active bit 20 */
lypinator 0:bb348c97df44 2893 #define CAN_FA1R_FACT21_Pos (21U)
lypinator 0:bb348c97df44 2894 #define CAN_FA1R_FACT21_Msk (0x1U << CAN_FA1R_FACT21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 2895 #define CAN_FA1R_FACT21 CAN_FA1R_FACT21_Msk /*!<Filter Active bit 21 */
lypinator 0:bb348c97df44 2896 #define CAN_FA1R_FACT22_Pos (22U)
lypinator 0:bb348c97df44 2897 #define CAN_FA1R_FACT22_Msk (0x1U << CAN_FA1R_FACT22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 2898 #define CAN_FA1R_FACT22 CAN_FA1R_FACT22_Msk /*!<Filter Active bit 22 */
lypinator 0:bb348c97df44 2899 #define CAN_FA1R_FACT23_Pos (23U)
lypinator 0:bb348c97df44 2900 #define CAN_FA1R_FACT23_Msk (0x1U << CAN_FA1R_FACT23_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 2901 #define CAN_FA1R_FACT23 CAN_FA1R_FACT23_Msk /*!<Filter Active bit 23 */
lypinator 0:bb348c97df44 2902 #define CAN_FA1R_FACT24_Pos (24U)
lypinator 0:bb348c97df44 2903 #define CAN_FA1R_FACT24_Msk (0x1U << CAN_FA1R_FACT24_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 2904 #define CAN_FA1R_FACT24 CAN_FA1R_FACT24_Msk /*!<Filter Active bit 24 */
lypinator 0:bb348c97df44 2905 #define CAN_FA1R_FACT25_Pos (25U)
lypinator 0:bb348c97df44 2906 #define CAN_FA1R_FACT25_Msk (0x1U << CAN_FA1R_FACT25_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 2907 #define CAN_FA1R_FACT25 CAN_FA1R_FACT25_Msk /*!<Filter Active bit 25 */
lypinator 0:bb348c97df44 2908 #define CAN_FA1R_FACT26_Pos (26U)
lypinator 0:bb348c97df44 2909 #define CAN_FA1R_FACT26_Msk (0x1U << CAN_FA1R_FACT26_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 2910 #define CAN_FA1R_FACT26 CAN_FA1R_FACT26_Msk /*!<Filter Active bit 26 */
lypinator 0:bb348c97df44 2911 #define CAN_FA1R_FACT27_Pos (27U)
lypinator 0:bb348c97df44 2912 #define CAN_FA1R_FACT27_Msk (0x1U << CAN_FA1R_FACT27_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 2913 #define CAN_FA1R_FACT27 CAN_FA1R_FACT27_Msk /*!<Filter Active bit 27 */
lypinator 0:bb348c97df44 2914
lypinator 0:bb348c97df44 2915
lypinator 0:bb348c97df44 2916 /******************* Bit definition for CAN_F0R1 register *******************/
lypinator 0:bb348c97df44 2917 #define CAN_F0R1_FB0_Pos (0U)
lypinator 0:bb348c97df44 2918 #define CAN_F0R1_FB0_Msk (0x1U << CAN_F0R1_FB0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 2919 #define CAN_F0R1_FB0 CAN_F0R1_FB0_Msk /*!<Filter bit 0 */
lypinator 0:bb348c97df44 2920 #define CAN_F0R1_FB1_Pos (1U)
lypinator 0:bb348c97df44 2921 #define CAN_F0R1_FB1_Msk (0x1U << CAN_F0R1_FB1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 2922 #define CAN_F0R1_FB1 CAN_F0R1_FB1_Msk /*!<Filter bit 1 */
lypinator 0:bb348c97df44 2923 #define CAN_F0R1_FB2_Pos (2U)
lypinator 0:bb348c97df44 2924 #define CAN_F0R1_FB2_Msk (0x1U << CAN_F0R1_FB2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 2925 #define CAN_F0R1_FB2 CAN_F0R1_FB2_Msk /*!<Filter bit 2 */
lypinator 0:bb348c97df44 2926 #define CAN_F0R1_FB3_Pos (3U)
lypinator 0:bb348c97df44 2927 #define CAN_F0R1_FB3_Msk (0x1U << CAN_F0R1_FB3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 2928 #define CAN_F0R1_FB3 CAN_F0R1_FB3_Msk /*!<Filter bit 3 */
lypinator 0:bb348c97df44 2929 #define CAN_F0R1_FB4_Pos (4U)
lypinator 0:bb348c97df44 2930 #define CAN_F0R1_FB4_Msk (0x1U << CAN_F0R1_FB4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 2931 #define CAN_F0R1_FB4 CAN_F0R1_FB4_Msk /*!<Filter bit 4 */
lypinator 0:bb348c97df44 2932 #define CAN_F0R1_FB5_Pos (5U)
lypinator 0:bb348c97df44 2933 #define CAN_F0R1_FB5_Msk (0x1U << CAN_F0R1_FB5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 2934 #define CAN_F0R1_FB5 CAN_F0R1_FB5_Msk /*!<Filter bit 5 */
lypinator 0:bb348c97df44 2935 #define CAN_F0R1_FB6_Pos (6U)
lypinator 0:bb348c97df44 2936 #define CAN_F0R1_FB6_Msk (0x1U << CAN_F0R1_FB6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 2937 #define CAN_F0R1_FB6 CAN_F0R1_FB6_Msk /*!<Filter bit 6 */
lypinator 0:bb348c97df44 2938 #define CAN_F0R1_FB7_Pos (7U)
lypinator 0:bb348c97df44 2939 #define CAN_F0R1_FB7_Msk (0x1U << CAN_F0R1_FB7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 2940 #define CAN_F0R1_FB7 CAN_F0R1_FB7_Msk /*!<Filter bit 7 */
lypinator 0:bb348c97df44 2941 #define CAN_F0R1_FB8_Pos (8U)
lypinator 0:bb348c97df44 2942 #define CAN_F0R1_FB8_Msk (0x1U << CAN_F0R1_FB8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 2943 #define CAN_F0R1_FB8 CAN_F0R1_FB8_Msk /*!<Filter bit 8 */
lypinator 0:bb348c97df44 2944 #define CAN_F0R1_FB9_Pos (9U)
lypinator 0:bb348c97df44 2945 #define CAN_F0R1_FB9_Msk (0x1U << CAN_F0R1_FB9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 2946 #define CAN_F0R1_FB9 CAN_F0R1_FB9_Msk /*!<Filter bit 9 */
lypinator 0:bb348c97df44 2947 #define CAN_F0R1_FB10_Pos (10U)
lypinator 0:bb348c97df44 2948 #define CAN_F0R1_FB10_Msk (0x1U << CAN_F0R1_FB10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 2949 #define CAN_F0R1_FB10 CAN_F0R1_FB10_Msk /*!<Filter bit 10 */
lypinator 0:bb348c97df44 2950 #define CAN_F0R1_FB11_Pos (11U)
lypinator 0:bb348c97df44 2951 #define CAN_F0R1_FB11_Msk (0x1U << CAN_F0R1_FB11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 2952 #define CAN_F0R1_FB11 CAN_F0R1_FB11_Msk /*!<Filter bit 11 */
lypinator 0:bb348c97df44 2953 #define CAN_F0R1_FB12_Pos (12U)
lypinator 0:bb348c97df44 2954 #define CAN_F0R1_FB12_Msk (0x1U << CAN_F0R1_FB12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 2955 #define CAN_F0R1_FB12 CAN_F0R1_FB12_Msk /*!<Filter bit 12 */
lypinator 0:bb348c97df44 2956 #define CAN_F0R1_FB13_Pos (13U)
lypinator 0:bb348c97df44 2957 #define CAN_F0R1_FB13_Msk (0x1U << CAN_F0R1_FB13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 2958 #define CAN_F0R1_FB13 CAN_F0R1_FB13_Msk /*!<Filter bit 13 */
lypinator 0:bb348c97df44 2959 #define CAN_F0R1_FB14_Pos (14U)
lypinator 0:bb348c97df44 2960 #define CAN_F0R1_FB14_Msk (0x1U << CAN_F0R1_FB14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 2961 #define CAN_F0R1_FB14 CAN_F0R1_FB14_Msk /*!<Filter bit 14 */
lypinator 0:bb348c97df44 2962 #define CAN_F0R1_FB15_Pos (15U)
lypinator 0:bb348c97df44 2963 #define CAN_F0R1_FB15_Msk (0x1U << CAN_F0R1_FB15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 2964 #define CAN_F0R1_FB15 CAN_F0R1_FB15_Msk /*!<Filter bit 15 */
lypinator 0:bb348c97df44 2965 #define CAN_F0R1_FB16_Pos (16U)
lypinator 0:bb348c97df44 2966 #define CAN_F0R1_FB16_Msk (0x1U << CAN_F0R1_FB16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 2967 #define CAN_F0R1_FB16 CAN_F0R1_FB16_Msk /*!<Filter bit 16 */
lypinator 0:bb348c97df44 2968 #define CAN_F0R1_FB17_Pos (17U)
lypinator 0:bb348c97df44 2969 #define CAN_F0R1_FB17_Msk (0x1U << CAN_F0R1_FB17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 2970 #define CAN_F0R1_FB17 CAN_F0R1_FB17_Msk /*!<Filter bit 17 */
lypinator 0:bb348c97df44 2971 #define CAN_F0R1_FB18_Pos (18U)
lypinator 0:bb348c97df44 2972 #define CAN_F0R1_FB18_Msk (0x1U << CAN_F0R1_FB18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 2973 #define CAN_F0R1_FB18 CAN_F0R1_FB18_Msk /*!<Filter bit 18 */
lypinator 0:bb348c97df44 2974 #define CAN_F0R1_FB19_Pos (19U)
lypinator 0:bb348c97df44 2975 #define CAN_F0R1_FB19_Msk (0x1U << CAN_F0R1_FB19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 2976 #define CAN_F0R1_FB19 CAN_F0R1_FB19_Msk /*!<Filter bit 19 */
lypinator 0:bb348c97df44 2977 #define CAN_F0R1_FB20_Pos (20U)
lypinator 0:bb348c97df44 2978 #define CAN_F0R1_FB20_Msk (0x1U << CAN_F0R1_FB20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 2979 #define CAN_F0R1_FB20 CAN_F0R1_FB20_Msk /*!<Filter bit 20 */
lypinator 0:bb348c97df44 2980 #define CAN_F0R1_FB21_Pos (21U)
lypinator 0:bb348c97df44 2981 #define CAN_F0R1_FB21_Msk (0x1U << CAN_F0R1_FB21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 2982 #define CAN_F0R1_FB21 CAN_F0R1_FB21_Msk /*!<Filter bit 21 */
lypinator 0:bb348c97df44 2983 #define CAN_F0R1_FB22_Pos (22U)
lypinator 0:bb348c97df44 2984 #define CAN_F0R1_FB22_Msk (0x1U << CAN_F0R1_FB22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 2985 #define CAN_F0R1_FB22 CAN_F0R1_FB22_Msk /*!<Filter bit 22 */
lypinator 0:bb348c97df44 2986 #define CAN_F0R1_FB23_Pos (23U)
lypinator 0:bb348c97df44 2987 #define CAN_F0R1_FB23_Msk (0x1U << CAN_F0R1_FB23_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 2988 #define CAN_F0R1_FB23 CAN_F0R1_FB23_Msk /*!<Filter bit 23 */
lypinator 0:bb348c97df44 2989 #define CAN_F0R1_FB24_Pos (24U)
lypinator 0:bb348c97df44 2990 #define CAN_F0R1_FB24_Msk (0x1U << CAN_F0R1_FB24_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 2991 #define CAN_F0R1_FB24 CAN_F0R1_FB24_Msk /*!<Filter bit 24 */
lypinator 0:bb348c97df44 2992 #define CAN_F0R1_FB25_Pos (25U)
lypinator 0:bb348c97df44 2993 #define CAN_F0R1_FB25_Msk (0x1U << CAN_F0R1_FB25_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 2994 #define CAN_F0R1_FB25 CAN_F0R1_FB25_Msk /*!<Filter bit 25 */
lypinator 0:bb348c97df44 2995 #define CAN_F0R1_FB26_Pos (26U)
lypinator 0:bb348c97df44 2996 #define CAN_F0R1_FB26_Msk (0x1U << CAN_F0R1_FB26_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 2997 #define CAN_F0R1_FB26 CAN_F0R1_FB26_Msk /*!<Filter bit 26 */
lypinator 0:bb348c97df44 2998 #define CAN_F0R1_FB27_Pos (27U)
lypinator 0:bb348c97df44 2999 #define CAN_F0R1_FB27_Msk (0x1U << CAN_F0R1_FB27_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 3000 #define CAN_F0R1_FB27 CAN_F0R1_FB27_Msk /*!<Filter bit 27 */
lypinator 0:bb348c97df44 3001 #define CAN_F0R1_FB28_Pos (28U)
lypinator 0:bb348c97df44 3002 #define CAN_F0R1_FB28_Msk (0x1U << CAN_F0R1_FB28_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 3003 #define CAN_F0R1_FB28 CAN_F0R1_FB28_Msk /*!<Filter bit 28 */
lypinator 0:bb348c97df44 3004 #define CAN_F0R1_FB29_Pos (29U)
lypinator 0:bb348c97df44 3005 #define CAN_F0R1_FB29_Msk (0x1U << CAN_F0R1_FB29_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 3006 #define CAN_F0R1_FB29 CAN_F0R1_FB29_Msk /*!<Filter bit 29 */
lypinator 0:bb348c97df44 3007 #define CAN_F0R1_FB30_Pos (30U)
lypinator 0:bb348c97df44 3008 #define CAN_F0R1_FB30_Msk (0x1U << CAN_F0R1_FB30_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 3009 #define CAN_F0R1_FB30 CAN_F0R1_FB30_Msk /*!<Filter bit 30 */
lypinator 0:bb348c97df44 3010 #define CAN_F0R1_FB31_Pos (31U)
lypinator 0:bb348c97df44 3011 #define CAN_F0R1_FB31_Msk (0x1U << CAN_F0R1_FB31_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 3012 #define CAN_F0R1_FB31 CAN_F0R1_FB31_Msk /*!<Filter bit 31 */
lypinator 0:bb348c97df44 3013
lypinator 0:bb348c97df44 3014 /******************* Bit definition for CAN_F1R1 register *******************/
lypinator 0:bb348c97df44 3015 #define CAN_F1R1_FB0_Pos (0U)
lypinator 0:bb348c97df44 3016 #define CAN_F1R1_FB0_Msk (0x1U << CAN_F1R1_FB0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 3017 #define CAN_F1R1_FB0 CAN_F1R1_FB0_Msk /*!<Filter bit 0 */
lypinator 0:bb348c97df44 3018 #define CAN_F1R1_FB1_Pos (1U)
lypinator 0:bb348c97df44 3019 #define CAN_F1R1_FB1_Msk (0x1U << CAN_F1R1_FB1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 3020 #define CAN_F1R1_FB1 CAN_F1R1_FB1_Msk /*!<Filter bit 1 */
lypinator 0:bb348c97df44 3021 #define CAN_F1R1_FB2_Pos (2U)
lypinator 0:bb348c97df44 3022 #define CAN_F1R1_FB2_Msk (0x1U << CAN_F1R1_FB2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 3023 #define CAN_F1R1_FB2 CAN_F1R1_FB2_Msk /*!<Filter bit 2 */
lypinator 0:bb348c97df44 3024 #define CAN_F1R1_FB3_Pos (3U)
lypinator 0:bb348c97df44 3025 #define CAN_F1R1_FB3_Msk (0x1U << CAN_F1R1_FB3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 3026 #define CAN_F1R1_FB3 CAN_F1R1_FB3_Msk /*!<Filter bit 3 */
lypinator 0:bb348c97df44 3027 #define CAN_F1R1_FB4_Pos (4U)
lypinator 0:bb348c97df44 3028 #define CAN_F1R1_FB4_Msk (0x1U << CAN_F1R1_FB4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 3029 #define CAN_F1R1_FB4 CAN_F1R1_FB4_Msk /*!<Filter bit 4 */
lypinator 0:bb348c97df44 3030 #define CAN_F1R1_FB5_Pos (5U)
lypinator 0:bb348c97df44 3031 #define CAN_F1R1_FB5_Msk (0x1U << CAN_F1R1_FB5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 3032 #define CAN_F1R1_FB5 CAN_F1R1_FB5_Msk /*!<Filter bit 5 */
lypinator 0:bb348c97df44 3033 #define CAN_F1R1_FB6_Pos (6U)
lypinator 0:bb348c97df44 3034 #define CAN_F1R1_FB6_Msk (0x1U << CAN_F1R1_FB6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 3035 #define CAN_F1R1_FB6 CAN_F1R1_FB6_Msk /*!<Filter bit 6 */
lypinator 0:bb348c97df44 3036 #define CAN_F1R1_FB7_Pos (7U)
lypinator 0:bb348c97df44 3037 #define CAN_F1R1_FB7_Msk (0x1U << CAN_F1R1_FB7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 3038 #define CAN_F1R1_FB7 CAN_F1R1_FB7_Msk /*!<Filter bit 7 */
lypinator 0:bb348c97df44 3039 #define CAN_F1R1_FB8_Pos (8U)
lypinator 0:bb348c97df44 3040 #define CAN_F1R1_FB8_Msk (0x1U << CAN_F1R1_FB8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 3041 #define CAN_F1R1_FB8 CAN_F1R1_FB8_Msk /*!<Filter bit 8 */
lypinator 0:bb348c97df44 3042 #define CAN_F1R1_FB9_Pos (9U)
lypinator 0:bb348c97df44 3043 #define CAN_F1R1_FB9_Msk (0x1U << CAN_F1R1_FB9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 3044 #define CAN_F1R1_FB9 CAN_F1R1_FB9_Msk /*!<Filter bit 9 */
lypinator 0:bb348c97df44 3045 #define CAN_F1R1_FB10_Pos (10U)
lypinator 0:bb348c97df44 3046 #define CAN_F1R1_FB10_Msk (0x1U << CAN_F1R1_FB10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 3047 #define CAN_F1R1_FB10 CAN_F1R1_FB10_Msk /*!<Filter bit 10 */
lypinator 0:bb348c97df44 3048 #define CAN_F1R1_FB11_Pos (11U)
lypinator 0:bb348c97df44 3049 #define CAN_F1R1_FB11_Msk (0x1U << CAN_F1R1_FB11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 3050 #define CAN_F1R1_FB11 CAN_F1R1_FB11_Msk /*!<Filter bit 11 */
lypinator 0:bb348c97df44 3051 #define CAN_F1R1_FB12_Pos (12U)
lypinator 0:bb348c97df44 3052 #define CAN_F1R1_FB12_Msk (0x1U << CAN_F1R1_FB12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 3053 #define CAN_F1R1_FB12 CAN_F1R1_FB12_Msk /*!<Filter bit 12 */
lypinator 0:bb348c97df44 3054 #define CAN_F1R1_FB13_Pos (13U)
lypinator 0:bb348c97df44 3055 #define CAN_F1R1_FB13_Msk (0x1U << CAN_F1R1_FB13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 3056 #define CAN_F1R1_FB13 CAN_F1R1_FB13_Msk /*!<Filter bit 13 */
lypinator 0:bb348c97df44 3057 #define CAN_F1R1_FB14_Pos (14U)
lypinator 0:bb348c97df44 3058 #define CAN_F1R1_FB14_Msk (0x1U << CAN_F1R1_FB14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 3059 #define CAN_F1R1_FB14 CAN_F1R1_FB14_Msk /*!<Filter bit 14 */
lypinator 0:bb348c97df44 3060 #define CAN_F1R1_FB15_Pos (15U)
lypinator 0:bb348c97df44 3061 #define CAN_F1R1_FB15_Msk (0x1U << CAN_F1R1_FB15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 3062 #define CAN_F1R1_FB15 CAN_F1R1_FB15_Msk /*!<Filter bit 15 */
lypinator 0:bb348c97df44 3063 #define CAN_F1R1_FB16_Pos (16U)
lypinator 0:bb348c97df44 3064 #define CAN_F1R1_FB16_Msk (0x1U << CAN_F1R1_FB16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 3065 #define CAN_F1R1_FB16 CAN_F1R1_FB16_Msk /*!<Filter bit 16 */
lypinator 0:bb348c97df44 3066 #define CAN_F1R1_FB17_Pos (17U)
lypinator 0:bb348c97df44 3067 #define CAN_F1R1_FB17_Msk (0x1U << CAN_F1R1_FB17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 3068 #define CAN_F1R1_FB17 CAN_F1R1_FB17_Msk /*!<Filter bit 17 */
lypinator 0:bb348c97df44 3069 #define CAN_F1R1_FB18_Pos (18U)
lypinator 0:bb348c97df44 3070 #define CAN_F1R1_FB18_Msk (0x1U << CAN_F1R1_FB18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 3071 #define CAN_F1R1_FB18 CAN_F1R1_FB18_Msk /*!<Filter bit 18 */
lypinator 0:bb348c97df44 3072 #define CAN_F1R1_FB19_Pos (19U)
lypinator 0:bb348c97df44 3073 #define CAN_F1R1_FB19_Msk (0x1U << CAN_F1R1_FB19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 3074 #define CAN_F1R1_FB19 CAN_F1R1_FB19_Msk /*!<Filter bit 19 */
lypinator 0:bb348c97df44 3075 #define CAN_F1R1_FB20_Pos (20U)
lypinator 0:bb348c97df44 3076 #define CAN_F1R1_FB20_Msk (0x1U << CAN_F1R1_FB20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 3077 #define CAN_F1R1_FB20 CAN_F1R1_FB20_Msk /*!<Filter bit 20 */
lypinator 0:bb348c97df44 3078 #define CAN_F1R1_FB21_Pos (21U)
lypinator 0:bb348c97df44 3079 #define CAN_F1R1_FB21_Msk (0x1U << CAN_F1R1_FB21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 3080 #define CAN_F1R1_FB21 CAN_F1R1_FB21_Msk /*!<Filter bit 21 */
lypinator 0:bb348c97df44 3081 #define CAN_F1R1_FB22_Pos (22U)
lypinator 0:bb348c97df44 3082 #define CAN_F1R1_FB22_Msk (0x1U << CAN_F1R1_FB22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 3083 #define CAN_F1R1_FB22 CAN_F1R1_FB22_Msk /*!<Filter bit 22 */
lypinator 0:bb348c97df44 3084 #define CAN_F1R1_FB23_Pos (23U)
lypinator 0:bb348c97df44 3085 #define CAN_F1R1_FB23_Msk (0x1U << CAN_F1R1_FB23_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 3086 #define CAN_F1R1_FB23 CAN_F1R1_FB23_Msk /*!<Filter bit 23 */
lypinator 0:bb348c97df44 3087 #define CAN_F1R1_FB24_Pos (24U)
lypinator 0:bb348c97df44 3088 #define CAN_F1R1_FB24_Msk (0x1U << CAN_F1R1_FB24_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 3089 #define CAN_F1R1_FB24 CAN_F1R1_FB24_Msk /*!<Filter bit 24 */
lypinator 0:bb348c97df44 3090 #define CAN_F1R1_FB25_Pos (25U)
lypinator 0:bb348c97df44 3091 #define CAN_F1R1_FB25_Msk (0x1U << CAN_F1R1_FB25_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 3092 #define CAN_F1R1_FB25 CAN_F1R1_FB25_Msk /*!<Filter bit 25 */
lypinator 0:bb348c97df44 3093 #define CAN_F1R1_FB26_Pos (26U)
lypinator 0:bb348c97df44 3094 #define CAN_F1R1_FB26_Msk (0x1U << CAN_F1R1_FB26_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 3095 #define CAN_F1R1_FB26 CAN_F1R1_FB26_Msk /*!<Filter bit 26 */
lypinator 0:bb348c97df44 3096 #define CAN_F1R1_FB27_Pos (27U)
lypinator 0:bb348c97df44 3097 #define CAN_F1R1_FB27_Msk (0x1U << CAN_F1R1_FB27_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 3098 #define CAN_F1R1_FB27 CAN_F1R1_FB27_Msk /*!<Filter bit 27 */
lypinator 0:bb348c97df44 3099 #define CAN_F1R1_FB28_Pos (28U)
lypinator 0:bb348c97df44 3100 #define CAN_F1R1_FB28_Msk (0x1U << CAN_F1R1_FB28_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 3101 #define CAN_F1R1_FB28 CAN_F1R1_FB28_Msk /*!<Filter bit 28 */
lypinator 0:bb348c97df44 3102 #define CAN_F1R1_FB29_Pos (29U)
lypinator 0:bb348c97df44 3103 #define CAN_F1R1_FB29_Msk (0x1U << CAN_F1R1_FB29_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 3104 #define CAN_F1R1_FB29 CAN_F1R1_FB29_Msk /*!<Filter bit 29 */
lypinator 0:bb348c97df44 3105 #define CAN_F1R1_FB30_Pos (30U)
lypinator 0:bb348c97df44 3106 #define CAN_F1R1_FB30_Msk (0x1U << CAN_F1R1_FB30_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 3107 #define CAN_F1R1_FB30 CAN_F1R1_FB30_Msk /*!<Filter bit 30 */
lypinator 0:bb348c97df44 3108 #define CAN_F1R1_FB31_Pos (31U)
lypinator 0:bb348c97df44 3109 #define CAN_F1R1_FB31_Msk (0x1U << CAN_F1R1_FB31_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 3110 #define CAN_F1R1_FB31 CAN_F1R1_FB31_Msk /*!<Filter bit 31 */
lypinator 0:bb348c97df44 3111
lypinator 0:bb348c97df44 3112 /******************* Bit definition for CAN_F2R1 register *******************/
lypinator 0:bb348c97df44 3113 #define CAN_F2R1_FB0_Pos (0U)
lypinator 0:bb348c97df44 3114 #define CAN_F2R1_FB0_Msk (0x1U << CAN_F2R1_FB0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 3115 #define CAN_F2R1_FB0 CAN_F2R1_FB0_Msk /*!<Filter bit 0 */
lypinator 0:bb348c97df44 3116 #define CAN_F2R1_FB1_Pos (1U)
lypinator 0:bb348c97df44 3117 #define CAN_F2R1_FB1_Msk (0x1U << CAN_F2R1_FB1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 3118 #define CAN_F2R1_FB1 CAN_F2R1_FB1_Msk /*!<Filter bit 1 */
lypinator 0:bb348c97df44 3119 #define CAN_F2R1_FB2_Pos (2U)
lypinator 0:bb348c97df44 3120 #define CAN_F2R1_FB2_Msk (0x1U << CAN_F2R1_FB2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 3121 #define CAN_F2R1_FB2 CAN_F2R1_FB2_Msk /*!<Filter bit 2 */
lypinator 0:bb348c97df44 3122 #define CAN_F2R1_FB3_Pos (3U)
lypinator 0:bb348c97df44 3123 #define CAN_F2R1_FB3_Msk (0x1U << CAN_F2R1_FB3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 3124 #define CAN_F2R1_FB3 CAN_F2R1_FB3_Msk /*!<Filter bit 3 */
lypinator 0:bb348c97df44 3125 #define CAN_F2R1_FB4_Pos (4U)
lypinator 0:bb348c97df44 3126 #define CAN_F2R1_FB4_Msk (0x1U << CAN_F2R1_FB4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 3127 #define CAN_F2R1_FB4 CAN_F2R1_FB4_Msk /*!<Filter bit 4 */
lypinator 0:bb348c97df44 3128 #define CAN_F2R1_FB5_Pos (5U)
lypinator 0:bb348c97df44 3129 #define CAN_F2R1_FB5_Msk (0x1U << CAN_F2R1_FB5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 3130 #define CAN_F2R1_FB5 CAN_F2R1_FB5_Msk /*!<Filter bit 5 */
lypinator 0:bb348c97df44 3131 #define CAN_F2R1_FB6_Pos (6U)
lypinator 0:bb348c97df44 3132 #define CAN_F2R1_FB6_Msk (0x1U << CAN_F2R1_FB6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 3133 #define CAN_F2R1_FB6 CAN_F2R1_FB6_Msk /*!<Filter bit 6 */
lypinator 0:bb348c97df44 3134 #define CAN_F2R1_FB7_Pos (7U)
lypinator 0:bb348c97df44 3135 #define CAN_F2R1_FB7_Msk (0x1U << CAN_F2R1_FB7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 3136 #define CAN_F2R1_FB7 CAN_F2R1_FB7_Msk /*!<Filter bit 7 */
lypinator 0:bb348c97df44 3137 #define CAN_F2R1_FB8_Pos (8U)
lypinator 0:bb348c97df44 3138 #define CAN_F2R1_FB8_Msk (0x1U << CAN_F2R1_FB8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 3139 #define CAN_F2R1_FB8 CAN_F2R1_FB8_Msk /*!<Filter bit 8 */
lypinator 0:bb348c97df44 3140 #define CAN_F2R1_FB9_Pos (9U)
lypinator 0:bb348c97df44 3141 #define CAN_F2R1_FB9_Msk (0x1U << CAN_F2R1_FB9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 3142 #define CAN_F2R1_FB9 CAN_F2R1_FB9_Msk /*!<Filter bit 9 */
lypinator 0:bb348c97df44 3143 #define CAN_F2R1_FB10_Pos (10U)
lypinator 0:bb348c97df44 3144 #define CAN_F2R1_FB10_Msk (0x1U << CAN_F2R1_FB10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 3145 #define CAN_F2R1_FB10 CAN_F2R1_FB10_Msk /*!<Filter bit 10 */
lypinator 0:bb348c97df44 3146 #define CAN_F2R1_FB11_Pos (11U)
lypinator 0:bb348c97df44 3147 #define CAN_F2R1_FB11_Msk (0x1U << CAN_F2R1_FB11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 3148 #define CAN_F2R1_FB11 CAN_F2R1_FB11_Msk /*!<Filter bit 11 */
lypinator 0:bb348c97df44 3149 #define CAN_F2R1_FB12_Pos (12U)
lypinator 0:bb348c97df44 3150 #define CAN_F2R1_FB12_Msk (0x1U << CAN_F2R1_FB12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 3151 #define CAN_F2R1_FB12 CAN_F2R1_FB12_Msk /*!<Filter bit 12 */
lypinator 0:bb348c97df44 3152 #define CAN_F2R1_FB13_Pos (13U)
lypinator 0:bb348c97df44 3153 #define CAN_F2R1_FB13_Msk (0x1U << CAN_F2R1_FB13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 3154 #define CAN_F2R1_FB13 CAN_F2R1_FB13_Msk /*!<Filter bit 13 */
lypinator 0:bb348c97df44 3155 #define CAN_F2R1_FB14_Pos (14U)
lypinator 0:bb348c97df44 3156 #define CAN_F2R1_FB14_Msk (0x1U << CAN_F2R1_FB14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 3157 #define CAN_F2R1_FB14 CAN_F2R1_FB14_Msk /*!<Filter bit 14 */
lypinator 0:bb348c97df44 3158 #define CAN_F2R1_FB15_Pos (15U)
lypinator 0:bb348c97df44 3159 #define CAN_F2R1_FB15_Msk (0x1U << CAN_F2R1_FB15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 3160 #define CAN_F2R1_FB15 CAN_F2R1_FB15_Msk /*!<Filter bit 15 */
lypinator 0:bb348c97df44 3161 #define CAN_F2R1_FB16_Pos (16U)
lypinator 0:bb348c97df44 3162 #define CAN_F2R1_FB16_Msk (0x1U << CAN_F2R1_FB16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 3163 #define CAN_F2R1_FB16 CAN_F2R1_FB16_Msk /*!<Filter bit 16 */
lypinator 0:bb348c97df44 3164 #define CAN_F2R1_FB17_Pos (17U)
lypinator 0:bb348c97df44 3165 #define CAN_F2R1_FB17_Msk (0x1U << CAN_F2R1_FB17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 3166 #define CAN_F2R1_FB17 CAN_F2R1_FB17_Msk /*!<Filter bit 17 */
lypinator 0:bb348c97df44 3167 #define CAN_F2R1_FB18_Pos (18U)
lypinator 0:bb348c97df44 3168 #define CAN_F2R1_FB18_Msk (0x1U << CAN_F2R1_FB18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 3169 #define CAN_F2R1_FB18 CAN_F2R1_FB18_Msk /*!<Filter bit 18 */
lypinator 0:bb348c97df44 3170 #define CAN_F2R1_FB19_Pos (19U)
lypinator 0:bb348c97df44 3171 #define CAN_F2R1_FB19_Msk (0x1U << CAN_F2R1_FB19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 3172 #define CAN_F2R1_FB19 CAN_F2R1_FB19_Msk /*!<Filter bit 19 */
lypinator 0:bb348c97df44 3173 #define CAN_F2R1_FB20_Pos (20U)
lypinator 0:bb348c97df44 3174 #define CAN_F2R1_FB20_Msk (0x1U << CAN_F2R1_FB20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 3175 #define CAN_F2R1_FB20 CAN_F2R1_FB20_Msk /*!<Filter bit 20 */
lypinator 0:bb348c97df44 3176 #define CAN_F2R1_FB21_Pos (21U)
lypinator 0:bb348c97df44 3177 #define CAN_F2R1_FB21_Msk (0x1U << CAN_F2R1_FB21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 3178 #define CAN_F2R1_FB21 CAN_F2R1_FB21_Msk /*!<Filter bit 21 */
lypinator 0:bb348c97df44 3179 #define CAN_F2R1_FB22_Pos (22U)
lypinator 0:bb348c97df44 3180 #define CAN_F2R1_FB22_Msk (0x1U << CAN_F2R1_FB22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 3181 #define CAN_F2R1_FB22 CAN_F2R1_FB22_Msk /*!<Filter bit 22 */
lypinator 0:bb348c97df44 3182 #define CAN_F2R1_FB23_Pos (23U)
lypinator 0:bb348c97df44 3183 #define CAN_F2R1_FB23_Msk (0x1U << CAN_F2R1_FB23_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 3184 #define CAN_F2R1_FB23 CAN_F2R1_FB23_Msk /*!<Filter bit 23 */
lypinator 0:bb348c97df44 3185 #define CAN_F2R1_FB24_Pos (24U)
lypinator 0:bb348c97df44 3186 #define CAN_F2R1_FB24_Msk (0x1U << CAN_F2R1_FB24_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 3187 #define CAN_F2R1_FB24 CAN_F2R1_FB24_Msk /*!<Filter bit 24 */
lypinator 0:bb348c97df44 3188 #define CAN_F2R1_FB25_Pos (25U)
lypinator 0:bb348c97df44 3189 #define CAN_F2R1_FB25_Msk (0x1U << CAN_F2R1_FB25_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 3190 #define CAN_F2R1_FB25 CAN_F2R1_FB25_Msk /*!<Filter bit 25 */
lypinator 0:bb348c97df44 3191 #define CAN_F2R1_FB26_Pos (26U)
lypinator 0:bb348c97df44 3192 #define CAN_F2R1_FB26_Msk (0x1U << CAN_F2R1_FB26_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 3193 #define CAN_F2R1_FB26 CAN_F2R1_FB26_Msk /*!<Filter bit 26 */
lypinator 0:bb348c97df44 3194 #define CAN_F2R1_FB27_Pos (27U)
lypinator 0:bb348c97df44 3195 #define CAN_F2R1_FB27_Msk (0x1U << CAN_F2R1_FB27_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 3196 #define CAN_F2R1_FB27 CAN_F2R1_FB27_Msk /*!<Filter bit 27 */
lypinator 0:bb348c97df44 3197 #define CAN_F2R1_FB28_Pos (28U)
lypinator 0:bb348c97df44 3198 #define CAN_F2R1_FB28_Msk (0x1U << CAN_F2R1_FB28_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 3199 #define CAN_F2R1_FB28 CAN_F2R1_FB28_Msk /*!<Filter bit 28 */
lypinator 0:bb348c97df44 3200 #define CAN_F2R1_FB29_Pos (29U)
lypinator 0:bb348c97df44 3201 #define CAN_F2R1_FB29_Msk (0x1U << CAN_F2R1_FB29_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 3202 #define CAN_F2R1_FB29 CAN_F2R1_FB29_Msk /*!<Filter bit 29 */
lypinator 0:bb348c97df44 3203 #define CAN_F2R1_FB30_Pos (30U)
lypinator 0:bb348c97df44 3204 #define CAN_F2R1_FB30_Msk (0x1U << CAN_F2R1_FB30_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 3205 #define CAN_F2R1_FB30 CAN_F2R1_FB30_Msk /*!<Filter bit 30 */
lypinator 0:bb348c97df44 3206 #define CAN_F2R1_FB31_Pos (31U)
lypinator 0:bb348c97df44 3207 #define CAN_F2R1_FB31_Msk (0x1U << CAN_F2R1_FB31_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 3208 #define CAN_F2R1_FB31 CAN_F2R1_FB31_Msk /*!<Filter bit 31 */
lypinator 0:bb348c97df44 3209
lypinator 0:bb348c97df44 3210 /******************* Bit definition for CAN_F3R1 register *******************/
lypinator 0:bb348c97df44 3211 #define CAN_F3R1_FB0_Pos (0U)
lypinator 0:bb348c97df44 3212 #define CAN_F3R1_FB0_Msk (0x1U << CAN_F3R1_FB0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 3213 #define CAN_F3R1_FB0 CAN_F3R1_FB0_Msk /*!<Filter bit 0 */
lypinator 0:bb348c97df44 3214 #define CAN_F3R1_FB1_Pos (1U)
lypinator 0:bb348c97df44 3215 #define CAN_F3R1_FB1_Msk (0x1U << CAN_F3R1_FB1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 3216 #define CAN_F3R1_FB1 CAN_F3R1_FB1_Msk /*!<Filter bit 1 */
lypinator 0:bb348c97df44 3217 #define CAN_F3R1_FB2_Pos (2U)
lypinator 0:bb348c97df44 3218 #define CAN_F3R1_FB2_Msk (0x1U << CAN_F3R1_FB2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 3219 #define CAN_F3R1_FB2 CAN_F3R1_FB2_Msk /*!<Filter bit 2 */
lypinator 0:bb348c97df44 3220 #define CAN_F3R1_FB3_Pos (3U)
lypinator 0:bb348c97df44 3221 #define CAN_F3R1_FB3_Msk (0x1U << CAN_F3R1_FB3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 3222 #define CAN_F3R1_FB3 CAN_F3R1_FB3_Msk /*!<Filter bit 3 */
lypinator 0:bb348c97df44 3223 #define CAN_F3R1_FB4_Pos (4U)
lypinator 0:bb348c97df44 3224 #define CAN_F3R1_FB4_Msk (0x1U << CAN_F3R1_FB4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 3225 #define CAN_F3R1_FB4 CAN_F3R1_FB4_Msk /*!<Filter bit 4 */
lypinator 0:bb348c97df44 3226 #define CAN_F3R1_FB5_Pos (5U)
lypinator 0:bb348c97df44 3227 #define CAN_F3R1_FB5_Msk (0x1U << CAN_F3R1_FB5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 3228 #define CAN_F3R1_FB5 CAN_F3R1_FB5_Msk /*!<Filter bit 5 */
lypinator 0:bb348c97df44 3229 #define CAN_F3R1_FB6_Pos (6U)
lypinator 0:bb348c97df44 3230 #define CAN_F3R1_FB6_Msk (0x1U << CAN_F3R1_FB6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 3231 #define CAN_F3R1_FB6 CAN_F3R1_FB6_Msk /*!<Filter bit 6 */
lypinator 0:bb348c97df44 3232 #define CAN_F3R1_FB7_Pos (7U)
lypinator 0:bb348c97df44 3233 #define CAN_F3R1_FB7_Msk (0x1U << CAN_F3R1_FB7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 3234 #define CAN_F3R1_FB7 CAN_F3R1_FB7_Msk /*!<Filter bit 7 */
lypinator 0:bb348c97df44 3235 #define CAN_F3R1_FB8_Pos (8U)
lypinator 0:bb348c97df44 3236 #define CAN_F3R1_FB8_Msk (0x1U << CAN_F3R1_FB8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 3237 #define CAN_F3R1_FB8 CAN_F3R1_FB8_Msk /*!<Filter bit 8 */
lypinator 0:bb348c97df44 3238 #define CAN_F3R1_FB9_Pos (9U)
lypinator 0:bb348c97df44 3239 #define CAN_F3R1_FB9_Msk (0x1U << CAN_F3R1_FB9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 3240 #define CAN_F3R1_FB9 CAN_F3R1_FB9_Msk /*!<Filter bit 9 */
lypinator 0:bb348c97df44 3241 #define CAN_F3R1_FB10_Pos (10U)
lypinator 0:bb348c97df44 3242 #define CAN_F3R1_FB10_Msk (0x1U << CAN_F3R1_FB10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 3243 #define CAN_F3R1_FB10 CAN_F3R1_FB10_Msk /*!<Filter bit 10 */
lypinator 0:bb348c97df44 3244 #define CAN_F3R1_FB11_Pos (11U)
lypinator 0:bb348c97df44 3245 #define CAN_F3R1_FB11_Msk (0x1U << CAN_F3R1_FB11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 3246 #define CAN_F3R1_FB11 CAN_F3R1_FB11_Msk /*!<Filter bit 11 */
lypinator 0:bb348c97df44 3247 #define CAN_F3R1_FB12_Pos (12U)
lypinator 0:bb348c97df44 3248 #define CAN_F3R1_FB12_Msk (0x1U << CAN_F3R1_FB12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 3249 #define CAN_F3R1_FB12 CAN_F3R1_FB12_Msk /*!<Filter bit 12 */
lypinator 0:bb348c97df44 3250 #define CAN_F3R1_FB13_Pos (13U)
lypinator 0:bb348c97df44 3251 #define CAN_F3R1_FB13_Msk (0x1U << CAN_F3R1_FB13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 3252 #define CAN_F3R1_FB13 CAN_F3R1_FB13_Msk /*!<Filter bit 13 */
lypinator 0:bb348c97df44 3253 #define CAN_F3R1_FB14_Pos (14U)
lypinator 0:bb348c97df44 3254 #define CAN_F3R1_FB14_Msk (0x1U << CAN_F3R1_FB14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 3255 #define CAN_F3R1_FB14 CAN_F3R1_FB14_Msk /*!<Filter bit 14 */
lypinator 0:bb348c97df44 3256 #define CAN_F3R1_FB15_Pos (15U)
lypinator 0:bb348c97df44 3257 #define CAN_F3R1_FB15_Msk (0x1U << CAN_F3R1_FB15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 3258 #define CAN_F3R1_FB15 CAN_F3R1_FB15_Msk /*!<Filter bit 15 */
lypinator 0:bb348c97df44 3259 #define CAN_F3R1_FB16_Pos (16U)
lypinator 0:bb348c97df44 3260 #define CAN_F3R1_FB16_Msk (0x1U << CAN_F3R1_FB16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 3261 #define CAN_F3R1_FB16 CAN_F3R1_FB16_Msk /*!<Filter bit 16 */
lypinator 0:bb348c97df44 3262 #define CAN_F3R1_FB17_Pos (17U)
lypinator 0:bb348c97df44 3263 #define CAN_F3R1_FB17_Msk (0x1U << CAN_F3R1_FB17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 3264 #define CAN_F3R1_FB17 CAN_F3R1_FB17_Msk /*!<Filter bit 17 */
lypinator 0:bb348c97df44 3265 #define CAN_F3R1_FB18_Pos (18U)
lypinator 0:bb348c97df44 3266 #define CAN_F3R1_FB18_Msk (0x1U << CAN_F3R1_FB18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 3267 #define CAN_F3R1_FB18 CAN_F3R1_FB18_Msk /*!<Filter bit 18 */
lypinator 0:bb348c97df44 3268 #define CAN_F3R1_FB19_Pos (19U)
lypinator 0:bb348c97df44 3269 #define CAN_F3R1_FB19_Msk (0x1U << CAN_F3R1_FB19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 3270 #define CAN_F3R1_FB19 CAN_F3R1_FB19_Msk /*!<Filter bit 19 */
lypinator 0:bb348c97df44 3271 #define CAN_F3R1_FB20_Pos (20U)
lypinator 0:bb348c97df44 3272 #define CAN_F3R1_FB20_Msk (0x1U << CAN_F3R1_FB20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 3273 #define CAN_F3R1_FB20 CAN_F3R1_FB20_Msk /*!<Filter bit 20 */
lypinator 0:bb348c97df44 3274 #define CAN_F3R1_FB21_Pos (21U)
lypinator 0:bb348c97df44 3275 #define CAN_F3R1_FB21_Msk (0x1U << CAN_F3R1_FB21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 3276 #define CAN_F3R1_FB21 CAN_F3R1_FB21_Msk /*!<Filter bit 21 */
lypinator 0:bb348c97df44 3277 #define CAN_F3R1_FB22_Pos (22U)
lypinator 0:bb348c97df44 3278 #define CAN_F3R1_FB22_Msk (0x1U << CAN_F3R1_FB22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 3279 #define CAN_F3R1_FB22 CAN_F3R1_FB22_Msk /*!<Filter bit 22 */
lypinator 0:bb348c97df44 3280 #define CAN_F3R1_FB23_Pos (23U)
lypinator 0:bb348c97df44 3281 #define CAN_F3R1_FB23_Msk (0x1U << CAN_F3R1_FB23_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 3282 #define CAN_F3R1_FB23 CAN_F3R1_FB23_Msk /*!<Filter bit 23 */
lypinator 0:bb348c97df44 3283 #define CAN_F3R1_FB24_Pos (24U)
lypinator 0:bb348c97df44 3284 #define CAN_F3R1_FB24_Msk (0x1U << CAN_F3R1_FB24_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 3285 #define CAN_F3R1_FB24 CAN_F3R1_FB24_Msk /*!<Filter bit 24 */
lypinator 0:bb348c97df44 3286 #define CAN_F3R1_FB25_Pos (25U)
lypinator 0:bb348c97df44 3287 #define CAN_F3R1_FB25_Msk (0x1U << CAN_F3R1_FB25_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 3288 #define CAN_F3R1_FB25 CAN_F3R1_FB25_Msk /*!<Filter bit 25 */
lypinator 0:bb348c97df44 3289 #define CAN_F3R1_FB26_Pos (26U)
lypinator 0:bb348c97df44 3290 #define CAN_F3R1_FB26_Msk (0x1U << CAN_F3R1_FB26_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 3291 #define CAN_F3R1_FB26 CAN_F3R1_FB26_Msk /*!<Filter bit 26 */
lypinator 0:bb348c97df44 3292 #define CAN_F3R1_FB27_Pos (27U)
lypinator 0:bb348c97df44 3293 #define CAN_F3R1_FB27_Msk (0x1U << CAN_F3R1_FB27_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 3294 #define CAN_F3R1_FB27 CAN_F3R1_FB27_Msk /*!<Filter bit 27 */
lypinator 0:bb348c97df44 3295 #define CAN_F3R1_FB28_Pos (28U)
lypinator 0:bb348c97df44 3296 #define CAN_F3R1_FB28_Msk (0x1U << CAN_F3R1_FB28_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 3297 #define CAN_F3R1_FB28 CAN_F3R1_FB28_Msk /*!<Filter bit 28 */
lypinator 0:bb348c97df44 3298 #define CAN_F3R1_FB29_Pos (29U)
lypinator 0:bb348c97df44 3299 #define CAN_F3R1_FB29_Msk (0x1U << CAN_F3R1_FB29_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 3300 #define CAN_F3R1_FB29 CAN_F3R1_FB29_Msk /*!<Filter bit 29 */
lypinator 0:bb348c97df44 3301 #define CAN_F3R1_FB30_Pos (30U)
lypinator 0:bb348c97df44 3302 #define CAN_F3R1_FB30_Msk (0x1U << CAN_F3R1_FB30_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 3303 #define CAN_F3R1_FB30 CAN_F3R1_FB30_Msk /*!<Filter bit 30 */
lypinator 0:bb348c97df44 3304 #define CAN_F3R1_FB31_Pos (31U)
lypinator 0:bb348c97df44 3305 #define CAN_F3R1_FB31_Msk (0x1U << CAN_F3R1_FB31_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 3306 #define CAN_F3R1_FB31 CAN_F3R1_FB31_Msk /*!<Filter bit 31 */
lypinator 0:bb348c97df44 3307
lypinator 0:bb348c97df44 3308 /******************* Bit definition for CAN_F4R1 register *******************/
lypinator 0:bb348c97df44 3309 #define CAN_F4R1_FB0_Pos (0U)
lypinator 0:bb348c97df44 3310 #define CAN_F4R1_FB0_Msk (0x1U << CAN_F4R1_FB0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 3311 #define CAN_F4R1_FB0 CAN_F4R1_FB0_Msk /*!<Filter bit 0 */
lypinator 0:bb348c97df44 3312 #define CAN_F4R1_FB1_Pos (1U)
lypinator 0:bb348c97df44 3313 #define CAN_F4R1_FB1_Msk (0x1U << CAN_F4R1_FB1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 3314 #define CAN_F4R1_FB1 CAN_F4R1_FB1_Msk /*!<Filter bit 1 */
lypinator 0:bb348c97df44 3315 #define CAN_F4R1_FB2_Pos (2U)
lypinator 0:bb348c97df44 3316 #define CAN_F4R1_FB2_Msk (0x1U << CAN_F4R1_FB2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 3317 #define CAN_F4R1_FB2 CAN_F4R1_FB2_Msk /*!<Filter bit 2 */
lypinator 0:bb348c97df44 3318 #define CAN_F4R1_FB3_Pos (3U)
lypinator 0:bb348c97df44 3319 #define CAN_F4R1_FB3_Msk (0x1U << CAN_F4R1_FB3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 3320 #define CAN_F4R1_FB3 CAN_F4R1_FB3_Msk /*!<Filter bit 3 */
lypinator 0:bb348c97df44 3321 #define CAN_F4R1_FB4_Pos (4U)
lypinator 0:bb348c97df44 3322 #define CAN_F4R1_FB4_Msk (0x1U << CAN_F4R1_FB4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 3323 #define CAN_F4R1_FB4 CAN_F4R1_FB4_Msk /*!<Filter bit 4 */
lypinator 0:bb348c97df44 3324 #define CAN_F4R1_FB5_Pos (5U)
lypinator 0:bb348c97df44 3325 #define CAN_F4R1_FB5_Msk (0x1U << CAN_F4R1_FB5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 3326 #define CAN_F4R1_FB5 CAN_F4R1_FB5_Msk /*!<Filter bit 5 */
lypinator 0:bb348c97df44 3327 #define CAN_F4R1_FB6_Pos (6U)
lypinator 0:bb348c97df44 3328 #define CAN_F4R1_FB6_Msk (0x1U << CAN_F4R1_FB6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 3329 #define CAN_F4R1_FB6 CAN_F4R1_FB6_Msk /*!<Filter bit 6 */
lypinator 0:bb348c97df44 3330 #define CAN_F4R1_FB7_Pos (7U)
lypinator 0:bb348c97df44 3331 #define CAN_F4R1_FB7_Msk (0x1U << CAN_F4R1_FB7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 3332 #define CAN_F4R1_FB7 CAN_F4R1_FB7_Msk /*!<Filter bit 7 */
lypinator 0:bb348c97df44 3333 #define CAN_F4R1_FB8_Pos (8U)
lypinator 0:bb348c97df44 3334 #define CAN_F4R1_FB8_Msk (0x1U << CAN_F4R1_FB8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 3335 #define CAN_F4R1_FB8 CAN_F4R1_FB8_Msk /*!<Filter bit 8 */
lypinator 0:bb348c97df44 3336 #define CAN_F4R1_FB9_Pos (9U)
lypinator 0:bb348c97df44 3337 #define CAN_F4R1_FB9_Msk (0x1U << CAN_F4R1_FB9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 3338 #define CAN_F4R1_FB9 CAN_F4R1_FB9_Msk /*!<Filter bit 9 */
lypinator 0:bb348c97df44 3339 #define CAN_F4R1_FB10_Pos (10U)
lypinator 0:bb348c97df44 3340 #define CAN_F4R1_FB10_Msk (0x1U << CAN_F4R1_FB10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 3341 #define CAN_F4R1_FB10 CAN_F4R1_FB10_Msk /*!<Filter bit 10 */
lypinator 0:bb348c97df44 3342 #define CAN_F4R1_FB11_Pos (11U)
lypinator 0:bb348c97df44 3343 #define CAN_F4R1_FB11_Msk (0x1U << CAN_F4R1_FB11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 3344 #define CAN_F4R1_FB11 CAN_F4R1_FB11_Msk /*!<Filter bit 11 */
lypinator 0:bb348c97df44 3345 #define CAN_F4R1_FB12_Pos (12U)
lypinator 0:bb348c97df44 3346 #define CAN_F4R1_FB12_Msk (0x1U << CAN_F4R1_FB12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 3347 #define CAN_F4R1_FB12 CAN_F4R1_FB12_Msk /*!<Filter bit 12 */
lypinator 0:bb348c97df44 3348 #define CAN_F4R1_FB13_Pos (13U)
lypinator 0:bb348c97df44 3349 #define CAN_F4R1_FB13_Msk (0x1U << CAN_F4R1_FB13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 3350 #define CAN_F4R1_FB13 CAN_F4R1_FB13_Msk /*!<Filter bit 13 */
lypinator 0:bb348c97df44 3351 #define CAN_F4R1_FB14_Pos (14U)
lypinator 0:bb348c97df44 3352 #define CAN_F4R1_FB14_Msk (0x1U << CAN_F4R1_FB14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 3353 #define CAN_F4R1_FB14 CAN_F4R1_FB14_Msk /*!<Filter bit 14 */
lypinator 0:bb348c97df44 3354 #define CAN_F4R1_FB15_Pos (15U)
lypinator 0:bb348c97df44 3355 #define CAN_F4R1_FB15_Msk (0x1U << CAN_F4R1_FB15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 3356 #define CAN_F4R1_FB15 CAN_F4R1_FB15_Msk /*!<Filter bit 15 */
lypinator 0:bb348c97df44 3357 #define CAN_F4R1_FB16_Pos (16U)
lypinator 0:bb348c97df44 3358 #define CAN_F4R1_FB16_Msk (0x1U << CAN_F4R1_FB16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 3359 #define CAN_F4R1_FB16 CAN_F4R1_FB16_Msk /*!<Filter bit 16 */
lypinator 0:bb348c97df44 3360 #define CAN_F4R1_FB17_Pos (17U)
lypinator 0:bb348c97df44 3361 #define CAN_F4R1_FB17_Msk (0x1U << CAN_F4R1_FB17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 3362 #define CAN_F4R1_FB17 CAN_F4R1_FB17_Msk /*!<Filter bit 17 */
lypinator 0:bb348c97df44 3363 #define CAN_F4R1_FB18_Pos (18U)
lypinator 0:bb348c97df44 3364 #define CAN_F4R1_FB18_Msk (0x1U << CAN_F4R1_FB18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 3365 #define CAN_F4R1_FB18 CAN_F4R1_FB18_Msk /*!<Filter bit 18 */
lypinator 0:bb348c97df44 3366 #define CAN_F4R1_FB19_Pos (19U)
lypinator 0:bb348c97df44 3367 #define CAN_F4R1_FB19_Msk (0x1U << CAN_F4R1_FB19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 3368 #define CAN_F4R1_FB19 CAN_F4R1_FB19_Msk /*!<Filter bit 19 */
lypinator 0:bb348c97df44 3369 #define CAN_F4R1_FB20_Pos (20U)
lypinator 0:bb348c97df44 3370 #define CAN_F4R1_FB20_Msk (0x1U << CAN_F4R1_FB20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 3371 #define CAN_F4R1_FB20 CAN_F4R1_FB20_Msk /*!<Filter bit 20 */
lypinator 0:bb348c97df44 3372 #define CAN_F4R1_FB21_Pos (21U)
lypinator 0:bb348c97df44 3373 #define CAN_F4R1_FB21_Msk (0x1U << CAN_F4R1_FB21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 3374 #define CAN_F4R1_FB21 CAN_F4R1_FB21_Msk /*!<Filter bit 21 */
lypinator 0:bb348c97df44 3375 #define CAN_F4R1_FB22_Pos (22U)
lypinator 0:bb348c97df44 3376 #define CAN_F4R1_FB22_Msk (0x1U << CAN_F4R1_FB22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 3377 #define CAN_F4R1_FB22 CAN_F4R1_FB22_Msk /*!<Filter bit 22 */
lypinator 0:bb348c97df44 3378 #define CAN_F4R1_FB23_Pos (23U)
lypinator 0:bb348c97df44 3379 #define CAN_F4R1_FB23_Msk (0x1U << CAN_F4R1_FB23_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 3380 #define CAN_F4R1_FB23 CAN_F4R1_FB23_Msk /*!<Filter bit 23 */
lypinator 0:bb348c97df44 3381 #define CAN_F4R1_FB24_Pos (24U)
lypinator 0:bb348c97df44 3382 #define CAN_F4R1_FB24_Msk (0x1U << CAN_F4R1_FB24_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 3383 #define CAN_F4R1_FB24 CAN_F4R1_FB24_Msk /*!<Filter bit 24 */
lypinator 0:bb348c97df44 3384 #define CAN_F4R1_FB25_Pos (25U)
lypinator 0:bb348c97df44 3385 #define CAN_F4R1_FB25_Msk (0x1U << CAN_F4R1_FB25_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 3386 #define CAN_F4R1_FB25 CAN_F4R1_FB25_Msk /*!<Filter bit 25 */
lypinator 0:bb348c97df44 3387 #define CAN_F4R1_FB26_Pos (26U)
lypinator 0:bb348c97df44 3388 #define CAN_F4R1_FB26_Msk (0x1U << CAN_F4R1_FB26_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 3389 #define CAN_F4R1_FB26 CAN_F4R1_FB26_Msk /*!<Filter bit 26 */
lypinator 0:bb348c97df44 3390 #define CAN_F4R1_FB27_Pos (27U)
lypinator 0:bb348c97df44 3391 #define CAN_F4R1_FB27_Msk (0x1U << CAN_F4R1_FB27_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 3392 #define CAN_F4R1_FB27 CAN_F4R1_FB27_Msk /*!<Filter bit 27 */
lypinator 0:bb348c97df44 3393 #define CAN_F4R1_FB28_Pos (28U)
lypinator 0:bb348c97df44 3394 #define CAN_F4R1_FB28_Msk (0x1U << CAN_F4R1_FB28_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 3395 #define CAN_F4R1_FB28 CAN_F4R1_FB28_Msk /*!<Filter bit 28 */
lypinator 0:bb348c97df44 3396 #define CAN_F4R1_FB29_Pos (29U)
lypinator 0:bb348c97df44 3397 #define CAN_F4R1_FB29_Msk (0x1U << CAN_F4R1_FB29_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 3398 #define CAN_F4R1_FB29 CAN_F4R1_FB29_Msk /*!<Filter bit 29 */
lypinator 0:bb348c97df44 3399 #define CAN_F4R1_FB30_Pos (30U)
lypinator 0:bb348c97df44 3400 #define CAN_F4R1_FB30_Msk (0x1U << CAN_F4R1_FB30_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 3401 #define CAN_F4R1_FB30 CAN_F4R1_FB30_Msk /*!<Filter bit 30 */
lypinator 0:bb348c97df44 3402 #define CAN_F4R1_FB31_Pos (31U)
lypinator 0:bb348c97df44 3403 #define CAN_F4R1_FB31_Msk (0x1U << CAN_F4R1_FB31_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 3404 #define CAN_F4R1_FB31 CAN_F4R1_FB31_Msk /*!<Filter bit 31 */
lypinator 0:bb348c97df44 3405
lypinator 0:bb348c97df44 3406 /******************* Bit definition for CAN_F5R1 register *******************/
lypinator 0:bb348c97df44 3407 #define CAN_F5R1_FB0_Pos (0U)
lypinator 0:bb348c97df44 3408 #define CAN_F5R1_FB0_Msk (0x1U << CAN_F5R1_FB0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 3409 #define CAN_F5R1_FB0 CAN_F5R1_FB0_Msk /*!<Filter bit 0 */
lypinator 0:bb348c97df44 3410 #define CAN_F5R1_FB1_Pos (1U)
lypinator 0:bb348c97df44 3411 #define CAN_F5R1_FB1_Msk (0x1U << CAN_F5R1_FB1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 3412 #define CAN_F5R1_FB1 CAN_F5R1_FB1_Msk /*!<Filter bit 1 */
lypinator 0:bb348c97df44 3413 #define CAN_F5R1_FB2_Pos (2U)
lypinator 0:bb348c97df44 3414 #define CAN_F5R1_FB2_Msk (0x1U << CAN_F5R1_FB2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 3415 #define CAN_F5R1_FB2 CAN_F5R1_FB2_Msk /*!<Filter bit 2 */
lypinator 0:bb348c97df44 3416 #define CAN_F5R1_FB3_Pos (3U)
lypinator 0:bb348c97df44 3417 #define CAN_F5R1_FB3_Msk (0x1U << CAN_F5R1_FB3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 3418 #define CAN_F5R1_FB3 CAN_F5R1_FB3_Msk /*!<Filter bit 3 */
lypinator 0:bb348c97df44 3419 #define CAN_F5R1_FB4_Pos (4U)
lypinator 0:bb348c97df44 3420 #define CAN_F5R1_FB4_Msk (0x1U << CAN_F5R1_FB4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 3421 #define CAN_F5R1_FB4 CAN_F5R1_FB4_Msk /*!<Filter bit 4 */
lypinator 0:bb348c97df44 3422 #define CAN_F5R1_FB5_Pos (5U)
lypinator 0:bb348c97df44 3423 #define CAN_F5R1_FB5_Msk (0x1U << CAN_F5R1_FB5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 3424 #define CAN_F5R1_FB5 CAN_F5R1_FB5_Msk /*!<Filter bit 5 */
lypinator 0:bb348c97df44 3425 #define CAN_F5R1_FB6_Pos (6U)
lypinator 0:bb348c97df44 3426 #define CAN_F5R1_FB6_Msk (0x1U << CAN_F5R1_FB6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 3427 #define CAN_F5R1_FB6 CAN_F5R1_FB6_Msk /*!<Filter bit 6 */
lypinator 0:bb348c97df44 3428 #define CAN_F5R1_FB7_Pos (7U)
lypinator 0:bb348c97df44 3429 #define CAN_F5R1_FB7_Msk (0x1U << CAN_F5R1_FB7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 3430 #define CAN_F5R1_FB7 CAN_F5R1_FB7_Msk /*!<Filter bit 7 */
lypinator 0:bb348c97df44 3431 #define CAN_F5R1_FB8_Pos (8U)
lypinator 0:bb348c97df44 3432 #define CAN_F5R1_FB8_Msk (0x1U << CAN_F5R1_FB8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 3433 #define CAN_F5R1_FB8 CAN_F5R1_FB8_Msk /*!<Filter bit 8 */
lypinator 0:bb348c97df44 3434 #define CAN_F5R1_FB9_Pos (9U)
lypinator 0:bb348c97df44 3435 #define CAN_F5R1_FB9_Msk (0x1U << CAN_F5R1_FB9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 3436 #define CAN_F5R1_FB9 CAN_F5R1_FB9_Msk /*!<Filter bit 9 */
lypinator 0:bb348c97df44 3437 #define CAN_F5R1_FB10_Pos (10U)
lypinator 0:bb348c97df44 3438 #define CAN_F5R1_FB10_Msk (0x1U << CAN_F5R1_FB10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 3439 #define CAN_F5R1_FB10 CAN_F5R1_FB10_Msk /*!<Filter bit 10 */
lypinator 0:bb348c97df44 3440 #define CAN_F5R1_FB11_Pos (11U)
lypinator 0:bb348c97df44 3441 #define CAN_F5R1_FB11_Msk (0x1U << CAN_F5R1_FB11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 3442 #define CAN_F5R1_FB11 CAN_F5R1_FB11_Msk /*!<Filter bit 11 */
lypinator 0:bb348c97df44 3443 #define CAN_F5R1_FB12_Pos (12U)
lypinator 0:bb348c97df44 3444 #define CAN_F5R1_FB12_Msk (0x1U << CAN_F5R1_FB12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 3445 #define CAN_F5R1_FB12 CAN_F5R1_FB12_Msk /*!<Filter bit 12 */
lypinator 0:bb348c97df44 3446 #define CAN_F5R1_FB13_Pos (13U)
lypinator 0:bb348c97df44 3447 #define CAN_F5R1_FB13_Msk (0x1U << CAN_F5R1_FB13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 3448 #define CAN_F5R1_FB13 CAN_F5R1_FB13_Msk /*!<Filter bit 13 */
lypinator 0:bb348c97df44 3449 #define CAN_F5R1_FB14_Pos (14U)
lypinator 0:bb348c97df44 3450 #define CAN_F5R1_FB14_Msk (0x1U << CAN_F5R1_FB14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 3451 #define CAN_F5R1_FB14 CAN_F5R1_FB14_Msk /*!<Filter bit 14 */
lypinator 0:bb348c97df44 3452 #define CAN_F5R1_FB15_Pos (15U)
lypinator 0:bb348c97df44 3453 #define CAN_F5R1_FB15_Msk (0x1U << CAN_F5R1_FB15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 3454 #define CAN_F5R1_FB15 CAN_F5R1_FB15_Msk /*!<Filter bit 15 */
lypinator 0:bb348c97df44 3455 #define CAN_F5R1_FB16_Pos (16U)
lypinator 0:bb348c97df44 3456 #define CAN_F5R1_FB16_Msk (0x1U << CAN_F5R1_FB16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 3457 #define CAN_F5R1_FB16 CAN_F5R1_FB16_Msk /*!<Filter bit 16 */
lypinator 0:bb348c97df44 3458 #define CAN_F5R1_FB17_Pos (17U)
lypinator 0:bb348c97df44 3459 #define CAN_F5R1_FB17_Msk (0x1U << CAN_F5R1_FB17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 3460 #define CAN_F5R1_FB17 CAN_F5R1_FB17_Msk /*!<Filter bit 17 */
lypinator 0:bb348c97df44 3461 #define CAN_F5R1_FB18_Pos (18U)
lypinator 0:bb348c97df44 3462 #define CAN_F5R1_FB18_Msk (0x1U << CAN_F5R1_FB18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 3463 #define CAN_F5R1_FB18 CAN_F5R1_FB18_Msk /*!<Filter bit 18 */
lypinator 0:bb348c97df44 3464 #define CAN_F5R1_FB19_Pos (19U)
lypinator 0:bb348c97df44 3465 #define CAN_F5R1_FB19_Msk (0x1U << CAN_F5R1_FB19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 3466 #define CAN_F5R1_FB19 CAN_F5R1_FB19_Msk /*!<Filter bit 19 */
lypinator 0:bb348c97df44 3467 #define CAN_F5R1_FB20_Pos (20U)
lypinator 0:bb348c97df44 3468 #define CAN_F5R1_FB20_Msk (0x1U << CAN_F5R1_FB20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 3469 #define CAN_F5R1_FB20 CAN_F5R1_FB20_Msk /*!<Filter bit 20 */
lypinator 0:bb348c97df44 3470 #define CAN_F5R1_FB21_Pos (21U)
lypinator 0:bb348c97df44 3471 #define CAN_F5R1_FB21_Msk (0x1U << CAN_F5R1_FB21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 3472 #define CAN_F5R1_FB21 CAN_F5R1_FB21_Msk /*!<Filter bit 21 */
lypinator 0:bb348c97df44 3473 #define CAN_F5R1_FB22_Pos (22U)
lypinator 0:bb348c97df44 3474 #define CAN_F5R1_FB22_Msk (0x1U << CAN_F5R1_FB22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 3475 #define CAN_F5R1_FB22 CAN_F5R1_FB22_Msk /*!<Filter bit 22 */
lypinator 0:bb348c97df44 3476 #define CAN_F5R1_FB23_Pos (23U)
lypinator 0:bb348c97df44 3477 #define CAN_F5R1_FB23_Msk (0x1U << CAN_F5R1_FB23_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 3478 #define CAN_F5R1_FB23 CAN_F5R1_FB23_Msk /*!<Filter bit 23 */
lypinator 0:bb348c97df44 3479 #define CAN_F5R1_FB24_Pos (24U)
lypinator 0:bb348c97df44 3480 #define CAN_F5R1_FB24_Msk (0x1U << CAN_F5R1_FB24_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 3481 #define CAN_F5R1_FB24 CAN_F5R1_FB24_Msk /*!<Filter bit 24 */
lypinator 0:bb348c97df44 3482 #define CAN_F5R1_FB25_Pos (25U)
lypinator 0:bb348c97df44 3483 #define CAN_F5R1_FB25_Msk (0x1U << CAN_F5R1_FB25_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 3484 #define CAN_F5R1_FB25 CAN_F5R1_FB25_Msk /*!<Filter bit 25 */
lypinator 0:bb348c97df44 3485 #define CAN_F5R1_FB26_Pos (26U)
lypinator 0:bb348c97df44 3486 #define CAN_F5R1_FB26_Msk (0x1U << CAN_F5R1_FB26_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 3487 #define CAN_F5R1_FB26 CAN_F5R1_FB26_Msk /*!<Filter bit 26 */
lypinator 0:bb348c97df44 3488 #define CAN_F5R1_FB27_Pos (27U)
lypinator 0:bb348c97df44 3489 #define CAN_F5R1_FB27_Msk (0x1U << CAN_F5R1_FB27_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 3490 #define CAN_F5R1_FB27 CAN_F5R1_FB27_Msk /*!<Filter bit 27 */
lypinator 0:bb348c97df44 3491 #define CAN_F5R1_FB28_Pos (28U)
lypinator 0:bb348c97df44 3492 #define CAN_F5R1_FB28_Msk (0x1U << CAN_F5R1_FB28_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 3493 #define CAN_F5R1_FB28 CAN_F5R1_FB28_Msk /*!<Filter bit 28 */
lypinator 0:bb348c97df44 3494 #define CAN_F5R1_FB29_Pos (29U)
lypinator 0:bb348c97df44 3495 #define CAN_F5R1_FB29_Msk (0x1U << CAN_F5R1_FB29_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 3496 #define CAN_F5R1_FB29 CAN_F5R1_FB29_Msk /*!<Filter bit 29 */
lypinator 0:bb348c97df44 3497 #define CAN_F5R1_FB30_Pos (30U)
lypinator 0:bb348c97df44 3498 #define CAN_F5R1_FB30_Msk (0x1U << CAN_F5R1_FB30_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 3499 #define CAN_F5R1_FB30 CAN_F5R1_FB30_Msk /*!<Filter bit 30 */
lypinator 0:bb348c97df44 3500 #define CAN_F5R1_FB31_Pos (31U)
lypinator 0:bb348c97df44 3501 #define CAN_F5R1_FB31_Msk (0x1U << CAN_F5R1_FB31_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 3502 #define CAN_F5R1_FB31 CAN_F5R1_FB31_Msk /*!<Filter bit 31 */
lypinator 0:bb348c97df44 3503
lypinator 0:bb348c97df44 3504 /******************* Bit definition for CAN_F6R1 register *******************/
lypinator 0:bb348c97df44 3505 #define CAN_F6R1_FB0_Pos (0U)
lypinator 0:bb348c97df44 3506 #define CAN_F6R1_FB0_Msk (0x1U << CAN_F6R1_FB0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 3507 #define CAN_F6R1_FB0 CAN_F6R1_FB0_Msk /*!<Filter bit 0 */
lypinator 0:bb348c97df44 3508 #define CAN_F6R1_FB1_Pos (1U)
lypinator 0:bb348c97df44 3509 #define CAN_F6R1_FB1_Msk (0x1U << CAN_F6R1_FB1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 3510 #define CAN_F6R1_FB1 CAN_F6R1_FB1_Msk /*!<Filter bit 1 */
lypinator 0:bb348c97df44 3511 #define CAN_F6R1_FB2_Pos (2U)
lypinator 0:bb348c97df44 3512 #define CAN_F6R1_FB2_Msk (0x1U << CAN_F6R1_FB2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 3513 #define CAN_F6R1_FB2 CAN_F6R1_FB2_Msk /*!<Filter bit 2 */
lypinator 0:bb348c97df44 3514 #define CAN_F6R1_FB3_Pos (3U)
lypinator 0:bb348c97df44 3515 #define CAN_F6R1_FB3_Msk (0x1U << CAN_F6R1_FB3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 3516 #define CAN_F6R1_FB3 CAN_F6R1_FB3_Msk /*!<Filter bit 3 */
lypinator 0:bb348c97df44 3517 #define CAN_F6R1_FB4_Pos (4U)
lypinator 0:bb348c97df44 3518 #define CAN_F6R1_FB4_Msk (0x1U << CAN_F6R1_FB4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 3519 #define CAN_F6R1_FB4 CAN_F6R1_FB4_Msk /*!<Filter bit 4 */
lypinator 0:bb348c97df44 3520 #define CAN_F6R1_FB5_Pos (5U)
lypinator 0:bb348c97df44 3521 #define CAN_F6R1_FB5_Msk (0x1U << CAN_F6R1_FB5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 3522 #define CAN_F6R1_FB5 CAN_F6R1_FB5_Msk /*!<Filter bit 5 */
lypinator 0:bb348c97df44 3523 #define CAN_F6R1_FB6_Pos (6U)
lypinator 0:bb348c97df44 3524 #define CAN_F6R1_FB6_Msk (0x1U << CAN_F6R1_FB6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 3525 #define CAN_F6R1_FB6 CAN_F6R1_FB6_Msk /*!<Filter bit 6 */
lypinator 0:bb348c97df44 3526 #define CAN_F6R1_FB7_Pos (7U)
lypinator 0:bb348c97df44 3527 #define CAN_F6R1_FB7_Msk (0x1U << CAN_F6R1_FB7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 3528 #define CAN_F6R1_FB7 CAN_F6R1_FB7_Msk /*!<Filter bit 7 */
lypinator 0:bb348c97df44 3529 #define CAN_F6R1_FB8_Pos (8U)
lypinator 0:bb348c97df44 3530 #define CAN_F6R1_FB8_Msk (0x1U << CAN_F6R1_FB8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 3531 #define CAN_F6R1_FB8 CAN_F6R1_FB8_Msk /*!<Filter bit 8 */
lypinator 0:bb348c97df44 3532 #define CAN_F6R1_FB9_Pos (9U)
lypinator 0:bb348c97df44 3533 #define CAN_F6R1_FB9_Msk (0x1U << CAN_F6R1_FB9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 3534 #define CAN_F6R1_FB9 CAN_F6R1_FB9_Msk /*!<Filter bit 9 */
lypinator 0:bb348c97df44 3535 #define CAN_F6R1_FB10_Pos (10U)
lypinator 0:bb348c97df44 3536 #define CAN_F6R1_FB10_Msk (0x1U << CAN_F6R1_FB10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 3537 #define CAN_F6R1_FB10 CAN_F6R1_FB10_Msk /*!<Filter bit 10 */
lypinator 0:bb348c97df44 3538 #define CAN_F6R1_FB11_Pos (11U)
lypinator 0:bb348c97df44 3539 #define CAN_F6R1_FB11_Msk (0x1U << CAN_F6R1_FB11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 3540 #define CAN_F6R1_FB11 CAN_F6R1_FB11_Msk /*!<Filter bit 11 */
lypinator 0:bb348c97df44 3541 #define CAN_F6R1_FB12_Pos (12U)
lypinator 0:bb348c97df44 3542 #define CAN_F6R1_FB12_Msk (0x1U << CAN_F6R1_FB12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 3543 #define CAN_F6R1_FB12 CAN_F6R1_FB12_Msk /*!<Filter bit 12 */
lypinator 0:bb348c97df44 3544 #define CAN_F6R1_FB13_Pos (13U)
lypinator 0:bb348c97df44 3545 #define CAN_F6R1_FB13_Msk (0x1U << CAN_F6R1_FB13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 3546 #define CAN_F6R1_FB13 CAN_F6R1_FB13_Msk /*!<Filter bit 13 */
lypinator 0:bb348c97df44 3547 #define CAN_F6R1_FB14_Pos (14U)
lypinator 0:bb348c97df44 3548 #define CAN_F6R1_FB14_Msk (0x1U << CAN_F6R1_FB14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 3549 #define CAN_F6R1_FB14 CAN_F6R1_FB14_Msk /*!<Filter bit 14 */
lypinator 0:bb348c97df44 3550 #define CAN_F6R1_FB15_Pos (15U)
lypinator 0:bb348c97df44 3551 #define CAN_F6R1_FB15_Msk (0x1U << CAN_F6R1_FB15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 3552 #define CAN_F6R1_FB15 CAN_F6R1_FB15_Msk /*!<Filter bit 15 */
lypinator 0:bb348c97df44 3553 #define CAN_F6R1_FB16_Pos (16U)
lypinator 0:bb348c97df44 3554 #define CAN_F6R1_FB16_Msk (0x1U << CAN_F6R1_FB16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 3555 #define CAN_F6R1_FB16 CAN_F6R1_FB16_Msk /*!<Filter bit 16 */
lypinator 0:bb348c97df44 3556 #define CAN_F6R1_FB17_Pos (17U)
lypinator 0:bb348c97df44 3557 #define CAN_F6R1_FB17_Msk (0x1U << CAN_F6R1_FB17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 3558 #define CAN_F6R1_FB17 CAN_F6R1_FB17_Msk /*!<Filter bit 17 */
lypinator 0:bb348c97df44 3559 #define CAN_F6R1_FB18_Pos (18U)
lypinator 0:bb348c97df44 3560 #define CAN_F6R1_FB18_Msk (0x1U << CAN_F6R1_FB18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 3561 #define CAN_F6R1_FB18 CAN_F6R1_FB18_Msk /*!<Filter bit 18 */
lypinator 0:bb348c97df44 3562 #define CAN_F6R1_FB19_Pos (19U)
lypinator 0:bb348c97df44 3563 #define CAN_F6R1_FB19_Msk (0x1U << CAN_F6R1_FB19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 3564 #define CAN_F6R1_FB19 CAN_F6R1_FB19_Msk /*!<Filter bit 19 */
lypinator 0:bb348c97df44 3565 #define CAN_F6R1_FB20_Pos (20U)
lypinator 0:bb348c97df44 3566 #define CAN_F6R1_FB20_Msk (0x1U << CAN_F6R1_FB20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 3567 #define CAN_F6R1_FB20 CAN_F6R1_FB20_Msk /*!<Filter bit 20 */
lypinator 0:bb348c97df44 3568 #define CAN_F6R1_FB21_Pos (21U)
lypinator 0:bb348c97df44 3569 #define CAN_F6R1_FB21_Msk (0x1U << CAN_F6R1_FB21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 3570 #define CAN_F6R1_FB21 CAN_F6R1_FB21_Msk /*!<Filter bit 21 */
lypinator 0:bb348c97df44 3571 #define CAN_F6R1_FB22_Pos (22U)
lypinator 0:bb348c97df44 3572 #define CAN_F6R1_FB22_Msk (0x1U << CAN_F6R1_FB22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 3573 #define CAN_F6R1_FB22 CAN_F6R1_FB22_Msk /*!<Filter bit 22 */
lypinator 0:bb348c97df44 3574 #define CAN_F6R1_FB23_Pos (23U)
lypinator 0:bb348c97df44 3575 #define CAN_F6R1_FB23_Msk (0x1U << CAN_F6R1_FB23_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 3576 #define CAN_F6R1_FB23 CAN_F6R1_FB23_Msk /*!<Filter bit 23 */
lypinator 0:bb348c97df44 3577 #define CAN_F6R1_FB24_Pos (24U)
lypinator 0:bb348c97df44 3578 #define CAN_F6R1_FB24_Msk (0x1U << CAN_F6R1_FB24_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 3579 #define CAN_F6R1_FB24 CAN_F6R1_FB24_Msk /*!<Filter bit 24 */
lypinator 0:bb348c97df44 3580 #define CAN_F6R1_FB25_Pos (25U)
lypinator 0:bb348c97df44 3581 #define CAN_F6R1_FB25_Msk (0x1U << CAN_F6R1_FB25_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 3582 #define CAN_F6R1_FB25 CAN_F6R1_FB25_Msk /*!<Filter bit 25 */
lypinator 0:bb348c97df44 3583 #define CAN_F6R1_FB26_Pos (26U)
lypinator 0:bb348c97df44 3584 #define CAN_F6R1_FB26_Msk (0x1U << CAN_F6R1_FB26_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 3585 #define CAN_F6R1_FB26 CAN_F6R1_FB26_Msk /*!<Filter bit 26 */
lypinator 0:bb348c97df44 3586 #define CAN_F6R1_FB27_Pos (27U)
lypinator 0:bb348c97df44 3587 #define CAN_F6R1_FB27_Msk (0x1U << CAN_F6R1_FB27_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 3588 #define CAN_F6R1_FB27 CAN_F6R1_FB27_Msk /*!<Filter bit 27 */
lypinator 0:bb348c97df44 3589 #define CAN_F6R1_FB28_Pos (28U)
lypinator 0:bb348c97df44 3590 #define CAN_F6R1_FB28_Msk (0x1U << CAN_F6R1_FB28_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 3591 #define CAN_F6R1_FB28 CAN_F6R1_FB28_Msk /*!<Filter bit 28 */
lypinator 0:bb348c97df44 3592 #define CAN_F6R1_FB29_Pos (29U)
lypinator 0:bb348c97df44 3593 #define CAN_F6R1_FB29_Msk (0x1U << CAN_F6R1_FB29_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 3594 #define CAN_F6R1_FB29 CAN_F6R1_FB29_Msk /*!<Filter bit 29 */
lypinator 0:bb348c97df44 3595 #define CAN_F6R1_FB30_Pos (30U)
lypinator 0:bb348c97df44 3596 #define CAN_F6R1_FB30_Msk (0x1U << CAN_F6R1_FB30_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 3597 #define CAN_F6R1_FB30 CAN_F6R1_FB30_Msk /*!<Filter bit 30 */
lypinator 0:bb348c97df44 3598 #define CAN_F6R1_FB31_Pos (31U)
lypinator 0:bb348c97df44 3599 #define CAN_F6R1_FB31_Msk (0x1U << CAN_F6R1_FB31_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 3600 #define CAN_F6R1_FB31 CAN_F6R1_FB31_Msk /*!<Filter bit 31 */
lypinator 0:bb348c97df44 3601
lypinator 0:bb348c97df44 3602 /******************* Bit definition for CAN_F7R1 register *******************/
lypinator 0:bb348c97df44 3603 #define CAN_F7R1_FB0_Pos (0U)
lypinator 0:bb348c97df44 3604 #define CAN_F7R1_FB0_Msk (0x1U << CAN_F7R1_FB0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 3605 #define CAN_F7R1_FB0 CAN_F7R1_FB0_Msk /*!<Filter bit 0 */
lypinator 0:bb348c97df44 3606 #define CAN_F7R1_FB1_Pos (1U)
lypinator 0:bb348c97df44 3607 #define CAN_F7R1_FB1_Msk (0x1U << CAN_F7R1_FB1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 3608 #define CAN_F7R1_FB1 CAN_F7R1_FB1_Msk /*!<Filter bit 1 */
lypinator 0:bb348c97df44 3609 #define CAN_F7R1_FB2_Pos (2U)
lypinator 0:bb348c97df44 3610 #define CAN_F7R1_FB2_Msk (0x1U << CAN_F7R1_FB2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 3611 #define CAN_F7R1_FB2 CAN_F7R1_FB2_Msk /*!<Filter bit 2 */
lypinator 0:bb348c97df44 3612 #define CAN_F7R1_FB3_Pos (3U)
lypinator 0:bb348c97df44 3613 #define CAN_F7R1_FB3_Msk (0x1U << CAN_F7R1_FB3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 3614 #define CAN_F7R1_FB3 CAN_F7R1_FB3_Msk /*!<Filter bit 3 */
lypinator 0:bb348c97df44 3615 #define CAN_F7R1_FB4_Pos (4U)
lypinator 0:bb348c97df44 3616 #define CAN_F7R1_FB4_Msk (0x1U << CAN_F7R1_FB4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 3617 #define CAN_F7R1_FB4 CAN_F7R1_FB4_Msk /*!<Filter bit 4 */
lypinator 0:bb348c97df44 3618 #define CAN_F7R1_FB5_Pos (5U)
lypinator 0:bb348c97df44 3619 #define CAN_F7R1_FB5_Msk (0x1U << CAN_F7R1_FB5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 3620 #define CAN_F7R1_FB5 CAN_F7R1_FB5_Msk /*!<Filter bit 5 */
lypinator 0:bb348c97df44 3621 #define CAN_F7R1_FB6_Pos (6U)
lypinator 0:bb348c97df44 3622 #define CAN_F7R1_FB6_Msk (0x1U << CAN_F7R1_FB6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 3623 #define CAN_F7R1_FB6 CAN_F7R1_FB6_Msk /*!<Filter bit 6 */
lypinator 0:bb348c97df44 3624 #define CAN_F7R1_FB7_Pos (7U)
lypinator 0:bb348c97df44 3625 #define CAN_F7R1_FB7_Msk (0x1U << CAN_F7R1_FB7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 3626 #define CAN_F7R1_FB7 CAN_F7R1_FB7_Msk /*!<Filter bit 7 */
lypinator 0:bb348c97df44 3627 #define CAN_F7R1_FB8_Pos (8U)
lypinator 0:bb348c97df44 3628 #define CAN_F7R1_FB8_Msk (0x1U << CAN_F7R1_FB8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 3629 #define CAN_F7R1_FB8 CAN_F7R1_FB8_Msk /*!<Filter bit 8 */
lypinator 0:bb348c97df44 3630 #define CAN_F7R1_FB9_Pos (9U)
lypinator 0:bb348c97df44 3631 #define CAN_F7R1_FB9_Msk (0x1U << CAN_F7R1_FB9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 3632 #define CAN_F7R1_FB9 CAN_F7R1_FB9_Msk /*!<Filter bit 9 */
lypinator 0:bb348c97df44 3633 #define CAN_F7R1_FB10_Pos (10U)
lypinator 0:bb348c97df44 3634 #define CAN_F7R1_FB10_Msk (0x1U << CAN_F7R1_FB10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 3635 #define CAN_F7R1_FB10 CAN_F7R1_FB10_Msk /*!<Filter bit 10 */
lypinator 0:bb348c97df44 3636 #define CAN_F7R1_FB11_Pos (11U)
lypinator 0:bb348c97df44 3637 #define CAN_F7R1_FB11_Msk (0x1U << CAN_F7R1_FB11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 3638 #define CAN_F7R1_FB11 CAN_F7R1_FB11_Msk /*!<Filter bit 11 */
lypinator 0:bb348c97df44 3639 #define CAN_F7R1_FB12_Pos (12U)
lypinator 0:bb348c97df44 3640 #define CAN_F7R1_FB12_Msk (0x1U << CAN_F7R1_FB12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 3641 #define CAN_F7R1_FB12 CAN_F7R1_FB12_Msk /*!<Filter bit 12 */
lypinator 0:bb348c97df44 3642 #define CAN_F7R1_FB13_Pos (13U)
lypinator 0:bb348c97df44 3643 #define CAN_F7R1_FB13_Msk (0x1U << CAN_F7R1_FB13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 3644 #define CAN_F7R1_FB13 CAN_F7R1_FB13_Msk /*!<Filter bit 13 */
lypinator 0:bb348c97df44 3645 #define CAN_F7R1_FB14_Pos (14U)
lypinator 0:bb348c97df44 3646 #define CAN_F7R1_FB14_Msk (0x1U << CAN_F7R1_FB14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 3647 #define CAN_F7R1_FB14 CAN_F7R1_FB14_Msk /*!<Filter bit 14 */
lypinator 0:bb348c97df44 3648 #define CAN_F7R1_FB15_Pos (15U)
lypinator 0:bb348c97df44 3649 #define CAN_F7R1_FB15_Msk (0x1U << CAN_F7R1_FB15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 3650 #define CAN_F7R1_FB15 CAN_F7R1_FB15_Msk /*!<Filter bit 15 */
lypinator 0:bb348c97df44 3651 #define CAN_F7R1_FB16_Pos (16U)
lypinator 0:bb348c97df44 3652 #define CAN_F7R1_FB16_Msk (0x1U << CAN_F7R1_FB16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 3653 #define CAN_F7R1_FB16 CAN_F7R1_FB16_Msk /*!<Filter bit 16 */
lypinator 0:bb348c97df44 3654 #define CAN_F7R1_FB17_Pos (17U)
lypinator 0:bb348c97df44 3655 #define CAN_F7R1_FB17_Msk (0x1U << CAN_F7R1_FB17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 3656 #define CAN_F7R1_FB17 CAN_F7R1_FB17_Msk /*!<Filter bit 17 */
lypinator 0:bb348c97df44 3657 #define CAN_F7R1_FB18_Pos (18U)
lypinator 0:bb348c97df44 3658 #define CAN_F7R1_FB18_Msk (0x1U << CAN_F7R1_FB18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 3659 #define CAN_F7R1_FB18 CAN_F7R1_FB18_Msk /*!<Filter bit 18 */
lypinator 0:bb348c97df44 3660 #define CAN_F7R1_FB19_Pos (19U)
lypinator 0:bb348c97df44 3661 #define CAN_F7R1_FB19_Msk (0x1U << CAN_F7R1_FB19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 3662 #define CAN_F7R1_FB19 CAN_F7R1_FB19_Msk /*!<Filter bit 19 */
lypinator 0:bb348c97df44 3663 #define CAN_F7R1_FB20_Pos (20U)
lypinator 0:bb348c97df44 3664 #define CAN_F7R1_FB20_Msk (0x1U << CAN_F7R1_FB20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 3665 #define CAN_F7R1_FB20 CAN_F7R1_FB20_Msk /*!<Filter bit 20 */
lypinator 0:bb348c97df44 3666 #define CAN_F7R1_FB21_Pos (21U)
lypinator 0:bb348c97df44 3667 #define CAN_F7R1_FB21_Msk (0x1U << CAN_F7R1_FB21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 3668 #define CAN_F7R1_FB21 CAN_F7R1_FB21_Msk /*!<Filter bit 21 */
lypinator 0:bb348c97df44 3669 #define CAN_F7R1_FB22_Pos (22U)
lypinator 0:bb348c97df44 3670 #define CAN_F7R1_FB22_Msk (0x1U << CAN_F7R1_FB22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 3671 #define CAN_F7R1_FB22 CAN_F7R1_FB22_Msk /*!<Filter bit 22 */
lypinator 0:bb348c97df44 3672 #define CAN_F7R1_FB23_Pos (23U)
lypinator 0:bb348c97df44 3673 #define CAN_F7R1_FB23_Msk (0x1U << CAN_F7R1_FB23_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 3674 #define CAN_F7R1_FB23 CAN_F7R1_FB23_Msk /*!<Filter bit 23 */
lypinator 0:bb348c97df44 3675 #define CAN_F7R1_FB24_Pos (24U)
lypinator 0:bb348c97df44 3676 #define CAN_F7R1_FB24_Msk (0x1U << CAN_F7R1_FB24_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 3677 #define CAN_F7R1_FB24 CAN_F7R1_FB24_Msk /*!<Filter bit 24 */
lypinator 0:bb348c97df44 3678 #define CAN_F7R1_FB25_Pos (25U)
lypinator 0:bb348c97df44 3679 #define CAN_F7R1_FB25_Msk (0x1U << CAN_F7R1_FB25_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 3680 #define CAN_F7R1_FB25 CAN_F7R1_FB25_Msk /*!<Filter bit 25 */
lypinator 0:bb348c97df44 3681 #define CAN_F7R1_FB26_Pos (26U)
lypinator 0:bb348c97df44 3682 #define CAN_F7R1_FB26_Msk (0x1U << CAN_F7R1_FB26_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 3683 #define CAN_F7R1_FB26 CAN_F7R1_FB26_Msk /*!<Filter bit 26 */
lypinator 0:bb348c97df44 3684 #define CAN_F7R1_FB27_Pos (27U)
lypinator 0:bb348c97df44 3685 #define CAN_F7R1_FB27_Msk (0x1U << CAN_F7R1_FB27_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 3686 #define CAN_F7R1_FB27 CAN_F7R1_FB27_Msk /*!<Filter bit 27 */
lypinator 0:bb348c97df44 3687 #define CAN_F7R1_FB28_Pos (28U)
lypinator 0:bb348c97df44 3688 #define CAN_F7R1_FB28_Msk (0x1U << CAN_F7R1_FB28_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 3689 #define CAN_F7R1_FB28 CAN_F7R1_FB28_Msk /*!<Filter bit 28 */
lypinator 0:bb348c97df44 3690 #define CAN_F7R1_FB29_Pos (29U)
lypinator 0:bb348c97df44 3691 #define CAN_F7R1_FB29_Msk (0x1U << CAN_F7R1_FB29_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 3692 #define CAN_F7R1_FB29 CAN_F7R1_FB29_Msk /*!<Filter bit 29 */
lypinator 0:bb348c97df44 3693 #define CAN_F7R1_FB30_Pos (30U)
lypinator 0:bb348c97df44 3694 #define CAN_F7R1_FB30_Msk (0x1U << CAN_F7R1_FB30_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 3695 #define CAN_F7R1_FB30 CAN_F7R1_FB30_Msk /*!<Filter bit 30 */
lypinator 0:bb348c97df44 3696 #define CAN_F7R1_FB31_Pos (31U)
lypinator 0:bb348c97df44 3697 #define CAN_F7R1_FB31_Msk (0x1U << CAN_F7R1_FB31_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 3698 #define CAN_F7R1_FB31 CAN_F7R1_FB31_Msk /*!<Filter bit 31 */
lypinator 0:bb348c97df44 3699
lypinator 0:bb348c97df44 3700 /******************* Bit definition for CAN_F8R1 register *******************/
lypinator 0:bb348c97df44 3701 #define CAN_F8R1_FB0_Pos (0U)
lypinator 0:bb348c97df44 3702 #define CAN_F8R1_FB0_Msk (0x1U << CAN_F8R1_FB0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 3703 #define CAN_F8R1_FB0 CAN_F8R1_FB0_Msk /*!<Filter bit 0 */
lypinator 0:bb348c97df44 3704 #define CAN_F8R1_FB1_Pos (1U)
lypinator 0:bb348c97df44 3705 #define CAN_F8R1_FB1_Msk (0x1U << CAN_F8R1_FB1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 3706 #define CAN_F8R1_FB1 CAN_F8R1_FB1_Msk /*!<Filter bit 1 */
lypinator 0:bb348c97df44 3707 #define CAN_F8R1_FB2_Pos (2U)
lypinator 0:bb348c97df44 3708 #define CAN_F8R1_FB2_Msk (0x1U << CAN_F8R1_FB2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 3709 #define CAN_F8R1_FB2 CAN_F8R1_FB2_Msk /*!<Filter bit 2 */
lypinator 0:bb348c97df44 3710 #define CAN_F8R1_FB3_Pos (3U)
lypinator 0:bb348c97df44 3711 #define CAN_F8R1_FB3_Msk (0x1U << CAN_F8R1_FB3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 3712 #define CAN_F8R1_FB3 CAN_F8R1_FB3_Msk /*!<Filter bit 3 */
lypinator 0:bb348c97df44 3713 #define CAN_F8R1_FB4_Pos (4U)
lypinator 0:bb348c97df44 3714 #define CAN_F8R1_FB4_Msk (0x1U << CAN_F8R1_FB4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 3715 #define CAN_F8R1_FB4 CAN_F8R1_FB4_Msk /*!<Filter bit 4 */
lypinator 0:bb348c97df44 3716 #define CAN_F8R1_FB5_Pos (5U)
lypinator 0:bb348c97df44 3717 #define CAN_F8R1_FB5_Msk (0x1U << CAN_F8R1_FB5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 3718 #define CAN_F8R1_FB5 CAN_F8R1_FB5_Msk /*!<Filter bit 5 */
lypinator 0:bb348c97df44 3719 #define CAN_F8R1_FB6_Pos (6U)
lypinator 0:bb348c97df44 3720 #define CAN_F8R1_FB6_Msk (0x1U << CAN_F8R1_FB6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 3721 #define CAN_F8R1_FB6 CAN_F8R1_FB6_Msk /*!<Filter bit 6 */
lypinator 0:bb348c97df44 3722 #define CAN_F8R1_FB7_Pos (7U)
lypinator 0:bb348c97df44 3723 #define CAN_F8R1_FB7_Msk (0x1U << CAN_F8R1_FB7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 3724 #define CAN_F8R1_FB7 CAN_F8R1_FB7_Msk /*!<Filter bit 7 */
lypinator 0:bb348c97df44 3725 #define CAN_F8R1_FB8_Pos (8U)
lypinator 0:bb348c97df44 3726 #define CAN_F8R1_FB8_Msk (0x1U << CAN_F8R1_FB8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 3727 #define CAN_F8R1_FB8 CAN_F8R1_FB8_Msk /*!<Filter bit 8 */
lypinator 0:bb348c97df44 3728 #define CAN_F8R1_FB9_Pos (9U)
lypinator 0:bb348c97df44 3729 #define CAN_F8R1_FB9_Msk (0x1U << CAN_F8R1_FB9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 3730 #define CAN_F8R1_FB9 CAN_F8R1_FB9_Msk /*!<Filter bit 9 */
lypinator 0:bb348c97df44 3731 #define CAN_F8R1_FB10_Pos (10U)
lypinator 0:bb348c97df44 3732 #define CAN_F8R1_FB10_Msk (0x1U << CAN_F8R1_FB10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 3733 #define CAN_F8R1_FB10 CAN_F8R1_FB10_Msk /*!<Filter bit 10 */
lypinator 0:bb348c97df44 3734 #define CAN_F8R1_FB11_Pos (11U)
lypinator 0:bb348c97df44 3735 #define CAN_F8R1_FB11_Msk (0x1U << CAN_F8R1_FB11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 3736 #define CAN_F8R1_FB11 CAN_F8R1_FB11_Msk /*!<Filter bit 11 */
lypinator 0:bb348c97df44 3737 #define CAN_F8R1_FB12_Pos (12U)
lypinator 0:bb348c97df44 3738 #define CAN_F8R1_FB12_Msk (0x1U << CAN_F8R1_FB12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 3739 #define CAN_F8R1_FB12 CAN_F8R1_FB12_Msk /*!<Filter bit 12 */
lypinator 0:bb348c97df44 3740 #define CAN_F8R1_FB13_Pos (13U)
lypinator 0:bb348c97df44 3741 #define CAN_F8R1_FB13_Msk (0x1U << CAN_F8R1_FB13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 3742 #define CAN_F8R1_FB13 CAN_F8R1_FB13_Msk /*!<Filter bit 13 */
lypinator 0:bb348c97df44 3743 #define CAN_F8R1_FB14_Pos (14U)
lypinator 0:bb348c97df44 3744 #define CAN_F8R1_FB14_Msk (0x1U << CAN_F8R1_FB14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 3745 #define CAN_F8R1_FB14 CAN_F8R1_FB14_Msk /*!<Filter bit 14 */
lypinator 0:bb348c97df44 3746 #define CAN_F8R1_FB15_Pos (15U)
lypinator 0:bb348c97df44 3747 #define CAN_F8R1_FB15_Msk (0x1U << CAN_F8R1_FB15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 3748 #define CAN_F8R1_FB15 CAN_F8R1_FB15_Msk /*!<Filter bit 15 */
lypinator 0:bb348c97df44 3749 #define CAN_F8R1_FB16_Pos (16U)
lypinator 0:bb348c97df44 3750 #define CAN_F8R1_FB16_Msk (0x1U << CAN_F8R1_FB16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 3751 #define CAN_F8R1_FB16 CAN_F8R1_FB16_Msk /*!<Filter bit 16 */
lypinator 0:bb348c97df44 3752 #define CAN_F8R1_FB17_Pos (17U)
lypinator 0:bb348c97df44 3753 #define CAN_F8R1_FB17_Msk (0x1U << CAN_F8R1_FB17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 3754 #define CAN_F8R1_FB17 CAN_F8R1_FB17_Msk /*!<Filter bit 17 */
lypinator 0:bb348c97df44 3755 #define CAN_F8R1_FB18_Pos (18U)
lypinator 0:bb348c97df44 3756 #define CAN_F8R1_FB18_Msk (0x1U << CAN_F8R1_FB18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 3757 #define CAN_F8R1_FB18 CAN_F8R1_FB18_Msk /*!<Filter bit 18 */
lypinator 0:bb348c97df44 3758 #define CAN_F8R1_FB19_Pos (19U)
lypinator 0:bb348c97df44 3759 #define CAN_F8R1_FB19_Msk (0x1U << CAN_F8R1_FB19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 3760 #define CAN_F8R1_FB19 CAN_F8R1_FB19_Msk /*!<Filter bit 19 */
lypinator 0:bb348c97df44 3761 #define CAN_F8R1_FB20_Pos (20U)
lypinator 0:bb348c97df44 3762 #define CAN_F8R1_FB20_Msk (0x1U << CAN_F8R1_FB20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 3763 #define CAN_F8R1_FB20 CAN_F8R1_FB20_Msk /*!<Filter bit 20 */
lypinator 0:bb348c97df44 3764 #define CAN_F8R1_FB21_Pos (21U)
lypinator 0:bb348c97df44 3765 #define CAN_F8R1_FB21_Msk (0x1U << CAN_F8R1_FB21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 3766 #define CAN_F8R1_FB21 CAN_F8R1_FB21_Msk /*!<Filter bit 21 */
lypinator 0:bb348c97df44 3767 #define CAN_F8R1_FB22_Pos (22U)
lypinator 0:bb348c97df44 3768 #define CAN_F8R1_FB22_Msk (0x1U << CAN_F8R1_FB22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 3769 #define CAN_F8R1_FB22 CAN_F8R1_FB22_Msk /*!<Filter bit 22 */
lypinator 0:bb348c97df44 3770 #define CAN_F8R1_FB23_Pos (23U)
lypinator 0:bb348c97df44 3771 #define CAN_F8R1_FB23_Msk (0x1U << CAN_F8R1_FB23_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 3772 #define CAN_F8R1_FB23 CAN_F8R1_FB23_Msk /*!<Filter bit 23 */
lypinator 0:bb348c97df44 3773 #define CAN_F8R1_FB24_Pos (24U)
lypinator 0:bb348c97df44 3774 #define CAN_F8R1_FB24_Msk (0x1U << CAN_F8R1_FB24_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 3775 #define CAN_F8R1_FB24 CAN_F8R1_FB24_Msk /*!<Filter bit 24 */
lypinator 0:bb348c97df44 3776 #define CAN_F8R1_FB25_Pos (25U)
lypinator 0:bb348c97df44 3777 #define CAN_F8R1_FB25_Msk (0x1U << CAN_F8R1_FB25_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 3778 #define CAN_F8R1_FB25 CAN_F8R1_FB25_Msk /*!<Filter bit 25 */
lypinator 0:bb348c97df44 3779 #define CAN_F8R1_FB26_Pos (26U)
lypinator 0:bb348c97df44 3780 #define CAN_F8R1_FB26_Msk (0x1U << CAN_F8R1_FB26_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 3781 #define CAN_F8R1_FB26 CAN_F8R1_FB26_Msk /*!<Filter bit 26 */
lypinator 0:bb348c97df44 3782 #define CAN_F8R1_FB27_Pos (27U)
lypinator 0:bb348c97df44 3783 #define CAN_F8R1_FB27_Msk (0x1U << CAN_F8R1_FB27_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 3784 #define CAN_F8R1_FB27 CAN_F8R1_FB27_Msk /*!<Filter bit 27 */
lypinator 0:bb348c97df44 3785 #define CAN_F8R1_FB28_Pos (28U)
lypinator 0:bb348c97df44 3786 #define CAN_F8R1_FB28_Msk (0x1U << CAN_F8R1_FB28_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 3787 #define CAN_F8R1_FB28 CAN_F8R1_FB28_Msk /*!<Filter bit 28 */
lypinator 0:bb348c97df44 3788 #define CAN_F8R1_FB29_Pos (29U)
lypinator 0:bb348c97df44 3789 #define CAN_F8R1_FB29_Msk (0x1U << CAN_F8R1_FB29_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 3790 #define CAN_F8R1_FB29 CAN_F8R1_FB29_Msk /*!<Filter bit 29 */
lypinator 0:bb348c97df44 3791 #define CAN_F8R1_FB30_Pos (30U)
lypinator 0:bb348c97df44 3792 #define CAN_F8R1_FB30_Msk (0x1U << CAN_F8R1_FB30_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 3793 #define CAN_F8R1_FB30 CAN_F8R1_FB30_Msk /*!<Filter bit 30 */
lypinator 0:bb348c97df44 3794 #define CAN_F8R1_FB31_Pos (31U)
lypinator 0:bb348c97df44 3795 #define CAN_F8R1_FB31_Msk (0x1U << CAN_F8R1_FB31_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 3796 #define CAN_F8R1_FB31 CAN_F8R1_FB31_Msk /*!<Filter bit 31 */
lypinator 0:bb348c97df44 3797
lypinator 0:bb348c97df44 3798 /******************* Bit definition for CAN_F9R1 register *******************/
lypinator 0:bb348c97df44 3799 #define CAN_F9R1_FB0_Pos (0U)
lypinator 0:bb348c97df44 3800 #define CAN_F9R1_FB0_Msk (0x1U << CAN_F9R1_FB0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 3801 #define CAN_F9R1_FB0 CAN_F9R1_FB0_Msk /*!<Filter bit 0 */
lypinator 0:bb348c97df44 3802 #define CAN_F9R1_FB1_Pos (1U)
lypinator 0:bb348c97df44 3803 #define CAN_F9R1_FB1_Msk (0x1U << CAN_F9R1_FB1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 3804 #define CAN_F9R1_FB1 CAN_F9R1_FB1_Msk /*!<Filter bit 1 */
lypinator 0:bb348c97df44 3805 #define CAN_F9R1_FB2_Pos (2U)
lypinator 0:bb348c97df44 3806 #define CAN_F9R1_FB2_Msk (0x1U << CAN_F9R1_FB2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 3807 #define CAN_F9R1_FB2 CAN_F9R1_FB2_Msk /*!<Filter bit 2 */
lypinator 0:bb348c97df44 3808 #define CAN_F9R1_FB3_Pos (3U)
lypinator 0:bb348c97df44 3809 #define CAN_F9R1_FB3_Msk (0x1U << CAN_F9R1_FB3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 3810 #define CAN_F9R1_FB3 CAN_F9R1_FB3_Msk /*!<Filter bit 3 */
lypinator 0:bb348c97df44 3811 #define CAN_F9R1_FB4_Pos (4U)
lypinator 0:bb348c97df44 3812 #define CAN_F9R1_FB4_Msk (0x1U << CAN_F9R1_FB4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 3813 #define CAN_F9R1_FB4 CAN_F9R1_FB4_Msk /*!<Filter bit 4 */
lypinator 0:bb348c97df44 3814 #define CAN_F9R1_FB5_Pos (5U)
lypinator 0:bb348c97df44 3815 #define CAN_F9R1_FB5_Msk (0x1U << CAN_F9R1_FB5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 3816 #define CAN_F9R1_FB5 CAN_F9R1_FB5_Msk /*!<Filter bit 5 */
lypinator 0:bb348c97df44 3817 #define CAN_F9R1_FB6_Pos (6U)
lypinator 0:bb348c97df44 3818 #define CAN_F9R1_FB6_Msk (0x1U << CAN_F9R1_FB6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 3819 #define CAN_F9R1_FB6 CAN_F9R1_FB6_Msk /*!<Filter bit 6 */
lypinator 0:bb348c97df44 3820 #define CAN_F9R1_FB7_Pos (7U)
lypinator 0:bb348c97df44 3821 #define CAN_F9R1_FB7_Msk (0x1U << CAN_F9R1_FB7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 3822 #define CAN_F9R1_FB7 CAN_F9R1_FB7_Msk /*!<Filter bit 7 */
lypinator 0:bb348c97df44 3823 #define CAN_F9R1_FB8_Pos (8U)
lypinator 0:bb348c97df44 3824 #define CAN_F9R1_FB8_Msk (0x1U << CAN_F9R1_FB8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 3825 #define CAN_F9R1_FB8 CAN_F9R1_FB8_Msk /*!<Filter bit 8 */
lypinator 0:bb348c97df44 3826 #define CAN_F9R1_FB9_Pos (9U)
lypinator 0:bb348c97df44 3827 #define CAN_F9R1_FB9_Msk (0x1U << CAN_F9R1_FB9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 3828 #define CAN_F9R1_FB9 CAN_F9R1_FB9_Msk /*!<Filter bit 9 */
lypinator 0:bb348c97df44 3829 #define CAN_F9R1_FB10_Pos (10U)
lypinator 0:bb348c97df44 3830 #define CAN_F9R1_FB10_Msk (0x1U << CAN_F9R1_FB10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 3831 #define CAN_F9R1_FB10 CAN_F9R1_FB10_Msk /*!<Filter bit 10 */
lypinator 0:bb348c97df44 3832 #define CAN_F9R1_FB11_Pos (11U)
lypinator 0:bb348c97df44 3833 #define CAN_F9R1_FB11_Msk (0x1U << CAN_F9R1_FB11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 3834 #define CAN_F9R1_FB11 CAN_F9R1_FB11_Msk /*!<Filter bit 11 */
lypinator 0:bb348c97df44 3835 #define CAN_F9R1_FB12_Pos (12U)
lypinator 0:bb348c97df44 3836 #define CAN_F9R1_FB12_Msk (0x1U << CAN_F9R1_FB12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 3837 #define CAN_F9R1_FB12 CAN_F9R1_FB12_Msk /*!<Filter bit 12 */
lypinator 0:bb348c97df44 3838 #define CAN_F9R1_FB13_Pos (13U)
lypinator 0:bb348c97df44 3839 #define CAN_F9R1_FB13_Msk (0x1U << CAN_F9R1_FB13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 3840 #define CAN_F9R1_FB13 CAN_F9R1_FB13_Msk /*!<Filter bit 13 */
lypinator 0:bb348c97df44 3841 #define CAN_F9R1_FB14_Pos (14U)
lypinator 0:bb348c97df44 3842 #define CAN_F9R1_FB14_Msk (0x1U << CAN_F9R1_FB14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 3843 #define CAN_F9R1_FB14 CAN_F9R1_FB14_Msk /*!<Filter bit 14 */
lypinator 0:bb348c97df44 3844 #define CAN_F9R1_FB15_Pos (15U)
lypinator 0:bb348c97df44 3845 #define CAN_F9R1_FB15_Msk (0x1U << CAN_F9R1_FB15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 3846 #define CAN_F9R1_FB15 CAN_F9R1_FB15_Msk /*!<Filter bit 15 */
lypinator 0:bb348c97df44 3847 #define CAN_F9R1_FB16_Pos (16U)
lypinator 0:bb348c97df44 3848 #define CAN_F9R1_FB16_Msk (0x1U << CAN_F9R1_FB16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 3849 #define CAN_F9R1_FB16 CAN_F9R1_FB16_Msk /*!<Filter bit 16 */
lypinator 0:bb348c97df44 3850 #define CAN_F9R1_FB17_Pos (17U)
lypinator 0:bb348c97df44 3851 #define CAN_F9R1_FB17_Msk (0x1U << CAN_F9R1_FB17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 3852 #define CAN_F9R1_FB17 CAN_F9R1_FB17_Msk /*!<Filter bit 17 */
lypinator 0:bb348c97df44 3853 #define CAN_F9R1_FB18_Pos (18U)
lypinator 0:bb348c97df44 3854 #define CAN_F9R1_FB18_Msk (0x1U << CAN_F9R1_FB18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 3855 #define CAN_F9R1_FB18 CAN_F9R1_FB18_Msk /*!<Filter bit 18 */
lypinator 0:bb348c97df44 3856 #define CAN_F9R1_FB19_Pos (19U)
lypinator 0:bb348c97df44 3857 #define CAN_F9R1_FB19_Msk (0x1U << CAN_F9R1_FB19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 3858 #define CAN_F9R1_FB19 CAN_F9R1_FB19_Msk /*!<Filter bit 19 */
lypinator 0:bb348c97df44 3859 #define CAN_F9R1_FB20_Pos (20U)
lypinator 0:bb348c97df44 3860 #define CAN_F9R1_FB20_Msk (0x1U << CAN_F9R1_FB20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 3861 #define CAN_F9R1_FB20 CAN_F9R1_FB20_Msk /*!<Filter bit 20 */
lypinator 0:bb348c97df44 3862 #define CAN_F9R1_FB21_Pos (21U)
lypinator 0:bb348c97df44 3863 #define CAN_F9R1_FB21_Msk (0x1U << CAN_F9R1_FB21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 3864 #define CAN_F9R1_FB21 CAN_F9R1_FB21_Msk /*!<Filter bit 21 */
lypinator 0:bb348c97df44 3865 #define CAN_F9R1_FB22_Pos (22U)
lypinator 0:bb348c97df44 3866 #define CAN_F9R1_FB22_Msk (0x1U << CAN_F9R1_FB22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 3867 #define CAN_F9R1_FB22 CAN_F9R1_FB22_Msk /*!<Filter bit 22 */
lypinator 0:bb348c97df44 3868 #define CAN_F9R1_FB23_Pos (23U)
lypinator 0:bb348c97df44 3869 #define CAN_F9R1_FB23_Msk (0x1U << CAN_F9R1_FB23_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 3870 #define CAN_F9R1_FB23 CAN_F9R1_FB23_Msk /*!<Filter bit 23 */
lypinator 0:bb348c97df44 3871 #define CAN_F9R1_FB24_Pos (24U)
lypinator 0:bb348c97df44 3872 #define CAN_F9R1_FB24_Msk (0x1U << CAN_F9R1_FB24_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 3873 #define CAN_F9R1_FB24 CAN_F9R1_FB24_Msk /*!<Filter bit 24 */
lypinator 0:bb348c97df44 3874 #define CAN_F9R1_FB25_Pos (25U)
lypinator 0:bb348c97df44 3875 #define CAN_F9R1_FB25_Msk (0x1U << CAN_F9R1_FB25_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 3876 #define CAN_F9R1_FB25 CAN_F9R1_FB25_Msk /*!<Filter bit 25 */
lypinator 0:bb348c97df44 3877 #define CAN_F9R1_FB26_Pos (26U)
lypinator 0:bb348c97df44 3878 #define CAN_F9R1_FB26_Msk (0x1U << CAN_F9R1_FB26_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 3879 #define CAN_F9R1_FB26 CAN_F9R1_FB26_Msk /*!<Filter bit 26 */
lypinator 0:bb348c97df44 3880 #define CAN_F9R1_FB27_Pos (27U)
lypinator 0:bb348c97df44 3881 #define CAN_F9R1_FB27_Msk (0x1U << CAN_F9R1_FB27_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 3882 #define CAN_F9R1_FB27 CAN_F9R1_FB27_Msk /*!<Filter bit 27 */
lypinator 0:bb348c97df44 3883 #define CAN_F9R1_FB28_Pos (28U)
lypinator 0:bb348c97df44 3884 #define CAN_F9R1_FB28_Msk (0x1U << CAN_F9R1_FB28_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 3885 #define CAN_F9R1_FB28 CAN_F9R1_FB28_Msk /*!<Filter bit 28 */
lypinator 0:bb348c97df44 3886 #define CAN_F9R1_FB29_Pos (29U)
lypinator 0:bb348c97df44 3887 #define CAN_F9R1_FB29_Msk (0x1U << CAN_F9R1_FB29_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 3888 #define CAN_F9R1_FB29 CAN_F9R1_FB29_Msk /*!<Filter bit 29 */
lypinator 0:bb348c97df44 3889 #define CAN_F9R1_FB30_Pos (30U)
lypinator 0:bb348c97df44 3890 #define CAN_F9R1_FB30_Msk (0x1U << CAN_F9R1_FB30_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 3891 #define CAN_F9R1_FB30 CAN_F9R1_FB30_Msk /*!<Filter bit 30 */
lypinator 0:bb348c97df44 3892 #define CAN_F9R1_FB31_Pos (31U)
lypinator 0:bb348c97df44 3893 #define CAN_F9R1_FB31_Msk (0x1U << CAN_F9R1_FB31_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 3894 #define CAN_F9R1_FB31 CAN_F9R1_FB31_Msk /*!<Filter bit 31 */
lypinator 0:bb348c97df44 3895
lypinator 0:bb348c97df44 3896 /******************* Bit definition for CAN_F10R1 register ******************/
lypinator 0:bb348c97df44 3897 #define CAN_F10R1_FB0_Pos (0U)
lypinator 0:bb348c97df44 3898 #define CAN_F10R1_FB0_Msk (0x1U << CAN_F10R1_FB0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 3899 #define CAN_F10R1_FB0 CAN_F10R1_FB0_Msk /*!<Filter bit 0 */
lypinator 0:bb348c97df44 3900 #define CAN_F10R1_FB1_Pos (1U)
lypinator 0:bb348c97df44 3901 #define CAN_F10R1_FB1_Msk (0x1U << CAN_F10R1_FB1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 3902 #define CAN_F10R1_FB1 CAN_F10R1_FB1_Msk /*!<Filter bit 1 */
lypinator 0:bb348c97df44 3903 #define CAN_F10R1_FB2_Pos (2U)
lypinator 0:bb348c97df44 3904 #define CAN_F10R1_FB2_Msk (0x1U << CAN_F10R1_FB2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 3905 #define CAN_F10R1_FB2 CAN_F10R1_FB2_Msk /*!<Filter bit 2 */
lypinator 0:bb348c97df44 3906 #define CAN_F10R1_FB3_Pos (3U)
lypinator 0:bb348c97df44 3907 #define CAN_F10R1_FB3_Msk (0x1U << CAN_F10R1_FB3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 3908 #define CAN_F10R1_FB3 CAN_F10R1_FB3_Msk /*!<Filter bit 3 */
lypinator 0:bb348c97df44 3909 #define CAN_F10R1_FB4_Pos (4U)
lypinator 0:bb348c97df44 3910 #define CAN_F10R1_FB4_Msk (0x1U << CAN_F10R1_FB4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 3911 #define CAN_F10R1_FB4 CAN_F10R1_FB4_Msk /*!<Filter bit 4 */
lypinator 0:bb348c97df44 3912 #define CAN_F10R1_FB5_Pos (5U)
lypinator 0:bb348c97df44 3913 #define CAN_F10R1_FB5_Msk (0x1U << CAN_F10R1_FB5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 3914 #define CAN_F10R1_FB5 CAN_F10R1_FB5_Msk /*!<Filter bit 5 */
lypinator 0:bb348c97df44 3915 #define CAN_F10R1_FB6_Pos (6U)
lypinator 0:bb348c97df44 3916 #define CAN_F10R1_FB6_Msk (0x1U << CAN_F10R1_FB6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 3917 #define CAN_F10R1_FB6 CAN_F10R1_FB6_Msk /*!<Filter bit 6 */
lypinator 0:bb348c97df44 3918 #define CAN_F10R1_FB7_Pos (7U)
lypinator 0:bb348c97df44 3919 #define CAN_F10R1_FB7_Msk (0x1U << CAN_F10R1_FB7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 3920 #define CAN_F10R1_FB7 CAN_F10R1_FB7_Msk /*!<Filter bit 7 */
lypinator 0:bb348c97df44 3921 #define CAN_F10R1_FB8_Pos (8U)
lypinator 0:bb348c97df44 3922 #define CAN_F10R1_FB8_Msk (0x1U << CAN_F10R1_FB8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 3923 #define CAN_F10R1_FB8 CAN_F10R1_FB8_Msk /*!<Filter bit 8 */
lypinator 0:bb348c97df44 3924 #define CAN_F10R1_FB9_Pos (9U)
lypinator 0:bb348c97df44 3925 #define CAN_F10R1_FB9_Msk (0x1U << CAN_F10R1_FB9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 3926 #define CAN_F10R1_FB9 CAN_F10R1_FB9_Msk /*!<Filter bit 9 */
lypinator 0:bb348c97df44 3927 #define CAN_F10R1_FB10_Pos (10U)
lypinator 0:bb348c97df44 3928 #define CAN_F10R1_FB10_Msk (0x1U << CAN_F10R1_FB10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 3929 #define CAN_F10R1_FB10 CAN_F10R1_FB10_Msk /*!<Filter bit 10 */
lypinator 0:bb348c97df44 3930 #define CAN_F10R1_FB11_Pos (11U)
lypinator 0:bb348c97df44 3931 #define CAN_F10R1_FB11_Msk (0x1U << CAN_F10R1_FB11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 3932 #define CAN_F10R1_FB11 CAN_F10R1_FB11_Msk /*!<Filter bit 11 */
lypinator 0:bb348c97df44 3933 #define CAN_F10R1_FB12_Pos (12U)
lypinator 0:bb348c97df44 3934 #define CAN_F10R1_FB12_Msk (0x1U << CAN_F10R1_FB12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 3935 #define CAN_F10R1_FB12 CAN_F10R1_FB12_Msk /*!<Filter bit 12 */
lypinator 0:bb348c97df44 3936 #define CAN_F10R1_FB13_Pos (13U)
lypinator 0:bb348c97df44 3937 #define CAN_F10R1_FB13_Msk (0x1U << CAN_F10R1_FB13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 3938 #define CAN_F10R1_FB13 CAN_F10R1_FB13_Msk /*!<Filter bit 13 */
lypinator 0:bb348c97df44 3939 #define CAN_F10R1_FB14_Pos (14U)
lypinator 0:bb348c97df44 3940 #define CAN_F10R1_FB14_Msk (0x1U << CAN_F10R1_FB14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 3941 #define CAN_F10R1_FB14 CAN_F10R1_FB14_Msk /*!<Filter bit 14 */
lypinator 0:bb348c97df44 3942 #define CAN_F10R1_FB15_Pos (15U)
lypinator 0:bb348c97df44 3943 #define CAN_F10R1_FB15_Msk (0x1U << CAN_F10R1_FB15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 3944 #define CAN_F10R1_FB15 CAN_F10R1_FB15_Msk /*!<Filter bit 15 */
lypinator 0:bb348c97df44 3945 #define CAN_F10R1_FB16_Pos (16U)
lypinator 0:bb348c97df44 3946 #define CAN_F10R1_FB16_Msk (0x1U << CAN_F10R1_FB16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 3947 #define CAN_F10R1_FB16 CAN_F10R1_FB16_Msk /*!<Filter bit 16 */
lypinator 0:bb348c97df44 3948 #define CAN_F10R1_FB17_Pos (17U)
lypinator 0:bb348c97df44 3949 #define CAN_F10R1_FB17_Msk (0x1U << CAN_F10R1_FB17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 3950 #define CAN_F10R1_FB17 CAN_F10R1_FB17_Msk /*!<Filter bit 17 */
lypinator 0:bb348c97df44 3951 #define CAN_F10R1_FB18_Pos (18U)
lypinator 0:bb348c97df44 3952 #define CAN_F10R1_FB18_Msk (0x1U << CAN_F10R1_FB18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 3953 #define CAN_F10R1_FB18 CAN_F10R1_FB18_Msk /*!<Filter bit 18 */
lypinator 0:bb348c97df44 3954 #define CAN_F10R1_FB19_Pos (19U)
lypinator 0:bb348c97df44 3955 #define CAN_F10R1_FB19_Msk (0x1U << CAN_F10R1_FB19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 3956 #define CAN_F10R1_FB19 CAN_F10R1_FB19_Msk /*!<Filter bit 19 */
lypinator 0:bb348c97df44 3957 #define CAN_F10R1_FB20_Pos (20U)
lypinator 0:bb348c97df44 3958 #define CAN_F10R1_FB20_Msk (0x1U << CAN_F10R1_FB20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 3959 #define CAN_F10R1_FB20 CAN_F10R1_FB20_Msk /*!<Filter bit 20 */
lypinator 0:bb348c97df44 3960 #define CAN_F10R1_FB21_Pos (21U)
lypinator 0:bb348c97df44 3961 #define CAN_F10R1_FB21_Msk (0x1U << CAN_F10R1_FB21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 3962 #define CAN_F10R1_FB21 CAN_F10R1_FB21_Msk /*!<Filter bit 21 */
lypinator 0:bb348c97df44 3963 #define CAN_F10R1_FB22_Pos (22U)
lypinator 0:bb348c97df44 3964 #define CAN_F10R1_FB22_Msk (0x1U << CAN_F10R1_FB22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 3965 #define CAN_F10R1_FB22 CAN_F10R1_FB22_Msk /*!<Filter bit 22 */
lypinator 0:bb348c97df44 3966 #define CAN_F10R1_FB23_Pos (23U)
lypinator 0:bb348c97df44 3967 #define CAN_F10R1_FB23_Msk (0x1U << CAN_F10R1_FB23_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 3968 #define CAN_F10R1_FB23 CAN_F10R1_FB23_Msk /*!<Filter bit 23 */
lypinator 0:bb348c97df44 3969 #define CAN_F10R1_FB24_Pos (24U)
lypinator 0:bb348c97df44 3970 #define CAN_F10R1_FB24_Msk (0x1U << CAN_F10R1_FB24_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 3971 #define CAN_F10R1_FB24 CAN_F10R1_FB24_Msk /*!<Filter bit 24 */
lypinator 0:bb348c97df44 3972 #define CAN_F10R1_FB25_Pos (25U)
lypinator 0:bb348c97df44 3973 #define CAN_F10R1_FB25_Msk (0x1U << CAN_F10R1_FB25_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 3974 #define CAN_F10R1_FB25 CAN_F10R1_FB25_Msk /*!<Filter bit 25 */
lypinator 0:bb348c97df44 3975 #define CAN_F10R1_FB26_Pos (26U)
lypinator 0:bb348c97df44 3976 #define CAN_F10R1_FB26_Msk (0x1U << CAN_F10R1_FB26_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 3977 #define CAN_F10R1_FB26 CAN_F10R1_FB26_Msk /*!<Filter bit 26 */
lypinator 0:bb348c97df44 3978 #define CAN_F10R1_FB27_Pos (27U)
lypinator 0:bb348c97df44 3979 #define CAN_F10R1_FB27_Msk (0x1U << CAN_F10R1_FB27_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 3980 #define CAN_F10R1_FB27 CAN_F10R1_FB27_Msk /*!<Filter bit 27 */
lypinator 0:bb348c97df44 3981 #define CAN_F10R1_FB28_Pos (28U)
lypinator 0:bb348c97df44 3982 #define CAN_F10R1_FB28_Msk (0x1U << CAN_F10R1_FB28_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 3983 #define CAN_F10R1_FB28 CAN_F10R1_FB28_Msk /*!<Filter bit 28 */
lypinator 0:bb348c97df44 3984 #define CAN_F10R1_FB29_Pos (29U)
lypinator 0:bb348c97df44 3985 #define CAN_F10R1_FB29_Msk (0x1U << CAN_F10R1_FB29_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 3986 #define CAN_F10R1_FB29 CAN_F10R1_FB29_Msk /*!<Filter bit 29 */
lypinator 0:bb348c97df44 3987 #define CAN_F10R1_FB30_Pos (30U)
lypinator 0:bb348c97df44 3988 #define CAN_F10R1_FB30_Msk (0x1U << CAN_F10R1_FB30_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 3989 #define CAN_F10R1_FB30 CAN_F10R1_FB30_Msk /*!<Filter bit 30 */
lypinator 0:bb348c97df44 3990 #define CAN_F10R1_FB31_Pos (31U)
lypinator 0:bb348c97df44 3991 #define CAN_F10R1_FB31_Msk (0x1U << CAN_F10R1_FB31_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 3992 #define CAN_F10R1_FB31 CAN_F10R1_FB31_Msk /*!<Filter bit 31 */
lypinator 0:bb348c97df44 3993
lypinator 0:bb348c97df44 3994 /******************* Bit definition for CAN_F11R1 register ******************/
lypinator 0:bb348c97df44 3995 #define CAN_F11R1_FB0_Pos (0U)
lypinator 0:bb348c97df44 3996 #define CAN_F11R1_FB0_Msk (0x1U << CAN_F11R1_FB0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 3997 #define CAN_F11R1_FB0 CAN_F11R1_FB0_Msk /*!<Filter bit 0 */
lypinator 0:bb348c97df44 3998 #define CAN_F11R1_FB1_Pos (1U)
lypinator 0:bb348c97df44 3999 #define CAN_F11R1_FB1_Msk (0x1U << CAN_F11R1_FB1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 4000 #define CAN_F11R1_FB1 CAN_F11R1_FB1_Msk /*!<Filter bit 1 */
lypinator 0:bb348c97df44 4001 #define CAN_F11R1_FB2_Pos (2U)
lypinator 0:bb348c97df44 4002 #define CAN_F11R1_FB2_Msk (0x1U << CAN_F11R1_FB2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 4003 #define CAN_F11R1_FB2 CAN_F11R1_FB2_Msk /*!<Filter bit 2 */
lypinator 0:bb348c97df44 4004 #define CAN_F11R1_FB3_Pos (3U)
lypinator 0:bb348c97df44 4005 #define CAN_F11R1_FB3_Msk (0x1U << CAN_F11R1_FB3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 4006 #define CAN_F11R1_FB3 CAN_F11R1_FB3_Msk /*!<Filter bit 3 */
lypinator 0:bb348c97df44 4007 #define CAN_F11R1_FB4_Pos (4U)
lypinator 0:bb348c97df44 4008 #define CAN_F11R1_FB4_Msk (0x1U << CAN_F11R1_FB4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 4009 #define CAN_F11R1_FB4 CAN_F11R1_FB4_Msk /*!<Filter bit 4 */
lypinator 0:bb348c97df44 4010 #define CAN_F11R1_FB5_Pos (5U)
lypinator 0:bb348c97df44 4011 #define CAN_F11R1_FB5_Msk (0x1U << CAN_F11R1_FB5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 4012 #define CAN_F11R1_FB5 CAN_F11R1_FB5_Msk /*!<Filter bit 5 */
lypinator 0:bb348c97df44 4013 #define CAN_F11R1_FB6_Pos (6U)
lypinator 0:bb348c97df44 4014 #define CAN_F11R1_FB6_Msk (0x1U << CAN_F11R1_FB6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 4015 #define CAN_F11R1_FB6 CAN_F11R1_FB6_Msk /*!<Filter bit 6 */
lypinator 0:bb348c97df44 4016 #define CAN_F11R1_FB7_Pos (7U)
lypinator 0:bb348c97df44 4017 #define CAN_F11R1_FB7_Msk (0x1U << CAN_F11R1_FB7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 4018 #define CAN_F11R1_FB7 CAN_F11R1_FB7_Msk /*!<Filter bit 7 */
lypinator 0:bb348c97df44 4019 #define CAN_F11R1_FB8_Pos (8U)
lypinator 0:bb348c97df44 4020 #define CAN_F11R1_FB8_Msk (0x1U << CAN_F11R1_FB8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 4021 #define CAN_F11R1_FB8 CAN_F11R1_FB8_Msk /*!<Filter bit 8 */
lypinator 0:bb348c97df44 4022 #define CAN_F11R1_FB9_Pos (9U)
lypinator 0:bb348c97df44 4023 #define CAN_F11R1_FB9_Msk (0x1U << CAN_F11R1_FB9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 4024 #define CAN_F11R1_FB9 CAN_F11R1_FB9_Msk /*!<Filter bit 9 */
lypinator 0:bb348c97df44 4025 #define CAN_F11R1_FB10_Pos (10U)
lypinator 0:bb348c97df44 4026 #define CAN_F11R1_FB10_Msk (0x1U << CAN_F11R1_FB10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 4027 #define CAN_F11R1_FB10 CAN_F11R1_FB10_Msk /*!<Filter bit 10 */
lypinator 0:bb348c97df44 4028 #define CAN_F11R1_FB11_Pos (11U)
lypinator 0:bb348c97df44 4029 #define CAN_F11R1_FB11_Msk (0x1U << CAN_F11R1_FB11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 4030 #define CAN_F11R1_FB11 CAN_F11R1_FB11_Msk /*!<Filter bit 11 */
lypinator 0:bb348c97df44 4031 #define CAN_F11R1_FB12_Pos (12U)
lypinator 0:bb348c97df44 4032 #define CAN_F11R1_FB12_Msk (0x1U << CAN_F11R1_FB12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 4033 #define CAN_F11R1_FB12 CAN_F11R1_FB12_Msk /*!<Filter bit 12 */
lypinator 0:bb348c97df44 4034 #define CAN_F11R1_FB13_Pos (13U)
lypinator 0:bb348c97df44 4035 #define CAN_F11R1_FB13_Msk (0x1U << CAN_F11R1_FB13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 4036 #define CAN_F11R1_FB13 CAN_F11R1_FB13_Msk /*!<Filter bit 13 */
lypinator 0:bb348c97df44 4037 #define CAN_F11R1_FB14_Pos (14U)
lypinator 0:bb348c97df44 4038 #define CAN_F11R1_FB14_Msk (0x1U << CAN_F11R1_FB14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 4039 #define CAN_F11R1_FB14 CAN_F11R1_FB14_Msk /*!<Filter bit 14 */
lypinator 0:bb348c97df44 4040 #define CAN_F11R1_FB15_Pos (15U)
lypinator 0:bb348c97df44 4041 #define CAN_F11R1_FB15_Msk (0x1U << CAN_F11R1_FB15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 4042 #define CAN_F11R1_FB15 CAN_F11R1_FB15_Msk /*!<Filter bit 15 */
lypinator 0:bb348c97df44 4043 #define CAN_F11R1_FB16_Pos (16U)
lypinator 0:bb348c97df44 4044 #define CAN_F11R1_FB16_Msk (0x1U << CAN_F11R1_FB16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 4045 #define CAN_F11R1_FB16 CAN_F11R1_FB16_Msk /*!<Filter bit 16 */
lypinator 0:bb348c97df44 4046 #define CAN_F11R1_FB17_Pos (17U)
lypinator 0:bb348c97df44 4047 #define CAN_F11R1_FB17_Msk (0x1U << CAN_F11R1_FB17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 4048 #define CAN_F11R1_FB17 CAN_F11R1_FB17_Msk /*!<Filter bit 17 */
lypinator 0:bb348c97df44 4049 #define CAN_F11R1_FB18_Pos (18U)
lypinator 0:bb348c97df44 4050 #define CAN_F11R1_FB18_Msk (0x1U << CAN_F11R1_FB18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 4051 #define CAN_F11R1_FB18 CAN_F11R1_FB18_Msk /*!<Filter bit 18 */
lypinator 0:bb348c97df44 4052 #define CAN_F11R1_FB19_Pos (19U)
lypinator 0:bb348c97df44 4053 #define CAN_F11R1_FB19_Msk (0x1U << CAN_F11R1_FB19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 4054 #define CAN_F11R1_FB19 CAN_F11R1_FB19_Msk /*!<Filter bit 19 */
lypinator 0:bb348c97df44 4055 #define CAN_F11R1_FB20_Pos (20U)
lypinator 0:bb348c97df44 4056 #define CAN_F11R1_FB20_Msk (0x1U << CAN_F11R1_FB20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 4057 #define CAN_F11R1_FB20 CAN_F11R1_FB20_Msk /*!<Filter bit 20 */
lypinator 0:bb348c97df44 4058 #define CAN_F11R1_FB21_Pos (21U)
lypinator 0:bb348c97df44 4059 #define CAN_F11R1_FB21_Msk (0x1U << CAN_F11R1_FB21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 4060 #define CAN_F11R1_FB21 CAN_F11R1_FB21_Msk /*!<Filter bit 21 */
lypinator 0:bb348c97df44 4061 #define CAN_F11R1_FB22_Pos (22U)
lypinator 0:bb348c97df44 4062 #define CAN_F11R1_FB22_Msk (0x1U << CAN_F11R1_FB22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 4063 #define CAN_F11R1_FB22 CAN_F11R1_FB22_Msk /*!<Filter bit 22 */
lypinator 0:bb348c97df44 4064 #define CAN_F11R1_FB23_Pos (23U)
lypinator 0:bb348c97df44 4065 #define CAN_F11R1_FB23_Msk (0x1U << CAN_F11R1_FB23_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 4066 #define CAN_F11R1_FB23 CAN_F11R1_FB23_Msk /*!<Filter bit 23 */
lypinator 0:bb348c97df44 4067 #define CAN_F11R1_FB24_Pos (24U)
lypinator 0:bb348c97df44 4068 #define CAN_F11R1_FB24_Msk (0x1U << CAN_F11R1_FB24_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 4069 #define CAN_F11R1_FB24 CAN_F11R1_FB24_Msk /*!<Filter bit 24 */
lypinator 0:bb348c97df44 4070 #define CAN_F11R1_FB25_Pos (25U)
lypinator 0:bb348c97df44 4071 #define CAN_F11R1_FB25_Msk (0x1U << CAN_F11R1_FB25_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 4072 #define CAN_F11R1_FB25 CAN_F11R1_FB25_Msk /*!<Filter bit 25 */
lypinator 0:bb348c97df44 4073 #define CAN_F11R1_FB26_Pos (26U)
lypinator 0:bb348c97df44 4074 #define CAN_F11R1_FB26_Msk (0x1U << CAN_F11R1_FB26_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 4075 #define CAN_F11R1_FB26 CAN_F11R1_FB26_Msk /*!<Filter bit 26 */
lypinator 0:bb348c97df44 4076 #define CAN_F11R1_FB27_Pos (27U)
lypinator 0:bb348c97df44 4077 #define CAN_F11R1_FB27_Msk (0x1U << CAN_F11R1_FB27_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 4078 #define CAN_F11R1_FB27 CAN_F11R1_FB27_Msk /*!<Filter bit 27 */
lypinator 0:bb348c97df44 4079 #define CAN_F11R1_FB28_Pos (28U)
lypinator 0:bb348c97df44 4080 #define CAN_F11R1_FB28_Msk (0x1U << CAN_F11R1_FB28_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 4081 #define CAN_F11R1_FB28 CAN_F11R1_FB28_Msk /*!<Filter bit 28 */
lypinator 0:bb348c97df44 4082 #define CAN_F11R1_FB29_Pos (29U)
lypinator 0:bb348c97df44 4083 #define CAN_F11R1_FB29_Msk (0x1U << CAN_F11R1_FB29_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 4084 #define CAN_F11R1_FB29 CAN_F11R1_FB29_Msk /*!<Filter bit 29 */
lypinator 0:bb348c97df44 4085 #define CAN_F11R1_FB30_Pos (30U)
lypinator 0:bb348c97df44 4086 #define CAN_F11R1_FB30_Msk (0x1U << CAN_F11R1_FB30_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 4087 #define CAN_F11R1_FB30 CAN_F11R1_FB30_Msk /*!<Filter bit 30 */
lypinator 0:bb348c97df44 4088 #define CAN_F11R1_FB31_Pos (31U)
lypinator 0:bb348c97df44 4089 #define CAN_F11R1_FB31_Msk (0x1U << CAN_F11R1_FB31_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 4090 #define CAN_F11R1_FB31 CAN_F11R1_FB31_Msk /*!<Filter bit 31 */
lypinator 0:bb348c97df44 4091
lypinator 0:bb348c97df44 4092 /******************* Bit definition for CAN_F12R1 register ******************/
lypinator 0:bb348c97df44 4093 #define CAN_F12R1_FB0_Pos (0U)
lypinator 0:bb348c97df44 4094 #define CAN_F12R1_FB0_Msk (0x1U << CAN_F12R1_FB0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 4095 #define CAN_F12R1_FB0 CAN_F12R1_FB0_Msk /*!<Filter bit 0 */
lypinator 0:bb348c97df44 4096 #define CAN_F12R1_FB1_Pos (1U)
lypinator 0:bb348c97df44 4097 #define CAN_F12R1_FB1_Msk (0x1U << CAN_F12R1_FB1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 4098 #define CAN_F12R1_FB1 CAN_F12R1_FB1_Msk /*!<Filter bit 1 */
lypinator 0:bb348c97df44 4099 #define CAN_F12R1_FB2_Pos (2U)
lypinator 0:bb348c97df44 4100 #define CAN_F12R1_FB2_Msk (0x1U << CAN_F12R1_FB2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 4101 #define CAN_F12R1_FB2 CAN_F12R1_FB2_Msk /*!<Filter bit 2 */
lypinator 0:bb348c97df44 4102 #define CAN_F12R1_FB3_Pos (3U)
lypinator 0:bb348c97df44 4103 #define CAN_F12R1_FB3_Msk (0x1U << CAN_F12R1_FB3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 4104 #define CAN_F12R1_FB3 CAN_F12R1_FB3_Msk /*!<Filter bit 3 */
lypinator 0:bb348c97df44 4105 #define CAN_F12R1_FB4_Pos (4U)
lypinator 0:bb348c97df44 4106 #define CAN_F12R1_FB4_Msk (0x1U << CAN_F12R1_FB4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 4107 #define CAN_F12R1_FB4 CAN_F12R1_FB4_Msk /*!<Filter bit 4 */
lypinator 0:bb348c97df44 4108 #define CAN_F12R1_FB5_Pos (5U)
lypinator 0:bb348c97df44 4109 #define CAN_F12R1_FB5_Msk (0x1U << CAN_F12R1_FB5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 4110 #define CAN_F12R1_FB5 CAN_F12R1_FB5_Msk /*!<Filter bit 5 */
lypinator 0:bb348c97df44 4111 #define CAN_F12R1_FB6_Pos (6U)
lypinator 0:bb348c97df44 4112 #define CAN_F12R1_FB6_Msk (0x1U << CAN_F12R1_FB6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 4113 #define CAN_F12R1_FB6 CAN_F12R1_FB6_Msk /*!<Filter bit 6 */
lypinator 0:bb348c97df44 4114 #define CAN_F12R1_FB7_Pos (7U)
lypinator 0:bb348c97df44 4115 #define CAN_F12R1_FB7_Msk (0x1U << CAN_F12R1_FB7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 4116 #define CAN_F12R1_FB7 CAN_F12R1_FB7_Msk /*!<Filter bit 7 */
lypinator 0:bb348c97df44 4117 #define CAN_F12R1_FB8_Pos (8U)
lypinator 0:bb348c97df44 4118 #define CAN_F12R1_FB8_Msk (0x1U << CAN_F12R1_FB8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 4119 #define CAN_F12R1_FB8 CAN_F12R1_FB8_Msk /*!<Filter bit 8 */
lypinator 0:bb348c97df44 4120 #define CAN_F12R1_FB9_Pos (9U)
lypinator 0:bb348c97df44 4121 #define CAN_F12R1_FB9_Msk (0x1U << CAN_F12R1_FB9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 4122 #define CAN_F12R1_FB9 CAN_F12R1_FB9_Msk /*!<Filter bit 9 */
lypinator 0:bb348c97df44 4123 #define CAN_F12R1_FB10_Pos (10U)
lypinator 0:bb348c97df44 4124 #define CAN_F12R1_FB10_Msk (0x1U << CAN_F12R1_FB10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 4125 #define CAN_F12R1_FB10 CAN_F12R1_FB10_Msk /*!<Filter bit 10 */
lypinator 0:bb348c97df44 4126 #define CAN_F12R1_FB11_Pos (11U)
lypinator 0:bb348c97df44 4127 #define CAN_F12R1_FB11_Msk (0x1U << CAN_F12R1_FB11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 4128 #define CAN_F12R1_FB11 CAN_F12R1_FB11_Msk /*!<Filter bit 11 */
lypinator 0:bb348c97df44 4129 #define CAN_F12R1_FB12_Pos (12U)
lypinator 0:bb348c97df44 4130 #define CAN_F12R1_FB12_Msk (0x1U << CAN_F12R1_FB12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 4131 #define CAN_F12R1_FB12 CAN_F12R1_FB12_Msk /*!<Filter bit 12 */
lypinator 0:bb348c97df44 4132 #define CAN_F12R1_FB13_Pos (13U)
lypinator 0:bb348c97df44 4133 #define CAN_F12R1_FB13_Msk (0x1U << CAN_F12R1_FB13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 4134 #define CAN_F12R1_FB13 CAN_F12R1_FB13_Msk /*!<Filter bit 13 */
lypinator 0:bb348c97df44 4135 #define CAN_F12R1_FB14_Pos (14U)
lypinator 0:bb348c97df44 4136 #define CAN_F12R1_FB14_Msk (0x1U << CAN_F12R1_FB14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 4137 #define CAN_F12R1_FB14 CAN_F12R1_FB14_Msk /*!<Filter bit 14 */
lypinator 0:bb348c97df44 4138 #define CAN_F12R1_FB15_Pos (15U)
lypinator 0:bb348c97df44 4139 #define CAN_F12R1_FB15_Msk (0x1U << CAN_F12R1_FB15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 4140 #define CAN_F12R1_FB15 CAN_F12R1_FB15_Msk /*!<Filter bit 15 */
lypinator 0:bb348c97df44 4141 #define CAN_F12R1_FB16_Pos (16U)
lypinator 0:bb348c97df44 4142 #define CAN_F12R1_FB16_Msk (0x1U << CAN_F12R1_FB16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 4143 #define CAN_F12R1_FB16 CAN_F12R1_FB16_Msk /*!<Filter bit 16 */
lypinator 0:bb348c97df44 4144 #define CAN_F12R1_FB17_Pos (17U)
lypinator 0:bb348c97df44 4145 #define CAN_F12R1_FB17_Msk (0x1U << CAN_F12R1_FB17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 4146 #define CAN_F12R1_FB17 CAN_F12R1_FB17_Msk /*!<Filter bit 17 */
lypinator 0:bb348c97df44 4147 #define CAN_F12R1_FB18_Pos (18U)
lypinator 0:bb348c97df44 4148 #define CAN_F12R1_FB18_Msk (0x1U << CAN_F12R1_FB18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 4149 #define CAN_F12R1_FB18 CAN_F12R1_FB18_Msk /*!<Filter bit 18 */
lypinator 0:bb348c97df44 4150 #define CAN_F12R1_FB19_Pos (19U)
lypinator 0:bb348c97df44 4151 #define CAN_F12R1_FB19_Msk (0x1U << CAN_F12R1_FB19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 4152 #define CAN_F12R1_FB19 CAN_F12R1_FB19_Msk /*!<Filter bit 19 */
lypinator 0:bb348c97df44 4153 #define CAN_F12R1_FB20_Pos (20U)
lypinator 0:bb348c97df44 4154 #define CAN_F12R1_FB20_Msk (0x1U << CAN_F12R1_FB20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 4155 #define CAN_F12R1_FB20 CAN_F12R1_FB20_Msk /*!<Filter bit 20 */
lypinator 0:bb348c97df44 4156 #define CAN_F12R1_FB21_Pos (21U)
lypinator 0:bb348c97df44 4157 #define CAN_F12R1_FB21_Msk (0x1U << CAN_F12R1_FB21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 4158 #define CAN_F12R1_FB21 CAN_F12R1_FB21_Msk /*!<Filter bit 21 */
lypinator 0:bb348c97df44 4159 #define CAN_F12R1_FB22_Pos (22U)
lypinator 0:bb348c97df44 4160 #define CAN_F12R1_FB22_Msk (0x1U << CAN_F12R1_FB22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 4161 #define CAN_F12R1_FB22 CAN_F12R1_FB22_Msk /*!<Filter bit 22 */
lypinator 0:bb348c97df44 4162 #define CAN_F12R1_FB23_Pos (23U)
lypinator 0:bb348c97df44 4163 #define CAN_F12R1_FB23_Msk (0x1U << CAN_F12R1_FB23_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 4164 #define CAN_F12R1_FB23 CAN_F12R1_FB23_Msk /*!<Filter bit 23 */
lypinator 0:bb348c97df44 4165 #define CAN_F12R1_FB24_Pos (24U)
lypinator 0:bb348c97df44 4166 #define CAN_F12R1_FB24_Msk (0x1U << CAN_F12R1_FB24_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 4167 #define CAN_F12R1_FB24 CAN_F12R1_FB24_Msk /*!<Filter bit 24 */
lypinator 0:bb348c97df44 4168 #define CAN_F12R1_FB25_Pos (25U)
lypinator 0:bb348c97df44 4169 #define CAN_F12R1_FB25_Msk (0x1U << CAN_F12R1_FB25_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 4170 #define CAN_F12R1_FB25 CAN_F12R1_FB25_Msk /*!<Filter bit 25 */
lypinator 0:bb348c97df44 4171 #define CAN_F12R1_FB26_Pos (26U)
lypinator 0:bb348c97df44 4172 #define CAN_F12R1_FB26_Msk (0x1U << CAN_F12R1_FB26_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 4173 #define CAN_F12R1_FB26 CAN_F12R1_FB26_Msk /*!<Filter bit 26 */
lypinator 0:bb348c97df44 4174 #define CAN_F12R1_FB27_Pos (27U)
lypinator 0:bb348c97df44 4175 #define CAN_F12R1_FB27_Msk (0x1U << CAN_F12R1_FB27_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 4176 #define CAN_F12R1_FB27 CAN_F12R1_FB27_Msk /*!<Filter bit 27 */
lypinator 0:bb348c97df44 4177 #define CAN_F12R1_FB28_Pos (28U)
lypinator 0:bb348c97df44 4178 #define CAN_F12R1_FB28_Msk (0x1U << CAN_F12R1_FB28_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 4179 #define CAN_F12R1_FB28 CAN_F12R1_FB28_Msk /*!<Filter bit 28 */
lypinator 0:bb348c97df44 4180 #define CAN_F12R1_FB29_Pos (29U)
lypinator 0:bb348c97df44 4181 #define CAN_F12R1_FB29_Msk (0x1U << CAN_F12R1_FB29_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 4182 #define CAN_F12R1_FB29 CAN_F12R1_FB29_Msk /*!<Filter bit 29 */
lypinator 0:bb348c97df44 4183 #define CAN_F12R1_FB30_Pos (30U)
lypinator 0:bb348c97df44 4184 #define CAN_F12R1_FB30_Msk (0x1U << CAN_F12R1_FB30_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 4185 #define CAN_F12R1_FB30 CAN_F12R1_FB30_Msk /*!<Filter bit 30 */
lypinator 0:bb348c97df44 4186 #define CAN_F12R1_FB31_Pos (31U)
lypinator 0:bb348c97df44 4187 #define CAN_F12R1_FB31_Msk (0x1U << CAN_F12R1_FB31_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 4188 #define CAN_F12R1_FB31 CAN_F12R1_FB31_Msk /*!<Filter bit 31 */
lypinator 0:bb348c97df44 4189
lypinator 0:bb348c97df44 4190 /******************* Bit definition for CAN_F13R1 register ******************/
lypinator 0:bb348c97df44 4191 #define CAN_F13R1_FB0_Pos (0U)
lypinator 0:bb348c97df44 4192 #define CAN_F13R1_FB0_Msk (0x1U << CAN_F13R1_FB0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 4193 #define CAN_F13R1_FB0 CAN_F13R1_FB0_Msk /*!<Filter bit 0 */
lypinator 0:bb348c97df44 4194 #define CAN_F13R1_FB1_Pos (1U)
lypinator 0:bb348c97df44 4195 #define CAN_F13R1_FB1_Msk (0x1U << CAN_F13R1_FB1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 4196 #define CAN_F13R1_FB1 CAN_F13R1_FB1_Msk /*!<Filter bit 1 */
lypinator 0:bb348c97df44 4197 #define CAN_F13R1_FB2_Pos (2U)
lypinator 0:bb348c97df44 4198 #define CAN_F13R1_FB2_Msk (0x1U << CAN_F13R1_FB2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 4199 #define CAN_F13R1_FB2 CAN_F13R1_FB2_Msk /*!<Filter bit 2 */
lypinator 0:bb348c97df44 4200 #define CAN_F13R1_FB3_Pos (3U)
lypinator 0:bb348c97df44 4201 #define CAN_F13R1_FB3_Msk (0x1U << CAN_F13R1_FB3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 4202 #define CAN_F13R1_FB3 CAN_F13R1_FB3_Msk /*!<Filter bit 3 */
lypinator 0:bb348c97df44 4203 #define CAN_F13R1_FB4_Pos (4U)
lypinator 0:bb348c97df44 4204 #define CAN_F13R1_FB4_Msk (0x1U << CAN_F13R1_FB4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 4205 #define CAN_F13R1_FB4 CAN_F13R1_FB4_Msk /*!<Filter bit 4 */
lypinator 0:bb348c97df44 4206 #define CAN_F13R1_FB5_Pos (5U)
lypinator 0:bb348c97df44 4207 #define CAN_F13R1_FB5_Msk (0x1U << CAN_F13R1_FB5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 4208 #define CAN_F13R1_FB5 CAN_F13R1_FB5_Msk /*!<Filter bit 5 */
lypinator 0:bb348c97df44 4209 #define CAN_F13R1_FB6_Pos (6U)
lypinator 0:bb348c97df44 4210 #define CAN_F13R1_FB6_Msk (0x1U << CAN_F13R1_FB6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 4211 #define CAN_F13R1_FB6 CAN_F13R1_FB6_Msk /*!<Filter bit 6 */
lypinator 0:bb348c97df44 4212 #define CAN_F13R1_FB7_Pos (7U)
lypinator 0:bb348c97df44 4213 #define CAN_F13R1_FB7_Msk (0x1U << CAN_F13R1_FB7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 4214 #define CAN_F13R1_FB7 CAN_F13R1_FB7_Msk /*!<Filter bit 7 */
lypinator 0:bb348c97df44 4215 #define CAN_F13R1_FB8_Pos (8U)
lypinator 0:bb348c97df44 4216 #define CAN_F13R1_FB8_Msk (0x1U << CAN_F13R1_FB8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 4217 #define CAN_F13R1_FB8 CAN_F13R1_FB8_Msk /*!<Filter bit 8 */
lypinator 0:bb348c97df44 4218 #define CAN_F13R1_FB9_Pos (9U)
lypinator 0:bb348c97df44 4219 #define CAN_F13R1_FB9_Msk (0x1U << CAN_F13R1_FB9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 4220 #define CAN_F13R1_FB9 CAN_F13R1_FB9_Msk /*!<Filter bit 9 */
lypinator 0:bb348c97df44 4221 #define CAN_F13R1_FB10_Pos (10U)
lypinator 0:bb348c97df44 4222 #define CAN_F13R1_FB10_Msk (0x1U << CAN_F13R1_FB10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 4223 #define CAN_F13R1_FB10 CAN_F13R1_FB10_Msk /*!<Filter bit 10 */
lypinator 0:bb348c97df44 4224 #define CAN_F13R1_FB11_Pos (11U)
lypinator 0:bb348c97df44 4225 #define CAN_F13R1_FB11_Msk (0x1U << CAN_F13R1_FB11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 4226 #define CAN_F13R1_FB11 CAN_F13R1_FB11_Msk /*!<Filter bit 11 */
lypinator 0:bb348c97df44 4227 #define CAN_F13R1_FB12_Pos (12U)
lypinator 0:bb348c97df44 4228 #define CAN_F13R1_FB12_Msk (0x1U << CAN_F13R1_FB12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 4229 #define CAN_F13R1_FB12 CAN_F13R1_FB12_Msk /*!<Filter bit 12 */
lypinator 0:bb348c97df44 4230 #define CAN_F13R1_FB13_Pos (13U)
lypinator 0:bb348c97df44 4231 #define CAN_F13R1_FB13_Msk (0x1U << CAN_F13R1_FB13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 4232 #define CAN_F13R1_FB13 CAN_F13R1_FB13_Msk /*!<Filter bit 13 */
lypinator 0:bb348c97df44 4233 #define CAN_F13R1_FB14_Pos (14U)
lypinator 0:bb348c97df44 4234 #define CAN_F13R1_FB14_Msk (0x1U << CAN_F13R1_FB14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 4235 #define CAN_F13R1_FB14 CAN_F13R1_FB14_Msk /*!<Filter bit 14 */
lypinator 0:bb348c97df44 4236 #define CAN_F13R1_FB15_Pos (15U)
lypinator 0:bb348c97df44 4237 #define CAN_F13R1_FB15_Msk (0x1U << CAN_F13R1_FB15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 4238 #define CAN_F13R1_FB15 CAN_F13R1_FB15_Msk /*!<Filter bit 15 */
lypinator 0:bb348c97df44 4239 #define CAN_F13R1_FB16_Pos (16U)
lypinator 0:bb348c97df44 4240 #define CAN_F13R1_FB16_Msk (0x1U << CAN_F13R1_FB16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 4241 #define CAN_F13R1_FB16 CAN_F13R1_FB16_Msk /*!<Filter bit 16 */
lypinator 0:bb348c97df44 4242 #define CAN_F13R1_FB17_Pos (17U)
lypinator 0:bb348c97df44 4243 #define CAN_F13R1_FB17_Msk (0x1U << CAN_F13R1_FB17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 4244 #define CAN_F13R1_FB17 CAN_F13R1_FB17_Msk /*!<Filter bit 17 */
lypinator 0:bb348c97df44 4245 #define CAN_F13R1_FB18_Pos (18U)
lypinator 0:bb348c97df44 4246 #define CAN_F13R1_FB18_Msk (0x1U << CAN_F13R1_FB18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 4247 #define CAN_F13R1_FB18 CAN_F13R1_FB18_Msk /*!<Filter bit 18 */
lypinator 0:bb348c97df44 4248 #define CAN_F13R1_FB19_Pos (19U)
lypinator 0:bb348c97df44 4249 #define CAN_F13R1_FB19_Msk (0x1U << CAN_F13R1_FB19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 4250 #define CAN_F13R1_FB19 CAN_F13R1_FB19_Msk /*!<Filter bit 19 */
lypinator 0:bb348c97df44 4251 #define CAN_F13R1_FB20_Pos (20U)
lypinator 0:bb348c97df44 4252 #define CAN_F13R1_FB20_Msk (0x1U << CAN_F13R1_FB20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 4253 #define CAN_F13R1_FB20 CAN_F13R1_FB20_Msk /*!<Filter bit 20 */
lypinator 0:bb348c97df44 4254 #define CAN_F13R1_FB21_Pos (21U)
lypinator 0:bb348c97df44 4255 #define CAN_F13R1_FB21_Msk (0x1U << CAN_F13R1_FB21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 4256 #define CAN_F13R1_FB21 CAN_F13R1_FB21_Msk /*!<Filter bit 21 */
lypinator 0:bb348c97df44 4257 #define CAN_F13R1_FB22_Pos (22U)
lypinator 0:bb348c97df44 4258 #define CAN_F13R1_FB22_Msk (0x1U << CAN_F13R1_FB22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 4259 #define CAN_F13R1_FB22 CAN_F13R1_FB22_Msk /*!<Filter bit 22 */
lypinator 0:bb348c97df44 4260 #define CAN_F13R1_FB23_Pos (23U)
lypinator 0:bb348c97df44 4261 #define CAN_F13R1_FB23_Msk (0x1U << CAN_F13R1_FB23_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 4262 #define CAN_F13R1_FB23 CAN_F13R1_FB23_Msk /*!<Filter bit 23 */
lypinator 0:bb348c97df44 4263 #define CAN_F13R1_FB24_Pos (24U)
lypinator 0:bb348c97df44 4264 #define CAN_F13R1_FB24_Msk (0x1U << CAN_F13R1_FB24_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 4265 #define CAN_F13R1_FB24 CAN_F13R1_FB24_Msk /*!<Filter bit 24 */
lypinator 0:bb348c97df44 4266 #define CAN_F13R1_FB25_Pos (25U)
lypinator 0:bb348c97df44 4267 #define CAN_F13R1_FB25_Msk (0x1U << CAN_F13R1_FB25_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 4268 #define CAN_F13R1_FB25 CAN_F13R1_FB25_Msk /*!<Filter bit 25 */
lypinator 0:bb348c97df44 4269 #define CAN_F13R1_FB26_Pos (26U)
lypinator 0:bb348c97df44 4270 #define CAN_F13R1_FB26_Msk (0x1U << CAN_F13R1_FB26_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 4271 #define CAN_F13R1_FB26 CAN_F13R1_FB26_Msk /*!<Filter bit 26 */
lypinator 0:bb348c97df44 4272 #define CAN_F13R1_FB27_Pos (27U)
lypinator 0:bb348c97df44 4273 #define CAN_F13R1_FB27_Msk (0x1U << CAN_F13R1_FB27_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 4274 #define CAN_F13R1_FB27 CAN_F13R1_FB27_Msk /*!<Filter bit 27 */
lypinator 0:bb348c97df44 4275 #define CAN_F13R1_FB28_Pos (28U)
lypinator 0:bb348c97df44 4276 #define CAN_F13R1_FB28_Msk (0x1U << CAN_F13R1_FB28_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 4277 #define CAN_F13R1_FB28 CAN_F13R1_FB28_Msk /*!<Filter bit 28 */
lypinator 0:bb348c97df44 4278 #define CAN_F13R1_FB29_Pos (29U)
lypinator 0:bb348c97df44 4279 #define CAN_F13R1_FB29_Msk (0x1U << CAN_F13R1_FB29_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 4280 #define CAN_F13R1_FB29 CAN_F13R1_FB29_Msk /*!<Filter bit 29 */
lypinator 0:bb348c97df44 4281 #define CAN_F13R1_FB30_Pos (30U)
lypinator 0:bb348c97df44 4282 #define CAN_F13R1_FB30_Msk (0x1U << CAN_F13R1_FB30_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 4283 #define CAN_F13R1_FB30 CAN_F13R1_FB30_Msk /*!<Filter bit 30 */
lypinator 0:bb348c97df44 4284 #define CAN_F13R1_FB31_Pos (31U)
lypinator 0:bb348c97df44 4285 #define CAN_F13R1_FB31_Msk (0x1U << CAN_F13R1_FB31_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 4286 #define CAN_F13R1_FB31 CAN_F13R1_FB31_Msk /*!<Filter bit 31 */
lypinator 0:bb348c97df44 4287
lypinator 0:bb348c97df44 4288 /******************* Bit definition for CAN_F0R2 register *******************/
lypinator 0:bb348c97df44 4289 #define CAN_F0R2_FB0_Pos (0U)
lypinator 0:bb348c97df44 4290 #define CAN_F0R2_FB0_Msk (0x1U << CAN_F0R2_FB0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 4291 #define CAN_F0R2_FB0 CAN_F0R2_FB0_Msk /*!<Filter bit 0 */
lypinator 0:bb348c97df44 4292 #define CAN_F0R2_FB1_Pos (1U)
lypinator 0:bb348c97df44 4293 #define CAN_F0R2_FB1_Msk (0x1U << CAN_F0R2_FB1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 4294 #define CAN_F0R2_FB1 CAN_F0R2_FB1_Msk /*!<Filter bit 1 */
lypinator 0:bb348c97df44 4295 #define CAN_F0R2_FB2_Pos (2U)
lypinator 0:bb348c97df44 4296 #define CAN_F0R2_FB2_Msk (0x1U << CAN_F0R2_FB2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 4297 #define CAN_F0R2_FB2 CAN_F0R2_FB2_Msk /*!<Filter bit 2 */
lypinator 0:bb348c97df44 4298 #define CAN_F0R2_FB3_Pos (3U)
lypinator 0:bb348c97df44 4299 #define CAN_F0R2_FB3_Msk (0x1U << CAN_F0R2_FB3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 4300 #define CAN_F0R2_FB3 CAN_F0R2_FB3_Msk /*!<Filter bit 3 */
lypinator 0:bb348c97df44 4301 #define CAN_F0R2_FB4_Pos (4U)
lypinator 0:bb348c97df44 4302 #define CAN_F0R2_FB4_Msk (0x1U << CAN_F0R2_FB4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 4303 #define CAN_F0R2_FB4 CAN_F0R2_FB4_Msk /*!<Filter bit 4 */
lypinator 0:bb348c97df44 4304 #define CAN_F0R2_FB5_Pos (5U)
lypinator 0:bb348c97df44 4305 #define CAN_F0R2_FB5_Msk (0x1U << CAN_F0R2_FB5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 4306 #define CAN_F0R2_FB5 CAN_F0R2_FB5_Msk /*!<Filter bit 5 */
lypinator 0:bb348c97df44 4307 #define CAN_F0R2_FB6_Pos (6U)
lypinator 0:bb348c97df44 4308 #define CAN_F0R2_FB6_Msk (0x1U << CAN_F0R2_FB6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 4309 #define CAN_F0R2_FB6 CAN_F0R2_FB6_Msk /*!<Filter bit 6 */
lypinator 0:bb348c97df44 4310 #define CAN_F0R2_FB7_Pos (7U)
lypinator 0:bb348c97df44 4311 #define CAN_F0R2_FB7_Msk (0x1U << CAN_F0R2_FB7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 4312 #define CAN_F0R2_FB7 CAN_F0R2_FB7_Msk /*!<Filter bit 7 */
lypinator 0:bb348c97df44 4313 #define CAN_F0R2_FB8_Pos (8U)
lypinator 0:bb348c97df44 4314 #define CAN_F0R2_FB8_Msk (0x1U << CAN_F0R2_FB8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 4315 #define CAN_F0R2_FB8 CAN_F0R2_FB8_Msk /*!<Filter bit 8 */
lypinator 0:bb348c97df44 4316 #define CAN_F0R2_FB9_Pos (9U)
lypinator 0:bb348c97df44 4317 #define CAN_F0R2_FB9_Msk (0x1U << CAN_F0R2_FB9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 4318 #define CAN_F0R2_FB9 CAN_F0R2_FB9_Msk /*!<Filter bit 9 */
lypinator 0:bb348c97df44 4319 #define CAN_F0R2_FB10_Pos (10U)
lypinator 0:bb348c97df44 4320 #define CAN_F0R2_FB10_Msk (0x1U << CAN_F0R2_FB10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 4321 #define CAN_F0R2_FB10 CAN_F0R2_FB10_Msk /*!<Filter bit 10 */
lypinator 0:bb348c97df44 4322 #define CAN_F0R2_FB11_Pos (11U)
lypinator 0:bb348c97df44 4323 #define CAN_F0R2_FB11_Msk (0x1U << CAN_F0R2_FB11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 4324 #define CAN_F0R2_FB11 CAN_F0R2_FB11_Msk /*!<Filter bit 11 */
lypinator 0:bb348c97df44 4325 #define CAN_F0R2_FB12_Pos (12U)
lypinator 0:bb348c97df44 4326 #define CAN_F0R2_FB12_Msk (0x1U << CAN_F0R2_FB12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 4327 #define CAN_F0R2_FB12 CAN_F0R2_FB12_Msk /*!<Filter bit 12 */
lypinator 0:bb348c97df44 4328 #define CAN_F0R2_FB13_Pos (13U)
lypinator 0:bb348c97df44 4329 #define CAN_F0R2_FB13_Msk (0x1U << CAN_F0R2_FB13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 4330 #define CAN_F0R2_FB13 CAN_F0R2_FB13_Msk /*!<Filter bit 13 */
lypinator 0:bb348c97df44 4331 #define CAN_F0R2_FB14_Pos (14U)
lypinator 0:bb348c97df44 4332 #define CAN_F0R2_FB14_Msk (0x1U << CAN_F0R2_FB14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 4333 #define CAN_F0R2_FB14 CAN_F0R2_FB14_Msk /*!<Filter bit 14 */
lypinator 0:bb348c97df44 4334 #define CAN_F0R2_FB15_Pos (15U)
lypinator 0:bb348c97df44 4335 #define CAN_F0R2_FB15_Msk (0x1U << CAN_F0R2_FB15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 4336 #define CAN_F0R2_FB15 CAN_F0R2_FB15_Msk /*!<Filter bit 15 */
lypinator 0:bb348c97df44 4337 #define CAN_F0R2_FB16_Pos (16U)
lypinator 0:bb348c97df44 4338 #define CAN_F0R2_FB16_Msk (0x1U << CAN_F0R2_FB16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 4339 #define CAN_F0R2_FB16 CAN_F0R2_FB16_Msk /*!<Filter bit 16 */
lypinator 0:bb348c97df44 4340 #define CAN_F0R2_FB17_Pos (17U)
lypinator 0:bb348c97df44 4341 #define CAN_F0R2_FB17_Msk (0x1U << CAN_F0R2_FB17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 4342 #define CAN_F0R2_FB17 CAN_F0R2_FB17_Msk /*!<Filter bit 17 */
lypinator 0:bb348c97df44 4343 #define CAN_F0R2_FB18_Pos (18U)
lypinator 0:bb348c97df44 4344 #define CAN_F0R2_FB18_Msk (0x1U << CAN_F0R2_FB18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 4345 #define CAN_F0R2_FB18 CAN_F0R2_FB18_Msk /*!<Filter bit 18 */
lypinator 0:bb348c97df44 4346 #define CAN_F0R2_FB19_Pos (19U)
lypinator 0:bb348c97df44 4347 #define CAN_F0R2_FB19_Msk (0x1U << CAN_F0R2_FB19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 4348 #define CAN_F0R2_FB19 CAN_F0R2_FB19_Msk /*!<Filter bit 19 */
lypinator 0:bb348c97df44 4349 #define CAN_F0R2_FB20_Pos (20U)
lypinator 0:bb348c97df44 4350 #define CAN_F0R2_FB20_Msk (0x1U << CAN_F0R2_FB20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 4351 #define CAN_F0R2_FB20 CAN_F0R2_FB20_Msk /*!<Filter bit 20 */
lypinator 0:bb348c97df44 4352 #define CAN_F0R2_FB21_Pos (21U)
lypinator 0:bb348c97df44 4353 #define CAN_F0R2_FB21_Msk (0x1U << CAN_F0R2_FB21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 4354 #define CAN_F0R2_FB21 CAN_F0R2_FB21_Msk /*!<Filter bit 21 */
lypinator 0:bb348c97df44 4355 #define CAN_F0R2_FB22_Pos (22U)
lypinator 0:bb348c97df44 4356 #define CAN_F0R2_FB22_Msk (0x1U << CAN_F0R2_FB22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 4357 #define CAN_F0R2_FB22 CAN_F0R2_FB22_Msk /*!<Filter bit 22 */
lypinator 0:bb348c97df44 4358 #define CAN_F0R2_FB23_Pos (23U)
lypinator 0:bb348c97df44 4359 #define CAN_F0R2_FB23_Msk (0x1U << CAN_F0R2_FB23_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 4360 #define CAN_F0R2_FB23 CAN_F0R2_FB23_Msk /*!<Filter bit 23 */
lypinator 0:bb348c97df44 4361 #define CAN_F0R2_FB24_Pos (24U)
lypinator 0:bb348c97df44 4362 #define CAN_F0R2_FB24_Msk (0x1U << CAN_F0R2_FB24_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 4363 #define CAN_F0R2_FB24 CAN_F0R2_FB24_Msk /*!<Filter bit 24 */
lypinator 0:bb348c97df44 4364 #define CAN_F0R2_FB25_Pos (25U)
lypinator 0:bb348c97df44 4365 #define CAN_F0R2_FB25_Msk (0x1U << CAN_F0R2_FB25_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 4366 #define CAN_F0R2_FB25 CAN_F0R2_FB25_Msk /*!<Filter bit 25 */
lypinator 0:bb348c97df44 4367 #define CAN_F0R2_FB26_Pos (26U)
lypinator 0:bb348c97df44 4368 #define CAN_F0R2_FB26_Msk (0x1U << CAN_F0R2_FB26_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 4369 #define CAN_F0R2_FB26 CAN_F0R2_FB26_Msk /*!<Filter bit 26 */
lypinator 0:bb348c97df44 4370 #define CAN_F0R2_FB27_Pos (27U)
lypinator 0:bb348c97df44 4371 #define CAN_F0R2_FB27_Msk (0x1U << CAN_F0R2_FB27_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 4372 #define CAN_F0R2_FB27 CAN_F0R2_FB27_Msk /*!<Filter bit 27 */
lypinator 0:bb348c97df44 4373 #define CAN_F0R2_FB28_Pos (28U)
lypinator 0:bb348c97df44 4374 #define CAN_F0R2_FB28_Msk (0x1U << CAN_F0R2_FB28_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 4375 #define CAN_F0R2_FB28 CAN_F0R2_FB28_Msk /*!<Filter bit 28 */
lypinator 0:bb348c97df44 4376 #define CAN_F0R2_FB29_Pos (29U)
lypinator 0:bb348c97df44 4377 #define CAN_F0R2_FB29_Msk (0x1U << CAN_F0R2_FB29_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 4378 #define CAN_F0R2_FB29 CAN_F0R2_FB29_Msk /*!<Filter bit 29 */
lypinator 0:bb348c97df44 4379 #define CAN_F0R2_FB30_Pos (30U)
lypinator 0:bb348c97df44 4380 #define CAN_F0R2_FB30_Msk (0x1U << CAN_F0R2_FB30_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 4381 #define CAN_F0R2_FB30 CAN_F0R2_FB30_Msk /*!<Filter bit 30 */
lypinator 0:bb348c97df44 4382 #define CAN_F0R2_FB31_Pos (31U)
lypinator 0:bb348c97df44 4383 #define CAN_F0R2_FB31_Msk (0x1U << CAN_F0R2_FB31_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 4384 #define CAN_F0R2_FB31 CAN_F0R2_FB31_Msk /*!<Filter bit 31 */
lypinator 0:bb348c97df44 4385
lypinator 0:bb348c97df44 4386 /******************* Bit definition for CAN_F1R2 register *******************/
lypinator 0:bb348c97df44 4387 #define CAN_F1R2_FB0_Pos (0U)
lypinator 0:bb348c97df44 4388 #define CAN_F1R2_FB0_Msk (0x1U << CAN_F1R2_FB0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 4389 #define CAN_F1R2_FB0 CAN_F1R2_FB0_Msk /*!<Filter bit 0 */
lypinator 0:bb348c97df44 4390 #define CAN_F1R2_FB1_Pos (1U)
lypinator 0:bb348c97df44 4391 #define CAN_F1R2_FB1_Msk (0x1U << CAN_F1R2_FB1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 4392 #define CAN_F1R2_FB1 CAN_F1R2_FB1_Msk /*!<Filter bit 1 */
lypinator 0:bb348c97df44 4393 #define CAN_F1R2_FB2_Pos (2U)
lypinator 0:bb348c97df44 4394 #define CAN_F1R2_FB2_Msk (0x1U << CAN_F1R2_FB2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 4395 #define CAN_F1R2_FB2 CAN_F1R2_FB2_Msk /*!<Filter bit 2 */
lypinator 0:bb348c97df44 4396 #define CAN_F1R2_FB3_Pos (3U)
lypinator 0:bb348c97df44 4397 #define CAN_F1R2_FB3_Msk (0x1U << CAN_F1R2_FB3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 4398 #define CAN_F1R2_FB3 CAN_F1R2_FB3_Msk /*!<Filter bit 3 */
lypinator 0:bb348c97df44 4399 #define CAN_F1R2_FB4_Pos (4U)
lypinator 0:bb348c97df44 4400 #define CAN_F1R2_FB4_Msk (0x1U << CAN_F1R2_FB4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 4401 #define CAN_F1R2_FB4 CAN_F1R2_FB4_Msk /*!<Filter bit 4 */
lypinator 0:bb348c97df44 4402 #define CAN_F1R2_FB5_Pos (5U)
lypinator 0:bb348c97df44 4403 #define CAN_F1R2_FB5_Msk (0x1U << CAN_F1R2_FB5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 4404 #define CAN_F1R2_FB5 CAN_F1R2_FB5_Msk /*!<Filter bit 5 */
lypinator 0:bb348c97df44 4405 #define CAN_F1R2_FB6_Pos (6U)
lypinator 0:bb348c97df44 4406 #define CAN_F1R2_FB6_Msk (0x1U << CAN_F1R2_FB6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 4407 #define CAN_F1R2_FB6 CAN_F1R2_FB6_Msk /*!<Filter bit 6 */
lypinator 0:bb348c97df44 4408 #define CAN_F1R2_FB7_Pos (7U)
lypinator 0:bb348c97df44 4409 #define CAN_F1R2_FB7_Msk (0x1U << CAN_F1R2_FB7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 4410 #define CAN_F1R2_FB7 CAN_F1R2_FB7_Msk /*!<Filter bit 7 */
lypinator 0:bb348c97df44 4411 #define CAN_F1R2_FB8_Pos (8U)
lypinator 0:bb348c97df44 4412 #define CAN_F1R2_FB8_Msk (0x1U << CAN_F1R2_FB8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 4413 #define CAN_F1R2_FB8 CAN_F1R2_FB8_Msk /*!<Filter bit 8 */
lypinator 0:bb348c97df44 4414 #define CAN_F1R2_FB9_Pos (9U)
lypinator 0:bb348c97df44 4415 #define CAN_F1R2_FB9_Msk (0x1U << CAN_F1R2_FB9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 4416 #define CAN_F1R2_FB9 CAN_F1R2_FB9_Msk /*!<Filter bit 9 */
lypinator 0:bb348c97df44 4417 #define CAN_F1R2_FB10_Pos (10U)
lypinator 0:bb348c97df44 4418 #define CAN_F1R2_FB10_Msk (0x1U << CAN_F1R2_FB10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 4419 #define CAN_F1R2_FB10 CAN_F1R2_FB10_Msk /*!<Filter bit 10 */
lypinator 0:bb348c97df44 4420 #define CAN_F1R2_FB11_Pos (11U)
lypinator 0:bb348c97df44 4421 #define CAN_F1R2_FB11_Msk (0x1U << CAN_F1R2_FB11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 4422 #define CAN_F1R2_FB11 CAN_F1R2_FB11_Msk /*!<Filter bit 11 */
lypinator 0:bb348c97df44 4423 #define CAN_F1R2_FB12_Pos (12U)
lypinator 0:bb348c97df44 4424 #define CAN_F1R2_FB12_Msk (0x1U << CAN_F1R2_FB12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 4425 #define CAN_F1R2_FB12 CAN_F1R2_FB12_Msk /*!<Filter bit 12 */
lypinator 0:bb348c97df44 4426 #define CAN_F1R2_FB13_Pos (13U)
lypinator 0:bb348c97df44 4427 #define CAN_F1R2_FB13_Msk (0x1U << CAN_F1R2_FB13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 4428 #define CAN_F1R2_FB13 CAN_F1R2_FB13_Msk /*!<Filter bit 13 */
lypinator 0:bb348c97df44 4429 #define CAN_F1R2_FB14_Pos (14U)
lypinator 0:bb348c97df44 4430 #define CAN_F1R2_FB14_Msk (0x1U << CAN_F1R2_FB14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 4431 #define CAN_F1R2_FB14 CAN_F1R2_FB14_Msk /*!<Filter bit 14 */
lypinator 0:bb348c97df44 4432 #define CAN_F1R2_FB15_Pos (15U)
lypinator 0:bb348c97df44 4433 #define CAN_F1R2_FB15_Msk (0x1U << CAN_F1R2_FB15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 4434 #define CAN_F1R2_FB15 CAN_F1R2_FB15_Msk /*!<Filter bit 15 */
lypinator 0:bb348c97df44 4435 #define CAN_F1R2_FB16_Pos (16U)
lypinator 0:bb348c97df44 4436 #define CAN_F1R2_FB16_Msk (0x1U << CAN_F1R2_FB16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 4437 #define CAN_F1R2_FB16 CAN_F1R2_FB16_Msk /*!<Filter bit 16 */
lypinator 0:bb348c97df44 4438 #define CAN_F1R2_FB17_Pos (17U)
lypinator 0:bb348c97df44 4439 #define CAN_F1R2_FB17_Msk (0x1U << CAN_F1R2_FB17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 4440 #define CAN_F1R2_FB17 CAN_F1R2_FB17_Msk /*!<Filter bit 17 */
lypinator 0:bb348c97df44 4441 #define CAN_F1R2_FB18_Pos (18U)
lypinator 0:bb348c97df44 4442 #define CAN_F1R2_FB18_Msk (0x1U << CAN_F1R2_FB18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 4443 #define CAN_F1R2_FB18 CAN_F1R2_FB18_Msk /*!<Filter bit 18 */
lypinator 0:bb348c97df44 4444 #define CAN_F1R2_FB19_Pos (19U)
lypinator 0:bb348c97df44 4445 #define CAN_F1R2_FB19_Msk (0x1U << CAN_F1R2_FB19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 4446 #define CAN_F1R2_FB19 CAN_F1R2_FB19_Msk /*!<Filter bit 19 */
lypinator 0:bb348c97df44 4447 #define CAN_F1R2_FB20_Pos (20U)
lypinator 0:bb348c97df44 4448 #define CAN_F1R2_FB20_Msk (0x1U << CAN_F1R2_FB20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 4449 #define CAN_F1R2_FB20 CAN_F1R2_FB20_Msk /*!<Filter bit 20 */
lypinator 0:bb348c97df44 4450 #define CAN_F1R2_FB21_Pos (21U)
lypinator 0:bb348c97df44 4451 #define CAN_F1R2_FB21_Msk (0x1U << CAN_F1R2_FB21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 4452 #define CAN_F1R2_FB21 CAN_F1R2_FB21_Msk /*!<Filter bit 21 */
lypinator 0:bb348c97df44 4453 #define CAN_F1R2_FB22_Pos (22U)
lypinator 0:bb348c97df44 4454 #define CAN_F1R2_FB22_Msk (0x1U << CAN_F1R2_FB22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 4455 #define CAN_F1R2_FB22 CAN_F1R2_FB22_Msk /*!<Filter bit 22 */
lypinator 0:bb348c97df44 4456 #define CAN_F1R2_FB23_Pos (23U)
lypinator 0:bb348c97df44 4457 #define CAN_F1R2_FB23_Msk (0x1U << CAN_F1R2_FB23_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 4458 #define CAN_F1R2_FB23 CAN_F1R2_FB23_Msk /*!<Filter bit 23 */
lypinator 0:bb348c97df44 4459 #define CAN_F1R2_FB24_Pos (24U)
lypinator 0:bb348c97df44 4460 #define CAN_F1R2_FB24_Msk (0x1U << CAN_F1R2_FB24_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 4461 #define CAN_F1R2_FB24 CAN_F1R2_FB24_Msk /*!<Filter bit 24 */
lypinator 0:bb348c97df44 4462 #define CAN_F1R2_FB25_Pos (25U)
lypinator 0:bb348c97df44 4463 #define CAN_F1R2_FB25_Msk (0x1U << CAN_F1R2_FB25_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 4464 #define CAN_F1R2_FB25 CAN_F1R2_FB25_Msk /*!<Filter bit 25 */
lypinator 0:bb348c97df44 4465 #define CAN_F1R2_FB26_Pos (26U)
lypinator 0:bb348c97df44 4466 #define CAN_F1R2_FB26_Msk (0x1U << CAN_F1R2_FB26_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 4467 #define CAN_F1R2_FB26 CAN_F1R2_FB26_Msk /*!<Filter bit 26 */
lypinator 0:bb348c97df44 4468 #define CAN_F1R2_FB27_Pos (27U)
lypinator 0:bb348c97df44 4469 #define CAN_F1R2_FB27_Msk (0x1U << CAN_F1R2_FB27_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 4470 #define CAN_F1R2_FB27 CAN_F1R2_FB27_Msk /*!<Filter bit 27 */
lypinator 0:bb348c97df44 4471 #define CAN_F1R2_FB28_Pos (28U)
lypinator 0:bb348c97df44 4472 #define CAN_F1R2_FB28_Msk (0x1U << CAN_F1R2_FB28_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 4473 #define CAN_F1R2_FB28 CAN_F1R2_FB28_Msk /*!<Filter bit 28 */
lypinator 0:bb348c97df44 4474 #define CAN_F1R2_FB29_Pos (29U)
lypinator 0:bb348c97df44 4475 #define CAN_F1R2_FB29_Msk (0x1U << CAN_F1R2_FB29_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 4476 #define CAN_F1R2_FB29 CAN_F1R2_FB29_Msk /*!<Filter bit 29 */
lypinator 0:bb348c97df44 4477 #define CAN_F1R2_FB30_Pos (30U)
lypinator 0:bb348c97df44 4478 #define CAN_F1R2_FB30_Msk (0x1U << CAN_F1R2_FB30_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 4479 #define CAN_F1R2_FB30 CAN_F1R2_FB30_Msk /*!<Filter bit 30 */
lypinator 0:bb348c97df44 4480 #define CAN_F1R2_FB31_Pos (31U)
lypinator 0:bb348c97df44 4481 #define CAN_F1R2_FB31_Msk (0x1U << CAN_F1R2_FB31_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 4482 #define CAN_F1R2_FB31 CAN_F1R2_FB31_Msk /*!<Filter bit 31 */
lypinator 0:bb348c97df44 4483
lypinator 0:bb348c97df44 4484 /******************* Bit definition for CAN_F2R2 register *******************/
lypinator 0:bb348c97df44 4485 #define CAN_F2R2_FB0_Pos (0U)
lypinator 0:bb348c97df44 4486 #define CAN_F2R2_FB0_Msk (0x1U << CAN_F2R2_FB0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 4487 #define CAN_F2R2_FB0 CAN_F2R2_FB0_Msk /*!<Filter bit 0 */
lypinator 0:bb348c97df44 4488 #define CAN_F2R2_FB1_Pos (1U)
lypinator 0:bb348c97df44 4489 #define CAN_F2R2_FB1_Msk (0x1U << CAN_F2R2_FB1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 4490 #define CAN_F2R2_FB1 CAN_F2R2_FB1_Msk /*!<Filter bit 1 */
lypinator 0:bb348c97df44 4491 #define CAN_F2R2_FB2_Pos (2U)
lypinator 0:bb348c97df44 4492 #define CAN_F2R2_FB2_Msk (0x1U << CAN_F2R2_FB2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 4493 #define CAN_F2R2_FB2 CAN_F2R2_FB2_Msk /*!<Filter bit 2 */
lypinator 0:bb348c97df44 4494 #define CAN_F2R2_FB3_Pos (3U)
lypinator 0:bb348c97df44 4495 #define CAN_F2R2_FB3_Msk (0x1U << CAN_F2R2_FB3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 4496 #define CAN_F2R2_FB3 CAN_F2R2_FB3_Msk /*!<Filter bit 3 */
lypinator 0:bb348c97df44 4497 #define CAN_F2R2_FB4_Pos (4U)
lypinator 0:bb348c97df44 4498 #define CAN_F2R2_FB4_Msk (0x1U << CAN_F2R2_FB4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 4499 #define CAN_F2R2_FB4 CAN_F2R2_FB4_Msk /*!<Filter bit 4 */
lypinator 0:bb348c97df44 4500 #define CAN_F2R2_FB5_Pos (5U)
lypinator 0:bb348c97df44 4501 #define CAN_F2R2_FB5_Msk (0x1U << CAN_F2R2_FB5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 4502 #define CAN_F2R2_FB5 CAN_F2R2_FB5_Msk /*!<Filter bit 5 */
lypinator 0:bb348c97df44 4503 #define CAN_F2R2_FB6_Pos (6U)
lypinator 0:bb348c97df44 4504 #define CAN_F2R2_FB6_Msk (0x1U << CAN_F2R2_FB6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 4505 #define CAN_F2R2_FB6 CAN_F2R2_FB6_Msk /*!<Filter bit 6 */
lypinator 0:bb348c97df44 4506 #define CAN_F2R2_FB7_Pos (7U)
lypinator 0:bb348c97df44 4507 #define CAN_F2R2_FB7_Msk (0x1U << CAN_F2R2_FB7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 4508 #define CAN_F2R2_FB7 CAN_F2R2_FB7_Msk /*!<Filter bit 7 */
lypinator 0:bb348c97df44 4509 #define CAN_F2R2_FB8_Pos (8U)
lypinator 0:bb348c97df44 4510 #define CAN_F2R2_FB8_Msk (0x1U << CAN_F2R2_FB8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 4511 #define CAN_F2R2_FB8 CAN_F2R2_FB8_Msk /*!<Filter bit 8 */
lypinator 0:bb348c97df44 4512 #define CAN_F2R2_FB9_Pos (9U)
lypinator 0:bb348c97df44 4513 #define CAN_F2R2_FB9_Msk (0x1U << CAN_F2R2_FB9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 4514 #define CAN_F2R2_FB9 CAN_F2R2_FB9_Msk /*!<Filter bit 9 */
lypinator 0:bb348c97df44 4515 #define CAN_F2R2_FB10_Pos (10U)
lypinator 0:bb348c97df44 4516 #define CAN_F2R2_FB10_Msk (0x1U << CAN_F2R2_FB10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 4517 #define CAN_F2R2_FB10 CAN_F2R2_FB10_Msk /*!<Filter bit 10 */
lypinator 0:bb348c97df44 4518 #define CAN_F2R2_FB11_Pos (11U)
lypinator 0:bb348c97df44 4519 #define CAN_F2R2_FB11_Msk (0x1U << CAN_F2R2_FB11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 4520 #define CAN_F2R2_FB11 CAN_F2R2_FB11_Msk /*!<Filter bit 11 */
lypinator 0:bb348c97df44 4521 #define CAN_F2R2_FB12_Pos (12U)
lypinator 0:bb348c97df44 4522 #define CAN_F2R2_FB12_Msk (0x1U << CAN_F2R2_FB12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 4523 #define CAN_F2R2_FB12 CAN_F2R2_FB12_Msk /*!<Filter bit 12 */
lypinator 0:bb348c97df44 4524 #define CAN_F2R2_FB13_Pos (13U)
lypinator 0:bb348c97df44 4525 #define CAN_F2R2_FB13_Msk (0x1U << CAN_F2R2_FB13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 4526 #define CAN_F2R2_FB13 CAN_F2R2_FB13_Msk /*!<Filter bit 13 */
lypinator 0:bb348c97df44 4527 #define CAN_F2R2_FB14_Pos (14U)
lypinator 0:bb348c97df44 4528 #define CAN_F2R2_FB14_Msk (0x1U << CAN_F2R2_FB14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 4529 #define CAN_F2R2_FB14 CAN_F2R2_FB14_Msk /*!<Filter bit 14 */
lypinator 0:bb348c97df44 4530 #define CAN_F2R2_FB15_Pos (15U)
lypinator 0:bb348c97df44 4531 #define CAN_F2R2_FB15_Msk (0x1U << CAN_F2R2_FB15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 4532 #define CAN_F2R2_FB15 CAN_F2R2_FB15_Msk /*!<Filter bit 15 */
lypinator 0:bb348c97df44 4533 #define CAN_F2R2_FB16_Pos (16U)
lypinator 0:bb348c97df44 4534 #define CAN_F2R2_FB16_Msk (0x1U << CAN_F2R2_FB16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 4535 #define CAN_F2R2_FB16 CAN_F2R2_FB16_Msk /*!<Filter bit 16 */
lypinator 0:bb348c97df44 4536 #define CAN_F2R2_FB17_Pos (17U)
lypinator 0:bb348c97df44 4537 #define CAN_F2R2_FB17_Msk (0x1U << CAN_F2R2_FB17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 4538 #define CAN_F2R2_FB17 CAN_F2R2_FB17_Msk /*!<Filter bit 17 */
lypinator 0:bb348c97df44 4539 #define CAN_F2R2_FB18_Pos (18U)
lypinator 0:bb348c97df44 4540 #define CAN_F2R2_FB18_Msk (0x1U << CAN_F2R2_FB18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 4541 #define CAN_F2R2_FB18 CAN_F2R2_FB18_Msk /*!<Filter bit 18 */
lypinator 0:bb348c97df44 4542 #define CAN_F2R2_FB19_Pos (19U)
lypinator 0:bb348c97df44 4543 #define CAN_F2R2_FB19_Msk (0x1U << CAN_F2R2_FB19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 4544 #define CAN_F2R2_FB19 CAN_F2R2_FB19_Msk /*!<Filter bit 19 */
lypinator 0:bb348c97df44 4545 #define CAN_F2R2_FB20_Pos (20U)
lypinator 0:bb348c97df44 4546 #define CAN_F2R2_FB20_Msk (0x1U << CAN_F2R2_FB20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 4547 #define CAN_F2R2_FB20 CAN_F2R2_FB20_Msk /*!<Filter bit 20 */
lypinator 0:bb348c97df44 4548 #define CAN_F2R2_FB21_Pos (21U)
lypinator 0:bb348c97df44 4549 #define CAN_F2R2_FB21_Msk (0x1U << CAN_F2R2_FB21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 4550 #define CAN_F2R2_FB21 CAN_F2R2_FB21_Msk /*!<Filter bit 21 */
lypinator 0:bb348c97df44 4551 #define CAN_F2R2_FB22_Pos (22U)
lypinator 0:bb348c97df44 4552 #define CAN_F2R2_FB22_Msk (0x1U << CAN_F2R2_FB22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 4553 #define CAN_F2R2_FB22 CAN_F2R2_FB22_Msk /*!<Filter bit 22 */
lypinator 0:bb348c97df44 4554 #define CAN_F2R2_FB23_Pos (23U)
lypinator 0:bb348c97df44 4555 #define CAN_F2R2_FB23_Msk (0x1U << CAN_F2R2_FB23_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 4556 #define CAN_F2R2_FB23 CAN_F2R2_FB23_Msk /*!<Filter bit 23 */
lypinator 0:bb348c97df44 4557 #define CAN_F2R2_FB24_Pos (24U)
lypinator 0:bb348c97df44 4558 #define CAN_F2R2_FB24_Msk (0x1U << CAN_F2R2_FB24_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 4559 #define CAN_F2R2_FB24 CAN_F2R2_FB24_Msk /*!<Filter bit 24 */
lypinator 0:bb348c97df44 4560 #define CAN_F2R2_FB25_Pos (25U)
lypinator 0:bb348c97df44 4561 #define CAN_F2R2_FB25_Msk (0x1U << CAN_F2R2_FB25_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 4562 #define CAN_F2R2_FB25 CAN_F2R2_FB25_Msk /*!<Filter bit 25 */
lypinator 0:bb348c97df44 4563 #define CAN_F2R2_FB26_Pos (26U)
lypinator 0:bb348c97df44 4564 #define CAN_F2R2_FB26_Msk (0x1U << CAN_F2R2_FB26_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 4565 #define CAN_F2R2_FB26 CAN_F2R2_FB26_Msk /*!<Filter bit 26 */
lypinator 0:bb348c97df44 4566 #define CAN_F2R2_FB27_Pos (27U)
lypinator 0:bb348c97df44 4567 #define CAN_F2R2_FB27_Msk (0x1U << CAN_F2R2_FB27_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 4568 #define CAN_F2R2_FB27 CAN_F2R2_FB27_Msk /*!<Filter bit 27 */
lypinator 0:bb348c97df44 4569 #define CAN_F2R2_FB28_Pos (28U)
lypinator 0:bb348c97df44 4570 #define CAN_F2R2_FB28_Msk (0x1U << CAN_F2R2_FB28_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 4571 #define CAN_F2R2_FB28 CAN_F2R2_FB28_Msk /*!<Filter bit 28 */
lypinator 0:bb348c97df44 4572 #define CAN_F2R2_FB29_Pos (29U)
lypinator 0:bb348c97df44 4573 #define CAN_F2R2_FB29_Msk (0x1U << CAN_F2R2_FB29_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 4574 #define CAN_F2R2_FB29 CAN_F2R2_FB29_Msk /*!<Filter bit 29 */
lypinator 0:bb348c97df44 4575 #define CAN_F2R2_FB30_Pos (30U)
lypinator 0:bb348c97df44 4576 #define CAN_F2R2_FB30_Msk (0x1U << CAN_F2R2_FB30_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 4577 #define CAN_F2R2_FB30 CAN_F2R2_FB30_Msk /*!<Filter bit 30 */
lypinator 0:bb348c97df44 4578 #define CAN_F2R2_FB31_Pos (31U)
lypinator 0:bb348c97df44 4579 #define CAN_F2R2_FB31_Msk (0x1U << CAN_F2R2_FB31_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 4580 #define CAN_F2R2_FB31 CAN_F2R2_FB31_Msk /*!<Filter bit 31 */
lypinator 0:bb348c97df44 4581
lypinator 0:bb348c97df44 4582 /******************* Bit definition for CAN_F3R2 register *******************/
lypinator 0:bb348c97df44 4583 #define CAN_F3R2_FB0_Pos (0U)
lypinator 0:bb348c97df44 4584 #define CAN_F3R2_FB0_Msk (0x1U << CAN_F3R2_FB0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 4585 #define CAN_F3R2_FB0 CAN_F3R2_FB0_Msk /*!<Filter bit 0 */
lypinator 0:bb348c97df44 4586 #define CAN_F3R2_FB1_Pos (1U)
lypinator 0:bb348c97df44 4587 #define CAN_F3R2_FB1_Msk (0x1U << CAN_F3R2_FB1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 4588 #define CAN_F3R2_FB1 CAN_F3R2_FB1_Msk /*!<Filter bit 1 */
lypinator 0:bb348c97df44 4589 #define CAN_F3R2_FB2_Pos (2U)
lypinator 0:bb348c97df44 4590 #define CAN_F3R2_FB2_Msk (0x1U << CAN_F3R2_FB2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 4591 #define CAN_F3R2_FB2 CAN_F3R2_FB2_Msk /*!<Filter bit 2 */
lypinator 0:bb348c97df44 4592 #define CAN_F3R2_FB3_Pos (3U)
lypinator 0:bb348c97df44 4593 #define CAN_F3R2_FB3_Msk (0x1U << CAN_F3R2_FB3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 4594 #define CAN_F3R2_FB3 CAN_F3R2_FB3_Msk /*!<Filter bit 3 */
lypinator 0:bb348c97df44 4595 #define CAN_F3R2_FB4_Pos (4U)
lypinator 0:bb348c97df44 4596 #define CAN_F3R2_FB4_Msk (0x1U << CAN_F3R2_FB4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 4597 #define CAN_F3R2_FB4 CAN_F3R2_FB4_Msk /*!<Filter bit 4 */
lypinator 0:bb348c97df44 4598 #define CAN_F3R2_FB5_Pos (5U)
lypinator 0:bb348c97df44 4599 #define CAN_F3R2_FB5_Msk (0x1U << CAN_F3R2_FB5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 4600 #define CAN_F3R2_FB5 CAN_F3R2_FB5_Msk /*!<Filter bit 5 */
lypinator 0:bb348c97df44 4601 #define CAN_F3R2_FB6_Pos (6U)
lypinator 0:bb348c97df44 4602 #define CAN_F3R2_FB6_Msk (0x1U << CAN_F3R2_FB6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 4603 #define CAN_F3R2_FB6 CAN_F3R2_FB6_Msk /*!<Filter bit 6 */
lypinator 0:bb348c97df44 4604 #define CAN_F3R2_FB7_Pos (7U)
lypinator 0:bb348c97df44 4605 #define CAN_F3R2_FB7_Msk (0x1U << CAN_F3R2_FB7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 4606 #define CAN_F3R2_FB7 CAN_F3R2_FB7_Msk /*!<Filter bit 7 */
lypinator 0:bb348c97df44 4607 #define CAN_F3R2_FB8_Pos (8U)
lypinator 0:bb348c97df44 4608 #define CAN_F3R2_FB8_Msk (0x1U << CAN_F3R2_FB8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 4609 #define CAN_F3R2_FB8 CAN_F3R2_FB8_Msk /*!<Filter bit 8 */
lypinator 0:bb348c97df44 4610 #define CAN_F3R2_FB9_Pos (9U)
lypinator 0:bb348c97df44 4611 #define CAN_F3R2_FB9_Msk (0x1U << CAN_F3R2_FB9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 4612 #define CAN_F3R2_FB9 CAN_F3R2_FB9_Msk /*!<Filter bit 9 */
lypinator 0:bb348c97df44 4613 #define CAN_F3R2_FB10_Pos (10U)
lypinator 0:bb348c97df44 4614 #define CAN_F3R2_FB10_Msk (0x1U << CAN_F3R2_FB10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 4615 #define CAN_F3R2_FB10 CAN_F3R2_FB10_Msk /*!<Filter bit 10 */
lypinator 0:bb348c97df44 4616 #define CAN_F3R2_FB11_Pos (11U)
lypinator 0:bb348c97df44 4617 #define CAN_F3R2_FB11_Msk (0x1U << CAN_F3R2_FB11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 4618 #define CAN_F3R2_FB11 CAN_F3R2_FB11_Msk /*!<Filter bit 11 */
lypinator 0:bb348c97df44 4619 #define CAN_F3R2_FB12_Pos (12U)
lypinator 0:bb348c97df44 4620 #define CAN_F3R2_FB12_Msk (0x1U << CAN_F3R2_FB12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 4621 #define CAN_F3R2_FB12 CAN_F3R2_FB12_Msk /*!<Filter bit 12 */
lypinator 0:bb348c97df44 4622 #define CAN_F3R2_FB13_Pos (13U)
lypinator 0:bb348c97df44 4623 #define CAN_F3R2_FB13_Msk (0x1U << CAN_F3R2_FB13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 4624 #define CAN_F3R2_FB13 CAN_F3R2_FB13_Msk /*!<Filter bit 13 */
lypinator 0:bb348c97df44 4625 #define CAN_F3R2_FB14_Pos (14U)
lypinator 0:bb348c97df44 4626 #define CAN_F3R2_FB14_Msk (0x1U << CAN_F3R2_FB14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 4627 #define CAN_F3R2_FB14 CAN_F3R2_FB14_Msk /*!<Filter bit 14 */
lypinator 0:bb348c97df44 4628 #define CAN_F3R2_FB15_Pos (15U)
lypinator 0:bb348c97df44 4629 #define CAN_F3R2_FB15_Msk (0x1U << CAN_F3R2_FB15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 4630 #define CAN_F3R2_FB15 CAN_F3R2_FB15_Msk /*!<Filter bit 15 */
lypinator 0:bb348c97df44 4631 #define CAN_F3R2_FB16_Pos (16U)
lypinator 0:bb348c97df44 4632 #define CAN_F3R2_FB16_Msk (0x1U << CAN_F3R2_FB16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 4633 #define CAN_F3R2_FB16 CAN_F3R2_FB16_Msk /*!<Filter bit 16 */
lypinator 0:bb348c97df44 4634 #define CAN_F3R2_FB17_Pos (17U)
lypinator 0:bb348c97df44 4635 #define CAN_F3R2_FB17_Msk (0x1U << CAN_F3R2_FB17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 4636 #define CAN_F3R2_FB17 CAN_F3R2_FB17_Msk /*!<Filter bit 17 */
lypinator 0:bb348c97df44 4637 #define CAN_F3R2_FB18_Pos (18U)
lypinator 0:bb348c97df44 4638 #define CAN_F3R2_FB18_Msk (0x1U << CAN_F3R2_FB18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 4639 #define CAN_F3R2_FB18 CAN_F3R2_FB18_Msk /*!<Filter bit 18 */
lypinator 0:bb348c97df44 4640 #define CAN_F3R2_FB19_Pos (19U)
lypinator 0:bb348c97df44 4641 #define CAN_F3R2_FB19_Msk (0x1U << CAN_F3R2_FB19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 4642 #define CAN_F3R2_FB19 CAN_F3R2_FB19_Msk /*!<Filter bit 19 */
lypinator 0:bb348c97df44 4643 #define CAN_F3R2_FB20_Pos (20U)
lypinator 0:bb348c97df44 4644 #define CAN_F3R2_FB20_Msk (0x1U << CAN_F3R2_FB20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 4645 #define CAN_F3R2_FB20 CAN_F3R2_FB20_Msk /*!<Filter bit 20 */
lypinator 0:bb348c97df44 4646 #define CAN_F3R2_FB21_Pos (21U)
lypinator 0:bb348c97df44 4647 #define CAN_F3R2_FB21_Msk (0x1U << CAN_F3R2_FB21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 4648 #define CAN_F3R2_FB21 CAN_F3R2_FB21_Msk /*!<Filter bit 21 */
lypinator 0:bb348c97df44 4649 #define CAN_F3R2_FB22_Pos (22U)
lypinator 0:bb348c97df44 4650 #define CAN_F3R2_FB22_Msk (0x1U << CAN_F3R2_FB22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 4651 #define CAN_F3R2_FB22 CAN_F3R2_FB22_Msk /*!<Filter bit 22 */
lypinator 0:bb348c97df44 4652 #define CAN_F3R2_FB23_Pos (23U)
lypinator 0:bb348c97df44 4653 #define CAN_F3R2_FB23_Msk (0x1U << CAN_F3R2_FB23_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 4654 #define CAN_F3R2_FB23 CAN_F3R2_FB23_Msk /*!<Filter bit 23 */
lypinator 0:bb348c97df44 4655 #define CAN_F3R2_FB24_Pos (24U)
lypinator 0:bb348c97df44 4656 #define CAN_F3R2_FB24_Msk (0x1U << CAN_F3R2_FB24_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 4657 #define CAN_F3R2_FB24 CAN_F3R2_FB24_Msk /*!<Filter bit 24 */
lypinator 0:bb348c97df44 4658 #define CAN_F3R2_FB25_Pos (25U)
lypinator 0:bb348c97df44 4659 #define CAN_F3R2_FB25_Msk (0x1U << CAN_F3R2_FB25_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 4660 #define CAN_F3R2_FB25 CAN_F3R2_FB25_Msk /*!<Filter bit 25 */
lypinator 0:bb348c97df44 4661 #define CAN_F3R2_FB26_Pos (26U)
lypinator 0:bb348c97df44 4662 #define CAN_F3R2_FB26_Msk (0x1U << CAN_F3R2_FB26_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 4663 #define CAN_F3R2_FB26 CAN_F3R2_FB26_Msk /*!<Filter bit 26 */
lypinator 0:bb348c97df44 4664 #define CAN_F3R2_FB27_Pos (27U)
lypinator 0:bb348c97df44 4665 #define CAN_F3R2_FB27_Msk (0x1U << CAN_F3R2_FB27_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 4666 #define CAN_F3R2_FB27 CAN_F3R2_FB27_Msk /*!<Filter bit 27 */
lypinator 0:bb348c97df44 4667 #define CAN_F3R2_FB28_Pos (28U)
lypinator 0:bb348c97df44 4668 #define CAN_F3R2_FB28_Msk (0x1U << CAN_F3R2_FB28_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 4669 #define CAN_F3R2_FB28 CAN_F3R2_FB28_Msk /*!<Filter bit 28 */
lypinator 0:bb348c97df44 4670 #define CAN_F3R2_FB29_Pos (29U)
lypinator 0:bb348c97df44 4671 #define CAN_F3R2_FB29_Msk (0x1U << CAN_F3R2_FB29_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 4672 #define CAN_F3R2_FB29 CAN_F3R2_FB29_Msk /*!<Filter bit 29 */
lypinator 0:bb348c97df44 4673 #define CAN_F3R2_FB30_Pos (30U)
lypinator 0:bb348c97df44 4674 #define CAN_F3R2_FB30_Msk (0x1U << CAN_F3R2_FB30_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 4675 #define CAN_F3R2_FB30 CAN_F3R2_FB30_Msk /*!<Filter bit 30 */
lypinator 0:bb348c97df44 4676 #define CAN_F3R2_FB31_Pos (31U)
lypinator 0:bb348c97df44 4677 #define CAN_F3R2_FB31_Msk (0x1U << CAN_F3R2_FB31_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 4678 #define CAN_F3R2_FB31 CAN_F3R2_FB31_Msk /*!<Filter bit 31 */
lypinator 0:bb348c97df44 4679
lypinator 0:bb348c97df44 4680 /******************* Bit definition for CAN_F4R2 register *******************/
lypinator 0:bb348c97df44 4681 #define CAN_F4R2_FB0_Pos (0U)
lypinator 0:bb348c97df44 4682 #define CAN_F4R2_FB0_Msk (0x1U << CAN_F4R2_FB0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 4683 #define CAN_F4R2_FB0 CAN_F4R2_FB0_Msk /*!<Filter bit 0 */
lypinator 0:bb348c97df44 4684 #define CAN_F4R2_FB1_Pos (1U)
lypinator 0:bb348c97df44 4685 #define CAN_F4R2_FB1_Msk (0x1U << CAN_F4R2_FB1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 4686 #define CAN_F4R2_FB1 CAN_F4R2_FB1_Msk /*!<Filter bit 1 */
lypinator 0:bb348c97df44 4687 #define CAN_F4R2_FB2_Pos (2U)
lypinator 0:bb348c97df44 4688 #define CAN_F4R2_FB2_Msk (0x1U << CAN_F4R2_FB2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 4689 #define CAN_F4R2_FB2 CAN_F4R2_FB2_Msk /*!<Filter bit 2 */
lypinator 0:bb348c97df44 4690 #define CAN_F4R2_FB3_Pos (3U)
lypinator 0:bb348c97df44 4691 #define CAN_F4R2_FB3_Msk (0x1U << CAN_F4R2_FB3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 4692 #define CAN_F4R2_FB3 CAN_F4R2_FB3_Msk /*!<Filter bit 3 */
lypinator 0:bb348c97df44 4693 #define CAN_F4R2_FB4_Pos (4U)
lypinator 0:bb348c97df44 4694 #define CAN_F4R2_FB4_Msk (0x1U << CAN_F4R2_FB4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 4695 #define CAN_F4R2_FB4 CAN_F4R2_FB4_Msk /*!<Filter bit 4 */
lypinator 0:bb348c97df44 4696 #define CAN_F4R2_FB5_Pos (5U)
lypinator 0:bb348c97df44 4697 #define CAN_F4R2_FB5_Msk (0x1U << CAN_F4R2_FB5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 4698 #define CAN_F4R2_FB5 CAN_F4R2_FB5_Msk /*!<Filter bit 5 */
lypinator 0:bb348c97df44 4699 #define CAN_F4R2_FB6_Pos (6U)
lypinator 0:bb348c97df44 4700 #define CAN_F4R2_FB6_Msk (0x1U << CAN_F4R2_FB6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 4701 #define CAN_F4R2_FB6 CAN_F4R2_FB6_Msk /*!<Filter bit 6 */
lypinator 0:bb348c97df44 4702 #define CAN_F4R2_FB7_Pos (7U)
lypinator 0:bb348c97df44 4703 #define CAN_F4R2_FB7_Msk (0x1U << CAN_F4R2_FB7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 4704 #define CAN_F4R2_FB7 CAN_F4R2_FB7_Msk /*!<Filter bit 7 */
lypinator 0:bb348c97df44 4705 #define CAN_F4R2_FB8_Pos (8U)
lypinator 0:bb348c97df44 4706 #define CAN_F4R2_FB8_Msk (0x1U << CAN_F4R2_FB8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 4707 #define CAN_F4R2_FB8 CAN_F4R2_FB8_Msk /*!<Filter bit 8 */
lypinator 0:bb348c97df44 4708 #define CAN_F4R2_FB9_Pos (9U)
lypinator 0:bb348c97df44 4709 #define CAN_F4R2_FB9_Msk (0x1U << CAN_F4R2_FB9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 4710 #define CAN_F4R2_FB9 CAN_F4R2_FB9_Msk /*!<Filter bit 9 */
lypinator 0:bb348c97df44 4711 #define CAN_F4R2_FB10_Pos (10U)
lypinator 0:bb348c97df44 4712 #define CAN_F4R2_FB10_Msk (0x1U << CAN_F4R2_FB10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 4713 #define CAN_F4R2_FB10 CAN_F4R2_FB10_Msk /*!<Filter bit 10 */
lypinator 0:bb348c97df44 4714 #define CAN_F4R2_FB11_Pos (11U)
lypinator 0:bb348c97df44 4715 #define CAN_F4R2_FB11_Msk (0x1U << CAN_F4R2_FB11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 4716 #define CAN_F4R2_FB11 CAN_F4R2_FB11_Msk /*!<Filter bit 11 */
lypinator 0:bb348c97df44 4717 #define CAN_F4R2_FB12_Pos (12U)
lypinator 0:bb348c97df44 4718 #define CAN_F4R2_FB12_Msk (0x1U << CAN_F4R2_FB12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 4719 #define CAN_F4R2_FB12 CAN_F4R2_FB12_Msk /*!<Filter bit 12 */
lypinator 0:bb348c97df44 4720 #define CAN_F4R2_FB13_Pos (13U)
lypinator 0:bb348c97df44 4721 #define CAN_F4R2_FB13_Msk (0x1U << CAN_F4R2_FB13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 4722 #define CAN_F4R2_FB13 CAN_F4R2_FB13_Msk /*!<Filter bit 13 */
lypinator 0:bb348c97df44 4723 #define CAN_F4R2_FB14_Pos (14U)
lypinator 0:bb348c97df44 4724 #define CAN_F4R2_FB14_Msk (0x1U << CAN_F4R2_FB14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 4725 #define CAN_F4R2_FB14 CAN_F4R2_FB14_Msk /*!<Filter bit 14 */
lypinator 0:bb348c97df44 4726 #define CAN_F4R2_FB15_Pos (15U)
lypinator 0:bb348c97df44 4727 #define CAN_F4R2_FB15_Msk (0x1U << CAN_F4R2_FB15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 4728 #define CAN_F4R2_FB15 CAN_F4R2_FB15_Msk /*!<Filter bit 15 */
lypinator 0:bb348c97df44 4729 #define CAN_F4R2_FB16_Pos (16U)
lypinator 0:bb348c97df44 4730 #define CAN_F4R2_FB16_Msk (0x1U << CAN_F4R2_FB16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 4731 #define CAN_F4R2_FB16 CAN_F4R2_FB16_Msk /*!<Filter bit 16 */
lypinator 0:bb348c97df44 4732 #define CAN_F4R2_FB17_Pos (17U)
lypinator 0:bb348c97df44 4733 #define CAN_F4R2_FB17_Msk (0x1U << CAN_F4R2_FB17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 4734 #define CAN_F4R2_FB17 CAN_F4R2_FB17_Msk /*!<Filter bit 17 */
lypinator 0:bb348c97df44 4735 #define CAN_F4R2_FB18_Pos (18U)
lypinator 0:bb348c97df44 4736 #define CAN_F4R2_FB18_Msk (0x1U << CAN_F4R2_FB18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 4737 #define CAN_F4R2_FB18 CAN_F4R2_FB18_Msk /*!<Filter bit 18 */
lypinator 0:bb348c97df44 4738 #define CAN_F4R2_FB19_Pos (19U)
lypinator 0:bb348c97df44 4739 #define CAN_F4R2_FB19_Msk (0x1U << CAN_F4R2_FB19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 4740 #define CAN_F4R2_FB19 CAN_F4R2_FB19_Msk /*!<Filter bit 19 */
lypinator 0:bb348c97df44 4741 #define CAN_F4R2_FB20_Pos (20U)
lypinator 0:bb348c97df44 4742 #define CAN_F4R2_FB20_Msk (0x1U << CAN_F4R2_FB20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 4743 #define CAN_F4R2_FB20 CAN_F4R2_FB20_Msk /*!<Filter bit 20 */
lypinator 0:bb348c97df44 4744 #define CAN_F4R2_FB21_Pos (21U)
lypinator 0:bb348c97df44 4745 #define CAN_F4R2_FB21_Msk (0x1U << CAN_F4R2_FB21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 4746 #define CAN_F4R2_FB21 CAN_F4R2_FB21_Msk /*!<Filter bit 21 */
lypinator 0:bb348c97df44 4747 #define CAN_F4R2_FB22_Pos (22U)
lypinator 0:bb348c97df44 4748 #define CAN_F4R2_FB22_Msk (0x1U << CAN_F4R2_FB22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 4749 #define CAN_F4R2_FB22 CAN_F4R2_FB22_Msk /*!<Filter bit 22 */
lypinator 0:bb348c97df44 4750 #define CAN_F4R2_FB23_Pos (23U)
lypinator 0:bb348c97df44 4751 #define CAN_F4R2_FB23_Msk (0x1U << CAN_F4R2_FB23_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 4752 #define CAN_F4R2_FB23 CAN_F4R2_FB23_Msk /*!<Filter bit 23 */
lypinator 0:bb348c97df44 4753 #define CAN_F4R2_FB24_Pos (24U)
lypinator 0:bb348c97df44 4754 #define CAN_F4R2_FB24_Msk (0x1U << CAN_F4R2_FB24_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 4755 #define CAN_F4R2_FB24 CAN_F4R2_FB24_Msk /*!<Filter bit 24 */
lypinator 0:bb348c97df44 4756 #define CAN_F4R2_FB25_Pos (25U)
lypinator 0:bb348c97df44 4757 #define CAN_F4R2_FB25_Msk (0x1U << CAN_F4R2_FB25_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 4758 #define CAN_F4R2_FB25 CAN_F4R2_FB25_Msk /*!<Filter bit 25 */
lypinator 0:bb348c97df44 4759 #define CAN_F4R2_FB26_Pos (26U)
lypinator 0:bb348c97df44 4760 #define CAN_F4R2_FB26_Msk (0x1U << CAN_F4R2_FB26_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 4761 #define CAN_F4R2_FB26 CAN_F4R2_FB26_Msk /*!<Filter bit 26 */
lypinator 0:bb348c97df44 4762 #define CAN_F4R2_FB27_Pos (27U)
lypinator 0:bb348c97df44 4763 #define CAN_F4R2_FB27_Msk (0x1U << CAN_F4R2_FB27_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 4764 #define CAN_F4R2_FB27 CAN_F4R2_FB27_Msk /*!<Filter bit 27 */
lypinator 0:bb348c97df44 4765 #define CAN_F4R2_FB28_Pos (28U)
lypinator 0:bb348c97df44 4766 #define CAN_F4R2_FB28_Msk (0x1U << CAN_F4R2_FB28_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 4767 #define CAN_F4R2_FB28 CAN_F4R2_FB28_Msk /*!<Filter bit 28 */
lypinator 0:bb348c97df44 4768 #define CAN_F4R2_FB29_Pos (29U)
lypinator 0:bb348c97df44 4769 #define CAN_F4R2_FB29_Msk (0x1U << CAN_F4R2_FB29_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 4770 #define CAN_F4R2_FB29 CAN_F4R2_FB29_Msk /*!<Filter bit 29 */
lypinator 0:bb348c97df44 4771 #define CAN_F4R2_FB30_Pos (30U)
lypinator 0:bb348c97df44 4772 #define CAN_F4R2_FB30_Msk (0x1U << CAN_F4R2_FB30_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 4773 #define CAN_F4R2_FB30 CAN_F4R2_FB30_Msk /*!<Filter bit 30 */
lypinator 0:bb348c97df44 4774 #define CAN_F4R2_FB31_Pos (31U)
lypinator 0:bb348c97df44 4775 #define CAN_F4R2_FB31_Msk (0x1U << CAN_F4R2_FB31_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 4776 #define CAN_F4R2_FB31 CAN_F4R2_FB31_Msk /*!<Filter bit 31 */
lypinator 0:bb348c97df44 4777
lypinator 0:bb348c97df44 4778 /******************* Bit definition for CAN_F5R2 register *******************/
lypinator 0:bb348c97df44 4779 #define CAN_F5R2_FB0_Pos (0U)
lypinator 0:bb348c97df44 4780 #define CAN_F5R2_FB0_Msk (0x1U << CAN_F5R2_FB0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 4781 #define CAN_F5R2_FB0 CAN_F5R2_FB0_Msk /*!<Filter bit 0 */
lypinator 0:bb348c97df44 4782 #define CAN_F5R2_FB1_Pos (1U)
lypinator 0:bb348c97df44 4783 #define CAN_F5R2_FB1_Msk (0x1U << CAN_F5R2_FB1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 4784 #define CAN_F5R2_FB1 CAN_F5R2_FB1_Msk /*!<Filter bit 1 */
lypinator 0:bb348c97df44 4785 #define CAN_F5R2_FB2_Pos (2U)
lypinator 0:bb348c97df44 4786 #define CAN_F5R2_FB2_Msk (0x1U << CAN_F5R2_FB2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 4787 #define CAN_F5R2_FB2 CAN_F5R2_FB2_Msk /*!<Filter bit 2 */
lypinator 0:bb348c97df44 4788 #define CAN_F5R2_FB3_Pos (3U)
lypinator 0:bb348c97df44 4789 #define CAN_F5R2_FB3_Msk (0x1U << CAN_F5R2_FB3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 4790 #define CAN_F5R2_FB3 CAN_F5R2_FB3_Msk /*!<Filter bit 3 */
lypinator 0:bb348c97df44 4791 #define CAN_F5R2_FB4_Pos (4U)
lypinator 0:bb348c97df44 4792 #define CAN_F5R2_FB4_Msk (0x1U << CAN_F5R2_FB4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 4793 #define CAN_F5R2_FB4 CAN_F5R2_FB4_Msk /*!<Filter bit 4 */
lypinator 0:bb348c97df44 4794 #define CAN_F5R2_FB5_Pos (5U)
lypinator 0:bb348c97df44 4795 #define CAN_F5R2_FB5_Msk (0x1U << CAN_F5R2_FB5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 4796 #define CAN_F5R2_FB5 CAN_F5R2_FB5_Msk /*!<Filter bit 5 */
lypinator 0:bb348c97df44 4797 #define CAN_F5R2_FB6_Pos (6U)
lypinator 0:bb348c97df44 4798 #define CAN_F5R2_FB6_Msk (0x1U << CAN_F5R2_FB6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 4799 #define CAN_F5R2_FB6 CAN_F5R2_FB6_Msk /*!<Filter bit 6 */
lypinator 0:bb348c97df44 4800 #define CAN_F5R2_FB7_Pos (7U)
lypinator 0:bb348c97df44 4801 #define CAN_F5R2_FB7_Msk (0x1U << CAN_F5R2_FB7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 4802 #define CAN_F5R2_FB7 CAN_F5R2_FB7_Msk /*!<Filter bit 7 */
lypinator 0:bb348c97df44 4803 #define CAN_F5R2_FB8_Pos (8U)
lypinator 0:bb348c97df44 4804 #define CAN_F5R2_FB8_Msk (0x1U << CAN_F5R2_FB8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 4805 #define CAN_F5R2_FB8 CAN_F5R2_FB8_Msk /*!<Filter bit 8 */
lypinator 0:bb348c97df44 4806 #define CAN_F5R2_FB9_Pos (9U)
lypinator 0:bb348c97df44 4807 #define CAN_F5R2_FB9_Msk (0x1U << CAN_F5R2_FB9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 4808 #define CAN_F5R2_FB9 CAN_F5R2_FB9_Msk /*!<Filter bit 9 */
lypinator 0:bb348c97df44 4809 #define CAN_F5R2_FB10_Pos (10U)
lypinator 0:bb348c97df44 4810 #define CAN_F5R2_FB10_Msk (0x1U << CAN_F5R2_FB10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 4811 #define CAN_F5R2_FB10 CAN_F5R2_FB10_Msk /*!<Filter bit 10 */
lypinator 0:bb348c97df44 4812 #define CAN_F5R2_FB11_Pos (11U)
lypinator 0:bb348c97df44 4813 #define CAN_F5R2_FB11_Msk (0x1U << CAN_F5R2_FB11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 4814 #define CAN_F5R2_FB11 CAN_F5R2_FB11_Msk /*!<Filter bit 11 */
lypinator 0:bb348c97df44 4815 #define CAN_F5R2_FB12_Pos (12U)
lypinator 0:bb348c97df44 4816 #define CAN_F5R2_FB12_Msk (0x1U << CAN_F5R2_FB12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 4817 #define CAN_F5R2_FB12 CAN_F5R2_FB12_Msk /*!<Filter bit 12 */
lypinator 0:bb348c97df44 4818 #define CAN_F5R2_FB13_Pos (13U)
lypinator 0:bb348c97df44 4819 #define CAN_F5R2_FB13_Msk (0x1U << CAN_F5R2_FB13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 4820 #define CAN_F5R2_FB13 CAN_F5R2_FB13_Msk /*!<Filter bit 13 */
lypinator 0:bb348c97df44 4821 #define CAN_F5R2_FB14_Pos (14U)
lypinator 0:bb348c97df44 4822 #define CAN_F5R2_FB14_Msk (0x1U << CAN_F5R2_FB14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 4823 #define CAN_F5R2_FB14 CAN_F5R2_FB14_Msk /*!<Filter bit 14 */
lypinator 0:bb348c97df44 4824 #define CAN_F5R2_FB15_Pos (15U)
lypinator 0:bb348c97df44 4825 #define CAN_F5R2_FB15_Msk (0x1U << CAN_F5R2_FB15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 4826 #define CAN_F5R2_FB15 CAN_F5R2_FB15_Msk /*!<Filter bit 15 */
lypinator 0:bb348c97df44 4827 #define CAN_F5R2_FB16_Pos (16U)
lypinator 0:bb348c97df44 4828 #define CAN_F5R2_FB16_Msk (0x1U << CAN_F5R2_FB16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 4829 #define CAN_F5R2_FB16 CAN_F5R2_FB16_Msk /*!<Filter bit 16 */
lypinator 0:bb348c97df44 4830 #define CAN_F5R2_FB17_Pos (17U)
lypinator 0:bb348c97df44 4831 #define CAN_F5R2_FB17_Msk (0x1U << CAN_F5R2_FB17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 4832 #define CAN_F5R2_FB17 CAN_F5R2_FB17_Msk /*!<Filter bit 17 */
lypinator 0:bb348c97df44 4833 #define CAN_F5R2_FB18_Pos (18U)
lypinator 0:bb348c97df44 4834 #define CAN_F5R2_FB18_Msk (0x1U << CAN_F5R2_FB18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 4835 #define CAN_F5R2_FB18 CAN_F5R2_FB18_Msk /*!<Filter bit 18 */
lypinator 0:bb348c97df44 4836 #define CAN_F5R2_FB19_Pos (19U)
lypinator 0:bb348c97df44 4837 #define CAN_F5R2_FB19_Msk (0x1U << CAN_F5R2_FB19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 4838 #define CAN_F5R2_FB19 CAN_F5R2_FB19_Msk /*!<Filter bit 19 */
lypinator 0:bb348c97df44 4839 #define CAN_F5R2_FB20_Pos (20U)
lypinator 0:bb348c97df44 4840 #define CAN_F5R2_FB20_Msk (0x1U << CAN_F5R2_FB20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 4841 #define CAN_F5R2_FB20 CAN_F5R2_FB20_Msk /*!<Filter bit 20 */
lypinator 0:bb348c97df44 4842 #define CAN_F5R2_FB21_Pos (21U)
lypinator 0:bb348c97df44 4843 #define CAN_F5R2_FB21_Msk (0x1U << CAN_F5R2_FB21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 4844 #define CAN_F5R2_FB21 CAN_F5R2_FB21_Msk /*!<Filter bit 21 */
lypinator 0:bb348c97df44 4845 #define CAN_F5R2_FB22_Pos (22U)
lypinator 0:bb348c97df44 4846 #define CAN_F5R2_FB22_Msk (0x1U << CAN_F5R2_FB22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 4847 #define CAN_F5R2_FB22 CAN_F5R2_FB22_Msk /*!<Filter bit 22 */
lypinator 0:bb348c97df44 4848 #define CAN_F5R2_FB23_Pos (23U)
lypinator 0:bb348c97df44 4849 #define CAN_F5R2_FB23_Msk (0x1U << CAN_F5R2_FB23_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 4850 #define CAN_F5R2_FB23 CAN_F5R2_FB23_Msk /*!<Filter bit 23 */
lypinator 0:bb348c97df44 4851 #define CAN_F5R2_FB24_Pos (24U)
lypinator 0:bb348c97df44 4852 #define CAN_F5R2_FB24_Msk (0x1U << CAN_F5R2_FB24_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 4853 #define CAN_F5R2_FB24 CAN_F5R2_FB24_Msk /*!<Filter bit 24 */
lypinator 0:bb348c97df44 4854 #define CAN_F5R2_FB25_Pos (25U)
lypinator 0:bb348c97df44 4855 #define CAN_F5R2_FB25_Msk (0x1U << CAN_F5R2_FB25_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 4856 #define CAN_F5R2_FB25 CAN_F5R2_FB25_Msk /*!<Filter bit 25 */
lypinator 0:bb348c97df44 4857 #define CAN_F5R2_FB26_Pos (26U)
lypinator 0:bb348c97df44 4858 #define CAN_F5R2_FB26_Msk (0x1U << CAN_F5R2_FB26_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 4859 #define CAN_F5R2_FB26 CAN_F5R2_FB26_Msk /*!<Filter bit 26 */
lypinator 0:bb348c97df44 4860 #define CAN_F5R2_FB27_Pos (27U)
lypinator 0:bb348c97df44 4861 #define CAN_F5R2_FB27_Msk (0x1U << CAN_F5R2_FB27_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 4862 #define CAN_F5R2_FB27 CAN_F5R2_FB27_Msk /*!<Filter bit 27 */
lypinator 0:bb348c97df44 4863 #define CAN_F5R2_FB28_Pos (28U)
lypinator 0:bb348c97df44 4864 #define CAN_F5R2_FB28_Msk (0x1U << CAN_F5R2_FB28_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 4865 #define CAN_F5R2_FB28 CAN_F5R2_FB28_Msk /*!<Filter bit 28 */
lypinator 0:bb348c97df44 4866 #define CAN_F5R2_FB29_Pos (29U)
lypinator 0:bb348c97df44 4867 #define CAN_F5R2_FB29_Msk (0x1U << CAN_F5R2_FB29_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 4868 #define CAN_F5R2_FB29 CAN_F5R2_FB29_Msk /*!<Filter bit 29 */
lypinator 0:bb348c97df44 4869 #define CAN_F5R2_FB30_Pos (30U)
lypinator 0:bb348c97df44 4870 #define CAN_F5R2_FB30_Msk (0x1U << CAN_F5R2_FB30_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 4871 #define CAN_F5R2_FB30 CAN_F5R2_FB30_Msk /*!<Filter bit 30 */
lypinator 0:bb348c97df44 4872 #define CAN_F5R2_FB31_Pos (31U)
lypinator 0:bb348c97df44 4873 #define CAN_F5R2_FB31_Msk (0x1U << CAN_F5R2_FB31_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 4874 #define CAN_F5R2_FB31 CAN_F5R2_FB31_Msk /*!<Filter bit 31 */
lypinator 0:bb348c97df44 4875
lypinator 0:bb348c97df44 4876 /******************* Bit definition for CAN_F6R2 register *******************/
lypinator 0:bb348c97df44 4877 #define CAN_F6R2_FB0_Pos (0U)
lypinator 0:bb348c97df44 4878 #define CAN_F6R2_FB0_Msk (0x1U << CAN_F6R2_FB0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 4879 #define CAN_F6R2_FB0 CAN_F6R2_FB0_Msk /*!<Filter bit 0 */
lypinator 0:bb348c97df44 4880 #define CAN_F6R2_FB1_Pos (1U)
lypinator 0:bb348c97df44 4881 #define CAN_F6R2_FB1_Msk (0x1U << CAN_F6R2_FB1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 4882 #define CAN_F6R2_FB1 CAN_F6R2_FB1_Msk /*!<Filter bit 1 */
lypinator 0:bb348c97df44 4883 #define CAN_F6R2_FB2_Pos (2U)
lypinator 0:bb348c97df44 4884 #define CAN_F6R2_FB2_Msk (0x1U << CAN_F6R2_FB2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 4885 #define CAN_F6R2_FB2 CAN_F6R2_FB2_Msk /*!<Filter bit 2 */
lypinator 0:bb348c97df44 4886 #define CAN_F6R2_FB3_Pos (3U)
lypinator 0:bb348c97df44 4887 #define CAN_F6R2_FB3_Msk (0x1U << CAN_F6R2_FB3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 4888 #define CAN_F6R2_FB3 CAN_F6R2_FB3_Msk /*!<Filter bit 3 */
lypinator 0:bb348c97df44 4889 #define CAN_F6R2_FB4_Pos (4U)
lypinator 0:bb348c97df44 4890 #define CAN_F6R2_FB4_Msk (0x1U << CAN_F6R2_FB4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 4891 #define CAN_F6R2_FB4 CAN_F6R2_FB4_Msk /*!<Filter bit 4 */
lypinator 0:bb348c97df44 4892 #define CAN_F6R2_FB5_Pos (5U)
lypinator 0:bb348c97df44 4893 #define CAN_F6R2_FB5_Msk (0x1U << CAN_F6R2_FB5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 4894 #define CAN_F6R2_FB5 CAN_F6R2_FB5_Msk /*!<Filter bit 5 */
lypinator 0:bb348c97df44 4895 #define CAN_F6R2_FB6_Pos (6U)
lypinator 0:bb348c97df44 4896 #define CAN_F6R2_FB6_Msk (0x1U << CAN_F6R2_FB6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 4897 #define CAN_F6R2_FB6 CAN_F6R2_FB6_Msk /*!<Filter bit 6 */
lypinator 0:bb348c97df44 4898 #define CAN_F6R2_FB7_Pos (7U)
lypinator 0:bb348c97df44 4899 #define CAN_F6R2_FB7_Msk (0x1U << CAN_F6R2_FB7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 4900 #define CAN_F6R2_FB7 CAN_F6R2_FB7_Msk /*!<Filter bit 7 */
lypinator 0:bb348c97df44 4901 #define CAN_F6R2_FB8_Pos (8U)
lypinator 0:bb348c97df44 4902 #define CAN_F6R2_FB8_Msk (0x1U << CAN_F6R2_FB8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 4903 #define CAN_F6R2_FB8 CAN_F6R2_FB8_Msk /*!<Filter bit 8 */
lypinator 0:bb348c97df44 4904 #define CAN_F6R2_FB9_Pos (9U)
lypinator 0:bb348c97df44 4905 #define CAN_F6R2_FB9_Msk (0x1U << CAN_F6R2_FB9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 4906 #define CAN_F6R2_FB9 CAN_F6R2_FB9_Msk /*!<Filter bit 9 */
lypinator 0:bb348c97df44 4907 #define CAN_F6R2_FB10_Pos (10U)
lypinator 0:bb348c97df44 4908 #define CAN_F6R2_FB10_Msk (0x1U << CAN_F6R2_FB10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 4909 #define CAN_F6R2_FB10 CAN_F6R2_FB10_Msk /*!<Filter bit 10 */
lypinator 0:bb348c97df44 4910 #define CAN_F6R2_FB11_Pos (11U)
lypinator 0:bb348c97df44 4911 #define CAN_F6R2_FB11_Msk (0x1U << CAN_F6R2_FB11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 4912 #define CAN_F6R2_FB11 CAN_F6R2_FB11_Msk /*!<Filter bit 11 */
lypinator 0:bb348c97df44 4913 #define CAN_F6R2_FB12_Pos (12U)
lypinator 0:bb348c97df44 4914 #define CAN_F6R2_FB12_Msk (0x1U << CAN_F6R2_FB12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 4915 #define CAN_F6R2_FB12 CAN_F6R2_FB12_Msk /*!<Filter bit 12 */
lypinator 0:bb348c97df44 4916 #define CAN_F6R2_FB13_Pos (13U)
lypinator 0:bb348c97df44 4917 #define CAN_F6R2_FB13_Msk (0x1U << CAN_F6R2_FB13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 4918 #define CAN_F6R2_FB13 CAN_F6R2_FB13_Msk /*!<Filter bit 13 */
lypinator 0:bb348c97df44 4919 #define CAN_F6R2_FB14_Pos (14U)
lypinator 0:bb348c97df44 4920 #define CAN_F6R2_FB14_Msk (0x1U << CAN_F6R2_FB14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 4921 #define CAN_F6R2_FB14 CAN_F6R2_FB14_Msk /*!<Filter bit 14 */
lypinator 0:bb348c97df44 4922 #define CAN_F6R2_FB15_Pos (15U)
lypinator 0:bb348c97df44 4923 #define CAN_F6R2_FB15_Msk (0x1U << CAN_F6R2_FB15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 4924 #define CAN_F6R2_FB15 CAN_F6R2_FB15_Msk /*!<Filter bit 15 */
lypinator 0:bb348c97df44 4925 #define CAN_F6R2_FB16_Pos (16U)
lypinator 0:bb348c97df44 4926 #define CAN_F6R2_FB16_Msk (0x1U << CAN_F6R2_FB16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 4927 #define CAN_F6R2_FB16 CAN_F6R2_FB16_Msk /*!<Filter bit 16 */
lypinator 0:bb348c97df44 4928 #define CAN_F6R2_FB17_Pos (17U)
lypinator 0:bb348c97df44 4929 #define CAN_F6R2_FB17_Msk (0x1U << CAN_F6R2_FB17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 4930 #define CAN_F6R2_FB17 CAN_F6R2_FB17_Msk /*!<Filter bit 17 */
lypinator 0:bb348c97df44 4931 #define CAN_F6R2_FB18_Pos (18U)
lypinator 0:bb348c97df44 4932 #define CAN_F6R2_FB18_Msk (0x1U << CAN_F6R2_FB18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 4933 #define CAN_F6R2_FB18 CAN_F6R2_FB18_Msk /*!<Filter bit 18 */
lypinator 0:bb348c97df44 4934 #define CAN_F6R2_FB19_Pos (19U)
lypinator 0:bb348c97df44 4935 #define CAN_F6R2_FB19_Msk (0x1U << CAN_F6R2_FB19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 4936 #define CAN_F6R2_FB19 CAN_F6R2_FB19_Msk /*!<Filter bit 19 */
lypinator 0:bb348c97df44 4937 #define CAN_F6R2_FB20_Pos (20U)
lypinator 0:bb348c97df44 4938 #define CAN_F6R2_FB20_Msk (0x1U << CAN_F6R2_FB20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 4939 #define CAN_F6R2_FB20 CAN_F6R2_FB20_Msk /*!<Filter bit 20 */
lypinator 0:bb348c97df44 4940 #define CAN_F6R2_FB21_Pos (21U)
lypinator 0:bb348c97df44 4941 #define CAN_F6R2_FB21_Msk (0x1U << CAN_F6R2_FB21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 4942 #define CAN_F6R2_FB21 CAN_F6R2_FB21_Msk /*!<Filter bit 21 */
lypinator 0:bb348c97df44 4943 #define CAN_F6R2_FB22_Pos (22U)
lypinator 0:bb348c97df44 4944 #define CAN_F6R2_FB22_Msk (0x1U << CAN_F6R2_FB22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 4945 #define CAN_F6R2_FB22 CAN_F6R2_FB22_Msk /*!<Filter bit 22 */
lypinator 0:bb348c97df44 4946 #define CAN_F6R2_FB23_Pos (23U)
lypinator 0:bb348c97df44 4947 #define CAN_F6R2_FB23_Msk (0x1U << CAN_F6R2_FB23_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 4948 #define CAN_F6R2_FB23 CAN_F6R2_FB23_Msk /*!<Filter bit 23 */
lypinator 0:bb348c97df44 4949 #define CAN_F6R2_FB24_Pos (24U)
lypinator 0:bb348c97df44 4950 #define CAN_F6R2_FB24_Msk (0x1U << CAN_F6R2_FB24_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 4951 #define CAN_F6R2_FB24 CAN_F6R2_FB24_Msk /*!<Filter bit 24 */
lypinator 0:bb348c97df44 4952 #define CAN_F6R2_FB25_Pos (25U)
lypinator 0:bb348c97df44 4953 #define CAN_F6R2_FB25_Msk (0x1U << CAN_F6R2_FB25_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 4954 #define CAN_F6R2_FB25 CAN_F6R2_FB25_Msk /*!<Filter bit 25 */
lypinator 0:bb348c97df44 4955 #define CAN_F6R2_FB26_Pos (26U)
lypinator 0:bb348c97df44 4956 #define CAN_F6R2_FB26_Msk (0x1U << CAN_F6R2_FB26_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 4957 #define CAN_F6R2_FB26 CAN_F6R2_FB26_Msk /*!<Filter bit 26 */
lypinator 0:bb348c97df44 4958 #define CAN_F6R2_FB27_Pos (27U)
lypinator 0:bb348c97df44 4959 #define CAN_F6R2_FB27_Msk (0x1U << CAN_F6R2_FB27_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 4960 #define CAN_F6R2_FB27 CAN_F6R2_FB27_Msk /*!<Filter bit 27 */
lypinator 0:bb348c97df44 4961 #define CAN_F6R2_FB28_Pos (28U)
lypinator 0:bb348c97df44 4962 #define CAN_F6R2_FB28_Msk (0x1U << CAN_F6R2_FB28_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 4963 #define CAN_F6R2_FB28 CAN_F6R2_FB28_Msk /*!<Filter bit 28 */
lypinator 0:bb348c97df44 4964 #define CAN_F6R2_FB29_Pos (29U)
lypinator 0:bb348c97df44 4965 #define CAN_F6R2_FB29_Msk (0x1U << CAN_F6R2_FB29_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 4966 #define CAN_F6R2_FB29 CAN_F6R2_FB29_Msk /*!<Filter bit 29 */
lypinator 0:bb348c97df44 4967 #define CAN_F6R2_FB30_Pos (30U)
lypinator 0:bb348c97df44 4968 #define CAN_F6R2_FB30_Msk (0x1U << CAN_F6R2_FB30_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 4969 #define CAN_F6R2_FB30 CAN_F6R2_FB30_Msk /*!<Filter bit 30 */
lypinator 0:bb348c97df44 4970 #define CAN_F6R2_FB31_Pos (31U)
lypinator 0:bb348c97df44 4971 #define CAN_F6R2_FB31_Msk (0x1U << CAN_F6R2_FB31_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 4972 #define CAN_F6R2_FB31 CAN_F6R2_FB31_Msk /*!<Filter bit 31 */
lypinator 0:bb348c97df44 4973
lypinator 0:bb348c97df44 4974 /******************* Bit definition for CAN_F7R2 register *******************/
lypinator 0:bb348c97df44 4975 #define CAN_F7R2_FB0_Pos (0U)
lypinator 0:bb348c97df44 4976 #define CAN_F7R2_FB0_Msk (0x1U << CAN_F7R2_FB0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 4977 #define CAN_F7R2_FB0 CAN_F7R2_FB0_Msk /*!<Filter bit 0 */
lypinator 0:bb348c97df44 4978 #define CAN_F7R2_FB1_Pos (1U)
lypinator 0:bb348c97df44 4979 #define CAN_F7R2_FB1_Msk (0x1U << CAN_F7R2_FB1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 4980 #define CAN_F7R2_FB1 CAN_F7R2_FB1_Msk /*!<Filter bit 1 */
lypinator 0:bb348c97df44 4981 #define CAN_F7R2_FB2_Pos (2U)
lypinator 0:bb348c97df44 4982 #define CAN_F7R2_FB2_Msk (0x1U << CAN_F7R2_FB2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 4983 #define CAN_F7R2_FB2 CAN_F7R2_FB2_Msk /*!<Filter bit 2 */
lypinator 0:bb348c97df44 4984 #define CAN_F7R2_FB3_Pos (3U)
lypinator 0:bb348c97df44 4985 #define CAN_F7R2_FB3_Msk (0x1U << CAN_F7R2_FB3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 4986 #define CAN_F7R2_FB3 CAN_F7R2_FB3_Msk /*!<Filter bit 3 */
lypinator 0:bb348c97df44 4987 #define CAN_F7R2_FB4_Pos (4U)
lypinator 0:bb348c97df44 4988 #define CAN_F7R2_FB4_Msk (0x1U << CAN_F7R2_FB4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 4989 #define CAN_F7R2_FB4 CAN_F7R2_FB4_Msk /*!<Filter bit 4 */
lypinator 0:bb348c97df44 4990 #define CAN_F7R2_FB5_Pos (5U)
lypinator 0:bb348c97df44 4991 #define CAN_F7R2_FB5_Msk (0x1U << CAN_F7R2_FB5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 4992 #define CAN_F7R2_FB5 CAN_F7R2_FB5_Msk /*!<Filter bit 5 */
lypinator 0:bb348c97df44 4993 #define CAN_F7R2_FB6_Pos (6U)
lypinator 0:bb348c97df44 4994 #define CAN_F7R2_FB6_Msk (0x1U << CAN_F7R2_FB6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 4995 #define CAN_F7R2_FB6 CAN_F7R2_FB6_Msk /*!<Filter bit 6 */
lypinator 0:bb348c97df44 4996 #define CAN_F7R2_FB7_Pos (7U)
lypinator 0:bb348c97df44 4997 #define CAN_F7R2_FB7_Msk (0x1U << CAN_F7R2_FB7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 4998 #define CAN_F7R2_FB7 CAN_F7R2_FB7_Msk /*!<Filter bit 7 */
lypinator 0:bb348c97df44 4999 #define CAN_F7R2_FB8_Pos (8U)
lypinator 0:bb348c97df44 5000 #define CAN_F7R2_FB8_Msk (0x1U << CAN_F7R2_FB8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 5001 #define CAN_F7R2_FB8 CAN_F7R2_FB8_Msk /*!<Filter bit 8 */
lypinator 0:bb348c97df44 5002 #define CAN_F7R2_FB9_Pos (9U)
lypinator 0:bb348c97df44 5003 #define CAN_F7R2_FB9_Msk (0x1U << CAN_F7R2_FB9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 5004 #define CAN_F7R2_FB9 CAN_F7R2_FB9_Msk /*!<Filter bit 9 */
lypinator 0:bb348c97df44 5005 #define CAN_F7R2_FB10_Pos (10U)
lypinator 0:bb348c97df44 5006 #define CAN_F7R2_FB10_Msk (0x1U << CAN_F7R2_FB10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 5007 #define CAN_F7R2_FB10 CAN_F7R2_FB10_Msk /*!<Filter bit 10 */
lypinator 0:bb348c97df44 5008 #define CAN_F7R2_FB11_Pos (11U)
lypinator 0:bb348c97df44 5009 #define CAN_F7R2_FB11_Msk (0x1U << CAN_F7R2_FB11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 5010 #define CAN_F7R2_FB11 CAN_F7R2_FB11_Msk /*!<Filter bit 11 */
lypinator 0:bb348c97df44 5011 #define CAN_F7R2_FB12_Pos (12U)
lypinator 0:bb348c97df44 5012 #define CAN_F7R2_FB12_Msk (0x1U << CAN_F7R2_FB12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 5013 #define CAN_F7R2_FB12 CAN_F7R2_FB12_Msk /*!<Filter bit 12 */
lypinator 0:bb348c97df44 5014 #define CAN_F7R2_FB13_Pos (13U)
lypinator 0:bb348c97df44 5015 #define CAN_F7R2_FB13_Msk (0x1U << CAN_F7R2_FB13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 5016 #define CAN_F7R2_FB13 CAN_F7R2_FB13_Msk /*!<Filter bit 13 */
lypinator 0:bb348c97df44 5017 #define CAN_F7R2_FB14_Pos (14U)
lypinator 0:bb348c97df44 5018 #define CAN_F7R2_FB14_Msk (0x1U << CAN_F7R2_FB14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 5019 #define CAN_F7R2_FB14 CAN_F7R2_FB14_Msk /*!<Filter bit 14 */
lypinator 0:bb348c97df44 5020 #define CAN_F7R2_FB15_Pos (15U)
lypinator 0:bb348c97df44 5021 #define CAN_F7R2_FB15_Msk (0x1U << CAN_F7R2_FB15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 5022 #define CAN_F7R2_FB15 CAN_F7R2_FB15_Msk /*!<Filter bit 15 */
lypinator 0:bb348c97df44 5023 #define CAN_F7R2_FB16_Pos (16U)
lypinator 0:bb348c97df44 5024 #define CAN_F7R2_FB16_Msk (0x1U << CAN_F7R2_FB16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 5025 #define CAN_F7R2_FB16 CAN_F7R2_FB16_Msk /*!<Filter bit 16 */
lypinator 0:bb348c97df44 5026 #define CAN_F7R2_FB17_Pos (17U)
lypinator 0:bb348c97df44 5027 #define CAN_F7R2_FB17_Msk (0x1U << CAN_F7R2_FB17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 5028 #define CAN_F7R2_FB17 CAN_F7R2_FB17_Msk /*!<Filter bit 17 */
lypinator 0:bb348c97df44 5029 #define CAN_F7R2_FB18_Pos (18U)
lypinator 0:bb348c97df44 5030 #define CAN_F7R2_FB18_Msk (0x1U << CAN_F7R2_FB18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 5031 #define CAN_F7R2_FB18 CAN_F7R2_FB18_Msk /*!<Filter bit 18 */
lypinator 0:bb348c97df44 5032 #define CAN_F7R2_FB19_Pos (19U)
lypinator 0:bb348c97df44 5033 #define CAN_F7R2_FB19_Msk (0x1U << CAN_F7R2_FB19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 5034 #define CAN_F7R2_FB19 CAN_F7R2_FB19_Msk /*!<Filter bit 19 */
lypinator 0:bb348c97df44 5035 #define CAN_F7R2_FB20_Pos (20U)
lypinator 0:bb348c97df44 5036 #define CAN_F7R2_FB20_Msk (0x1U << CAN_F7R2_FB20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 5037 #define CAN_F7R2_FB20 CAN_F7R2_FB20_Msk /*!<Filter bit 20 */
lypinator 0:bb348c97df44 5038 #define CAN_F7R2_FB21_Pos (21U)
lypinator 0:bb348c97df44 5039 #define CAN_F7R2_FB21_Msk (0x1U << CAN_F7R2_FB21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 5040 #define CAN_F7R2_FB21 CAN_F7R2_FB21_Msk /*!<Filter bit 21 */
lypinator 0:bb348c97df44 5041 #define CAN_F7R2_FB22_Pos (22U)
lypinator 0:bb348c97df44 5042 #define CAN_F7R2_FB22_Msk (0x1U << CAN_F7R2_FB22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 5043 #define CAN_F7R2_FB22 CAN_F7R2_FB22_Msk /*!<Filter bit 22 */
lypinator 0:bb348c97df44 5044 #define CAN_F7R2_FB23_Pos (23U)
lypinator 0:bb348c97df44 5045 #define CAN_F7R2_FB23_Msk (0x1U << CAN_F7R2_FB23_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 5046 #define CAN_F7R2_FB23 CAN_F7R2_FB23_Msk /*!<Filter bit 23 */
lypinator 0:bb348c97df44 5047 #define CAN_F7R2_FB24_Pos (24U)
lypinator 0:bb348c97df44 5048 #define CAN_F7R2_FB24_Msk (0x1U << CAN_F7R2_FB24_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 5049 #define CAN_F7R2_FB24 CAN_F7R2_FB24_Msk /*!<Filter bit 24 */
lypinator 0:bb348c97df44 5050 #define CAN_F7R2_FB25_Pos (25U)
lypinator 0:bb348c97df44 5051 #define CAN_F7R2_FB25_Msk (0x1U << CAN_F7R2_FB25_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 5052 #define CAN_F7R2_FB25 CAN_F7R2_FB25_Msk /*!<Filter bit 25 */
lypinator 0:bb348c97df44 5053 #define CAN_F7R2_FB26_Pos (26U)
lypinator 0:bb348c97df44 5054 #define CAN_F7R2_FB26_Msk (0x1U << CAN_F7R2_FB26_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 5055 #define CAN_F7R2_FB26 CAN_F7R2_FB26_Msk /*!<Filter bit 26 */
lypinator 0:bb348c97df44 5056 #define CAN_F7R2_FB27_Pos (27U)
lypinator 0:bb348c97df44 5057 #define CAN_F7R2_FB27_Msk (0x1U << CAN_F7R2_FB27_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 5058 #define CAN_F7R2_FB27 CAN_F7R2_FB27_Msk /*!<Filter bit 27 */
lypinator 0:bb348c97df44 5059 #define CAN_F7R2_FB28_Pos (28U)
lypinator 0:bb348c97df44 5060 #define CAN_F7R2_FB28_Msk (0x1U << CAN_F7R2_FB28_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 5061 #define CAN_F7R2_FB28 CAN_F7R2_FB28_Msk /*!<Filter bit 28 */
lypinator 0:bb348c97df44 5062 #define CAN_F7R2_FB29_Pos (29U)
lypinator 0:bb348c97df44 5063 #define CAN_F7R2_FB29_Msk (0x1U << CAN_F7R2_FB29_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 5064 #define CAN_F7R2_FB29 CAN_F7R2_FB29_Msk /*!<Filter bit 29 */
lypinator 0:bb348c97df44 5065 #define CAN_F7R2_FB30_Pos (30U)
lypinator 0:bb348c97df44 5066 #define CAN_F7R2_FB30_Msk (0x1U << CAN_F7R2_FB30_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 5067 #define CAN_F7R2_FB30 CAN_F7R2_FB30_Msk /*!<Filter bit 30 */
lypinator 0:bb348c97df44 5068 #define CAN_F7R2_FB31_Pos (31U)
lypinator 0:bb348c97df44 5069 #define CAN_F7R2_FB31_Msk (0x1U << CAN_F7R2_FB31_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 5070 #define CAN_F7R2_FB31 CAN_F7R2_FB31_Msk /*!<Filter bit 31 */
lypinator 0:bb348c97df44 5071
lypinator 0:bb348c97df44 5072 /******************* Bit definition for CAN_F8R2 register *******************/
lypinator 0:bb348c97df44 5073 #define CAN_F8R2_FB0_Pos (0U)
lypinator 0:bb348c97df44 5074 #define CAN_F8R2_FB0_Msk (0x1U << CAN_F8R2_FB0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 5075 #define CAN_F8R2_FB0 CAN_F8R2_FB0_Msk /*!<Filter bit 0 */
lypinator 0:bb348c97df44 5076 #define CAN_F8R2_FB1_Pos (1U)
lypinator 0:bb348c97df44 5077 #define CAN_F8R2_FB1_Msk (0x1U << CAN_F8R2_FB1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 5078 #define CAN_F8R2_FB1 CAN_F8R2_FB1_Msk /*!<Filter bit 1 */
lypinator 0:bb348c97df44 5079 #define CAN_F8R2_FB2_Pos (2U)
lypinator 0:bb348c97df44 5080 #define CAN_F8R2_FB2_Msk (0x1U << CAN_F8R2_FB2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 5081 #define CAN_F8R2_FB2 CAN_F8R2_FB2_Msk /*!<Filter bit 2 */
lypinator 0:bb348c97df44 5082 #define CAN_F8R2_FB3_Pos (3U)
lypinator 0:bb348c97df44 5083 #define CAN_F8R2_FB3_Msk (0x1U << CAN_F8R2_FB3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 5084 #define CAN_F8R2_FB3 CAN_F8R2_FB3_Msk /*!<Filter bit 3 */
lypinator 0:bb348c97df44 5085 #define CAN_F8R2_FB4_Pos (4U)
lypinator 0:bb348c97df44 5086 #define CAN_F8R2_FB4_Msk (0x1U << CAN_F8R2_FB4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 5087 #define CAN_F8R2_FB4 CAN_F8R2_FB4_Msk /*!<Filter bit 4 */
lypinator 0:bb348c97df44 5088 #define CAN_F8R2_FB5_Pos (5U)
lypinator 0:bb348c97df44 5089 #define CAN_F8R2_FB5_Msk (0x1U << CAN_F8R2_FB5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 5090 #define CAN_F8R2_FB5 CAN_F8R2_FB5_Msk /*!<Filter bit 5 */
lypinator 0:bb348c97df44 5091 #define CAN_F8R2_FB6_Pos (6U)
lypinator 0:bb348c97df44 5092 #define CAN_F8R2_FB6_Msk (0x1U << CAN_F8R2_FB6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 5093 #define CAN_F8R2_FB6 CAN_F8R2_FB6_Msk /*!<Filter bit 6 */
lypinator 0:bb348c97df44 5094 #define CAN_F8R2_FB7_Pos (7U)
lypinator 0:bb348c97df44 5095 #define CAN_F8R2_FB7_Msk (0x1U << CAN_F8R2_FB7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 5096 #define CAN_F8R2_FB7 CAN_F8R2_FB7_Msk /*!<Filter bit 7 */
lypinator 0:bb348c97df44 5097 #define CAN_F8R2_FB8_Pos (8U)
lypinator 0:bb348c97df44 5098 #define CAN_F8R2_FB8_Msk (0x1U << CAN_F8R2_FB8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 5099 #define CAN_F8R2_FB8 CAN_F8R2_FB8_Msk /*!<Filter bit 8 */
lypinator 0:bb348c97df44 5100 #define CAN_F8R2_FB9_Pos (9U)
lypinator 0:bb348c97df44 5101 #define CAN_F8R2_FB9_Msk (0x1U << CAN_F8R2_FB9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 5102 #define CAN_F8R2_FB9 CAN_F8R2_FB9_Msk /*!<Filter bit 9 */
lypinator 0:bb348c97df44 5103 #define CAN_F8R2_FB10_Pos (10U)
lypinator 0:bb348c97df44 5104 #define CAN_F8R2_FB10_Msk (0x1U << CAN_F8R2_FB10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 5105 #define CAN_F8R2_FB10 CAN_F8R2_FB10_Msk /*!<Filter bit 10 */
lypinator 0:bb348c97df44 5106 #define CAN_F8R2_FB11_Pos (11U)
lypinator 0:bb348c97df44 5107 #define CAN_F8R2_FB11_Msk (0x1U << CAN_F8R2_FB11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 5108 #define CAN_F8R2_FB11 CAN_F8R2_FB11_Msk /*!<Filter bit 11 */
lypinator 0:bb348c97df44 5109 #define CAN_F8R2_FB12_Pos (12U)
lypinator 0:bb348c97df44 5110 #define CAN_F8R2_FB12_Msk (0x1U << CAN_F8R2_FB12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 5111 #define CAN_F8R2_FB12 CAN_F8R2_FB12_Msk /*!<Filter bit 12 */
lypinator 0:bb348c97df44 5112 #define CAN_F8R2_FB13_Pos (13U)
lypinator 0:bb348c97df44 5113 #define CAN_F8R2_FB13_Msk (0x1U << CAN_F8R2_FB13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 5114 #define CAN_F8R2_FB13 CAN_F8R2_FB13_Msk /*!<Filter bit 13 */
lypinator 0:bb348c97df44 5115 #define CAN_F8R2_FB14_Pos (14U)
lypinator 0:bb348c97df44 5116 #define CAN_F8R2_FB14_Msk (0x1U << CAN_F8R2_FB14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 5117 #define CAN_F8R2_FB14 CAN_F8R2_FB14_Msk /*!<Filter bit 14 */
lypinator 0:bb348c97df44 5118 #define CAN_F8R2_FB15_Pos (15U)
lypinator 0:bb348c97df44 5119 #define CAN_F8R2_FB15_Msk (0x1U << CAN_F8R2_FB15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 5120 #define CAN_F8R2_FB15 CAN_F8R2_FB15_Msk /*!<Filter bit 15 */
lypinator 0:bb348c97df44 5121 #define CAN_F8R2_FB16_Pos (16U)
lypinator 0:bb348c97df44 5122 #define CAN_F8R2_FB16_Msk (0x1U << CAN_F8R2_FB16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 5123 #define CAN_F8R2_FB16 CAN_F8R2_FB16_Msk /*!<Filter bit 16 */
lypinator 0:bb348c97df44 5124 #define CAN_F8R2_FB17_Pos (17U)
lypinator 0:bb348c97df44 5125 #define CAN_F8R2_FB17_Msk (0x1U << CAN_F8R2_FB17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 5126 #define CAN_F8R2_FB17 CAN_F8R2_FB17_Msk /*!<Filter bit 17 */
lypinator 0:bb348c97df44 5127 #define CAN_F8R2_FB18_Pos (18U)
lypinator 0:bb348c97df44 5128 #define CAN_F8R2_FB18_Msk (0x1U << CAN_F8R2_FB18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 5129 #define CAN_F8R2_FB18 CAN_F8R2_FB18_Msk /*!<Filter bit 18 */
lypinator 0:bb348c97df44 5130 #define CAN_F8R2_FB19_Pos (19U)
lypinator 0:bb348c97df44 5131 #define CAN_F8R2_FB19_Msk (0x1U << CAN_F8R2_FB19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 5132 #define CAN_F8R2_FB19 CAN_F8R2_FB19_Msk /*!<Filter bit 19 */
lypinator 0:bb348c97df44 5133 #define CAN_F8R2_FB20_Pos (20U)
lypinator 0:bb348c97df44 5134 #define CAN_F8R2_FB20_Msk (0x1U << CAN_F8R2_FB20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 5135 #define CAN_F8R2_FB20 CAN_F8R2_FB20_Msk /*!<Filter bit 20 */
lypinator 0:bb348c97df44 5136 #define CAN_F8R2_FB21_Pos (21U)
lypinator 0:bb348c97df44 5137 #define CAN_F8R2_FB21_Msk (0x1U << CAN_F8R2_FB21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 5138 #define CAN_F8R2_FB21 CAN_F8R2_FB21_Msk /*!<Filter bit 21 */
lypinator 0:bb348c97df44 5139 #define CAN_F8R2_FB22_Pos (22U)
lypinator 0:bb348c97df44 5140 #define CAN_F8R2_FB22_Msk (0x1U << CAN_F8R2_FB22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 5141 #define CAN_F8R2_FB22 CAN_F8R2_FB22_Msk /*!<Filter bit 22 */
lypinator 0:bb348c97df44 5142 #define CAN_F8R2_FB23_Pos (23U)
lypinator 0:bb348c97df44 5143 #define CAN_F8R2_FB23_Msk (0x1U << CAN_F8R2_FB23_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 5144 #define CAN_F8R2_FB23 CAN_F8R2_FB23_Msk /*!<Filter bit 23 */
lypinator 0:bb348c97df44 5145 #define CAN_F8R2_FB24_Pos (24U)
lypinator 0:bb348c97df44 5146 #define CAN_F8R2_FB24_Msk (0x1U << CAN_F8R2_FB24_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 5147 #define CAN_F8R2_FB24 CAN_F8R2_FB24_Msk /*!<Filter bit 24 */
lypinator 0:bb348c97df44 5148 #define CAN_F8R2_FB25_Pos (25U)
lypinator 0:bb348c97df44 5149 #define CAN_F8R2_FB25_Msk (0x1U << CAN_F8R2_FB25_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 5150 #define CAN_F8R2_FB25 CAN_F8R2_FB25_Msk /*!<Filter bit 25 */
lypinator 0:bb348c97df44 5151 #define CAN_F8R2_FB26_Pos (26U)
lypinator 0:bb348c97df44 5152 #define CAN_F8R2_FB26_Msk (0x1U << CAN_F8R2_FB26_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 5153 #define CAN_F8R2_FB26 CAN_F8R2_FB26_Msk /*!<Filter bit 26 */
lypinator 0:bb348c97df44 5154 #define CAN_F8R2_FB27_Pos (27U)
lypinator 0:bb348c97df44 5155 #define CAN_F8R2_FB27_Msk (0x1U << CAN_F8R2_FB27_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 5156 #define CAN_F8R2_FB27 CAN_F8R2_FB27_Msk /*!<Filter bit 27 */
lypinator 0:bb348c97df44 5157 #define CAN_F8R2_FB28_Pos (28U)
lypinator 0:bb348c97df44 5158 #define CAN_F8R2_FB28_Msk (0x1U << CAN_F8R2_FB28_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 5159 #define CAN_F8R2_FB28 CAN_F8R2_FB28_Msk /*!<Filter bit 28 */
lypinator 0:bb348c97df44 5160 #define CAN_F8R2_FB29_Pos (29U)
lypinator 0:bb348c97df44 5161 #define CAN_F8R2_FB29_Msk (0x1U << CAN_F8R2_FB29_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 5162 #define CAN_F8R2_FB29 CAN_F8R2_FB29_Msk /*!<Filter bit 29 */
lypinator 0:bb348c97df44 5163 #define CAN_F8R2_FB30_Pos (30U)
lypinator 0:bb348c97df44 5164 #define CAN_F8R2_FB30_Msk (0x1U << CAN_F8R2_FB30_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 5165 #define CAN_F8R2_FB30 CAN_F8R2_FB30_Msk /*!<Filter bit 30 */
lypinator 0:bb348c97df44 5166 #define CAN_F8R2_FB31_Pos (31U)
lypinator 0:bb348c97df44 5167 #define CAN_F8R2_FB31_Msk (0x1U << CAN_F8R2_FB31_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 5168 #define CAN_F8R2_FB31 CAN_F8R2_FB31_Msk /*!<Filter bit 31 */
lypinator 0:bb348c97df44 5169
lypinator 0:bb348c97df44 5170 /******************* Bit definition for CAN_F9R2 register *******************/
lypinator 0:bb348c97df44 5171 #define CAN_F9R2_FB0_Pos (0U)
lypinator 0:bb348c97df44 5172 #define CAN_F9R2_FB0_Msk (0x1U << CAN_F9R2_FB0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 5173 #define CAN_F9R2_FB0 CAN_F9R2_FB0_Msk /*!<Filter bit 0 */
lypinator 0:bb348c97df44 5174 #define CAN_F9R2_FB1_Pos (1U)
lypinator 0:bb348c97df44 5175 #define CAN_F9R2_FB1_Msk (0x1U << CAN_F9R2_FB1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 5176 #define CAN_F9R2_FB1 CAN_F9R2_FB1_Msk /*!<Filter bit 1 */
lypinator 0:bb348c97df44 5177 #define CAN_F9R2_FB2_Pos (2U)
lypinator 0:bb348c97df44 5178 #define CAN_F9R2_FB2_Msk (0x1U << CAN_F9R2_FB2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 5179 #define CAN_F9R2_FB2 CAN_F9R2_FB2_Msk /*!<Filter bit 2 */
lypinator 0:bb348c97df44 5180 #define CAN_F9R2_FB3_Pos (3U)
lypinator 0:bb348c97df44 5181 #define CAN_F9R2_FB3_Msk (0x1U << CAN_F9R2_FB3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 5182 #define CAN_F9R2_FB3 CAN_F9R2_FB3_Msk /*!<Filter bit 3 */
lypinator 0:bb348c97df44 5183 #define CAN_F9R2_FB4_Pos (4U)
lypinator 0:bb348c97df44 5184 #define CAN_F9R2_FB4_Msk (0x1U << CAN_F9R2_FB4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 5185 #define CAN_F9R2_FB4 CAN_F9R2_FB4_Msk /*!<Filter bit 4 */
lypinator 0:bb348c97df44 5186 #define CAN_F9R2_FB5_Pos (5U)
lypinator 0:bb348c97df44 5187 #define CAN_F9R2_FB5_Msk (0x1U << CAN_F9R2_FB5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 5188 #define CAN_F9R2_FB5 CAN_F9R2_FB5_Msk /*!<Filter bit 5 */
lypinator 0:bb348c97df44 5189 #define CAN_F9R2_FB6_Pos (6U)
lypinator 0:bb348c97df44 5190 #define CAN_F9R2_FB6_Msk (0x1U << CAN_F9R2_FB6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 5191 #define CAN_F9R2_FB6 CAN_F9R2_FB6_Msk /*!<Filter bit 6 */
lypinator 0:bb348c97df44 5192 #define CAN_F9R2_FB7_Pos (7U)
lypinator 0:bb348c97df44 5193 #define CAN_F9R2_FB7_Msk (0x1U << CAN_F9R2_FB7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 5194 #define CAN_F9R2_FB7 CAN_F9R2_FB7_Msk /*!<Filter bit 7 */
lypinator 0:bb348c97df44 5195 #define CAN_F9R2_FB8_Pos (8U)
lypinator 0:bb348c97df44 5196 #define CAN_F9R2_FB8_Msk (0x1U << CAN_F9R2_FB8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 5197 #define CAN_F9R2_FB8 CAN_F9R2_FB8_Msk /*!<Filter bit 8 */
lypinator 0:bb348c97df44 5198 #define CAN_F9R2_FB9_Pos (9U)
lypinator 0:bb348c97df44 5199 #define CAN_F9R2_FB9_Msk (0x1U << CAN_F9R2_FB9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 5200 #define CAN_F9R2_FB9 CAN_F9R2_FB9_Msk /*!<Filter bit 9 */
lypinator 0:bb348c97df44 5201 #define CAN_F9R2_FB10_Pos (10U)
lypinator 0:bb348c97df44 5202 #define CAN_F9R2_FB10_Msk (0x1U << CAN_F9R2_FB10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 5203 #define CAN_F9R2_FB10 CAN_F9R2_FB10_Msk /*!<Filter bit 10 */
lypinator 0:bb348c97df44 5204 #define CAN_F9R2_FB11_Pos (11U)
lypinator 0:bb348c97df44 5205 #define CAN_F9R2_FB11_Msk (0x1U << CAN_F9R2_FB11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 5206 #define CAN_F9R2_FB11 CAN_F9R2_FB11_Msk /*!<Filter bit 11 */
lypinator 0:bb348c97df44 5207 #define CAN_F9R2_FB12_Pos (12U)
lypinator 0:bb348c97df44 5208 #define CAN_F9R2_FB12_Msk (0x1U << CAN_F9R2_FB12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 5209 #define CAN_F9R2_FB12 CAN_F9R2_FB12_Msk /*!<Filter bit 12 */
lypinator 0:bb348c97df44 5210 #define CAN_F9R2_FB13_Pos (13U)
lypinator 0:bb348c97df44 5211 #define CAN_F9R2_FB13_Msk (0x1U << CAN_F9R2_FB13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 5212 #define CAN_F9R2_FB13 CAN_F9R2_FB13_Msk /*!<Filter bit 13 */
lypinator 0:bb348c97df44 5213 #define CAN_F9R2_FB14_Pos (14U)
lypinator 0:bb348c97df44 5214 #define CAN_F9R2_FB14_Msk (0x1U << CAN_F9R2_FB14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 5215 #define CAN_F9R2_FB14 CAN_F9R2_FB14_Msk /*!<Filter bit 14 */
lypinator 0:bb348c97df44 5216 #define CAN_F9R2_FB15_Pos (15U)
lypinator 0:bb348c97df44 5217 #define CAN_F9R2_FB15_Msk (0x1U << CAN_F9R2_FB15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 5218 #define CAN_F9R2_FB15 CAN_F9R2_FB15_Msk /*!<Filter bit 15 */
lypinator 0:bb348c97df44 5219 #define CAN_F9R2_FB16_Pos (16U)
lypinator 0:bb348c97df44 5220 #define CAN_F9R2_FB16_Msk (0x1U << CAN_F9R2_FB16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 5221 #define CAN_F9R2_FB16 CAN_F9R2_FB16_Msk /*!<Filter bit 16 */
lypinator 0:bb348c97df44 5222 #define CAN_F9R2_FB17_Pos (17U)
lypinator 0:bb348c97df44 5223 #define CAN_F9R2_FB17_Msk (0x1U << CAN_F9R2_FB17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 5224 #define CAN_F9R2_FB17 CAN_F9R2_FB17_Msk /*!<Filter bit 17 */
lypinator 0:bb348c97df44 5225 #define CAN_F9R2_FB18_Pos (18U)
lypinator 0:bb348c97df44 5226 #define CAN_F9R2_FB18_Msk (0x1U << CAN_F9R2_FB18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 5227 #define CAN_F9R2_FB18 CAN_F9R2_FB18_Msk /*!<Filter bit 18 */
lypinator 0:bb348c97df44 5228 #define CAN_F9R2_FB19_Pos (19U)
lypinator 0:bb348c97df44 5229 #define CAN_F9R2_FB19_Msk (0x1U << CAN_F9R2_FB19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 5230 #define CAN_F9R2_FB19 CAN_F9R2_FB19_Msk /*!<Filter bit 19 */
lypinator 0:bb348c97df44 5231 #define CAN_F9R2_FB20_Pos (20U)
lypinator 0:bb348c97df44 5232 #define CAN_F9R2_FB20_Msk (0x1U << CAN_F9R2_FB20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 5233 #define CAN_F9R2_FB20 CAN_F9R2_FB20_Msk /*!<Filter bit 20 */
lypinator 0:bb348c97df44 5234 #define CAN_F9R2_FB21_Pos (21U)
lypinator 0:bb348c97df44 5235 #define CAN_F9R2_FB21_Msk (0x1U << CAN_F9R2_FB21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 5236 #define CAN_F9R2_FB21 CAN_F9R2_FB21_Msk /*!<Filter bit 21 */
lypinator 0:bb348c97df44 5237 #define CAN_F9R2_FB22_Pos (22U)
lypinator 0:bb348c97df44 5238 #define CAN_F9R2_FB22_Msk (0x1U << CAN_F9R2_FB22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 5239 #define CAN_F9R2_FB22 CAN_F9R2_FB22_Msk /*!<Filter bit 22 */
lypinator 0:bb348c97df44 5240 #define CAN_F9R2_FB23_Pos (23U)
lypinator 0:bb348c97df44 5241 #define CAN_F9R2_FB23_Msk (0x1U << CAN_F9R2_FB23_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 5242 #define CAN_F9R2_FB23 CAN_F9R2_FB23_Msk /*!<Filter bit 23 */
lypinator 0:bb348c97df44 5243 #define CAN_F9R2_FB24_Pos (24U)
lypinator 0:bb348c97df44 5244 #define CAN_F9R2_FB24_Msk (0x1U << CAN_F9R2_FB24_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 5245 #define CAN_F9R2_FB24 CAN_F9R2_FB24_Msk /*!<Filter bit 24 */
lypinator 0:bb348c97df44 5246 #define CAN_F9R2_FB25_Pos (25U)
lypinator 0:bb348c97df44 5247 #define CAN_F9R2_FB25_Msk (0x1U << CAN_F9R2_FB25_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 5248 #define CAN_F9R2_FB25 CAN_F9R2_FB25_Msk /*!<Filter bit 25 */
lypinator 0:bb348c97df44 5249 #define CAN_F9R2_FB26_Pos (26U)
lypinator 0:bb348c97df44 5250 #define CAN_F9R2_FB26_Msk (0x1U << CAN_F9R2_FB26_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 5251 #define CAN_F9R2_FB26 CAN_F9R2_FB26_Msk /*!<Filter bit 26 */
lypinator 0:bb348c97df44 5252 #define CAN_F9R2_FB27_Pos (27U)
lypinator 0:bb348c97df44 5253 #define CAN_F9R2_FB27_Msk (0x1U << CAN_F9R2_FB27_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 5254 #define CAN_F9R2_FB27 CAN_F9R2_FB27_Msk /*!<Filter bit 27 */
lypinator 0:bb348c97df44 5255 #define CAN_F9R2_FB28_Pos (28U)
lypinator 0:bb348c97df44 5256 #define CAN_F9R2_FB28_Msk (0x1U << CAN_F9R2_FB28_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 5257 #define CAN_F9R2_FB28 CAN_F9R2_FB28_Msk /*!<Filter bit 28 */
lypinator 0:bb348c97df44 5258 #define CAN_F9R2_FB29_Pos (29U)
lypinator 0:bb348c97df44 5259 #define CAN_F9R2_FB29_Msk (0x1U << CAN_F9R2_FB29_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 5260 #define CAN_F9R2_FB29 CAN_F9R2_FB29_Msk /*!<Filter bit 29 */
lypinator 0:bb348c97df44 5261 #define CAN_F9R2_FB30_Pos (30U)
lypinator 0:bb348c97df44 5262 #define CAN_F9R2_FB30_Msk (0x1U << CAN_F9R2_FB30_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 5263 #define CAN_F9R2_FB30 CAN_F9R2_FB30_Msk /*!<Filter bit 30 */
lypinator 0:bb348c97df44 5264 #define CAN_F9R2_FB31_Pos (31U)
lypinator 0:bb348c97df44 5265 #define CAN_F9R2_FB31_Msk (0x1U << CAN_F9R2_FB31_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 5266 #define CAN_F9R2_FB31 CAN_F9R2_FB31_Msk /*!<Filter bit 31 */
lypinator 0:bb348c97df44 5267
lypinator 0:bb348c97df44 5268 /******************* Bit definition for CAN_F10R2 register ******************/
lypinator 0:bb348c97df44 5269 #define CAN_F10R2_FB0_Pos (0U)
lypinator 0:bb348c97df44 5270 #define CAN_F10R2_FB0_Msk (0x1U << CAN_F10R2_FB0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 5271 #define CAN_F10R2_FB0 CAN_F10R2_FB0_Msk /*!<Filter bit 0 */
lypinator 0:bb348c97df44 5272 #define CAN_F10R2_FB1_Pos (1U)
lypinator 0:bb348c97df44 5273 #define CAN_F10R2_FB1_Msk (0x1U << CAN_F10R2_FB1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 5274 #define CAN_F10R2_FB1 CAN_F10R2_FB1_Msk /*!<Filter bit 1 */
lypinator 0:bb348c97df44 5275 #define CAN_F10R2_FB2_Pos (2U)
lypinator 0:bb348c97df44 5276 #define CAN_F10R2_FB2_Msk (0x1U << CAN_F10R2_FB2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 5277 #define CAN_F10R2_FB2 CAN_F10R2_FB2_Msk /*!<Filter bit 2 */
lypinator 0:bb348c97df44 5278 #define CAN_F10R2_FB3_Pos (3U)
lypinator 0:bb348c97df44 5279 #define CAN_F10R2_FB3_Msk (0x1U << CAN_F10R2_FB3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 5280 #define CAN_F10R2_FB3 CAN_F10R2_FB3_Msk /*!<Filter bit 3 */
lypinator 0:bb348c97df44 5281 #define CAN_F10R2_FB4_Pos (4U)
lypinator 0:bb348c97df44 5282 #define CAN_F10R2_FB4_Msk (0x1U << CAN_F10R2_FB4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 5283 #define CAN_F10R2_FB4 CAN_F10R2_FB4_Msk /*!<Filter bit 4 */
lypinator 0:bb348c97df44 5284 #define CAN_F10R2_FB5_Pos (5U)
lypinator 0:bb348c97df44 5285 #define CAN_F10R2_FB5_Msk (0x1U << CAN_F10R2_FB5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 5286 #define CAN_F10R2_FB5 CAN_F10R2_FB5_Msk /*!<Filter bit 5 */
lypinator 0:bb348c97df44 5287 #define CAN_F10R2_FB6_Pos (6U)
lypinator 0:bb348c97df44 5288 #define CAN_F10R2_FB6_Msk (0x1U << CAN_F10R2_FB6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 5289 #define CAN_F10R2_FB6 CAN_F10R2_FB6_Msk /*!<Filter bit 6 */
lypinator 0:bb348c97df44 5290 #define CAN_F10R2_FB7_Pos (7U)
lypinator 0:bb348c97df44 5291 #define CAN_F10R2_FB7_Msk (0x1U << CAN_F10R2_FB7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 5292 #define CAN_F10R2_FB7 CAN_F10R2_FB7_Msk /*!<Filter bit 7 */
lypinator 0:bb348c97df44 5293 #define CAN_F10R2_FB8_Pos (8U)
lypinator 0:bb348c97df44 5294 #define CAN_F10R2_FB8_Msk (0x1U << CAN_F10R2_FB8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 5295 #define CAN_F10R2_FB8 CAN_F10R2_FB8_Msk /*!<Filter bit 8 */
lypinator 0:bb348c97df44 5296 #define CAN_F10R2_FB9_Pos (9U)
lypinator 0:bb348c97df44 5297 #define CAN_F10R2_FB9_Msk (0x1U << CAN_F10R2_FB9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 5298 #define CAN_F10R2_FB9 CAN_F10R2_FB9_Msk /*!<Filter bit 9 */
lypinator 0:bb348c97df44 5299 #define CAN_F10R2_FB10_Pos (10U)
lypinator 0:bb348c97df44 5300 #define CAN_F10R2_FB10_Msk (0x1U << CAN_F10R2_FB10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 5301 #define CAN_F10R2_FB10 CAN_F10R2_FB10_Msk /*!<Filter bit 10 */
lypinator 0:bb348c97df44 5302 #define CAN_F10R2_FB11_Pos (11U)
lypinator 0:bb348c97df44 5303 #define CAN_F10R2_FB11_Msk (0x1U << CAN_F10R2_FB11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 5304 #define CAN_F10R2_FB11 CAN_F10R2_FB11_Msk /*!<Filter bit 11 */
lypinator 0:bb348c97df44 5305 #define CAN_F10R2_FB12_Pos (12U)
lypinator 0:bb348c97df44 5306 #define CAN_F10R2_FB12_Msk (0x1U << CAN_F10R2_FB12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 5307 #define CAN_F10R2_FB12 CAN_F10R2_FB12_Msk /*!<Filter bit 12 */
lypinator 0:bb348c97df44 5308 #define CAN_F10R2_FB13_Pos (13U)
lypinator 0:bb348c97df44 5309 #define CAN_F10R2_FB13_Msk (0x1U << CAN_F10R2_FB13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 5310 #define CAN_F10R2_FB13 CAN_F10R2_FB13_Msk /*!<Filter bit 13 */
lypinator 0:bb348c97df44 5311 #define CAN_F10R2_FB14_Pos (14U)
lypinator 0:bb348c97df44 5312 #define CAN_F10R2_FB14_Msk (0x1U << CAN_F10R2_FB14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 5313 #define CAN_F10R2_FB14 CAN_F10R2_FB14_Msk /*!<Filter bit 14 */
lypinator 0:bb348c97df44 5314 #define CAN_F10R2_FB15_Pos (15U)
lypinator 0:bb348c97df44 5315 #define CAN_F10R2_FB15_Msk (0x1U << CAN_F10R2_FB15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 5316 #define CAN_F10R2_FB15 CAN_F10R2_FB15_Msk /*!<Filter bit 15 */
lypinator 0:bb348c97df44 5317 #define CAN_F10R2_FB16_Pos (16U)
lypinator 0:bb348c97df44 5318 #define CAN_F10R2_FB16_Msk (0x1U << CAN_F10R2_FB16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 5319 #define CAN_F10R2_FB16 CAN_F10R2_FB16_Msk /*!<Filter bit 16 */
lypinator 0:bb348c97df44 5320 #define CAN_F10R2_FB17_Pos (17U)
lypinator 0:bb348c97df44 5321 #define CAN_F10R2_FB17_Msk (0x1U << CAN_F10R2_FB17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 5322 #define CAN_F10R2_FB17 CAN_F10R2_FB17_Msk /*!<Filter bit 17 */
lypinator 0:bb348c97df44 5323 #define CAN_F10R2_FB18_Pos (18U)
lypinator 0:bb348c97df44 5324 #define CAN_F10R2_FB18_Msk (0x1U << CAN_F10R2_FB18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 5325 #define CAN_F10R2_FB18 CAN_F10R2_FB18_Msk /*!<Filter bit 18 */
lypinator 0:bb348c97df44 5326 #define CAN_F10R2_FB19_Pos (19U)
lypinator 0:bb348c97df44 5327 #define CAN_F10R2_FB19_Msk (0x1U << CAN_F10R2_FB19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 5328 #define CAN_F10R2_FB19 CAN_F10R2_FB19_Msk /*!<Filter bit 19 */
lypinator 0:bb348c97df44 5329 #define CAN_F10R2_FB20_Pos (20U)
lypinator 0:bb348c97df44 5330 #define CAN_F10R2_FB20_Msk (0x1U << CAN_F10R2_FB20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 5331 #define CAN_F10R2_FB20 CAN_F10R2_FB20_Msk /*!<Filter bit 20 */
lypinator 0:bb348c97df44 5332 #define CAN_F10R2_FB21_Pos (21U)
lypinator 0:bb348c97df44 5333 #define CAN_F10R2_FB21_Msk (0x1U << CAN_F10R2_FB21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 5334 #define CAN_F10R2_FB21 CAN_F10R2_FB21_Msk /*!<Filter bit 21 */
lypinator 0:bb348c97df44 5335 #define CAN_F10R2_FB22_Pos (22U)
lypinator 0:bb348c97df44 5336 #define CAN_F10R2_FB22_Msk (0x1U << CAN_F10R2_FB22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 5337 #define CAN_F10R2_FB22 CAN_F10R2_FB22_Msk /*!<Filter bit 22 */
lypinator 0:bb348c97df44 5338 #define CAN_F10R2_FB23_Pos (23U)
lypinator 0:bb348c97df44 5339 #define CAN_F10R2_FB23_Msk (0x1U << CAN_F10R2_FB23_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 5340 #define CAN_F10R2_FB23 CAN_F10R2_FB23_Msk /*!<Filter bit 23 */
lypinator 0:bb348c97df44 5341 #define CAN_F10R2_FB24_Pos (24U)
lypinator 0:bb348c97df44 5342 #define CAN_F10R2_FB24_Msk (0x1U << CAN_F10R2_FB24_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 5343 #define CAN_F10R2_FB24 CAN_F10R2_FB24_Msk /*!<Filter bit 24 */
lypinator 0:bb348c97df44 5344 #define CAN_F10R2_FB25_Pos (25U)
lypinator 0:bb348c97df44 5345 #define CAN_F10R2_FB25_Msk (0x1U << CAN_F10R2_FB25_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 5346 #define CAN_F10R2_FB25 CAN_F10R2_FB25_Msk /*!<Filter bit 25 */
lypinator 0:bb348c97df44 5347 #define CAN_F10R2_FB26_Pos (26U)
lypinator 0:bb348c97df44 5348 #define CAN_F10R2_FB26_Msk (0x1U << CAN_F10R2_FB26_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 5349 #define CAN_F10R2_FB26 CAN_F10R2_FB26_Msk /*!<Filter bit 26 */
lypinator 0:bb348c97df44 5350 #define CAN_F10R2_FB27_Pos (27U)
lypinator 0:bb348c97df44 5351 #define CAN_F10R2_FB27_Msk (0x1U << CAN_F10R2_FB27_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 5352 #define CAN_F10R2_FB27 CAN_F10R2_FB27_Msk /*!<Filter bit 27 */
lypinator 0:bb348c97df44 5353 #define CAN_F10R2_FB28_Pos (28U)
lypinator 0:bb348c97df44 5354 #define CAN_F10R2_FB28_Msk (0x1U << CAN_F10R2_FB28_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 5355 #define CAN_F10R2_FB28 CAN_F10R2_FB28_Msk /*!<Filter bit 28 */
lypinator 0:bb348c97df44 5356 #define CAN_F10R2_FB29_Pos (29U)
lypinator 0:bb348c97df44 5357 #define CAN_F10R2_FB29_Msk (0x1U << CAN_F10R2_FB29_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 5358 #define CAN_F10R2_FB29 CAN_F10R2_FB29_Msk /*!<Filter bit 29 */
lypinator 0:bb348c97df44 5359 #define CAN_F10R2_FB30_Pos (30U)
lypinator 0:bb348c97df44 5360 #define CAN_F10R2_FB30_Msk (0x1U << CAN_F10R2_FB30_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 5361 #define CAN_F10R2_FB30 CAN_F10R2_FB30_Msk /*!<Filter bit 30 */
lypinator 0:bb348c97df44 5362 #define CAN_F10R2_FB31_Pos (31U)
lypinator 0:bb348c97df44 5363 #define CAN_F10R2_FB31_Msk (0x1U << CAN_F10R2_FB31_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 5364 #define CAN_F10R2_FB31 CAN_F10R2_FB31_Msk /*!<Filter bit 31 */
lypinator 0:bb348c97df44 5365
lypinator 0:bb348c97df44 5366 /******************* Bit definition for CAN_F11R2 register ******************/
lypinator 0:bb348c97df44 5367 #define CAN_F11R2_FB0_Pos (0U)
lypinator 0:bb348c97df44 5368 #define CAN_F11R2_FB0_Msk (0x1U << CAN_F11R2_FB0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 5369 #define CAN_F11R2_FB0 CAN_F11R2_FB0_Msk /*!<Filter bit 0 */
lypinator 0:bb348c97df44 5370 #define CAN_F11R2_FB1_Pos (1U)
lypinator 0:bb348c97df44 5371 #define CAN_F11R2_FB1_Msk (0x1U << CAN_F11R2_FB1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 5372 #define CAN_F11R2_FB1 CAN_F11R2_FB1_Msk /*!<Filter bit 1 */
lypinator 0:bb348c97df44 5373 #define CAN_F11R2_FB2_Pos (2U)
lypinator 0:bb348c97df44 5374 #define CAN_F11R2_FB2_Msk (0x1U << CAN_F11R2_FB2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 5375 #define CAN_F11R2_FB2 CAN_F11R2_FB2_Msk /*!<Filter bit 2 */
lypinator 0:bb348c97df44 5376 #define CAN_F11R2_FB3_Pos (3U)
lypinator 0:bb348c97df44 5377 #define CAN_F11R2_FB3_Msk (0x1U << CAN_F11R2_FB3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 5378 #define CAN_F11R2_FB3 CAN_F11R2_FB3_Msk /*!<Filter bit 3 */
lypinator 0:bb348c97df44 5379 #define CAN_F11R2_FB4_Pos (4U)
lypinator 0:bb348c97df44 5380 #define CAN_F11R2_FB4_Msk (0x1U << CAN_F11R2_FB4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 5381 #define CAN_F11R2_FB4 CAN_F11R2_FB4_Msk /*!<Filter bit 4 */
lypinator 0:bb348c97df44 5382 #define CAN_F11R2_FB5_Pos (5U)
lypinator 0:bb348c97df44 5383 #define CAN_F11R2_FB5_Msk (0x1U << CAN_F11R2_FB5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 5384 #define CAN_F11R2_FB5 CAN_F11R2_FB5_Msk /*!<Filter bit 5 */
lypinator 0:bb348c97df44 5385 #define CAN_F11R2_FB6_Pos (6U)
lypinator 0:bb348c97df44 5386 #define CAN_F11R2_FB6_Msk (0x1U << CAN_F11R2_FB6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 5387 #define CAN_F11R2_FB6 CAN_F11R2_FB6_Msk /*!<Filter bit 6 */
lypinator 0:bb348c97df44 5388 #define CAN_F11R2_FB7_Pos (7U)
lypinator 0:bb348c97df44 5389 #define CAN_F11R2_FB7_Msk (0x1U << CAN_F11R2_FB7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 5390 #define CAN_F11R2_FB7 CAN_F11R2_FB7_Msk /*!<Filter bit 7 */
lypinator 0:bb348c97df44 5391 #define CAN_F11R2_FB8_Pos (8U)
lypinator 0:bb348c97df44 5392 #define CAN_F11R2_FB8_Msk (0x1U << CAN_F11R2_FB8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 5393 #define CAN_F11R2_FB8 CAN_F11R2_FB8_Msk /*!<Filter bit 8 */
lypinator 0:bb348c97df44 5394 #define CAN_F11R2_FB9_Pos (9U)
lypinator 0:bb348c97df44 5395 #define CAN_F11R2_FB9_Msk (0x1U << CAN_F11R2_FB9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 5396 #define CAN_F11R2_FB9 CAN_F11R2_FB9_Msk /*!<Filter bit 9 */
lypinator 0:bb348c97df44 5397 #define CAN_F11R2_FB10_Pos (10U)
lypinator 0:bb348c97df44 5398 #define CAN_F11R2_FB10_Msk (0x1U << CAN_F11R2_FB10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 5399 #define CAN_F11R2_FB10 CAN_F11R2_FB10_Msk /*!<Filter bit 10 */
lypinator 0:bb348c97df44 5400 #define CAN_F11R2_FB11_Pos (11U)
lypinator 0:bb348c97df44 5401 #define CAN_F11R2_FB11_Msk (0x1U << CAN_F11R2_FB11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 5402 #define CAN_F11R2_FB11 CAN_F11R2_FB11_Msk /*!<Filter bit 11 */
lypinator 0:bb348c97df44 5403 #define CAN_F11R2_FB12_Pos (12U)
lypinator 0:bb348c97df44 5404 #define CAN_F11R2_FB12_Msk (0x1U << CAN_F11R2_FB12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 5405 #define CAN_F11R2_FB12 CAN_F11R2_FB12_Msk /*!<Filter bit 12 */
lypinator 0:bb348c97df44 5406 #define CAN_F11R2_FB13_Pos (13U)
lypinator 0:bb348c97df44 5407 #define CAN_F11R2_FB13_Msk (0x1U << CAN_F11R2_FB13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 5408 #define CAN_F11R2_FB13 CAN_F11R2_FB13_Msk /*!<Filter bit 13 */
lypinator 0:bb348c97df44 5409 #define CAN_F11R2_FB14_Pos (14U)
lypinator 0:bb348c97df44 5410 #define CAN_F11R2_FB14_Msk (0x1U << CAN_F11R2_FB14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 5411 #define CAN_F11R2_FB14 CAN_F11R2_FB14_Msk /*!<Filter bit 14 */
lypinator 0:bb348c97df44 5412 #define CAN_F11R2_FB15_Pos (15U)
lypinator 0:bb348c97df44 5413 #define CAN_F11R2_FB15_Msk (0x1U << CAN_F11R2_FB15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 5414 #define CAN_F11R2_FB15 CAN_F11R2_FB15_Msk /*!<Filter bit 15 */
lypinator 0:bb348c97df44 5415 #define CAN_F11R2_FB16_Pos (16U)
lypinator 0:bb348c97df44 5416 #define CAN_F11R2_FB16_Msk (0x1U << CAN_F11R2_FB16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 5417 #define CAN_F11R2_FB16 CAN_F11R2_FB16_Msk /*!<Filter bit 16 */
lypinator 0:bb348c97df44 5418 #define CAN_F11R2_FB17_Pos (17U)
lypinator 0:bb348c97df44 5419 #define CAN_F11R2_FB17_Msk (0x1U << CAN_F11R2_FB17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 5420 #define CAN_F11R2_FB17 CAN_F11R2_FB17_Msk /*!<Filter bit 17 */
lypinator 0:bb348c97df44 5421 #define CAN_F11R2_FB18_Pos (18U)
lypinator 0:bb348c97df44 5422 #define CAN_F11R2_FB18_Msk (0x1U << CAN_F11R2_FB18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 5423 #define CAN_F11R2_FB18 CAN_F11R2_FB18_Msk /*!<Filter bit 18 */
lypinator 0:bb348c97df44 5424 #define CAN_F11R2_FB19_Pos (19U)
lypinator 0:bb348c97df44 5425 #define CAN_F11R2_FB19_Msk (0x1U << CAN_F11R2_FB19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 5426 #define CAN_F11R2_FB19 CAN_F11R2_FB19_Msk /*!<Filter bit 19 */
lypinator 0:bb348c97df44 5427 #define CAN_F11R2_FB20_Pos (20U)
lypinator 0:bb348c97df44 5428 #define CAN_F11R2_FB20_Msk (0x1U << CAN_F11R2_FB20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 5429 #define CAN_F11R2_FB20 CAN_F11R2_FB20_Msk /*!<Filter bit 20 */
lypinator 0:bb348c97df44 5430 #define CAN_F11R2_FB21_Pos (21U)
lypinator 0:bb348c97df44 5431 #define CAN_F11R2_FB21_Msk (0x1U << CAN_F11R2_FB21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 5432 #define CAN_F11R2_FB21 CAN_F11R2_FB21_Msk /*!<Filter bit 21 */
lypinator 0:bb348c97df44 5433 #define CAN_F11R2_FB22_Pos (22U)
lypinator 0:bb348c97df44 5434 #define CAN_F11R2_FB22_Msk (0x1U << CAN_F11R2_FB22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 5435 #define CAN_F11R2_FB22 CAN_F11R2_FB22_Msk /*!<Filter bit 22 */
lypinator 0:bb348c97df44 5436 #define CAN_F11R2_FB23_Pos (23U)
lypinator 0:bb348c97df44 5437 #define CAN_F11R2_FB23_Msk (0x1U << CAN_F11R2_FB23_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 5438 #define CAN_F11R2_FB23 CAN_F11R2_FB23_Msk /*!<Filter bit 23 */
lypinator 0:bb348c97df44 5439 #define CAN_F11R2_FB24_Pos (24U)
lypinator 0:bb348c97df44 5440 #define CAN_F11R2_FB24_Msk (0x1U << CAN_F11R2_FB24_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 5441 #define CAN_F11R2_FB24 CAN_F11R2_FB24_Msk /*!<Filter bit 24 */
lypinator 0:bb348c97df44 5442 #define CAN_F11R2_FB25_Pos (25U)
lypinator 0:bb348c97df44 5443 #define CAN_F11R2_FB25_Msk (0x1U << CAN_F11R2_FB25_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 5444 #define CAN_F11R2_FB25 CAN_F11R2_FB25_Msk /*!<Filter bit 25 */
lypinator 0:bb348c97df44 5445 #define CAN_F11R2_FB26_Pos (26U)
lypinator 0:bb348c97df44 5446 #define CAN_F11R2_FB26_Msk (0x1U << CAN_F11R2_FB26_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 5447 #define CAN_F11R2_FB26 CAN_F11R2_FB26_Msk /*!<Filter bit 26 */
lypinator 0:bb348c97df44 5448 #define CAN_F11R2_FB27_Pos (27U)
lypinator 0:bb348c97df44 5449 #define CAN_F11R2_FB27_Msk (0x1U << CAN_F11R2_FB27_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 5450 #define CAN_F11R2_FB27 CAN_F11R2_FB27_Msk /*!<Filter bit 27 */
lypinator 0:bb348c97df44 5451 #define CAN_F11R2_FB28_Pos (28U)
lypinator 0:bb348c97df44 5452 #define CAN_F11R2_FB28_Msk (0x1U << CAN_F11R2_FB28_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 5453 #define CAN_F11R2_FB28 CAN_F11R2_FB28_Msk /*!<Filter bit 28 */
lypinator 0:bb348c97df44 5454 #define CAN_F11R2_FB29_Pos (29U)
lypinator 0:bb348c97df44 5455 #define CAN_F11R2_FB29_Msk (0x1U << CAN_F11R2_FB29_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 5456 #define CAN_F11R2_FB29 CAN_F11R2_FB29_Msk /*!<Filter bit 29 */
lypinator 0:bb348c97df44 5457 #define CAN_F11R2_FB30_Pos (30U)
lypinator 0:bb348c97df44 5458 #define CAN_F11R2_FB30_Msk (0x1U << CAN_F11R2_FB30_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 5459 #define CAN_F11R2_FB30 CAN_F11R2_FB30_Msk /*!<Filter bit 30 */
lypinator 0:bb348c97df44 5460 #define CAN_F11R2_FB31_Pos (31U)
lypinator 0:bb348c97df44 5461 #define CAN_F11R2_FB31_Msk (0x1U << CAN_F11R2_FB31_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 5462 #define CAN_F11R2_FB31 CAN_F11R2_FB31_Msk /*!<Filter bit 31 */
lypinator 0:bb348c97df44 5463
lypinator 0:bb348c97df44 5464 /******************* Bit definition for CAN_F12R2 register ******************/
lypinator 0:bb348c97df44 5465 #define CAN_F12R2_FB0_Pos (0U)
lypinator 0:bb348c97df44 5466 #define CAN_F12R2_FB0_Msk (0x1U << CAN_F12R2_FB0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 5467 #define CAN_F12R2_FB0 CAN_F12R2_FB0_Msk /*!<Filter bit 0 */
lypinator 0:bb348c97df44 5468 #define CAN_F12R2_FB1_Pos (1U)
lypinator 0:bb348c97df44 5469 #define CAN_F12R2_FB1_Msk (0x1U << CAN_F12R2_FB1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 5470 #define CAN_F12R2_FB1 CAN_F12R2_FB1_Msk /*!<Filter bit 1 */
lypinator 0:bb348c97df44 5471 #define CAN_F12R2_FB2_Pos (2U)
lypinator 0:bb348c97df44 5472 #define CAN_F12R2_FB2_Msk (0x1U << CAN_F12R2_FB2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 5473 #define CAN_F12R2_FB2 CAN_F12R2_FB2_Msk /*!<Filter bit 2 */
lypinator 0:bb348c97df44 5474 #define CAN_F12R2_FB3_Pos (3U)
lypinator 0:bb348c97df44 5475 #define CAN_F12R2_FB3_Msk (0x1U << CAN_F12R2_FB3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 5476 #define CAN_F12R2_FB3 CAN_F12R2_FB3_Msk /*!<Filter bit 3 */
lypinator 0:bb348c97df44 5477 #define CAN_F12R2_FB4_Pos (4U)
lypinator 0:bb348c97df44 5478 #define CAN_F12R2_FB4_Msk (0x1U << CAN_F12R2_FB4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 5479 #define CAN_F12R2_FB4 CAN_F12R2_FB4_Msk /*!<Filter bit 4 */
lypinator 0:bb348c97df44 5480 #define CAN_F12R2_FB5_Pos (5U)
lypinator 0:bb348c97df44 5481 #define CAN_F12R2_FB5_Msk (0x1U << CAN_F12R2_FB5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 5482 #define CAN_F12R2_FB5 CAN_F12R2_FB5_Msk /*!<Filter bit 5 */
lypinator 0:bb348c97df44 5483 #define CAN_F12R2_FB6_Pos (6U)
lypinator 0:bb348c97df44 5484 #define CAN_F12R2_FB6_Msk (0x1U << CAN_F12R2_FB6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 5485 #define CAN_F12R2_FB6 CAN_F12R2_FB6_Msk /*!<Filter bit 6 */
lypinator 0:bb348c97df44 5486 #define CAN_F12R2_FB7_Pos (7U)
lypinator 0:bb348c97df44 5487 #define CAN_F12R2_FB7_Msk (0x1U << CAN_F12R2_FB7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 5488 #define CAN_F12R2_FB7 CAN_F12R2_FB7_Msk /*!<Filter bit 7 */
lypinator 0:bb348c97df44 5489 #define CAN_F12R2_FB8_Pos (8U)
lypinator 0:bb348c97df44 5490 #define CAN_F12R2_FB8_Msk (0x1U << CAN_F12R2_FB8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 5491 #define CAN_F12R2_FB8 CAN_F12R2_FB8_Msk /*!<Filter bit 8 */
lypinator 0:bb348c97df44 5492 #define CAN_F12R2_FB9_Pos (9U)
lypinator 0:bb348c97df44 5493 #define CAN_F12R2_FB9_Msk (0x1U << CAN_F12R2_FB9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 5494 #define CAN_F12R2_FB9 CAN_F12R2_FB9_Msk /*!<Filter bit 9 */
lypinator 0:bb348c97df44 5495 #define CAN_F12R2_FB10_Pos (10U)
lypinator 0:bb348c97df44 5496 #define CAN_F12R2_FB10_Msk (0x1U << CAN_F12R2_FB10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 5497 #define CAN_F12R2_FB10 CAN_F12R2_FB10_Msk /*!<Filter bit 10 */
lypinator 0:bb348c97df44 5498 #define CAN_F12R2_FB11_Pos (11U)
lypinator 0:bb348c97df44 5499 #define CAN_F12R2_FB11_Msk (0x1U << CAN_F12R2_FB11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 5500 #define CAN_F12R2_FB11 CAN_F12R2_FB11_Msk /*!<Filter bit 11 */
lypinator 0:bb348c97df44 5501 #define CAN_F12R2_FB12_Pos (12U)
lypinator 0:bb348c97df44 5502 #define CAN_F12R2_FB12_Msk (0x1U << CAN_F12R2_FB12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 5503 #define CAN_F12R2_FB12 CAN_F12R2_FB12_Msk /*!<Filter bit 12 */
lypinator 0:bb348c97df44 5504 #define CAN_F12R2_FB13_Pos (13U)
lypinator 0:bb348c97df44 5505 #define CAN_F12R2_FB13_Msk (0x1U << CAN_F12R2_FB13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 5506 #define CAN_F12R2_FB13 CAN_F12R2_FB13_Msk /*!<Filter bit 13 */
lypinator 0:bb348c97df44 5507 #define CAN_F12R2_FB14_Pos (14U)
lypinator 0:bb348c97df44 5508 #define CAN_F12R2_FB14_Msk (0x1U << CAN_F12R2_FB14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 5509 #define CAN_F12R2_FB14 CAN_F12R2_FB14_Msk /*!<Filter bit 14 */
lypinator 0:bb348c97df44 5510 #define CAN_F12R2_FB15_Pos (15U)
lypinator 0:bb348c97df44 5511 #define CAN_F12R2_FB15_Msk (0x1U << CAN_F12R2_FB15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 5512 #define CAN_F12R2_FB15 CAN_F12R2_FB15_Msk /*!<Filter bit 15 */
lypinator 0:bb348c97df44 5513 #define CAN_F12R2_FB16_Pos (16U)
lypinator 0:bb348c97df44 5514 #define CAN_F12R2_FB16_Msk (0x1U << CAN_F12R2_FB16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 5515 #define CAN_F12R2_FB16 CAN_F12R2_FB16_Msk /*!<Filter bit 16 */
lypinator 0:bb348c97df44 5516 #define CAN_F12R2_FB17_Pos (17U)
lypinator 0:bb348c97df44 5517 #define CAN_F12R2_FB17_Msk (0x1U << CAN_F12R2_FB17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 5518 #define CAN_F12R2_FB17 CAN_F12R2_FB17_Msk /*!<Filter bit 17 */
lypinator 0:bb348c97df44 5519 #define CAN_F12R2_FB18_Pos (18U)
lypinator 0:bb348c97df44 5520 #define CAN_F12R2_FB18_Msk (0x1U << CAN_F12R2_FB18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 5521 #define CAN_F12R2_FB18 CAN_F12R2_FB18_Msk /*!<Filter bit 18 */
lypinator 0:bb348c97df44 5522 #define CAN_F12R2_FB19_Pos (19U)
lypinator 0:bb348c97df44 5523 #define CAN_F12R2_FB19_Msk (0x1U << CAN_F12R2_FB19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 5524 #define CAN_F12R2_FB19 CAN_F12R2_FB19_Msk /*!<Filter bit 19 */
lypinator 0:bb348c97df44 5525 #define CAN_F12R2_FB20_Pos (20U)
lypinator 0:bb348c97df44 5526 #define CAN_F12R2_FB20_Msk (0x1U << CAN_F12R2_FB20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 5527 #define CAN_F12R2_FB20 CAN_F12R2_FB20_Msk /*!<Filter bit 20 */
lypinator 0:bb348c97df44 5528 #define CAN_F12R2_FB21_Pos (21U)
lypinator 0:bb348c97df44 5529 #define CAN_F12R2_FB21_Msk (0x1U << CAN_F12R2_FB21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 5530 #define CAN_F12R2_FB21 CAN_F12R2_FB21_Msk /*!<Filter bit 21 */
lypinator 0:bb348c97df44 5531 #define CAN_F12R2_FB22_Pos (22U)
lypinator 0:bb348c97df44 5532 #define CAN_F12R2_FB22_Msk (0x1U << CAN_F12R2_FB22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 5533 #define CAN_F12R2_FB22 CAN_F12R2_FB22_Msk /*!<Filter bit 22 */
lypinator 0:bb348c97df44 5534 #define CAN_F12R2_FB23_Pos (23U)
lypinator 0:bb348c97df44 5535 #define CAN_F12R2_FB23_Msk (0x1U << CAN_F12R2_FB23_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 5536 #define CAN_F12R2_FB23 CAN_F12R2_FB23_Msk /*!<Filter bit 23 */
lypinator 0:bb348c97df44 5537 #define CAN_F12R2_FB24_Pos (24U)
lypinator 0:bb348c97df44 5538 #define CAN_F12R2_FB24_Msk (0x1U << CAN_F12R2_FB24_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 5539 #define CAN_F12R2_FB24 CAN_F12R2_FB24_Msk /*!<Filter bit 24 */
lypinator 0:bb348c97df44 5540 #define CAN_F12R2_FB25_Pos (25U)
lypinator 0:bb348c97df44 5541 #define CAN_F12R2_FB25_Msk (0x1U << CAN_F12R2_FB25_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 5542 #define CAN_F12R2_FB25 CAN_F12R2_FB25_Msk /*!<Filter bit 25 */
lypinator 0:bb348c97df44 5543 #define CAN_F12R2_FB26_Pos (26U)
lypinator 0:bb348c97df44 5544 #define CAN_F12R2_FB26_Msk (0x1U << CAN_F12R2_FB26_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 5545 #define CAN_F12R2_FB26 CAN_F12R2_FB26_Msk /*!<Filter bit 26 */
lypinator 0:bb348c97df44 5546 #define CAN_F12R2_FB27_Pos (27U)
lypinator 0:bb348c97df44 5547 #define CAN_F12R2_FB27_Msk (0x1U << CAN_F12R2_FB27_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 5548 #define CAN_F12R2_FB27 CAN_F12R2_FB27_Msk /*!<Filter bit 27 */
lypinator 0:bb348c97df44 5549 #define CAN_F12R2_FB28_Pos (28U)
lypinator 0:bb348c97df44 5550 #define CAN_F12R2_FB28_Msk (0x1U << CAN_F12R2_FB28_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 5551 #define CAN_F12R2_FB28 CAN_F12R2_FB28_Msk /*!<Filter bit 28 */
lypinator 0:bb348c97df44 5552 #define CAN_F12R2_FB29_Pos (29U)
lypinator 0:bb348c97df44 5553 #define CAN_F12R2_FB29_Msk (0x1U << CAN_F12R2_FB29_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 5554 #define CAN_F12R2_FB29 CAN_F12R2_FB29_Msk /*!<Filter bit 29 */
lypinator 0:bb348c97df44 5555 #define CAN_F12R2_FB30_Pos (30U)
lypinator 0:bb348c97df44 5556 #define CAN_F12R2_FB30_Msk (0x1U << CAN_F12R2_FB30_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 5557 #define CAN_F12R2_FB30 CAN_F12R2_FB30_Msk /*!<Filter bit 30 */
lypinator 0:bb348c97df44 5558 #define CAN_F12R2_FB31_Pos (31U)
lypinator 0:bb348c97df44 5559 #define CAN_F12R2_FB31_Msk (0x1U << CAN_F12R2_FB31_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 5560 #define CAN_F12R2_FB31 CAN_F12R2_FB31_Msk /*!<Filter bit 31 */
lypinator 0:bb348c97df44 5561
lypinator 0:bb348c97df44 5562 /******************* Bit definition for CAN_F13R2 register ******************/
lypinator 0:bb348c97df44 5563 #define CAN_F13R2_FB0_Pos (0U)
lypinator 0:bb348c97df44 5564 #define CAN_F13R2_FB0_Msk (0x1U << CAN_F13R2_FB0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 5565 #define CAN_F13R2_FB0 CAN_F13R2_FB0_Msk /*!<Filter bit 0 */
lypinator 0:bb348c97df44 5566 #define CAN_F13R2_FB1_Pos (1U)
lypinator 0:bb348c97df44 5567 #define CAN_F13R2_FB1_Msk (0x1U << CAN_F13R2_FB1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 5568 #define CAN_F13R2_FB1 CAN_F13R2_FB1_Msk /*!<Filter bit 1 */
lypinator 0:bb348c97df44 5569 #define CAN_F13R2_FB2_Pos (2U)
lypinator 0:bb348c97df44 5570 #define CAN_F13R2_FB2_Msk (0x1U << CAN_F13R2_FB2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 5571 #define CAN_F13R2_FB2 CAN_F13R2_FB2_Msk /*!<Filter bit 2 */
lypinator 0:bb348c97df44 5572 #define CAN_F13R2_FB3_Pos (3U)
lypinator 0:bb348c97df44 5573 #define CAN_F13R2_FB3_Msk (0x1U << CAN_F13R2_FB3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 5574 #define CAN_F13R2_FB3 CAN_F13R2_FB3_Msk /*!<Filter bit 3 */
lypinator 0:bb348c97df44 5575 #define CAN_F13R2_FB4_Pos (4U)
lypinator 0:bb348c97df44 5576 #define CAN_F13R2_FB4_Msk (0x1U << CAN_F13R2_FB4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 5577 #define CAN_F13R2_FB4 CAN_F13R2_FB4_Msk /*!<Filter bit 4 */
lypinator 0:bb348c97df44 5578 #define CAN_F13R2_FB5_Pos (5U)
lypinator 0:bb348c97df44 5579 #define CAN_F13R2_FB5_Msk (0x1U << CAN_F13R2_FB5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 5580 #define CAN_F13R2_FB5 CAN_F13R2_FB5_Msk /*!<Filter bit 5 */
lypinator 0:bb348c97df44 5581 #define CAN_F13R2_FB6_Pos (6U)
lypinator 0:bb348c97df44 5582 #define CAN_F13R2_FB6_Msk (0x1U << CAN_F13R2_FB6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 5583 #define CAN_F13R2_FB6 CAN_F13R2_FB6_Msk /*!<Filter bit 6 */
lypinator 0:bb348c97df44 5584 #define CAN_F13R2_FB7_Pos (7U)
lypinator 0:bb348c97df44 5585 #define CAN_F13R2_FB7_Msk (0x1U << CAN_F13R2_FB7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 5586 #define CAN_F13R2_FB7 CAN_F13R2_FB7_Msk /*!<Filter bit 7 */
lypinator 0:bb348c97df44 5587 #define CAN_F13R2_FB8_Pos (8U)
lypinator 0:bb348c97df44 5588 #define CAN_F13R2_FB8_Msk (0x1U << CAN_F13R2_FB8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 5589 #define CAN_F13R2_FB8 CAN_F13R2_FB8_Msk /*!<Filter bit 8 */
lypinator 0:bb348c97df44 5590 #define CAN_F13R2_FB9_Pos (9U)
lypinator 0:bb348c97df44 5591 #define CAN_F13R2_FB9_Msk (0x1U << CAN_F13R2_FB9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 5592 #define CAN_F13R2_FB9 CAN_F13R2_FB9_Msk /*!<Filter bit 9 */
lypinator 0:bb348c97df44 5593 #define CAN_F13R2_FB10_Pos (10U)
lypinator 0:bb348c97df44 5594 #define CAN_F13R2_FB10_Msk (0x1U << CAN_F13R2_FB10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 5595 #define CAN_F13R2_FB10 CAN_F13R2_FB10_Msk /*!<Filter bit 10 */
lypinator 0:bb348c97df44 5596 #define CAN_F13R2_FB11_Pos (11U)
lypinator 0:bb348c97df44 5597 #define CAN_F13R2_FB11_Msk (0x1U << CAN_F13R2_FB11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 5598 #define CAN_F13R2_FB11 CAN_F13R2_FB11_Msk /*!<Filter bit 11 */
lypinator 0:bb348c97df44 5599 #define CAN_F13R2_FB12_Pos (12U)
lypinator 0:bb348c97df44 5600 #define CAN_F13R2_FB12_Msk (0x1U << CAN_F13R2_FB12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 5601 #define CAN_F13R2_FB12 CAN_F13R2_FB12_Msk /*!<Filter bit 12 */
lypinator 0:bb348c97df44 5602 #define CAN_F13R2_FB13_Pos (13U)
lypinator 0:bb348c97df44 5603 #define CAN_F13R2_FB13_Msk (0x1U << CAN_F13R2_FB13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 5604 #define CAN_F13R2_FB13 CAN_F13R2_FB13_Msk /*!<Filter bit 13 */
lypinator 0:bb348c97df44 5605 #define CAN_F13R2_FB14_Pos (14U)
lypinator 0:bb348c97df44 5606 #define CAN_F13R2_FB14_Msk (0x1U << CAN_F13R2_FB14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 5607 #define CAN_F13R2_FB14 CAN_F13R2_FB14_Msk /*!<Filter bit 14 */
lypinator 0:bb348c97df44 5608 #define CAN_F13R2_FB15_Pos (15U)
lypinator 0:bb348c97df44 5609 #define CAN_F13R2_FB15_Msk (0x1U << CAN_F13R2_FB15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 5610 #define CAN_F13R2_FB15 CAN_F13R2_FB15_Msk /*!<Filter bit 15 */
lypinator 0:bb348c97df44 5611 #define CAN_F13R2_FB16_Pos (16U)
lypinator 0:bb348c97df44 5612 #define CAN_F13R2_FB16_Msk (0x1U << CAN_F13R2_FB16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 5613 #define CAN_F13R2_FB16 CAN_F13R2_FB16_Msk /*!<Filter bit 16 */
lypinator 0:bb348c97df44 5614 #define CAN_F13R2_FB17_Pos (17U)
lypinator 0:bb348c97df44 5615 #define CAN_F13R2_FB17_Msk (0x1U << CAN_F13R2_FB17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 5616 #define CAN_F13R2_FB17 CAN_F13R2_FB17_Msk /*!<Filter bit 17 */
lypinator 0:bb348c97df44 5617 #define CAN_F13R2_FB18_Pos (18U)
lypinator 0:bb348c97df44 5618 #define CAN_F13R2_FB18_Msk (0x1U << CAN_F13R2_FB18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 5619 #define CAN_F13R2_FB18 CAN_F13R2_FB18_Msk /*!<Filter bit 18 */
lypinator 0:bb348c97df44 5620 #define CAN_F13R2_FB19_Pos (19U)
lypinator 0:bb348c97df44 5621 #define CAN_F13R2_FB19_Msk (0x1U << CAN_F13R2_FB19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 5622 #define CAN_F13R2_FB19 CAN_F13R2_FB19_Msk /*!<Filter bit 19 */
lypinator 0:bb348c97df44 5623 #define CAN_F13R2_FB20_Pos (20U)
lypinator 0:bb348c97df44 5624 #define CAN_F13R2_FB20_Msk (0x1U << CAN_F13R2_FB20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 5625 #define CAN_F13R2_FB20 CAN_F13R2_FB20_Msk /*!<Filter bit 20 */
lypinator 0:bb348c97df44 5626 #define CAN_F13R2_FB21_Pos (21U)
lypinator 0:bb348c97df44 5627 #define CAN_F13R2_FB21_Msk (0x1U << CAN_F13R2_FB21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 5628 #define CAN_F13R2_FB21 CAN_F13R2_FB21_Msk /*!<Filter bit 21 */
lypinator 0:bb348c97df44 5629 #define CAN_F13R2_FB22_Pos (22U)
lypinator 0:bb348c97df44 5630 #define CAN_F13R2_FB22_Msk (0x1U << CAN_F13R2_FB22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 5631 #define CAN_F13R2_FB22 CAN_F13R2_FB22_Msk /*!<Filter bit 22 */
lypinator 0:bb348c97df44 5632 #define CAN_F13R2_FB23_Pos (23U)
lypinator 0:bb348c97df44 5633 #define CAN_F13R2_FB23_Msk (0x1U << CAN_F13R2_FB23_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 5634 #define CAN_F13R2_FB23 CAN_F13R2_FB23_Msk /*!<Filter bit 23 */
lypinator 0:bb348c97df44 5635 #define CAN_F13R2_FB24_Pos (24U)
lypinator 0:bb348c97df44 5636 #define CAN_F13R2_FB24_Msk (0x1U << CAN_F13R2_FB24_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 5637 #define CAN_F13R2_FB24 CAN_F13R2_FB24_Msk /*!<Filter bit 24 */
lypinator 0:bb348c97df44 5638 #define CAN_F13R2_FB25_Pos (25U)
lypinator 0:bb348c97df44 5639 #define CAN_F13R2_FB25_Msk (0x1U << CAN_F13R2_FB25_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 5640 #define CAN_F13R2_FB25 CAN_F13R2_FB25_Msk /*!<Filter bit 25 */
lypinator 0:bb348c97df44 5641 #define CAN_F13R2_FB26_Pos (26U)
lypinator 0:bb348c97df44 5642 #define CAN_F13R2_FB26_Msk (0x1U << CAN_F13R2_FB26_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 5643 #define CAN_F13R2_FB26 CAN_F13R2_FB26_Msk /*!<Filter bit 26 */
lypinator 0:bb348c97df44 5644 #define CAN_F13R2_FB27_Pos (27U)
lypinator 0:bb348c97df44 5645 #define CAN_F13R2_FB27_Msk (0x1U << CAN_F13R2_FB27_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 5646 #define CAN_F13R2_FB27 CAN_F13R2_FB27_Msk /*!<Filter bit 27 */
lypinator 0:bb348c97df44 5647 #define CAN_F13R2_FB28_Pos (28U)
lypinator 0:bb348c97df44 5648 #define CAN_F13R2_FB28_Msk (0x1U << CAN_F13R2_FB28_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 5649 #define CAN_F13R2_FB28 CAN_F13R2_FB28_Msk /*!<Filter bit 28 */
lypinator 0:bb348c97df44 5650 #define CAN_F13R2_FB29_Pos (29U)
lypinator 0:bb348c97df44 5651 #define CAN_F13R2_FB29_Msk (0x1U << CAN_F13R2_FB29_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 5652 #define CAN_F13R2_FB29 CAN_F13R2_FB29_Msk /*!<Filter bit 29 */
lypinator 0:bb348c97df44 5653 #define CAN_F13R2_FB30_Pos (30U)
lypinator 0:bb348c97df44 5654 #define CAN_F13R2_FB30_Msk (0x1U << CAN_F13R2_FB30_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 5655 #define CAN_F13R2_FB30 CAN_F13R2_FB30_Msk /*!<Filter bit 30 */
lypinator 0:bb348c97df44 5656 #define CAN_F13R2_FB31_Pos (31U)
lypinator 0:bb348c97df44 5657 #define CAN_F13R2_FB31_Msk (0x1U << CAN_F13R2_FB31_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 5658 #define CAN_F13R2_FB31 CAN_F13R2_FB31_Msk /*!<Filter bit 31 */
lypinator 0:bb348c97df44 5659
lypinator 0:bb348c97df44 5660 /******************************************************************************/
lypinator 0:bb348c97df44 5661 /* */
lypinator 0:bb348c97df44 5662 /* CRC calculation unit */
lypinator 0:bb348c97df44 5663 /* */
lypinator 0:bb348c97df44 5664 /******************************************************************************/
lypinator 0:bb348c97df44 5665 /******************* Bit definition for CRC_DR register *********************/
lypinator 0:bb348c97df44 5666 #define CRC_DR_DR_Pos (0U)
lypinator 0:bb348c97df44 5667 #define CRC_DR_DR_Msk (0xFFFFFFFFU << CRC_DR_DR_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 5668 #define CRC_DR_DR CRC_DR_DR_Msk /*!< Data register bits */
lypinator 0:bb348c97df44 5669
lypinator 0:bb348c97df44 5670
lypinator 0:bb348c97df44 5671 /******************* Bit definition for CRC_IDR register ********************/
lypinator 0:bb348c97df44 5672 #define CRC_IDR_IDR_Pos (0U)
lypinator 0:bb348c97df44 5673 #define CRC_IDR_IDR_Msk (0xFFU << CRC_IDR_IDR_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 5674 #define CRC_IDR_IDR CRC_IDR_IDR_Msk /*!< General-purpose 8-bit data register bits */
lypinator 0:bb348c97df44 5675
lypinator 0:bb348c97df44 5676
lypinator 0:bb348c97df44 5677 /******************** Bit definition for CRC_CR register ********************/
lypinator 0:bb348c97df44 5678 #define CRC_CR_RESET_Pos (0U)
lypinator 0:bb348c97df44 5679 #define CRC_CR_RESET_Msk (0x1U << CRC_CR_RESET_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 5680 #define CRC_CR_RESET CRC_CR_RESET_Msk /*!< RESET bit */
lypinator 0:bb348c97df44 5681
lypinator 0:bb348c97df44 5682 /******************************************************************************/
lypinator 0:bb348c97df44 5683 /* */
lypinator 0:bb348c97df44 5684 /* Crypto Processor */
lypinator 0:bb348c97df44 5685 /* */
lypinator 0:bb348c97df44 5686 /******************************************************************************/
lypinator 0:bb348c97df44 5687 /******************* Bits definition for CRYP_CR register ********************/
lypinator 0:bb348c97df44 5688 #define CRYP_CR_ALGODIR_Pos (2U)
lypinator 0:bb348c97df44 5689 #define CRYP_CR_ALGODIR_Msk (0x1U << CRYP_CR_ALGODIR_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 5690 #define CRYP_CR_ALGODIR CRYP_CR_ALGODIR_Msk
lypinator 0:bb348c97df44 5691
lypinator 0:bb348c97df44 5692 #define CRYP_CR_ALGOMODE_Pos (3U)
lypinator 0:bb348c97df44 5693 #define CRYP_CR_ALGOMODE_Msk (0x10007U << CRYP_CR_ALGOMODE_Pos) /*!< 0x00080038 */
lypinator 0:bb348c97df44 5694 #define CRYP_CR_ALGOMODE CRYP_CR_ALGOMODE_Msk
lypinator 0:bb348c97df44 5695 #define CRYP_CR_ALGOMODE_0 (0x00001U << CRYP_CR_ALGOMODE_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 5696 #define CRYP_CR_ALGOMODE_1 (0x00002U << CRYP_CR_ALGOMODE_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 5697 #define CRYP_CR_ALGOMODE_2 (0x00004U << CRYP_CR_ALGOMODE_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 5698 #define CRYP_CR_ALGOMODE_TDES_ECB 0x00000000U
lypinator 0:bb348c97df44 5699 #define CRYP_CR_ALGOMODE_TDES_CBC_Pos (3U)
lypinator 0:bb348c97df44 5700 #define CRYP_CR_ALGOMODE_TDES_CBC_Msk (0x1U << CRYP_CR_ALGOMODE_TDES_CBC_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 5701 #define CRYP_CR_ALGOMODE_TDES_CBC CRYP_CR_ALGOMODE_TDES_CBC_Msk
lypinator 0:bb348c97df44 5702 #define CRYP_CR_ALGOMODE_DES_ECB_Pos (4U)
lypinator 0:bb348c97df44 5703 #define CRYP_CR_ALGOMODE_DES_ECB_Msk (0x1U << CRYP_CR_ALGOMODE_DES_ECB_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 5704 #define CRYP_CR_ALGOMODE_DES_ECB CRYP_CR_ALGOMODE_DES_ECB_Msk
lypinator 0:bb348c97df44 5705 #define CRYP_CR_ALGOMODE_DES_CBC_Pos (3U)
lypinator 0:bb348c97df44 5706 #define CRYP_CR_ALGOMODE_DES_CBC_Msk (0x3U << CRYP_CR_ALGOMODE_DES_CBC_Pos) /*!< 0x00000018 */
lypinator 0:bb348c97df44 5707 #define CRYP_CR_ALGOMODE_DES_CBC CRYP_CR_ALGOMODE_DES_CBC_Msk
lypinator 0:bb348c97df44 5708 #define CRYP_CR_ALGOMODE_AES_ECB_Pos (5U)
lypinator 0:bb348c97df44 5709 #define CRYP_CR_ALGOMODE_AES_ECB_Msk (0x1U << CRYP_CR_ALGOMODE_AES_ECB_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 5710 #define CRYP_CR_ALGOMODE_AES_ECB CRYP_CR_ALGOMODE_AES_ECB_Msk
lypinator 0:bb348c97df44 5711 #define CRYP_CR_ALGOMODE_AES_CBC_Pos (3U)
lypinator 0:bb348c97df44 5712 #define CRYP_CR_ALGOMODE_AES_CBC_Msk (0x5U << CRYP_CR_ALGOMODE_AES_CBC_Pos) /*!< 0x00000028 */
lypinator 0:bb348c97df44 5713 #define CRYP_CR_ALGOMODE_AES_CBC CRYP_CR_ALGOMODE_AES_CBC_Msk
lypinator 0:bb348c97df44 5714 #define CRYP_CR_ALGOMODE_AES_CTR_Pos (4U)
lypinator 0:bb348c97df44 5715 #define CRYP_CR_ALGOMODE_AES_CTR_Msk (0x3U << CRYP_CR_ALGOMODE_AES_CTR_Pos) /*!< 0x00000030 */
lypinator 0:bb348c97df44 5716 #define CRYP_CR_ALGOMODE_AES_CTR CRYP_CR_ALGOMODE_AES_CTR_Msk
lypinator 0:bb348c97df44 5717 #define CRYP_CR_ALGOMODE_AES_KEY_Pos (3U)
lypinator 0:bb348c97df44 5718 #define CRYP_CR_ALGOMODE_AES_KEY_Msk (0x7U << CRYP_CR_ALGOMODE_AES_KEY_Pos) /*!< 0x00000038 */
lypinator 0:bb348c97df44 5719 #define CRYP_CR_ALGOMODE_AES_KEY CRYP_CR_ALGOMODE_AES_KEY_Msk
lypinator 0:bb348c97df44 5720
lypinator 0:bb348c97df44 5721 #define CRYP_CR_DATATYPE_Pos (6U)
lypinator 0:bb348c97df44 5722 #define CRYP_CR_DATATYPE_Msk (0x3U << CRYP_CR_DATATYPE_Pos) /*!< 0x000000C0 */
lypinator 0:bb348c97df44 5723 #define CRYP_CR_DATATYPE CRYP_CR_DATATYPE_Msk
lypinator 0:bb348c97df44 5724 #define CRYP_CR_DATATYPE_0 (0x1U << CRYP_CR_DATATYPE_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 5725 #define CRYP_CR_DATATYPE_1 (0x2U << CRYP_CR_DATATYPE_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 5726 #define CRYP_CR_KEYSIZE_Pos (8U)
lypinator 0:bb348c97df44 5727 #define CRYP_CR_KEYSIZE_Msk (0x3U << CRYP_CR_KEYSIZE_Pos) /*!< 0x00000300 */
lypinator 0:bb348c97df44 5728 #define CRYP_CR_KEYSIZE CRYP_CR_KEYSIZE_Msk
lypinator 0:bb348c97df44 5729 #define CRYP_CR_KEYSIZE_0 (0x1U << CRYP_CR_KEYSIZE_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 5730 #define CRYP_CR_KEYSIZE_1 (0x2U << CRYP_CR_KEYSIZE_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 5731 #define CRYP_CR_FFLUSH_Pos (14U)
lypinator 0:bb348c97df44 5732 #define CRYP_CR_FFLUSH_Msk (0x1U << CRYP_CR_FFLUSH_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 5733 #define CRYP_CR_FFLUSH CRYP_CR_FFLUSH_Msk
lypinator 0:bb348c97df44 5734 #define CRYP_CR_CRYPEN_Pos (15U)
lypinator 0:bb348c97df44 5735 #define CRYP_CR_CRYPEN_Msk (0x1U << CRYP_CR_CRYPEN_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 5736 #define CRYP_CR_CRYPEN CRYP_CR_CRYPEN_Msk
lypinator 0:bb348c97df44 5737
lypinator 0:bb348c97df44 5738 #define CRYP_CR_GCM_CCMPH_Pos (16U)
lypinator 0:bb348c97df44 5739 #define CRYP_CR_GCM_CCMPH_Msk (0x3U << CRYP_CR_GCM_CCMPH_Pos) /*!< 0x00030000 */
lypinator 0:bb348c97df44 5740 #define CRYP_CR_GCM_CCMPH CRYP_CR_GCM_CCMPH_Msk
lypinator 0:bb348c97df44 5741 #define CRYP_CR_GCM_CCMPH_0 (0x1U << CRYP_CR_GCM_CCMPH_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 5742 #define CRYP_CR_GCM_CCMPH_1 (0x2U << CRYP_CR_GCM_CCMPH_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 5743 #define CRYP_CR_ALGOMODE_3 0x00080000U
lypinator 0:bb348c97df44 5744
lypinator 0:bb348c97df44 5745 /****************** Bits definition for CRYP_SR register *********************/
lypinator 0:bb348c97df44 5746 #define CRYP_SR_IFEM_Pos (0U)
lypinator 0:bb348c97df44 5747 #define CRYP_SR_IFEM_Msk (0x1U << CRYP_SR_IFEM_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 5748 #define CRYP_SR_IFEM CRYP_SR_IFEM_Msk
lypinator 0:bb348c97df44 5749 #define CRYP_SR_IFNF_Pos (1U)
lypinator 0:bb348c97df44 5750 #define CRYP_SR_IFNF_Msk (0x1U << CRYP_SR_IFNF_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 5751 #define CRYP_SR_IFNF CRYP_SR_IFNF_Msk
lypinator 0:bb348c97df44 5752 #define CRYP_SR_OFNE_Pos (2U)
lypinator 0:bb348c97df44 5753 #define CRYP_SR_OFNE_Msk (0x1U << CRYP_SR_OFNE_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 5754 #define CRYP_SR_OFNE CRYP_SR_OFNE_Msk
lypinator 0:bb348c97df44 5755 #define CRYP_SR_OFFU_Pos (3U)
lypinator 0:bb348c97df44 5756 #define CRYP_SR_OFFU_Msk (0x1U << CRYP_SR_OFFU_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 5757 #define CRYP_SR_OFFU CRYP_SR_OFFU_Msk
lypinator 0:bb348c97df44 5758 #define CRYP_SR_BUSY_Pos (4U)
lypinator 0:bb348c97df44 5759 #define CRYP_SR_BUSY_Msk (0x1U << CRYP_SR_BUSY_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 5760 #define CRYP_SR_BUSY CRYP_SR_BUSY_Msk
lypinator 0:bb348c97df44 5761 /****************** Bits definition for CRYP_DMACR register ******************/
lypinator 0:bb348c97df44 5762 #define CRYP_DMACR_DIEN_Pos (0U)
lypinator 0:bb348c97df44 5763 #define CRYP_DMACR_DIEN_Msk (0x1U << CRYP_DMACR_DIEN_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 5764 #define CRYP_DMACR_DIEN CRYP_DMACR_DIEN_Msk
lypinator 0:bb348c97df44 5765 #define CRYP_DMACR_DOEN_Pos (1U)
lypinator 0:bb348c97df44 5766 #define CRYP_DMACR_DOEN_Msk (0x1U << CRYP_DMACR_DOEN_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 5767 #define CRYP_DMACR_DOEN CRYP_DMACR_DOEN_Msk
lypinator 0:bb348c97df44 5768 /***************** Bits definition for CRYP_IMSCR register ******************/
lypinator 0:bb348c97df44 5769 #define CRYP_IMSCR_INIM_Pos (0U)
lypinator 0:bb348c97df44 5770 #define CRYP_IMSCR_INIM_Msk (0x1U << CRYP_IMSCR_INIM_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 5771 #define CRYP_IMSCR_INIM CRYP_IMSCR_INIM_Msk
lypinator 0:bb348c97df44 5772 #define CRYP_IMSCR_OUTIM_Pos (1U)
lypinator 0:bb348c97df44 5773 #define CRYP_IMSCR_OUTIM_Msk (0x1U << CRYP_IMSCR_OUTIM_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 5774 #define CRYP_IMSCR_OUTIM CRYP_IMSCR_OUTIM_Msk
lypinator 0:bb348c97df44 5775 /****************** Bits definition for CRYP_RISR register *******************/
lypinator 0:bb348c97df44 5776 #define CRYP_RISR_OUTRIS_Pos (0U)
lypinator 0:bb348c97df44 5777 #define CRYP_RISR_OUTRIS_Msk (0x1U << CRYP_RISR_OUTRIS_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 5778 #define CRYP_RISR_OUTRIS CRYP_RISR_OUTRIS_Msk
lypinator 0:bb348c97df44 5779 #define CRYP_RISR_INRIS_Pos (1U)
lypinator 0:bb348c97df44 5780 #define CRYP_RISR_INRIS_Msk (0x1U << CRYP_RISR_INRIS_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 5781 #define CRYP_RISR_INRIS CRYP_RISR_INRIS_Msk
lypinator 0:bb348c97df44 5782 /****************** Bits definition for CRYP_MISR register *******************/
lypinator 0:bb348c97df44 5783 #define CRYP_MISR_INMIS_Pos (0U)
lypinator 0:bb348c97df44 5784 #define CRYP_MISR_INMIS_Msk (0x1U << CRYP_MISR_INMIS_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 5785 #define CRYP_MISR_INMIS CRYP_MISR_INMIS_Msk
lypinator 0:bb348c97df44 5786 #define CRYP_MISR_OUTMIS_Pos (1U)
lypinator 0:bb348c97df44 5787 #define CRYP_MISR_OUTMIS_Msk (0x1U << CRYP_MISR_OUTMIS_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 5788 #define CRYP_MISR_OUTMIS CRYP_MISR_OUTMIS_Msk
lypinator 0:bb348c97df44 5789
lypinator 0:bb348c97df44 5790 /******************************************************************************/
lypinator 0:bb348c97df44 5791 /* */
lypinator 0:bb348c97df44 5792 /* Digital to Analog Converter */
lypinator 0:bb348c97df44 5793 /* */
lypinator 0:bb348c97df44 5794 /******************************************************************************/
lypinator 0:bb348c97df44 5795 /*
lypinator 0:bb348c97df44 5796 * @brief Specific device feature definitions (not present on all devices in the STM32F4 serie)
lypinator 0:bb348c97df44 5797 */
lypinator 0:bb348c97df44 5798 #define DAC_CHANNEL2_SUPPORT /*!< DAC feature available only on specific devices: availability of DAC channel 2 */
lypinator 0:bb348c97df44 5799 /******************** Bit definition for DAC_CR register ********************/
lypinator 0:bb348c97df44 5800 #define DAC_CR_EN1_Pos (0U)
lypinator 0:bb348c97df44 5801 #define DAC_CR_EN1_Msk (0x1U << DAC_CR_EN1_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 5802 #define DAC_CR_EN1 DAC_CR_EN1_Msk /*!<DAC channel1 enable */
lypinator 0:bb348c97df44 5803 #define DAC_CR_BOFF1_Pos (1U)
lypinator 0:bb348c97df44 5804 #define DAC_CR_BOFF1_Msk (0x1U << DAC_CR_BOFF1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 5805 #define DAC_CR_BOFF1 DAC_CR_BOFF1_Msk /*!<DAC channel1 output buffer disable */
lypinator 0:bb348c97df44 5806 #define DAC_CR_TEN1_Pos (2U)
lypinator 0:bb348c97df44 5807 #define DAC_CR_TEN1_Msk (0x1U << DAC_CR_TEN1_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 5808 #define DAC_CR_TEN1 DAC_CR_TEN1_Msk /*!<DAC channel1 Trigger enable */
lypinator 0:bb348c97df44 5809
lypinator 0:bb348c97df44 5810 #define DAC_CR_TSEL1_Pos (3U)
lypinator 0:bb348c97df44 5811 #define DAC_CR_TSEL1_Msk (0x7U << DAC_CR_TSEL1_Pos) /*!< 0x00000038 */
lypinator 0:bb348c97df44 5812 #define DAC_CR_TSEL1 DAC_CR_TSEL1_Msk /*!<TSEL1[2:0] (DAC channel1 Trigger selection) */
lypinator 0:bb348c97df44 5813 #define DAC_CR_TSEL1_0 (0x1U << DAC_CR_TSEL1_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 5814 #define DAC_CR_TSEL1_1 (0x2U << DAC_CR_TSEL1_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 5815 #define DAC_CR_TSEL1_2 (0x4U << DAC_CR_TSEL1_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 5816
lypinator 0:bb348c97df44 5817 #define DAC_CR_WAVE1_Pos (6U)
lypinator 0:bb348c97df44 5818 #define DAC_CR_WAVE1_Msk (0x3U << DAC_CR_WAVE1_Pos) /*!< 0x000000C0 */
lypinator 0:bb348c97df44 5819 #define DAC_CR_WAVE1 DAC_CR_WAVE1_Msk /*!<WAVE1[1:0] (DAC channel1 noise/triangle wave generation enable) */
lypinator 0:bb348c97df44 5820 #define DAC_CR_WAVE1_0 (0x1U << DAC_CR_WAVE1_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 5821 #define DAC_CR_WAVE1_1 (0x2U << DAC_CR_WAVE1_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 5822
lypinator 0:bb348c97df44 5823 #define DAC_CR_MAMP1_Pos (8U)
lypinator 0:bb348c97df44 5824 #define DAC_CR_MAMP1_Msk (0xFU << DAC_CR_MAMP1_Pos) /*!< 0x00000F00 */
lypinator 0:bb348c97df44 5825 #define DAC_CR_MAMP1 DAC_CR_MAMP1_Msk /*!<MAMP1[3:0] (DAC channel1 Mask/Amplitude selector) */
lypinator 0:bb348c97df44 5826 #define DAC_CR_MAMP1_0 (0x1U << DAC_CR_MAMP1_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 5827 #define DAC_CR_MAMP1_1 (0x2U << DAC_CR_MAMP1_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 5828 #define DAC_CR_MAMP1_2 (0x4U << DAC_CR_MAMP1_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 5829 #define DAC_CR_MAMP1_3 (0x8U << DAC_CR_MAMP1_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 5830
lypinator 0:bb348c97df44 5831 #define DAC_CR_DMAEN1_Pos (12U)
lypinator 0:bb348c97df44 5832 #define DAC_CR_DMAEN1_Msk (0x1U << DAC_CR_DMAEN1_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 5833 #define DAC_CR_DMAEN1 DAC_CR_DMAEN1_Msk /*!<DAC channel1 DMA enable */
lypinator 0:bb348c97df44 5834 #define DAC_CR_DMAUDRIE1_Pos (13U)
lypinator 0:bb348c97df44 5835 #define DAC_CR_DMAUDRIE1_Msk (0x1U << DAC_CR_DMAUDRIE1_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 5836 #define DAC_CR_DMAUDRIE1 DAC_CR_DMAUDRIE1_Msk /*!<DAC channel1 DMA underrun interrupt enable*/
lypinator 0:bb348c97df44 5837 #define DAC_CR_EN2_Pos (16U)
lypinator 0:bb348c97df44 5838 #define DAC_CR_EN2_Msk (0x1U << DAC_CR_EN2_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 5839 #define DAC_CR_EN2 DAC_CR_EN2_Msk /*!<DAC channel2 enable */
lypinator 0:bb348c97df44 5840 #define DAC_CR_BOFF2_Pos (17U)
lypinator 0:bb348c97df44 5841 #define DAC_CR_BOFF2_Msk (0x1U << DAC_CR_BOFF2_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 5842 #define DAC_CR_BOFF2 DAC_CR_BOFF2_Msk /*!<DAC channel2 output buffer disable */
lypinator 0:bb348c97df44 5843 #define DAC_CR_TEN2_Pos (18U)
lypinator 0:bb348c97df44 5844 #define DAC_CR_TEN2_Msk (0x1U << DAC_CR_TEN2_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 5845 #define DAC_CR_TEN2 DAC_CR_TEN2_Msk /*!<DAC channel2 Trigger enable */
lypinator 0:bb348c97df44 5846
lypinator 0:bb348c97df44 5847 #define DAC_CR_TSEL2_Pos (19U)
lypinator 0:bb348c97df44 5848 #define DAC_CR_TSEL2_Msk (0x7U << DAC_CR_TSEL2_Pos) /*!< 0x00380000 */
lypinator 0:bb348c97df44 5849 #define DAC_CR_TSEL2 DAC_CR_TSEL2_Msk /*!<TSEL2[2:0] (DAC channel2 Trigger selection) */
lypinator 0:bb348c97df44 5850 #define DAC_CR_TSEL2_0 (0x1U << DAC_CR_TSEL2_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 5851 #define DAC_CR_TSEL2_1 (0x2U << DAC_CR_TSEL2_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 5852 #define DAC_CR_TSEL2_2 (0x4U << DAC_CR_TSEL2_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 5853
lypinator 0:bb348c97df44 5854 #define DAC_CR_WAVE2_Pos (22U)
lypinator 0:bb348c97df44 5855 #define DAC_CR_WAVE2_Msk (0x3U << DAC_CR_WAVE2_Pos) /*!< 0x00C00000 */
lypinator 0:bb348c97df44 5856 #define DAC_CR_WAVE2 DAC_CR_WAVE2_Msk /*!<WAVE2[1:0] (DAC channel2 noise/triangle wave generation enable) */
lypinator 0:bb348c97df44 5857 #define DAC_CR_WAVE2_0 (0x1U << DAC_CR_WAVE2_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 5858 #define DAC_CR_WAVE2_1 (0x2U << DAC_CR_WAVE2_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 5859
lypinator 0:bb348c97df44 5860 #define DAC_CR_MAMP2_Pos (24U)
lypinator 0:bb348c97df44 5861 #define DAC_CR_MAMP2_Msk (0xFU << DAC_CR_MAMP2_Pos) /*!< 0x0F000000 */
lypinator 0:bb348c97df44 5862 #define DAC_CR_MAMP2 DAC_CR_MAMP2_Msk /*!<MAMP2[3:0] (DAC channel2 Mask/Amplitude selector) */
lypinator 0:bb348c97df44 5863 #define DAC_CR_MAMP2_0 (0x1U << DAC_CR_MAMP2_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 5864 #define DAC_CR_MAMP2_1 (0x2U << DAC_CR_MAMP2_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 5865 #define DAC_CR_MAMP2_2 (0x4U << DAC_CR_MAMP2_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 5866 #define DAC_CR_MAMP2_3 (0x8U << DAC_CR_MAMP2_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 5867
lypinator 0:bb348c97df44 5868 #define DAC_CR_DMAEN2_Pos (28U)
lypinator 0:bb348c97df44 5869 #define DAC_CR_DMAEN2_Msk (0x1U << DAC_CR_DMAEN2_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 5870 #define DAC_CR_DMAEN2 DAC_CR_DMAEN2_Msk /*!<DAC channel2 DMA enabled */
lypinator 0:bb348c97df44 5871 #define DAC_CR_DMAUDRIE2_Pos (29U)
lypinator 0:bb348c97df44 5872 #define DAC_CR_DMAUDRIE2_Msk (0x1U << DAC_CR_DMAUDRIE2_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 5873 #define DAC_CR_DMAUDRIE2 DAC_CR_DMAUDRIE2_Msk /*!<DAC channel2 DMA underrun interrupt enable*/
lypinator 0:bb348c97df44 5874
lypinator 0:bb348c97df44 5875 /***************** Bit definition for DAC_SWTRIGR register ******************/
lypinator 0:bb348c97df44 5876 #define DAC_SWTRIGR_SWTRIG1_Pos (0U)
lypinator 0:bb348c97df44 5877 #define DAC_SWTRIGR_SWTRIG1_Msk (0x1U << DAC_SWTRIGR_SWTRIG1_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 5878 #define DAC_SWTRIGR_SWTRIG1 DAC_SWTRIGR_SWTRIG1_Msk /*!<DAC channel1 software trigger */
lypinator 0:bb348c97df44 5879 #define DAC_SWTRIGR_SWTRIG2_Pos (1U)
lypinator 0:bb348c97df44 5880 #define DAC_SWTRIGR_SWTRIG2_Msk (0x1U << DAC_SWTRIGR_SWTRIG2_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 5881 #define DAC_SWTRIGR_SWTRIG2 DAC_SWTRIGR_SWTRIG2_Msk /*!<DAC channel2 software trigger */
lypinator 0:bb348c97df44 5882
lypinator 0:bb348c97df44 5883 /***************** Bit definition for DAC_DHR12R1 register ******************/
lypinator 0:bb348c97df44 5884 #define DAC_DHR12R1_DACC1DHR_Pos (0U)
lypinator 0:bb348c97df44 5885 #define DAC_DHR12R1_DACC1DHR_Msk (0xFFFU << DAC_DHR12R1_DACC1DHR_Pos) /*!< 0x00000FFF */
lypinator 0:bb348c97df44 5886 #define DAC_DHR12R1_DACC1DHR DAC_DHR12R1_DACC1DHR_Msk /*!<DAC channel1 12-bit Right aligned data */
lypinator 0:bb348c97df44 5887
lypinator 0:bb348c97df44 5888 /***************** Bit definition for DAC_DHR12L1 register ******************/
lypinator 0:bb348c97df44 5889 #define DAC_DHR12L1_DACC1DHR_Pos (4U)
lypinator 0:bb348c97df44 5890 #define DAC_DHR12L1_DACC1DHR_Msk (0xFFFU << DAC_DHR12L1_DACC1DHR_Pos) /*!< 0x0000FFF0 */
lypinator 0:bb348c97df44 5891 #define DAC_DHR12L1_DACC1DHR DAC_DHR12L1_DACC1DHR_Msk /*!<DAC channel1 12-bit Left aligned data */
lypinator 0:bb348c97df44 5892
lypinator 0:bb348c97df44 5893 /****************** Bit definition for DAC_DHR8R1 register ******************/
lypinator 0:bb348c97df44 5894 #define DAC_DHR8R1_DACC1DHR_Pos (0U)
lypinator 0:bb348c97df44 5895 #define DAC_DHR8R1_DACC1DHR_Msk (0xFFU << DAC_DHR8R1_DACC1DHR_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 5896 #define DAC_DHR8R1_DACC1DHR DAC_DHR8R1_DACC1DHR_Msk /*!<DAC channel1 8-bit Right aligned data */
lypinator 0:bb348c97df44 5897
lypinator 0:bb348c97df44 5898 /***************** Bit definition for DAC_DHR12R2 register ******************/
lypinator 0:bb348c97df44 5899 #define DAC_DHR12R2_DACC2DHR_Pos (0U)
lypinator 0:bb348c97df44 5900 #define DAC_DHR12R2_DACC2DHR_Msk (0xFFFU << DAC_DHR12R2_DACC2DHR_Pos) /*!< 0x00000FFF */
lypinator 0:bb348c97df44 5901 #define DAC_DHR12R2_DACC2DHR DAC_DHR12R2_DACC2DHR_Msk /*!<DAC channel2 12-bit Right aligned data */
lypinator 0:bb348c97df44 5902
lypinator 0:bb348c97df44 5903 /***************** Bit definition for DAC_DHR12L2 register ******************/
lypinator 0:bb348c97df44 5904 #define DAC_DHR12L2_DACC2DHR_Pos (4U)
lypinator 0:bb348c97df44 5905 #define DAC_DHR12L2_DACC2DHR_Msk (0xFFFU << DAC_DHR12L2_DACC2DHR_Pos) /*!< 0x0000FFF0 */
lypinator 0:bb348c97df44 5906 #define DAC_DHR12L2_DACC2DHR DAC_DHR12L2_DACC2DHR_Msk /*!<DAC channel2 12-bit Left aligned data */
lypinator 0:bb348c97df44 5907
lypinator 0:bb348c97df44 5908 /****************** Bit definition for DAC_DHR8R2 register ******************/
lypinator 0:bb348c97df44 5909 #define DAC_DHR8R2_DACC2DHR_Pos (0U)
lypinator 0:bb348c97df44 5910 #define DAC_DHR8R2_DACC2DHR_Msk (0xFFU << DAC_DHR8R2_DACC2DHR_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 5911 #define DAC_DHR8R2_DACC2DHR DAC_DHR8R2_DACC2DHR_Msk /*!<DAC channel2 8-bit Right aligned data */
lypinator 0:bb348c97df44 5912
lypinator 0:bb348c97df44 5913 /***************** Bit definition for DAC_DHR12RD register ******************/
lypinator 0:bb348c97df44 5914 #define DAC_DHR12RD_DACC1DHR_Pos (0U)
lypinator 0:bb348c97df44 5915 #define DAC_DHR12RD_DACC1DHR_Msk (0xFFFU << DAC_DHR12RD_DACC1DHR_Pos) /*!< 0x00000FFF */
lypinator 0:bb348c97df44 5916 #define DAC_DHR12RD_DACC1DHR DAC_DHR12RD_DACC1DHR_Msk /*!<DAC channel1 12-bit Right aligned data */
lypinator 0:bb348c97df44 5917 #define DAC_DHR12RD_DACC2DHR_Pos (16U)
lypinator 0:bb348c97df44 5918 #define DAC_DHR12RD_DACC2DHR_Msk (0xFFFU << DAC_DHR12RD_DACC2DHR_Pos) /*!< 0x0FFF0000 */
lypinator 0:bb348c97df44 5919 #define DAC_DHR12RD_DACC2DHR DAC_DHR12RD_DACC2DHR_Msk /*!<DAC channel2 12-bit Right aligned data */
lypinator 0:bb348c97df44 5920
lypinator 0:bb348c97df44 5921 /***************** Bit definition for DAC_DHR12LD register ******************/
lypinator 0:bb348c97df44 5922 #define DAC_DHR12LD_DACC1DHR_Pos (4U)
lypinator 0:bb348c97df44 5923 #define DAC_DHR12LD_DACC1DHR_Msk (0xFFFU << DAC_DHR12LD_DACC1DHR_Pos) /*!< 0x0000FFF0 */
lypinator 0:bb348c97df44 5924 #define DAC_DHR12LD_DACC1DHR DAC_DHR12LD_DACC1DHR_Msk /*!<DAC channel1 12-bit Left aligned data */
lypinator 0:bb348c97df44 5925 #define DAC_DHR12LD_DACC2DHR_Pos (20U)
lypinator 0:bb348c97df44 5926 #define DAC_DHR12LD_DACC2DHR_Msk (0xFFFU << DAC_DHR12LD_DACC2DHR_Pos) /*!< 0xFFF00000 */
lypinator 0:bb348c97df44 5927 #define DAC_DHR12LD_DACC2DHR DAC_DHR12LD_DACC2DHR_Msk /*!<DAC channel2 12-bit Left aligned data */
lypinator 0:bb348c97df44 5928
lypinator 0:bb348c97df44 5929 /****************** Bit definition for DAC_DHR8RD register ******************/
lypinator 0:bb348c97df44 5930 #define DAC_DHR8RD_DACC1DHR_Pos (0U)
lypinator 0:bb348c97df44 5931 #define DAC_DHR8RD_DACC1DHR_Msk (0xFFU << DAC_DHR8RD_DACC1DHR_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 5932 #define DAC_DHR8RD_DACC1DHR DAC_DHR8RD_DACC1DHR_Msk /*!<DAC channel1 8-bit Right aligned data */
lypinator 0:bb348c97df44 5933 #define DAC_DHR8RD_DACC2DHR_Pos (8U)
lypinator 0:bb348c97df44 5934 #define DAC_DHR8RD_DACC2DHR_Msk (0xFFU << DAC_DHR8RD_DACC2DHR_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 5935 #define DAC_DHR8RD_DACC2DHR DAC_DHR8RD_DACC2DHR_Msk /*!<DAC channel2 8-bit Right aligned data */
lypinator 0:bb348c97df44 5936
lypinator 0:bb348c97df44 5937 /******************* Bit definition for DAC_DOR1 register *******************/
lypinator 0:bb348c97df44 5938 #define DAC_DOR1_DACC1DOR_Pos (0U)
lypinator 0:bb348c97df44 5939 #define DAC_DOR1_DACC1DOR_Msk (0xFFFU << DAC_DOR1_DACC1DOR_Pos) /*!< 0x00000FFF */
lypinator 0:bb348c97df44 5940 #define DAC_DOR1_DACC1DOR DAC_DOR1_DACC1DOR_Msk /*!<DAC channel1 data output */
lypinator 0:bb348c97df44 5941
lypinator 0:bb348c97df44 5942 /******************* Bit definition for DAC_DOR2 register *******************/
lypinator 0:bb348c97df44 5943 #define DAC_DOR2_DACC2DOR_Pos (0U)
lypinator 0:bb348c97df44 5944 #define DAC_DOR2_DACC2DOR_Msk (0xFFFU << DAC_DOR2_DACC2DOR_Pos) /*!< 0x00000FFF */
lypinator 0:bb348c97df44 5945 #define DAC_DOR2_DACC2DOR DAC_DOR2_DACC2DOR_Msk /*!<DAC channel2 data output */
lypinator 0:bb348c97df44 5946
lypinator 0:bb348c97df44 5947 /******************** Bit definition for DAC_SR register ********************/
lypinator 0:bb348c97df44 5948 #define DAC_SR_DMAUDR1_Pos (13U)
lypinator 0:bb348c97df44 5949 #define DAC_SR_DMAUDR1_Msk (0x1U << DAC_SR_DMAUDR1_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 5950 #define DAC_SR_DMAUDR1 DAC_SR_DMAUDR1_Msk /*!<DAC channel1 DMA underrun flag */
lypinator 0:bb348c97df44 5951 #define DAC_SR_DMAUDR2_Pos (29U)
lypinator 0:bb348c97df44 5952 #define DAC_SR_DMAUDR2_Msk (0x1U << DAC_SR_DMAUDR2_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 5953 #define DAC_SR_DMAUDR2 DAC_SR_DMAUDR2_Msk /*!<DAC channel2 DMA underrun flag */
lypinator 0:bb348c97df44 5954
lypinator 0:bb348c97df44 5955 /******************************************************************************/
lypinator 0:bb348c97df44 5956 /* */
lypinator 0:bb348c97df44 5957 /* DCMI */
lypinator 0:bb348c97df44 5958 /* */
lypinator 0:bb348c97df44 5959 /******************************************************************************/
lypinator 0:bb348c97df44 5960 /******************** Bits definition for DCMI_CR register ******************/
lypinator 0:bb348c97df44 5961 #define DCMI_CR_CAPTURE_Pos (0U)
lypinator 0:bb348c97df44 5962 #define DCMI_CR_CAPTURE_Msk (0x1U << DCMI_CR_CAPTURE_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 5963 #define DCMI_CR_CAPTURE DCMI_CR_CAPTURE_Msk
lypinator 0:bb348c97df44 5964 #define DCMI_CR_CM_Pos (1U)
lypinator 0:bb348c97df44 5965 #define DCMI_CR_CM_Msk (0x1U << DCMI_CR_CM_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 5966 #define DCMI_CR_CM DCMI_CR_CM_Msk
lypinator 0:bb348c97df44 5967 #define DCMI_CR_CROP_Pos (2U)
lypinator 0:bb348c97df44 5968 #define DCMI_CR_CROP_Msk (0x1U << DCMI_CR_CROP_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 5969 #define DCMI_CR_CROP DCMI_CR_CROP_Msk
lypinator 0:bb348c97df44 5970 #define DCMI_CR_JPEG_Pos (3U)
lypinator 0:bb348c97df44 5971 #define DCMI_CR_JPEG_Msk (0x1U << DCMI_CR_JPEG_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 5972 #define DCMI_CR_JPEG DCMI_CR_JPEG_Msk
lypinator 0:bb348c97df44 5973 #define DCMI_CR_ESS_Pos (4U)
lypinator 0:bb348c97df44 5974 #define DCMI_CR_ESS_Msk (0x1U << DCMI_CR_ESS_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 5975 #define DCMI_CR_ESS DCMI_CR_ESS_Msk
lypinator 0:bb348c97df44 5976 #define DCMI_CR_PCKPOL_Pos (5U)
lypinator 0:bb348c97df44 5977 #define DCMI_CR_PCKPOL_Msk (0x1U << DCMI_CR_PCKPOL_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 5978 #define DCMI_CR_PCKPOL DCMI_CR_PCKPOL_Msk
lypinator 0:bb348c97df44 5979 #define DCMI_CR_HSPOL_Pos (6U)
lypinator 0:bb348c97df44 5980 #define DCMI_CR_HSPOL_Msk (0x1U << DCMI_CR_HSPOL_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 5981 #define DCMI_CR_HSPOL DCMI_CR_HSPOL_Msk
lypinator 0:bb348c97df44 5982 #define DCMI_CR_VSPOL_Pos (7U)
lypinator 0:bb348c97df44 5983 #define DCMI_CR_VSPOL_Msk (0x1U << DCMI_CR_VSPOL_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 5984 #define DCMI_CR_VSPOL DCMI_CR_VSPOL_Msk
lypinator 0:bb348c97df44 5985 #define DCMI_CR_FCRC_0 0x00000100U
lypinator 0:bb348c97df44 5986 #define DCMI_CR_FCRC_1 0x00000200U
lypinator 0:bb348c97df44 5987 #define DCMI_CR_EDM_0 0x00000400U
lypinator 0:bb348c97df44 5988 #define DCMI_CR_EDM_1 0x00000800U
lypinator 0:bb348c97df44 5989 #define DCMI_CR_ENABLE_Pos (14U)
lypinator 0:bb348c97df44 5990 #define DCMI_CR_ENABLE_Msk (0x1U << DCMI_CR_ENABLE_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 5991 #define DCMI_CR_ENABLE DCMI_CR_ENABLE_Msk
lypinator 0:bb348c97df44 5992
lypinator 0:bb348c97df44 5993 /******************** Bits definition for DCMI_SR register ******************/
lypinator 0:bb348c97df44 5994 #define DCMI_SR_HSYNC_Pos (0U)
lypinator 0:bb348c97df44 5995 #define DCMI_SR_HSYNC_Msk (0x1U << DCMI_SR_HSYNC_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 5996 #define DCMI_SR_HSYNC DCMI_SR_HSYNC_Msk
lypinator 0:bb348c97df44 5997 #define DCMI_SR_VSYNC_Pos (1U)
lypinator 0:bb348c97df44 5998 #define DCMI_SR_VSYNC_Msk (0x1U << DCMI_SR_VSYNC_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 5999 #define DCMI_SR_VSYNC DCMI_SR_VSYNC_Msk
lypinator 0:bb348c97df44 6000 #define DCMI_SR_FNE_Pos (2U)
lypinator 0:bb348c97df44 6001 #define DCMI_SR_FNE_Msk (0x1U << DCMI_SR_FNE_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 6002 #define DCMI_SR_FNE DCMI_SR_FNE_Msk
lypinator 0:bb348c97df44 6003
lypinator 0:bb348c97df44 6004 /******************** Bits definition for DCMI_RIS register *****************/
lypinator 0:bb348c97df44 6005 #define DCMI_RIS_FRAME_RIS_Pos (0U)
lypinator 0:bb348c97df44 6006 #define DCMI_RIS_FRAME_RIS_Msk (0x1U << DCMI_RIS_FRAME_RIS_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 6007 #define DCMI_RIS_FRAME_RIS DCMI_RIS_FRAME_RIS_Msk
lypinator 0:bb348c97df44 6008 #define DCMI_RIS_OVR_RIS_Pos (1U)
lypinator 0:bb348c97df44 6009 #define DCMI_RIS_OVR_RIS_Msk (0x1U << DCMI_RIS_OVR_RIS_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 6010 #define DCMI_RIS_OVR_RIS DCMI_RIS_OVR_RIS_Msk
lypinator 0:bb348c97df44 6011 #define DCMI_RIS_ERR_RIS_Pos (2U)
lypinator 0:bb348c97df44 6012 #define DCMI_RIS_ERR_RIS_Msk (0x1U << DCMI_RIS_ERR_RIS_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 6013 #define DCMI_RIS_ERR_RIS DCMI_RIS_ERR_RIS_Msk
lypinator 0:bb348c97df44 6014 #define DCMI_RIS_VSYNC_RIS_Pos (3U)
lypinator 0:bb348c97df44 6015 #define DCMI_RIS_VSYNC_RIS_Msk (0x1U << DCMI_RIS_VSYNC_RIS_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 6016 #define DCMI_RIS_VSYNC_RIS DCMI_RIS_VSYNC_RIS_Msk
lypinator 0:bb348c97df44 6017 #define DCMI_RIS_LINE_RIS_Pos (4U)
lypinator 0:bb348c97df44 6018 #define DCMI_RIS_LINE_RIS_Msk (0x1U << DCMI_RIS_LINE_RIS_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 6019 #define DCMI_RIS_LINE_RIS DCMI_RIS_LINE_RIS_Msk
lypinator 0:bb348c97df44 6020 /* Legacy defines */
lypinator 0:bb348c97df44 6021 #define DCMI_RISR_FRAME_RIS DCMI_RIS_FRAME_RIS
lypinator 0:bb348c97df44 6022 #define DCMI_RISR_OVR_RIS DCMI_RIS_OVR_RIS
lypinator 0:bb348c97df44 6023 #define DCMI_RISR_ERR_RIS DCMI_RIS_ERR_RIS
lypinator 0:bb348c97df44 6024 #define DCMI_RISR_VSYNC_RIS DCMI_RIS_VSYNC_RIS
lypinator 0:bb348c97df44 6025 #define DCMI_RISR_LINE_RIS DCMI_RIS_LINE_RIS
lypinator 0:bb348c97df44 6026 #define DCMI_RISR_OVF_RIS DCMI_RIS_OVR_RIS
lypinator 0:bb348c97df44 6027
lypinator 0:bb348c97df44 6028 /******************** Bits definition for DCMI_IER register *****************/
lypinator 0:bb348c97df44 6029 #define DCMI_IER_FRAME_IE_Pos (0U)
lypinator 0:bb348c97df44 6030 #define DCMI_IER_FRAME_IE_Msk (0x1U << DCMI_IER_FRAME_IE_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 6031 #define DCMI_IER_FRAME_IE DCMI_IER_FRAME_IE_Msk
lypinator 0:bb348c97df44 6032 #define DCMI_IER_OVR_IE_Pos (1U)
lypinator 0:bb348c97df44 6033 #define DCMI_IER_OVR_IE_Msk (0x1U << DCMI_IER_OVR_IE_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 6034 #define DCMI_IER_OVR_IE DCMI_IER_OVR_IE_Msk
lypinator 0:bb348c97df44 6035 #define DCMI_IER_ERR_IE_Pos (2U)
lypinator 0:bb348c97df44 6036 #define DCMI_IER_ERR_IE_Msk (0x1U << DCMI_IER_ERR_IE_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 6037 #define DCMI_IER_ERR_IE DCMI_IER_ERR_IE_Msk
lypinator 0:bb348c97df44 6038 #define DCMI_IER_VSYNC_IE_Pos (3U)
lypinator 0:bb348c97df44 6039 #define DCMI_IER_VSYNC_IE_Msk (0x1U << DCMI_IER_VSYNC_IE_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 6040 #define DCMI_IER_VSYNC_IE DCMI_IER_VSYNC_IE_Msk
lypinator 0:bb348c97df44 6041 #define DCMI_IER_LINE_IE_Pos (4U)
lypinator 0:bb348c97df44 6042 #define DCMI_IER_LINE_IE_Msk (0x1U << DCMI_IER_LINE_IE_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 6043 #define DCMI_IER_LINE_IE DCMI_IER_LINE_IE_Msk
lypinator 0:bb348c97df44 6044 /* Legacy defines */
lypinator 0:bb348c97df44 6045 #define DCMI_IER_OVF_IE DCMI_IER_OVR_IE
lypinator 0:bb348c97df44 6046
lypinator 0:bb348c97df44 6047 /******************** Bits definition for DCMI_MIS register *****************/
lypinator 0:bb348c97df44 6048 #define DCMI_MIS_FRAME_MIS_Pos (0U)
lypinator 0:bb348c97df44 6049 #define DCMI_MIS_FRAME_MIS_Msk (0x1U << DCMI_MIS_FRAME_MIS_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 6050 #define DCMI_MIS_FRAME_MIS DCMI_MIS_FRAME_MIS_Msk
lypinator 0:bb348c97df44 6051 #define DCMI_MIS_OVR_MIS_Pos (1U)
lypinator 0:bb348c97df44 6052 #define DCMI_MIS_OVR_MIS_Msk (0x1U << DCMI_MIS_OVR_MIS_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 6053 #define DCMI_MIS_OVR_MIS DCMI_MIS_OVR_MIS_Msk
lypinator 0:bb348c97df44 6054 #define DCMI_MIS_ERR_MIS_Pos (2U)
lypinator 0:bb348c97df44 6055 #define DCMI_MIS_ERR_MIS_Msk (0x1U << DCMI_MIS_ERR_MIS_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 6056 #define DCMI_MIS_ERR_MIS DCMI_MIS_ERR_MIS_Msk
lypinator 0:bb348c97df44 6057 #define DCMI_MIS_VSYNC_MIS_Pos (3U)
lypinator 0:bb348c97df44 6058 #define DCMI_MIS_VSYNC_MIS_Msk (0x1U << DCMI_MIS_VSYNC_MIS_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 6059 #define DCMI_MIS_VSYNC_MIS DCMI_MIS_VSYNC_MIS_Msk
lypinator 0:bb348c97df44 6060 #define DCMI_MIS_LINE_MIS_Pos (4U)
lypinator 0:bb348c97df44 6061 #define DCMI_MIS_LINE_MIS_Msk (0x1U << DCMI_MIS_LINE_MIS_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 6062 #define DCMI_MIS_LINE_MIS DCMI_MIS_LINE_MIS_Msk
lypinator 0:bb348c97df44 6063
lypinator 0:bb348c97df44 6064 /* Legacy defines */
lypinator 0:bb348c97df44 6065 #define DCMI_MISR_FRAME_MIS DCMI_MIS_FRAME_MIS
lypinator 0:bb348c97df44 6066 #define DCMI_MISR_OVF_MIS DCMI_MIS_OVR_MIS
lypinator 0:bb348c97df44 6067 #define DCMI_MISR_ERR_MIS DCMI_MIS_ERR_MIS
lypinator 0:bb348c97df44 6068 #define DCMI_MISR_VSYNC_MIS DCMI_MIS_VSYNC_MIS
lypinator 0:bb348c97df44 6069 #define DCMI_MISR_LINE_MIS DCMI_MIS_LINE_MIS
lypinator 0:bb348c97df44 6070
lypinator 0:bb348c97df44 6071 /******************** Bits definition for DCMI_ICR register *****************/
lypinator 0:bb348c97df44 6072 #define DCMI_ICR_FRAME_ISC_Pos (0U)
lypinator 0:bb348c97df44 6073 #define DCMI_ICR_FRAME_ISC_Msk (0x1U << DCMI_ICR_FRAME_ISC_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 6074 #define DCMI_ICR_FRAME_ISC DCMI_ICR_FRAME_ISC_Msk
lypinator 0:bb348c97df44 6075 #define DCMI_ICR_OVR_ISC_Pos (1U)
lypinator 0:bb348c97df44 6076 #define DCMI_ICR_OVR_ISC_Msk (0x1U << DCMI_ICR_OVR_ISC_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 6077 #define DCMI_ICR_OVR_ISC DCMI_ICR_OVR_ISC_Msk
lypinator 0:bb348c97df44 6078 #define DCMI_ICR_ERR_ISC_Pos (2U)
lypinator 0:bb348c97df44 6079 #define DCMI_ICR_ERR_ISC_Msk (0x1U << DCMI_ICR_ERR_ISC_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 6080 #define DCMI_ICR_ERR_ISC DCMI_ICR_ERR_ISC_Msk
lypinator 0:bb348c97df44 6081 #define DCMI_ICR_VSYNC_ISC_Pos (3U)
lypinator 0:bb348c97df44 6082 #define DCMI_ICR_VSYNC_ISC_Msk (0x1U << DCMI_ICR_VSYNC_ISC_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 6083 #define DCMI_ICR_VSYNC_ISC DCMI_ICR_VSYNC_ISC_Msk
lypinator 0:bb348c97df44 6084 #define DCMI_ICR_LINE_ISC_Pos (4U)
lypinator 0:bb348c97df44 6085 #define DCMI_ICR_LINE_ISC_Msk (0x1U << DCMI_ICR_LINE_ISC_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 6086 #define DCMI_ICR_LINE_ISC DCMI_ICR_LINE_ISC_Msk
lypinator 0:bb348c97df44 6087
lypinator 0:bb348c97df44 6088 /* Legacy defines */
lypinator 0:bb348c97df44 6089 #define DCMI_ICR_OVF_ISC DCMI_ICR_OVR_ISC
lypinator 0:bb348c97df44 6090
lypinator 0:bb348c97df44 6091 /******************** Bits definition for DCMI_ESCR register ******************/
lypinator 0:bb348c97df44 6092 #define DCMI_ESCR_FSC_Pos (0U)
lypinator 0:bb348c97df44 6093 #define DCMI_ESCR_FSC_Msk (0xFFU << DCMI_ESCR_FSC_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 6094 #define DCMI_ESCR_FSC DCMI_ESCR_FSC_Msk
lypinator 0:bb348c97df44 6095 #define DCMI_ESCR_LSC_Pos (8U)
lypinator 0:bb348c97df44 6096 #define DCMI_ESCR_LSC_Msk (0xFFU << DCMI_ESCR_LSC_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 6097 #define DCMI_ESCR_LSC DCMI_ESCR_LSC_Msk
lypinator 0:bb348c97df44 6098 #define DCMI_ESCR_LEC_Pos (16U)
lypinator 0:bb348c97df44 6099 #define DCMI_ESCR_LEC_Msk (0xFFU << DCMI_ESCR_LEC_Pos) /*!< 0x00FF0000 */
lypinator 0:bb348c97df44 6100 #define DCMI_ESCR_LEC DCMI_ESCR_LEC_Msk
lypinator 0:bb348c97df44 6101 #define DCMI_ESCR_FEC_Pos (24U)
lypinator 0:bb348c97df44 6102 #define DCMI_ESCR_FEC_Msk (0xFFU << DCMI_ESCR_FEC_Pos) /*!< 0xFF000000 */
lypinator 0:bb348c97df44 6103 #define DCMI_ESCR_FEC DCMI_ESCR_FEC_Msk
lypinator 0:bb348c97df44 6104
lypinator 0:bb348c97df44 6105 /******************** Bits definition for DCMI_ESUR register ******************/
lypinator 0:bb348c97df44 6106 #define DCMI_ESUR_FSU_Pos (0U)
lypinator 0:bb348c97df44 6107 #define DCMI_ESUR_FSU_Msk (0xFFU << DCMI_ESUR_FSU_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 6108 #define DCMI_ESUR_FSU DCMI_ESUR_FSU_Msk
lypinator 0:bb348c97df44 6109 #define DCMI_ESUR_LSU_Pos (8U)
lypinator 0:bb348c97df44 6110 #define DCMI_ESUR_LSU_Msk (0xFFU << DCMI_ESUR_LSU_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 6111 #define DCMI_ESUR_LSU DCMI_ESUR_LSU_Msk
lypinator 0:bb348c97df44 6112 #define DCMI_ESUR_LEU_Pos (16U)
lypinator 0:bb348c97df44 6113 #define DCMI_ESUR_LEU_Msk (0xFFU << DCMI_ESUR_LEU_Pos) /*!< 0x00FF0000 */
lypinator 0:bb348c97df44 6114 #define DCMI_ESUR_LEU DCMI_ESUR_LEU_Msk
lypinator 0:bb348c97df44 6115 #define DCMI_ESUR_FEU_Pos (24U)
lypinator 0:bb348c97df44 6116 #define DCMI_ESUR_FEU_Msk (0xFFU << DCMI_ESUR_FEU_Pos) /*!< 0xFF000000 */
lypinator 0:bb348c97df44 6117 #define DCMI_ESUR_FEU DCMI_ESUR_FEU_Msk
lypinator 0:bb348c97df44 6118
lypinator 0:bb348c97df44 6119 /******************** Bits definition for DCMI_CWSTRT register ******************/
lypinator 0:bb348c97df44 6120 #define DCMI_CWSTRT_HOFFCNT_Pos (0U)
lypinator 0:bb348c97df44 6121 #define DCMI_CWSTRT_HOFFCNT_Msk (0x3FFFU << DCMI_CWSTRT_HOFFCNT_Pos) /*!< 0x00003FFF */
lypinator 0:bb348c97df44 6122 #define DCMI_CWSTRT_HOFFCNT DCMI_CWSTRT_HOFFCNT_Msk
lypinator 0:bb348c97df44 6123 #define DCMI_CWSTRT_VST_Pos (16U)
lypinator 0:bb348c97df44 6124 #define DCMI_CWSTRT_VST_Msk (0x1FFFU << DCMI_CWSTRT_VST_Pos) /*!< 0x1FFF0000 */
lypinator 0:bb348c97df44 6125 #define DCMI_CWSTRT_VST DCMI_CWSTRT_VST_Msk
lypinator 0:bb348c97df44 6126
lypinator 0:bb348c97df44 6127 /******************** Bits definition for DCMI_CWSIZE register ******************/
lypinator 0:bb348c97df44 6128 #define DCMI_CWSIZE_CAPCNT_Pos (0U)
lypinator 0:bb348c97df44 6129 #define DCMI_CWSIZE_CAPCNT_Msk (0x3FFFU << DCMI_CWSIZE_CAPCNT_Pos) /*!< 0x00003FFF */
lypinator 0:bb348c97df44 6130 #define DCMI_CWSIZE_CAPCNT DCMI_CWSIZE_CAPCNT_Msk
lypinator 0:bb348c97df44 6131 #define DCMI_CWSIZE_VLINE_Pos (16U)
lypinator 0:bb348c97df44 6132 #define DCMI_CWSIZE_VLINE_Msk (0x3FFFU << DCMI_CWSIZE_VLINE_Pos) /*!< 0x3FFF0000 */
lypinator 0:bb348c97df44 6133 #define DCMI_CWSIZE_VLINE DCMI_CWSIZE_VLINE_Msk
lypinator 0:bb348c97df44 6134
lypinator 0:bb348c97df44 6135 /******************** Bits definition for DCMI_DR register *********************/
lypinator 0:bb348c97df44 6136 #define DCMI_DR_BYTE0_Pos (0U)
lypinator 0:bb348c97df44 6137 #define DCMI_DR_BYTE0_Msk (0xFFU << DCMI_DR_BYTE0_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 6138 #define DCMI_DR_BYTE0 DCMI_DR_BYTE0_Msk
lypinator 0:bb348c97df44 6139 #define DCMI_DR_BYTE1_Pos (8U)
lypinator 0:bb348c97df44 6140 #define DCMI_DR_BYTE1_Msk (0xFFU << DCMI_DR_BYTE1_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 6141 #define DCMI_DR_BYTE1 DCMI_DR_BYTE1_Msk
lypinator 0:bb348c97df44 6142 #define DCMI_DR_BYTE2_Pos (16U)
lypinator 0:bb348c97df44 6143 #define DCMI_DR_BYTE2_Msk (0xFFU << DCMI_DR_BYTE2_Pos) /*!< 0x00FF0000 */
lypinator 0:bb348c97df44 6144 #define DCMI_DR_BYTE2 DCMI_DR_BYTE2_Msk
lypinator 0:bb348c97df44 6145 #define DCMI_DR_BYTE3_Pos (24U)
lypinator 0:bb348c97df44 6146 #define DCMI_DR_BYTE3_Msk (0xFFU << DCMI_DR_BYTE3_Pos) /*!< 0xFF000000 */
lypinator 0:bb348c97df44 6147 #define DCMI_DR_BYTE3 DCMI_DR_BYTE3_Msk
lypinator 0:bb348c97df44 6148
lypinator 0:bb348c97df44 6149 /******************************************************************************/
lypinator 0:bb348c97df44 6150 /* */
lypinator 0:bb348c97df44 6151 /* DMA Controller */
lypinator 0:bb348c97df44 6152 /* */
lypinator 0:bb348c97df44 6153 /******************************************************************************/
lypinator 0:bb348c97df44 6154 /******************** Bits definition for DMA_SxCR register *****************/
lypinator 0:bb348c97df44 6155 #define DMA_SxCR_CHSEL_Pos (25U)
lypinator 0:bb348c97df44 6156 #define DMA_SxCR_CHSEL_Msk (0x7U << DMA_SxCR_CHSEL_Pos) /*!< 0x0E000000 */
lypinator 0:bb348c97df44 6157 #define DMA_SxCR_CHSEL DMA_SxCR_CHSEL_Msk
lypinator 0:bb348c97df44 6158 #define DMA_SxCR_CHSEL_0 0x02000000U
lypinator 0:bb348c97df44 6159 #define DMA_SxCR_CHSEL_1 0x04000000U
lypinator 0:bb348c97df44 6160 #define DMA_SxCR_CHSEL_2 0x08000000U
lypinator 0:bb348c97df44 6161 #define DMA_SxCR_MBURST_Pos (23U)
lypinator 0:bb348c97df44 6162 #define DMA_SxCR_MBURST_Msk (0x3U << DMA_SxCR_MBURST_Pos) /*!< 0x01800000 */
lypinator 0:bb348c97df44 6163 #define DMA_SxCR_MBURST DMA_SxCR_MBURST_Msk
lypinator 0:bb348c97df44 6164 #define DMA_SxCR_MBURST_0 (0x1U << DMA_SxCR_MBURST_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 6165 #define DMA_SxCR_MBURST_1 (0x2U << DMA_SxCR_MBURST_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 6166 #define DMA_SxCR_PBURST_Pos (21U)
lypinator 0:bb348c97df44 6167 #define DMA_SxCR_PBURST_Msk (0x3U << DMA_SxCR_PBURST_Pos) /*!< 0x00600000 */
lypinator 0:bb348c97df44 6168 #define DMA_SxCR_PBURST DMA_SxCR_PBURST_Msk
lypinator 0:bb348c97df44 6169 #define DMA_SxCR_PBURST_0 (0x1U << DMA_SxCR_PBURST_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 6170 #define DMA_SxCR_PBURST_1 (0x2U << DMA_SxCR_PBURST_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 6171 #define DMA_SxCR_CT_Pos (19U)
lypinator 0:bb348c97df44 6172 #define DMA_SxCR_CT_Msk (0x1U << DMA_SxCR_CT_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 6173 #define DMA_SxCR_CT DMA_SxCR_CT_Msk
lypinator 0:bb348c97df44 6174 #define DMA_SxCR_DBM_Pos (18U)
lypinator 0:bb348c97df44 6175 #define DMA_SxCR_DBM_Msk (0x1U << DMA_SxCR_DBM_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 6176 #define DMA_SxCR_DBM DMA_SxCR_DBM_Msk
lypinator 0:bb348c97df44 6177 #define DMA_SxCR_PL_Pos (16U)
lypinator 0:bb348c97df44 6178 #define DMA_SxCR_PL_Msk (0x3U << DMA_SxCR_PL_Pos) /*!< 0x00030000 */
lypinator 0:bb348c97df44 6179 #define DMA_SxCR_PL DMA_SxCR_PL_Msk
lypinator 0:bb348c97df44 6180 #define DMA_SxCR_PL_0 (0x1U << DMA_SxCR_PL_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 6181 #define DMA_SxCR_PL_1 (0x2U << DMA_SxCR_PL_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 6182 #define DMA_SxCR_PINCOS_Pos (15U)
lypinator 0:bb348c97df44 6183 #define DMA_SxCR_PINCOS_Msk (0x1U << DMA_SxCR_PINCOS_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 6184 #define DMA_SxCR_PINCOS DMA_SxCR_PINCOS_Msk
lypinator 0:bb348c97df44 6185 #define DMA_SxCR_MSIZE_Pos (13U)
lypinator 0:bb348c97df44 6186 #define DMA_SxCR_MSIZE_Msk (0x3U << DMA_SxCR_MSIZE_Pos) /*!< 0x00006000 */
lypinator 0:bb348c97df44 6187 #define DMA_SxCR_MSIZE DMA_SxCR_MSIZE_Msk
lypinator 0:bb348c97df44 6188 #define DMA_SxCR_MSIZE_0 (0x1U << DMA_SxCR_MSIZE_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 6189 #define DMA_SxCR_MSIZE_1 (0x2U << DMA_SxCR_MSIZE_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 6190 #define DMA_SxCR_PSIZE_Pos (11U)
lypinator 0:bb348c97df44 6191 #define DMA_SxCR_PSIZE_Msk (0x3U << DMA_SxCR_PSIZE_Pos) /*!< 0x00001800 */
lypinator 0:bb348c97df44 6192 #define DMA_SxCR_PSIZE DMA_SxCR_PSIZE_Msk
lypinator 0:bb348c97df44 6193 #define DMA_SxCR_PSIZE_0 (0x1U << DMA_SxCR_PSIZE_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 6194 #define DMA_SxCR_PSIZE_1 (0x2U << DMA_SxCR_PSIZE_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 6195 #define DMA_SxCR_MINC_Pos (10U)
lypinator 0:bb348c97df44 6196 #define DMA_SxCR_MINC_Msk (0x1U << DMA_SxCR_MINC_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 6197 #define DMA_SxCR_MINC DMA_SxCR_MINC_Msk
lypinator 0:bb348c97df44 6198 #define DMA_SxCR_PINC_Pos (9U)
lypinator 0:bb348c97df44 6199 #define DMA_SxCR_PINC_Msk (0x1U << DMA_SxCR_PINC_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 6200 #define DMA_SxCR_PINC DMA_SxCR_PINC_Msk
lypinator 0:bb348c97df44 6201 #define DMA_SxCR_CIRC_Pos (8U)
lypinator 0:bb348c97df44 6202 #define DMA_SxCR_CIRC_Msk (0x1U << DMA_SxCR_CIRC_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 6203 #define DMA_SxCR_CIRC DMA_SxCR_CIRC_Msk
lypinator 0:bb348c97df44 6204 #define DMA_SxCR_DIR_Pos (6U)
lypinator 0:bb348c97df44 6205 #define DMA_SxCR_DIR_Msk (0x3U << DMA_SxCR_DIR_Pos) /*!< 0x000000C0 */
lypinator 0:bb348c97df44 6206 #define DMA_SxCR_DIR DMA_SxCR_DIR_Msk
lypinator 0:bb348c97df44 6207 #define DMA_SxCR_DIR_0 (0x1U << DMA_SxCR_DIR_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 6208 #define DMA_SxCR_DIR_1 (0x2U << DMA_SxCR_DIR_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 6209 #define DMA_SxCR_PFCTRL_Pos (5U)
lypinator 0:bb348c97df44 6210 #define DMA_SxCR_PFCTRL_Msk (0x1U << DMA_SxCR_PFCTRL_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 6211 #define DMA_SxCR_PFCTRL DMA_SxCR_PFCTRL_Msk
lypinator 0:bb348c97df44 6212 #define DMA_SxCR_TCIE_Pos (4U)
lypinator 0:bb348c97df44 6213 #define DMA_SxCR_TCIE_Msk (0x1U << DMA_SxCR_TCIE_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 6214 #define DMA_SxCR_TCIE DMA_SxCR_TCIE_Msk
lypinator 0:bb348c97df44 6215 #define DMA_SxCR_HTIE_Pos (3U)
lypinator 0:bb348c97df44 6216 #define DMA_SxCR_HTIE_Msk (0x1U << DMA_SxCR_HTIE_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 6217 #define DMA_SxCR_HTIE DMA_SxCR_HTIE_Msk
lypinator 0:bb348c97df44 6218 #define DMA_SxCR_TEIE_Pos (2U)
lypinator 0:bb348c97df44 6219 #define DMA_SxCR_TEIE_Msk (0x1U << DMA_SxCR_TEIE_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 6220 #define DMA_SxCR_TEIE DMA_SxCR_TEIE_Msk
lypinator 0:bb348c97df44 6221 #define DMA_SxCR_DMEIE_Pos (1U)
lypinator 0:bb348c97df44 6222 #define DMA_SxCR_DMEIE_Msk (0x1U << DMA_SxCR_DMEIE_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 6223 #define DMA_SxCR_DMEIE DMA_SxCR_DMEIE_Msk
lypinator 0:bb348c97df44 6224 #define DMA_SxCR_EN_Pos (0U)
lypinator 0:bb348c97df44 6225 #define DMA_SxCR_EN_Msk (0x1U << DMA_SxCR_EN_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 6226 #define DMA_SxCR_EN DMA_SxCR_EN_Msk
lypinator 0:bb348c97df44 6227
lypinator 0:bb348c97df44 6228 /* Legacy defines */
lypinator 0:bb348c97df44 6229 #define DMA_SxCR_ACK_Pos (20U)
lypinator 0:bb348c97df44 6230 #define DMA_SxCR_ACK_Msk (0x1U << DMA_SxCR_ACK_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 6231 #define DMA_SxCR_ACK DMA_SxCR_ACK_Msk
lypinator 0:bb348c97df44 6232
lypinator 0:bb348c97df44 6233 /******************** Bits definition for DMA_SxCNDTR register **************/
lypinator 0:bb348c97df44 6234 #define DMA_SxNDT_Pos (0U)
lypinator 0:bb348c97df44 6235 #define DMA_SxNDT_Msk (0xFFFFU << DMA_SxNDT_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 6236 #define DMA_SxNDT DMA_SxNDT_Msk
lypinator 0:bb348c97df44 6237 #define DMA_SxNDT_0 (0x0001U << DMA_SxNDT_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 6238 #define DMA_SxNDT_1 (0x0002U << DMA_SxNDT_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 6239 #define DMA_SxNDT_2 (0x0004U << DMA_SxNDT_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 6240 #define DMA_SxNDT_3 (0x0008U << DMA_SxNDT_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 6241 #define DMA_SxNDT_4 (0x0010U << DMA_SxNDT_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 6242 #define DMA_SxNDT_5 (0x0020U << DMA_SxNDT_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 6243 #define DMA_SxNDT_6 (0x0040U << DMA_SxNDT_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 6244 #define DMA_SxNDT_7 (0x0080U << DMA_SxNDT_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 6245 #define DMA_SxNDT_8 (0x0100U << DMA_SxNDT_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 6246 #define DMA_SxNDT_9 (0x0200U << DMA_SxNDT_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 6247 #define DMA_SxNDT_10 (0x0400U << DMA_SxNDT_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 6248 #define DMA_SxNDT_11 (0x0800U << DMA_SxNDT_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 6249 #define DMA_SxNDT_12 (0x1000U << DMA_SxNDT_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 6250 #define DMA_SxNDT_13 (0x2000U << DMA_SxNDT_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 6251 #define DMA_SxNDT_14 (0x4000U << DMA_SxNDT_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 6252 #define DMA_SxNDT_15 (0x8000U << DMA_SxNDT_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 6253
lypinator 0:bb348c97df44 6254 /******************** Bits definition for DMA_SxFCR register ****************/
lypinator 0:bb348c97df44 6255 #define DMA_SxFCR_FEIE_Pos (7U)
lypinator 0:bb348c97df44 6256 #define DMA_SxFCR_FEIE_Msk (0x1U << DMA_SxFCR_FEIE_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 6257 #define DMA_SxFCR_FEIE DMA_SxFCR_FEIE_Msk
lypinator 0:bb348c97df44 6258 #define DMA_SxFCR_FS_Pos (3U)
lypinator 0:bb348c97df44 6259 #define DMA_SxFCR_FS_Msk (0x7U << DMA_SxFCR_FS_Pos) /*!< 0x00000038 */
lypinator 0:bb348c97df44 6260 #define DMA_SxFCR_FS DMA_SxFCR_FS_Msk
lypinator 0:bb348c97df44 6261 #define DMA_SxFCR_FS_0 (0x1U << DMA_SxFCR_FS_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 6262 #define DMA_SxFCR_FS_1 (0x2U << DMA_SxFCR_FS_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 6263 #define DMA_SxFCR_FS_2 (0x4U << DMA_SxFCR_FS_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 6264 #define DMA_SxFCR_DMDIS_Pos (2U)
lypinator 0:bb348c97df44 6265 #define DMA_SxFCR_DMDIS_Msk (0x1U << DMA_SxFCR_DMDIS_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 6266 #define DMA_SxFCR_DMDIS DMA_SxFCR_DMDIS_Msk
lypinator 0:bb348c97df44 6267 #define DMA_SxFCR_FTH_Pos (0U)
lypinator 0:bb348c97df44 6268 #define DMA_SxFCR_FTH_Msk (0x3U << DMA_SxFCR_FTH_Pos) /*!< 0x00000003 */
lypinator 0:bb348c97df44 6269 #define DMA_SxFCR_FTH DMA_SxFCR_FTH_Msk
lypinator 0:bb348c97df44 6270 #define DMA_SxFCR_FTH_0 (0x1U << DMA_SxFCR_FTH_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 6271 #define DMA_SxFCR_FTH_1 (0x2U << DMA_SxFCR_FTH_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 6272
lypinator 0:bb348c97df44 6273 /******************** Bits definition for DMA_LISR register *****************/
lypinator 0:bb348c97df44 6274 #define DMA_LISR_TCIF3_Pos (27U)
lypinator 0:bb348c97df44 6275 #define DMA_LISR_TCIF3_Msk (0x1U << DMA_LISR_TCIF3_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 6276 #define DMA_LISR_TCIF3 DMA_LISR_TCIF3_Msk
lypinator 0:bb348c97df44 6277 #define DMA_LISR_HTIF3_Pos (26U)
lypinator 0:bb348c97df44 6278 #define DMA_LISR_HTIF3_Msk (0x1U << DMA_LISR_HTIF3_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 6279 #define DMA_LISR_HTIF3 DMA_LISR_HTIF3_Msk
lypinator 0:bb348c97df44 6280 #define DMA_LISR_TEIF3_Pos (25U)
lypinator 0:bb348c97df44 6281 #define DMA_LISR_TEIF3_Msk (0x1U << DMA_LISR_TEIF3_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 6282 #define DMA_LISR_TEIF3 DMA_LISR_TEIF3_Msk
lypinator 0:bb348c97df44 6283 #define DMA_LISR_DMEIF3_Pos (24U)
lypinator 0:bb348c97df44 6284 #define DMA_LISR_DMEIF3_Msk (0x1U << DMA_LISR_DMEIF3_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 6285 #define DMA_LISR_DMEIF3 DMA_LISR_DMEIF3_Msk
lypinator 0:bb348c97df44 6286 #define DMA_LISR_FEIF3_Pos (22U)
lypinator 0:bb348c97df44 6287 #define DMA_LISR_FEIF3_Msk (0x1U << DMA_LISR_FEIF3_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 6288 #define DMA_LISR_FEIF3 DMA_LISR_FEIF3_Msk
lypinator 0:bb348c97df44 6289 #define DMA_LISR_TCIF2_Pos (21U)
lypinator 0:bb348c97df44 6290 #define DMA_LISR_TCIF2_Msk (0x1U << DMA_LISR_TCIF2_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 6291 #define DMA_LISR_TCIF2 DMA_LISR_TCIF2_Msk
lypinator 0:bb348c97df44 6292 #define DMA_LISR_HTIF2_Pos (20U)
lypinator 0:bb348c97df44 6293 #define DMA_LISR_HTIF2_Msk (0x1U << DMA_LISR_HTIF2_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 6294 #define DMA_LISR_HTIF2 DMA_LISR_HTIF2_Msk
lypinator 0:bb348c97df44 6295 #define DMA_LISR_TEIF2_Pos (19U)
lypinator 0:bb348c97df44 6296 #define DMA_LISR_TEIF2_Msk (0x1U << DMA_LISR_TEIF2_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 6297 #define DMA_LISR_TEIF2 DMA_LISR_TEIF2_Msk
lypinator 0:bb348c97df44 6298 #define DMA_LISR_DMEIF2_Pos (18U)
lypinator 0:bb348c97df44 6299 #define DMA_LISR_DMEIF2_Msk (0x1U << DMA_LISR_DMEIF2_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 6300 #define DMA_LISR_DMEIF2 DMA_LISR_DMEIF2_Msk
lypinator 0:bb348c97df44 6301 #define DMA_LISR_FEIF2_Pos (16U)
lypinator 0:bb348c97df44 6302 #define DMA_LISR_FEIF2_Msk (0x1U << DMA_LISR_FEIF2_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 6303 #define DMA_LISR_FEIF2 DMA_LISR_FEIF2_Msk
lypinator 0:bb348c97df44 6304 #define DMA_LISR_TCIF1_Pos (11U)
lypinator 0:bb348c97df44 6305 #define DMA_LISR_TCIF1_Msk (0x1U << DMA_LISR_TCIF1_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 6306 #define DMA_LISR_TCIF1 DMA_LISR_TCIF1_Msk
lypinator 0:bb348c97df44 6307 #define DMA_LISR_HTIF1_Pos (10U)
lypinator 0:bb348c97df44 6308 #define DMA_LISR_HTIF1_Msk (0x1U << DMA_LISR_HTIF1_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 6309 #define DMA_LISR_HTIF1 DMA_LISR_HTIF1_Msk
lypinator 0:bb348c97df44 6310 #define DMA_LISR_TEIF1_Pos (9U)
lypinator 0:bb348c97df44 6311 #define DMA_LISR_TEIF1_Msk (0x1U << DMA_LISR_TEIF1_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 6312 #define DMA_LISR_TEIF1 DMA_LISR_TEIF1_Msk
lypinator 0:bb348c97df44 6313 #define DMA_LISR_DMEIF1_Pos (8U)
lypinator 0:bb348c97df44 6314 #define DMA_LISR_DMEIF1_Msk (0x1U << DMA_LISR_DMEIF1_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 6315 #define DMA_LISR_DMEIF1 DMA_LISR_DMEIF1_Msk
lypinator 0:bb348c97df44 6316 #define DMA_LISR_FEIF1_Pos (6U)
lypinator 0:bb348c97df44 6317 #define DMA_LISR_FEIF1_Msk (0x1U << DMA_LISR_FEIF1_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 6318 #define DMA_LISR_FEIF1 DMA_LISR_FEIF1_Msk
lypinator 0:bb348c97df44 6319 #define DMA_LISR_TCIF0_Pos (5U)
lypinator 0:bb348c97df44 6320 #define DMA_LISR_TCIF0_Msk (0x1U << DMA_LISR_TCIF0_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 6321 #define DMA_LISR_TCIF0 DMA_LISR_TCIF0_Msk
lypinator 0:bb348c97df44 6322 #define DMA_LISR_HTIF0_Pos (4U)
lypinator 0:bb348c97df44 6323 #define DMA_LISR_HTIF0_Msk (0x1U << DMA_LISR_HTIF0_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 6324 #define DMA_LISR_HTIF0 DMA_LISR_HTIF0_Msk
lypinator 0:bb348c97df44 6325 #define DMA_LISR_TEIF0_Pos (3U)
lypinator 0:bb348c97df44 6326 #define DMA_LISR_TEIF0_Msk (0x1U << DMA_LISR_TEIF0_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 6327 #define DMA_LISR_TEIF0 DMA_LISR_TEIF0_Msk
lypinator 0:bb348c97df44 6328 #define DMA_LISR_DMEIF0_Pos (2U)
lypinator 0:bb348c97df44 6329 #define DMA_LISR_DMEIF0_Msk (0x1U << DMA_LISR_DMEIF0_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 6330 #define DMA_LISR_DMEIF0 DMA_LISR_DMEIF0_Msk
lypinator 0:bb348c97df44 6331 #define DMA_LISR_FEIF0_Pos (0U)
lypinator 0:bb348c97df44 6332 #define DMA_LISR_FEIF0_Msk (0x1U << DMA_LISR_FEIF0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 6333 #define DMA_LISR_FEIF0 DMA_LISR_FEIF0_Msk
lypinator 0:bb348c97df44 6334
lypinator 0:bb348c97df44 6335 /******************** Bits definition for DMA_HISR register *****************/
lypinator 0:bb348c97df44 6336 #define DMA_HISR_TCIF7_Pos (27U)
lypinator 0:bb348c97df44 6337 #define DMA_HISR_TCIF7_Msk (0x1U << DMA_HISR_TCIF7_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 6338 #define DMA_HISR_TCIF7 DMA_HISR_TCIF7_Msk
lypinator 0:bb348c97df44 6339 #define DMA_HISR_HTIF7_Pos (26U)
lypinator 0:bb348c97df44 6340 #define DMA_HISR_HTIF7_Msk (0x1U << DMA_HISR_HTIF7_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 6341 #define DMA_HISR_HTIF7 DMA_HISR_HTIF7_Msk
lypinator 0:bb348c97df44 6342 #define DMA_HISR_TEIF7_Pos (25U)
lypinator 0:bb348c97df44 6343 #define DMA_HISR_TEIF7_Msk (0x1U << DMA_HISR_TEIF7_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 6344 #define DMA_HISR_TEIF7 DMA_HISR_TEIF7_Msk
lypinator 0:bb348c97df44 6345 #define DMA_HISR_DMEIF7_Pos (24U)
lypinator 0:bb348c97df44 6346 #define DMA_HISR_DMEIF7_Msk (0x1U << DMA_HISR_DMEIF7_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 6347 #define DMA_HISR_DMEIF7 DMA_HISR_DMEIF7_Msk
lypinator 0:bb348c97df44 6348 #define DMA_HISR_FEIF7_Pos (22U)
lypinator 0:bb348c97df44 6349 #define DMA_HISR_FEIF7_Msk (0x1U << DMA_HISR_FEIF7_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 6350 #define DMA_HISR_FEIF7 DMA_HISR_FEIF7_Msk
lypinator 0:bb348c97df44 6351 #define DMA_HISR_TCIF6_Pos (21U)
lypinator 0:bb348c97df44 6352 #define DMA_HISR_TCIF6_Msk (0x1U << DMA_HISR_TCIF6_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 6353 #define DMA_HISR_TCIF6 DMA_HISR_TCIF6_Msk
lypinator 0:bb348c97df44 6354 #define DMA_HISR_HTIF6_Pos (20U)
lypinator 0:bb348c97df44 6355 #define DMA_HISR_HTIF6_Msk (0x1U << DMA_HISR_HTIF6_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 6356 #define DMA_HISR_HTIF6 DMA_HISR_HTIF6_Msk
lypinator 0:bb348c97df44 6357 #define DMA_HISR_TEIF6_Pos (19U)
lypinator 0:bb348c97df44 6358 #define DMA_HISR_TEIF6_Msk (0x1U << DMA_HISR_TEIF6_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 6359 #define DMA_HISR_TEIF6 DMA_HISR_TEIF6_Msk
lypinator 0:bb348c97df44 6360 #define DMA_HISR_DMEIF6_Pos (18U)
lypinator 0:bb348c97df44 6361 #define DMA_HISR_DMEIF6_Msk (0x1U << DMA_HISR_DMEIF6_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 6362 #define DMA_HISR_DMEIF6 DMA_HISR_DMEIF6_Msk
lypinator 0:bb348c97df44 6363 #define DMA_HISR_FEIF6_Pos (16U)
lypinator 0:bb348c97df44 6364 #define DMA_HISR_FEIF6_Msk (0x1U << DMA_HISR_FEIF6_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 6365 #define DMA_HISR_FEIF6 DMA_HISR_FEIF6_Msk
lypinator 0:bb348c97df44 6366 #define DMA_HISR_TCIF5_Pos (11U)
lypinator 0:bb348c97df44 6367 #define DMA_HISR_TCIF5_Msk (0x1U << DMA_HISR_TCIF5_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 6368 #define DMA_HISR_TCIF5 DMA_HISR_TCIF5_Msk
lypinator 0:bb348c97df44 6369 #define DMA_HISR_HTIF5_Pos (10U)
lypinator 0:bb348c97df44 6370 #define DMA_HISR_HTIF5_Msk (0x1U << DMA_HISR_HTIF5_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 6371 #define DMA_HISR_HTIF5 DMA_HISR_HTIF5_Msk
lypinator 0:bb348c97df44 6372 #define DMA_HISR_TEIF5_Pos (9U)
lypinator 0:bb348c97df44 6373 #define DMA_HISR_TEIF5_Msk (0x1U << DMA_HISR_TEIF5_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 6374 #define DMA_HISR_TEIF5 DMA_HISR_TEIF5_Msk
lypinator 0:bb348c97df44 6375 #define DMA_HISR_DMEIF5_Pos (8U)
lypinator 0:bb348c97df44 6376 #define DMA_HISR_DMEIF5_Msk (0x1U << DMA_HISR_DMEIF5_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 6377 #define DMA_HISR_DMEIF5 DMA_HISR_DMEIF5_Msk
lypinator 0:bb348c97df44 6378 #define DMA_HISR_FEIF5_Pos (6U)
lypinator 0:bb348c97df44 6379 #define DMA_HISR_FEIF5_Msk (0x1U << DMA_HISR_FEIF5_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 6380 #define DMA_HISR_FEIF5 DMA_HISR_FEIF5_Msk
lypinator 0:bb348c97df44 6381 #define DMA_HISR_TCIF4_Pos (5U)
lypinator 0:bb348c97df44 6382 #define DMA_HISR_TCIF4_Msk (0x1U << DMA_HISR_TCIF4_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 6383 #define DMA_HISR_TCIF4 DMA_HISR_TCIF4_Msk
lypinator 0:bb348c97df44 6384 #define DMA_HISR_HTIF4_Pos (4U)
lypinator 0:bb348c97df44 6385 #define DMA_HISR_HTIF4_Msk (0x1U << DMA_HISR_HTIF4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 6386 #define DMA_HISR_HTIF4 DMA_HISR_HTIF4_Msk
lypinator 0:bb348c97df44 6387 #define DMA_HISR_TEIF4_Pos (3U)
lypinator 0:bb348c97df44 6388 #define DMA_HISR_TEIF4_Msk (0x1U << DMA_HISR_TEIF4_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 6389 #define DMA_HISR_TEIF4 DMA_HISR_TEIF4_Msk
lypinator 0:bb348c97df44 6390 #define DMA_HISR_DMEIF4_Pos (2U)
lypinator 0:bb348c97df44 6391 #define DMA_HISR_DMEIF4_Msk (0x1U << DMA_HISR_DMEIF4_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 6392 #define DMA_HISR_DMEIF4 DMA_HISR_DMEIF4_Msk
lypinator 0:bb348c97df44 6393 #define DMA_HISR_FEIF4_Pos (0U)
lypinator 0:bb348c97df44 6394 #define DMA_HISR_FEIF4_Msk (0x1U << DMA_HISR_FEIF4_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 6395 #define DMA_HISR_FEIF4 DMA_HISR_FEIF4_Msk
lypinator 0:bb348c97df44 6396
lypinator 0:bb348c97df44 6397 /******************** Bits definition for DMA_LIFCR register ****************/
lypinator 0:bb348c97df44 6398 #define DMA_LIFCR_CTCIF3_Pos (27U)
lypinator 0:bb348c97df44 6399 #define DMA_LIFCR_CTCIF3_Msk (0x1U << DMA_LIFCR_CTCIF3_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 6400 #define DMA_LIFCR_CTCIF3 DMA_LIFCR_CTCIF3_Msk
lypinator 0:bb348c97df44 6401 #define DMA_LIFCR_CHTIF3_Pos (26U)
lypinator 0:bb348c97df44 6402 #define DMA_LIFCR_CHTIF3_Msk (0x1U << DMA_LIFCR_CHTIF3_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 6403 #define DMA_LIFCR_CHTIF3 DMA_LIFCR_CHTIF3_Msk
lypinator 0:bb348c97df44 6404 #define DMA_LIFCR_CTEIF3_Pos (25U)
lypinator 0:bb348c97df44 6405 #define DMA_LIFCR_CTEIF3_Msk (0x1U << DMA_LIFCR_CTEIF3_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 6406 #define DMA_LIFCR_CTEIF3 DMA_LIFCR_CTEIF3_Msk
lypinator 0:bb348c97df44 6407 #define DMA_LIFCR_CDMEIF3_Pos (24U)
lypinator 0:bb348c97df44 6408 #define DMA_LIFCR_CDMEIF3_Msk (0x1U << DMA_LIFCR_CDMEIF3_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 6409 #define DMA_LIFCR_CDMEIF3 DMA_LIFCR_CDMEIF3_Msk
lypinator 0:bb348c97df44 6410 #define DMA_LIFCR_CFEIF3_Pos (22U)
lypinator 0:bb348c97df44 6411 #define DMA_LIFCR_CFEIF3_Msk (0x1U << DMA_LIFCR_CFEIF3_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 6412 #define DMA_LIFCR_CFEIF3 DMA_LIFCR_CFEIF3_Msk
lypinator 0:bb348c97df44 6413 #define DMA_LIFCR_CTCIF2_Pos (21U)
lypinator 0:bb348c97df44 6414 #define DMA_LIFCR_CTCIF2_Msk (0x1U << DMA_LIFCR_CTCIF2_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 6415 #define DMA_LIFCR_CTCIF2 DMA_LIFCR_CTCIF2_Msk
lypinator 0:bb348c97df44 6416 #define DMA_LIFCR_CHTIF2_Pos (20U)
lypinator 0:bb348c97df44 6417 #define DMA_LIFCR_CHTIF2_Msk (0x1U << DMA_LIFCR_CHTIF2_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 6418 #define DMA_LIFCR_CHTIF2 DMA_LIFCR_CHTIF2_Msk
lypinator 0:bb348c97df44 6419 #define DMA_LIFCR_CTEIF2_Pos (19U)
lypinator 0:bb348c97df44 6420 #define DMA_LIFCR_CTEIF2_Msk (0x1U << DMA_LIFCR_CTEIF2_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 6421 #define DMA_LIFCR_CTEIF2 DMA_LIFCR_CTEIF2_Msk
lypinator 0:bb348c97df44 6422 #define DMA_LIFCR_CDMEIF2_Pos (18U)
lypinator 0:bb348c97df44 6423 #define DMA_LIFCR_CDMEIF2_Msk (0x1U << DMA_LIFCR_CDMEIF2_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 6424 #define DMA_LIFCR_CDMEIF2 DMA_LIFCR_CDMEIF2_Msk
lypinator 0:bb348c97df44 6425 #define DMA_LIFCR_CFEIF2_Pos (16U)
lypinator 0:bb348c97df44 6426 #define DMA_LIFCR_CFEIF2_Msk (0x1U << DMA_LIFCR_CFEIF2_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 6427 #define DMA_LIFCR_CFEIF2 DMA_LIFCR_CFEIF2_Msk
lypinator 0:bb348c97df44 6428 #define DMA_LIFCR_CTCIF1_Pos (11U)
lypinator 0:bb348c97df44 6429 #define DMA_LIFCR_CTCIF1_Msk (0x1U << DMA_LIFCR_CTCIF1_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 6430 #define DMA_LIFCR_CTCIF1 DMA_LIFCR_CTCIF1_Msk
lypinator 0:bb348c97df44 6431 #define DMA_LIFCR_CHTIF1_Pos (10U)
lypinator 0:bb348c97df44 6432 #define DMA_LIFCR_CHTIF1_Msk (0x1U << DMA_LIFCR_CHTIF1_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 6433 #define DMA_LIFCR_CHTIF1 DMA_LIFCR_CHTIF1_Msk
lypinator 0:bb348c97df44 6434 #define DMA_LIFCR_CTEIF1_Pos (9U)
lypinator 0:bb348c97df44 6435 #define DMA_LIFCR_CTEIF1_Msk (0x1U << DMA_LIFCR_CTEIF1_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 6436 #define DMA_LIFCR_CTEIF1 DMA_LIFCR_CTEIF1_Msk
lypinator 0:bb348c97df44 6437 #define DMA_LIFCR_CDMEIF1_Pos (8U)
lypinator 0:bb348c97df44 6438 #define DMA_LIFCR_CDMEIF1_Msk (0x1U << DMA_LIFCR_CDMEIF1_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 6439 #define DMA_LIFCR_CDMEIF1 DMA_LIFCR_CDMEIF1_Msk
lypinator 0:bb348c97df44 6440 #define DMA_LIFCR_CFEIF1_Pos (6U)
lypinator 0:bb348c97df44 6441 #define DMA_LIFCR_CFEIF1_Msk (0x1U << DMA_LIFCR_CFEIF1_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 6442 #define DMA_LIFCR_CFEIF1 DMA_LIFCR_CFEIF1_Msk
lypinator 0:bb348c97df44 6443 #define DMA_LIFCR_CTCIF0_Pos (5U)
lypinator 0:bb348c97df44 6444 #define DMA_LIFCR_CTCIF0_Msk (0x1U << DMA_LIFCR_CTCIF0_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 6445 #define DMA_LIFCR_CTCIF0 DMA_LIFCR_CTCIF0_Msk
lypinator 0:bb348c97df44 6446 #define DMA_LIFCR_CHTIF0_Pos (4U)
lypinator 0:bb348c97df44 6447 #define DMA_LIFCR_CHTIF0_Msk (0x1U << DMA_LIFCR_CHTIF0_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 6448 #define DMA_LIFCR_CHTIF0 DMA_LIFCR_CHTIF0_Msk
lypinator 0:bb348c97df44 6449 #define DMA_LIFCR_CTEIF0_Pos (3U)
lypinator 0:bb348c97df44 6450 #define DMA_LIFCR_CTEIF0_Msk (0x1U << DMA_LIFCR_CTEIF0_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 6451 #define DMA_LIFCR_CTEIF0 DMA_LIFCR_CTEIF0_Msk
lypinator 0:bb348c97df44 6452 #define DMA_LIFCR_CDMEIF0_Pos (2U)
lypinator 0:bb348c97df44 6453 #define DMA_LIFCR_CDMEIF0_Msk (0x1U << DMA_LIFCR_CDMEIF0_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 6454 #define DMA_LIFCR_CDMEIF0 DMA_LIFCR_CDMEIF0_Msk
lypinator 0:bb348c97df44 6455 #define DMA_LIFCR_CFEIF0_Pos (0U)
lypinator 0:bb348c97df44 6456 #define DMA_LIFCR_CFEIF0_Msk (0x1U << DMA_LIFCR_CFEIF0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 6457 #define DMA_LIFCR_CFEIF0 DMA_LIFCR_CFEIF0_Msk
lypinator 0:bb348c97df44 6458
lypinator 0:bb348c97df44 6459 /******************** Bits definition for DMA_HIFCR register ****************/
lypinator 0:bb348c97df44 6460 #define DMA_HIFCR_CTCIF7_Pos (27U)
lypinator 0:bb348c97df44 6461 #define DMA_HIFCR_CTCIF7_Msk (0x1U << DMA_HIFCR_CTCIF7_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 6462 #define DMA_HIFCR_CTCIF7 DMA_HIFCR_CTCIF7_Msk
lypinator 0:bb348c97df44 6463 #define DMA_HIFCR_CHTIF7_Pos (26U)
lypinator 0:bb348c97df44 6464 #define DMA_HIFCR_CHTIF7_Msk (0x1U << DMA_HIFCR_CHTIF7_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 6465 #define DMA_HIFCR_CHTIF7 DMA_HIFCR_CHTIF7_Msk
lypinator 0:bb348c97df44 6466 #define DMA_HIFCR_CTEIF7_Pos (25U)
lypinator 0:bb348c97df44 6467 #define DMA_HIFCR_CTEIF7_Msk (0x1U << DMA_HIFCR_CTEIF7_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 6468 #define DMA_HIFCR_CTEIF7 DMA_HIFCR_CTEIF7_Msk
lypinator 0:bb348c97df44 6469 #define DMA_HIFCR_CDMEIF7_Pos (24U)
lypinator 0:bb348c97df44 6470 #define DMA_HIFCR_CDMEIF7_Msk (0x1U << DMA_HIFCR_CDMEIF7_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 6471 #define DMA_HIFCR_CDMEIF7 DMA_HIFCR_CDMEIF7_Msk
lypinator 0:bb348c97df44 6472 #define DMA_HIFCR_CFEIF7_Pos (22U)
lypinator 0:bb348c97df44 6473 #define DMA_HIFCR_CFEIF7_Msk (0x1U << DMA_HIFCR_CFEIF7_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 6474 #define DMA_HIFCR_CFEIF7 DMA_HIFCR_CFEIF7_Msk
lypinator 0:bb348c97df44 6475 #define DMA_HIFCR_CTCIF6_Pos (21U)
lypinator 0:bb348c97df44 6476 #define DMA_HIFCR_CTCIF6_Msk (0x1U << DMA_HIFCR_CTCIF6_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 6477 #define DMA_HIFCR_CTCIF6 DMA_HIFCR_CTCIF6_Msk
lypinator 0:bb348c97df44 6478 #define DMA_HIFCR_CHTIF6_Pos (20U)
lypinator 0:bb348c97df44 6479 #define DMA_HIFCR_CHTIF6_Msk (0x1U << DMA_HIFCR_CHTIF6_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 6480 #define DMA_HIFCR_CHTIF6 DMA_HIFCR_CHTIF6_Msk
lypinator 0:bb348c97df44 6481 #define DMA_HIFCR_CTEIF6_Pos (19U)
lypinator 0:bb348c97df44 6482 #define DMA_HIFCR_CTEIF6_Msk (0x1U << DMA_HIFCR_CTEIF6_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 6483 #define DMA_HIFCR_CTEIF6 DMA_HIFCR_CTEIF6_Msk
lypinator 0:bb348c97df44 6484 #define DMA_HIFCR_CDMEIF6_Pos (18U)
lypinator 0:bb348c97df44 6485 #define DMA_HIFCR_CDMEIF6_Msk (0x1U << DMA_HIFCR_CDMEIF6_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 6486 #define DMA_HIFCR_CDMEIF6 DMA_HIFCR_CDMEIF6_Msk
lypinator 0:bb348c97df44 6487 #define DMA_HIFCR_CFEIF6_Pos (16U)
lypinator 0:bb348c97df44 6488 #define DMA_HIFCR_CFEIF6_Msk (0x1U << DMA_HIFCR_CFEIF6_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 6489 #define DMA_HIFCR_CFEIF6 DMA_HIFCR_CFEIF6_Msk
lypinator 0:bb348c97df44 6490 #define DMA_HIFCR_CTCIF5_Pos (11U)
lypinator 0:bb348c97df44 6491 #define DMA_HIFCR_CTCIF5_Msk (0x1U << DMA_HIFCR_CTCIF5_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 6492 #define DMA_HIFCR_CTCIF5 DMA_HIFCR_CTCIF5_Msk
lypinator 0:bb348c97df44 6493 #define DMA_HIFCR_CHTIF5_Pos (10U)
lypinator 0:bb348c97df44 6494 #define DMA_HIFCR_CHTIF5_Msk (0x1U << DMA_HIFCR_CHTIF5_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 6495 #define DMA_HIFCR_CHTIF5 DMA_HIFCR_CHTIF5_Msk
lypinator 0:bb348c97df44 6496 #define DMA_HIFCR_CTEIF5_Pos (9U)
lypinator 0:bb348c97df44 6497 #define DMA_HIFCR_CTEIF5_Msk (0x1U << DMA_HIFCR_CTEIF5_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 6498 #define DMA_HIFCR_CTEIF5 DMA_HIFCR_CTEIF5_Msk
lypinator 0:bb348c97df44 6499 #define DMA_HIFCR_CDMEIF5_Pos (8U)
lypinator 0:bb348c97df44 6500 #define DMA_HIFCR_CDMEIF5_Msk (0x1U << DMA_HIFCR_CDMEIF5_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 6501 #define DMA_HIFCR_CDMEIF5 DMA_HIFCR_CDMEIF5_Msk
lypinator 0:bb348c97df44 6502 #define DMA_HIFCR_CFEIF5_Pos (6U)
lypinator 0:bb348c97df44 6503 #define DMA_HIFCR_CFEIF5_Msk (0x1U << DMA_HIFCR_CFEIF5_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 6504 #define DMA_HIFCR_CFEIF5 DMA_HIFCR_CFEIF5_Msk
lypinator 0:bb348c97df44 6505 #define DMA_HIFCR_CTCIF4_Pos (5U)
lypinator 0:bb348c97df44 6506 #define DMA_HIFCR_CTCIF4_Msk (0x1U << DMA_HIFCR_CTCIF4_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 6507 #define DMA_HIFCR_CTCIF4 DMA_HIFCR_CTCIF4_Msk
lypinator 0:bb348c97df44 6508 #define DMA_HIFCR_CHTIF4_Pos (4U)
lypinator 0:bb348c97df44 6509 #define DMA_HIFCR_CHTIF4_Msk (0x1U << DMA_HIFCR_CHTIF4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 6510 #define DMA_HIFCR_CHTIF4 DMA_HIFCR_CHTIF4_Msk
lypinator 0:bb348c97df44 6511 #define DMA_HIFCR_CTEIF4_Pos (3U)
lypinator 0:bb348c97df44 6512 #define DMA_HIFCR_CTEIF4_Msk (0x1U << DMA_HIFCR_CTEIF4_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 6513 #define DMA_HIFCR_CTEIF4 DMA_HIFCR_CTEIF4_Msk
lypinator 0:bb348c97df44 6514 #define DMA_HIFCR_CDMEIF4_Pos (2U)
lypinator 0:bb348c97df44 6515 #define DMA_HIFCR_CDMEIF4_Msk (0x1U << DMA_HIFCR_CDMEIF4_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 6516 #define DMA_HIFCR_CDMEIF4 DMA_HIFCR_CDMEIF4_Msk
lypinator 0:bb348c97df44 6517 #define DMA_HIFCR_CFEIF4_Pos (0U)
lypinator 0:bb348c97df44 6518 #define DMA_HIFCR_CFEIF4_Msk (0x1U << DMA_HIFCR_CFEIF4_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 6519 #define DMA_HIFCR_CFEIF4 DMA_HIFCR_CFEIF4_Msk
lypinator 0:bb348c97df44 6520
lypinator 0:bb348c97df44 6521 /****************** Bit definition for DMA_SxPAR register ********************/
lypinator 0:bb348c97df44 6522 #define DMA_SxPAR_PA_Pos (0U)
lypinator 0:bb348c97df44 6523 #define DMA_SxPAR_PA_Msk (0xFFFFFFFFU << DMA_SxPAR_PA_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 6524 #define DMA_SxPAR_PA DMA_SxPAR_PA_Msk /*!< Peripheral Address */
lypinator 0:bb348c97df44 6525
lypinator 0:bb348c97df44 6526 /****************** Bit definition for DMA_SxM0AR register ********************/
lypinator 0:bb348c97df44 6527 #define DMA_SxM0AR_M0A_Pos (0U)
lypinator 0:bb348c97df44 6528 #define DMA_SxM0AR_M0A_Msk (0xFFFFFFFFU << DMA_SxM0AR_M0A_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 6529 #define DMA_SxM0AR_M0A DMA_SxM0AR_M0A_Msk /*!< Memory Address */
lypinator 0:bb348c97df44 6530
lypinator 0:bb348c97df44 6531 /****************** Bit definition for DMA_SxM1AR register ********************/
lypinator 0:bb348c97df44 6532 #define DMA_SxM1AR_M1A_Pos (0U)
lypinator 0:bb348c97df44 6533 #define DMA_SxM1AR_M1A_Msk (0xFFFFFFFFU << DMA_SxM1AR_M1A_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 6534 #define DMA_SxM1AR_M1A DMA_SxM1AR_M1A_Msk /*!< Memory Address */
lypinator 0:bb348c97df44 6535
lypinator 0:bb348c97df44 6536
lypinator 0:bb348c97df44 6537 /******************************************************************************/
lypinator 0:bb348c97df44 6538 /* */
lypinator 0:bb348c97df44 6539 /* AHB Master DMA2D Controller (DMA2D) */
lypinator 0:bb348c97df44 6540 /* */
lypinator 0:bb348c97df44 6541 /******************************************************************************/
lypinator 0:bb348c97df44 6542
lypinator 0:bb348c97df44 6543 /******************** Bit definition for DMA2D_CR register ******************/
lypinator 0:bb348c97df44 6544
lypinator 0:bb348c97df44 6545 #define DMA2D_CR_START_Pos (0U)
lypinator 0:bb348c97df44 6546 #define DMA2D_CR_START_Msk (0x1U << DMA2D_CR_START_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 6547 #define DMA2D_CR_START DMA2D_CR_START_Msk /*!< Start transfer */
lypinator 0:bb348c97df44 6548 #define DMA2D_CR_SUSP_Pos (1U)
lypinator 0:bb348c97df44 6549 #define DMA2D_CR_SUSP_Msk (0x1U << DMA2D_CR_SUSP_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 6550 #define DMA2D_CR_SUSP DMA2D_CR_SUSP_Msk /*!< Suspend transfer */
lypinator 0:bb348c97df44 6551 #define DMA2D_CR_ABORT_Pos (2U)
lypinator 0:bb348c97df44 6552 #define DMA2D_CR_ABORT_Msk (0x1U << DMA2D_CR_ABORT_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 6553 #define DMA2D_CR_ABORT DMA2D_CR_ABORT_Msk /*!< Abort transfer */
lypinator 0:bb348c97df44 6554 #define DMA2D_CR_TEIE_Pos (8U)
lypinator 0:bb348c97df44 6555 #define DMA2D_CR_TEIE_Msk (0x1U << DMA2D_CR_TEIE_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 6556 #define DMA2D_CR_TEIE DMA2D_CR_TEIE_Msk /*!< Transfer Error Interrupt Enable */
lypinator 0:bb348c97df44 6557 #define DMA2D_CR_TCIE_Pos (9U)
lypinator 0:bb348c97df44 6558 #define DMA2D_CR_TCIE_Msk (0x1U << DMA2D_CR_TCIE_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 6559 #define DMA2D_CR_TCIE DMA2D_CR_TCIE_Msk /*!< Transfer Complete Interrupt Enable */
lypinator 0:bb348c97df44 6560 #define DMA2D_CR_TWIE_Pos (10U)
lypinator 0:bb348c97df44 6561 #define DMA2D_CR_TWIE_Msk (0x1U << DMA2D_CR_TWIE_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 6562 #define DMA2D_CR_TWIE DMA2D_CR_TWIE_Msk /*!< Transfer Watermark Interrupt Enable */
lypinator 0:bb348c97df44 6563 #define DMA2D_CR_CAEIE_Pos (11U)
lypinator 0:bb348c97df44 6564 #define DMA2D_CR_CAEIE_Msk (0x1U << DMA2D_CR_CAEIE_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 6565 #define DMA2D_CR_CAEIE DMA2D_CR_CAEIE_Msk /*!< CLUT Access Error Interrupt Enable */
lypinator 0:bb348c97df44 6566 #define DMA2D_CR_CTCIE_Pos (12U)
lypinator 0:bb348c97df44 6567 #define DMA2D_CR_CTCIE_Msk (0x1U << DMA2D_CR_CTCIE_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 6568 #define DMA2D_CR_CTCIE DMA2D_CR_CTCIE_Msk /*!< CLUT Transfer Complete Interrupt Enable */
lypinator 0:bb348c97df44 6569 #define DMA2D_CR_CEIE_Pos (13U)
lypinator 0:bb348c97df44 6570 #define DMA2D_CR_CEIE_Msk (0x1U << DMA2D_CR_CEIE_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 6571 #define DMA2D_CR_CEIE DMA2D_CR_CEIE_Msk /*!< Configuration Error Interrupt Enable */
lypinator 0:bb348c97df44 6572 #define DMA2D_CR_MODE_Pos (16U)
lypinator 0:bb348c97df44 6573 #define DMA2D_CR_MODE_Msk (0x3U << DMA2D_CR_MODE_Pos) /*!< 0x00030000 */
lypinator 0:bb348c97df44 6574 #define DMA2D_CR_MODE DMA2D_CR_MODE_Msk /*!< DMA2D Mode[1:0] */
lypinator 0:bb348c97df44 6575 #define DMA2D_CR_MODE_0 (0x1U << DMA2D_CR_MODE_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 6576 #define DMA2D_CR_MODE_1 (0x2U << DMA2D_CR_MODE_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 6577
lypinator 0:bb348c97df44 6578 /******************** Bit definition for DMA2D_ISR register *****************/
lypinator 0:bb348c97df44 6579
lypinator 0:bb348c97df44 6580 #define DMA2D_ISR_TEIF_Pos (0U)
lypinator 0:bb348c97df44 6581 #define DMA2D_ISR_TEIF_Msk (0x1U << DMA2D_ISR_TEIF_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 6582 #define DMA2D_ISR_TEIF DMA2D_ISR_TEIF_Msk /*!< Transfer Error Interrupt Flag */
lypinator 0:bb348c97df44 6583 #define DMA2D_ISR_TCIF_Pos (1U)
lypinator 0:bb348c97df44 6584 #define DMA2D_ISR_TCIF_Msk (0x1U << DMA2D_ISR_TCIF_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 6585 #define DMA2D_ISR_TCIF DMA2D_ISR_TCIF_Msk /*!< Transfer Complete Interrupt Flag */
lypinator 0:bb348c97df44 6586 #define DMA2D_ISR_TWIF_Pos (2U)
lypinator 0:bb348c97df44 6587 #define DMA2D_ISR_TWIF_Msk (0x1U << DMA2D_ISR_TWIF_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 6588 #define DMA2D_ISR_TWIF DMA2D_ISR_TWIF_Msk /*!< Transfer Watermark Interrupt Flag */
lypinator 0:bb348c97df44 6589 #define DMA2D_ISR_CAEIF_Pos (3U)
lypinator 0:bb348c97df44 6590 #define DMA2D_ISR_CAEIF_Msk (0x1U << DMA2D_ISR_CAEIF_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 6591 #define DMA2D_ISR_CAEIF DMA2D_ISR_CAEIF_Msk /*!< CLUT Access Error Interrupt Flag */
lypinator 0:bb348c97df44 6592 #define DMA2D_ISR_CTCIF_Pos (4U)
lypinator 0:bb348c97df44 6593 #define DMA2D_ISR_CTCIF_Msk (0x1U << DMA2D_ISR_CTCIF_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 6594 #define DMA2D_ISR_CTCIF DMA2D_ISR_CTCIF_Msk /*!< CLUT Transfer Complete Interrupt Flag */
lypinator 0:bb348c97df44 6595 #define DMA2D_ISR_CEIF_Pos (5U)
lypinator 0:bb348c97df44 6596 #define DMA2D_ISR_CEIF_Msk (0x1U << DMA2D_ISR_CEIF_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 6597 #define DMA2D_ISR_CEIF DMA2D_ISR_CEIF_Msk /*!< Configuration Error Interrupt Flag */
lypinator 0:bb348c97df44 6598
lypinator 0:bb348c97df44 6599 /******************** Bit definition for DMA2D_IFCR register ****************/
lypinator 0:bb348c97df44 6600
lypinator 0:bb348c97df44 6601 #define DMA2D_IFCR_CTEIF_Pos (0U)
lypinator 0:bb348c97df44 6602 #define DMA2D_IFCR_CTEIF_Msk (0x1U << DMA2D_IFCR_CTEIF_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 6603 #define DMA2D_IFCR_CTEIF DMA2D_IFCR_CTEIF_Msk /*!< Clears Transfer Error Interrupt Flag */
lypinator 0:bb348c97df44 6604 #define DMA2D_IFCR_CTCIF_Pos (1U)
lypinator 0:bb348c97df44 6605 #define DMA2D_IFCR_CTCIF_Msk (0x1U << DMA2D_IFCR_CTCIF_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 6606 #define DMA2D_IFCR_CTCIF DMA2D_IFCR_CTCIF_Msk /*!< Clears Transfer Complete Interrupt Flag */
lypinator 0:bb348c97df44 6607 #define DMA2D_IFCR_CTWIF_Pos (2U)
lypinator 0:bb348c97df44 6608 #define DMA2D_IFCR_CTWIF_Msk (0x1U << DMA2D_IFCR_CTWIF_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 6609 #define DMA2D_IFCR_CTWIF DMA2D_IFCR_CTWIF_Msk /*!< Clears Transfer Watermark Interrupt Flag */
lypinator 0:bb348c97df44 6610 #define DMA2D_IFCR_CAECIF_Pos (3U)
lypinator 0:bb348c97df44 6611 #define DMA2D_IFCR_CAECIF_Msk (0x1U << DMA2D_IFCR_CAECIF_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 6612 #define DMA2D_IFCR_CAECIF DMA2D_IFCR_CAECIF_Msk /*!< Clears CLUT Access Error Interrupt Flag */
lypinator 0:bb348c97df44 6613 #define DMA2D_IFCR_CCTCIF_Pos (4U)
lypinator 0:bb348c97df44 6614 #define DMA2D_IFCR_CCTCIF_Msk (0x1U << DMA2D_IFCR_CCTCIF_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 6615 #define DMA2D_IFCR_CCTCIF DMA2D_IFCR_CCTCIF_Msk /*!< Clears CLUT Transfer Complete Interrupt Flag */
lypinator 0:bb348c97df44 6616 #define DMA2D_IFCR_CCEIF_Pos (5U)
lypinator 0:bb348c97df44 6617 #define DMA2D_IFCR_CCEIF_Msk (0x1U << DMA2D_IFCR_CCEIF_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 6618 #define DMA2D_IFCR_CCEIF DMA2D_IFCR_CCEIF_Msk /*!< Clears Configuration Error Interrupt Flag */
lypinator 0:bb348c97df44 6619
lypinator 0:bb348c97df44 6620 /* Legacy defines */
lypinator 0:bb348c97df44 6621 #define DMA2D_IFSR_CTEIF DMA2D_IFCR_CTEIF /*!< Clears Transfer Error Interrupt Flag */
lypinator 0:bb348c97df44 6622 #define DMA2D_IFSR_CTCIF DMA2D_IFCR_CTCIF /*!< Clears Transfer Complete Interrupt Flag */
lypinator 0:bb348c97df44 6623 #define DMA2D_IFSR_CTWIF DMA2D_IFCR_CTWIF /*!< Clears Transfer Watermark Interrupt Flag */
lypinator 0:bb348c97df44 6624 #define DMA2D_IFSR_CCAEIF DMA2D_IFCR_CAECIF /*!< Clears CLUT Access Error Interrupt Flag */
lypinator 0:bb348c97df44 6625 #define DMA2D_IFSR_CCTCIF DMA2D_IFCR_CCTCIF /*!< Clears CLUT Transfer Complete Interrupt Flag */
lypinator 0:bb348c97df44 6626 #define DMA2D_IFSR_CCEIF DMA2D_IFCR_CCEIF /*!< Clears Configuration Error Interrupt Flag */
lypinator 0:bb348c97df44 6627
lypinator 0:bb348c97df44 6628 /******************** Bit definition for DMA2D_FGMAR register ***************/
lypinator 0:bb348c97df44 6629
lypinator 0:bb348c97df44 6630 #define DMA2D_FGMAR_MA_Pos (0U)
lypinator 0:bb348c97df44 6631 #define DMA2D_FGMAR_MA_Msk (0xFFFFFFFFU << DMA2D_FGMAR_MA_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 6632 #define DMA2D_FGMAR_MA DMA2D_FGMAR_MA_Msk /*!< Memory Address */
lypinator 0:bb348c97df44 6633
lypinator 0:bb348c97df44 6634 /******************** Bit definition for DMA2D_FGOR register ****************/
lypinator 0:bb348c97df44 6635
lypinator 0:bb348c97df44 6636 #define DMA2D_FGOR_LO_Pos (0U)
lypinator 0:bb348c97df44 6637 #define DMA2D_FGOR_LO_Msk (0x3FFFU << DMA2D_FGOR_LO_Pos) /*!< 0x00003FFF */
lypinator 0:bb348c97df44 6638 #define DMA2D_FGOR_LO DMA2D_FGOR_LO_Msk /*!< Line Offset */
lypinator 0:bb348c97df44 6639
lypinator 0:bb348c97df44 6640 /******************** Bit definition for DMA2D_BGMAR register ***************/
lypinator 0:bb348c97df44 6641
lypinator 0:bb348c97df44 6642 #define DMA2D_BGMAR_MA_Pos (0U)
lypinator 0:bb348c97df44 6643 #define DMA2D_BGMAR_MA_Msk (0xFFFFFFFFU << DMA2D_BGMAR_MA_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 6644 #define DMA2D_BGMAR_MA DMA2D_BGMAR_MA_Msk /*!< Memory Address */
lypinator 0:bb348c97df44 6645
lypinator 0:bb348c97df44 6646 /******************** Bit definition for DMA2D_BGOR register ****************/
lypinator 0:bb348c97df44 6647
lypinator 0:bb348c97df44 6648 #define DMA2D_BGOR_LO_Pos (0U)
lypinator 0:bb348c97df44 6649 #define DMA2D_BGOR_LO_Msk (0x3FFFU << DMA2D_BGOR_LO_Pos) /*!< 0x00003FFF */
lypinator 0:bb348c97df44 6650 #define DMA2D_BGOR_LO DMA2D_BGOR_LO_Msk /*!< Line Offset */
lypinator 0:bb348c97df44 6651
lypinator 0:bb348c97df44 6652 /******************** Bit definition for DMA2D_FGPFCCR register *************/
lypinator 0:bb348c97df44 6653
lypinator 0:bb348c97df44 6654 #define DMA2D_FGPFCCR_CM_Pos (0U)
lypinator 0:bb348c97df44 6655 #define DMA2D_FGPFCCR_CM_Msk (0xFU << DMA2D_FGPFCCR_CM_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 6656 #define DMA2D_FGPFCCR_CM DMA2D_FGPFCCR_CM_Msk /*!< Input color mode CM[3:0] */
lypinator 0:bb348c97df44 6657 #define DMA2D_FGPFCCR_CM_0 (0x1U << DMA2D_FGPFCCR_CM_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 6658 #define DMA2D_FGPFCCR_CM_1 (0x2U << DMA2D_FGPFCCR_CM_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 6659 #define DMA2D_FGPFCCR_CM_2 (0x4U << DMA2D_FGPFCCR_CM_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 6660 #define DMA2D_FGPFCCR_CM_3 (0x8U << DMA2D_FGPFCCR_CM_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 6661 #define DMA2D_FGPFCCR_CCM_Pos (4U)
lypinator 0:bb348c97df44 6662 #define DMA2D_FGPFCCR_CCM_Msk (0x1U << DMA2D_FGPFCCR_CCM_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 6663 #define DMA2D_FGPFCCR_CCM DMA2D_FGPFCCR_CCM_Msk /*!< CLUT Color mode */
lypinator 0:bb348c97df44 6664 #define DMA2D_FGPFCCR_START_Pos (5U)
lypinator 0:bb348c97df44 6665 #define DMA2D_FGPFCCR_START_Msk (0x1U << DMA2D_FGPFCCR_START_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 6666 #define DMA2D_FGPFCCR_START DMA2D_FGPFCCR_START_Msk /*!< Start */
lypinator 0:bb348c97df44 6667 #define DMA2D_FGPFCCR_CS_Pos (8U)
lypinator 0:bb348c97df44 6668 #define DMA2D_FGPFCCR_CS_Msk (0xFFU << DMA2D_FGPFCCR_CS_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 6669 #define DMA2D_FGPFCCR_CS DMA2D_FGPFCCR_CS_Msk /*!< CLUT size */
lypinator 0:bb348c97df44 6670 #define DMA2D_FGPFCCR_AM_Pos (16U)
lypinator 0:bb348c97df44 6671 #define DMA2D_FGPFCCR_AM_Msk (0x3U << DMA2D_FGPFCCR_AM_Pos) /*!< 0x00030000 */
lypinator 0:bb348c97df44 6672 #define DMA2D_FGPFCCR_AM DMA2D_FGPFCCR_AM_Msk /*!< Alpha mode AM[1:0] */
lypinator 0:bb348c97df44 6673 #define DMA2D_FGPFCCR_AM_0 (0x1U << DMA2D_FGPFCCR_AM_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 6674 #define DMA2D_FGPFCCR_AM_1 (0x2U << DMA2D_FGPFCCR_AM_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 6675 #define DMA2D_FGPFCCR_ALPHA_Pos (24U)
lypinator 0:bb348c97df44 6676 #define DMA2D_FGPFCCR_ALPHA_Msk (0xFFU << DMA2D_FGPFCCR_ALPHA_Pos) /*!< 0xFF000000 */
lypinator 0:bb348c97df44 6677 #define DMA2D_FGPFCCR_ALPHA DMA2D_FGPFCCR_ALPHA_Msk /*!< Alpha value */
lypinator 0:bb348c97df44 6678
lypinator 0:bb348c97df44 6679 /******************** Bit definition for DMA2D_FGCOLR register **************/
lypinator 0:bb348c97df44 6680
lypinator 0:bb348c97df44 6681 #define DMA2D_FGCOLR_BLUE_Pos (0U)
lypinator 0:bb348c97df44 6682 #define DMA2D_FGCOLR_BLUE_Msk (0xFFU << DMA2D_FGCOLR_BLUE_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 6683 #define DMA2D_FGCOLR_BLUE DMA2D_FGCOLR_BLUE_Msk /*!< Blue Value */
lypinator 0:bb348c97df44 6684 #define DMA2D_FGCOLR_GREEN_Pos (8U)
lypinator 0:bb348c97df44 6685 #define DMA2D_FGCOLR_GREEN_Msk (0xFFU << DMA2D_FGCOLR_GREEN_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 6686 #define DMA2D_FGCOLR_GREEN DMA2D_FGCOLR_GREEN_Msk /*!< Green Value */
lypinator 0:bb348c97df44 6687 #define DMA2D_FGCOLR_RED_Pos (16U)
lypinator 0:bb348c97df44 6688 #define DMA2D_FGCOLR_RED_Msk (0xFFU << DMA2D_FGCOLR_RED_Pos) /*!< 0x00FF0000 */
lypinator 0:bb348c97df44 6689 #define DMA2D_FGCOLR_RED DMA2D_FGCOLR_RED_Msk /*!< Red Value */
lypinator 0:bb348c97df44 6690
lypinator 0:bb348c97df44 6691 /******************** Bit definition for DMA2D_BGPFCCR register *************/
lypinator 0:bb348c97df44 6692
lypinator 0:bb348c97df44 6693 #define DMA2D_BGPFCCR_CM_Pos (0U)
lypinator 0:bb348c97df44 6694 #define DMA2D_BGPFCCR_CM_Msk (0xFU << DMA2D_BGPFCCR_CM_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 6695 #define DMA2D_BGPFCCR_CM DMA2D_BGPFCCR_CM_Msk /*!< Input color mode CM[3:0] */
lypinator 0:bb348c97df44 6696 #define DMA2D_BGPFCCR_CM_0 (0x1U << DMA2D_BGPFCCR_CM_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 6697 #define DMA2D_BGPFCCR_CM_1 (0x2U << DMA2D_BGPFCCR_CM_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 6698 #define DMA2D_BGPFCCR_CM_2 (0x4U << DMA2D_BGPFCCR_CM_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 6699 #define DMA2D_BGPFCCR_CM_3 0x00000008U /*!< Input color mode CM bit 3 */
lypinator 0:bb348c97df44 6700 #define DMA2D_BGPFCCR_CCM_Pos (4U)
lypinator 0:bb348c97df44 6701 #define DMA2D_BGPFCCR_CCM_Msk (0x1U << DMA2D_BGPFCCR_CCM_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 6702 #define DMA2D_BGPFCCR_CCM DMA2D_BGPFCCR_CCM_Msk /*!< CLUT Color mode */
lypinator 0:bb348c97df44 6703 #define DMA2D_BGPFCCR_START_Pos (5U)
lypinator 0:bb348c97df44 6704 #define DMA2D_BGPFCCR_START_Msk (0x1U << DMA2D_BGPFCCR_START_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 6705 #define DMA2D_BGPFCCR_START DMA2D_BGPFCCR_START_Msk /*!< Start */
lypinator 0:bb348c97df44 6706 #define DMA2D_BGPFCCR_CS_Pos (8U)
lypinator 0:bb348c97df44 6707 #define DMA2D_BGPFCCR_CS_Msk (0xFFU << DMA2D_BGPFCCR_CS_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 6708 #define DMA2D_BGPFCCR_CS DMA2D_BGPFCCR_CS_Msk /*!< CLUT size */
lypinator 0:bb348c97df44 6709 #define DMA2D_BGPFCCR_AM_Pos (16U)
lypinator 0:bb348c97df44 6710 #define DMA2D_BGPFCCR_AM_Msk (0x3U << DMA2D_BGPFCCR_AM_Pos) /*!< 0x00030000 */
lypinator 0:bb348c97df44 6711 #define DMA2D_BGPFCCR_AM DMA2D_BGPFCCR_AM_Msk /*!< Alpha mode AM[1:0] */
lypinator 0:bb348c97df44 6712 #define DMA2D_BGPFCCR_AM_0 (0x1U << DMA2D_BGPFCCR_AM_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 6713 #define DMA2D_BGPFCCR_AM_1 (0x2U << DMA2D_BGPFCCR_AM_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 6714 #define DMA2D_BGPFCCR_ALPHA_Pos (24U)
lypinator 0:bb348c97df44 6715 #define DMA2D_BGPFCCR_ALPHA_Msk (0xFFU << DMA2D_BGPFCCR_ALPHA_Pos) /*!< 0xFF000000 */
lypinator 0:bb348c97df44 6716 #define DMA2D_BGPFCCR_ALPHA DMA2D_BGPFCCR_ALPHA_Msk /*!< background Input Alpha value */
lypinator 0:bb348c97df44 6717
lypinator 0:bb348c97df44 6718 /******************** Bit definition for DMA2D_BGCOLR register **************/
lypinator 0:bb348c97df44 6719
lypinator 0:bb348c97df44 6720 #define DMA2D_BGCOLR_BLUE_Pos (0U)
lypinator 0:bb348c97df44 6721 #define DMA2D_BGCOLR_BLUE_Msk (0xFFU << DMA2D_BGCOLR_BLUE_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 6722 #define DMA2D_BGCOLR_BLUE DMA2D_BGCOLR_BLUE_Msk /*!< Blue Value */
lypinator 0:bb348c97df44 6723 #define DMA2D_BGCOLR_GREEN_Pos (8U)
lypinator 0:bb348c97df44 6724 #define DMA2D_BGCOLR_GREEN_Msk (0xFFU << DMA2D_BGCOLR_GREEN_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 6725 #define DMA2D_BGCOLR_GREEN DMA2D_BGCOLR_GREEN_Msk /*!< Green Value */
lypinator 0:bb348c97df44 6726 #define DMA2D_BGCOLR_RED_Pos (16U)
lypinator 0:bb348c97df44 6727 #define DMA2D_BGCOLR_RED_Msk (0xFFU << DMA2D_BGCOLR_RED_Pos) /*!< 0x00FF0000 */
lypinator 0:bb348c97df44 6728 #define DMA2D_BGCOLR_RED DMA2D_BGCOLR_RED_Msk /*!< Red Value */
lypinator 0:bb348c97df44 6729
lypinator 0:bb348c97df44 6730 /******************** Bit definition for DMA2D_FGCMAR register **************/
lypinator 0:bb348c97df44 6731
lypinator 0:bb348c97df44 6732 #define DMA2D_FGCMAR_MA_Pos (0U)
lypinator 0:bb348c97df44 6733 #define DMA2D_FGCMAR_MA_Msk (0xFFFFFFFFU << DMA2D_FGCMAR_MA_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 6734 #define DMA2D_FGCMAR_MA DMA2D_FGCMAR_MA_Msk /*!< Memory Address */
lypinator 0:bb348c97df44 6735
lypinator 0:bb348c97df44 6736 /******************** Bit definition for DMA2D_BGCMAR register **************/
lypinator 0:bb348c97df44 6737
lypinator 0:bb348c97df44 6738 #define DMA2D_BGCMAR_MA_Pos (0U)
lypinator 0:bb348c97df44 6739 #define DMA2D_BGCMAR_MA_Msk (0xFFFFFFFFU << DMA2D_BGCMAR_MA_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 6740 #define DMA2D_BGCMAR_MA DMA2D_BGCMAR_MA_Msk /*!< Memory Address */
lypinator 0:bb348c97df44 6741
lypinator 0:bb348c97df44 6742 /******************** Bit definition for DMA2D_OPFCCR register **************/
lypinator 0:bb348c97df44 6743
lypinator 0:bb348c97df44 6744 #define DMA2D_OPFCCR_CM_Pos (0U)
lypinator 0:bb348c97df44 6745 #define DMA2D_OPFCCR_CM_Msk (0x7U << DMA2D_OPFCCR_CM_Pos) /*!< 0x00000007 */
lypinator 0:bb348c97df44 6746 #define DMA2D_OPFCCR_CM DMA2D_OPFCCR_CM_Msk /*!< Color mode CM[2:0] */
lypinator 0:bb348c97df44 6747 #define DMA2D_OPFCCR_CM_0 (0x1U << DMA2D_OPFCCR_CM_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 6748 #define DMA2D_OPFCCR_CM_1 (0x2U << DMA2D_OPFCCR_CM_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 6749 #define DMA2D_OPFCCR_CM_2 (0x4U << DMA2D_OPFCCR_CM_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 6750
lypinator 0:bb348c97df44 6751 /******************** Bit definition for DMA2D_OCOLR register ***************/
lypinator 0:bb348c97df44 6752
lypinator 0:bb348c97df44 6753 /*!<Mode_ARGB8888/RGB888 */
lypinator 0:bb348c97df44 6754
lypinator 0:bb348c97df44 6755 #define DMA2D_OCOLR_BLUE_1 0x000000FFU /*!< BLUE Value */
lypinator 0:bb348c97df44 6756 #define DMA2D_OCOLR_GREEN_1 0x0000FF00U /*!< GREEN Value */
lypinator 0:bb348c97df44 6757 #define DMA2D_OCOLR_RED_1 0x00FF0000U /*!< Red Value */
lypinator 0:bb348c97df44 6758 #define DMA2D_OCOLR_ALPHA_1 0xFF000000U /*!< Alpha Channel Value */
lypinator 0:bb348c97df44 6759
lypinator 0:bb348c97df44 6760 /*!<Mode_RGB565 */
lypinator 0:bb348c97df44 6761 #define DMA2D_OCOLR_BLUE_2 0x0000001FU /*!< BLUE Value */
lypinator 0:bb348c97df44 6762 #define DMA2D_OCOLR_GREEN_2 0x000007E0U /*!< GREEN Value */
lypinator 0:bb348c97df44 6763 #define DMA2D_OCOLR_RED_2 0x0000F800U /*!< Red Value */
lypinator 0:bb348c97df44 6764
lypinator 0:bb348c97df44 6765 /*!<Mode_ARGB1555 */
lypinator 0:bb348c97df44 6766 #define DMA2D_OCOLR_BLUE_3 0x0000001FU /*!< BLUE Value */
lypinator 0:bb348c97df44 6767 #define DMA2D_OCOLR_GREEN_3 0x000003E0U /*!< GREEN Value */
lypinator 0:bb348c97df44 6768 #define DMA2D_OCOLR_RED_3 0x00007C00U /*!< Red Value */
lypinator 0:bb348c97df44 6769 #define DMA2D_OCOLR_ALPHA_3 0x00008000U /*!< Alpha Channel Value */
lypinator 0:bb348c97df44 6770
lypinator 0:bb348c97df44 6771 /*!<Mode_ARGB4444 */
lypinator 0:bb348c97df44 6772 #define DMA2D_OCOLR_BLUE_4 0x0000000FU /*!< BLUE Value */
lypinator 0:bb348c97df44 6773 #define DMA2D_OCOLR_GREEN_4 0x000000F0U /*!< GREEN Value */
lypinator 0:bb348c97df44 6774 #define DMA2D_OCOLR_RED_4 0x00000F00U /*!< Red Value */
lypinator 0:bb348c97df44 6775 #define DMA2D_OCOLR_ALPHA_4 0x0000F000U /*!< Alpha Channel Value */
lypinator 0:bb348c97df44 6776
lypinator 0:bb348c97df44 6777 /******************** Bit definition for DMA2D_OMAR register ****************/
lypinator 0:bb348c97df44 6778
lypinator 0:bb348c97df44 6779 #define DMA2D_OMAR_MA_Pos (0U)
lypinator 0:bb348c97df44 6780 #define DMA2D_OMAR_MA_Msk (0xFFFFFFFFU << DMA2D_OMAR_MA_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 6781 #define DMA2D_OMAR_MA DMA2D_OMAR_MA_Msk /*!< Memory Address */
lypinator 0:bb348c97df44 6782
lypinator 0:bb348c97df44 6783 /******************** Bit definition for DMA2D_OOR register *****************/
lypinator 0:bb348c97df44 6784
lypinator 0:bb348c97df44 6785 #define DMA2D_OOR_LO_Pos (0U)
lypinator 0:bb348c97df44 6786 #define DMA2D_OOR_LO_Msk (0x3FFFU << DMA2D_OOR_LO_Pos) /*!< 0x00003FFF */
lypinator 0:bb348c97df44 6787 #define DMA2D_OOR_LO DMA2D_OOR_LO_Msk /*!< Line Offset */
lypinator 0:bb348c97df44 6788
lypinator 0:bb348c97df44 6789 /******************** Bit definition for DMA2D_NLR register *****************/
lypinator 0:bb348c97df44 6790
lypinator 0:bb348c97df44 6791 #define DMA2D_NLR_NL_Pos (0U)
lypinator 0:bb348c97df44 6792 #define DMA2D_NLR_NL_Msk (0xFFFFU << DMA2D_NLR_NL_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 6793 #define DMA2D_NLR_NL DMA2D_NLR_NL_Msk /*!< Number of Lines */
lypinator 0:bb348c97df44 6794 #define DMA2D_NLR_PL_Pos (16U)
lypinator 0:bb348c97df44 6795 #define DMA2D_NLR_PL_Msk (0x3FFFU << DMA2D_NLR_PL_Pos) /*!< 0x3FFF0000 */
lypinator 0:bb348c97df44 6796 #define DMA2D_NLR_PL DMA2D_NLR_PL_Msk /*!< Pixel per Lines */
lypinator 0:bb348c97df44 6797
lypinator 0:bb348c97df44 6798 /******************** Bit definition for DMA2D_LWR register *****************/
lypinator 0:bb348c97df44 6799
lypinator 0:bb348c97df44 6800 #define DMA2D_LWR_LW_Pos (0U)
lypinator 0:bb348c97df44 6801 #define DMA2D_LWR_LW_Msk (0xFFFFU << DMA2D_LWR_LW_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 6802 #define DMA2D_LWR_LW DMA2D_LWR_LW_Msk /*!< Line Watermark */
lypinator 0:bb348c97df44 6803
lypinator 0:bb348c97df44 6804 /******************** Bit definition for DMA2D_AMTCR register ***************/
lypinator 0:bb348c97df44 6805
lypinator 0:bb348c97df44 6806 #define DMA2D_AMTCR_EN_Pos (0U)
lypinator 0:bb348c97df44 6807 #define DMA2D_AMTCR_EN_Msk (0x1U << DMA2D_AMTCR_EN_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 6808 #define DMA2D_AMTCR_EN DMA2D_AMTCR_EN_Msk /*!< Enable */
lypinator 0:bb348c97df44 6809 #define DMA2D_AMTCR_DT_Pos (8U)
lypinator 0:bb348c97df44 6810 #define DMA2D_AMTCR_DT_Msk (0xFFU << DMA2D_AMTCR_DT_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 6811 #define DMA2D_AMTCR_DT DMA2D_AMTCR_DT_Msk /*!< Dead Time */
lypinator 0:bb348c97df44 6812
lypinator 0:bb348c97df44 6813 /******************** Bit definition for DMA2D_FGCLUT register **************/
lypinator 0:bb348c97df44 6814
lypinator 0:bb348c97df44 6815 /******************** Bit definition for DMA2D_BGCLUT register **************/
lypinator 0:bb348c97df44 6816
lypinator 0:bb348c97df44 6817
lypinator 0:bb348c97df44 6818 /******************************************************************************/
lypinator 0:bb348c97df44 6819 /* */
lypinator 0:bb348c97df44 6820 /* External Interrupt/Event Controller */
lypinator 0:bb348c97df44 6821 /* */
lypinator 0:bb348c97df44 6822 /******************************************************************************/
lypinator 0:bb348c97df44 6823 /******************* Bit definition for EXTI_IMR register *******************/
lypinator 0:bb348c97df44 6824 #define EXTI_IMR_MR0_Pos (0U)
lypinator 0:bb348c97df44 6825 #define EXTI_IMR_MR0_Msk (0x1U << EXTI_IMR_MR0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 6826 #define EXTI_IMR_MR0 EXTI_IMR_MR0_Msk /*!< Interrupt Mask on line 0 */
lypinator 0:bb348c97df44 6827 #define EXTI_IMR_MR1_Pos (1U)
lypinator 0:bb348c97df44 6828 #define EXTI_IMR_MR1_Msk (0x1U << EXTI_IMR_MR1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 6829 #define EXTI_IMR_MR1 EXTI_IMR_MR1_Msk /*!< Interrupt Mask on line 1 */
lypinator 0:bb348c97df44 6830 #define EXTI_IMR_MR2_Pos (2U)
lypinator 0:bb348c97df44 6831 #define EXTI_IMR_MR2_Msk (0x1U << EXTI_IMR_MR2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 6832 #define EXTI_IMR_MR2 EXTI_IMR_MR2_Msk /*!< Interrupt Mask on line 2 */
lypinator 0:bb348c97df44 6833 #define EXTI_IMR_MR3_Pos (3U)
lypinator 0:bb348c97df44 6834 #define EXTI_IMR_MR3_Msk (0x1U << EXTI_IMR_MR3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 6835 #define EXTI_IMR_MR3 EXTI_IMR_MR3_Msk /*!< Interrupt Mask on line 3 */
lypinator 0:bb348c97df44 6836 #define EXTI_IMR_MR4_Pos (4U)
lypinator 0:bb348c97df44 6837 #define EXTI_IMR_MR4_Msk (0x1U << EXTI_IMR_MR4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 6838 #define EXTI_IMR_MR4 EXTI_IMR_MR4_Msk /*!< Interrupt Mask on line 4 */
lypinator 0:bb348c97df44 6839 #define EXTI_IMR_MR5_Pos (5U)
lypinator 0:bb348c97df44 6840 #define EXTI_IMR_MR5_Msk (0x1U << EXTI_IMR_MR5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 6841 #define EXTI_IMR_MR5 EXTI_IMR_MR5_Msk /*!< Interrupt Mask on line 5 */
lypinator 0:bb348c97df44 6842 #define EXTI_IMR_MR6_Pos (6U)
lypinator 0:bb348c97df44 6843 #define EXTI_IMR_MR6_Msk (0x1U << EXTI_IMR_MR6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 6844 #define EXTI_IMR_MR6 EXTI_IMR_MR6_Msk /*!< Interrupt Mask on line 6 */
lypinator 0:bb348c97df44 6845 #define EXTI_IMR_MR7_Pos (7U)
lypinator 0:bb348c97df44 6846 #define EXTI_IMR_MR7_Msk (0x1U << EXTI_IMR_MR7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 6847 #define EXTI_IMR_MR7 EXTI_IMR_MR7_Msk /*!< Interrupt Mask on line 7 */
lypinator 0:bb348c97df44 6848 #define EXTI_IMR_MR8_Pos (8U)
lypinator 0:bb348c97df44 6849 #define EXTI_IMR_MR8_Msk (0x1U << EXTI_IMR_MR8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 6850 #define EXTI_IMR_MR8 EXTI_IMR_MR8_Msk /*!< Interrupt Mask on line 8 */
lypinator 0:bb348c97df44 6851 #define EXTI_IMR_MR9_Pos (9U)
lypinator 0:bb348c97df44 6852 #define EXTI_IMR_MR9_Msk (0x1U << EXTI_IMR_MR9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 6853 #define EXTI_IMR_MR9 EXTI_IMR_MR9_Msk /*!< Interrupt Mask on line 9 */
lypinator 0:bb348c97df44 6854 #define EXTI_IMR_MR10_Pos (10U)
lypinator 0:bb348c97df44 6855 #define EXTI_IMR_MR10_Msk (0x1U << EXTI_IMR_MR10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 6856 #define EXTI_IMR_MR10 EXTI_IMR_MR10_Msk /*!< Interrupt Mask on line 10 */
lypinator 0:bb348c97df44 6857 #define EXTI_IMR_MR11_Pos (11U)
lypinator 0:bb348c97df44 6858 #define EXTI_IMR_MR11_Msk (0x1U << EXTI_IMR_MR11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 6859 #define EXTI_IMR_MR11 EXTI_IMR_MR11_Msk /*!< Interrupt Mask on line 11 */
lypinator 0:bb348c97df44 6860 #define EXTI_IMR_MR12_Pos (12U)
lypinator 0:bb348c97df44 6861 #define EXTI_IMR_MR12_Msk (0x1U << EXTI_IMR_MR12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 6862 #define EXTI_IMR_MR12 EXTI_IMR_MR12_Msk /*!< Interrupt Mask on line 12 */
lypinator 0:bb348c97df44 6863 #define EXTI_IMR_MR13_Pos (13U)
lypinator 0:bb348c97df44 6864 #define EXTI_IMR_MR13_Msk (0x1U << EXTI_IMR_MR13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 6865 #define EXTI_IMR_MR13 EXTI_IMR_MR13_Msk /*!< Interrupt Mask on line 13 */
lypinator 0:bb348c97df44 6866 #define EXTI_IMR_MR14_Pos (14U)
lypinator 0:bb348c97df44 6867 #define EXTI_IMR_MR14_Msk (0x1U << EXTI_IMR_MR14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 6868 #define EXTI_IMR_MR14 EXTI_IMR_MR14_Msk /*!< Interrupt Mask on line 14 */
lypinator 0:bb348c97df44 6869 #define EXTI_IMR_MR15_Pos (15U)
lypinator 0:bb348c97df44 6870 #define EXTI_IMR_MR15_Msk (0x1U << EXTI_IMR_MR15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 6871 #define EXTI_IMR_MR15 EXTI_IMR_MR15_Msk /*!< Interrupt Mask on line 15 */
lypinator 0:bb348c97df44 6872 #define EXTI_IMR_MR16_Pos (16U)
lypinator 0:bb348c97df44 6873 #define EXTI_IMR_MR16_Msk (0x1U << EXTI_IMR_MR16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 6874 #define EXTI_IMR_MR16 EXTI_IMR_MR16_Msk /*!< Interrupt Mask on line 16 */
lypinator 0:bb348c97df44 6875 #define EXTI_IMR_MR17_Pos (17U)
lypinator 0:bb348c97df44 6876 #define EXTI_IMR_MR17_Msk (0x1U << EXTI_IMR_MR17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 6877 #define EXTI_IMR_MR17 EXTI_IMR_MR17_Msk /*!< Interrupt Mask on line 17 */
lypinator 0:bb348c97df44 6878 #define EXTI_IMR_MR18_Pos (18U)
lypinator 0:bb348c97df44 6879 #define EXTI_IMR_MR18_Msk (0x1U << EXTI_IMR_MR18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 6880 #define EXTI_IMR_MR18 EXTI_IMR_MR18_Msk /*!< Interrupt Mask on line 18 */
lypinator 0:bb348c97df44 6881 #define EXTI_IMR_MR19_Pos (19U)
lypinator 0:bb348c97df44 6882 #define EXTI_IMR_MR19_Msk (0x1U << EXTI_IMR_MR19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 6883 #define EXTI_IMR_MR19 EXTI_IMR_MR19_Msk /*!< Interrupt Mask on line 19 */
lypinator 0:bb348c97df44 6884 #define EXTI_IMR_MR20_Pos (20U)
lypinator 0:bb348c97df44 6885 #define EXTI_IMR_MR20_Msk (0x1U << EXTI_IMR_MR20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 6886 #define EXTI_IMR_MR20 EXTI_IMR_MR20_Msk /*!< Interrupt Mask on line 20 */
lypinator 0:bb348c97df44 6887 #define EXTI_IMR_MR21_Pos (21U)
lypinator 0:bb348c97df44 6888 #define EXTI_IMR_MR21_Msk (0x1U << EXTI_IMR_MR21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 6889 #define EXTI_IMR_MR21 EXTI_IMR_MR21_Msk /*!< Interrupt Mask on line 21 */
lypinator 0:bb348c97df44 6890 #define EXTI_IMR_MR22_Pos (22U)
lypinator 0:bb348c97df44 6891 #define EXTI_IMR_MR22_Msk (0x1U << EXTI_IMR_MR22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 6892 #define EXTI_IMR_MR22 EXTI_IMR_MR22_Msk /*!< Interrupt Mask on line 22 */
lypinator 0:bb348c97df44 6893
lypinator 0:bb348c97df44 6894 /* Reference Defines */
lypinator 0:bb348c97df44 6895 #define EXTI_IMR_IM0 EXTI_IMR_MR0
lypinator 0:bb348c97df44 6896 #define EXTI_IMR_IM1 EXTI_IMR_MR1
lypinator 0:bb348c97df44 6897 #define EXTI_IMR_IM2 EXTI_IMR_MR2
lypinator 0:bb348c97df44 6898 #define EXTI_IMR_IM3 EXTI_IMR_MR3
lypinator 0:bb348c97df44 6899 #define EXTI_IMR_IM4 EXTI_IMR_MR4
lypinator 0:bb348c97df44 6900 #define EXTI_IMR_IM5 EXTI_IMR_MR5
lypinator 0:bb348c97df44 6901 #define EXTI_IMR_IM6 EXTI_IMR_MR6
lypinator 0:bb348c97df44 6902 #define EXTI_IMR_IM7 EXTI_IMR_MR7
lypinator 0:bb348c97df44 6903 #define EXTI_IMR_IM8 EXTI_IMR_MR8
lypinator 0:bb348c97df44 6904 #define EXTI_IMR_IM9 EXTI_IMR_MR9
lypinator 0:bb348c97df44 6905 #define EXTI_IMR_IM10 EXTI_IMR_MR10
lypinator 0:bb348c97df44 6906 #define EXTI_IMR_IM11 EXTI_IMR_MR11
lypinator 0:bb348c97df44 6907 #define EXTI_IMR_IM12 EXTI_IMR_MR12
lypinator 0:bb348c97df44 6908 #define EXTI_IMR_IM13 EXTI_IMR_MR13
lypinator 0:bb348c97df44 6909 #define EXTI_IMR_IM14 EXTI_IMR_MR14
lypinator 0:bb348c97df44 6910 #define EXTI_IMR_IM15 EXTI_IMR_MR15
lypinator 0:bb348c97df44 6911 #define EXTI_IMR_IM16 EXTI_IMR_MR16
lypinator 0:bb348c97df44 6912 #define EXTI_IMR_IM17 EXTI_IMR_MR17
lypinator 0:bb348c97df44 6913 #define EXTI_IMR_IM18 EXTI_IMR_MR18
lypinator 0:bb348c97df44 6914 #define EXTI_IMR_IM19 EXTI_IMR_MR19
lypinator 0:bb348c97df44 6915 #define EXTI_IMR_IM20 EXTI_IMR_MR20
lypinator 0:bb348c97df44 6916 #define EXTI_IMR_IM21 EXTI_IMR_MR21
lypinator 0:bb348c97df44 6917 #define EXTI_IMR_IM22 EXTI_IMR_MR22
lypinator 0:bb348c97df44 6918 #define EXTI_IMR_IM_Pos (0U)
lypinator 0:bb348c97df44 6919 #define EXTI_IMR_IM_Msk (0x7FFFFFU << EXTI_IMR_IM_Pos) /*!< 0x007FFFFF */
lypinator 0:bb348c97df44 6920 #define EXTI_IMR_IM EXTI_IMR_IM_Msk /*!< Interrupt Mask All */
lypinator 0:bb348c97df44 6921
lypinator 0:bb348c97df44 6922 /******************* Bit definition for EXTI_EMR register *******************/
lypinator 0:bb348c97df44 6923 #define EXTI_EMR_MR0_Pos (0U)
lypinator 0:bb348c97df44 6924 #define EXTI_EMR_MR0_Msk (0x1U << EXTI_EMR_MR0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 6925 #define EXTI_EMR_MR0 EXTI_EMR_MR0_Msk /*!< Event Mask on line 0 */
lypinator 0:bb348c97df44 6926 #define EXTI_EMR_MR1_Pos (1U)
lypinator 0:bb348c97df44 6927 #define EXTI_EMR_MR1_Msk (0x1U << EXTI_EMR_MR1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 6928 #define EXTI_EMR_MR1 EXTI_EMR_MR1_Msk /*!< Event Mask on line 1 */
lypinator 0:bb348c97df44 6929 #define EXTI_EMR_MR2_Pos (2U)
lypinator 0:bb348c97df44 6930 #define EXTI_EMR_MR2_Msk (0x1U << EXTI_EMR_MR2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 6931 #define EXTI_EMR_MR2 EXTI_EMR_MR2_Msk /*!< Event Mask on line 2 */
lypinator 0:bb348c97df44 6932 #define EXTI_EMR_MR3_Pos (3U)
lypinator 0:bb348c97df44 6933 #define EXTI_EMR_MR3_Msk (0x1U << EXTI_EMR_MR3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 6934 #define EXTI_EMR_MR3 EXTI_EMR_MR3_Msk /*!< Event Mask on line 3 */
lypinator 0:bb348c97df44 6935 #define EXTI_EMR_MR4_Pos (4U)
lypinator 0:bb348c97df44 6936 #define EXTI_EMR_MR4_Msk (0x1U << EXTI_EMR_MR4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 6937 #define EXTI_EMR_MR4 EXTI_EMR_MR4_Msk /*!< Event Mask on line 4 */
lypinator 0:bb348c97df44 6938 #define EXTI_EMR_MR5_Pos (5U)
lypinator 0:bb348c97df44 6939 #define EXTI_EMR_MR5_Msk (0x1U << EXTI_EMR_MR5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 6940 #define EXTI_EMR_MR5 EXTI_EMR_MR5_Msk /*!< Event Mask on line 5 */
lypinator 0:bb348c97df44 6941 #define EXTI_EMR_MR6_Pos (6U)
lypinator 0:bb348c97df44 6942 #define EXTI_EMR_MR6_Msk (0x1U << EXTI_EMR_MR6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 6943 #define EXTI_EMR_MR6 EXTI_EMR_MR6_Msk /*!< Event Mask on line 6 */
lypinator 0:bb348c97df44 6944 #define EXTI_EMR_MR7_Pos (7U)
lypinator 0:bb348c97df44 6945 #define EXTI_EMR_MR7_Msk (0x1U << EXTI_EMR_MR7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 6946 #define EXTI_EMR_MR7 EXTI_EMR_MR7_Msk /*!< Event Mask on line 7 */
lypinator 0:bb348c97df44 6947 #define EXTI_EMR_MR8_Pos (8U)
lypinator 0:bb348c97df44 6948 #define EXTI_EMR_MR8_Msk (0x1U << EXTI_EMR_MR8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 6949 #define EXTI_EMR_MR8 EXTI_EMR_MR8_Msk /*!< Event Mask on line 8 */
lypinator 0:bb348c97df44 6950 #define EXTI_EMR_MR9_Pos (9U)
lypinator 0:bb348c97df44 6951 #define EXTI_EMR_MR9_Msk (0x1U << EXTI_EMR_MR9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 6952 #define EXTI_EMR_MR9 EXTI_EMR_MR9_Msk /*!< Event Mask on line 9 */
lypinator 0:bb348c97df44 6953 #define EXTI_EMR_MR10_Pos (10U)
lypinator 0:bb348c97df44 6954 #define EXTI_EMR_MR10_Msk (0x1U << EXTI_EMR_MR10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 6955 #define EXTI_EMR_MR10 EXTI_EMR_MR10_Msk /*!< Event Mask on line 10 */
lypinator 0:bb348c97df44 6956 #define EXTI_EMR_MR11_Pos (11U)
lypinator 0:bb348c97df44 6957 #define EXTI_EMR_MR11_Msk (0x1U << EXTI_EMR_MR11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 6958 #define EXTI_EMR_MR11 EXTI_EMR_MR11_Msk /*!< Event Mask on line 11 */
lypinator 0:bb348c97df44 6959 #define EXTI_EMR_MR12_Pos (12U)
lypinator 0:bb348c97df44 6960 #define EXTI_EMR_MR12_Msk (0x1U << EXTI_EMR_MR12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 6961 #define EXTI_EMR_MR12 EXTI_EMR_MR12_Msk /*!< Event Mask on line 12 */
lypinator 0:bb348c97df44 6962 #define EXTI_EMR_MR13_Pos (13U)
lypinator 0:bb348c97df44 6963 #define EXTI_EMR_MR13_Msk (0x1U << EXTI_EMR_MR13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 6964 #define EXTI_EMR_MR13 EXTI_EMR_MR13_Msk /*!< Event Mask on line 13 */
lypinator 0:bb348c97df44 6965 #define EXTI_EMR_MR14_Pos (14U)
lypinator 0:bb348c97df44 6966 #define EXTI_EMR_MR14_Msk (0x1U << EXTI_EMR_MR14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 6967 #define EXTI_EMR_MR14 EXTI_EMR_MR14_Msk /*!< Event Mask on line 14 */
lypinator 0:bb348c97df44 6968 #define EXTI_EMR_MR15_Pos (15U)
lypinator 0:bb348c97df44 6969 #define EXTI_EMR_MR15_Msk (0x1U << EXTI_EMR_MR15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 6970 #define EXTI_EMR_MR15 EXTI_EMR_MR15_Msk /*!< Event Mask on line 15 */
lypinator 0:bb348c97df44 6971 #define EXTI_EMR_MR16_Pos (16U)
lypinator 0:bb348c97df44 6972 #define EXTI_EMR_MR16_Msk (0x1U << EXTI_EMR_MR16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 6973 #define EXTI_EMR_MR16 EXTI_EMR_MR16_Msk /*!< Event Mask on line 16 */
lypinator 0:bb348c97df44 6974 #define EXTI_EMR_MR17_Pos (17U)
lypinator 0:bb348c97df44 6975 #define EXTI_EMR_MR17_Msk (0x1U << EXTI_EMR_MR17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 6976 #define EXTI_EMR_MR17 EXTI_EMR_MR17_Msk /*!< Event Mask on line 17 */
lypinator 0:bb348c97df44 6977 #define EXTI_EMR_MR18_Pos (18U)
lypinator 0:bb348c97df44 6978 #define EXTI_EMR_MR18_Msk (0x1U << EXTI_EMR_MR18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 6979 #define EXTI_EMR_MR18 EXTI_EMR_MR18_Msk /*!< Event Mask on line 18 */
lypinator 0:bb348c97df44 6980 #define EXTI_EMR_MR19_Pos (19U)
lypinator 0:bb348c97df44 6981 #define EXTI_EMR_MR19_Msk (0x1U << EXTI_EMR_MR19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 6982 #define EXTI_EMR_MR19 EXTI_EMR_MR19_Msk /*!< Event Mask on line 19 */
lypinator 0:bb348c97df44 6983 #define EXTI_EMR_MR20_Pos (20U)
lypinator 0:bb348c97df44 6984 #define EXTI_EMR_MR20_Msk (0x1U << EXTI_EMR_MR20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 6985 #define EXTI_EMR_MR20 EXTI_EMR_MR20_Msk /*!< Event Mask on line 20 */
lypinator 0:bb348c97df44 6986 #define EXTI_EMR_MR21_Pos (21U)
lypinator 0:bb348c97df44 6987 #define EXTI_EMR_MR21_Msk (0x1U << EXTI_EMR_MR21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 6988 #define EXTI_EMR_MR21 EXTI_EMR_MR21_Msk /*!< Event Mask on line 21 */
lypinator 0:bb348c97df44 6989 #define EXTI_EMR_MR22_Pos (22U)
lypinator 0:bb348c97df44 6990 #define EXTI_EMR_MR22_Msk (0x1U << EXTI_EMR_MR22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 6991 #define EXTI_EMR_MR22 EXTI_EMR_MR22_Msk /*!< Event Mask on line 22 */
lypinator 0:bb348c97df44 6992
lypinator 0:bb348c97df44 6993 /* Reference Defines */
lypinator 0:bb348c97df44 6994 #define EXTI_EMR_EM0 EXTI_EMR_MR0
lypinator 0:bb348c97df44 6995 #define EXTI_EMR_EM1 EXTI_EMR_MR1
lypinator 0:bb348c97df44 6996 #define EXTI_EMR_EM2 EXTI_EMR_MR2
lypinator 0:bb348c97df44 6997 #define EXTI_EMR_EM3 EXTI_EMR_MR3
lypinator 0:bb348c97df44 6998 #define EXTI_EMR_EM4 EXTI_EMR_MR4
lypinator 0:bb348c97df44 6999 #define EXTI_EMR_EM5 EXTI_EMR_MR5
lypinator 0:bb348c97df44 7000 #define EXTI_EMR_EM6 EXTI_EMR_MR6
lypinator 0:bb348c97df44 7001 #define EXTI_EMR_EM7 EXTI_EMR_MR7
lypinator 0:bb348c97df44 7002 #define EXTI_EMR_EM8 EXTI_EMR_MR8
lypinator 0:bb348c97df44 7003 #define EXTI_EMR_EM9 EXTI_EMR_MR9
lypinator 0:bb348c97df44 7004 #define EXTI_EMR_EM10 EXTI_EMR_MR10
lypinator 0:bb348c97df44 7005 #define EXTI_EMR_EM11 EXTI_EMR_MR11
lypinator 0:bb348c97df44 7006 #define EXTI_EMR_EM12 EXTI_EMR_MR12
lypinator 0:bb348c97df44 7007 #define EXTI_EMR_EM13 EXTI_EMR_MR13
lypinator 0:bb348c97df44 7008 #define EXTI_EMR_EM14 EXTI_EMR_MR14
lypinator 0:bb348c97df44 7009 #define EXTI_EMR_EM15 EXTI_EMR_MR15
lypinator 0:bb348c97df44 7010 #define EXTI_EMR_EM16 EXTI_EMR_MR16
lypinator 0:bb348c97df44 7011 #define EXTI_EMR_EM17 EXTI_EMR_MR17
lypinator 0:bb348c97df44 7012 #define EXTI_EMR_EM18 EXTI_EMR_MR18
lypinator 0:bb348c97df44 7013 #define EXTI_EMR_EM19 EXTI_EMR_MR19
lypinator 0:bb348c97df44 7014 #define EXTI_EMR_EM20 EXTI_EMR_MR20
lypinator 0:bb348c97df44 7015 #define EXTI_EMR_EM21 EXTI_EMR_MR21
lypinator 0:bb348c97df44 7016 #define EXTI_EMR_EM22 EXTI_EMR_MR22
lypinator 0:bb348c97df44 7017
lypinator 0:bb348c97df44 7018 /****************** Bit definition for EXTI_RTSR register *******************/
lypinator 0:bb348c97df44 7019 #define EXTI_RTSR_TR0_Pos (0U)
lypinator 0:bb348c97df44 7020 #define EXTI_RTSR_TR0_Msk (0x1U << EXTI_RTSR_TR0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 7021 #define EXTI_RTSR_TR0 EXTI_RTSR_TR0_Msk /*!< Rising trigger event configuration bit of line 0 */
lypinator 0:bb348c97df44 7022 #define EXTI_RTSR_TR1_Pos (1U)
lypinator 0:bb348c97df44 7023 #define EXTI_RTSR_TR1_Msk (0x1U << EXTI_RTSR_TR1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 7024 #define EXTI_RTSR_TR1 EXTI_RTSR_TR1_Msk /*!< Rising trigger event configuration bit of line 1 */
lypinator 0:bb348c97df44 7025 #define EXTI_RTSR_TR2_Pos (2U)
lypinator 0:bb348c97df44 7026 #define EXTI_RTSR_TR2_Msk (0x1U << EXTI_RTSR_TR2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 7027 #define EXTI_RTSR_TR2 EXTI_RTSR_TR2_Msk /*!< Rising trigger event configuration bit of line 2 */
lypinator 0:bb348c97df44 7028 #define EXTI_RTSR_TR3_Pos (3U)
lypinator 0:bb348c97df44 7029 #define EXTI_RTSR_TR3_Msk (0x1U << EXTI_RTSR_TR3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 7030 #define EXTI_RTSR_TR3 EXTI_RTSR_TR3_Msk /*!< Rising trigger event configuration bit of line 3 */
lypinator 0:bb348c97df44 7031 #define EXTI_RTSR_TR4_Pos (4U)
lypinator 0:bb348c97df44 7032 #define EXTI_RTSR_TR4_Msk (0x1U << EXTI_RTSR_TR4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 7033 #define EXTI_RTSR_TR4 EXTI_RTSR_TR4_Msk /*!< Rising trigger event configuration bit of line 4 */
lypinator 0:bb348c97df44 7034 #define EXTI_RTSR_TR5_Pos (5U)
lypinator 0:bb348c97df44 7035 #define EXTI_RTSR_TR5_Msk (0x1U << EXTI_RTSR_TR5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 7036 #define EXTI_RTSR_TR5 EXTI_RTSR_TR5_Msk /*!< Rising trigger event configuration bit of line 5 */
lypinator 0:bb348c97df44 7037 #define EXTI_RTSR_TR6_Pos (6U)
lypinator 0:bb348c97df44 7038 #define EXTI_RTSR_TR6_Msk (0x1U << EXTI_RTSR_TR6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 7039 #define EXTI_RTSR_TR6 EXTI_RTSR_TR6_Msk /*!< Rising trigger event configuration bit of line 6 */
lypinator 0:bb348c97df44 7040 #define EXTI_RTSR_TR7_Pos (7U)
lypinator 0:bb348c97df44 7041 #define EXTI_RTSR_TR7_Msk (0x1U << EXTI_RTSR_TR7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 7042 #define EXTI_RTSR_TR7 EXTI_RTSR_TR7_Msk /*!< Rising trigger event configuration bit of line 7 */
lypinator 0:bb348c97df44 7043 #define EXTI_RTSR_TR8_Pos (8U)
lypinator 0:bb348c97df44 7044 #define EXTI_RTSR_TR8_Msk (0x1U << EXTI_RTSR_TR8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 7045 #define EXTI_RTSR_TR8 EXTI_RTSR_TR8_Msk /*!< Rising trigger event configuration bit of line 8 */
lypinator 0:bb348c97df44 7046 #define EXTI_RTSR_TR9_Pos (9U)
lypinator 0:bb348c97df44 7047 #define EXTI_RTSR_TR9_Msk (0x1U << EXTI_RTSR_TR9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 7048 #define EXTI_RTSR_TR9 EXTI_RTSR_TR9_Msk /*!< Rising trigger event configuration bit of line 9 */
lypinator 0:bb348c97df44 7049 #define EXTI_RTSR_TR10_Pos (10U)
lypinator 0:bb348c97df44 7050 #define EXTI_RTSR_TR10_Msk (0x1U << EXTI_RTSR_TR10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 7051 #define EXTI_RTSR_TR10 EXTI_RTSR_TR10_Msk /*!< Rising trigger event configuration bit of line 10 */
lypinator 0:bb348c97df44 7052 #define EXTI_RTSR_TR11_Pos (11U)
lypinator 0:bb348c97df44 7053 #define EXTI_RTSR_TR11_Msk (0x1U << EXTI_RTSR_TR11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 7054 #define EXTI_RTSR_TR11 EXTI_RTSR_TR11_Msk /*!< Rising trigger event configuration bit of line 11 */
lypinator 0:bb348c97df44 7055 #define EXTI_RTSR_TR12_Pos (12U)
lypinator 0:bb348c97df44 7056 #define EXTI_RTSR_TR12_Msk (0x1U << EXTI_RTSR_TR12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 7057 #define EXTI_RTSR_TR12 EXTI_RTSR_TR12_Msk /*!< Rising trigger event configuration bit of line 12 */
lypinator 0:bb348c97df44 7058 #define EXTI_RTSR_TR13_Pos (13U)
lypinator 0:bb348c97df44 7059 #define EXTI_RTSR_TR13_Msk (0x1U << EXTI_RTSR_TR13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 7060 #define EXTI_RTSR_TR13 EXTI_RTSR_TR13_Msk /*!< Rising trigger event configuration bit of line 13 */
lypinator 0:bb348c97df44 7061 #define EXTI_RTSR_TR14_Pos (14U)
lypinator 0:bb348c97df44 7062 #define EXTI_RTSR_TR14_Msk (0x1U << EXTI_RTSR_TR14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 7063 #define EXTI_RTSR_TR14 EXTI_RTSR_TR14_Msk /*!< Rising trigger event configuration bit of line 14 */
lypinator 0:bb348c97df44 7064 #define EXTI_RTSR_TR15_Pos (15U)
lypinator 0:bb348c97df44 7065 #define EXTI_RTSR_TR15_Msk (0x1U << EXTI_RTSR_TR15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 7066 #define EXTI_RTSR_TR15 EXTI_RTSR_TR15_Msk /*!< Rising trigger event configuration bit of line 15 */
lypinator 0:bb348c97df44 7067 #define EXTI_RTSR_TR16_Pos (16U)
lypinator 0:bb348c97df44 7068 #define EXTI_RTSR_TR16_Msk (0x1U << EXTI_RTSR_TR16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 7069 #define EXTI_RTSR_TR16 EXTI_RTSR_TR16_Msk /*!< Rising trigger event configuration bit of line 16 */
lypinator 0:bb348c97df44 7070 #define EXTI_RTSR_TR17_Pos (17U)
lypinator 0:bb348c97df44 7071 #define EXTI_RTSR_TR17_Msk (0x1U << EXTI_RTSR_TR17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 7072 #define EXTI_RTSR_TR17 EXTI_RTSR_TR17_Msk /*!< Rising trigger event configuration bit of line 17 */
lypinator 0:bb348c97df44 7073 #define EXTI_RTSR_TR18_Pos (18U)
lypinator 0:bb348c97df44 7074 #define EXTI_RTSR_TR18_Msk (0x1U << EXTI_RTSR_TR18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 7075 #define EXTI_RTSR_TR18 EXTI_RTSR_TR18_Msk /*!< Rising trigger event configuration bit of line 18 */
lypinator 0:bb348c97df44 7076 #define EXTI_RTSR_TR19_Pos (19U)
lypinator 0:bb348c97df44 7077 #define EXTI_RTSR_TR19_Msk (0x1U << EXTI_RTSR_TR19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 7078 #define EXTI_RTSR_TR19 EXTI_RTSR_TR19_Msk /*!< Rising trigger event configuration bit of line 19 */
lypinator 0:bb348c97df44 7079 #define EXTI_RTSR_TR20_Pos (20U)
lypinator 0:bb348c97df44 7080 #define EXTI_RTSR_TR20_Msk (0x1U << EXTI_RTSR_TR20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 7081 #define EXTI_RTSR_TR20 EXTI_RTSR_TR20_Msk /*!< Rising trigger event configuration bit of line 20 */
lypinator 0:bb348c97df44 7082 #define EXTI_RTSR_TR21_Pos (21U)
lypinator 0:bb348c97df44 7083 #define EXTI_RTSR_TR21_Msk (0x1U << EXTI_RTSR_TR21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 7084 #define EXTI_RTSR_TR21 EXTI_RTSR_TR21_Msk /*!< Rising trigger event configuration bit of line 21 */
lypinator 0:bb348c97df44 7085 #define EXTI_RTSR_TR22_Pos (22U)
lypinator 0:bb348c97df44 7086 #define EXTI_RTSR_TR22_Msk (0x1U << EXTI_RTSR_TR22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 7087 #define EXTI_RTSR_TR22 EXTI_RTSR_TR22_Msk /*!< Rising trigger event configuration bit of line 22 */
lypinator 0:bb348c97df44 7088
lypinator 0:bb348c97df44 7089 /****************** Bit definition for EXTI_FTSR register *******************/
lypinator 0:bb348c97df44 7090 #define EXTI_FTSR_TR0_Pos (0U)
lypinator 0:bb348c97df44 7091 #define EXTI_FTSR_TR0_Msk (0x1U << EXTI_FTSR_TR0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 7092 #define EXTI_FTSR_TR0 EXTI_FTSR_TR0_Msk /*!< Falling trigger event configuration bit of line 0 */
lypinator 0:bb348c97df44 7093 #define EXTI_FTSR_TR1_Pos (1U)
lypinator 0:bb348c97df44 7094 #define EXTI_FTSR_TR1_Msk (0x1U << EXTI_FTSR_TR1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 7095 #define EXTI_FTSR_TR1 EXTI_FTSR_TR1_Msk /*!< Falling trigger event configuration bit of line 1 */
lypinator 0:bb348c97df44 7096 #define EXTI_FTSR_TR2_Pos (2U)
lypinator 0:bb348c97df44 7097 #define EXTI_FTSR_TR2_Msk (0x1U << EXTI_FTSR_TR2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 7098 #define EXTI_FTSR_TR2 EXTI_FTSR_TR2_Msk /*!< Falling trigger event configuration bit of line 2 */
lypinator 0:bb348c97df44 7099 #define EXTI_FTSR_TR3_Pos (3U)
lypinator 0:bb348c97df44 7100 #define EXTI_FTSR_TR3_Msk (0x1U << EXTI_FTSR_TR3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 7101 #define EXTI_FTSR_TR3 EXTI_FTSR_TR3_Msk /*!< Falling trigger event configuration bit of line 3 */
lypinator 0:bb348c97df44 7102 #define EXTI_FTSR_TR4_Pos (4U)
lypinator 0:bb348c97df44 7103 #define EXTI_FTSR_TR4_Msk (0x1U << EXTI_FTSR_TR4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 7104 #define EXTI_FTSR_TR4 EXTI_FTSR_TR4_Msk /*!< Falling trigger event configuration bit of line 4 */
lypinator 0:bb348c97df44 7105 #define EXTI_FTSR_TR5_Pos (5U)
lypinator 0:bb348c97df44 7106 #define EXTI_FTSR_TR5_Msk (0x1U << EXTI_FTSR_TR5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 7107 #define EXTI_FTSR_TR5 EXTI_FTSR_TR5_Msk /*!< Falling trigger event configuration bit of line 5 */
lypinator 0:bb348c97df44 7108 #define EXTI_FTSR_TR6_Pos (6U)
lypinator 0:bb348c97df44 7109 #define EXTI_FTSR_TR6_Msk (0x1U << EXTI_FTSR_TR6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 7110 #define EXTI_FTSR_TR6 EXTI_FTSR_TR6_Msk /*!< Falling trigger event configuration bit of line 6 */
lypinator 0:bb348c97df44 7111 #define EXTI_FTSR_TR7_Pos (7U)
lypinator 0:bb348c97df44 7112 #define EXTI_FTSR_TR7_Msk (0x1U << EXTI_FTSR_TR7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 7113 #define EXTI_FTSR_TR7 EXTI_FTSR_TR7_Msk /*!< Falling trigger event configuration bit of line 7 */
lypinator 0:bb348c97df44 7114 #define EXTI_FTSR_TR8_Pos (8U)
lypinator 0:bb348c97df44 7115 #define EXTI_FTSR_TR8_Msk (0x1U << EXTI_FTSR_TR8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 7116 #define EXTI_FTSR_TR8 EXTI_FTSR_TR8_Msk /*!< Falling trigger event configuration bit of line 8 */
lypinator 0:bb348c97df44 7117 #define EXTI_FTSR_TR9_Pos (9U)
lypinator 0:bb348c97df44 7118 #define EXTI_FTSR_TR9_Msk (0x1U << EXTI_FTSR_TR9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 7119 #define EXTI_FTSR_TR9 EXTI_FTSR_TR9_Msk /*!< Falling trigger event configuration bit of line 9 */
lypinator 0:bb348c97df44 7120 #define EXTI_FTSR_TR10_Pos (10U)
lypinator 0:bb348c97df44 7121 #define EXTI_FTSR_TR10_Msk (0x1U << EXTI_FTSR_TR10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 7122 #define EXTI_FTSR_TR10 EXTI_FTSR_TR10_Msk /*!< Falling trigger event configuration bit of line 10 */
lypinator 0:bb348c97df44 7123 #define EXTI_FTSR_TR11_Pos (11U)
lypinator 0:bb348c97df44 7124 #define EXTI_FTSR_TR11_Msk (0x1U << EXTI_FTSR_TR11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 7125 #define EXTI_FTSR_TR11 EXTI_FTSR_TR11_Msk /*!< Falling trigger event configuration bit of line 11 */
lypinator 0:bb348c97df44 7126 #define EXTI_FTSR_TR12_Pos (12U)
lypinator 0:bb348c97df44 7127 #define EXTI_FTSR_TR12_Msk (0x1U << EXTI_FTSR_TR12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 7128 #define EXTI_FTSR_TR12 EXTI_FTSR_TR12_Msk /*!< Falling trigger event configuration bit of line 12 */
lypinator 0:bb348c97df44 7129 #define EXTI_FTSR_TR13_Pos (13U)
lypinator 0:bb348c97df44 7130 #define EXTI_FTSR_TR13_Msk (0x1U << EXTI_FTSR_TR13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 7131 #define EXTI_FTSR_TR13 EXTI_FTSR_TR13_Msk /*!< Falling trigger event configuration bit of line 13 */
lypinator 0:bb348c97df44 7132 #define EXTI_FTSR_TR14_Pos (14U)
lypinator 0:bb348c97df44 7133 #define EXTI_FTSR_TR14_Msk (0x1U << EXTI_FTSR_TR14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 7134 #define EXTI_FTSR_TR14 EXTI_FTSR_TR14_Msk /*!< Falling trigger event configuration bit of line 14 */
lypinator 0:bb348c97df44 7135 #define EXTI_FTSR_TR15_Pos (15U)
lypinator 0:bb348c97df44 7136 #define EXTI_FTSR_TR15_Msk (0x1U << EXTI_FTSR_TR15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 7137 #define EXTI_FTSR_TR15 EXTI_FTSR_TR15_Msk /*!< Falling trigger event configuration bit of line 15 */
lypinator 0:bb348c97df44 7138 #define EXTI_FTSR_TR16_Pos (16U)
lypinator 0:bb348c97df44 7139 #define EXTI_FTSR_TR16_Msk (0x1U << EXTI_FTSR_TR16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 7140 #define EXTI_FTSR_TR16 EXTI_FTSR_TR16_Msk /*!< Falling trigger event configuration bit of line 16 */
lypinator 0:bb348c97df44 7141 #define EXTI_FTSR_TR17_Pos (17U)
lypinator 0:bb348c97df44 7142 #define EXTI_FTSR_TR17_Msk (0x1U << EXTI_FTSR_TR17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 7143 #define EXTI_FTSR_TR17 EXTI_FTSR_TR17_Msk /*!< Falling trigger event configuration bit of line 17 */
lypinator 0:bb348c97df44 7144 #define EXTI_FTSR_TR18_Pos (18U)
lypinator 0:bb348c97df44 7145 #define EXTI_FTSR_TR18_Msk (0x1U << EXTI_FTSR_TR18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 7146 #define EXTI_FTSR_TR18 EXTI_FTSR_TR18_Msk /*!< Falling trigger event configuration bit of line 18 */
lypinator 0:bb348c97df44 7147 #define EXTI_FTSR_TR19_Pos (19U)
lypinator 0:bb348c97df44 7148 #define EXTI_FTSR_TR19_Msk (0x1U << EXTI_FTSR_TR19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 7149 #define EXTI_FTSR_TR19 EXTI_FTSR_TR19_Msk /*!< Falling trigger event configuration bit of line 19 */
lypinator 0:bb348c97df44 7150 #define EXTI_FTSR_TR20_Pos (20U)
lypinator 0:bb348c97df44 7151 #define EXTI_FTSR_TR20_Msk (0x1U << EXTI_FTSR_TR20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 7152 #define EXTI_FTSR_TR20 EXTI_FTSR_TR20_Msk /*!< Falling trigger event configuration bit of line 20 */
lypinator 0:bb348c97df44 7153 #define EXTI_FTSR_TR21_Pos (21U)
lypinator 0:bb348c97df44 7154 #define EXTI_FTSR_TR21_Msk (0x1U << EXTI_FTSR_TR21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 7155 #define EXTI_FTSR_TR21 EXTI_FTSR_TR21_Msk /*!< Falling trigger event configuration bit of line 21 */
lypinator 0:bb348c97df44 7156 #define EXTI_FTSR_TR22_Pos (22U)
lypinator 0:bb348c97df44 7157 #define EXTI_FTSR_TR22_Msk (0x1U << EXTI_FTSR_TR22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 7158 #define EXTI_FTSR_TR22 EXTI_FTSR_TR22_Msk /*!< Falling trigger event configuration bit of line 22 */
lypinator 0:bb348c97df44 7159
lypinator 0:bb348c97df44 7160 /****************** Bit definition for EXTI_SWIER register ******************/
lypinator 0:bb348c97df44 7161 #define EXTI_SWIER_SWIER0_Pos (0U)
lypinator 0:bb348c97df44 7162 #define EXTI_SWIER_SWIER0_Msk (0x1U << EXTI_SWIER_SWIER0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 7163 #define EXTI_SWIER_SWIER0 EXTI_SWIER_SWIER0_Msk /*!< Software Interrupt on line 0 */
lypinator 0:bb348c97df44 7164 #define EXTI_SWIER_SWIER1_Pos (1U)
lypinator 0:bb348c97df44 7165 #define EXTI_SWIER_SWIER1_Msk (0x1U << EXTI_SWIER_SWIER1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 7166 #define EXTI_SWIER_SWIER1 EXTI_SWIER_SWIER1_Msk /*!< Software Interrupt on line 1 */
lypinator 0:bb348c97df44 7167 #define EXTI_SWIER_SWIER2_Pos (2U)
lypinator 0:bb348c97df44 7168 #define EXTI_SWIER_SWIER2_Msk (0x1U << EXTI_SWIER_SWIER2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 7169 #define EXTI_SWIER_SWIER2 EXTI_SWIER_SWIER2_Msk /*!< Software Interrupt on line 2 */
lypinator 0:bb348c97df44 7170 #define EXTI_SWIER_SWIER3_Pos (3U)
lypinator 0:bb348c97df44 7171 #define EXTI_SWIER_SWIER3_Msk (0x1U << EXTI_SWIER_SWIER3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 7172 #define EXTI_SWIER_SWIER3 EXTI_SWIER_SWIER3_Msk /*!< Software Interrupt on line 3 */
lypinator 0:bb348c97df44 7173 #define EXTI_SWIER_SWIER4_Pos (4U)
lypinator 0:bb348c97df44 7174 #define EXTI_SWIER_SWIER4_Msk (0x1U << EXTI_SWIER_SWIER4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 7175 #define EXTI_SWIER_SWIER4 EXTI_SWIER_SWIER4_Msk /*!< Software Interrupt on line 4 */
lypinator 0:bb348c97df44 7176 #define EXTI_SWIER_SWIER5_Pos (5U)
lypinator 0:bb348c97df44 7177 #define EXTI_SWIER_SWIER5_Msk (0x1U << EXTI_SWIER_SWIER5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 7178 #define EXTI_SWIER_SWIER5 EXTI_SWIER_SWIER5_Msk /*!< Software Interrupt on line 5 */
lypinator 0:bb348c97df44 7179 #define EXTI_SWIER_SWIER6_Pos (6U)
lypinator 0:bb348c97df44 7180 #define EXTI_SWIER_SWIER6_Msk (0x1U << EXTI_SWIER_SWIER6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 7181 #define EXTI_SWIER_SWIER6 EXTI_SWIER_SWIER6_Msk /*!< Software Interrupt on line 6 */
lypinator 0:bb348c97df44 7182 #define EXTI_SWIER_SWIER7_Pos (7U)
lypinator 0:bb348c97df44 7183 #define EXTI_SWIER_SWIER7_Msk (0x1U << EXTI_SWIER_SWIER7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 7184 #define EXTI_SWIER_SWIER7 EXTI_SWIER_SWIER7_Msk /*!< Software Interrupt on line 7 */
lypinator 0:bb348c97df44 7185 #define EXTI_SWIER_SWIER8_Pos (8U)
lypinator 0:bb348c97df44 7186 #define EXTI_SWIER_SWIER8_Msk (0x1U << EXTI_SWIER_SWIER8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 7187 #define EXTI_SWIER_SWIER8 EXTI_SWIER_SWIER8_Msk /*!< Software Interrupt on line 8 */
lypinator 0:bb348c97df44 7188 #define EXTI_SWIER_SWIER9_Pos (9U)
lypinator 0:bb348c97df44 7189 #define EXTI_SWIER_SWIER9_Msk (0x1U << EXTI_SWIER_SWIER9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 7190 #define EXTI_SWIER_SWIER9 EXTI_SWIER_SWIER9_Msk /*!< Software Interrupt on line 9 */
lypinator 0:bb348c97df44 7191 #define EXTI_SWIER_SWIER10_Pos (10U)
lypinator 0:bb348c97df44 7192 #define EXTI_SWIER_SWIER10_Msk (0x1U << EXTI_SWIER_SWIER10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 7193 #define EXTI_SWIER_SWIER10 EXTI_SWIER_SWIER10_Msk /*!< Software Interrupt on line 10 */
lypinator 0:bb348c97df44 7194 #define EXTI_SWIER_SWIER11_Pos (11U)
lypinator 0:bb348c97df44 7195 #define EXTI_SWIER_SWIER11_Msk (0x1U << EXTI_SWIER_SWIER11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 7196 #define EXTI_SWIER_SWIER11 EXTI_SWIER_SWIER11_Msk /*!< Software Interrupt on line 11 */
lypinator 0:bb348c97df44 7197 #define EXTI_SWIER_SWIER12_Pos (12U)
lypinator 0:bb348c97df44 7198 #define EXTI_SWIER_SWIER12_Msk (0x1U << EXTI_SWIER_SWIER12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 7199 #define EXTI_SWIER_SWIER12 EXTI_SWIER_SWIER12_Msk /*!< Software Interrupt on line 12 */
lypinator 0:bb348c97df44 7200 #define EXTI_SWIER_SWIER13_Pos (13U)
lypinator 0:bb348c97df44 7201 #define EXTI_SWIER_SWIER13_Msk (0x1U << EXTI_SWIER_SWIER13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 7202 #define EXTI_SWIER_SWIER13 EXTI_SWIER_SWIER13_Msk /*!< Software Interrupt on line 13 */
lypinator 0:bb348c97df44 7203 #define EXTI_SWIER_SWIER14_Pos (14U)
lypinator 0:bb348c97df44 7204 #define EXTI_SWIER_SWIER14_Msk (0x1U << EXTI_SWIER_SWIER14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 7205 #define EXTI_SWIER_SWIER14 EXTI_SWIER_SWIER14_Msk /*!< Software Interrupt on line 14 */
lypinator 0:bb348c97df44 7206 #define EXTI_SWIER_SWIER15_Pos (15U)
lypinator 0:bb348c97df44 7207 #define EXTI_SWIER_SWIER15_Msk (0x1U << EXTI_SWIER_SWIER15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 7208 #define EXTI_SWIER_SWIER15 EXTI_SWIER_SWIER15_Msk /*!< Software Interrupt on line 15 */
lypinator 0:bb348c97df44 7209 #define EXTI_SWIER_SWIER16_Pos (16U)
lypinator 0:bb348c97df44 7210 #define EXTI_SWIER_SWIER16_Msk (0x1U << EXTI_SWIER_SWIER16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 7211 #define EXTI_SWIER_SWIER16 EXTI_SWIER_SWIER16_Msk /*!< Software Interrupt on line 16 */
lypinator 0:bb348c97df44 7212 #define EXTI_SWIER_SWIER17_Pos (17U)
lypinator 0:bb348c97df44 7213 #define EXTI_SWIER_SWIER17_Msk (0x1U << EXTI_SWIER_SWIER17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 7214 #define EXTI_SWIER_SWIER17 EXTI_SWIER_SWIER17_Msk /*!< Software Interrupt on line 17 */
lypinator 0:bb348c97df44 7215 #define EXTI_SWIER_SWIER18_Pos (18U)
lypinator 0:bb348c97df44 7216 #define EXTI_SWIER_SWIER18_Msk (0x1U << EXTI_SWIER_SWIER18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 7217 #define EXTI_SWIER_SWIER18 EXTI_SWIER_SWIER18_Msk /*!< Software Interrupt on line 18 */
lypinator 0:bb348c97df44 7218 #define EXTI_SWIER_SWIER19_Pos (19U)
lypinator 0:bb348c97df44 7219 #define EXTI_SWIER_SWIER19_Msk (0x1U << EXTI_SWIER_SWIER19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 7220 #define EXTI_SWIER_SWIER19 EXTI_SWIER_SWIER19_Msk /*!< Software Interrupt on line 19 */
lypinator 0:bb348c97df44 7221 #define EXTI_SWIER_SWIER20_Pos (20U)
lypinator 0:bb348c97df44 7222 #define EXTI_SWIER_SWIER20_Msk (0x1U << EXTI_SWIER_SWIER20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 7223 #define EXTI_SWIER_SWIER20 EXTI_SWIER_SWIER20_Msk /*!< Software Interrupt on line 20 */
lypinator 0:bb348c97df44 7224 #define EXTI_SWIER_SWIER21_Pos (21U)
lypinator 0:bb348c97df44 7225 #define EXTI_SWIER_SWIER21_Msk (0x1U << EXTI_SWIER_SWIER21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 7226 #define EXTI_SWIER_SWIER21 EXTI_SWIER_SWIER21_Msk /*!< Software Interrupt on line 21 */
lypinator 0:bb348c97df44 7227 #define EXTI_SWIER_SWIER22_Pos (22U)
lypinator 0:bb348c97df44 7228 #define EXTI_SWIER_SWIER22_Msk (0x1U << EXTI_SWIER_SWIER22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 7229 #define EXTI_SWIER_SWIER22 EXTI_SWIER_SWIER22_Msk /*!< Software Interrupt on line 22 */
lypinator 0:bb348c97df44 7230
lypinator 0:bb348c97df44 7231 /******************* Bit definition for EXTI_PR register ********************/
lypinator 0:bb348c97df44 7232 #define EXTI_PR_PR0_Pos (0U)
lypinator 0:bb348c97df44 7233 #define EXTI_PR_PR0_Msk (0x1U << EXTI_PR_PR0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 7234 #define EXTI_PR_PR0 EXTI_PR_PR0_Msk /*!< Pending bit for line 0 */
lypinator 0:bb348c97df44 7235 #define EXTI_PR_PR1_Pos (1U)
lypinator 0:bb348c97df44 7236 #define EXTI_PR_PR1_Msk (0x1U << EXTI_PR_PR1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 7237 #define EXTI_PR_PR1 EXTI_PR_PR1_Msk /*!< Pending bit for line 1 */
lypinator 0:bb348c97df44 7238 #define EXTI_PR_PR2_Pos (2U)
lypinator 0:bb348c97df44 7239 #define EXTI_PR_PR2_Msk (0x1U << EXTI_PR_PR2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 7240 #define EXTI_PR_PR2 EXTI_PR_PR2_Msk /*!< Pending bit for line 2 */
lypinator 0:bb348c97df44 7241 #define EXTI_PR_PR3_Pos (3U)
lypinator 0:bb348c97df44 7242 #define EXTI_PR_PR3_Msk (0x1U << EXTI_PR_PR3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 7243 #define EXTI_PR_PR3 EXTI_PR_PR3_Msk /*!< Pending bit for line 3 */
lypinator 0:bb348c97df44 7244 #define EXTI_PR_PR4_Pos (4U)
lypinator 0:bb348c97df44 7245 #define EXTI_PR_PR4_Msk (0x1U << EXTI_PR_PR4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 7246 #define EXTI_PR_PR4 EXTI_PR_PR4_Msk /*!< Pending bit for line 4 */
lypinator 0:bb348c97df44 7247 #define EXTI_PR_PR5_Pos (5U)
lypinator 0:bb348c97df44 7248 #define EXTI_PR_PR5_Msk (0x1U << EXTI_PR_PR5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 7249 #define EXTI_PR_PR5 EXTI_PR_PR5_Msk /*!< Pending bit for line 5 */
lypinator 0:bb348c97df44 7250 #define EXTI_PR_PR6_Pos (6U)
lypinator 0:bb348c97df44 7251 #define EXTI_PR_PR6_Msk (0x1U << EXTI_PR_PR6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 7252 #define EXTI_PR_PR6 EXTI_PR_PR6_Msk /*!< Pending bit for line 6 */
lypinator 0:bb348c97df44 7253 #define EXTI_PR_PR7_Pos (7U)
lypinator 0:bb348c97df44 7254 #define EXTI_PR_PR7_Msk (0x1U << EXTI_PR_PR7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 7255 #define EXTI_PR_PR7 EXTI_PR_PR7_Msk /*!< Pending bit for line 7 */
lypinator 0:bb348c97df44 7256 #define EXTI_PR_PR8_Pos (8U)
lypinator 0:bb348c97df44 7257 #define EXTI_PR_PR8_Msk (0x1U << EXTI_PR_PR8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 7258 #define EXTI_PR_PR8 EXTI_PR_PR8_Msk /*!< Pending bit for line 8 */
lypinator 0:bb348c97df44 7259 #define EXTI_PR_PR9_Pos (9U)
lypinator 0:bb348c97df44 7260 #define EXTI_PR_PR9_Msk (0x1U << EXTI_PR_PR9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 7261 #define EXTI_PR_PR9 EXTI_PR_PR9_Msk /*!< Pending bit for line 9 */
lypinator 0:bb348c97df44 7262 #define EXTI_PR_PR10_Pos (10U)
lypinator 0:bb348c97df44 7263 #define EXTI_PR_PR10_Msk (0x1U << EXTI_PR_PR10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 7264 #define EXTI_PR_PR10 EXTI_PR_PR10_Msk /*!< Pending bit for line 10 */
lypinator 0:bb348c97df44 7265 #define EXTI_PR_PR11_Pos (11U)
lypinator 0:bb348c97df44 7266 #define EXTI_PR_PR11_Msk (0x1U << EXTI_PR_PR11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 7267 #define EXTI_PR_PR11 EXTI_PR_PR11_Msk /*!< Pending bit for line 11 */
lypinator 0:bb348c97df44 7268 #define EXTI_PR_PR12_Pos (12U)
lypinator 0:bb348c97df44 7269 #define EXTI_PR_PR12_Msk (0x1U << EXTI_PR_PR12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 7270 #define EXTI_PR_PR12 EXTI_PR_PR12_Msk /*!< Pending bit for line 12 */
lypinator 0:bb348c97df44 7271 #define EXTI_PR_PR13_Pos (13U)
lypinator 0:bb348c97df44 7272 #define EXTI_PR_PR13_Msk (0x1U << EXTI_PR_PR13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 7273 #define EXTI_PR_PR13 EXTI_PR_PR13_Msk /*!< Pending bit for line 13 */
lypinator 0:bb348c97df44 7274 #define EXTI_PR_PR14_Pos (14U)
lypinator 0:bb348c97df44 7275 #define EXTI_PR_PR14_Msk (0x1U << EXTI_PR_PR14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 7276 #define EXTI_PR_PR14 EXTI_PR_PR14_Msk /*!< Pending bit for line 14 */
lypinator 0:bb348c97df44 7277 #define EXTI_PR_PR15_Pos (15U)
lypinator 0:bb348c97df44 7278 #define EXTI_PR_PR15_Msk (0x1U << EXTI_PR_PR15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 7279 #define EXTI_PR_PR15 EXTI_PR_PR15_Msk /*!< Pending bit for line 15 */
lypinator 0:bb348c97df44 7280 #define EXTI_PR_PR16_Pos (16U)
lypinator 0:bb348c97df44 7281 #define EXTI_PR_PR16_Msk (0x1U << EXTI_PR_PR16_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 7282 #define EXTI_PR_PR16 EXTI_PR_PR16_Msk /*!< Pending bit for line 16 */
lypinator 0:bb348c97df44 7283 #define EXTI_PR_PR17_Pos (17U)
lypinator 0:bb348c97df44 7284 #define EXTI_PR_PR17_Msk (0x1U << EXTI_PR_PR17_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 7285 #define EXTI_PR_PR17 EXTI_PR_PR17_Msk /*!< Pending bit for line 17 */
lypinator 0:bb348c97df44 7286 #define EXTI_PR_PR18_Pos (18U)
lypinator 0:bb348c97df44 7287 #define EXTI_PR_PR18_Msk (0x1U << EXTI_PR_PR18_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 7288 #define EXTI_PR_PR18 EXTI_PR_PR18_Msk /*!< Pending bit for line 18 */
lypinator 0:bb348c97df44 7289 #define EXTI_PR_PR19_Pos (19U)
lypinator 0:bb348c97df44 7290 #define EXTI_PR_PR19_Msk (0x1U << EXTI_PR_PR19_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 7291 #define EXTI_PR_PR19 EXTI_PR_PR19_Msk /*!< Pending bit for line 19 */
lypinator 0:bb348c97df44 7292 #define EXTI_PR_PR20_Pos (20U)
lypinator 0:bb348c97df44 7293 #define EXTI_PR_PR20_Msk (0x1U << EXTI_PR_PR20_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 7294 #define EXTI_PR_PR20 EXTI_PR_PR20_Msk /*!< Pending bit for line 20 */
lypinator 0:bb348c97df44 7295 #define EXTI_PR_PR21_Pos (21U)
lypinator 0:bb348c97df44 7296 #define EXTI_PR_PR21_Msk (0x1U << EXTI_PR_PR21_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 7297 #define EXTI_PR_PR21 EXTI_PR_PR21_Msk /*!< Pending bit for line 21 */
lypinator 0:bb348c97df44 7298 #define EXTI_PR_PR22_Pos (22U)
lypinator 0:bb348c97df44 7299 #define EXTI_PR_PR22_Msk (0x1U << EXTI_PR_PR22_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 7300 #define EXTI_PR_PR22 EXTI_PR_PR22_Msk /*!< Pending bit for line 22 */
lypinator 0:bb348c97df44 7301
lypinator 0:bb348c97df44 7302 /******************************************************************************/
lypinator 0:bb348c97df44 7303 /* */
lypinator 0:bb348c97df44 7304 /* FLASH */
lypinator 0:bb348c97df44 7305 /* */
lypinator 0:bb348c97df44 7306 /******************************************************************************/
lypinator 0:bb348c97df44 7307 /******************* Bits definition for FLASH_ACR register *****************/
lypinator 0:bb348c97df44 7308 #define FLASH_ACR_LATENCY_Pos (0U)
lypinator 0:bb348c97df44 7309 #define FLASH_ACR_LATENCY_Msk (0xFU << FLASH_ACR_LATENCY_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 7310 #define FLASH_ACR_LATENCY FLASH_ACR_LATENCY_Msk
lypinator 0:bb348c97df44 7311 #define FLASH_ACR_LATENCY_0WS 0x00000000U
lypinator 0:bb348c97df44 7312 #define FLASH_ACR_LATENCY_1WS 0x00000001U
lypinator 0:bb348c97df44 7313 #define FLASH_ACR_LATENCY_2WS 0x00000002U
lypinator 0:bb348c97df44 7314 #define FLASH_ACR_LATENCY_3WS 0x00000003U
lypinator 0:bb348c97df44 7315 #define FLASH_ACR_LATENCY_4WS 0x00000004U
lypinator 0:bb348c97df44 7316 #define FLASH_ACR_LATENCY_5WS 0x00000005U
lypinator 0:bb348c97df44 7317 #define FLASH_ACR_LATENCY_6WS 0x00000006U
lypinator 0:bb348c97df44 7318 #define FLASH_ACR_LATENCY_7WS 0x00000007U
lypinator 0:bb348c97df44 7319
lypinator 0:bb348c97df44 7320 #define FLASH_ACR_LATENCY_8WS 0x00000008U
lypinator 0:bb348c97df44 7321 #define FLASH_ACR_LATENCY_9WS 0x00000009U
lypinator 0:bb348c97df44 7322 #define FLASH_ACR_LATENCY_10WS 0x0000000AU
lypinator 0:bb348c97df44 7323 #define FLASH_ACR_LATENCY_11WS 0x0000000BU
lypinator 0:bb348c97df44 7324 #define FLASH_ACR_LATENCY_12WS 0x0000000CU
lypinator 0:bb348c97df44 7325 #define FLASH_ACR_LATENCY_13WS 0x0000000DU
lypinator 0:bb348c97df44 7326 #define FLASH_ACR_LATENCY_14WS 0x0000000EU
lypinator 0:bb348c97df44 7327 #define FLASH_ACR_LATENCY_15WS 0x0000000FU
lypinator 0:bb348c97df44 7328 #define FLASH_ACR_PRFTEN_Pos (8U)
lypinator 0:bb348c97df44 7329 #define FLASH_ACR_PRFTEN_Msk (0x1U << FLASH_ACR_PRFTEN_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 7330 #define FLASH_ACR_PRFTEN FLASH_ACR_PRFTEN_Msk
lypinator 0:bb348c97df44 7331 #define FLASH_ACR_ICEN_Pos (9U)
lypinator 0:bb348c97df44 7332 #define FLASH_ACR_ICEN_Msk (0x1U << FLASH_ACR_ICEN_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 7333 #define FLASH_ACR_ICEN FLASH_ACR_ICEN_Msk
lypinator 0:bb348c97df44 7334 #define FLASH_ACR_DCEN_Pos (10U)
lypinator 0:bb348c97df44 7335 #define FLASH_ACR_DCEN_Msk (0x1U << FLASH_ACR_DCEN_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 7336 #define FLASH_ACR_DCEN FLASH_ACR_DCEN_Msk
lypinator 0:bb348c97df44 7337 #define FLASH_ACR_ICRST_Pos (11U)
lypinator 0:bb348c97df44 7338 #define FLASH_ACR_ICRST_Msk (0x1U << FLASH_ACR_ICRST_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 7339 #define FLASH_ACR_ICRST FLASH_ACR_ICRST_Msk
lypinator 0:bb348c97df44 7340 #define FLASH_ACR_DCRST_Pos (12U)
lypinator 0:bb348c97df44 7341 #define FLASH_ACR_DCRST_Msk (0x1U << FLASH_ACR_DCRST_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 7342 #define FLASH_ACR_DCRST FLASH_ACR_DCRST_Msk
lypinator 0:bb348c97df44 7343 #define FLASH_ACR_BYTE0_ADDRESS_Pos (10U)
lypinator 0:bb348c97df44 7344 #define FLASH_ACR_BYTE0_ADDRESS_Msk (0x10008FU << FLASH_ACR_BYTE0_ADDRESS_Pos) /*!< 0x40023C00 */
lypinator 0:bb348c97df44 7345 #define FLASH_ACR_BYTE0_ADDRESS FLASH_ACR_BYTE0_ADDRESS_Msk
lypinator 0:bb348c97df44 7346 #define FLASH_ACR_BYTE2_ADDRESS_Pos (0U)
lypinator 0:bb348c97df44 7347 #define FLASH_ACR_BYTE2_ADDRESS_Msk (0x40023C03U << FLASH_ACR_BYTE2_ADDRESS_Pos) /*!< 0x40023C03 */
lypinator 0:bb348c97df44 7348 #define FLASH_ACR_BYTE2_ADDRESS FLASH_ACR_BYTE2_ADDRESS_Msk
lypinator 0:bb348c97df44 7349
lypinator 0:bb348c97df44 7350 /******************* Bits definition for FLASH_SR register ******************/
lypinator 0:bb348c97df44 7351 #define FLASH_SR_EOP_Pos (0U)
lypinator 0:bb348c97df44 7352 #define FLASH_SR_EOP_Msk (0x1U << FLASH_SR_EOP_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 7353 #define FLASH_SR_EOP FLASH_SR_EOP_Msk
lypinator 0:bb348c97df44 7354 #define FLASH_SR_SOP_Pos (1U)
lypinator 0:bb348c97df44 7355 #define FLASH_SR_SOP_Msk (0x1U << FLASH_SR_SOP_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 7356 #define FLASH_SR_SOP FLASH_SR_SOP_Msk
lypinator 0:bb348c97df44 7357 #define FLASH_SR_WRPERR_Pos (4U)
lypinator 0:bb348c97df44 7358 #define FLASH_SR_WRPERR_Msk (0x1U << FLASH_SR_WRPERR_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 7359 #define FLASH_SR_WRPERR FLASH_SR_WRPERR_Msk
lypinator 0:bb348c97df44 7360 #define FLASH_SR_PGAERR_Pos (5U)
lypinator 0:bb348c97df44 7361 #define FLASH_SR_PGAERR_Msk (0x1U << FLASH_SR_PGAERR_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 7362 #define FLASH_SR_PGAERR FLASH_SR_PGAERR_Msk
lypinator 0:bb348c97df44 7363 #define FLASH_SR_PGPERR_Pos (6U)
lypinator 0:bb348c97df44 7364 #define FLASH_SR_PGPERR_Msk (0x1U << FLASH_SR_PGPERR_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 7365 #define FLASH_SR_PGPERR FLASH_SR_PGPERR_Msk
lypinator 0:bb348c97df44 7366 #define FLASH_SR_PGSERR_Pos (7U)
lypinator 0:bb348c97df44 7367 #define FLASH_SR_PGSERR_Msk (0x1U << FLASH_SR_PGSERR_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 7368 #define FLASH_SR_PGSERR FLASH_SR_PGSERR_Msk
lypinator 0:bb348c97df44 7369 #define FLASH_SR_RDERR_Pos (8U)
lypinator 0:bb348c97df44 7370 #define FLASH_SR_RDERR_Msk (0x1U << FLASH_SR_RDERR_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 7371 #define FLASH_SR_RDERR FLASH_SR_RDERR_Msk
lypinator 0:bb348c97df44 7372 #define FLASH_SR_BSY_Pos (16U)
lypinator 0:bb348c97df44 7373 #define FLASH_SR_BSY_Msk (0x1U << FLASH_SR_BSY_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 7374 #define FLASH_SR_BSY FLASH_SR_BSY_Msk
lypinator 0:bb348c97df44 7375
lypinator 0:bb348c97df44 7376 /******************* Bits definition for FLASH_CR register ******************/
lypinator 0:bb348c97df44 7377 #define FLASH_CR_PG_Pos (0U)
lypinator 0:bb348c97df44 7378 #define FLASH_CR_PG_Msk (0x1U << FLASH_CR_PG_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 7379 #define FLASH_CR_PG FLASH_CR_PG_Msk
lypinator 0:bb348c97df44 7380 #define FLASH_CR_SER_Pos (1U)
lypinator 0:bb348c97df44 7381 #define FLASH_CR_SER_Msk (0x1U << FLASH_CR_SER_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 7382 #define FLASH_CR_SER FLASH_CR_SER_Msk
lypinator 0:bb348c97df44 7383 #define FLASH_CR_MER_Pos (2U)
lypinator 0:bb348c97df44 7384 #define FLASH_CR_MER_Msk (0x1U << FLASH_CR_MER_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 7385 #define FLASH_CR_MER FLASH_CR_MER_Msk
lypinator 0:bb348c97df44 7386 #define FLASH_CR_MER1 FLASH_CR_MER
lypinator 0:bb348c97df44 7387 #define FLASH_CR_SNB_Pos (3U)
lypinator 0:bb348c97df44 7388 #define FLASH_CR_SNB_Msk (0x1FU << FLASH_CR_SNB_Pos) /*!< 0x000000F8 */
lypinator 0:bb348c97df44 7389 #define FLASH_CR_SNB FLASH_CR_SNB_Msk
lypinator 0:bb348c97df44 7390 #define FLASH_CR_SNB_0 (0x01U << FLASH_CR_SNB_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 7391 #define FLASH_CR_SNB_1 (0x02U << FLASH_CR_SNB_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 7392 #define FLASH_CR_SNB_2 (0x04U << FLASH_CR_SNB_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 7393 #define FLASH_CR_SNB_3 (0x08U << FLASH_CR_SNB_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 7394 #define FLASH_CR_SNB_4 (0x10U << FLASH_CR_SNB_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 7395 #define FLASH_CR_PSIZE_Pos (8U)
lypinator 0:bb348c97df44 7396 #define FLASH_CR_PSIZE_Msk (0x3U << FLASH_CR_PSIZE_Pos) /*!< 0x00000300 */
lypinator 0:bb348c97df44 7397 #define FLASH_CR_PSIZE FLASH_CR_PSIZE_Msk
lypinator 0:bb348c97df44 7398 #define FLASH_CR_PSIZE_0 (0x1U << FLASH_CR_PSIZE_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 7399 #define FLASH_CR_PSIZE_1 (0x2U << FLASH_CR_PSIZE_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 7400 #define FLASH_CR_MER2_Pos (15U)
lypinator 0:bb348c97df44 7401 #define FLASH_CR_MER2_Msk (0x1U << FLASH_CR_MER2_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 7402 #define FLASH_CR_MER2 FLASH_CR_MER2_Msk
lypinator 0:bb348c97df44 7403 #define FLASH_CR_STRT_Pos (16U)
lypinator 0:bb348c97df44 7404 #define FLASH_CR_STRT_Msk (0x1U << FLASH_CR_STRT_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 7405 #define FLASH_CR_STRT FLASH_CR_STRT_Msk
lypinator 0:bb348c97df44 7406 #define FLASH_CR_EOPIE_Pos (24U)
lypinator 0:bb348c97df44 7407 #define FLASH_CR_EOPIE_Msk (0x1U << FLASH_CR_EOPIE_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 7408 #define FLASH_CR_EOPIE FLASH_CR_EOPIE_Msk
lypinator 0:bb348c97df44 7409 #define FLASH_CR_LOCK_Pos (31U)
lypinator 0:bb348c97df44 7410 #define FLASH_CR_LOCK_Msk (0x1U << FLASH_CR_LOCK_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 7411 #define FLASH_CR_LOCK FLASH_CR_LOCK_Msk
lypinator 0:bb348c97df44 7412
lypinator 0:bb348c97df44 7413 /******************* Bits definition for FLASH_OPTCR register ***************/
lypinator 0:bb348c97df44 7414 #define FLASH_OPTCR_OPTLOCK_Pos (0U)
lypinator 0:bb348c97df44 7415 #define FLASH_OPTCR_OPTLOCK_Msk (0x1U << FLASH_OPTCR_OPTLOCK_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 7416 #define FLASH_OPTCR_OPTLOCK FLASH_OPTCR_OPTLOCK_Msk
lypinator 0:bb348c97df44 7417 #define FLASH_OPTCR_OPTSTRT_Pos (1U)
lypinator 0:bb348c97df44 7418 #define FLASH_OPTCR_OPTSTRT_Msk (0x1U << FLASH_OPTCR_OPTSTRT_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 7419 #define FLASH_OPTCR_OPTSTRT FLASH_OPTCR_OPTSTRT_Msk
lypinator 0:bb348c97df44 7420
lypinator 0:bb348c97df44 7421 #define FLASH_OPTCR_BOR_LEV_0 0x00000004U
lypinator 0:bb348c97df44 7422 #define FLASH_OPTCR_BOR_LEV_1 0x00000008U
lypinator 0:bb348c97df44 7423 #define FLASH_OPTCR_BOR_LEV_Pos (2U)
lypinator 0:bb348c97df44 7424 #define FLASH_OPTCR_BOR_LEV_Msk (0x3U << FLASH_OPTCR_BOR_LEV_Pos) /*!< 0x0000000C */
lypinator 0:bb348c97df44 7425 #define FLASH_OPTCR_BOR_LEV FLASH_OPTCR_BOR_LEV_Msk
lypinator 0:bb348c97df44 7426 #define FLASH_OPTCR_BFB2_Pos (4U)
lypinator 0:bb348c97df44 7427 #define FLASH_OPTCR_BFB2_Msk (0x1U << FLASH_OPTCR_BFB2_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 7428 #define FLASH_OPTCR_BFB2 FLASH_OPTCR_BFB2_Msk
lypinator 0:bb348c97df44 7429 #define FLASH_OPTCR_WDG_SW_Pos (5U)
lypinator 0:bb348c97df44 7430 #define FLASH_OPTCR_WDG_SW_Msk (0x1U << FLASH_OPTCR_WDG_SW_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 7431 #define FLASH_OPTCR_WDG_SW FLASH_OPTCR_WDG_SW_Msk
lypinator 0:bb348c97df44 7432 #define FLASH_OPTCR_nRST_STOP_Pos (6U)
lypinator 0:bb348c97df44 7433 #define FLASH_OPTCR_nRST_STOP_Msk (0x1U << FLASH_OPTCR_nRST_STOP_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 7434 #define FLASH_OPTCR_nRST_STOP FLASH_OPTCR_nRST_STOP_Msk
lypinator 0:bb348c97df44 7435 #define FLASH_OPTCR_nRST_STDBY_Pos (7U)
lypinator 0:bb348c97df44 7436 #define FLASH_OPTCR_nRST_STDBY_Msk (0x1U << FLASH_OPTCR_nRST_STDBY_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 7437 #define FLASH_OPTCR_nRST_STDBY FLASH_OPTCR_nRST_STDBY_Msk
lypinator 0:bb348c97df44 7438 #define FLASH_OPTCR_RDP_Pos (8U)
lypinator 0:bb348c97df44 7439 #define FLASH_OPTCR_RDP_Msk (0xFFU << FLASH_OPTCR_RDP_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 7440 #define FLASH_OPTCR_RDP FLASH_OPTCR_RDP_Msk
lypinator 0:bb348c97df44 7441 #define FLASH_OPTCR_RDP_0 (0x01U << FLASH_OPTCR_RDP_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 7442 #define FLASH_OPTCR_RDP_1 (0x02U << FLASH_OPTCR_RDP_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 7443 #define FLASH_OPTCR_RDP_2 (0x04U << FLASH_OPTCR_RDP_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 7444 #define FLASH_OPTCR_RDP_3 (0x08U << FLASH_OPTCR_RDP_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 7445 #define FLASH_OPTCR_RDP_4 (0x10U << FLASH_OPTCR_RDP_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 7446 #define FLASH_OPTCR_RDP_5 (0x20U << FLASH_OPTCR_RDP_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 7447 #define FLASH_OPTCR_RDP_6 (0x40U << FLASH_OPTCR_RDP_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 7448 #define FLASH_OPTCR_RDP_7 (0x80U << FLASH_OPTCR_RDP_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 7449 #define FLASH_OPTCR_nWRP_Pos (16U)
lypinator 0:bb348c97df44 7450 #define FLASH_OPTCR_nWRP_Msk (0xFFFU << FLASH_OPTCR_nWRP_Pos) /*!< 0x0FFF0000 */
lypinator 0:bb348c97df44 7451 #define FLASH_OPTCR_nWRP FLASH_OPTCR_nWRP_Msk
lypinator 0:bb348c97df44 7452 #define FLASH_OPTCR_nWRP_0 0x00010000U
lypinator 0:bb348c97df44 7453 #define FLASH_OPTCR_nWRP_1 0x00020000U
lypinator 0:bb348c97df44 7454 #define FLASH_OPTCR_nWRP_2 0x00040000U
lypinator 0:bb348c97df44 7455 #define FLASH_OPTCR_nWRP_3 0x00080000U
lypinator 0:bb348c97df44 7456 #define FLASH_OPTCR_nWRP_4 0x00100000U
lypinator 0:bb348c97df44 7457 #define FLASH_OPTCR_nWRP_5 0x00200000U
lypinator 0:bb348c97df44 7458 #define FLASH_OPTCR_nWRP_6 0x00400000U
lypinator 0:bb348c97df44 7459 #define FLASH_OPTCR_nWRP_7 0x00800000U
lypinator 0:bb348c97df44 7460 #define FLASH_OPTCR_nWRP_8 0x01000000U
lypinator 0:bb348c97df44 7461 #define FLASH_OPTCR_nWRP_9 0x02000000U
lypinator 0:bb348c97df44 7462 #define FLASH_OPTCR_nWRP_10 0x04000000U
lypinator 0:bb348c97df44 7463 #define FLASH_OPTCR_nWRP_11 0x08000000U
lypinator 0:bb348c97df44 7464 #define FLASH_OPTCR_DB1M_Pos (30U)
lypinator 0:bb348c97df44 7465 #define FLASH_OPTCR_DB1M_Msk (0x1U << FLASH_OPTCR_DB1M_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 7466 #define FLASH_OPTCR_DB1M FLASH_OPTCR_DB1M_Msk
lypinator 0:bb348c97df44 7467 #define FLASH_OPTCR_SPRMOD_Pos (31U)
lypinator 0:bb348c97df44 7468 #define FLASH_OPTCR_SPRMOD_Msk (0x1U << FLASH_OPTCR_SPRMOD_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 7469 #define FLASH_OPTCR_SPRMOD FLASH_OPTCR_SPRMOD_Msk
lypinator 0:bb348c97df44 7470
lypinator 0:bb348c97df44 7471 /****************** Bits definition for FLASH_OPTCR1 register ***************/
lypinator 0:bb348c97df44 7472 #define FLASH_OPTCR1_nWRP_Pos (16U)
lypinator 0:bb348c97df44 7473 #define FLASH_OPTCR1_nWRP_Msk (0xFFFU << FLASH_OPTCR1_nWRP_Pos) /*!< 0x0FFF0000 */
lypinator 0:bb348c97df44 7474 #define FLASH_OPTCR1_nWRP FLASH_OPTCR1_nWRP_Msk
lypinator 0:bb348c97df44 7475 #define FLASH_OPTCR1_nWRP_0 (0x001U << FLASH_OPTCR1_nWRP_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 7476 #define FLASH_OPTCR1_nWRP_1 (0x002U << FLASH_OPTCR1_nWRP_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 7477 #define FLASH_OPTCR1_nWRP_2 (0x004U << FLASH_OPTCR1_nWRP_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 7478 #define FLASH_OPTCR1_nWRP_3 (0x008U << FLASH_OPTCR1_nWRP_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 7479 #define FLASH_OPTCR1_nWRP_4 (0x010U << FLASH_OPTCR1_nWRP_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 7480 #define FLASH_OPTCR1_nWRP_5 (0x020U << FLASH_OPTCR1_nWRP_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 7481 #define FLASH_OPTCR1_nWRP_6 (0x040U << FLASH_OPTCR1_nWRP_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 7482 #define FLASH_OPTCR1_nWRP_7 (0x080U << FLASH_OPTCR1_nWRP_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 7483 #define FLASH_OPTCR1_nWRP_8 (0x100U << FLASH_OPTCR1_nWRP_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 7484 #define FLASH_OPTCR1_nWRP_9 (0x200U << FLASH_OPTCR1_nWRP_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 7485 #define FLASH_OPTCR1_nWRP_10 (0x400U << FLASH_OPTCR1_nWRP_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 7486 #define FLASH_OPTCR1_nWRP_11 (0x800U << FLASH_OPTCR1_nWRP_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 7487
lypinator 0:bb348c97df44 7488 /******************************************************************************/
lypinator 0:bb348c97df44 7489 /* */
lypinator 0:bb348c97df44 7490 /* Flexible Memory Controller */
lypinator 0:bb348c97df44 7491 /* */
lypinator 0:bb348c97df44 7492 /******************************************************************************/
lypinator 0:bb348c97df44 7493 /****************** Bit definition for FMC_BCR1 register *******************/
lypinator 0:bb348c97df44 7494 #define FMC_BCR1_MBKEN_Pos (0U)
lypinator 0:bb348c97df44 7495 #define FMC_BCR1_MBKEN_Msk (0x1U << FMC_BCR1_MBKEN_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 7496 #define FMC_BCR1_MBKEN FMC_BCR1_MBKEN_Msk /*!<Memory bank enable bit */
lypinator 0:bb348c97df44 7497 #define FMC_BCR1_MUXEN_Pos (1U)
lypinator 0:bb348c97df44 7498 #define FMC_BCR1_MUXEN_Msk (0x1U << FMC_BCR1_MUXEN_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 7499 #define FMC_BCR1_MUXEN FMC_BCR1_MUXEN_Msk /*!<Address/data multiplexing enable bit */
lypinator 0:bb348c97df44 7500
lypinator 0:bb348c97df44 7501 #define FMC_BCR1_MTYP_Pos (2U)
lypinator 0:bb348c97df44 7502 #define FMC_BCR1_MTYP_Msk (0x3U << FMC_BCR1_MTYP_Pos) /*!< 0x0000000C */
lypinator 0:bb348c97df44 7503 #define FMC_BCR1_MTYP FMC_BCR1_MTYP_Msk /*!<MTYP[1:0] bits (Memory type) */
lypinator 0:bb348c97df44 7504 #define FMC_BCR1_MTYP_0 (0x1U << FMC_BCR1_MTYP_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 7505 #define FMC_BCR1_MTYP_1 (0x2U << FMC_BCR1_MTYP_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 7506
lypinator 0:bb348c97df44 7507 #define FMC_BCR1_MWID_Pos (4U)
lypinator 0:bb348c97df44 7508 #define FMC_BCR1_MWID_Msk (0x3U << FMC_BCR1_MWID_Pos) /*!< 0x00000030 */
lypinator 0:bb348c97df44 7509 #define FMC_BCR1_MWID FMC_BCR1_MWID_Msk /*!<MWID[1:0] bits (Memory data bus width) */
lypinator 0:bb348c97df44 7510 #define FMC_BCR1_MWID_0 (0x1U << FMC_BCR1_MWID_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 7511 #define FMC_BCR1_MWID_1 (0x2U << FMC_BCR1_MWID_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 7512
lypinator 0:bb348c97df44 7513 #define FMC_BCR1_FACCEN_Pos (6U)
lypinator 0:bb348c97df44 7514 #define FMC_BCR1_FACCEN_Msk (0x1U << FMC_BCR1_FACCEN_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 7515 #define FMC_BCR1_FACCEN FMC_BCR1_FACCEN_Msk /*!<Flash access enable */
lypinator 0:bb348c97df44 7516 #define FMC_BCR1_BURSTEN_Pos (8U)
lypinator 0:bb348c97df44 7517 #define FMC_BCR1_BURSTEN_Msk (0x1U << FMC_BCR1_BURSTEN_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 7518 #define FMC_BCR1_BURSTEN FMC_BCR1_BURSTEN_Msk /*!<Burst enable bit */
lypinator 0:bb348c97df44 7519 #define FMC_BCR1_WAITPOL_Pos (9U)
lypinator 0:bb348c97df44 7520 #define FMC_BCR1_WAITPOL_Msk (0x1U << FMC_BCR1_WAITPOL_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 7521 #define FMC_BCR1_WAITPOL FMC_BCR1_WAITPOL_Msk /*!<Wait signal polarity bit */
lypinator 0:bb348c97df44 7522 #define FMC_BCR1_WRAPMOD_Pos (10U)
lypinator 0:bb348c97df44 7523 #define FMC_BCR1_WRAPMOD_Msk (0x1U << FMC_BCR1_WRAPMOD_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 7524 #define FMC_BCR1_WRAPMOD FMC_BCR1_WRAPMOD_Msk /*!<Wrapped burst mode support */
lypinator 0:bb348c97df44 7525 #define FMC_BCR1_WAITCFG_Pos (11U)
lypinator 0:bb348c97df44 7526 #define FMC_BCR1_WAITCFG_Msk (0x1U << FMC_BCR1_WAITCFG_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 7527 #define FMC_BCR1_WAITCFG FMC_BCR1_WAITCFG_Msk /*!<Wait timing configuration */
lypinator 0:bb348c97df44 7528 #define FMC_BCR1_WREN_Pos (12U)
lypinator 0:bb348c97df44 7529 #define FMC_BCR1_WREN_Msk (0x1U << FMC_BCR1_WREN_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 7530 #define FMC_BCR1_WREN FMC_BCR1_WREN_Msk /*!<Write enable bit */
lypinator 0:bb348c97df44 7531 #define FMC_BCR1_WAITEN_Pos (13U)
lypinator 0:bb348c97df44 7532 #define FMC_BCR1_WAITEN_Msk (0x1U << FMC_BCR1_WAITEN_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 7533 #define FMC_BCR1_WAITEN FMC_BCR1_WAITEN_Msk /*!<Wait enable bit */
lypinator 0:bb348c97df44 7534 #define FMC_BCR1_EXTMOD_Pos (14U)
lypinator 0:bb348c97df44 7535 #define FMC_BCR1_EXTMOD_Msk (0x1U << FMC_BCR1_EXTMOD_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 7536 #define FMC_BCR1_EXTMOD FMC_BCR1_EXTMOD_Msk /*!<Extended mode enable */
lypinator 0:bb348c97df44 7537 #define FMC_BCR1_ASYNCWAIT_Pos (15U)
lypinator 0:bb348c97df44 7538 #define FMC_BCR1_ASYNCWAIT_Msk (0x1U << FMC_BCR1_ASYNCWAIT_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 7539 #define FMC_BCR1_ASYNCWAIT FMC_BCR1_ASYNCWAIT_Msk /*!<Asynchronous wait */
lypinator 0:bb348c97df44 7540 #define FMC_BCR1_CPSIZE_Pos (16U)
lypinator 0:bb348c97df44 7541 #define FMC_BCR1_CPSIZE_Msk (0x7U << FMC_BCR1_CPSIZE_Pos) /*!< 0x00070000 */
lypinator 0:bb348c97df44 7542 #define FMC_BCR1_CPSIZE FMC_BCR1_CPSIZE_Msk /*!<CRAM page size */
lypinator 0:bb348c97df44 7543 #define FMC_BCR1_CPSIZE_0 (0x1U << FMC_BCR1_CPSIZE_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 7544 #define FMC_BCR1_CPSIZE_1 (0x2U << FMC_BCR1_CPSIZE_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 7545 #define FMC_BCR1_CPSIZE_2 (0x4U << FMC_BCR1_CPSIZE_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 7546 #define FMC_BCR1_CBURSTRW_Pos (19U)
lypinator 0:bb348c97df44 7547 #define FMC_BCR1_CBURSTRW_Msk (0x1U << FMC_BCR1_CBURSTRW_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 7548 #define FMC_BCR1_CBURSTRW FMC_BCR1_CBURSTRW_Msk /*!<Write burst enable */
lypinator 0:bb348c97df44 7549 #define FMC_BCR1_CCLKEN_Pos (20U)
lypinator 0:bb348c97df44 7550 #define FMC_BCR1_CCLKEN_Msk (0x1U << FMC_BCR1_CCLKEN_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 7551 #define FMC_BCR1_CCLKEN FMC_BCR1_CCLKEN_Msk /*!<Continous clock enable */
lypinator 0:bb348c97df44 7552
lypinator 0:bb348c97df44 7553 /****************** Bit definition for FMC_BCR2 register *******************/
lypinator 0:bb348c97df44 7554 #define FMC_BCR2_MBKEN_Pos (0U)
lypinator 0:bb348c97df44 7555 #define FMC_BCR2_MBKEN_Msk (0x1U << FMC_BCR2_MBKEN_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 7556 #define FMC_BCR2_MBKEN FMC_BCR2_MBKEN_Msk /*!<Memory bank enable bit */
lypinator 0:bb348c97df44 7557 #define FMC_BCR2_MUXEN_Pos (1U)
lypinator 0:bb348c97df44 7558 #define FMC_BCR2_MUXEN_Msk (0x1U << FMC_BCR2_MUXEN_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 7559 #define FMC_BCR2_MUXEN FMC_BCR2_MUXEN_Msk /*!<Address/data multiplexing enable bit */
lypinator 0:bb348c97df44 7560
lypinator 0:bb348c97df44 7561 #define FMC_BCR2_MTYP_Pos (2U)
lypinator 0:bb348c97df44 7562 #define FMC_BCR2_MTYP_Msk (0x3U << FMC_BCR2_MTYP_Pos) /*!< 0x0000000C */
lypinator 0:bb348c97df44 7563 #define FMC_BCR2_MTYP FMC_BCR2_MTYP_Msk /*!<MTYP[1:0] bits (Memory type) */
lypinator 0:bb348c97df44 7564 #define FMC_BCR2_MTYP_0 (0x1U << FMC_BCR2_MTYP_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 7565 #define FMC_BCR2_MTYP_1 (0x2U << FMC_BCR2_MTYP_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 7566
lypinator 0:bb348c97df44 7567 #define FMC_BCR2_MWID_Pos (4U)
lypinator 0:bb348c97df44 7568 #define FMC_BCR2_MWID_Msk (0x3U << FMC_BCR2_MWID_Pos) /*!< 0x00000030 */
lypinator 0:bb348c97df44 7569 #define FMC_BCR2_MWID FMC_BCR2_MWID_Msk /*!<MWID[1:0] bits (Memory data bus width) */
lypinator 0:bb348c97df44 7570 #define FMC_BCR2_MWID_0 (0x1U << FMC_BCR2_MWID_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 7571 #define FMC_BCR2_MWID_1 (0x2U << FMC_BCR2_MWID_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 7572
lypinator 0:bb348c97df44 7573 #define FMC_BCR2_FACCEN_Pos (6U)
lypinator 0:bb348c97df44 7574 #define FMC_BCR2_FACCEN_Msk (0x1U << FMC_BCR2_FACCEN_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 7575 #define FMC_BCR2_FACCEN FMC_BCR2_FACCEN_Msk /*!<Flash access enable */
lypinator 0:bb348c97df44 7576 #define FMC_BCR2_BURSTEN_Pos (8U)
lypinator 0:bb348c97df44 7577 #define FMC_BCR2_BURSTEN_Msk (0x1U << FMC_BCR2_BURSTEN_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 7578 #define FMC_BCR2_BURSTEN FMC_BCR2_BURSTEN_Msk /*!<Burst enable bit */
lypinator 0:bb348c97df44 7579 #define FMC_BCR2_WAITPOL_Pos (9U)
lypinator 0:bb348c97df44 7580 #define FMC_BCR2_WAITPOL_Msk (0x1U << FMC_BCR2_WAITPOL_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 7581 #define FMC_BCR2_WAITPOL FMC_BCR2_WAITPOL_Msk /*!<Wait signal polarity bit */
lypinator 0:bb348c97df44 7582 #define FMC_BCR2_WRAPMOD_Pos (10U)
lypinator 0:bb348c97df44 7583 #define FMC_BCR2_WRAPMOD_Msk (0x1U << FMC_BCR2_WRAPMOD_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 7584 #define FMC_BCR2_WRAPMOD FMC_BCR2_WRAPMOD_Msk /*!<Wrapped burst mode support */
lypinator 0:bb348c97df44 7585 #define FMC_BCR2_WAITCFG_Pos (11U)
lypinator 0:bb348c97df44 7586 #define FMC_BCR2_WAITCFG_Msk (0x1U << FMC_BCR2_WAITCFG_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 7587 #define FMC_BCR2_WAITCFG FMC_BCR2_WAITCFG_Msk /*!<Wait timing configuration */
lypinator 0:bb348c97df44 7588 #define FMC_BCR2_WREN_Pos (12U)
lypinator 0:bb348c97df44 7589 #define FMC_BCR2_WREN_Msk (0x1U << FMC_BCR2_WREN_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 7590 #define FMC_BCR2_WREN FMC_BCR2_WREN_Msk /*!<Write enable bit */
lypinator 0:bb348c97df44 7591 #define FMC_BCR2_WAITEN_Pos (13U)
lypinator 0:bb348c97df44 7592 #define FMC_BCR2_WAITEN_Msk (0x1U << FMC_BCR2_WAITEN_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 7593 #define FMC_BCR2_WAITEN FMC_BCR2_WAITEN_Msk /*!<Wait enable bit */
lypinator 0:bb348c97df44 7594 #define FMC_BCR2_EXTMOD_Pos (14U)
lypinator 0:bb348c97df44 7595 #define FMC_BCR2_EXTMOD_Msk (0x1U << FMC_BCR2_EXTMOD_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 7596 #define FMC_BCR2_EXTMOD FMC_BCR2_EXTMOD_Msk /*!<Extended mode enable */
lypinator 0:bb348c97df44 7597 #define FMC_BCR2_ASYNCWAIT_Pos (15U)
lypinator 0:bb348c97df44 7598 #define FMC_BCR2_ASYNCWAIT_Msk (0x1U << FMC_BCR2_ASYNCWAIT_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 7599 #define FMC_BCR2_ASYNCWAIT FMC_BCR2_ASYNCWAIT_Msk /*!<Asynchronous wait */
lypinator 0:bb348c97df44 7600 #define FMC_BCR2_CPSIZE_Pos (16U)
lypinator 0:bb348c97df44 7601 #define FMC_BCR2_CPSIZE_Msk (0x7U << FMC_BCR2_CPSIZE_Pos) /*!< 0x00070000 */
lypinator 0:bb348c97df44 7602 #define FMC_BCR2_CPSIZE FMC_BCR2_CPSIZE_Msk /*!<CRAM page size */
lypinator 0:bb348c97df44 7603 #define FMC_BCR2_CPSIZE_0 (0x1U << FMC_BCR2_CPSIZE_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 7604 #define FMC_BCR2_CPSIZE_1 (0x2U << FMC_BCR2_CPSIZE_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 7605 #define FMC_BCR2_CPSIZE_2 (0x4U << FMC_BCR2_CPSIZE_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 7606 #define FMC_BCR2_CBURSTRW_Pos (19U)
lypinator 0:bb348c97df44 7607 #define FMC_BCR2_CBURSTRW_Msk (0x1U << FMC_BCR2_CBURSTRW_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 7608 #define FMC_BCR2_CBURSTRW FMC_BCR2_CBURSTRW_Msk /*!<Write burst enable */
lypinator 0:bb348c97df44 7609
lypinator 0:bb348c97df44 7610 /****************** Bit definition for FMC_BCR3 register *******************/
lypinator 0:bb348c97df44 7611 #define FMC_BCR3_MBKEN_Pos (0U)
lypinator 0:bb348c97df44 7612 #define FMC_BCR3_MBKEN_Msk (0x1U << FMC_BCR3_MBKEN_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 7613 #define FMC_BCR3_MBKEN FMC_BCR3_MBKEN_Msk /*!<Memory bank enable bit */
lypinator 0:bb348c97df44 7614 #define FMC_BCR3_MUXEN_Pos (1U)
lypinator 0:bb348c97df44 7615 #define FMC_BCR3_MUXEN_Msk (0x1U << FMC_BCR3_MUXEN_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 7616 #define FMC_BCR3_MUXEN FMC_BCR3_MUXEN_Msk /*!<Address/data multiplexing enable bit */
lypinator 0:bb348c97df44 7617
lypinator 0:bb348c97df44 7618 #define FMC_BCR3_MTYP_Pos (2U)
lypinator 0:bb348c97df44 7619 #define FMC_BCR3_MTYP_Msk (0x3U << FMC_BCR3_MTYP_Pos) /*!< 0x0000000C */
lypinator 0:bb348c97df44 7620 #define FMC_BCR3_MTYP FMC_BCR3_MTYP_Msk /*!<MTYP[1:0] bits (Memory type) */
lypinator 0:bb348c97df44 7621 #define FMC_BCR3_MTYP_0 (0x1U << FMC_BCR3_MTYP_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 7622 #define FMC_BCR3_MTYP_1 (0x2U << FMC_BCR3_MTYP_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 7623
lypinator 0:bb348c97df44 7624 #define FMC_BCR3_MWID_Pos (4U)
lypinator 0:bb348c97df44 7625 #define FMC_BCR3_MWID_Msk (0x3U << FMC_BCR3_MWID_Pos) /*!< 0x00000030 */
lypinator 0:bb348c97df44 7626 #define FMC_BCR3_MWID FMC_BCR3_MWID_Msk /*!<MWID[1:0] bits (Memory data bus width) */
lypinator 0:bb348c97df44 7627 #define FMC_BCR3_MWID_0 (0x1U << FMC_BCR3_MWID_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 7628 #define FMC_BCR3_MWID_1 (0x2U << FMC_BCR3_MWID_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 7629
lypinator 0:bb348c97df44 7630 #define FMC_BCR3_FACCEN_Pos (6U)
lypinator 0:bb348c97df44 7631 #define FMC_BCR3_FACCEN_Msk (0x1U << FMC_BCR3_FACCEN_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 7632 #define FMC_BCR3_FACCEN FMC_BCR3_FACCEN_Msk /*!<Flash access enable */
lypinator 0:bb348c97df44 7633 #define FMC_BCR3_BURSTEN_Pos (8U)
lypinator 0:bb348c97df44 7634 #define FMC_BCR3_BURSTEN_Msk (0x1U << FMC_BCR3_BURSTEN_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 7635 #define FMC_BCR3_BURSTEN FMC_BCR3_BURSTEN_Msk /*!<Burst enable bit */
lypinator 0:bb348c97df44 7636 #define FMC_BCR3_WAITPOL_Pos (9U)
lypinator 0:bb348c97df44 7637 #define FMC_BCR3_WAITPOL_Msk (0x1U << FMC_BCR3_WAITPOL_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 7638 #define FMC_BCR3_WAITPOL FMC_BCR3_WAITPOL_Msk /*!<Wait signal polarity bit */
lypinator 0:bb348c97df44 7639 #define FMC_BCR3_WRAPMOD_Pos (10U)
lypinator 0:bb348c97df44 7640 #define FMC_BCR3_WRAPMOD_Msk (0x1U << FMC_BCR3_WRAPMOD_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 7641 #define FMC_BCR3_WRAPMOD FMC_BCR3_WRAPMOD_Msk /*!<Wrapped burst mode support */
lypinator 0:bb348c97df44 7642 #define FMC_BCR3_WAITCFG_Pos (11U)
lypinator 0:bb348c97df44 7643 #define FMC_BCR3_WAITCFG_Msk (0x1U << FMC_BCR3_WAITCFG_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 7644 #define FMC_BCR3_WAITCFG FMC_BCR3_WAITCFG_Msk /*!<Wait timing configuration */
lypinator 0:bb348c97df44 7645 #define FMC_BCR3_WREN_Pos (12U)
lypinator 0:bb348c97df44 7646 #define FMC_BCR3_WREN_Msk (0x1U << FMC_BCR3_WREN_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 7647 #define FMC_BCR3_WREN FMC_BCR3_WREN_Msk /*!<Write enable bit */
lypinator 0:bb348c97df44 7648 #define FMC_BCR3_WAITEN_Pos (13U)
lypinator 0:bb348c97df44 7649 #define FMC_BCR3_WAITEN_Msk (0x1U << FMC_BCR3_WAITEN_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 7650 #define FMC_BCR3_WAITEN FMC_BCR3_WAITEN_Msk /*!<Wait enable bit */
lypinator 0:bb348c97df44 7651 #define FMC_BCR3_EXTMOD_Pos (14U)
lypinator 0:bb348c97df44 7652 #define FMC_BCR3_EXTMOD_Msk (0x1U << FMC_BCR3_EXTMOD_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 7653 #define FMC_BCR3_EXTMOD FMC_BCR3_EXTMOD_Msk /*!<Extended mode enable */
lypinator 0:bb348c97df44 7654 #define FMC_BCR3_ASYNCWAIT_Pos (15U)
lypinator 0:bb348c97df44 7655 #define FMC_BCR3_ASYNCWAIT_Msk (0x1U << FMC_BCR3_ASYNCWAIT_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 7656 #define FMC_BCR3_ASYNCWAIT FMC_BCR3_ASYNCWAIT_Msk /*!<Asynchronous wait */
lypinator 0:bb348c97df44 7657 #define FMC_BCR3_CPSIZE_Pos (16U)
lypinator 0:bb348c97df44 7658 #define FMC_BCR3_CPSIZE_Msk (0x7U << FMC_BCR3_CPSIZE_Pos) /*!< 0x00070000 */
lypinator 0:bb348c97df44 7659 #define FMC_BCR3_CPSIZE FMC_BCR3_CPSIZE_Msk /*!<CRAM page size */
lypinator 0:bb348c97df44 7660 #define FMC_BCR3_CPSIZE_0 (0x1U << FMC_BCR3_CPSIZE_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 7661 #define FMC_BCR3_CPSIZE_1 (0x2U << FMC_BCR3_CPSIZE_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 7662 #define FMC_BCR3_CPSIZE_2 (0x4U << FMC_BCR3_CPSIZE_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 7663 #define FMC_BCR3_CBURSTRW_Pos (19U)
lypinator 0:bb348c97df44 7664 #define FMC_BCR3_CBURSTRW_Msk (0x1U << FMC_BCR3_CBURSTRW_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 7665 #define FMC_BCR3_CBURSTRW FMC_BCR3_CBURSTRW_Msk /*!<Write burst enable */
lypinator 0:bb348c97df44 7666
lypinator 0:bb348c97df44 7667 /****************** Bit definition for FMC_BCR4 register *******************/
lypinator 0:bb348c97df44 7668 #define FMC_BCR4_MBKEN_Pos (0U)
lypinator 0:bb348c97df44 7669 #define FMC_BCR4_MBKEN_Msk (0x1U << FMC_BCR4_MBKEN_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 7670 #define FMC_BCR4_MBKEN FMC_BCR4_MBKEN_Msk /*!<Memory bank enable bit */
lypinator 0:bb348c97df44 7671 #define FMC_BCR4_MUXEN_Pos (1U)
lypinator 0:bb348c97df44 7672 #define FMC_BCR4_MUXEN_Msk (0x1U << FMC_BCR4_MUXEN_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 7673 #define FMC_BCR4_MUXEN FMC_BCR4_MUXEN_Msk /*!<Address/data multiplexing enable bit */
lypinator 0:bb348c97df44 7674
lypinator 0:bb348c97df44 7675 #define FMC_BCR4_MTYP_Pos (2U)
lypinator 0:bb348c97df44 7676 #define FMC_BCR4_MTYP_Msk (0x3U << FMC_BCR4_MTYP_Pos) /*!< 0x0000000C */
lypinator 0:bb348c97df44 7677 #define FMC_BCR4_MTYP FMC_BCR4_MTYP_Msk /*!<MTYP[1:0] bits (Memory type) */
lypinator 0:bb348c97df44 7678 #define FMC_BCR4_MTYP_0 (0x1U << FMC_BCR4_MTYP_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 7679 #define FMC_BCR4_MTYP_1 (0x2U << FMC_BCR4_MTYP_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 7680
lypinator 0:bb348c97df44 7681 #define FMC_BCR4_MWID_Pos (4U)
lypinator 0:bb348c97df44 7682 #define FMC_BCR4_MWID_Msk (0x3U << FMC_BCR4_MWID_Pos) /*!< 0x00000030 */
lypinator 0:bb348c97df44 7683 #define FMC_BCR4_MWID FMC_BCR4_MWID_Msk /*!<MWID[1:0] bits (Memory data bus width) */
lypinator 0:bb348c97df44 7684 #define FMC_BCR4_MWID_0 (0x1U << FMC_BCR4_MWID_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 7685 #define FMC_BCR4_MWID_1 (0x2U << FMC_BCR4_MWID_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 7686
lypinator 0:bb348c97df44 7687 #define FMC_BCR4_FACCEN_Pos (6U)
lypinator 0:bb348c97df44 7688 #define FMC_BCR4_FACCEN_Msk (0x1U << FMC_BCR4_FACCEN_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 7689 #define FMC_BCR4_FACCEN FMC_BCR4_FACCEN_Msk /*!<Flash access enable */
lypinator 0:bb348c97df44 7690 #define FMC_BCR4_BURSTEN_Pos (8U)
lypinator 0:bb348c97df44 7691 #define FMC_BCR4_BURSTEN_Msk (0x1U << FMC_BCR4_BURSTEN_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 7692 #define FMC_BCR4_BURSTEN FMC_BCR4_BURSTEN_Msk /*!<Burst enable bit */
lypinator 0:bb348c97df44 7693 #define FMC_BCR4_WAITPOL_Pos (9U)
lypinator 0:bb348c97df44 7694 #define FMC_BCR4_WAITPOL_Msk (0x1U << FMC_BCR4_WAITPOL_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 7695 #define FMC_BCR4_WAITPOL FMC_BCR4_WAITPOL_Msk /*!<Wait signal polarity bit */
lypinator 0:bb348c97df44 7696 #define FMC_BCR4_WRAPMOD_Pos (10U)
lypinator 0:bb348c97df44 7697 #define FMC_BCR4_WRAPMOD_Msk (0x1U << FMC_BCR4_WRAPMOD_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 7698 #define FMC_BCR4_WRAPMOD FMC_BCR4_WRAPMOD_Msk /*!<Wrapped burst mode support */
lypinator 0:bb348c97df44 7699 #define FMC_BCR4_WAITCFG_Pos (11U)
lypinator 0:bb348c97df44 7700 #define FMC_BCR4_WAITCFG_Msk (0x1U << FMC_BCR4_WAITCFG_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 7701 #define FMC_BCR4_WAITCFG FMC_BCR4_WAITCFG_Msk /*!<Wait timing configuration */
lypinator 0:bb348c97df44 7702 #define FMC_BCR4_WREN_Pos (12U)
lypinator 0:bb348c97df44 7703 #define FMC_BCR4_WREN_Msk (0x1U << FMC_BCR4_WREN_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 7704 #define FMC_BCR4_WREN FMC_BCR4_WREN_Msk /*!<Write enable bit */
lypinator 0:bb348c97df44 7705 #define FMC_BCR4_WAITEN_Pos (13U)
lypinator 0:bb348c97df44 7706 #define FMC_BCR4_WAITEN_Msk (0x1U << FMC_BCR4_WAITEN_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 7707 #define FMC_BCR4_WAITEN FMC_BCR4_WAITEN_Msk /*!<Wait enable bit */
lypinator 0:bb348c97df44 7708 #define FMC_BCR4_EXTMOD_Pos (14U)
lypinator 0:bb348c97df44 7709 #define FMC_BCR4_EXTMOD_Msk (0x1U << FMC_BCR4_EXTMOD_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 7710 #define FMC_BCR4_EXTMOD FMC_BCR4_EXTMOD_Msk /*!<Extended mode enable */
lypinator 0:bb348c97df44 7711 #define FMC_BCR4_ASYNCWAIT_Pos (15U)
lypinator 0:bb348c97df44 7712 #define FMC_BCR4_ASYNCWAIT_Msk (0x1U << FMC_BCR4_ASYNCWAIT_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 7713 #define FMC_BCR4_ASYNCWAIT FMC_BCR4_ASYNCWAIT_Msk /*!<Asynchronous wait */
lypinator 0:bb348c97df44 7714 #define FMC_BCR4_CPSIZE_Pos (16U)
lypinator 0:bb348c97df44 7715 #define FMC_BCR4_CPSIZE_Msk (0x7U << FMC_BCR4_CPSIZE_Pos) /*!< 0x00070000 */
lypinator 0:bb348c97df44 7716 #define FMC_BCR4_CPSIZE FMC_BCR4_CPSIZE_Msk /*!<CRAM page size */
lypinator 0:bb348c97df44 7717 #define FMC_BCR4_CPSIZE_0 (0x1U << FMC_BCR4_CPSIZE_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 7718 #define FMC_BCR4_CPSIZE_1 (0x2U << FMC_BCR4_CPSIZE_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 7719 #define FMC_BCR4_CPSIZE_2 (0x4U << FMC_BCR4_CPSIZE_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 7720 #define FMC_BCR4_CBURSTRW_Pos (19U)
lypinator 0:bb348c97df44 7721 #define FMC_BCR4_CBURSTRW_Msk (0x1U << FMC_BCR4_CBURSTRW_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 7722 #define FMC_BCR4_CBURSTRW FMC_BCR4_CBURSTRW_Msk /*!<Write burst enable */
lypinator 0:bb348c97df44 7723
lypinator 0:bb348c97df44 7724 /****************** Bit definition for FMC_BTR1 register ******************/
lypinator 0:bb348c97df44 7725 #define FMC_BTR1_ADDSET_Pos (0U)
lypinator 0:bb348c97df44 7726 #define FMC_BTR1_ADDSET_Msk (0xFU << FMC_BTR1_ADDSET_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 7727 #define FMC_BTR1_ADDSET FMC_BTR1_ADDSET_Msk /*!<ADDSET[3:0] bits (Address setup phase duration) */
lypinator 0:bb348c97df44 7728 #define FMC_BTR1_ADDSET_0 (0x1U << FMC_BTR1_ADDSET_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 7729 #define FMC_BTR1_ADDSET_1 (0x2U << FMC_BTR1_ADDSET_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 7730 #define FMC_BTR1_ADDSET_2 (0x4U << FMC_BTR1_ADDSET_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 7731 #define FMC_BTR1_ADDSET_3 (0x8U << FMC_BTR1_ADDSET_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 7732
lypinator 0:bb348c97df44 7733 #define FMC_BTR1_ADDHLD_Pos (4U)
lypinator 0:bb348c97df44 7734 #define FMC_BTR1_ADDHLD_Msk (0xFU << FMC_BTR1_ADDHLD_Pos) /*!< 0x000000F0 */
lypinator 0:bb348c97df44 7735 #define FMC_BTR1_ADDHLD FMC_BTR1_ADDHLD_Msk /*!<ADDHLD[3:0] bits (Address-hold phase duration) */
lypinator 0:bb348c97df44 7736 #define FMC_BTR1_ADDHLD_0 (0x1U << FMC_BTR1_ADDHLD_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 7737 #define FMC_BTR1_ADDHLD_1 (0x2U << FMC_BTR1_ADDHLD_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 7738 #define FMC_BTR1_ADDHLD_2 (0x4U << FMC_BTR1_ADDHLD_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 7739 #define FMC_BTR1_ADDHLD_3 (0x8U << FMC_BTR1_ADDHLD_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 7740
lypinator 0:bb348c97df44 7741 #define FMC_BTR1_DATAST_Pos (8U)
lypinator 0:bb348c97df44 7742 #define FMC_BTR1_DATAST_Msk (0xFFU << FMC_BTR1_DATAST_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 7743 #define FMC_BTR1_DATAST FMC_BTR1_DATAST_Msk /*!<DATAST [3:0] bits (Data-phase duration) */
lypinator 0:bb348c97df44 7744 #define FMC_BTR1_DATAST_0 (0x01U << FMC_BTR1_DATAST_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 7745 #define FMC_BTR1_DATAST_1 (0x02U << FMC_BTR1_DATAST_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 7746 #define FMC_BTR1_DATAST_2 (0x04U << FMC_BTR1_DATAST_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 7747 #define FMC_BTR1_DATAST_3 (0x08U << FMC_BTR1_DATAST_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 7748 #define FMC_BTR1_DATAST_4 (0x10U << FMC_BTR1_DATAST_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 7749 #define FMC_BTR1_DATAST_5 (0x20U << FMC_BTR1_DATAST_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 7750 #define FMC_BTR1_DATAST_6 (0x40U << FMC_BTR1_DATAST_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 7751 #define FMC_BTR1_DATAST_7 (0x80U << FMC_BTR1_DATAST_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 7752
lypinator 0:bb348c97df44 7753 #define FMC_BTR1_BUSTURN_Pos (16U)
lypinator 0:bb348c97df44 7754 #define FMC_BTR1_BUSTURN_Msk (0xFU << FMC_BTR1_BUSTURN_Pos) /*!< 0x000F0000 */
lypinator 0:bb348c97df44 7755 #define FMC_BTR1_BUSTURN FMC_BTR1_BUSTURN_Msk /*!<BUSTURN[3:0] bits (Bus turnaround phase duration) */
lypinator 0:bb348c97df44 7756 #define FMC_BTR1_BUSTURN_0 (0x1U << FMC_BTR1_BUSTURN_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 7757 #define FMC_BTR1_BUSTURN_1 (0x2U << FMC_BTR1_BUSTURN_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 7758 #define FMC_BTR1_BUSTURN_2 (0x4U << FMC_BTR1_BUSTURN_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 7759 #define FMC_BTR1_BUSTURN_3 (0x8U << FMC_BTR1_BUSTURN_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 7760
lypinator 0:bb348c97df44 7761 #define FMC_BTR1_CLKDIV_Pos (20U)
lypinator 0:bb348c97df44 7762 #define FMC_BTR1_CLKDIV_Msk (0xFU << FMC_BTR1_CLKDIV_Pos) /*!< 0x00F00000 */
lypinator 0:bb348c97df44 7763 #define FMC_BTR1_CLKDIV FMC_BTR1_CLKDIV_Msk /*!<CLKDIV[3:0] bits (Clock divide ratio) */
lypinator 0:bb348c97df44 7764 #define FMC_BTR1_CLKDIV_0 (0x1U << FMC_BTR1_CLKDIV_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 7765 #define FMC_BTR1_CLKDIV_1 (0x2U << FMC_BTR1_CLKDIV_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 7766 #define FMC_BTR1_CLKDIV_2 (0x4U << FMC_BTR1_CLKDIV_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 7767 #define FMC_BTR1_CLKDIV_3 (0x8U << FMC_BTR1_CLKDIV_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 7768
lypinator 0:bb348c97df44 7769 #define FMC_BTR1_DATLAT_Pos (24U)
lypinator 0:bb348c97df44 7770 #define FMC_BTR1_DATLAT_Msk (0xFU << FMC_BTR1_DATLAT_Pos) /*!< 0x0F000000 */
lypinator 0:bb348c97df44 7771 #define FMC_BTR1_DATLAT FMC_BTR1_DATLAT_Msk /*!<DATLA[3:0] bits (Data latency) */
lypinator 0:bb348c97df44 7772 #define FMC_BTR1_DATLAT_0 (0x1U << FMC_BTR1_DATLAT_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 7773 #define FMC_BTR1_DATLAT_1 (0x2U << FMC_BTR1_DATLAT_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 7774 #define FMC_BTR1_DATLAT_2 (0x4U << FMC_BTR1_DATLAT_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 7775 #define FMC_BTR1_DATLAT_3 (0x8U << FMC_BTR1_DATLAT_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 7776
lypinator 0:bb348c97df44 7777 #define FMC_BTR1_ACCMOD_Pos (28U)
lypinator 0:bb348c97df44 7778 #define FMC_BTR1_ACCMOD_Msk (0x3U << FMC_BTR1_ACCMOD_Pos) /*!< 0x30000000 */
lypinator 0:bb348c97df44 7779 #define FMC_BTR1_ACCMOD FMC_BTR1_ACCMOD_Msk /*!<ACCMOD[1:0] bits (Access mode) */
lypinator 0:bb348c97df44 7780 #define FMC_BTR1_ACCMOD_0 (0x1U << FMC_BTR1_ACCMOD_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 7781 #define FMC_BTR1_ACCMOD_1 (0x2U << FMC_BTR1_ACCMOD_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 7782
lypinator 0:bb348c97df44 7783 /****************** Bit definition for FMC_BTR2 register *******************/
lypinator 0:bb348c97df44 7784 #define FMC_BTR2_ADDSET_Pos (0U)
lypinator 0:bb348c97df44 7785 #define FMC_BTR2_ADDSET_Msk (0xFU << FMC_BTR2_ADDSET_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 7786 #define FMC_BTR2_ADDSET FMC_BTR2_ADDSET_Msk /*!<ADDSET[3:0] bits (Address setup phase duration) */
lypinator 0:bb348c97df44 7787 #define FMC_BTR2_ADDSET_0 (0x1U << FMC_BTR2_ADDSET_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 7788 #define FMC_BTR2_ADDSET_1 (0x2U << FMC_BTR2_ADDSET_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 7789 #define FMC_BTR2_ADDSET_2 (0x4U << FMC_BTR2_ADDSET_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 7790 #define FMC_BTR2_ADDSET_3 (0x8U << FMC_BTR2_ADDSET_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 7791
lypinator 0:bb348c97df44 7792 #define FMC_BTR2_ADDHLD_Pos (4U)
lypinator 0:bb348c97df44 7793 #define FMC_BTR2_ADDHLD_Msk (0xFU << FMC_BTR2_ADDHLD_Pos) /*!< 0x000000F0 */
lypinator 0:bb348c97df44 7794 #define FMC_BTR2_ADDHLD FMC_BTR2_ADDHLD_Msk /*!<ADDHLD[3:0] bits (Address-hold phase duration) */
lypinator 0:bb348c97df44 7795 #define FMC_BTR2_ADDHLD_0 (0x1U << FMC_BTR2_ADDHLD_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 7796 #define FMC_BTR2_ADDHLD_1 (0x2U << FMC_BTR2_ADDHLD_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 7797 #define FMC_BTR2_ADDHLD_2 (0x4U << FMC_BTR2_ADDHLD_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 7798 #define FMC_BTR2_ADDHLD_3 (0x8U << FMC_BTR2_ADDHLD_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 7799
lypinator 0:bb348c97df44 7800 #define FMC_BTR2_DATAST_Pos (8U)
lypinator 0:bb348c97df44 7801 #define FMC_BTR2_DATAST_Msk (0xFFU << FMC_BTR2_DATAST_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 7802 #define FMC_BTR2_DATAST FMC_BTR2_DATAST_Msk /*!<DATAST [3:0] bits (Data-phase duration) */
lypinator 0:bb348c97df44 7803 #define FMC_BTR2_DATAST_0 (0x01U << FMC_BTR2_DATAST_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 7804 #define FMC_BTR2_DATAST_1 (0x02U << FMC_BTR2_DATAST_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 7805 #define FMC_BTR2_DATAST_2 (0x04U << FMC_BTR2_DATAST_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 7806 #define FMC_BTR2_DATAST_3 (0x08U << FMC_BTR2_DATAST_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 7807 #define FMC_BTR2_DATAST_4 (0x10U << FMC_BTR2_DATAST_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 7808 #define FMC_BTR2_DATAST_5 (0x20U << FMC_BTR2_DATAST_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 7809 #define FMC_BTR2_DATAST_6 (0x40U << FMC_BTR2_DATAST_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 7810 #define FMC_BTR2_DATAST_7 (0x80U << FMC_BTR2_DATAST_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 7811
lypinator 0:bb348c97df44 7812 #define FMC_BTR2_BUSTURN_Pos (16U)
lypinator 0:bb348c97df44 7813 #define FMC_BTR2_BUSTURN_Msk (0xFU << FMC_BTR2_BUSTURN_Pos) /*!< 0x000F0000 */
lypinator 0:bb348c97df44 7814 #define FMC_BTR2_BUSTURN FMC_BTR2_BUSTURN_Msk /*!<BUSTURN[3:0] bits (Bus turnaround phase duration) */
lypinator 0:bb348c97df44 7815 #define FMC_BTR2_BUSTURN_0 (0x1U << FMC_BTR2_BUSTURN_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 7816 #define FMC_BTR2_BUSTURN_1 (0x2U << FMC_BTR2_BUSTURN_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 7817 #define FMC_BTR2_BUSTURN_2 (0x4U << FMC_BTR2_BUSTURN_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 7818 #define FMC_BTR2_BUSTURN_3 (0x8U << FMC_BTR2_BUSTURN_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 7819
lypinator 0:bb348c97df44 7820 #define FMC_BTR2_CLKDIV_Pos (20U)
lypinator 0:bb348c97df44 7821 #define FMC_BTR2_CLKDIV_Msk (0xFU << FMC_BTR2_CLKDIV_Pos) /*!< 0x00F00000 */
lypinator 0:bb348c97df44 7822 #define FMC_BTR2_CLKDIV FMC_BTR2_CLKDIV_Msk /*!<CLKDIV[3:0] bits (Clock divide ratio) */
lypinator 0:bb348c97df44 7823 #define FMC_BTR2_CLKDIV_0 (0x1U << FMC_BTR2_CLKDIV_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 7824 #define FMC_BTR2_CLKDIV_1 (0x2U << FMC_BTR2_CLKDIV_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 7825 #define FMC_BTR2_CLKDIV_2 (0x4U << FMC_BTR2_CLKDIV_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 7826 #define FMC_BTR2_CLKDIV_3 (0x8U << FMC_BTR2_CLKDIV_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 7827
lypinator 0:bb348c97df44 7828 #define FMC_BTR2_DATLAT_Pos (24U)
lypinator 0:bb348c97df44 7829 #define FMC_BTR2_DATLAT_Msk (0xFU << FMC_BTR2_DATLAT_Pos) /*!< 0x0F000000 */
lypinator 0:bb348c97df44 7830 #define FMC_BTR2_DATLAT FMC_BTR2_DATLAT_Msk /*!<DATLA[3:0] bits (Data latency) */
lypinator 0:bb348c97df44 7831 #define FMC_BTR2_DATLAT_0 (0x1U << FMC_BTR2_DATLAT_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 7832 #define FMC_BTR2_DATLAT_1 (0x2U << FMC_BTR2_DATLAT_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 7833 #define FMC_BTR2_DATLAT_2 (0x4U << FMC_BTR2_DATLAT_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 7834 #define FMC_BTR2_DATLAT_3 (0x8U << FMC_BTR2_DATLAT_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 7835
lypinator 0:bb348c97df44 7836 #define FMC_BTR2_ACCMOD_Pos (28U)
lypinator 0:bb348c97df44 7837 #define FMC_BTR2_ACCMOD_Msk (0x3U << FMC_BTR2_ACCMOD_Pos) /*!< 0x30000000 */
lypinator 0:bb348c97df44 7838 #define FMC_BTR2_ACCMOD FMC_BTR2_ACCMOD_Msk /*!<ACCMOD[1:0] bits (Access mode) */
lypinator 0:bb348c97df44 7839 #define FMC_BTR2_ACCMOD_0 (0x1U << FMC_BTR2_ACCMOD_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 7840 #define FMC_BTR2_ACCMOD_1 (0x2U << FMC_BTR2_ACCMOD_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 7841
lypinator 0:bb348c97df44 7842 /******************* Bit definition for FMC_BTR3 register *******************/
lypinator 0:bb348c97df44 7843 #define FMC_BTR3_ADDSET_Pos (0U)
lypinator 0:bb348c97df44 7844 #define FMC_BTR3_ADDSET_Msk (0xFU << FMC_BTR3_ADDSET_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 7845 #define FMC_BTR3_ADDSET FMC_BTR3_ADDSET_Msk /*!<ADDSET[3:0] bits (Address setup phase duration) */
lypinator 0:bb348c97df44 7846 #define FMC_BTR3_ADDSET_0 (0x1U << FMC_BTR3_ADDSET_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 7847 #define FMC_BTR3_ADDSET_1 (0x2U << FMC_BTR3_ADDSET_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 7848 #define FMC_BTR3_ADDSET_2 (0x4U << FMC_BTR3_ADDSET_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 7849 #define FMC_BTR3_ADDSET_3 (0x8U << FMC_BTR3_ADDSET_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 7850
lypinator 0:bb348c97df44 7851 #define FMC_BTR3_ADDHLD_Pos (4U)
lypinator 0:bb348c97df44 7852 #define FMC_BTR3_ADDHLD_Msk (0xFU << FMC_BTR3_ADDHLD_Pos) /*!< 0x000000F0 */
lypinator 0:bb348c97df44 7853 #define FMC_BTR3_ADDHLD FMC_BTR3_ADDHLD_Msk /*!<ADDHLD[3:0] bits (Address-hold phase duration) */
lypinator 0:bb348c97df44 7854 #define FMC_BTR3_ADDHLD_0 (0x1U << FMC_BTR3_ADDHLD_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 7855 #define FMC_BTR3_ADDHLD_1 (0x2U << FMC_BTR3_ADDHLD_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 7856 #define FMC_BTR3_ADDHLD_2 (0x4U << FMC_BTR3_ADDHLD_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 7857 #define FMC_BTR3_ADDHLD_3 (0x8U << FMC_BTR3_ADDHLD_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 7858
lypinator 0:bb348c97df44 7859 #define FMC_BTR3_DATAST_Pos (8U)
lypinator 0:bb348c97df44 7860 #define FMC_BTR3_DATAST_Msk (0xFFU << FMC_BTR3_DATAST_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 7861 #define FMC_BTR3_DATAST FMC_BTR3_DATAST_Msk /*!<DATAST [3:0] bits (Data-phase duration) */
lypinator 0:bb348c97df44 7862 #define FMC_BTR3_DATAST_0 (0x01U << FMC_BTR3_DATAST_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 7863 #define FMC_BTR3_DATAST_1 (0x02U << FMC_BTR3_DATAST_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 7864 #define FMC_BTR3_DATAST_2 (0x04U << FMC_BTR3_DATAST_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 7865 #define FMC_BTR3_DATAST_3 (0x08U << FMC_BTR3_DATAST_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 7866 #define FMC_BTR3_DATAST_4 (0x10U << FMC_BTR3_DATAST_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 7867 #define FMC_BTR3_DATAST_5 (0x20U << FMC_BTR3_DATAST_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 7868 #define FMC_BTR3_DATAST_6 (0x40U << FMC_BTR3_DATAST_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 7869 #define FMC_BTR3_DATAST_7 (0x80U << FMC_BTR3_DATAST_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 7870
lypinator 0:bb348c97df44 7871 #define FMC_BTR3_BUSTURN_Pos (16U)
lypinator 0:bb348c97df44 7872 #define FMC_BTR3_BUSTURN_Msk (0xFU << FMC_BTR3_BUSTURN_Pos) /*!< 0x000F0000 */
lypinator 0:bb348c97df44 7873 #define FMC_BTR3_BUSTURN FMC_BTR3_BUSTURN_Msk /*!<BUSTURN[3:0] bits (Bus turnaround phase duration) */
lypinator 0:bb348c97df44 7874 #define FMC_BTR3_BUSTURN_0 (0x1U << FMC_BTR3_BUSTURN_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 7875 #define FMC_BTR3_BUSTURN_1 (0x2U << FMC_BTR3_BUSTURN_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 7876 #define FMC_BTR3_BUSTURN_2 (0x4U << FMC_BTR3_BUSTURN_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 7877 #define FMC_BTR3_BUSTURN_3 (0x8U << FMC_BTR3_BUSTURN_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 7878
lypinator 0:bb348c97df44 7879 #define FMC_BTR3_CLKDIV_Pos (20U)
lypinator 0:bb348c97df44 7880 #define FMC_BTR3_CLKDIV_Msk (0xFU << FMC_BTR3_CLKDIV_Pos) /*!< 0x00F00000 */
lypinator 0:bb348c97df44 7881 #define FMC_BTR3_CLKDIV FMC_BTR3_CLKDIV_Msk /*!<CLKDIV[3:0] bits (Clock divide ratio) */
lypinator 0:bb348c97df44 7882 #define FMC_BTR3_CLKDIV_0 (0x1U << FMC_BTR3_CLKDIV_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 7883 #define FMC_BTR3_CLKDIV_1 (0x2U << FMC_BTR3_CLKDIV_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 7884 #define FMC_BTR3_CLKDIV_2 (0x4U << FMC_BTR3_CLKDIV_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 7885 #define FMC_BTR3_CLKDIV_3 (0x8U << FMC_BTR3_CLKDIV_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 7886
lypinator 0:bb348c97df44 7887 #define FMC_BTR3_DATLAT_Pos (24U)
lypinator 0:bb348c97df44 7888 #define FMC_BTR3_DATLAT_Msk (0xFU << FMC_BTR3_DATLAT_Pos) /*!< 0x0F000000 */
lypinator 0:bb348c97df44 7889 #define FMC_BTR3_DATLAT FMC_BTR3_DATLAT_Msk /*!<DATLA[3:0] bits (Data latency) */
lypinator 0:bb348c97df44 7890 #define FMC_BTR3_DATLAT_0 (0x1U << FMC_BTR3_DATLAT_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 7891 #define FMC_BTR3_DATLAT_1 (0x2U << FMC_BTR3_DATLAT_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 7892 #define FMC_BTR3_DATLAT_2 (0x4U << FMC_BTR3_DATLAT_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 7893 #define FMC_BTR3_DATLAT_3 (0x8U << FMC_BTR3_DATLAT_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 7894
lypinator 0:bb348c97df44 7895 #define FMC_BTR3_ACCMOD_Pos (28U)
lypinator 0:bb348c97df44 7896 #define FMC_BTR3_ACCMOD_Msk (0x3U << FMC_BTR3_ACCMOD_Pos) /*!< 0x30000000 */
lypinator 0:bb348c97df44 7897 #define FMC_BTR3_ACCMOD FMC_BTR3_ACCMOD_Msk /*!<ACCMOD[1:0] bits (Access mode) */
lypinator 0:bb348c97df44 7898 #define FMC_BTR3_ACCMOD_0 (0x1U << FMC_BTR3_ACCMOD_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 7899 #define FMC_BTR3_ACCMOD_1 (0x2U << FMC_BTR3_ACCMOD_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 7900
lypinator 0:bb348c97df44 7901 /****************** Bit definition for FMC_BTR4 register *******************/
lypinator 0:bb348c97df44 7902 #define FMC_BTR4_ADDSET_Pos (0U)
lypinator 0:bb348c97df44 7903 #define FMC_BTR4_ADDSET_Msk (0xFU << FMC_BTR4_ADDSET_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 7904 #define FMC_BTR4_ADDSET FMC_BTR4_ADDSET_Msk /*!<ADDSET[3:0] bits (Address setup phase duration) */
lypinator 0:bb348c97df44 7905 #define FMC_BTR4_ADDSET_0 (0x1U << FMC_BTR4_ADDSET_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 7906 #define FMC_BTR4_ADDSET_1 (0x2U << FMC_BTR4_ADDSET_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 7907 #define FMC_BTR4_ADDSET_2 (0x4U << FMC_BTR4_ADDSET_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 7908 #define FMC_BTR4_ADDSET_3 (0x8U << FMC_BTR4_ADDSET_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 7909
lypinator 0:bb348c97df44 7910 #define FMC_BTR4_ADDHLD_Pos (4U)
lypinator 0:bb348c97df44 7911 #define FMC_BTR4_ADDHLD_Msk (0xFU << FMC_BTR4_ADDHLD_Pos) /*!< 0x000000F0 */
lypinator 0:bb348c97df44 7912 #define FMC_BTR4_ADDHLD FMC_BTR4_ADDHLD_Msk /*!<ADDHLD[3:0] bits (Address-hold phase duration) */
lypinator 0:bb348c97df44 7913 #define FMC_BTR4_ADDHLD_0 (0x1U << FMC_BTR4_ADDHLD_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 7914 #define FMC_BTR4_ADDHLD_1 (0x2U << FMC_BTR4_ADDHLD_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 7915 #define FMC_BTR4_ADDHLD_2 (0x4U << FMC_BTR4_ADDHLD_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 7916 #define FMC_BTR4_ADDHLD_3 (0x8U << FMC_BTR4_ADDHLD_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 7917
lypinator 0:bb348c97df44 7918 #define FMC_BTR4_DATAST_Pos (8U)
lypinator 0:bb348c97df44 7919 #define FMC_BTR4_DATAST_Msk (0xFFU << FMC_BTR4_DATAST_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 7920 #define FMC_BTR4_DATAST FMC_BTR4_DATAST_Msk /*!<DATAST [3:0] bits (Data-phase duration) */
lypinator 0:bb348c97df44 7921 #define FMC_BTR4_DATAST_0 (0x01U << FMC_BTR4_DATAST_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 7922 #define FMC_BTR4_DATAST_1 (0x02U << FMC_BTR4_DATAST_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 7923 #define FMC_BTR4_DATAST_2 (0x04U << FMC_BTR4_DATAST_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 7924 #define FMC_BTR4_DATAST_3 (0x08U << FMC_BTR4_DATAST_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 7925 #define FMC_BTR4_DATAST_4 (0x10U << FMC_BTR4_DATAST_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 7926 #define FMC_BTR4_DATAST_5 (0x20U << FMC_BTR4_DATAST_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 7927 #define FMC_BTR4_DATAST_6 (0x40U << FMC_BTR4_DATAST_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 7928 #define FMC_BTR4_DATAST_7 (0x80U << FMC_BTR4_DATAST_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 7929
lypinator 0:bb348c97df44 7930 #define FMC_BTR4_BUSTURN_Pos (16U)
lypinator 0:bb348c97df44 7931 #define FMC_BTR4_BUSTURN_Msk (0xFU << FMC_BTR4_BUSTURN_Pos) /*!< 0x000F0000 */
lypinator 0:bb348c97df44 7932 #define FMC_BTR4_BUSTURN FMC_BTR4_BUSTURN_Msk /*!<BUSTURN[3:0] bits (Bus turnaround phase duration) */
lypinator 0:bb348c97df44 7933 #define FMC_BTR4_BUSTURN_0 (0x1U << FMC_BTR4_BUSTURN_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 7934 #define FMC_BTR4_BUSTURN_1 (0x2U << FMC_BTR4_BUSTURN_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 7935 #define FMC_BTR4_BUSTURN_2 (0x4U << FMC_BTR4_BUSTURN_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 7936 #define FMC_BTR4_BUSTURN_3 (0x8U << FMC_BTR4_BUSTURN_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 7937
lypinator 0:bb348c97df44 7938 #define FMC_BTR4_CLKDIV_Pos (20U)
lypinator 0:bb348c97df44 7939 #define FMC_BTR4_CLKDIV_Msk (0xFU << FMC_BTR4_CLKDIV_Pos) /*!< 0x00F00000 */
lypinator 0:bb348c97df44 7940 #define FMC_BTR4_CLKDIV FMC_BTR4_CLKDIV_Msk /*!<CLKDIV[3:0] bits (Clock divide ratio) */
lypinator 0:bb348c97df44 7941 #define FMC_BTR4_CLKDIV_0 (0x1U << FMC_BTR4_CLKDIV_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 7942 #define FMC_BTR4_CLKDIV_1 (0x2U << FMC_BTR4_CLKDIV_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 7943 #define FMC_BTR4_CLKDIV_2 (0x4U << FMC_BTR4_CLKDIV_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 7944 #define FMC_BTR4_CLKDIV_3 (0x8U << FMC_BTR4_CLKDIV_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 7945
lypinator 0:bb348c97df44 7946 #define FMC_BTR4_DATLAT_Pos (24U)
lypinator 0:bb348c97df44 7947 #define FMC_BTR4_DATLAT_Msk (0xFU << FMC_BTR4_DATLAT_Pos) /*!< 0x0F000000 */
lypinator 0:bb348c97df44 7948 #define FMC_BTR4_DATLAT FMC_BTR4_DATLAT_Msk /*!<DATLA[3:0] bits (Data latency) */
lypinator 0:bb348c97df44 7949 #define FMC_BTR4_DATLAT_0 (0x1U << FMC_BTR4_DATLAT_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 7950 #define FMC_BTR4_DATLAT_1 (0x2U << FMC_BTR4_DATLAT_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 7951 #define FMC_BTR4_DATLAT_2 (0x4U << FMC_BTR4_DATLAT_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 7952 #define FMC_BTR4_DATLAT_3 (0x8U << FMC_BTR4_DATLAT_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 7953
lypinator 0:bb348c97df44 7954 #define FMC_BTR4_ACCMOD_Pos (28U)
lypinator 0:bb348c97df44 7955 #define FMC_BTR4_ACCMOD_Msk (0x3U << FMC_BTR4_ACCMOD_Pos) /*!< 0x30000000 */
lypinator 0:bb348c97df44 7956 #define FMC_BTR4_ACCMOD FMC_BTR4_ACCMOD_Msk /*!<ACCMOD[1:0] bits (Access mode) */
lypinator 0:bb348c97df44 7957 #define FMC_BTR4_ACCMOD_0 (0x1U << FMC_BTR4_ACCMOD_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 7958 #define FMC_BTR4_ACCMOD_1 (0x2U << FMC_BTR4_ACCMOD_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 7959
lypinator 0:bb348c97df44 7960 /****************** Bit definition for FMC_BWTR1 register ******************/
lypinator 0:bb348c97df44 7961 #define FMC_BWTR1_ADDSET_Pos (0U)
lypinator 0:bb348c97df44 7962 #define FMC_BWTR1_ADDSET_Msk (0xFU << FMC_BWTR1_ADDSET_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 7963 #define FMC_BWTR1_ADDSET FMC_BWTR1_ADDSET_Msk /*!<ADDSET[3:0] bits (Address setup phase duration) */
lypinator 0:bb348c97df44 7964 #define FMC_BWTR1_ADDSET_0 (0x1U << FMC_BWTR1_ADDSET_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 7965 #define FMC_BWTR1_ADDSET_1 (0x2U << FMC_BWTR1_ADDSET_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 7966 #define FMC_BWTR1_ADDSET_2 (0x4U << FMC_BWTR1_ADDSET_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 7967 #define FMC_BWTR1_ADDSET_3 (0x8U << FMC_BWTR1_ADDSET_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 7968
lypinator 0:bb348c97df44 7969 #define FMC_BWTR1_ADDHLD_Pos (4U)
lypinator 0:bb348c97df44 7970 #define FMC_BWTR1_ADDHLD_Msk (0xFU << FMC_BWTR1_ADDHLD_Pos) /*!< 0x000000F0 */
lypinator 0:bb348c97df44 7971 #define FMC_BWTR1_ADDHLD FMC_BWTR1_ADDHLD_Msk /*!<ADDHLD[3:0] bits (Address-hold phase duration) */
lypinator 0:bb348c97df44 7972 #define FMC_BWTR1_ADDHLD_0 (0x1U << FMC_BWTR1_ADDHLD_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 7973 #define FMC_BWTR1_ADDHLD_1 (0x2U << FMC_BWTR1_ADDHLD_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 7974 #define FMC_BWTR1_ADDHLD_2 (0x4U << FMC_BWTR1_ADDHLD_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 7975 #define FMC_BWTR1_ADDHLD_3 (0x8U << FMC_BWTR1_ADDHLD_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 7976
lypinator 0:bb348c97df44 7977 #define FMC_BWTR1_DATAST_Pos (8U)
lypinator 0:bb348c97df44 7978 #define FMC_BWTR1_DATAST_Msk (0xFFU << FMC_BWTR1_DATAST_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 7979 #define FMC_BWTR1_DATAST FMC_BWTR1_DATAST_Msk /*!<DATAST [3:0] bits (Data-phase duration) */
lypinator 0:bb348c97df44 7980 #define FMC_BWTR1_DATAST_0 (0x01U << FMC_BWTR1_DATAST_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 7981 #define FMC_BWTR1_DATAST_1 (0x02U << FMC_BWTR1_DATAST_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 7982 #define FMC_BWTR1_DATAST_2 (0x04U << FMC_BWTR1_DATAST_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 7983 #define FMC_BWTR1_DATAST_3 (0x08U << FMC_BWTR1_DATAST_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 7984 #define FMC_BWTR1_DATAST_4 (0x10U << FMC_BWTR1_DATAST_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 7985 #define FMC_BWTR1_DATAST_5 (0x20U << FMC_BWTR1_DATAST_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 7986 #define FMC_BWTR1_DATAST_6 (0x40U << FMC_BWTR1_DATAST_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 7987 #define FMC_BWTR1_DATAST_7 (0x80U << FMC_BWTR1_DATAST_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 7988
lypinator 0:bb348c97df44 7989 #define FMC_BWTR1_BUSTURN_Pos (16U)
lypinator 0:bb348c97df44 7990 #define FMC_BWTR1_BUSTURN_Msk (0xFU << FMC_BWTR1_BUSTURN_Pos) /*!< 0x000F0000 */
lypinator 0:bb348c97df44 7991 #define FMC_BWTR1_BUSTURN FMC_BWTR1_BUSTURN_Msk /*!<BUSTURN[3:0] bits (Bus turnaround duration) */
lypinator 0:bb348c97df44 7992 #define FMC_BWTR1_BUSTURN_0 (0x1U << FMC_BWTR1_BUSTURN_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 7993 #define FMC_BWTR1_BUSTURN_1 (0x2U << FMC_BWTR1_BUSTURN_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 7994 #define FMC_BWTR1_BUSTURN_2 (0x4U << FMC_BWTR1_BUSTURN_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 7995 #define FMC_BWTR1_BUSTURN_3 (0x8U << FMC_BWTR1_BUSTURN_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 7996
lypinator 0:bb348c97df44 7997 #define FMC_BWTR1_ACCMOD_Pos (28U)
lypinator 0:bb348c97df44 7998 #define FMC_BWTR1_ACCMOD_Msk (0x3U << FMC_BWTR1_ACCMOD_Pos) /*!< 0x30000000 */
lypinator 0:bb348c97df44 7999 #define FMC_BWTR1_ACCMOD FMC_BWTR1_ACCMOD_Msk /*!<ACCMOD[1:0] bits (Access mode) */
lypinator 0:bb348c97df44 8000 #define FMC_BWTR1_ACCMOD_0 (0x1U << FMC_BWTR1_ACCMOD_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 8001 #define FMC_BWTR1_ACCMOD_1 (0x2U << FMC_BWTR1_ACCMOD_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 8002
lypinator 0:bb348c97df44 8003 /****************** Bit definition for FMC_BWTR2 register ******************/
lypinator 0:bb348c97df44 8004 #define FMC_BWTR2_ADDSET_Pos (0U)
lypinator 0:bb348c97df44 8005 #define FMC_BWTR2_ADDSET_Msk (0xFU << FMC_BWTR2_ADDSET_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 8006 #define FMC_BWTR2_ADDSET FMC_BWTR2_ADDSET_Msk /*!<ADDSET[3:0] bits (Address setup phase duration) */
lypinator 0:bb348c97df44 8007 #define FMC_BWTR2_ADDSET_0 (0x1U << FMC_BWTR2_ADDSET_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 8008 #define FMC_BWTR2_ADDSET_1 (0x2U << FMC_BWTR2_ADDSET_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 8009 #define FMC_BWTR2_ADDSET_2 (0x4U << FMC_BWTR2_ADDSET_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 8010 #define FMC_BWTR2_ADDSET_3 (0x8U << FMC_BWTR2_ADDSET_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 8011
lypinator 0:bb348c97df44 8012 #define FMC_BWTR2_ADDHLD_Pos (4U)
lypinator 0:bb348c97df44 8013 #define FMC_BWTR2_ADDHLD_Msk (0xFU << FMC_BWTR2_ADDHLD_Pos) /*!< 0x000000F0 */
lypinator 0:bb348c97df44 8014 #define FMC_BWTR2_ADDHLD FMC_BWTR2_ADDHLD_Msk /*!<ADDHLD[3:0] bits (Address-hold phase duration) */
lypinator 0:bb348c97df44 8015 #define FMC_BWTR2_ADDHLD_0 (0x1U << FMC_BWTR2_ADDHLD_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 8016 #define FMC_BWTR2_ADDHLD_1 (0x2U << FMC_BWTR2_ADDHLD_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 8017 #define FMC_BWTR2_ADDHLD_2 (0x4U << FMC_BWTR2_ADDHLD_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 8018 #define FMC_BWTR2_ADDHLD_3 (0x8U << FMC_BWTR2_ADDHLD_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 8019
lypinator 0:bb348c97df44 8020 #define FMC_BWTR2_DATAST_Pos (8U)
lypinator 0:bb348c97df44 8021 #define FMC_BWTR2_DATAST_Msk (0xFFU << FMC_BWTR2_DATAST_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 8022 #define FMC_BWTR2_DATAST FMC_BWTR2_DATAST_Msk /*!<DATAST [3:0] bits (Data-phase duration) */
lypinator 0:bb348c97df44 8023 #define FMC_BWTR2_DATAST_0 (0x01U << FMC_BWTR2_DATAST_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 8024 #define FMC_BWTR2_DATAST_1 (0x02U << FMC_BWTR2_DATAST_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 8025 #define FMC_BWTR2_DATAST_2 (0x04U << FMC_BWTR2_DATAST_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 8026 #define FMC_BWTR2_DATAST_3 (0x08U << FMC_BWTR2_DATAST_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 8027 #define FMC_BWTR2_DATAST_4 (0x10U << FMC_BWTR2_DATAST_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 8028 #define FMC_BWTR2_DATAST_5 (0x20U << FMC_BWTR2_DATAST_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 8029 #define FMC_BWTR2_DATAST_6 (0x40U << FMC_BWTR2_DATAST_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 8030 #define FMC_BWTR2_DATAST_7 (0x80U << FMC_BWTR2_DATAST_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 8031
lypinator 0:bb348c97df44 8032 #define FMC_BWTR2_BUSTURN_Pos (16U)
lypinator 0:bb348c97df44 8033 #define FMC_BWTR2_BUSTURN_Msk (0xFU << FMC_BWTR2_BUSTURN_Pos) /*!< 0x000F0000 */
lypinator 0:bb348c97df44 8034 #define FMC_BWTR2_BUSTURN FMC_BWTR2_BUSTURN_Msk /*!<BUSTURN[3:0] bits (Bus turnaround duration) */
lypinator 0:bb348c97df44 8035 #define FMC_BWTR2_BUSTURN_0 (0x1U << FMC_BWTR2_BUSTURN_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 8036 #define FMC_BWTR2_BUSTURN_1 (0x2U << FMC_BWTR2_BUSTURN_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 8037 #define FMC_BWTR2_BUSTURN_2 (0x4U << FMC_BWTR2_BUSTURN_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 8038 #define FMC_BWTR2_BUSTURN_3 (0x8U << FMC_BWTR2_BUSTURN_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 8039
lypinator 0:bb348c97df44 8040 #define FMC_BWTR2_ACCMOD_Pos (28U)
lypinator 0:bb348c97df44 8041 #define FMC_BWTR2_ACCMOD_Msk (0x3U << FMC_BWTR2_ACCMOD_Pos) /*!< 0x30000000 */
lypinator 0:bb348c97df44 8042 #define FMC_BWTR2_ACCMOD FMC_BWTR2_ACCMOD_Msk /*!<ACCMOD[1:0] bits (Access mode) */
lypinator 0:bb348c97df44 8043 #define FMC_BWTR2_ACCMOD_0 (0x1U << FMC_BWTR2_ACCMOD_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 8044 #define FMC_BWTR2_ACCMOD_1 (0x2U << FMC_BWTR2_ACCMOD_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 8045
lypinator 0:bb348c97df44 8046 /****************** Bit definition for FMC_BWTR3 register ******************/
lypinator 0:bb348c97df44 8047 #define FMC_BWTR3_ADDSET_Pos (0U)
lypinator 0:bb348c97df44 8048 #define FMC_BWTR3_ADDSET_Msk (0xFU << FMC_BWTR3_ADDSET_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 8049 #define FMC_BWTR3_ADDSET FMC_BWTR3_ADDSET_Msk /*!<ADDSET[3:0] bits (Address setup phase duration) */
lypinator 0:bb348c97df44 8050 #define FMC_BWTR3_ADDSET_0 (0x1U << FMC_BWTR3_ADDSET_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 8051 #define FMC_BWTR3_ADDSET_1 (0x2U << FMC_BWTR3_ADDSET_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 8052 #define FMC_BWTR3_ADDSET_2 (0x4U << FMC_BWTR3_ADDSET_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 8053 #define FMC_BWTR3_ADDSET_3 (0x8U << FMC_BWTR3_ADDSET_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 8054
lypinator 0:bb348c97df44 8055 #define FMC_BWTR3_ADDHLD_Pos (4U)
lypinator 0:bb348c97df44 8056 #define FMC_BWTR3_ADDHLD_Msk (0xFU << FMC_BWTR3_ADDHLD_Pos) /*!< 0x000000F0 */
lypinator 0:bb348c97df44 8057 #define FMC_BWTR3_ADDHLD FMC_BWTR3_ADDHLD_Msk /*!<ADDHLD[3:0] bits (Address-hold phase duration) */
lypinator 0:bb348c97df44 8058 #define FMC_BWTR3_ADDHLD_0 (0x1U << FMC_BWTR3_ADDHLD_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 8059 #define FMC_BWTR3_ADDHLD_1 (0x2U << FMC_BWTR3_ADDHLD_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 8060 #define FMC_BWTR3_ADDHLD_2 (0x4U << FMC_BWTR3_ADDHLD_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 8061 #define FMC_BWTR3_ADDHLD_3 (0x8U << FMC_BWTR3_ADDHLD_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 8062
lypinator 0:bb348c97df44 8063 #define FMC_BWTR3_DATAST_Pos (8U)
lypinator 0:bb348c97df44 8064 #define FMC_BWTR3_DATAST_Msk (0xFFU << FMC_BWTR3_DATAST_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 8065 #define FMC_BWTR3_DATAST FMC_BWTR3_DATAST_Msk /*!<DATAST [3:0] bits (Data-phase duration) */
lypinator 0:bb348c97df44 8066 #define FMC_BWTR3_DATAST_0 (0x01U << FMC_BWTR3_DATAST_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 8067 #define FMC_BWTR3_DATAST_1 (0x02U << FMC_BWTR3_DATAST_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 8068 #define FMC_BWTR3_DATAST_2 (0x04U << FMC_BWTR3_DATAST_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 8069 #define FMC_BWTR3_DATAST_3 (0x08U << FMC_BWTR3_DATAST_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 8070 #define FMC_BWTR3_DATAST_4 (0x10U << FMC_BWTR3_DATAST_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 8071 #define FMC_BWTR3_DATAST_5 (0x20U << FMC_BWTR3_DATAST_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 8072 #define FMC_BWTR3_DATAST_6 (0x40U << FMC_BWTR3_DATAST_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 8073 #define FMC_BWTR3_DATAST_7 (0x80U << FMC_BWTR3_DATAST_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 8074
lypinator 0:bb348c97df44 8075 #define FMC_BWTR3_BUSTURN_Pos (16U)
lypinator 0:bb348c97df44 8076 #define FMC_BWTR3_BUSTURN_Msk (0xFU << FMC_BWTR3_BUSTURN_Pos) /*!< 0x000F0000 */
lypinator 0:bb348c97df44 8077 #define FMC_BWTR3_BUSTURN FMC_BWTR3_BUSTURN_Msk /*!<BUSTURN[3:0] bits (Bus turnaround duration) */
lypinator 0:bb348c97df44 8078 #define FMC_BWTR3_BUSTURN_0 (0x1U << FMC_BWTR3_BUSTURN_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 8079 #define FMC_BWTR3_BUSTURN_1 (0x2U << FMC_BWTR3_BUSTURN_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 8080 #define FMC_BWTR3_BUSTURN_2 (0x4U << FMC_BWTR3_BUSTURN_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 8081 #define FMC_BWTR3_BUSTURN_3 (0x8U << FMC_BWTR3_BUSTURN_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 8082
lypinator 0:bb348c97df44 8083 #define FMC_BWTR3_ACCMOD_Pos (28U)
lypinator 0:bb348c97df44 8084 #define FMC_BWTR3_ACCMOD_Msk (0x3U << FMC_BWTR3_ACCMOD_Pos) /*!< 0x30000000 */
lypinator 0:bb348c97df44 8085 #define FMC_BWTR3_ACCMOD FMC_BWTR3_ACCMOD_Msk /*!<ACCMOD[1:0] bits (Access mode) */
lypinator 0:bb348c97df44 8086 #define FMC_BWTR3_ACCMOD_0 (0x1U << FMC_BWTR3_ACCMOD_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 8087 #define FMC_BWTR3_ACCMOD_1 (0x2U << FMC_BWTR3_ACCMOD_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 8088
lypinator 0:bb348c97df44 8089 /****************** Bit definition for FMC_BWTR4 register ******************/
lypinator 0:bb348c97df44 8090 #define FMC_BWTR4_ADDSET_Pos (0U)
lypinator 0:bb348c97df44 8091 #define FMC_BWTR4_ADDSET_Msk (0xFU << FMC_BWTR4_ADDSET_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 8092 #define FMC_BWTR4_ADDSET FMC_BWTR4_ADDSET_Msk /*!<ADDSET[3:0] bits (Address setup phase duration) */
lypinator 0:bb348c97df44 8093 #define FMC_BWTR4_ADDSET_0 (0x1U << FMC_BWTR4_ADDSET_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 8094 #define FMC_BWTR4_ADDSET_1 (0x2U << FMC_BWTR4_ADDSET_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 8095 #define FMC_BWTR4_ADDSET_2 (0x4U << FMC_BWTR4_ADDSET_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 8096 #define FMC_BWTR4_ADDSET_3 (0x8U << FMC_BWTR4_ADDSET_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 8097
lypinator 0:bb348c97df44 8098 #define FMC_BWTR4_ADDHLD_Pos (4U)
lypinator 0:bb348c97df44 8099 #define FMC_BWTR4_ADDHLD_Msk (0xFU << FMC_BWTR4_ADDHLD_Pos) /*!< 0x000000F0 */
lypinator 0:bb348c97df44 8100 #define FMC_BWTR4_ADDHLD FMC_BWTR4_ADDHLD_Msk /*!<ADDHLD[3:0] bits (Address-hold phase duration) */
lypinator 0:bb348c97df44 8101 #define FMC_BWTR4_ADDHLD_0 (0x1U << FMC_BWTR4_ADDHLD_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 8102 #define FMC_BWTR4_ADDHLD_1 (0x2U << FMC_BWTR4_ADDHLD_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 8103 #define FMC_BWTR4_ADDHLD_2 (0x4U << FMC_BWTR4_ADDHLD_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 8104 #define FMC_BWTR4_ADDHLD_3 (0x8U << FMC_BWTR4_ADDHLD_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 8105
lypinator 0:bb348c97df44 8106 #define FMC_BWTR4_DATAST_Pos (8U)
lypinator 0:bb348c97df44 8107 #define FMC_BWTR4_DATAST_Msk (0xFFU << FMC_BWTR4_DATAST_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 8108 #define FMC_BWTR4_DATAST FMC_BWTR4_DATAST_Msk /*!<DATAST [3:0] bits (Data-phase duration) */
lypinator 0:bb348c97df44 8109 #define FMC_BWTR4_DATAST_0 (0x01U << FMC_BWTR4_DATAST_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 8110 #define FMC_BWTR4_DATAST_1 (0x02U << FMC_BWTR4_DATAST_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 8111 #define FMC_BWTR4_DATAST_2 (0x04U << FMC_BWTR4_DATAST_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 8112 #define FMC_BWTR4_DATAST_3 (0x08U << FMC_BWTR4_DATAST_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 8113 #define FMC_BWTR4_DATAST_4 (0x10U << FMC_BWTR4_DATAST_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 8114 #define FMC_BWTR4_DATAST_5 (0x20U << FMC_BWTR4_DATAST_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 8115 #define FMC_BWTR4_DATAST_6 (0x40U << FMC_BWTR4_DATAST_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 8116 #define FMC_BWTR4_DATAST_7 (0x80U << FMC_BWTR4_DATAST_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 8117
lypinator 0:bb348c97df44 8118 #define FMC_BWTR4_BUSTURN_Pos (16U)
lypinator 0:bb348c97df44 8119 #define FMC_BWTR4_BUSTURN_Msk (0xFU << FMC_BWTR4_BUSTURN_Pos) /*!< 0x000F0000 */
lypinator 0:bb348c97df44 8120 #define FMC_BWTR4_BUSTURN FMC_BWTR4_BUSTURN_Msk /*!<BUSTURN[3:0] bits (Bus turnaround duration) */
lypinator 0:bb348c97df44 8121 #define FMC_BWTR4_BUSTURN_0 (0x1U << FMC_BWTR4_BUSTURN_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 8122 #define FMC_BWTR4_BUSTURN_1 (0x2U << FMC_BWTR4_BUSTURN_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 8123 #define FMC_BWTR4_BUSTURN_2 (0x4U << FMC_BWTR4_BUSTURN_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 8124 #define FMC_BWTR4_BUSTURN_3 (0x8U << FMC_BWTR4_BUSTURN_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 8125
lypinator 0:bb348c97df44 8126 #define FMC_BWTR4_ACCMOD_Pos (28U)
lypinator 0:bb348c97df44 8127 #define FMC_BWTR4_ACCMOD_Msk (0x3U << FMC_BWTR4_ACCMOD_Pos) /*!< 0x30000000 */
lypinator 0:bb348c97df44 8128 #define FMC_BWTR4_ACCMOD FMC_BWTR4_ACCMOD_Msk /*!<ACCMOD[1:0] bits (Access mode) */
lypinator 0:bb348c97df44 8129 #define FMC_BWTR4_ACCMOD_0 (0x1U << FMC_BWTR4_ACCMOD_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 8130 #define FMC_BWTR4_ACCMOD_1 (0x2U << FMC_BWTR4_ACCMOD_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 8131
lypinator 0:bb348c97df44 8132 /****************** Bit definition for FMC_PCR2 register *******************/
lypinator 0:bb348c97df44 8133
lypinator 0:bb348c97df44 8134 #define FMC_PCR2_PWAITEN_Pos (1U)
lypinator 0:bb348c97df44 8135 #define FMC_PCR2_PWAITEN_Msk (0x1U << FMC_PCR2_PWAITEN_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 8136 #define FMC_PCR2_PWAITEN FMC_PCR2_PWAITEN_Msk /*!<Wait feature enable bit */
lypinator 0:bb348c97df44 8137 #define FMC_PCR2_PBKEN_Pos (2U)
lypinator 0:bb348c97df44 8138 #define FMC_PCR2_PBKEN_Msk (0x1U << FMC_PCR2_PBKEN_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 8139 #define FMC_PCR2_PBKEN FMC_PCR2_PBKEN_Msk /*!<PC Card/NAND Flash memory bank enable bit */
lypinator 0:bb348c97df44 8140 #define FMC_PCR2_PTYP_Pos (3U)
lypinator 0:bb348c97df44 8141 #define FMC_PCR2_PTYP_Msk (0x1U << FMC_PCR2_PTYP_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 8142 #define FMC_PCR2_PTYP FMC_PCR2_PTYP_Msk /*!<Memory type */
lypinator 0:bb348c97df44 8143
lypinator 0:bb348c97df44 8144 #define FMC_PCR2_PWID_Pos (4U)
lypinator 0:bb348c97df44 8145 #define FMC_PCR2_PWID_Msk (0x3U << FMC_PCR2_PWID_Pos) /*!< 0x00000030 */
lypinator 0:bb348c97df44 8146 #define FMC_PCR2_PWID FMC_PCR2_PWID_Msk /*!<PWID[1:0] bits (NAND Flash databus width) */
lypinator 0:bb348c97df44 8147 #define FMC_PCR2_PWID_0 (0x1U << FMC_PCR2_PWID_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 8148 #define FMC_PCR2_PWID_1 (0x2U << FMC_PCR2_PWID_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 8149
lypinator 0:bb348c97df44 8150 #define FMC_PCR2_ECCEN_Pos (6U)
lypinator 0:bb348c97df44 8151 #define FMC_PCR2_ECCEN_Msk (0x1U << FMC_PCR2_ECCEN_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 8152 #define FMC_PCR2_ECCEN FMC_PCR2_ECCEN_Msk /*!<ECC computation logic enable bit */
lypinator 0:bb348c97df44 8153
lypinator 0:bb348c97df44 8154 #define FMC_PCR2_TCLR_Pos (9U)
lypinator 0:bb348c97df44 8155 #define FMC_PCR2_TCLR_Msk (0xFU << FMC_PCR2_TCLR_Pos) /*!< 0x00001E00 */
lypinator 0:bb348c97df44 8156 #define FMC_PCR2_TCLR FMC_PCR2_TCLR_Msk /*!<TCLR[3:0] bits (CLE to RE delay) */
lypinator 0:bb348c97df44 8157 #define FMC_PCR2_TCLR_0 (0x1U << FMC_PCR2_TCLR_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 8158 #define FMC_PCR2_TCLR_1 (0x2U << FMC_PCR2_TCLR_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 8159 #define FMC_PCR2_TCLR_2 (0x4U << FMC_PCR2_TCLR_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 8160 #define FMC_PCR2_TCLR_3 (0x8U << FMC_PCR2_TCLR_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 8161
lypinator 0:bb348c97df44 8162 #define FMC_PCR2_TAR_Pos (13U)
lypinator 0:bb348c97df44 8163 #define FMC_PCR2_TAR_Msk (0xFU << FMC_PCR2_TAR_Pos) /*!< 0x0001E000 */
lypinator 0:bb348c97df44 8164 #define FMC_PCR2_TAR FMC_PCR2_TAR_Msk /*!<TAR[3:0] bits (ALE to RE delay) */
lypinator 0:bb348c97df44 8165 #define FMC_PCR2_TAR_0 (0x1U << FMC_PCR2_TAR_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 8166 #define FMC_PCR2_TAR_1 (0x2U << FMC_PCR2_TAR_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 8167 #define FMC_PCR2_TAR_2 (0x4U << FMC_PCR2_TAR_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 8168 #define FMC_PCR2_TAR_3 (0x8U << FMC_PCR2_TAR_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 8169
lypinator 0:bb348c97df44 8170 #define FMC_PCR2_ECCPS_Pos (17U)
lypinator 0:bb348c97df44 8171 #define FMC_PCR2_ECCPS_Msk (0x7U << FMC_PCR2_ECCPS_Pos) /*!< 0x000E0000 */
lypinator 0:bb348c97df44 8172 #define FMC_PCR2_ECCPS FMC_PCR2_ECCPS_Msk /*!<ECCPS[1:0] bits (ECC page size) */
lypinator 0:bb348c97df44 8173 #define FMC_PCR2_ECCPS_0 (0x1U << FMC_PCR2_ECCPS_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 8174 #define FMC_PCR2_ECCPS_1 (0x2U << FMC_PCR2_ECCPS_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 8175 #define FMC_PCR2_ECCPS_2 (0x4U << FMC_PCR2_ECCPS_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 8176
lypinator 0:bb348c97df44 8177 /****************** Bit definition for FMC_PCR3 register *******************/
lypinator 0:bb348c97df44 8178 #define FMC_PCR3_PWAITEN_Pos (1U)
lypinator 0:bb348c97df44 8179 #define FMC_PCR3_PWAITEN_Msk (0x1U << FMC_PCR3_PWAITEN_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 8180 #define FMC_PCR3_PWAITEN FMC_PCR3_PWAITEN_Msk /*!<Wait feature enable bit */
lypinator 0:bb348c97df44 8181 #define FMC_PCR3_PBKEN_Pos (2U)
lypinator 0:bb348c97df44 8182 #define FMC_PCR3_PBKEN_Msk (0x1U << FMC_PCR3_PBKEN_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 8183 #define FMC_PCR3_PBKEN FMC_PCR3_PBKEN_Msk /*!<PC Card/NAND Flash memory bank enable bit */
lypinator 0:bb348c97df44 8184 #define FMC_PCR3_PTYP_Pos (3U)
lypinator 0:bb348c97df44 8185 #define FMC_PCR3_PTYP_Msk (0x1U << FMC_PCR3_PTYP_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 8186 #define FMC_PCR3_PTYP FMC_PCR3_PTYP_Msk /*!<Memory type */
lypinator 0:bb348c97df44 8187
lypinator 0:bb348c97df44 8188 #define FMC_PCR3_PWID_Pos (4U)
lypinator 0:bb348c97df44 8189 #define FMC_PCR3_PWID_Msk (0x3U << FMC_PCR3_PWID_Pos) /*!< 0x00000030 */
lypinator 0:bb348c97df44 8190 #define FMC_PCR3_PWID FMC_PCR3_PWID_Msk /*!<PWID[1:0] bits (NAND Flash databus width) */
lypinator 0:bb348c97df44 8191 #define FMC_PCR3_PWID_0 (0x1U << FMC_PCR3_PWID_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 8192 #define FMC_PCR3_PWID_1 (0x2U << FMC_PCR3_PWID_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 8193
lypinator 0:bb348c97df44 8194 #define FMC_PCR3_ECCEN_Pos (6U)
lypinator 0:bb348c97df44 8195 #define FMC_PCR3_ECCEN_Msk (0x1U << FMC_PCR3_ECCEN_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 8196 #define FMC_PCR3_ECCEN FMC_PCR3_ECCEN_Msk /*!<ECC computation logic enable bit */
lypinator 0:bb348c97df44 8197
lypinator 0:bb348c97df44 8198 #define FMC_PCR3_TCLR_Pos (9U)
lypinator 0:bb348c97df44 8199 #define FMC_PCR3_TCLR_Msk (0xFU << FMC_PCR3_TCLR_Pos) /*!< 0x00001E00 */
lypinator 0:bb348c97df44 8200 #define FMC_PCR3_TCLR FMC_PCR3_TCLR_Msk /*!<TCLR[3:0] bits (CLE to RE delay) */
lypinator 0:bb348c97df44 8201 #define FMC_PCR3_TCLR_0 (0x1U << FMC_PCR3_TCLR_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 8202 #define FMC_PCR3_TCLR_1 (0x2U << FMC_PCR3_TCLR_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 8203 #define FMC_PCR3_TCLR_2 (0x4U << FMC_PCR3_TCLR_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 8204 #define FMC_PCR3_TCLR_3 (0x8U << FMC_PCR3_TCLR_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 8205
lypinator 0:bb348c97df44 8206 #define FMC_PCR3_TAR_Pos (13U)
lypinator 0:bb348c97df44 8207 #define FMC_PCR3_TAR_Msk (0xFU << FMC_PCR3_TAR_Pos) /*!< 0x0001E000 */
lypinator 0:bb348c97df44 8208 #define FMC_PCR3_TAR FMC_PCR3_TAR_Msk /*!<TAR[3:0] bits (ALE to RE delay) */
lypinator 0:bb348c97df44 8209 #define FMC_PCR3_TAR_0 (0x1U << FMC_PCR3_TAR_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 8210 #define FMC_PCR3_TAR_1 (0x2U << FMC_PCR3_TAR_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 8211 #define FMC_PCR3_TAR_2 (0x4U << FMC_PCR3_TAR_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 8212 #define FMC_PCR3_TAR_3 (0x8U << FMC_PCR3_TAR_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 8213
lypinator 0:bb348c97df44 8214 #define FMC_PCR3_ECCPS_Pos (17U)
lypinator 0:bb348c97df44 8215 #define FMC_PCR3_ECCPS_Msk (0x7U << FMC_PCR3_ECCPS_Pos) /*!< 0x000E0000 */
lypinator 0:bb348c97df44 8216 #define FMC_PCR3_ECCPS FMC_PCR3_ECCPS_Msk /*!<ECCPS[2:0] bits (ECC page size) */
lypinator 0:bb348c97df44 8217 #define FMC_PCR3_ECCPS_0 (0x1U << FMC_PCR3_ECCPS_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 8218 #define FMC_PCR3_ECCPS_1 (0x2U << FMC_PCR3_ECCPS_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 8219 #define FMC_PCR3_ECCPS_2 (0x4U << FMC_PCR3_ECCPS_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 8220
lypinator 0:bb348c97df44 8221 /****************** Bit definition for FMC_PCR4 register *******************/
lypinator 0:bb348c97df44 8222 #define FMC_PCR4_PWAITEN_Pos (1U)
lypinator 0:bb348c97df44 8223 #define FMC_PCR4_PWAITEN_Msk (0x1U << FMC_PCR4_PWAITEN_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 8224 #define FMC_PCR4_PWAITEN FMC_PCR4_PWAITEN_Msk /*!<Wait feature enable bit */
lypinator 0:bb348c97df44 8225 #define FMC_PCR4_PBKEN_Pos (2U)
lypinator 0:bb348c97df44 8226 #define FMC_PCR4_PBKEN_Msk (0x1U << FMC_PCR4_PBKEN_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 8227 #define FMC_PCR4_PBKEN FMC_PCR4_PBKEN_Msk /*!<PC Card/NAND Flash memory bank enable bit */
lypinator 0:bb348c97df44 8228 #define FMC_PCR4_PTYP_Pos (3U)
lypinator 0:bb348c97df44 8229 #define FMC_PCR4_PTYP_Msk (0x1U << FMC_PCR4_PTYP_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 8230 #define FMC_PCR4_PTYP FMC_PCR4_PTYP_Msk /*!<Memory type */
lypinator 0:bb348c97df44 8231
lypinator 0:bb348c97df44 8232 #define FMC_PCR4_PWID_Pos (4U)
lypinator 0:bb348c97df44 8233 #define FMC_PCR4_PWID_Msk (0x3U << FMC_PCR4_PWID_Pos) /*!< 0x00000030 */
lypinator 0:bb348c97df44 8234 #define FMC_PCR4_PWID FMC_PCR4_PWID_Msk /*!<PWID[1:0] bits (NAND Flash databus width) */
lypinator 0:bb348c97df44 8235 #define FMC_PCR4_PWID_0 (0x1U << FMC_PCR4_PWID_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 8236 #define FMC_PCR4_PWID_1 (0x2U << FMC_PCR4_PWID_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 8237
lypinator 0:bb348c97df44 8238 #define FMC_PCR4_ECCEN_Pos (6U)
lypinator 0:bb348c97df44 8239 #define FMC_PCR4_ECCEN_Msk (0x1U << FMC_PCR4_ECCEN_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 8240 #define FMC_PCR4_ECCEN FMC_PCR4_ECCEN_Msk /*!<ECC computation logic enable bit */
lypinator 0:bb348c97df44 8241
lypinator 0:bb348c97df44 8242 #define FMC_PCR4_TCLR_Pos (9U)
lypinator 0:bb348c97df44 8243 #define FMC_PCR4_TCLR_Msk (0xFU << FMC_PCR4_TCLR_Pos) /*!< 0x00001E00 */
lypinator 0:bb348c97df44 8244 #define FMC_PCR4_TCLR FMC_PCR4_TCLR_Msk /*!<TCLR[3:0] bits (CLE to RE delay) */
lypinator 0:bb348c97df44 8245 #define FMC_PCR4_TCLR_0 (0x1U << FMC_PCR4_TCLR_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 8246 #define FMC_PCR4_TCLR_1 (0x2U << FMC_PCR4_TCLR_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 8247 #define FMC_PCR4_TCLR_2 (0x4U << FMC_PCR4_TCLR_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 8248 #define FMC_PCR4_TCLR_3 (0x8U << FMC_PCR4_TCLR_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 8249
lypinator 0:bb348c97df44 8250 #define FMC_PCR4_TAR_Pos (13U)
lypinator 0:bb348c97df44 8251 #define FMC_PCR4_TAR_Msk (0xFU << FMC_PCR4_TAR_Pos) /*!< 0x0001E000 */
lypinator 0:bb348c97df44 8252 #define FMC_PCR4_TAR FMC_PCR4_TAR_Msk /*!<TAR[3:0] bits (ALE to RE delay) */
lypinator 0:bb348c97df44 8253 #define FMC_PCR4_TAR_0 (0x1U << FMC_PCR4_TAR_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 8254 #define FMC_PCR4_TAR_1 (0x2U << FMC_PCR4_TAR_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 8255 #define FMC_PCR4_TAR_2 (0x4U << FMC_PCR4_TAR_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 8256 #define FMC_PCR4_TAR_3 (0x8U << FMC_PCR4_TAR_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 8257
lypinator 0:bb348c97df44 8258 #define FMC_PCR4_ECCPS_Pos (17U)
lypinator 0:bb348c97df44 8259 #define FMC_PCR4_ECCPS_Msk (0x7U << FMC_PCR4_ECCPS_Pos) /*!< 0x000E0000 */
lypinator 0:bb348c97df44 8260 #define FMC_PCR4_ECCPS FMC_PCR4_ECCPS_Msk /*!<ECCPS[2:0] bits (ECC page size) */
lypinator 0:bb348c97df44 8261 #define FMC_PCR4_ECCPS_0 (0x1U << FMC_PCR4_ECCPS_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 8262 #define FMC_PCR4_ECCPS_1 (0x2U << FMC_PCR4_ECCPS_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 8263 #define FMC_PCR4_ECCPS_2 (0x4U << FMC_PCR4_ECCPS_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 8264
lypinator 0:bb348c97df44 8265 /******************* Bit definition for FMC_SR2 register *******************/
lypinator 0:bb348c97df44 8266 #define FMC_SR2_IRS_Pos (0U)
lypinator 0:bb348c97df44 8267 #define FMC_SR2_IRS_Msk (0x1U << FMC_SR2_IRS_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 8268 #define FMC_SR2_IRS FMC_SR2_IRS_Msk /*!<Interrupt Rising Edge status */
lypinator 0:bb348c97df44 8269 #define FMC_SR2_ILS_Pos (1U)
lypinator 0:bb348c97df44 8270 #define FMC_SR2_ILS_Msk (0x1U << FMC_SR2_ILS_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 8271 #define FMC_SR2_ILS FMC_SR2_ILS_Msk /*!<Interrupt Level status */
lypinator 0:bb348c97df44 8272 #define FMC_SR2_IFS_Pos (2U)
lypinator 0:bb348c97df44 8273 #define FMC_SR2_IFS_Msk (0x1U << FMC_SR2_IFS_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 8274 #define FMC_SR2_IFS FMC_SR2_IFS_Msk /*!<Interrupt Falling Edge status */
lypinator 0:bb348c97df44 8275 #define FMC_SR2_IREN_Pos (3U)
lypinator 0:bb348c97df44 8276 #define FMC_SR2_IREN_Msk (0x1U << FMC_SR2_IREN_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 8277 #define FMC_SR2_IREN FMC_SR2_IREN_Msk /*!<Interrupt Rising Edge detection Enable bit */
lypinator 0:bb348c97df44 8278 #define FMC_SR2_ILEN_Pos (4U)
lypinator 0:bb348c97df44 8279 #define FMC_SR2_ILEN_Msk (0x1U << FMC_SR2_ILEN_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 8280 #define FMC_SR2_ILEN FMC_SR2_ILEN_Msk /*!<Interrupt Level detection Enable bit */
lypinator 0:bb348c97df44 8281 #define FMC_SR2_IFEN_Pos (5U)
lypinator 0:bb348c97df44 8282 #define FMC_SR2_IFEN_Msk (0x1U << FMC_SR2_IFEN_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 8283 #define FMC_SR2_IFEN FMC_SR2_IFEN_Msk /*!<Interrupt Falling Edge detection Enable bit */
lypinator 0:bb348c97df44 8284 #define FMC_SR2_FEMPT_Pos (6U)
lypinator 0:bb348c97df44 8285 #define FMC_SR2_FEMPT_Msk (0x1U << FMC_SR2_FEMPT_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 8286 #define FMC_SR2_FEMPT FMC_SR2_FEMPT_Msk /*!<FIFO empty */
lypinator 0:bb348c97df44 8287
lypinator 0:bb348c97df44 8288 /******************* Bit definition for FMC_SR3 register *******************/
lypinator 0:bb348c97df44 8289 #define FMC_SR3_IRS_Pos (0U)
lypinator 0:bb348c97df44 8290 #define FMC_SR3_IRS_Msk (0x1U << FMC_SR3_IRS_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 8291 #define FMC_SR3_IRS FMC_SR3_IRS_Msk /*!<Interrupt Rising Edge status */
lypinator 0:bb348c97df44 8292 #define FMC_SR3_ILS_Pos (1U)
lypinator 0:bb348c97df44 8293 #define FMC_SR3_ILS_Msk (0x1U << FMC_SR3_ILS_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 8294 #define FMC_SR3_ILS FMC_SR3_ILS_Msk /*!<Interrupt Level status */
lypinator 0:bb348c97df44 8295 #define FMC_SR3_IFS_Pos (2U)
lypinator 0:bb348c97df44 8296 #define FMC_SR3_IFS_Msk (0x1U << FMC_SR3_IFS_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 8297 #define FMC_SR3_IFS FMC_SR3_IFS_Msk /*!<Interrupt Falling Edge status */
lypinator 0:bb348c97df44 8298 #define FMC_SR3_IREN_Pos (3U)
lypinator 0:bb348c97df44 8299 #define FMC_SR3_IREN_Msk (0x1U << FMC_SR3_IREN_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 8300 #define FMC_SR3_IREN FMC_SR3_IREN_Msk /*!<Interrupt Rising Edge detection Enable bit */
lypinator 0:bb348c97df44 8301 #define FMC_SR3_ILEN_Pos (4U)
lypinator 0:bb348c97df44 8302 #define FMC_SR3_ILEN_Msk (0x1U << FMC_SR3_ILEN_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 8303 #define FMC_SR3_ILEN FMC_SR3_ILEN_Msk /*!<Interrupt Level detection Enable bit */
lypinator 0:bb348c97df44 8304 #define FMC_SR3_IFEN_Pos (5U)
lypinator 0:bb348c97df44 8305 #define FMC_SR3_IFEN_Msk (0x1U << FMC_SR3_IFEN_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 8306 #define FMC_SR3_IFEN FMC_SR3_IFEN_Msk /*!<Interrupt Falling Edge detection Enable bit */
lypinator 0:bb348c97df44 8307 #define FMC_SR3_FEMPT_Pos (6U)
lypinator 0:bb348c97df44 8308 #define FMC_SR3_FEMPT_Msk (0x1U << FMC_SR3_FEMPT_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 8309 #define FMC_SR3_FEMPT FMC_SR3_FEMPT_Msk /*!<FIFO empty */
lypinator 0:bb348c97df44 8310
lypinator 0:bb348c97df44 8311 /******************* Bit definition for FMC_SR4 register *******************/
lypinator 0:bb348c97df44 8312 #define FMC_SR4_IRS_Pos (0U)
lypinator 0:bb348c97df44 8313 #define FMC_SR4_IRS_Msk (0x1U << FMC_SR4_IRS_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 8314 #define FMC_SR4_IRS FMC_SR4_IRS_Msk /*!<Interrupt Rising Edge status */
lypinator 0:bb348c97df44 8315 #define FMC_SR4_ILS_Pos (1U)
lypinator 0:bb348c97df44 8316 #define FMC_SR4_ILS_Msk (0x1U << FMC_SR4_ILS_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 8317 #define FMC_SR4_ILS FMC_SR4_ILS_Msk /*!<Interrupt Level status */
lypinator 0:bb348c97df44 8318 #define FMC_SR4_IFS_Pos (2U)
lypinator 0:bb348c97df44 8319 #define FMC_SR4_IFS_Msk (0x1U << FMC_SR4_IFS_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 8320 #define FMC_SR4_IFS FMC_SR4_IFS_Msk /*!<Interrupt Falling Edge status */
lypinator 0:bb348c97df44 8321 #define FMC_SR4_IREN_Pos (3U)
lypinator 0:bb348c97df44 8322 #define FMC_SR4_IREN_Msk (0x1U << FMC_SR4_IREN_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 8323 #define FMC_SR4_IREN FMC_SR4_IREN_Msk /*!<Interrupt Rising Edge detection Enable bit */
lypinator 0:bb348c97df44 8324 #define FMC_SR4_ILEN_Pos (4U)
lypinator 0:bb348c97df44 8325 #define FMC_SR4_ILEN_Msk (0x1U << FMC_SR4_ILEN_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 8326 #define FMC_SR4_ILEN FMC_SR4_ILEN_Msk /*!<Interrupt Level detection Enable bit */
lypinator 0:bb348c97df44 8327 #define FMC_SR4_IFEN_Pos (5U)
lypinator 0:bb348c97df44 8328 #define FMC_SR4_IFEN_Msk (0x1U << FMC_SR4_IFEN_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 8329 #define FMC_SR4_IFEN FMC_SR4_IFEN_Msk /*!<Interrupt Falling Edge detection Enable bit */
lypinator 0:bb348c97df44 8330 #define FMC_SR4_FEMPT_Pos (6U)
lypinator 0:bb348c97df44 8331 #define FMC_SR4_FEMPT_Msk (0x1U << FMC_SR4_FEMPT_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 8332 #define FMC_SR4_FEMPT FMC_SR4_FEMPT_Msk /*!<FIFO empty */
lypinator 0:bb348c97df44 8333
lypinator 0:bb348c97df44 8334 /****************** Bit definition for FMC_PMEM2 register ******************/
lypinator 0:bb348c97df44 8335 #define FMC_PMEM2_MEMSET2_Pos (0U)
lypinator 0:bb348c97df44 8336 #define FMC_PMEM2_MEMSET2_Msk (0xFFU << FMC_PMEM2_MEMSET2_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 8337 #define FMC_PMEM2_MEMSET2 FMC_PMEM2_MEMSET2_Msk /*!<MEMSET2[7:0] bits (Common memory 2 setup time) */
lypinator 0:bb348c97df44 8338 #define FMC_PMEM2_MEMSET2_0 (0x01U << FMC_PMEM2_MEMSET2_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 8339 #define FMC_PMEM2_MEMSET2_1 (0x02U << FMC_PMEM2_MEMSET2_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 8340 #define FMC_PMEM2_MEMSET2_2 (0x04U << FMC_PMEM2_MEMSET2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 8341 #define FMC_PMEM2_MEMSET2_3 (0x08U << FMC_PMEM2_MEMSET2_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 8342 #define FMC_PMEM2_MEMSET2_4 (0x10U << FMC_PMEM2_MEMSET2_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 8343 #define FMC_PMEM2_MEMSET2_5 (0x20U << FMC_PMEM2_MEMSET2_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 8344 #define FMC_PMEM2_MEMSET2_6 (0x40U << FMC_PMEM2_MEMSET2_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 8345 #define FMC_PMEM2_MEMSET2_7 (0x80U << FMC_PMEM2_MEMSET2_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 8346
lypinator 0:bb348c97df44 8347 #define FMC_PMEM2_MEMWAIT2_Pos (8U)
lypinator 0:bb348c97df44 8348 #define FMC_PMEM2_MEMWAIT2_Msk (0xFFU << FMC_PMEM2_MEMWAIT2_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 8349 #define FMC_PMEM2_MEMWAIT2 FMC_PMEM2_MEMWAIT2_Msk /*!<MEMWAIT2[7:0] bits (Common memory 2 wait time) */
lypinator 0:bb348c97df44 8350 #define FMC_PMEM2_MEMWAIT2_0 (0x01U << FMC_PMEM2_MEMWAIT2_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 8351 #define FMC_PMEM2_MEMWAIT2_1 (0x02U << FMC_PMEM2_MEMWAIT2_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 8352 #define FMC_PMEM2_MEMWAIT2_2 (0x04U << FMC_PMEM2_MEMWAIT2_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 8353 #define FMC_PMEM2_MEMWAIT2_3 (0x08U << FMC_PMEM2_MEMWAIT2_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 8354 #define FMC_PMEM2_MEMWAIT2_4 (0x10U << FMC_PMEM2_MEMWAIT2_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 8355 #define FMC_PMEM2_MEMWAIT2_5 (0x20U << FMC_PMEM2_MEMWAIT2_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 8356 #define FMC_PMEM2_MEMWAIT2_6 (0x40U << FMC_PMEM2_MEMWAIT2_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 8357 #define FMC_PMEM2_MEMWAIT2_7 (0x80U << FMC_PMEM2_MEMWAIT2_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 8358
lypinator 0:bb348c97df44 8359 #define FMC_PMEM2_MEMHOLD2_Pos (16U)
lypinator 0:bb348c97df44 8360 #define FMC_PMEM2_MEMHOLD2_Msk (0xFFU << FMC_PMEM2_MEMHOLD2_Pos) /*!< 0x00FF0000 */
lypinator 0:bb348c97df44 8361 #define FMC_PMEM2_MEMHOLD2 FMC_PMEM2_MEMHOLD2_Msk /*!<MEMHOLD2[7:0] bits (Common memory 2 hold time) */
lypinator 0:bb348c97df44 8362 #define FMC_PMEM2_MEMHOLD2_0 (0x01U << FMC_PMEM2_MEMHOLD2_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 8363 #define FMC_PMEM2_MEMHOLD2_1 (0x02U << FMC_PMEM2_MEMHOLD2_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 8364 #define FMC_PMEM2_MEMHOLD2_2 (0x04U << FMC_PMEM2_MEMHOLD2_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 8365 #define FMC_PMEM2_MEMHOLD2_3 (0x08U << FMC_PMEM2_MEMHOLD2_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 8366 #define FMC_PMEM2_MEMHOLD2_4 (0x10U << FMC_PMEM2_MEMHOLD2_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 8367 #define FMC_PMEM2_MEMHOLD2_5 (0x20U << FMC_PMEM2_MEMHOLD2_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 8368 #define FMC_PMEM2_MEMHOLD2_6 (0x40U << FMC_PMEM2_MEMHOLD2_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 8369 #define FMC_PMEM2_MEMHOLD2_7 (0x80U << FMC_PMEM2_MEMHOLD2_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 8370
lypinator 0:bb348c97df44 8371 #define FMC_PMEM2_MEMHIZ2_Pos (24U)
lypinator 0:bb348c97df44 8372 #define FMC_PMEM2_MEMHIZ2_Msk (0xFFU << FMC_PMEM2_MEMHIZ2_Pos) /*!< 0xFF000000 */
lypinator 0:bb348c97df44 8373 #define FMC_PMEM2_MEMHIZ2 FMC_PMEM2_MEMHIZ2_Msk /*!<MEMHIZ2[7:0] bits (Common memory 2 databus HiZ time) */
lypinator 0:bb348c97df44 8374 #define FMC_PMEM2_MEMHIZ2_0 (0x01U << FMC_PMEM2_MEMHIZ2_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 8375 #define FMC_PMEM2_MEMHIZ2_1 (0x02U << FMC_PMEM2_MEMHIZ2_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 8376 #define FMC_PMEM2_MEMHIZ2_2 (0x04U << FMC_PMEM2_MEMHIZ2_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 8377 #define FMC_PMEM2_MEMHIZ2_3 (0x08U << FMC_PMEM2_MEMHIZ2_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 8378 #define FMC_PMEM2_MEMHIZ2_4 (0x10U << FMC_PMEM2_MEMHIZ2_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 8379 #define FMC_PMEM2_MEMHIZ2_5 (0x20U << FMC_PMEM2_MEMHIZ2_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 8380 #define FMC_PMEM2_MEMHIZ2_6 (0x40U << FMC_PMEM2_MEMHIZ2_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 8381 #define FMC_PMEM2_MEMHIZ2_7 (0x80U << FMC_PMEM2_MEMHIZ2_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 8382
lypinator 0:bb348c97df44 8383 /****************** Bit definition for FMC_PMEM3 register ******************/
lypinator 0:bb348c97df44 8384 #define FMC_PMEM3_MEMSET3_Pos (0U)
lypinator 0:bb348c97df44 8385 #define FMC_PMEM3_MEMSET3_Msk (0xFFU << FMC_PMEM3_MEMSET3_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 8386 #define FMC_PMEM3_MEMSET3 FMC_PMEM3_MEMSET3_Msk /*!<MEMSET3[7:0] bits (Common memory 3 setup time) */
lypinator 0:bb348c97df44 8387 #define FMC_PMEM3_MEMSET3_0 (0x01U << FMC_PMEM3_MEMSET3_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 8388 #define FMC_PMEM3_MEMSET3_1 (0x02U << FMC_PMEM3_MEMSET3_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 8389 #define FMC_PMEM3_MEMSET3_2 (0x04U << FMC_PMEM3_MEMSET3_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 8390 #define FMC_PMEM3_MEMSET3_3 (0x08U << FMC_PMEM3_MEMSET3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 8391 #define FMC_PMEM3_MEMSET3_4 (0x10U << FMC_PMEM3_MEMSET3_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 8392 #define FMC_PMEM3_MEMSET3_5 (0x20U << FMC_PMEM3_MEMSET3_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 8393 #define FMC_PMEM3_MEMSET3_6 (0x40U << FMC_PMEM3_MEMSET3_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 8394 #define FMC_PMEM3_MEMSET3_7 (0x80U << FMC_PMEM3_MEMSET3_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 8395
lypinator 0:bb348c97df44 8396 #define FMC_PMEM3_MEMWAIT3_Pos (8U)
lypinator 0:bb348c97df44 8397 #define FMC_PMEM3_MEMWAIT3_Msk (0xFFU << FMC_PMEM3_MEMWAIT3_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 8398 #define FMC_PMEM3_MEMWAIT3 FMC_PMEM3_MEMWAIT3_Msk /*!<MEMWAIT3[7:0] bits (Common memory 3 wait time) */
lypinator 0:bb348c97df44 8399 #define FMC_PMEM3_MEMWAIT3_0 (0x01U << FMC_PMEM3_MEMWAIT3_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 8400 #define FMC_PMEM3_MEMWAIT3_1 (0x02U << FMC_PMEM3_MEMWAIT3_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 8401 #define FMC_PMEM3_MEMWAIT3_2 (0x04U << FMC_PMEM3_MEMWAIT3_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 8402 #define FMC_PMEM3_MEMWAIT3_3 (0x08U << FMC_PMEM3_MEMWAIT3_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 8403 #define FMC_PMEM3_MEMWAIT3_4 (0x10U << FMC_PMEM3_MEMWAIT3_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 8404 #define FMC_PMEM3_MEMWAIT3_5 (0x20U << FMC_PMEM3_MEMWAIT3_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 8405 #define FMC_PMEM3_MEMWAIT3_6 (0x40U << FMC_PMEM3_MEMWAIT3_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 8406 #define FMC_PMEM3_MEMWAIT3_7 (0x80U << FMC_PMEM3_MEMWAIT3_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 8407
lypinator 0:bb348c97df44 8408 #define FMC_PMEM3_MEMHOLD3_Pos (16U)
lypinator 0:bb348c97df44 8409 #define FMC_PMEM3_MEMHOLD3_Msk (0xFFU << FMC_PMEM3_MEMHOLD3_Pos) /*!< 0x00FF0000 */
lypinator 0:bb348c97df44 8410 #define FMC_PMEM3_MEMHOLD3 FMC_PMEM3_MEMHOLD3_Msk /*!<MEMHOLD3[7:0] bits (Common memory 3 hold time) */
lypinator 0:bb348c97df44 8411 #define FMC_PMEM3_MEMHOLD3_0 (0x01U << FMC_PMEM3_MEMHOLD3_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 8412 #define FMC_PMEM3_MEMHOLD3_1 (0x02U << FMC_PMEM3_MEMHOLD3_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 8413 #define FMC_PMEM3_MEMHOLD3_2 (0x04U << FMC_PMEM3_MEMHOLD3_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 8414 #define FMC_PMEM3_MEMHOLD3_3 (0x08U << FMC_PMEM3_MEMHOLD3_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 8415 #define FMC_PMEM3_MEMHOLD3_4 (0x10U << FMC_PMEM3_MEMHOLD3_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 8416 #define FMC_PMEM3_MEMHOLD3_5 (0x20U << FMC_PMEM3_MEMHOLD3_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 8417 #define FMC_PMEM3_MEMHOLD3_6 (0x40U << FMC_PMEM3_MEMHOLD3_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 8418 #define FMC_PMEM3_MEMHOLD3_7 (0x80U << FMC_PMEM3_MEMHOLD3_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 8419
lypinator 0:bb348c97df44 8420 #define FMC_PMEM3_MEMHIZ3_Pos (24U)
lypinator 0:bb348c97df44 8421 #define FMC_PMEM3_MEMHIZ3_Msk (0xFFU << FMC_PMEM3_MEMHIZ3_Pos) /*!< 0xFF000000 */
lypinator 0:bb348c97df44 8422 #define FMC_PMEM3_MEMHIZ3 FMC_PMEM3_MEMHIZ3_Msk /*!<MEMHIZ3[7:0] bits (Common memory 3 databus HiZ time) */
lypinator 0:bb348c97df44 8423 #define FMC_PMEM3_MEMHIZ3_0 (0x01U << FMC_PMEM3_MEMHIZ3_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 8424 #define FMC_PMEM3_MEMHIZ3_1 (0x02U << FMC_PMEM3_MEMHIZ3_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 8425 #define FMC_PMEM3_MEMHIZ3_2 (0x04U << FMC_PMEM3_MEMHIZ3_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 8426 #define FMC_PMEM3_MEMHIZ3_3 (0x08U << FMC_PMEM3_MEMHIZ3_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 8427 #define FMC_PMEM3_MEMHIZ3_4 (0x10U << FMC_PMEM3_MEMHIZ3_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 8428 #define FMC_PMEM3_MEMHIZ3_5 (0x20U << FMC_PMEM3_MEMHIZ3_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 8429 #define FMC_PMEM3_MEMHIZ3_6 (0x40U << FMC_PMEM3_MEMHIZ3_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 8430 #define FMC_PMEM3_MEMHIZ3_7 (0x80U << FMC_PMEM3_MEMHIZ3_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 8431
lypinator 0:bb348c97df44 8432 /****************** Bit definition for FMC_PMEM4 register ******************/
lypinator 0:bb348c97df44 8433 #define FMC_PMEM4_MEMSET4_Pos (0U)
lypinator 0:bb348c97df44 8434 #define FMC_PMEM4_MEMSET4_Msk (0xFFU << FMC_PMEM4_MEMSET4_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 8435 #define FMC_PMEM4_MEMSET4 FMC_PMEM4_MEMSET4_Msk /*!<MEMSET4[7:0] bits (Common memory 4 setup time) */
lypinator 0:bb348c97df44 8436 #define FMC_PMEM4_MEMSET4_0 (0x01U << FMC_PMEM4_MEMSET4_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 8437 #define FMC_PMEM4_MEMSET4_1 (0x02U << FMC_PMEM4_MEMSET4_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 8438 #define FMC_PMEM4_MEMSET4_2 (0x04U << FMC_PMEM4_MEMSET4_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 8439 #define FMC_PMEM4_MEMSET4_3 (0x08U << FMC_PMEM4_MEMSET4_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 8440 #define FMC_PMEM4_MEMSET4_4 (0x10U << FMC_PMEM4_MEMSET4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 8441 #define FMC_PMEM4_MEMSET4_5 (0x20U << FMC_PMEM4_MEMSET4_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 8442 #define FMC_PMEM4_MEMSET4_6 (0x40U << FMC_PMEM4_MEMSET4_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 8443 #define FMC_PMEM4_MEMSET4_7 (0x80U << FMC_PMEM4_MEMSET4_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 8444
lypinator 0:bb348c97df44 8445 #define FMC_PMEM4_MEMWAIT4_Pos (8U)
lypinator 0:bb348c97df44 8446 #define FMC_PMEM4_MEMWAIT4_Msk (0xFFU << FMC_PMEM4_MEMWAIT4_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 8447 #define FMC_PMEM4_MEMWAIT4 FMC_PMEM4_MEMWAIT4_Msk /*!<MEMWAIT4[7:0] bits (Common memory 4 wait time) */
lypinator 0:bb348c97df44 8448 #define FMC_PMEM4_MEMWAIT4_0 (0x01U << FMC_PMEM4_MEMWAIT4_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 8449 #define FMC_PMEM4_MEMWAIT4_1 (0x02U << FMC_PMEM4_MEMWAIT4_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 8450 #define FMC_PMEM4_MEMWAIT4_2 (0x04U << FMC_PMEM4_MEMWAIT4_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 8451 #define FMC_PMEM4_MEMWAIT4_3 (0x08U << FMC_PMEM4_MEMWAIT4_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 8452 #define FMC_PMEM4_MEMWAIT4_4 (0x10U << FMC_PMEM4_MEMWAIT4_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 8453 #define FMC_PMEM4_MEMWAIT4_5 (0x20U << FMC_PMEM4_MEMWAIT4_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 8454 #define FMC_PMEM4_MEMWAIT4_6 (0x40U << FMC_PMEM4_MEMWAIT4_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 8455 #define FMC_PMEM4_MEMWAIT4_7 (0x80U << FMC_PMEM4_MEMWAIT4_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 8456
lypinator 0:bb348c97df44 8457 #define FMC_PMEM4_MEMHOLD4_Pos (16U)
lypinator 0:bb348c97df44 8458 #define FMC_PMEM4_MEMHOLD4_Msk (0xFFU << FMC_PMEM4_MEMHOLD4_Pos) /*!< 0x00FF0000 */
lypinator 0:bb348c97df44 8459 #define FMC_PMEM4_MEMHOLD4 FMC_PMEM4_MEMHOLD4_Msk /*!<MEMHOLD4[7:0] bits (Common memory 4 hold time) */
lypinator 0:bb348c97df44 8460 #define FMC_PMEM4_MEMHOLD4_0 (0x01U << FMC_PMEM4_MEMHOLD4_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 8461 #define FMC_PMEM4_MEMHOLD4_1 (0x02U << FMC_PMEM4_MEMHOLD4_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 8462 #define FMC_PMEM4_MEMHOLD4_2 (0x04U << FMC_PMEM4_MEMHOLD4_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 8463 #define FMC_PMEM4_MEMHOLD4_3 (0x08U << FMC_PMEM4_MEMHOLD4_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 8464 #define FMC_PMEM4_MEMHOLD4_4 (0x10U << FMC_PMEM4_MEMHOLD4_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 8465 #define FMC_PMEM4_MEMHOLD4_5 (0x20U << FMC_PMEM4_MEMHOLD4_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 8466 #define FMC_PMEM4_MEMHOLD4_6 (0x40U << FMC_PMEM4_MEMHOLD4_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 8467 #define FMC_PMEM4_MEMHOLD4_7 (0x80U << FMC_PMEM4_MEMHOLD4_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 8468
lypinator 0:bb348c97df44 8469 #define FMC_PMEM4_MEMHIZ4_Pos (24U)
lypinator 0:bb348c97df44 8470 #define FMC_PMEM4_MEMHIZ4_Msk (0xFFU << FMC_PMEM4_MEMHIZ4_Pos) /*!< 0xFF000000 */
lypinator 0:bb348c97df44 8471 #define FMC_PMEM4_MEMHIZ4 FMC_PMEM4_MEMHIZ4_Msk /*!<MEMHIZ4[7:0] bits (Common memory 4 databus HiZ time) */
lypinator 0:bb348c97df44 8472 #define FMC_PMEM4_MEMHIZ4_0 (0x01U << FMC_PMEM4_MEMHIZ4_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 8473 #define FMC_PMEM4_MEMHIZ4_1 (0x02U << FMC_PMEM4_MEMHIZ4_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 8474 #define FMC_PMEM4_MEMHIZ4_2 (0x04U << FMC_PMEM4_MEMHIZ4_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 8475 #define FMC_PMEM4_MEMHIZ4_3 (0x08U << FMC_PMEM4_MEMHIZ4_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 8476 #define FMC_PMEM4_MEMHIZ4_4 (0x10U << FMC_PMEM4_MEMHIZ4_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 8477 #define FMC_PMEM4_MEMHIZ4_5 (0x20U << FMC_PMEM4_MEMHIZ4_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 8478 #define FMC_PMEM4_MEMHIZ4_6 (0x40U << FMC_PMEM4_MEMHIZ4_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 8479 #define FMC_PMEM4_MEMHIZ4_7 (0x80U << FMC_PMEM4_MEMHIZ4_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 8480
lypinator 0:bb348c97df44 8481 /****************** Bit definition for FMC_PATT2 register ******************/
lypinator 0:bb348c97df44 8482 #define FMC_PATT2_ATTSET2_Pos (0U)
lypinator 0:bb348c97df44 8483 #define FMC_PATT2_ATTSET2_Msk (0xFFU << FMC_PATT2_ATTSET2_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 8484 #define FMC_PATT2_ATTSET2 FMC_PATT2_ATTSET2_Msk /*!<ATTSET2[7:0] bits (Attribute memory 2 setup time) */
lypinator 0:bb348c97df44 8485 #define FMC_PATT2_ATTSET2_0 (0x01U << FMC_PATT2_ATTSET2_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 8486 #define FMC_PATT2_ATTSET2_1 (0x02U << FMC_PATT2_ATTSET2_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 8487 #define FMC_PATT2_ATTSET2_2 (0x04U << FMC_PATT2_ATTSET2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 8488 #define FMC_PATT2_ATTSET2_3 (0x08U << FMC_PATT2_ATTSET2_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 8489 #define FMC_PATT2_ATTSET2_4 (0x10U << FMC_PATT2_ATTSET2_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 8490 #define FMC_PATT2_ATTSET2_5 (0x20U << FMC_PATT2_ATTSET2_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 8491 #define FMC_PATT2_ATTSET2_6 (0x40U << FMC_PATT2_ATTSET2_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 8492 #define FMC_PATT2_ATTSET2_7 (0x80U << FMC_PATT2_ATTSET2_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 8493
lypinator 0:bb348c97df44 8494 #define FMC_PATT2_ATTWAIT2_Pos (8U)
lypinator 0:bb348c97df44 8495 #define FMC_PATT2_ATTWAIT2_Msk (0xFFU << FMC_PATT2_ATTWAIT2_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 8496 #define FMC_PATT2_ATTWAIT2 FMC_PATT2_ATTWAIT2_Msk /*!<ATTWAIT2[7:0] bits (Attribute memory 2 wait time) */
lypinator 0:bb348c97df44 8497 #define FMC_PATT2_ATTWAIT2_0 (0x01U << FMC_PATT2_ATTWAIT2_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 8498 #define FMC_PATT2_ATTWAIT2_1 (0x02U << FMC_PATT2_ATTWAIT2_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 8499 #define FMC_PATT2_ATTWAIT2_2 (0x04U << FMC_PATT2_ATTWAIT2_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 8500 #define FMC_PATT2_ATTWAIT2_3 (0x08U << FMC_PATT2_ATTWAIT2_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 8501 #define FMC_PATT2_ATTWAIT2_4 (0x10U << FMC_PATT2_ATTWAIT2_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 8502 #define FMC_PATT2_ATTWAIT2_5 (0x20U << FMC_PATT2_ATTWAIT2_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 8503 #define FMC_PATT2_ATTWAIT2_6 (0x40U << FMC_PATT2_ATTWAIT2_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 8504 #define FMC_PATT2_ATTWAIT2_7 (0x80U << FMC_PATT2_ATTWAIT2_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 8505
lypinator 0:bb348c97df44 8506 #define FMC_PATT2_ATTHOLD2_Pos (16U)
lypinator 0:bb348c97df44 8507 #define FMC_PATT2_ATTHOLD2_Msk (0xFFU << FMC_PATT2_ATTHOLD2_Pos) /*!< 0x00FF0000 */
lypinator 0:bb348c97df44 8508 #define FMC_PATT2_ATTHOLD2 FMC_PATT2_ATTHOLD2_Msk /*!<ATTHOLD2[7:0] bits (Attribute memory 2 hold time) */
lypinator 0:bb348c97df44 8509 #define FMC_PATT2_ATTHOLD2_0 (0x01U << FMC_PATT2_ATTHOLD2_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 8510 #define FMC_PATT2_ATTHOLD2_1 (0x02U << FMC_PATT2_ATTHOLD2_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 8511 #define FMC_PATT2_ATTHOLD2_2 (0x04U << FMC_PATT2_ATTHOLD2_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 8512 #define FMC_PATT2_ATTHOLD2_3 (0x08U << FMC_PATT2_ATTHOLD2_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 8513 #define FMC_PATT2_ATTHOLD2_4 (0x10U << FMC_PATT2_ATTHOLD2_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 8514 #define FMC_PATT2_ATTHOLD2_5 (0x20U << FMC_PATT2_ATTHOLD2_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 8515 #define FMC_PATT2_ATTHOLD2_6 (0x40U << FMC_PATT2_ATTHOLD2_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 8516 #define FMC_PATT2_ATTHOLD2_7 (0x80U << FMC_PATT2_ATTHOLD2_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 8517
lypinator 0:bb348c97df44 8518 #define FMC_PATT2_ATTHIZ2_Pos (24U)
lypinator 0:bb348c97df44 8519 #define FMC_PATT2_ATTHIZ2_Msk (0xFFU << FMC_PATT2_ATTHIZ2_Pos) /*!< 0xFF000000 */
lypinator 0:bb348c97df44 8520 #define FMC_PATT2_ATTHIZ2 FMC_PATT2_ATTHIZ2_Msk /*!<ATTHIZ2[7:0] bits (Attribute memory 2 databus HiZ time) */
lypinator 0:bb348c97df44 8521 #define FMC_PATT2_ATTHIZ2_0 (0x01U << FMC_PATT2_ATTHIZ2_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 8522 #define FMC_PATT2_ATTHIZ2_1 (0x02U << FMC_PATT2_ATTHIZ2_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 8523 #define FMC_PATT2_ATTHIZ2_2 (0x04U << FMC_PATT2_ATTHIZ2_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 8524 #define FMC_PATT2_ATTHIZ2_3 (0x08U << FMC_PATT2_ATTHIZ2_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 8525 #define FMC_PATT2_ATTHIZ2_4 (0x10U << FMC_PATT2_ATTHIZ2_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 8526 #define FMC_PATT2_ATTHIZ2_5 (0x20U << FMC_PATT2_ATTHIZ2_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 8527 #define FMC_PATT2_ATTHIZ2_6 (0x40U << FMC_PATT2_ATTHIZ2_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 8528 #define FMC_PATT2_ATTHIZ2_7 (0x80U << FMC_PATT2_ATTHIZ2_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 8529
lypinator 0:bb348c97df44 8530 /****************** Bit definition for FMC_PATT3 register ******************/
lypinator 0:bb348c97df44 8531 #define FMC_PATT3_ATTSET3_Pos (0U)
lypinator 0:bb348c97df44 8532 #define FMC_PATT3_ATTSET3_Msk (0xFFU << FMC_PATT3_ATTSET3_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 8533 #define FMC_PATT3_ATTSET3 FMC_PATT3_ATTSET3_Msk /*!<ATTSET3[7:0] bits (Attribute memory 3 setup time) */
lypinator 0:bb348c97df44 8534 #define FMC_PATT3_ATTSET3_0 (0x01U << FMC_PATT3_ATTSET3_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 8535 #define FMC_PATT3_ATTSET3_1 (0x02U << FMC_PATT3_ATTSET3_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 8536 #define FMC_PATT3_ATTSET3_2 (0x04U << FMC_PATT3_ATTSET3_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 8537 #define FMC_PATT3_ATTSET3_3 (0x08U << FMC_PATT3_ATTSET3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 8538 #define FMC_PATT3_ATTSET3_4 (0x10U << FMC_PATT3_ATTSET3_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 8539 #define FMC_PATT3_ATTSET3_5 (0x20U << FMC_PATT3_ATTSET3_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 8540 #define FMC_PATT3_ATTSET3_6 (0x40U << FMC_PATT3_ATTSET3_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 8541 #define FMC_PATT3_ATTSET3_7 (0x80U << FMC_PATT3_ATTSET3_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 8542
lypinator 0:bb348c97df44 8543 #define FMC_PATT3_ATTWAIT3_Pos (8U)
lypinator 0:bb348c97df44 8544 #define FMC_PATT3_ATTWAIT3_Msk (0xFFU << FMC_PATT3_ATTWAIT3_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 8545 #define FMC_PATT3_ATTWAIT3 FMC_PATT3_ATTWAIT3_Msk /*!<ATTWAIT3[7:0] bits (Attribute memory 3 wait time) */
lypinator 0:bb348c97df44 8546 #define FMC_PATT3_ATTWAIT3_0 (0x01U << FMC_PATT3_ATTWAIT3_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 8547 #define FMC_PATT3_ATTWAIT3_1 (0x02U << FMC_PATT3_ATTWAIT3_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 8548 #define FMC_PATT3_ATTWAIT3_2 (0x04U << FMC_PATT3_ATTWAIT3_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 8549 #define FMC_PATT3_ATTWAIT3_3 (0x08U << FMC_PATT3_ATTWAIT3_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 8550 #define FMC_PATT3_ATTWAIT3_4 (0x10U << FMC_PATT3_ATTWAIT3_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 8551 #define FMC_PATT3_ATTWAIT3_5 (0x20U << FMC_PATT3_ATTWAIT3_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 8552 #define FMC_PATT3_ATTWAIT3_6 (0x40U << FMC_PATT3_ATTWAIT3_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 8553 #define FMC_PATT3_ATTWAIT3_7 (0x80U << FMC_PATT3_ATTWAIT3_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 8554
lypinator 0:bb348c97df44 8555 #define FMC_PATT3_ATTHOLD3_Pos (16U)
lypinator 0:bb348c97df44 8556 #define FMC_PATT3_ATTHOLD3_Msk (0xFFU << FMC_PATT3_ATTHOLD3_Pos) /*!< 0x00FF0000 */
lypinator 0:bb348c97df44 8557 #define FMC_PATT3_ATTHOLD3 FMC_PATT3_ATTHOLD3_Msk /*!<ATTHOLD3[7:0] bits (Attribute memory 3 hold time) */
lypinator 0:bb348c97df44 8558 #define FMC_PATT3_ATTHOLD3_0 (0x01U << FMC_PATT3_ATTHOLD3_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 8559 #define FMC_PATT3_ATTHOLD3_1 (0x02U << FMC_PATT3_ATTHOLD3_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 8560 #define FMC_PATT3_ATTHOLD3_2 (0x04U << FMC_PATT3_ATTHOLD3_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 8561 #define FMC_PATT3_ATTHOLD3_3 (0x08U << FMC_PATT3_ATTHOLD3_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 8562 #define FMC_PATT3_ATTHOLD3_4 (0x10U << FMC_PATT3_ATTHOLD3_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 8563 #define FMC_PATT3_ATTHOLD3_5 (0x20U << FMC_PATT3_ATTHOLD3_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 8564 #define FMC_PATT3_ATTHOLD3_6 (0x40U << FMC_PATT3_ATTHOLD3_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 8565 #define FMC_PATT3_ATTHOLD3_7 (0x80U << FMC_PATT3_ATTHOLD3_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 8566
lypinator 0:bb348c97df44 8567 #define FMC_PATT3_ATTHIZ3_Pos (24U)
lypinator 0:bb348c97df44 8568 #define FMC_PATT3_ATTHIZ3_Msk (0xFFU << FMC_PATT3_ATTHIZ3_Pos) /*!< 0xFF000000 */
lypinator 0:bb348c97df44 8569 #define FMC_PATT3_ATTHIZ3 FMC_PATT3_ATTHIZ3_Msk /*!<ATTHIZ3[7:0] bits (Attribute memory 3 databus HiZ time) */
lypinator 0:bb348c97df44 8570 #define FMC_PATT3_ATTHIZ3_0 (0x01U << FMC_PATT3_ATTHIZ3_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 8571 #define FMC_PATT3_ATTHIZ3_1 (0x02U << FMC_PATT3_ATTHIZ3_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 8572 #define FMC_PATT3_ATTHIZ3_2 (0x04U << FMC_PATT3_ATTHIZ3_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 8573 #define FMC_PATT3_ATTHIZ3_3 (0x08U << FMC_PATT3_ATTHIZ3_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 8574 #define FMC_PATT3_ATTHIZ3_4 (0x10U << FMC_PATT3_ATTHIZ3_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 8575 #define FMC_PATT3_ATTHIZ3_5 (0x20U << FMC_PATT3_ATTHIZ3_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 8576 #define FMC_PATT3_ATTHIZ3_6 (0x40U << FMC_PATT3_ATTHIZ3_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 8577 #define FMC_PATT3_ATTHIZ3_7 (0x80U << FMC_PATT3_ATTHIZ3_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 8578
lypinator 0:bb348c97df44 8579 /****************** Bit definition for FMC_PATT4 register ******************/
lypinator 0:bb348c97df44 8580 #define FMC_PATT4_ATTSET4_Pos (0U)
lypinator 0:bb348c97df44 8581 #define FMC_PATT4_ATTSET4_Msk (0xFFU << FMC_PATT4_ATTSET4_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 8582 #define FMC_PATT4_ATTSET4 FMC_PATT4_ATTSET4_Msk /*!<ATTSET4[7:0] bits (Attribute memory 4 setup time) */
lypinator 0:bb348c97df44 8583 #define FMC_PATT4_ATTSET4_0 (0x01U << FMC_PATT4_ATTSET4_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 8584 #define FMC_PATT4_ATTSET4_1 (0x02U << FMC_PATT4_ATTSET4_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 8585 #define FMC_PATT4_ATTSET4_2 (0x04U << FMC_PATT4_ATTSET4_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 8586 #define FMC_PATT4_ATTSET4_3 (0x08U << FMC_PATT4_ATTSET4_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 8587 #define FMC_PATT4_ATTSET4_4 (0x10U << FMC_PATT4_ATTSET4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 8588 #define FMC_PATT4_ATTSET4_5 (0x20U << FMC_PATT4_ATTSET4_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 8589 #define FMC_PATT4_ATTSET4_6 (0x40U << FMC_PATT4_ATTSET4_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 8590 #define FMC_PATT4_ATTSET4_7 (0x80U << FMC_PATT4_ATTSET4_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 8591
lypinator 0:bb348c97df44 8592 #define FMC_PATT4_ATTWAIT4_Pos (8U)
lypinator 0:bb348c97df44 8593 #define FMC_PATT4_ATTWAIT4_Msk (0xFFU << FMC_PATT4_ATTWAIT4_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 8594 #define FMC_PATT4_ATTWAIT4 FMC_PATT4_ATTWAIT4_Msk /*!<ATTWAIT4[7:0] bits (Attribute memory 4 wait time) */
lypinator 0:bb348c97df44 8595 #define FMC_PATT4_ATTWAIT4_0 (0x01U << FMC_PATT4_ATTWAIT4_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 8596 #define FMC_PATT4_ATTWAIT4_1 (0x02U << FMC_PATT4_ATTWAIT4_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 8597 #define FMC_PATT4_ATTWAIT4_2 (0x04U << FMC_PATT4_ATTWAIT4_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 8598 #define FMC_PATT4_ATTWAIT4_3 (0x08U << FMC_PATT4_ATTWAIT4_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 8599 #define FMC_PATT4_ATTWAIT4_4 (0x10U << FMC_PATT4_ATTWAIT4_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 8600 #define FMC_PATT4_ATTWAIT4_5 (0x20U << FMC_PATT4_ATTWAIT4_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 8601 #define FMC_PATT4_ATTWAIT4_6 (0x40U << FMC_PATT4_ATTWAIT4_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 8602 #define FMC_PATT4_ATTWAIT4_7 (0x80U << FMC_PATT4_ATTWAIT4_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 8603
lypinator 0:bb348c97df44 8604 #define FMC_PATT4_ATTHOLD4_Pos (16U)
lypinator 0:bb348c97df44 8605 #define FMC_PATT4_ATTHOLD4_Msk (0xFFU << FMC_PATT4_ATTHOLD4_Pos) /*!< 0x00FF0000 */
lypinator 0:bb348c97df44 8606 #define FMC_PATT4_ATTHOLD4 FMC_PATT4_ATTHOLD4_Msk /*!<ATTHOLD4[7:0] bits (Attribute memory 4 hold time) */
lypinator 0:bb348c97df44 8607 #define FMC_PATT4_ATTHOLD4_0 (0x01U << FMC_PATT4_ATTHOLD4_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 8608 #define FMC_PATT4_ATTHOLD4_1 (0x02U << FMC_PATT4_ATTHOLD4_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 8609 #define FMC_PATT4_ATTHOLD4_2 (0x04U << FMC_PATT4_ATTHOLD4_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 8610 #define FMC_PATT4_ATTHOLD4_3 (0x08U << FMC_PATT4_ATTHOLD4_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 8611 #define FMC_PATT4_ATTHOLD4_4 (0x10U << FMC_PATT4_ATTHOLD4_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 8612 #define FMC_PATT4_ATTHOLD4_5 (0x20U << FMC_PATT4_ATTHOLD4_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 8613 #define FMC_PATT4_ATTHOLD4_6 (0x40U << FMC_PATT4_ATTHOLD4_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 8614 #define FMC_PATT4_ATTHOLD4_7 (0x80U << FMC_PATT4_ATTHOLD4_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 8615
lypinator 0:bb348c97df44 8616 #define FMC_PATT4_ATTHIZ4_Pos (24U)
lypinator 0:bb348c97df44 8617 #define FMC_PATT4_ATTHIZ4_Msk (0xFFU << FMC_PATT4_ATTHIZ4_Pos) /*!< 0xFF000000 */
lypinator 0:bb348c97df44 8618 #define FMC_PATT4_ATTHIZ4 FMC_PATT4_ATTHIZ4_Msk /*!<ATTHIZ4[7:0] bits (Attribute memory 4 databus HiZ time) */
lypinator 0:bb348c97df44 8619 #define FMC_PATT4_ATTHIZ4_0 (0x01U << FMC_PATT4_ATTHIZ4_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 8620 #define FMC_PATT4_ATTHIZ4_1 (0x02U << FMC_PATT4_ATTHIZ4_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 8621 #define FMC_PATT4_ATTHIZ4_2 (0x04U << FMC_PATT4_ATTHIZ4_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 8622 #define FMC_PATT4_ATTHIZ4_3 (0x08U << FMC_PATT4_ATTHIZ4_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 8623 #define FMC_PATT4_ATTHIZ4_4 (0x10U << FMC_PATT4_ATTHIZ4_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 8624 #define FMC_PATT4_ATTHIZ4_5 (0x20U << FMC_PATT4_ATTHIZ4_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 8625 #define FMC_PATT4_ATTHIZ4_6 (0x40U << FMC_PATT4_ATTHIZ4_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 8626 #define FMC_PATT4_ATTHIZ4_7 (0x80U << FMC_PATT4_ATTHIZ4_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 8627
lypinator 0:bb348c97df44 8628 /****************** Bit definition for FMC_PIO4 register *******************/
lypinator 0:bb348c97df44 8629 #define FMC_PIO4_IOSET4_Pos (0U)
lypinator 0:bb348c97df44 8630 #define FMC_PIO4_IOSET4_Msk (0xFFU << FMC_PIO4_IOSET4_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 8631 #define FMC_PIO4_IOSET4 FMC_PIO4_IOSET4_Msk /*!<IOSET4[7:0] bits (I/O 4 setup time) */
lypinator 0:bb348c97df44 8632 #define FMC_PIO4_IOSET4_0 (0x01U << FMC_PIO4_IOSET4_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 8633 #define FMC_PIO4_IOSET4_1 (0x02U << FMC_PIO4_IOSET4_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 8634 #define FMC_PIO4_IOSET4_2 (0x04U << FMC_PIO4_IOSET4_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 8635 #define FMC_PIO4_IOSET4_3 (0x08U << FMC_PIO4_IOSET4_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 8636 #define FMC_PIO4_IOSET4_4 (0x10U << FMC_PIO4_IOSET4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 8637 #define FMC_PIO4_IOSET4_5 (0x20U << FMC_PIO4_IOSET4_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 8638 #define FMC_PIO4_IOSET4_6 (0x40U << FMC_PIO4_IOSET4_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 8639 #define FMC_PIO4_IOSET4_7 (0x80U << FMC_PIO4_IOSET4_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 8640
lypinator 0:bb348c97df44 8641 #define FMC_PIO4_IOWAIT4_Pos (8U)
lypinator 0:bb348c97df44 8642 #define FMC_PIO4_IOWAIT4_Msk (0xFFU << FMC_PIO4_IOWAIT4_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 8643 #define FMC_PIO4_IOWAIT4 FMC_PIO4_IOWAIT4_Msk /*!<IOWAIT4[7:0] bits (I/O 4 wait time) */
lypinator 0:bb348c97df44 8644 #define FMC_PIO4_IOWAIT4_0 (0x01U << FMC_PIO4_IOWAIT4_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 8645 #define FMC_PIO4_IOWAIT4_1 (0x02U << FMC_PIO4_IOWAIT4_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 8646 #define FMC_PIO4_IOWAIT4_2 (0x04U << FMC_PIO4_IOWAIT4_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 8647 #define FMC_PIO4_IOWAIT4_3 (0x08U << FMC_PIO4_IOWAIT4_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 8648 #define FMC_PIO4_IOWAIT4_4 (0x10U << FMC_PIO4_IOWAIT4_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 8649 #define FMC_PIO4_IOWAIT4_5 (0x20U << FMC_PIO4_IOWAIT4_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 8650 #define FMC_PIO4_IOWAIT4_6 (0x40U << FMC_PIO4_IOWAIT4_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 8651 #define FMC_PIO4_IOWAIT4_7 (0x80U << FMC_PIO4_IOWAIT4_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 8652
lypinator 0:bb348c97df44 8653 #define FMC_PIO4_IOHOLD4_Pos (16U)
lypinator 0:bb348c97df44 8654 #define FMC_PIO4_IOHOLD4_Msk (0xFFU << FMC_PIO4_IOHOLD4_Pos) /*!< 0x00FF0000 */
lypinator 0:bb348c97df44 8655 #define FMC_PIO4_IOHOLD4 FMC_PIO4_IOHOLD4_Msk /*!<IOHOLD4[7:0] bits (I/O 4 hold time) */
lypinator 0:bb348c97df44 8656 #define FMC_PIO4_IOHOLD4_0 (0x01U << FMC_PIO4_IOHOLD4_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 8657 #define FMC_PIO4_IOHOLD4_1 (0x02U << FMC_PIO4_IOHOLD4_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 8658 #define FMC_PIO4_IOHOLD4_2 (0x04U << FMC_PIO4_IOHOLD4_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 8659 #define FMC_PIO4_IOHOLD4_3 (0x08U << FMC_PIO4_IOHOLD4_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 8660 #define FMC_PIO4_IOHOLD4_4 (0x10U << FMC_PIO4_IOHOLD4_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 8661 #define FMC_PIO4_IOHOLD4_5 (0x20U << FMC_PIO4_IOHOLD4_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 8662 #define FMC_PIO4_IOHOLD4_6 (0x40U << FMC_PIO4_IOHOLD4_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 8663 #define FMC_PIO4_IOHOLD4_7 (0x80U << FMC_PIO4_IOHOLD4_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 8664
lypinator 0:bb348c97df44 8665 #define FMC_PIO4_IOHIZ4_Pos (24U)
lypinator 0:bb348c97df44 8666 #define FMC_PIO4_IOHIZ4_Msk (0xFFU << FMC_PIO4_IOHIZ4_Pos) /*!< 0xFF000000 */
lypinator 0:bb348c97df44 8667 #define FMC_PIO4_IOHIZ4 FMC_PIO4_IOHIZ4_Msk /*!<IOHIZ4[7:0] bits (I/O 4 databus HiZ time) */
lypinator 0:bb348c97df44 8668 #define FMC_PIO4_IOHIZ4_0 (0x01U << FMC_PIO4_IOHIZ4_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 8669 #define FMC_PIO4_IOHIZ4_1 (0x02U << FMC_PIO4_IOHIZ4_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 8670 #define FMC_PIO4_IOHIZ4_2 (0x04U << FMC_PIO4_IOHIZ4_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 8671 #define FMC_PIO4_IOHIZ4_3 (0x08U << FMC_PIO4_IOHIZ4_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 8672 #define FMC_PIO4_IOHIZ4_4 (0x10U << FMC_PIO4_IOHIZ4_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 8673 #define FMC_PIO4_IOHIZ4_5 (0x20U << FMC_PIO4_IOHIZ4_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 8674 #define FMC_PIO4_IOHIZ4_6 (0x40U << FMC_PIO4_IOHIZ4_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 8675 #define FMC_PIO4_IOHIZ4_7 (0x80U << FMC_PIO4_IOHIZ4_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 8676
lypinator 0:bb348c97df44 8677
lypinator 0:bb348c97df44 8678 /****************** Bit definition for FMC_ECCR2 register ******************/
lypinator 0:bb348c97df44 8679 #define FMC_ECCR2_ECC2_Pos (0U)
lypinator 0:bb348c97df44 8680 #define FMC_ECCR2_ECC2_Msk (0xFFFFFFFFU << FMC_ECCR2_ECC2_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 8681 #define FMC_ECCR2_ECC2 FMC_ECCR2_ECC2_Msk /*!<ECC result */
lypinator 0:bb348c97df44 8682
lypinator 0:bb348c97df44 8683 /****************** Bit definition for FMC_ECCR3 register ******************/
lypinator 0:bb348c97df44 8684 #define FMC_ECCR3_ECC3_Pos (0U)
lypinator 0:bb348c97df44 8685 #define FMC_ECCR3_ECC3_Msk (0xFFFFFFFFU << FMC_ECCR3_ECC3_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 8686 #define FMC_ECCR3_ECC3 FMC_ECCR3_ECC3_Msk /*!<ECC result */
lypinator 0:bb348c97df44 8687
lypinator 0:bb348c97df44 8688 /****************** Bit definition for FMC_SDCR1 register ******************/
lypinator 0:bb348c97df44 8689 #define FMC_SDCR1_NC_Pos (0U)
lypinator 0:bb348c97df44 8690 #define FMC_SDCR1_NC_Msk (0x3U << FMC_SDCR1_NC_Pos) /*!< 0x00000003 */
lypinator 0:bb348c97df44 8691 #define FMC_SDCR1_NC FMC_SDCR1_NC_Msk /*!<NC[1:0] bits (Number of column bits) */
lypinator 0:bb348c97df44 8692 #define FMC_SDCR1_NC_0 (0x1U << FMC_SDCR1_NC_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 8693 #define FMC_SDCR1_NC_1 (0x2U << FMC_SDCR1_NC_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 8694
lypinator 0:bb348c97df44 8695 #define FMC_SDCR1_NR_Pos (2U)
lypinator 0:bb348c97df44 8696 #define FMC_SDCR1_NR_Msk (0x3U << FMC_SDCR1_NR_Pos) /*!< 0x0000000C */
lypinator 0:bb348c97df44 8697 #define FMC_SDCR1_NR FMC_SDCR1_NR_Msk /*!<NR[1:0] bits (Number of row bits) */
lypinator 0:bb348c97df44 8698 #define FMC_SDCR1_NR_0 (0x1U << FMC_SDCR1_NR_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 8699 #define FMC_SDCR1_NR_1 (0x2U << FMC_SDCR1_NR_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 8700
lypinator 0:bb348c97df44 8701 #define FMC_SDCR1_MWID_Pos (4U)
lypinator 0:bb348c97df44 8702 #define FMC_SDCR1_MWID_Msk (0x3U << FMC_SDCR1_MWID_Pos) /*!< 0x00000030 */
lypinator 0:bb348c97df44 8703 #define FMC_SDCR1_MWID FMC_SDCR1_MWID_Msk /*!<NR[1:0] bits (Number of row bits) */
lypinator 0:bb348c97df44 8704 #define FMC_SDCR1_MWID_0 (0x1U << FMC_SDCR1_MWID_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 8705 #define FMC_SDCR1_MWID_1 (0x2U << FMC_SDCR1_MWID_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 8706
lypinator 0:bb348c97df44 8707 #define FMC_SDCR1_NB_Pos (6U)
lypinator 0:bb348c97df44 8708 #define FMC_SDCR1_NB_Msk (0x1U << FMC_SDCR1_NB_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 8709 #define FMC_SDCR1_NB FMC_SDCR1_NB_Msk /*!<Number of internal bank */
lypinator 0:bb348c97df44 8710
lypinator 0:bb348c97df44 8711 #define FMC_SDCR1_CAS_Pos (7U)
lypinator 0:bb348c97df44 8712 #define FMC_SDCR1_CAS_Msk (0x3U << FMC_SDCR1_CAS_Pos) /*!< 0x00000180 */
lypinator 0:bb348c97df44 8713 #define FMC_SDCR1_CAS FMC_SDCR1_CAS_Msk /*!<CAS[1:0] bits (CAS latency) */
lypinator 0:bb348c97df44 8714 #define FMC_SDCR1_CAS_0 (0x1U << FMC_SDCR1_CAS_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 8715 #define FMC_SDCR1_CAS_1 (0x2U << FMC_SDCR1_CAS_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 8716
lypinator 0:bb348c97df44 8717 #define FMC_SDCR1_WP_Pos (9U)
lypinator 0:bb348c97df44 8718 #define FMC_SDCR1_WP_Msk (0x1U << FMC_SDCR1_WP_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 8719 #define FMC_SDCR1_WP FMC_SDCR1_WP_Msk /*!<Write protection */
lypinator 0:bb348c97df44 8720
lypinator 0:bb348c97df44 8721 #define FMC_SDCR1_SDCLK_Pos (10U)
lypinator 0:bb348c97df44 8722 #define FMC_SDCR1_SDCLK_Msk (0x3U << FMC_SDCR1_SDCLK_Pos) /*!< 0x00000C00 */
lypinator 0:bb348c97df44 8723 #define FMC_SDCR1_SDCLK FMC_SDCR1_SDCLK_Msk /*!<SDRAM clock configuration */
lypinator 0:bb348c97df44 8724 #define FMC_SDCR1_SDCLK_0 (0x1U << FMC_SDCR1_SDCLK_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 8725 #define FMC_SDCR1_SDCLK_1 (0x2U << FMC_SDCR1_SDCLK_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 8726
lypinator 0:bb348c97df44 8727 #define FMC_SDCR1_RBURST_Pos (12U)
lypinator 0:bb348c97df44 8728 #define FMC_SDCR1_RBURST_Msk (0x1U << FMC_SDCR1_RBURST_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 8729 #define FMC_SDCR1_RBURST FMC_SDCR1_RBURST_Msk /*!<Read burst */
lypinator 0:bb348c97df44 8730
lypinator 0:bb348c97df44 8731 #define FMC_SDCR1_RPIPE_Pos (13U)
lypinator 0:bb348c97df44 8732 #define FMC_SDCR1_RPIPE_Msk (0x3U << FMC_SDCR1_RPIPE_Pos) /*!< 0x00006000 */
lypinator 0:bb348c97df44 8733 #define FMC_SDCR1_RPIPE FMC_SDCR1_RPIPE_Msk /*!<Write protection */
lypinator 0:bb348c97df44 8734 #define FMC_SDCR1_RPIPE_0 (0x1U << FMC_SDCR1_RPIPE_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 8735 #define FMC_SDCR1_RPIPE_1 (0x2U << FMC_SDCR1_RPIPE_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 8736
lypinator 0:bb348c97df44 8737 /****************** Bit definition for FMC_SDCR2 register ******************/
lypinator 0:bb348c97df44 8738 #define FMC_SDCR2_NC_Pos (0U)
lypinator 0:bb348c97df44 8739 #define FMC_SDCR2_NC_Msk (0x3U << FMC_SDCR2_NC_Pos) /*!< 0x00000003 */
lypinator 0:bb348c97df44 8740 #define FMC_SDCR2_NC FMC_SDCR2_NC_Msk /*!<NC[1:0] bits (Number of column bits) */
lypinator 0:bb348c97df44 8741 #define FMC_SDCR2_NC_0 (0x1U << FMC_SDCR2_NC_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 8742 #define FMC_SDCR2_NC_1 (0x2U << FMC_SDCR2_NC_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 8743
lypinator 0:bb348c97df44 8744 #define FMC_SDCR2_NR_Pos (2U)
lypinator 0:bb348c97df44 8745 #define FMC_SDCR2_NR_Msk (0x3U << FMC_SDCR2_NR_Pos) /*!< 0x0000000C */
lypinator 0:bb348c97df44 8746 #define FMC_SDCR2_NR FMC_SDCR2_NR_Msk /*!<NR[1:0] bits (Number of row bits) */
lypinator 0:bb348c97df44 8747 #define FMC_SDCR2_NR_0 (0x1U << FMC_SDCR2_NR_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 8748 #define FMC_SDCR2_NR_1 (0x2U << FMC_SDCR2_NR_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 8749
lypinator 0:bb348c97df44 8750 #define FMC_SDCR2_MWID_Pos (4U)
lypinator 0:bb348c97df44 8751 #define FMC_SDCR2_MWID_Msk (0x3U << FMC_SDCR2_MWID_Pos) /*!< 0x00000030 */
lypinator 0:bb348c97df44 8752 #define FMC_SDCR2_MWID FMC_SDCR2_MWID_Msk /*!<NR[1:0] bits (Number of row bits) */
lypinator 0:bb348c97df44 8753 #define FMC_SDCR2_MWID_0 (0x1U << FMC_SDCR2_MWID_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 8754 #define FMC_SDCR2_MWID_1 (0x2U << FMC_SDCR2_MWID_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 8755
lypinator 0:bb348c97df44 8756 #define FMC_SDCR2_NB_Pos (6U)
lypinator 0:bb348c97df44 8757 #define FMC_SDCR2_NB_Msk (0x1U << FMC_SDCR2_NB_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 8758 #define FMC_SDCR2_NB FMC_SDCR2_NB_Msk /*!<Number of internal bank */
lypinator 0:bb348c97df44 8759
lypinator 0:bb348c97df44 8760 #define FMC_SDCR2_CAS_Pos (7U)
lypinator 0:bb348c97df44 8761 #define FMC_SDCR2_CAS_Msk (0x3U << FMC_SDCR2_CAS_Pos) /*!< 0x00000180 */
lypinator 0:bb348c97df44 8762 #define FMC_SDCR2_CAS FMC_SDCR2_CAS_Msk /*!<CAS[1:0] bits (CAS latency) */
lypinator 0:bb348c97df44 8763 #define FMC_SDCR2_CAS_0 (0x1U << FMC_SDCR2_CAS_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 8764 #define FMC_SDCR2_CAS_1 (0x2U << FMC_SDCR2_CAS_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 8765
lypinator 0:bb348c97df44 8766 #define FMC_SDCR2_WP_Pos (9U)
lypinator 0:bb348c97df44 8767 #define FMC_SDCR2_WP_Msk (0x1U << FMC_SDCR2_WP_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 8768 #define FMC_SDCR2_WP FMC_SDCR2_WP_Msk /*!<Write protection */
lypinator 0:bb348c97df44 8769
lypinator 0:bb348c97df44 8770 #define FMC_SDCR2_SDCLK_Pos (10U)
lypinator 0:bb348c97df44 8771 #define FMC_SDCR2_SDCLK_Msk (0x3U << FMC_SDCR2_SDCLK_Pos) /*!< 0x00000C00 */
lypinator 0:bb348c97df44 8772 #define FMC_SDCR2_SDCLK FMC_SDCR2_SDCLK_Msk /*!<SDCLK[1:0] (SDRAM clock configuration) */
lypinator 0:bb348c97df44 8773 #define FMC_SDCR2_SDCLK_0 (0x1U << FMC_SDCR2_SDCLK_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 8774 #define FMC_SDCR2_SDCLK_1 (0x2U << FMC_SDCR2_SDCLK_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 8775
lypinator 0:bb348c97df44 8776 #define FMC_SDCR2_RBURST_Pos (12U)
lypinator 0:bb348c97df44 8777 #define FMC_SDCR2_RBURST_Msk (0x1U << FMC_SDCR2_RBURST_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 8778 #define FMC_SDCR2_RBURST FMC_SDCR2_RBURST_Msk /*!<Read burst */
lypinator 0:bb348c97df44 8779
lypinator 0:bb348c97df44 8780 #define FMC_SDCR2_RPIPE_Pos (13U)
lypinator 0:bb348c97df44 8781 #define FMC_SDCR2_RPIPE_Msk (0x3U << FMC_SDCR2_RPIPE_Pos) /*!< 0x00006000 */
lypinator 0:bb348c97df44 8782 #define FMC_SDCR2_RPIPE FMC_SDCR2_RPIPE_Msk /*!<RPIPE[1:0](Read pipe) */
lypinator 0:bb348c97df44 8783 #define FMC_SDCR2_RPIPE_0 (0x1U << FMC_SDCR2_RPIPE_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 8784 #define FMC_SDCR2_RPIPE_1 (0x2U << FMC_SDCR2_RPIPE_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 8785
lypinator 0:bb348c97df44 8786 /****************** Bit definition for FMC_SDTR1 register ******************/
lypinator 0:bb348c97df44 8787 #define FMC_SDTR1_TMRD_Pos (0U)
lypinator 0:bb348c97df44 8788 #define FMC_SDTR1_TMRD_Msk (0xFU << FMC_SDTR1_TMRD_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 8789 #define FMC_SDTR1_TMRD FMC_SDTR1_TMRD_Msk /*!<TMRD[3:0] bits (Load mode register to active) */
lypinator 0:bb348c97df44 8790 #define FMC_SDTR1_TMRD_0 (0x1U << FMC_SDTR1_TMRD_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 8791 #define FMC_SDTR1_TMRD_1 (0x2U << FMC_SDTR1_TMRD_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 8792 #define FMC_SDTR1_TMRD_2 (0x4U << FMC_SDTR1_TMRD_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 8793 #define FMC_SDTR1_TMRD_3 (0x8U << FMC_SDTR1_TMRD_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 8794
lypinator 0:bb348c97df44 8795 #define FMC_SDTR1_TXSR_Pos (4U)
lypinator 0:bb348c97df44 8796 #define FMC_SDTR1_TXSR_Msk (0xFU << FMC_SDTR1_TXSR_Pos) /*!< 0x000000F0 */
lypinator 0:bb348c97df44 8797 #define FMC_SDTR1_TXSR FMC_SDTR1_TXSR_Msk /*!<TXSR[3:0] bits (Exit self refresh) */
lypinator 0:bb348c97df44 8798 #define FMC_SDTR1_TXSR_0 (0x1U << FMC_SDTR1_TXSR_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 8799 #define FMC_SDTR1_TXSR_1 (0x2U << FMC_SDTR1_TXSR_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 8800 #define FMC_SDTR1_TXSR_2 (0x4U << FMC_SDTR1_TXSR_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 8801 #define FMC_SDTR1_TXSR_3 (0x8U << FMC_SDTR1_TXSR_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 8802
lypinator 0:bb348c97df44 8803 #define FMC_SDTR1_TRAS_Pos (8U)
lypinator 0:bb348c97df44 8804 #define FMC_SDTR1_TRAS_Msk (0xFU << FMC_SDTR1_TRAS_Pos) /*!< 0x00000F00 */
lypinator 0:bb348c97df44 8805 #define FMC_SDTR1_TRAS FMC_SDTR1_TRAS_Msk /*!<TRAS[3:0] bits (Self refresh time) */
lypinator 0:bb348c97df44 8806 #define FMC_SDTR1_TRAS_0 (0x1U << FMC_SDTR1_TRAS_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 8807 #define FMC_SDTR1_TRAS_1 (0x2U << FMC_SDTR1_TRAS_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 8808 #define FMC_SDTR1_TRAS_2 (0x4U << FMC_SDTR1_TRAS_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 8809 #define FMC_SDTR1_TRAS_3 (0x8U << FMC_SDTR1_TRAS_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 8810
lypinator 0:bb348c97df44 8811 #define FMC_SDTR1_TRC_Pos (12U)
lypinator 0:bb348c97df44 8812 #define FMC_SDTR1_TRC_Msk (0xFU << FMC_SDTR1_TRC_Pos) /*!< 0x0000F000 */
lypinator 0:bb348c97df44 8813 #define FMC_SDTR1_TRC FMC_SDTR1_TRC_Msk /*!<TRC[2:0] bits (Row cycle delay) */
lypinator 0:bb348c97df44 8814 #define FMC_SDTR1_TRC_0 (0x1U << FMC_SDTR1_TRC_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 8815 #define FMC_SDTR1_TRC_1 (0x2U << FMC_SDTR1_TRC_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 8816 #define FMC_SDTR1_TRC_2 (0x4U << FMC_SDTR1_TRC_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 8817
lypinator 0:bb348c97df44 8818 #define FMC_SDTR1_TWR_Pos (16U)
lypinator 0:bb348c97df44 8819 #define FMC_SDTR1_TWR_Msk (0xFU << FMC_SDTR1_TWR_Pos) /*!< 0x000F0000 */
lypinator 0:bb348c97df44 8820 #define FMC_SDTR1_TWR FMC_SDTR1_TWR_Msk /*!<TRC[2:0] bits (Write recovery delay) */
lypinator 0:bb348c97df44 8821 #define FMC_SDTR1_TWR_0 (0x1U << FMC_SDTR1_TWR_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 8822 #define FMC_SDTR1_TWR_1 (0x2U << FMC_SDTR1_TWR_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 8823 #define FMC_SDTR1_TWR_2 (0x4U << FMC_SDTR1_TWR_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 8824
lypinator 0:bb348c97df44 8825 #define FMC_SDTR1_TRP_Pos (20U)
lypinator 0:bb348c97df44 8826 #define FMC_SDTR1_TRP_Msk (0xFU << FMC_SDTR1_TRP_Pos) /*!< 0x00F00000 */
lypinator 0:bb348c97df44 8827 #define FMC_SDTR1_TRP FMC_SDTR1_TRP_Msk /*!<TRP[2:0] bits (Row precharge delay) */
lypinator 0:bb348c97df44 8828 #define FMC_SDTR1_TRP_0 (0x1U << FMC_SDTR1_TRP_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 8829 #define FMC_SDTR1_TRP_1 (0x2U << FMC_SDTR1_TRP_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 8830 #define FMC_SDTR1_TRP_2 (0x4U << FMC_SDTR1_TRP_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 8831
lypinator 0:bb348c97df44 8832 #define FMC_SDTR1_TRCD_Pos (24U)
lypinator 0:bb348c97df44 8833 #define FMC_SDTR1_TRCD_Msk (0xFU << FMC_SDTR1_TRCD_Pos) /*!< 0x0F000000 */
lypinator 0:bb348c97df44 8834 #define FMC_SDTR1_TRCD FMC_SDTR1_TRCD_Msk /*!<TRP[2:0] bits (Row to column delay) */
lypinator 0:bb348c97df44 8835 #define FMC_SDTR1_TRCD_0 (0x1U << FMC_SDTR1_TRCD_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 8836 #define FMC_SDTR1_TRCD_1 (0x2U << FMC_SDTR1_TRCD_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 8837 #define FMC_SDTR1_TRCD_2 (0x4U << FMC_SDTR1_TRCD_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 8838
lypinator 0:bb348c97df44 8839 /****************** Bit definition for FMC_SDTR2 register ******************/
lypinator 0:bb348c97df44 8840 #define FMC_SDTR2_TMRD_Pos (0U)
lypinator 0:bb348c97df44 8841 #define FMC_SDTR2_TMRD_Msk (0xFU << FMC_SDTR2_TMRD_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 8842 #define FMC_SDTR2_TMRD FMC_SDTR2_TMRD_Msk /*!<TMRD[3:0] bits (Load mode register to active) */
lypinator 0:bb348c97df44 8843 #define FMC_SDTR2_TMRD_0 (0x1U << FMC_SDTR2_TMRD_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 8844 #define FMC_SDTR2_TMRD_1 (0x2U << FMC_SDTR2_TMRD_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 8845 #define FMC_SDTR2_TMRD_2 (0x4U << FMC_SDTR2_TMRD_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 8846 #define FMC_SDTR2_TMRD_3 (0x8U << FMC_SDTR2_TMRD_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 8847
lypinator 0:bb348c97df44 8848 #define FMC_SDTR2_TXSR_Pos (4U)
lypinator 0:bb348c97df44 8849 #define FMC_SDTR2_TXSR_Msk (0xFU << FMC_SDTR2_TXSR_Pos) /*!< 0x000000F0 */
lypinator 0:bb348c97df44 8850 #define FMC_SDTR2_TXSR FMC_SDTR2_TXSR_Msk /*!<TXSR[3:0] bits (Exit self refresh) */
lypinator 0:bb348c97df44 8851 #define FMC_SDTR2_TXSR_0 (0x1U << FMC_SDTR2_TXSR_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 8852 #define FMC_SDTR2_TXSR_1 (0x2U << FMC_SDTR2_TXSR_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 8853 #define FMC_SDTR2_TXSR_2 (0x4U << FMC_SDTR2_TXSR_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 8854 #define FMC_SDTR2_TXSR_3 (0x8U << FMC_SDTR2_TXSR_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 8855
lypinator 0:bb348c97df44 8856 #define FMC_SDTR2_TRAS_Pos (8U)
lypinator 0:bb348c97df44 8857 #define FMC_SDTR2_TRAS_Msk (0xFU << FMC_SDTR2_TRAS_Pos) /*!< 0x00000F00 */
lypinator 0:bb348c97df44 8858 #define FMC_SDTR2_TRAS FMC_SDTR2_TRAS_Msk /*!<TRAS[3:0] bits (Self refresh time) */
lypinator 0:bb348c97df44 8859 #define FMC_SDTR2_TRAS_0 (0x1U << FMC_SDTR2_TRAS_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 8860 #define FMC_SDTR2_TRAS_1 (0x2U << FMC_SDTR2_TRAS_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 8861 #define FMC_SDTR2_TRAS_2 (0x4U << FMC_SDTR2_TRAS_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 8862 #define FMC_SDTR2_TRAS_3 (0x8U << FMC_SDTR2_TRAS_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 8863
lypinator 0:bb348c97df44 8864 #define FMC_SDTR2_TRC_Pos (12U)
lypinator 0:bb348c97df44 8865 #define FMC_SDTR2_TRC_Msk (0xFU << FMC_SDTR2_TRC_Pos) /*!< 0x0000F000 */
lypinator 0:bb348c97df44 8866 #define FMC_SDTR2_TRC FMC_SDTR2_TRC_Msk /*!<TRC[2:0] bits (Row cycle delay) */
lypinator 0:bb348c97df44 8867 #define FMC_SDTR2_TRC_0 (0x1U << FMC_SDTR2_TRC_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 8868 #define FMC_SDTR2_TRC_1 (0x2U << FMC_SDTR2_TRC_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 8869 #define FMC_SDTR2_TRC_2 (0x4U << FMC_SDTR2_TRC_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 8870
lypinator 0:bb348c97df44 8871 #define FMC_SDTR2_TWR_Pos (16U)
lypinator 0:bb348c97df44 8872 #define FMC_SDTR2_TWR_Msk (0xFU << FMC_SDTR2_TWR_Pos) /*!< 0x000F0000 */
lypinator 0:bb348c97df44 8873 #define FMC_SDTR2_TWR FMC_SDTR2_TWR_Msk /*!<TRC[2:0] bits (Write recovery delay) */
lypinator 0:bb348c97df44 8874 #define FMC_SDTR2_TWR_0 (0x1U << FMC_SDTR2_TWR_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 8875 #define FMC_SDTR2_TWR_1 (0x2U << FMC_SDTR2_TWR_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 8876 #define FMC_SDTR2_TWR_2 (0x4U << FMC_SDTR2_TWR_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 8877
lypinator 0:bb348c97df44 8878 #define FMC_SDTR2_TRP_Pos (20U)
lypinator 0:bb348c97df44 8879 #define FMC_SDTR2_TRP_Msk (0xFU << FMC_SDTR2_TRP_Pos) /*!< 0x00F00000 */
lypinator 0:bb348c97df44 8880 #define FMC_SDTR2_TRP FMC_SDTR2_TRP_Msk /*!<TRP[2:0] bits (Row precharge delay) */
lypinator 0:bb348c97df44 8881 #define FMC_SDTR2_TRP_0 (0x1U << FMC_SDTR2_TRP_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 8882 #define FMC_SDTR2_TRP_1 (0x2U << FMC_SDTR2_TRP_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 8883 #define FMC_SDTR2_TRP_2 (0x4U << FMC_SDTR2_TRP_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 8884
lypinator 0:bb348c97df44 8885 #define FMC_SDTR2_TRCD_Pos (24U)
lypinator 0:bb348c97df44 8886 #define FMC_SDTR2_TRCD_Msk (0xFU << FMC_SDTR2_TRCD_Pos) /*!< 0x0F000000 */
lypinator 0:bb348c97df44 8887 #define FMC_SDTR2_TRCD FMC_SDTR2_TRCD_Msk /*!<TRP[2:0] bits (Row to column delay) */
lypinator 0:bb348c97df44 8888 #define FMC_SDTR2_TRCD_0 (0x1U << FMC_SDTR2_TRCD_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 8889 #define FMC_SDTR2_TRCD_1 (0x2U << FMC_SDTR2_TRCD_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 8890 #define FMC_SDTR2_TRCD_2 (0x4U << FMC_SDTR2_TRCD_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 8891
lypinator 0:bb348c97df44 8892 /****************** Bit definition for FMC_SDCMR register ******************/
lypinator 0:bb348c97df44 8893 #define FMC_SDCMR_MODE_Pos (0U)
lypinator 0:bb348c97df44 8894 #define FMC_SDCMR_MODE_Msk (0x7U << FMC_SDCMR_MODE_Pos) /*!< 0x00000007 */
lypinator 0:bb348c97df44 8895 #define FMC_SDCMR_MODE FMC_SDCMR_MODE_Msk /*!<MODE[2:0] bits (Command mode) */
lypinator 0:bb348c97df44 8896 #define FMC_SDCMR_MODE_0 (0x1U << FMC_SDCMR_MODE_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 8897 #define FMC_SDCMR_MODE_1 (0x2U << FMC_SDCMR_MODE_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 8898 #define FMC_SDCMR_MODE_2 (0x4U << FMC_SDCMR_MODE_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 8899
lypinator 0:bb348c97df44 8900 #define FMC_SDCMR_CTB2_Pos (3U)
lypinator 0:bb348c97df44 8901 #define FMC_SDCMR_CTB2_Msk (0x1U << FMC_SDCMR_CTB2_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 8902 #define FMC_SDCMR_CTB2 FMC_SDCMR_CTB2_Msk /*!<Command target 2 */
lypinator 0:bb348c97df44 8903
lypinator 0:bb348c97df44 8904 #define FMC_SDCMR_CTB1_Pos (4U)
lypinator 0:bb348c97df44 8905 #define FMC_SDCMR_CTB1_Msk (0x1U << FMC_SDCMR_CTB1_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 8906 #define FMC_SDCMR_CTB1 FMC_SDCMR_CTB1_Msk /*!<Command target 1 */
lypinator 0:bb348c97df44 8907
lypinator 0:bb348c97df44 8908 #define FMC_SDCMR_NRFS_Pos (5U)
lypinator 0:bb348c97df44 8909 #define FMC_SDCMR_NRFS_Msk (0xFU << FMC_SDCMR_NRFS_Pos) /*!< 0x000001E0 */
lypinator 0:bb348c97df44 8910 #define FMC_SDCMR_NRFS FMC_SDCMR_NRFS_Msk /*!<NRFS[3:0] bits (Number of auto-refresh) */
lypinator 0:bb348c97df44 8911 #define FMC_SDCMR_NRFS_0 (0x1U << FMC_SDCMR_NRFS_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 8912 #define FMC_SDCMR_NRFS_1 (0x2U << FMC_SDCMR_NRFS_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 8913 #define FMC_SDCMR_NRFS_2 (0x4U << FMC_SDCMR_NRFS_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 8914 #define FMC_SDCMR_NRFS_3 (0x8U << FMC_SDCMR_NRFS_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 8915
lypinator 0:bb348c97df44 8916 #define FMC_SDCMR_MRD_Pos (9U)
lypinator 0:bb348c97df44 8917 #define FMC_SDCMR_MRD_Msk (0x1FFFU << FMC_SDCMR_MRD_Pos) /*!< 0x003FFE00 */
lypinator 0:bb348c97df44 8918 #define FMC_SDCMR_MRD FMC_SDCMR_MRD_Msk /*!<MRD[12:0] bits (Mode register definition) */
lypinator 0:bb348c97df44 8919
lypinator 0:bb348c97df44 8920 /****************** Bit definition for FMC_SDRTR register ******************/
lypinator 0:bb348c97df44 8921 #define FMC_SDRTR_CRE_Pos (0U)
lypinator 0:bb348c97df44 8922 #define FMC_SDRTR_CRE_Msk (0x1U << FMC_SDRTR_CRE_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 8923 #define FMC_SDRTR_CRE FMC_SDRTR_CRE_Msk /*!<Clear refresh error flag */
lypinator 0:bb348c97df44 8924
lypinator 0:bb348c97df44 8925 #define FMC_SDRTR_COUNT_Pos (1U)
lypinator 0:bb348c97df44 8926 #define FMC_SDRTR_COUNT_Msk (0x1FFFU << FMC_SDRTR_COUNT_Pos) /*!< 0x00003FFE */
lypinator 0:bb348c97df44 8927 #define FMC_SDRTR_COUNT FMC_SDRTR_COUNT_Msk /*!<COUNT[12:0] bits (Refresh timer count) */
lypinator 0:bb348c97df44 8928
lypinator 0:bb348c97df44 8929 #define FMC_SDRTR_REIE_Pos (14U)
lypinator 0:bb348c97df44 8930 #define FMC_SDRTR_REIE_Msk (0x1U << FMC_SDRTR_REIE_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 8931 #define FMC_SDRTR_REIE FMC_SDRTR_REIE_Msk /*!<RES interupt enable */
lypinator 0:bb348c97df44 8932
lypinator 0:bb348c97df44 8933 /****************** Bit definition for FMC_SDSR register ******************/
lypinator 0:bb348c97df44 8934 #define FMC_SDSR_RE_Pos (0U)
lypinator 0:bb348c97df44 8935 #define FMC_SDSR_RE_Msk (0x1U << FMC_SDSR_RE_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 8936 #define FMC_SDSR_RE FMC_SDSR_RE_Msk /*!<Refresh error flag */
lypinator 0:bb348c97df44 8937
lypinator 0:bb348c97df44 8938 #define FMC_SDSR_MODES1_Pos (1U)
lypinator 0:bb348c97df44 8939 #define FMC_SDSR_MODES1_Msk (0x3U << FMC_SDSR_MODES1_Pos) /*!< 0x00000006 */
lypinator 0:bb348c97df44 8940 #define FMC_SDSR_MODES1 FMC_SDSR_MODES1_Msk /*!<MODES1[1:0]bits (Status mode for bank 1) */
lypinator 0:bb348c97df44 8941 #define FMC_SDSR_MODES1_0 (0x1U << FMC_SDSR_MODES1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 8942 #define FMC_SDSR_MODES1_1 (0x2U << FMC_SDSR_MODES1_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 8943
lypinator 0:bb348c97df44 8944 #define FMC_SDSR_MODES2_Pos (3U)
lypinator 0:bb348c97df44 8945 #define FMC_SDSR_MODES2_Msk (0x3U << FMC_SDSR_MODES2_Pos) /*!< 0x00000018 */
lypinator 0:bb348c97df44 8946 #define FMC_SDSR_MODES2 FMC_SDSR_MODES2_Msk /*!<MODES2[1:0]bits (Status mode for bank 2) */
lypinator 0:bb348c97df44 8947 #define FMC_SDSR_MODES2_0 (0x1U << FMC_SDSR_MODES2_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 8948 #define FMC_SDSR_MODES2_1 (0x2U << FMC_SDSR_MODES2_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 8949 #define FMC_SDSR_BUSY_Pos (5U)
lypinator 0:bb348c97df44 8950 #define FMC_SDSR_BUSY_Msk (0x1U << FMC_SDSR_BUSY_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 8951 #define FMC_SDSR_BUSY FMC_SDSR_BUSY_Msk /*!<Busy status */
lypinator 0:bb348c97df44 8952
lypinator 0:bb348c97df44 8953 /******************************************************************************/
lypinator 0:bb348c97df44 8954 /* */
lypinator 0:bb348c97df44 8955 /* General Purpose I/O */
lypinator 0:bb348c97df44 8956 /* */
lypinator 0:bb348c97df44 8957 /******************************************************************************/
lypinator 0:bb348c97df44 8958 /****************** Bits definition for GPIO_MODER register *****************/
lypinator 0:bb348c97df44 8959 #define GPIO_MODER_MODE0_Pos (0U)
lypinator 0:bb348c97df44 8960 #define GPIO_MODER_MODE0_Msk (0x3U << GPIO_MODER_MODE0_Pos) /*!< 0x00000003 */
lypinator 0:bb348c97df44 8961 #define GPIO_MODER_MODE0 GPIO_MODER_MODE0_Msk
lypinator 0:bb348c97df44 8962 #define GPIO_MODER_MODE0_0 (0x1U << GPIO_MODER_MODE0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 8963 #define GPIO_MODER_MODE0_1 (0x2U << GPIO_MODER_MODE0_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 8964 #define GPIO_MODER_MODE1_Pos (2U)
lypinator 0:bb348c97df44 8965 #define GPIO_MODER_MODE1_Msk (0x3U << GPIO_MODER_MODE1_Pos) /*!< 0x0000000C */
lypinator 0:bb348c97df44 8966 #define GPIO_MODER_MODE1 GPIO_MODER_MODE1_Msk
lypinator 0:bb348c97df44 8967 #define GPIO_MODER_MODE1_0 (0x1U << GPIO_MODER_MODE1_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 8968 #define GPIO_MODER_MODE1_1 (0x2U << GPIO_MODER_MODE1_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 8969 #define GPIO_MODER_MODE2_Pos (4U)
lypinator 0:bb348c97df44 8970 #define GPIO_MODER_MODE2_Msk (0x3U << GPIO_MODER_MODE2_Pos) /*!< 0x00000030 */
lypinator 0:bb348c97df44 8971 #define GPIO_MODER_MODE2 GPIO_MODER_MODE2_Msk
lypinator 0:bb348c97df44 8972 #define GPIO_MODER_MODE2_0 (0x1U << GPIO_MODER_MODE2_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 8973 #define GPIO_MODER_MODE2_1 (0x2U << GPIO_MODER_MODE2_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 8974 #define GPIO_MODER_MODE3_Pos (6U)
lypinator 0:bb348c97df44 8975 #define GPIO_MODER_MODE3_Msk (0x3U << GPIO_MODER_MODE3_Pos) /*!< 0x000000C0 */
lypinator 0:bb348c97df44 8976 #define GPIO_MODER_MODE3 GPIO_MODER_MODE3_Msk
lypinator 0:bb348c97df44 8977 #define GPIO_MODER_MODE3_0 (0x1U << GPIO_MODER_MODE3_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 8978 #define GPIO_MODER_MODE3_1 (0x2U << GPIO_MODER_MODE3_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 8979 #define GPIO_MODER_MODE4_Pos (8U)
lypinator 0:bb348c97df44 8980 #define GPIO_MODER_MODE4_Msk (0x3U << GPIO_MODER_MODE4_Pos) /*!< 0x00000300 */
lypinator 0:bb348c97df44 8981 #define GPIO_MODER_MODE4 GPIO_MODER_MODE4_Msk
lypinator 0:bb348c97df44 8982 #define GPIO_MODER_MODE4_0 (0x1U << GPIO_MODER_MODE4_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 8983 #define GPIO_MODER_MODE4_1 (0x2U << GPIO_MODER_MODE4_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 8984 #define GPIO_MODER_MODE5_Pos (10U)
lypinator 0:bb348c97df44 8985 #define GPIO_MODER_MODE5_Msk (0x3U << GPIO_MODER_MODE5_Pos) /*!< 0x00000C00 */
lypinator 0:bb348c97df44 8986 #define GPIO_MODER_MODE5 GPIO_MODER_MODE5_Msk
lypinator 0:bb348c97df44 8987 #define GPIO_MODER_MODE5_0 (0x1U << GPIO_MODER_MODE5_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 8988 #define GPIO_MODER_MODE5_1 (0x2U << GPIO_MODER_MODE5_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 8989 #define GPIO_MODER_MODE6_Pos (12U)
lypinator 0:bb348c97df44 8990 #define GPIO_MODER_MODE6_Msk (0x3U << GPIO_MODER_MODE6_Pos) /*!< 0x00003000 */
lypinator 0:bb348c97df44 8991 #define GPIO_MODER_MODE6 GPIO_MODER_MODE6_Msk
lypinator 0:bb348c97df44 8992 #define GPIO_MODER_MODE6_0 (0x1U << GPIO_MODER_MODE6_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 8993 #define GPIO_MODER_MODE6_1 (0x2U << GPIO_MODER_MODE6_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 8994 #define GPIO_MODER_MODE7_Pos (14U)
lypinator 0:bb348c97df44 8995 #define GPIO_MODER_MODE7_Msk (0x3U << GPIO_MODER_MODE7_Pos) /*!< 0x0000C000 */
lypinator 0:bb348c97df44 8996 #define GPIO_MODER_MODE7 GPIO_MODER_MODE7_Msk
lypinator 0:bb348c97df44 8997 #define GPIO_MODER_MODE7_0 (0x1U << GPIO_MODER_MODE7_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 8998 #define GPIO_MODER_MODE7_1 (0x2U << GPIO_MODER_MODE7_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 8999 #define GPIO_MODER_MODE8_Pos (16U)
lypinator 0:bb348c97df44 9000 #define GPIO_MODER_MODE8_Msk (0x3U << GPIO_MODER_MODE8_Pos) /*!< 0x00030000 */
lypinator 0:bb348c97df44 9001 #define GPIO_MODER_MODE8 GPIO_MODER_MODE8_Msk
lypinator 0:bb348c97df44 9002 #define GPIO_MODER_MODE8_0 (0x1U << GPIO_MODER_MODE8_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 9003 #define GPIO_MODER_MODE8_1 (0x2U << GPIO_MODER_MODE8_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 9004 #define GPIO_MODER_MODE9_Pos (18U)
lypinator 0:bb348c97df44 9005 #define GPIO_MODER_MODE9_Msk (0x3U << GPIO_MODER_MODE9_Pos) /*!< 0x000C0000 */
lypinator 0:bb348c97df44 9006 #define GPIO_MODER_MODE9 GPIO_MODER_MODE9_Msk
lypinator 0:bb348c97df44 9007 #define GPIO_MODER_MODE9_0 (0x1U << GPIO_MODER_MODE9_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 9008 #define GPIO_MODER_MODE9_1 (0x2U << GPIO_MODER_MODE9_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 9009 #define GPIO_MODER_MODE10_Pos (20U)
lypinator 0:bb348c97df44 9010 #define GPIO_MODER_MODE10_Msk (0x3U << GPIO_MODER_MODE10_Pos) /*!< 0x00300000 */
lypinator 0:bb348c97df44 9011 #define GPIO_MODER_MODE10 GPIO_MODER_MODE10_Msk
lypinator 0:bb348c97df44 9012 #define GPIO_MODER_MODE10_0 (0x1U << GPIO_MODER_MODE10_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 9013 #define GPIO_MODER_MODE10_1 (0x2U << GPIO_MODER_MODE10_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 9014 #define GPIO_MODER_MODE11_Pos (22U)
lypinator 0:bb348c97df44 9015 #define GPIO_MODER_MODE11_Msk (0x3U << GPIO_MODER_MODE11_Pos) /*!< 0x00C00000 */
lypinator 0:bb348c97df44 9016 #define GPIO_MODER_MODE11 GPIO_MODER_MODE11_Msk
lypinator 0:bb348c97df44 9017 #define GPIO_MODER_MODE11_0 (0x1U << GPIO_MODER_MODE11_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 9018 #define GPIO_MODER_MODE11_1 (0x2U << GPIO_MODER_MODE11_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 9019 #define GPIO_MODER_MODE12_Pos (24U)
lypinator 0:bb348c97df44 9020 #define GPIO_MODER_MODE12_Msk (0x3U << GPIO_MODER_MODE12_Pos) /*!< 0x03000000 */
lypinator 0:bb348c97df44 9021 #define GPIO_MODER_MODE12 GPIO_MODER_MODE12_Msk
lypinator 0:bb348c97df44 9022 #define GPIO_MODER_MODE12_0 (0x1U << GPIO_MODER_MODE12_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 9023 #define GPIO_MODER_MODE12_1 (0x2U << GPIO_MODER_MODE12_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 9024 #define GPIO_MODER_MODE13_Pos (26U)
lypinator 0:bb348c97df44 9025 #define GPIO_MODER_MODE13_Msk (0x3U << GPIO_MODER_MODE13_Pos) /*!< 0x0C000000 */
lypinator 0:bb348c97df44 9026 #define GPIO_MODER_MODE13 GPIO_MODER_MODE13_Msk
lypinator 0:bb348c97df44 9027 #define GPIO_MODER_MODE13_0 (0x1U << GPIO_MODER_MODE13_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 9028 #define GPIO_MODER_MODE13_1 (0x2U << GPIO_MODER_MODE13_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 9029 #define GPIO_MODER_MODE14_Pos (28U)
lypinator 0:bb348c97df44 9030 #define GPIO_MODER_MODE14_Msk (0x3U << GPIO_MODER_MODE14_Pos) /*!< 0x30000000 */
lypinator 0:bb348c97df44 9031 #define GPIO_MODER_MODE14 GPIO_MODER_MODE14_Msk
lypinator 0:bb348c97df44 9032 #define GPIO_MODER_MODE14_0 (0x1U << GPIO_MODER_MODE14_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 9033 #define GPIO_MODER_MODE14_1 (0x2U << GPIO_MODER_MODE14_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 9034 #define GPIO_MODER_MODE15_Pos (30U)
lypinator 0:bb348c97df44 9035 #define GPIO_MODER_MODE15_Msk (0x3U << GPIO_MODER_MODE15_Pos) /*!< 0xC0000000 */
lypinator 0:bb348c97df44 9036 #define GPIO_MODER_MODE15 GPIO_MODER_MODE15_Msk
lypinator 0:bb348c97df44 9037 #define GPIO_MODER_MODE15_0 (0x1U << GPIO_MODER_MODE15_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 9038 #define GPIO_MODER_MODE15_1 (0x2U << GPIO_MODER_MODE15_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 9039
lypinator 0:bb348c97df44 9040 /* Legacy defines */
lypinator 0:bb348c97df44 9041 #define GPIO_MODER_MODER0_Pos (0U)
lypinator 0:bb348c97df44 9042 #define GPIO_MODER_MODER0_Msk (0x3U << GPIO_MODER_MODER0_Pos) /*!< 0x00000003 */
lypinator 0:bb348c97df44 9043 #define GPIO_MODER_MODER0 GPIO_MODER_MODER0_Msk
lypinator 0:bb348c97df44 9044 #define GPIO_MODER_MODER0_0 (0x1U << GPIO_MODER_MODER0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 9045 #define GPIO_MODER_MODER0_1 (0x2U << GPIO_MODER_MODER0_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 9046 #define GPIO_MODER_MODER1_Pos (2U)
lypinator 0:bb348c97df44 9047 #define GPIO_MODER_MODER1_Msk (0x3U << GPIO_MODER_MODER1_Pos) /*!< 0x0000000C */
lypinator 0:bb348c97df44 9048 #define GPIO_MODER_MODER1 GPIO_MODER_MODER1_Msk
lypinator 0:bb348c97df44 9049 #define GPIO_MODER_MODER1_0 (0x1U << GPIO_MODER_MODER1_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 9050 #define GPIO_MODER_MODER1_1 (0x2U << GPIO_MODER_MODER1_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 9051 #define GPIO_MODER_MODER2_Pos (4U)
lypinator 0:bb348c97df44 9052 #define GPIO_MODER_MODER2_Msk (0x3U << GPIO_MODER_MODER2_Pos) /*!< 0x00000030 */
lypinator 0:bb348c97df44 9053 #define GPIO_MODER_MODER2 GPIO_MODER_MODER2_Msk
lypinator 0:bb348c97df44 9054 #define GPIO_MODER_MODER2_0 (0x1U << GPIO_MODER_MODER2_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 9055 #define GPIO_MODER_MODER2_1 (0x2U << GPIO_MODER_MODER2_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 9056 #define GPIO_MODER_MODER3_Pos (6U)
lypinator 0:bb348c97df44 9057 #define GPIO_MODER_MODER3_Msk (0x3U << GPIO_MODER_MODER3_Pos) /*!< 0x000000C0 */
lypinator 0:bb348c97df44 9058 #define GPIO_MODER_MODER3 GPIO_MODER_MODER3_Msk
lypinator 0:bb348c97df44 9059 #define GPIO_MODER_MODER3_0 (0x1U << GPIO_MODER_MODER3_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 9060 #define GPIO_MODER_MODER3_1 (0x2U << GPIO_MODER_MODER3_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 9061 #define GPIO_MODER_MODER4_Pos (8U)
lypinator 0:bb348c97df44 9062 #define GPIO_MODER_MODER4_Msk (0x3U << GPIO_MODER_MODER4_Pos) /*!< 0x00000300 */
lypinator 0:bb348c97df44 9063 #define GPIO_MODER_MODER4 GPIO_MODER_MODER4_Msk
lypinator 0:bb348c97df44 9064 #define GPIO_MODER_MODER4_0 (0x1U << GPIO_MODER_MODER4_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 9065 #define GPIO_MODER_MODER4_1 (0x2U << GPIO_MODER_MODER4_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 9066 #define GPIO_MODER_MODER5_Pos (10U)
lypinator 0:bb348c97df44 9067 #define GPIO_MODER_MODER5_Msk (0x3U << GPIO_MODER_MODER5_Pos) /*!< 0x00000C00 */
lypinator 0:bb348c97df44 9068 #define GPIO_MODER_MODER5 GPIO_MODER_MODER5_Msk
lypinator 0:bb348c97df44 9069 #define GPIO_MODER_MODER5_0 (0x1U << GPIO_MODER_MODER5_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 9070 #define GPIO_MODER_MODER5_1 (0x2U << GPIO_MODER_MODER5_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 9071 #define GPIO_MODER_MODER6_Pos (12U)
lypinator 0:bb348c97df44 9072 #define GPIO_MODER_MODER6_Msk (0x3U << GPIO_MODER_MODER6_Pos) /*!< 0x00003000 */
lypinator 0:bb348c97df44 9073 #define GPIO_MODER_MODER6 GPIO_MODER_MODER6_Msk
lypinator 0:bb348c97df44 9074 #define GPIO_MODER_MODER6_0 (0x1U << GPIO_MODER_MODER6_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 9075 #define GPIO_MODER_MODER6_1 (0x2U << GPIO_MODER_MODER6_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 9076 #define GPIO_MODER_MODER7_Pos (14U)
lypinator 0:bb348c97df44 9077 #define GPIO_MODER_MODER7_Msk (0x3U << GPIO_MODER_MODER7_Pos) /*!< 0x0000C000 */
lypinator 0:bb348c97df44 9078 #define GPIO_MODER_MODER7 GPIO_MODER_MODER7_Msk
lypinator 0:bb348c97df44 9079 #define GPIO_MODER_MODER7_0 (0x1U << GPIO_MODER_MODER7_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 9080 #define GPIO_MODER_MODER7_1 (0x2U << GPIO_MODER_MODER7_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 9081 #define GPIO_MODER_MODER8_Pos (16U)
lypinator 0:bb348c97df44 9082 #define GPIO_MODER_MODER8_Msk (0x3U << GPIO_MODER_MODER8_Pos) /*!< 0x00030000 */
lypinator 0:bb348c97df44 9083 #define GPIO_MODER_MODER8 GPIO_MODER_MODER8_Msk
lypinator 0:bb348c97df44 9084 #define GPIO_MODER_MODER8_0 (0x1U << GPIO_MODER_MODER8_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 9085 #define GPIO_MODER_MODER8_1 (0x2U << GPIO_MODER_MODER8_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 9086 #define GPIO_MODER_MODER9_Pos (18U)
lypinator 0:bb348c97df44 9087 #define GPIO_MODER_MODER9_Msk (0x3U << GPIO_MODER_MODER9_Pos) /*!< 0x000C0000 */
lypinator 0:bb348c97df44 9088 #define GPIO_MODER_MODER9 GPIO_MODER_MODER9_Msk
lypinator 0:bb348c97df44 9089 #define GPIO_MODER_MODER9_0 (0x1U << GPIO_MODER_MODER9_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 9090 #define GPIO_MODER_MODER9_1 (0x2U << GPIO_MODER_MODER9_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 9091 #define GPIO_MODER_MODER10_Pos (20U)
lypinator 0:bb348c97df44 9092 #define GPIO_MODER_MODER10_Msk (0x3U << GPIO_MODER_MODER10_Pos) /*!< 0x00300000 */
lypinator 0:bb348c97df44 9093 #define GPIO_MODER_MODER10 GPIO_MODER_MODER10_Msk
lypinator 0:bb348c97df44 9094 #define GPIO_MODER_MODER10_0 (0x1U << GPIO_MODER_MODER10_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 9095 #define GPIO_MODER_MODER10_1 (0x2U << GPIO_MODER_MODER10_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 9096 #define GPIO_MODER_MODER11_Pos (22U)
lypinator 0:bb348c97df44 9097 #define GPIO_MODER_MODER11_Msk (0x3U << GPIO_MODER_MODER11_Pos) /*!< 0x00C00000 */
lypinator 0:bb348c97df44 9098 #define GPIO_MODER_MODER11 GPIO_MODER_MODER11_Msk
lypinator 0:bb348c97df44 9099 #define GPIO_MODER_MODER11_0 (0x1U << GPIO_MODER_MODER11_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 9100 #define GPIO_MODER_MODER11_1 (0x2U << GPIO_MODER_MODER11_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 9101 #define GPIO_MODER_MODER12_Pos (24U)
lypinator 0:bb348c97df44 9102 #define GPIO_MODER_MODER12_Msk (0x3U << GPIO_MODER_MODER12_Pos) /*!< 0x03000000 */
lypinator 0:bb348c97df44 9103 #define GPIO_MODER_MODER12 GPIO_MODER_MODER12_Msk
lypinator 0:bb348c97df44 9104 #define GPIO_MODER_MODER12_0 (0x1U << GPIO_MODER_MODER12_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 9105 #define GPIO_MODER_MODER12_1 (0x2U << GPIO_MODER_MODER12_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 9106 #define GPIO_MODER_MODER13_Pos (26U)
lypinator 0:bb348c97df44 9107 #define GPIO_MODER_MODER13_Msk (0x3U << GPIO_MODER_MODER13_Pos) /*!< 0x0C000000 */
lypinator 0:bb348c97df44 9108 #define GPIO_MODER_MODER13 GPIO_MODER_MODER13_Msk
lypinator 0:bb348c97df44 9109 #define GPIO_MODER_MODER13_0 (0x1U << GPIO_MODER_MODER13_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 9110 #define GPIO_MODER_MODER13_1 (0x2U << GPIO_MODER_MODER13_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 9111 #define GPIO_MODER_MODER14_Pos (28U)
lypinator 0:bb348c97df44 9112 #define GPIO_MODER_MODER14_Msk (0x3U << GPIO_MODER_MODER14_Pos) /*!< 0x30000000 */
lypinator 0:bb348c97df44 9113 #define GPIO_MODER_MODER14 GPIO_MODER_MODER14_Msk
lypinator 0:bb348c97df44 9114 #define GPIO_MODER_MODER14_0 (0x1U << GPIO_MODER_MODER14_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 9115 #define GPIO_MODER_MODER14_1 (0x2U << GPIO_MODER_MODER14_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 9116 #define GPIO_MODER_MODER15_Pos (30U)
lypinator 0:bb348c97df44 9117 #define GPIO_MODER_MODER15_Msk (0x3U << GPIO_MODER_MODER15_Pos) /*!< 0xC0000000 */
lypinator 0:bb348c97df44 9118 #define GPIO_MODER_MODER15 GPIO_MODER_MODER15_Msk
lypinator 0:bb348c97df44 9119 #define GPIO_MODER_MODER15_0 (0x1U << GPIO_MODER_MODER15_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 9120 #define GPIO_MODER_MODER15_1 (0x2U << GPIO_MODER_MODER15_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 9121
lypinator 0:bb348c97df44 9122 /****************** Bits definition for GPIO_OTYPER register ****************/
lypinator 0:bb348c97df44 9123 #define GPIO_OTYPER_OT0_Pos (0U)
lypinator 0:bb348c97df44 9124 #define GPIO_OTYPER_OT0_Msk (0x1U << GPIO_OTYPER_OT0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 9125 #define GPIO_OTYPER_OT0 GPIO_OTYPER_OT0_Msk
lypinator 0:bb348c97df44 9126 #define GPIO_OTYPER_OT1_Pos (1U)
lypinator 0:bb348c97df44 9127 #define GPIO_OTYPER_OT1_Msk (0x1U << GPIO_OTYPER_OT1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 9128 #define GPIO_OTYPER_OT1 GPIO_OTYPER_OT1_Msk
lypinator 0:bb348c97df44 9129 #define GPIO_OTYPER_OT2_Pos (2U)
lypinator 0:bb348c97df44 9130 #define GPIO_OTYPER_OT2_Msk (0x1U << GPIO_OTYPER_OT2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 9131 #define GPIO_OTYPER_OT2 GPIO_OTYPER_OT2_Msk
lypinator 0:bb348c97df44 9132 #define GPIO_OTYPER_OT3_Pos (3U)
lypinator 0:bb348c97df44 9133 #define GPIO_OTYPER_OT3_Msk (0x1U << GPIO_OTYPER_OT3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 9134 #define GPIO_OTYPER_OT3 GPIO_OTYPER_OT3_Msk
lypinator 0:bb348c97df44 9135 #define GPIO_OTYPER_OT4_Pos (4U)
lypinator 0:bb348c97df44 9136 #define GPIO_OTYPER_OT4_Msk (0x1U << GPIO_OTYPER_OT4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 9137 #define GPIO_OTYPER_OT4 GPIO_OTYPER_OT4_Msk
lypinator 0:bb348c97df44 9138 #define GPIO_OTYPER_OT5_Pos (5U)
lypinator 0:bb348c97df44 9139 #define GPIO_OTYPER_OT5_Msk (0x1U << GPIO_OTYPER_OT5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 9140 #define GPIO_OTYPER_OT5 GPIO_OTYPER_OT5_Msk
lypinator 0:bb348c97df44 9141 #define GPIO_OTYPER_OT6_Pos (6U)
lypinator 0:bb348c97df44 9142 #define GPIO_OTYPER_OT6_Msk (0x1U << GPIO_OTYPER_OT6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 9143 #define GPIO_OTYPER_OT6 GPIO_OTYPER_OT6_Msk
lypinator 0:bb348c97df44 9144 #define GPIO_OTYPER_OT7_Pos (7U)
lypinator 0:bb348c97df44 9145 #define GPIO_OTYPER_OT7_Msk (0x1U << GPIO_OTYPER_OT7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 9146 #define GPIO_OTYPER_OT7 GPIO_OTYPER_OT7_Msk
lypinator 0:bb348c97df44 9147 #define GPIO_OTYPER_OT8_Pos (8U)
lypinator 0:bb348c97df44 9148 #define GPIO_OTYPER_OT8_Msk (0x1U << GPIO_OTYPER_OT8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 9149 #define GPIO_OTYPER_OT8 GPIO_OTYPER_OT8_Msk
lypinator 0:bb348c97df44 9150 #define GPIO_OTYPER_OT9_Pos (9U)
lypinator 0:bb348c97df44 9151 #define GPIO_OTYPER_OT9_Msk (0x1U << GPIO_OTYPER_OT9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 9152 #define GPIO_OTYPER_OT9 GPIO_OTYPER_OT9_Msk
lypinator 0:bb348c97df44 9153 #define GPIO_OTYPER_OT10_Pos (10U)
lypinator 0:bb348c97df44 9154 #define GPIO_OTYPER_OT10_Msk (0x1U << GPIO_OTYPER_OT10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 9155 #define GPIO_OTYPER_OT10 GPIO_OTYPER_OT10_Msk
lypinator 0:bb348c97df44 9156 #define GPIO_OTYPER_OT11_Pos (11U)
lypinator 0:bb348c97df44 9157 #define GPIO_OTYPER_OT11_Msk (0x1U << GPIO_OTYPER_OT11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 9158 #define GPIO_OTYPER_OT11 GPIO_OTYPER_OT11_Msk
lypinator 0:bb348c97df44 9159 #define GPIO_OTYPER_OT12_Pos (12U)
lypinator 0:bb348c97df44 9160 #define GPIO_OTYPER_OT12_Msk (0x1U << GPIO_OTYPER_OT12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 9161 #define GPIO_OTYPER_OT12 GPIO_OTYPER_OT12_Msk
lypinator 0:bb348c97df44 9162 #define GPIO_OTYPER_OT13_Pos (13U)
lypinator 0:bb348c97df44 9163 #define GPIO_OTYPER_OT13_Msk (0x1U << GPIO_OTYPER_OT13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 9164 #define GPIO_OTYPER_OT13 GPIO_OTYPER_OT13_Msk
lypinator 0:bb348c97df44 9165 #define GPIO_OTYPER_OT14_Pos (14U)
lypinator 0:bb348c97df44 9166 #define GPIO_OTYPER_OT14_Msk (0x1U << GPIO_OTYPER_OT14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 9167 #define GPIO_OTYPER_OT14 GPIO_OTYPER_OT14_Msk
lypinator 0:bb348c97df44 9168 #define GPIO_OTYPER_OT15_Pos (15U)
lypinator 0:bb348c97df44 9169 #define GPIO_OTYPER_OT15_Msk (0x1U << GPIO_OTYPER_OT15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 9170 #define GPIO_OTYPER_OT15 GPIO_OTYPER_OT15_Msk
lypinator 0:bb348c97df44 9171
lypinator 0:bb348c97df44 9172 /* Legacy defines */
lypinator 0:bb348c97df44 9173 #define GPIO_OTYPER_OT_0 GPIO_OTYPER_OT0
lypinator 0:bb348c97df44 9174 #define GPIO_OTYPER_OT_1 GPIO_OTYPER_OT1
lypinator 0:bb348c97df44 9175 #define GPIO_OTYPER_OT_2 GPIO_OTYPER_OT2
lypinator 0:bb348c97df44 9176 #define GPIO_OTYPER_OT_3 GPIO_OTYPER_OT3
lypinator 0:bb348c97df44 9177 #define GPIO_OTYPER_OT_4 GPIO_OTYPER_OT4
lypinator 0:bb348c97df44 9178 #define GPIO_OTYPER_OT_5 GPIO_OTYPER_OT5
lypinator 0:bb348c97df44 9179 #define GPIO_OTYPER_OT_6 GPIO_OTYPER_OT6
lypinator 0:bb348c97df44 9180 #define GPIO_OTYPER_OT_7 GPIO_OTYPER_OT7
lypinator 0:bb348c97df44 9181 #define GPIO_OTYPER_OT_8 GPIO_OTYPER_OT8
lypinator 0:bb348c97df44 9182 #define GPIO_OTYPER_OT_9 GPIO_OTYPER_OT9
lypinator 0:bb348c97df44 9183 #define GPIO_OTYPER_OT_10 GPIO_OTYPER_OT10
lypinator 0:bb348c97df44 9184 #define GPIO_OTYPER_OT_11 GPIO_OTYPER_OT11
lypinator 0:bb348c97df44 9185 #define GPIO_OTYPER_OT_12 GPIO_OTYPER_OT12
lypinator 0:bb348c97df44 9186 #define GPIO_OTYPER_OT_13 GPIO_OTYPER_OT13
lypinator 0:bb348c97df44 9187 #define GPIO_OTYPER_OT_14 GPIO_OTYPER_OT14
lypinator 0:bb348c97df44 9188 #define GPIO_OTYPER_OT_15 GPIO_OTYPER_OT15
lypinator 0:bb348c97df44 9189
lypinator 0:bb348c97df44 9190 /****************** Bits definition for GPIO_OSPEEDR register ***************/
lypinator 0:bb348c97df44 9191 #define GPIO_OSPEEDR_OSPEED0_Pos (0U)
lypinator 0:bb348c97df44 9192 #define GPIO_OSPEEDR_OSPEED0_Msk (0x3U << GPIO_OSPEEDR_OSPEED0_Pos) /*!< 0x00000003 */
lypinator 0:bb348c97df44 9193 #define GPIO_OSPEEDR_OSPEED0 GPIO_OSPEEDR_OSPEED0_Msk
lypinator 0:bb348c97df44 9194 #define GPIO_OSPEEDR_OSPEED0_0 (0x1U << GPIO_OSPEEDR_OSPEED0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 9195 #define GPIO_OSPEEDR_OSPEED0_1 (0x2U << GPIO_OSPEEDR_OSPEED0_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 9196 #define GPIO_OSPEEDR_OSPEED1_Pos (2U)
lypinator 0:bb348c97df44 9197 #define GPIO_OSPEEDR_OSPEED1_Msk (0x3U << GPIO_OSPEEDR_OSPEED1_Pos) /*!< 0x0000000C */
lypinator 0:bb348c97df44 9198 #define GPIO_OSPEEDR_OSPEED1 GPIO_OSPEEDR_OSPEED1_Msk
lypinator 0:bb348c97df44 9199 #define GPIO_OSPEEDR_OSPEED1_0 (0x1U << GPIO_OSPEEDR_OSPEED1_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 9200 #define GPIO_OSPEEDR_OSPEED1_1 (0x2U << GPIO_OSPEEDR_OSPEED1_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 9201 #define GPIO_OSPEEDR_OSPEED2_Pos (4U)
lypinator 0:bb348c97df44 9202 #define GPIO_OSPEEDR_OSPEED2_Msk (0x3U << GPIO_OSPEEDR_OSPEED2_Pos) /*!< 0x00000030 */
lypinator 0:bb348c97df44 9203 #define GPIO_OSPEEDR_OSPEED2 GPIO_OSPEEDR_OSPEED2_Msk
lypinator 0:bb348c97df44 9204 #define GPIO_OSPEEDR_OSPEED2_0 (0x1U << GPIO_OSPEEDR_OSPEED2_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 9205 #define GPIO_OSPEEDR_OSPEED2_1 (0x2U << GPIO_OSPEEDR_OSPEED2_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 9206 #define GPIO_OSPEEDR_OSPEED3_Pos (6U)
lypinator 0:bb348c97df44 9207 #define GPIO_OSPEEDR_OSPEED3_Msk (0x3U << GPIO_OSPEEDR_OSPEED3_Pos) /*!< 0x000000C0 */
lypinator 0:bb348c97df44 9208 #define GPIO_OSPEEDR_OSPEED3 GPIO_OSPEEDR_OSPEED3_Msk
lypinator 0:bb348c97df44 9209 #define GPIO_OSPEEDR_OSPEED3_0 (0x1U << GPIO_OSPEEDR_OSPEED3_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 9210 #define GPIO_OSPEEDR_OSPEED3_1 (0x2U << GPIO_OSPEEDR_OSPEED3_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 9211 #define GPIO_OSPEEDR_OSPEED4_Pos (8U)
lypinator 0:bb348c97df44 9212 #define GPIO_OSPEEDR_OSPEED4_Msk (0x3U << GPIO_OSPEEDR_OSPEED4_Pos) /*!< 0x00000300 */
lypinator 0:bb348c97df44 9213 #define GPIO_OSPEEDR_OSPEED4 GPIO_OSPEEDR_OSPEED4_Msk
lypinator 0:bb348c97df44 9214 #define GPIO_OSPEEDR_OSPEED4_0 (0x1U << GPIO_OSPEEDR_OSPEED4_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 9215 #define GPIO_OSPEEDR_OSPEED4_1 (0x2U << GPIO_OSPEEDR_OSPEED4_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 9216 #define GPIO_OSPEEDR_OSPEED5_Pos (10U)
lypinator 0:bb348c97df44 9217 #define GPIO_OSPEEDR_OSPEED5_Msk (0x3U << GPIO_OSPEEDR_OSPEED5_Pos) /*!< 0x00000C00 */
lypinator 0:bb348c97df44 9218 #define GPIO_OSPEEDR_OSPEED5 GPIO_OSPEEDR_OSPEED5_Msk
lypinator 0:bb348c97df44 9219 #define GPIO_OSPEEDR_OSPEED5_0 (0x1U << GPIO_OSPEEDR_OSPEED5_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 9220 #define GPIO_OSPEEDR_OSPEED5_1 (0x2U << GPIO_OSPEEDR_OSPEED5_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 9221 #define GPIO_OSPEEDR_OSPEED6_Pos (12U)
lypinator 0:bb348c97df44 9222 #define GPIO_OSPEEDR_OSPEED6_Msk (0x3U << GPIO_OSPEEDR_OSPEED6_Pos) /*!< 0x00003000 */
lypinator 0:bb348c97df44 9223 #define GPIO_OSPEEDR_OSPEED6 GPIO_OSPEEDR_OSPEED6_Msk
lypinator 0:bb348c97df44 9224 #define GPIO_OSPEEDR_OSPEED6_0 (0x1U << GPIO_OSPEEDR_OSPEED6_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 9225 #define GPIO_OSPEEDR_OSPEED6_1 (0x2U << GPIO_OSPEEDR_OSPEED6_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 9226 #define GPIO_OSPEEDR_OSPEED7_Pos (14U)
lypinator 0:bb348c97df44 9227 #define GPIO_OSPEEDR_OSPEED7_Msk (0x3U << GPIO_OSPEEDR_OSPEED7_Pos) /*!< 0x0000C000 */
lypinator 0:bb348c97df44 9228 #define GPIO_OSPEEDR_OSPEED7 GPIO_OSPEEDR_OSPEED7_Msk
lypinator 0:bb348c97df44 9229 #define GPIO_OSPEEDR_OSPEED7_0 (0x1U << GPIO_OSPEEDR_OSPEED7_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 9230 #define GPIO_OSPEEDR_OSPEED7_1 (0x2U << GPIO_OSPEEDR_OSPEED7_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 9231 #define GPIO_OSPEEDR_OSPEED8_Pos (16U)
lypinator 0:bb348c97df44 9232 #define GPIO_OSPEEDR_OSPEED8_Msk (0x3U << GPIO_OSPEEDR_OSPEED8_Pos) /*!< 0x00030000 */
lypinator 0:bb348c97df44 9233 #define GPIO_OSPEEDR_OSPEED8 GPIO_OSPEEDR_OSPEED8_Msk
lypinator 0:bb348c97df44 9234 #define GPIO_OSPEEDR_OSPEED8_0 (0x1U << GPIO_OSPEEDR_OSPEED8_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 9235 #define GPIO_OSPEEDR_OSPEED8_1 (0x2U << GPIO_OSPEEDR_OSPEED8_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 9236 #define GPIO_OSPEEDR_OSPEED9_Pos (18U)
lypinator 0:bb348c97df44 9237 #define GPIO_OSPEEDR_OSPEED9_Msk (0x3U << GPIO_OSPEEDR_OSPEED9_Pos) /*!< 0x000C0000 */
lypinator 0:bb348c97df44 9238 #define GPIO_OSPEEDR_OSPEED9 GPIO_OSPEEDR_OSPEED9_Msk
lypinator 0:bb348c97df44 9239 #define GPIO_OSPEEDR_OSPEED9_0 (0x1U << GPIO_OSPEEDR_OSPEED9_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 9240 #define GPIO_OSPEEDR_OSPEED9_1 (0x2U << GPIO_OSPEEDR_OSPEED9_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 9241 #define GPIO_OSPEEDR_OSPEED10_Pos (20U)
lypinator 0:bb348c97df44 9242 #define GPIO_OSPEEDR_OSPEED10_Msk (0x3U << GPIO_OSPEEDR_OSPEED10_Pos) /*!< 0x00300000 */
lypinator 0:bb348c97df44 9243 #define GPIO_OSPEEDR_OSPEED10 GPIO_OSPEEDR_OSPEED10_Msk
lypinator 0:bb348c97df44 9244 #define GPIO_OSPEEDR_OSPEED10_0 (0x1U << GPIO_OSPEEDR_OSPEED10_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 9245 #define GPIO_OSPEEDR_OSPEED10_1 (0x2U << GPIO_OSPEEDR_OSPEED10_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 9246 #define GPIO_OSPEEDR_OSPEED11_Pos (22U)
lypinator 0:bb348c97df44 9247 #define GPIO_OSPEEDR_OSPEED11_Msk (0x3U << GPIO_OSPEEDR_OSPEED11_Pos) /*!< 0x00C00000 */
lypinator 0:bb348c97df44 9248 #define GPIO_OSPEEDR_OSPEED11 GPIO_OSPEEDR_OSPEED11_Msk
lypinator 0:bb348c97df44 9249 #define GPIO_OSPEEDR_OSPEED11_0 (0x1U << GPIO_OSPEEDR_OSPEED11_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 9250 #define GPIO_OSPEEDR_OSPEED11_1 (0x2U << GPIO_OSPEEDR_OSPEED11_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 9251 #define GPIO_OSPEEDR_OSPEED12_Pos (24U)
lypinator 0:bb348c97df44 9252 #define GPIO_OSPEEDR_OSPEED12_Msk (0x3U << GPIO_OSPEEDR_OSPEED12_Pos) /*!< 0x03000000 */
lypinator 0:bb348c97df44 9253 #define GPIO_OSPEEDR_OSPEED12 GPIO_OSPEEDR_OSPEED12_Msk
lypinator 0:bb348c97df44 9254 #define GPIO_OSPEEDR_OSPEED12_0 (0x1U << GPIO_OSPEEDR_OSPEED12_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 9255 #define GPIO_OSPEEDR_OSPEED12_1 (0x2U << GPIO_OSPEEDR_OSPEED12_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 9256 #define GPIO_OSPEEDR_OSPEED13_Pos (26U)
lypinator 0:bb348c97df44 9257 #define GPIO_OSPEEDR_OSPEED13_Msk (0x3U << GPIO_OSPEEDR_OSPEED13_Pos) /*!< 0x0C000000 */
lypinator 0:bb348c97df44 9258 #define GPIO_OSPEEDR_OSPEED13 GPIO_OSPEEDR_OSPEED13_Msk
lypinator 0:bb348c97df44 9259 #define GPIO_OSPEEDR_OSPEED13_0 (0x1U << GPIO_OSPEEDR_OSPEED13_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 9260 #define GPIO_OSPEEDR_OSPEED13_1 (0x2U << GPIO_OSPEEDR_OSPEED13_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 9261 #define GPIO_OSPEEDR_OSPEED14_Pos (28U)
lypinator 0:bb348c97df44 9262 #define GPIO_OSPEEDR_OSPEED14_Msk (0x3U << GPIO_OSPEEDR_OSPEED14_Pos) /*!< 0x30000000 */
lypinator 0:bb348c97df44 9263 #define GPIO_OSPEEDR_OSPEED14 GPIO_OSPEEDR_OSPEED14_Msk
lypinator 0:bb348c97df44 9264 #define GPIO_OSPEEDR_OSPEED14_0 (0x1U << GPIO_OSPEEDR_OSPEED14_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 9265 #define GPIO_OSPEEDR_OSPEED14_1 (0x2U << GPIO_OSPEEDR_OSPEED14_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 9266 #define GPIO_OSPEEDR_OSPEED15_Pos (30U)
lypinator 0:bb348c97df44 9267 #define GPIO_OSPEEDR_OSPEED15_Msk (0x3U << GPIO_OSPEEDR_OSPEED15_Pos) /*!< 0xC0000000 */
lypinator 0:bb348c97df44 9268 #define GPIO_OSPEEDR_OSPEED15 GPIO_OSPEEDR_OSPEED15_Msk
lypinator 0:bb348c97df44 9269 #define GPIO_OSPEEDR_OSPEED15_0 (0x1U << GPIO_OSPEEDR_OSPEED15_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 9270 #define GPIO_OSPEEDR_OSPEED15_1 (0x2U << GPIO_OSPEEDR_OSPEED15_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 9271
lypinator 0:bb348c97df44 9272 /* Legacy defines */
lypinator 0:bb348c97df44 9273 #define GPIO_OSPEEDER_OSPEEDR0 GPIO_OSPEEDR_OSPEED0
lypinator 0:bb348c97df44 9274 #define GPIO_OSPEEDER_OSPEEDR0_0 GPIO_OSPEEDR_OSPEED0_0
lypinator 0:bb348c97df44 9275 #define GPIO_OSPEEDER_OSPEEDR0_1 GPIO_OSPEEDR_OSPEED0_1
lypinator 0:bb348c97df44 9276 #define GPIO_OSPEEDER_OSPEEDR1 GPIO_OSPEEDR_OSPEED1
lypinator 0:bb348c97df44 9277 #define GPIO_OSPEEDER_OSPEEDR1_0 GPIO_OSPEEDR_OSPEED1_0
lypinator 0:bb348c97df44 9278 #define GPIO_OSPEEDER_OSPEEDR1_1 GPIO_OSPEEDR_OSPEED1_1
lypinator 0:bb348c97df44 9279 #define GPIO_OSPEEDER_OSPEEDR2 GPIO_OSPEEDR_OSPEED2
lypinator 0:bb348c97df44 9280 #define GPIO_OSPEEDER_OSPEEDR2_0 GPIO_OSPEEDR_OSPEED2_0
lypinator 0:bb348c97df44 9281 #define GPIO_OSPEEDER_OSPEEDR2_1 GPIO_OSPEEDR_OSPEED2_1
lypinator 0:bb348c97df44 9282 #define GPIO_OSPEEDER_OSPEEDR3 GPIO_OSPEEDR_OSPEED3
lypinator 0:bb348c97df44 9283 #define GPIO_OSPEEDER_OSPEEDR3_0 GPIO_OSPEEDR_OSPEED3_0
lypinator 0:bb348c97df44 9284 #define GPIO_OSPEEDER_OSPEEDR3_1 GPIO_OSPEEDR_OSPEED3_1
lypinator 0:bb348c97df44 9285 #define GPIO_OSPEEDER_OSPEEDR4 GPIO_OSPEEDR_OSPEED4
lypinator 0:bb348c97df44 9286 #define GPIO_OSPEEDER_OSPEEDR4_0 GPIO_OSPEEDR_OSPEED4_0
lypinator 0:bb348c97df44 9287 #define GPIO_OSPEEDER_OSPEEDR4_1 GPIO_OSPEEDR_OSPEED4_1
lypinator 0:bb348c97df44 9288 #define GPIO_OSPEEDER_OSPEEDR5 GPIO_OSPEEDR_OSPEED5
lypinator 0:bb348c97df44 9289 #define GPIO_OSPEEDER_OSPEEDR5_0 GPIO_OSPEEDR_OSPEED5_0
lypinator 0:bb348c97df44 9290 #define GPIO_OSPEEDER_OSPEEDR5_1 GPIO_OSPEEDR_OSPEED5_1
lypinator 0:bb348c97df44 9291 #define GPIO_OSPEEDER_OSPEEDR6 GPIO_OSPEEDR_OSPEED6
lypinator 0:bb348c97df44 9292 #define GPIO_OSPEEDER_OSPEEDR6_0 GPIO_OSPEEDR_OSPEED6_0
lypinator 0:bb348c97df44 9293 #define GPIO_OSPEEDER_OSPEEDR6_1 GPIO_OSPEEDR_OSPEED6_1
lypinator 0:bb348c97df44 9294 #define GPIO_OSPEEDER_OSPEEDR7 GPIO_OSPEEDR_OSPEED7
lypinator 0:bb348c97df44 9295 #define GPIO_OSPEEDER_OSPEEDR7_0 GPIO_OSPEEDR_OSPEED7_0
lypinator 0:bb348c97df44 9296 #define GPIO_OSPEEDER_OSPEEDR7_1 GPIO_OSPEEDR_OSPEED7_1
lypinator 0:bb348c97df44 9297 #define GPIO_OSPEEDER_OSPEEDR8 GPIO_OSPEEDR_OSPEED8
lypinator 0:bb348c97df44 9298 #define GPIO_OSPEEDER_OSPEEDR8_0 GPIO_OSPEEDR_OSPEED8_0
lypinator 0:bb348c97df44 9299 #define GPIO_OSPEEDER_OSPEEDR8_1 GPIO_OSPEEDR_OSPEED8_1
lypinator 0:bb348c97df44 9300 #define GPIO_OSPEEDER_OSPEEDR9 GPIO_OSPEEDR_OSPEED9
lypinator 0:bb348c97df44 9301 #define GPIO_OSPEEDER_OSPEEDR9_0 GPIO_OSPEEDR_OSPEED9_0
lypinator 0:bb348c97df44 9302 #define GPIO_OSPEEDER_OSPEEDR9_1 GPIO_OSPEEDR_OSPEED9_1
lypinator 0:bb348c97df44 9303 #define GPIO_OSPEEDER_OSPEEDR10 GPIO_OSPEEDR_OSPEED10
lypinator 0:bb348c97df44 9304 #define GPIO_OSPEEDER_OSPEEDR10_0 GPIO_OSPEEDR_OSPEED10_0
lypinator 0:bb348c97df44 9305 #define GPIO_OSPEEDER_OSPEEDR10_1 GPIO_OSPEEDR_OSPEED10_1
lypinator 0:bb348c97df44 9306 #define GPIO_OSPEEDER_OSPEEDR11 GPIO_OSPEEDR_OSPEED11
lypinator 0:bb348c97df44 9307 #define GPIO_OSPEEDER_OSPEEDR11_0 GPIO_OSPEEDR_OSPEED11_0
lypinator 0:bb348c97df44 9308 #define GPIO_OSPEEDER_OSPEEDR11_1 GPIO_OSPEEDR_OSPEED11_1
lypinator 0:bb348c97df44 9309 #define GPIO_OSPEEDER_OSPEEDR12 GPIO_OSPEEDR_OSPEED12
lypinator 0:bb348c97df44 9310 #define GPIO_OSPEEDER_OSPEEDR12_0 GPIO_OSPEEDR_OSPEED12_0
lypinator 0:bb348c97df44 9311 #define GPIO_OSPEEDER_OSPEEDR12_1 GPIO_OSPEEDR_OSPEED12_1
lypinator 0:bb348c97df44 9312 #define GPIO_OSPEEDER_OSPEEDR13 GPIO_OSPEEDR_OSPEED13
lypinator 0:bb348c97df44 9313 #define GPIO_OSPEEDER_OSPEEDR13_0 GPIO_OSPEEDR_OSPEED13_0
lypinator 0:bb348c97df44 9314 #define GPIO_OSPEEDER_OSPEEDR13_1 GPIO_OSPEEDR_OSPEED13_1
lypinator 0:bb348c97df44 9315 #define GPIO_OSPEEDER_OSPEEDR14 GPIO_OSPEEDR_OSPEED14
lypinator 0:bb348c97df44 9316 #define GPIO_OSPEEDER_OSPEEDR14_0 GPIO_OSPEEDR_OSPEED14_0
lypinator 0:bb348c97df44 9317 #define GPIO_OSPEEDER_OSPEEDR14_1 GPIO_OSPEEDR_OSPEED14_1
lypinator 0:bb348c97df44 9318 #define GPIO_OSPEEDER_OSPEEDR15 GPIO_OSPEEDR_OSPEED15
lypinator 0:bb348c97df44 9319 #define GPIO_OSPEEDER_OSPEEDR15_0 GPIO_OSPEEDR_OSPEED15_0
lypinator 0:bb348c97df44 9320 #define GPIO_OSPEEDER_OSPEEDR15_1 GPIO_OSPEEDR_OSPEED15_1
lypinator 0:bb348c97df44 9321
lypinator 0:bb348c97df44 9322 /****************** Bits definition for GPIO_PUPDR register *****************/
lypinator 0:bb348c97df44 9323 #define GPIO_PUPDR_PUPD0_Pos (0U)
lypinator 0:bb348c97df44 9324 #define GPIO_PUPDR_PUPD0_Msk (0x3U << GPIO_PUPDR_PUPD0_Pos) /*!< 0x00000003 */
lypinator 0:bb348c97df44 9325 #define GPIO_PUPDR_PUPD0 GPIO_PUPDR_PUPD0_Msk
lypinator 0:bb348c97df44 9326 #define GPIO_PUPDR_PUPD0_0 (0x1U << GPIO_PUPDR_PUPD0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 9327 #define GPIO_PUPDR_PUPD0_1 (0x2U << GPIO_PUPDR_PUPD0_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 9328 #define GPIO_PUPDR_PUPD1_Pos (2U)
lypinator 0:bb348c97df44 9329 #define GPIO_PUPDR_PUPD1_Msk (0x3U << GPIO_PUPDR_PUPD1_Pos) /*!< 0x0000000C */
lypinator 0:bb348c97df44 9330 #define GPIO_PUPDR_PUPD1 GPIO_PUPDR_PUPD1_Msk
lypinator 0:bb348c97df44 9331 #define GPIO_PUPDR_PUPD1_0 (0x1U << GPIO_PUPDR_PUPD1_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 9332 #define GPIO_PUPDR_PUPD1_1 (0x2U << GPIO_PUPDR_PUPD1_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 9333 #define GPIO_PUPDR_PUPD2_Pos (4U)
lypinator 0:bb348c97df44 9334 #define GPIO_PUPDR_PUPD2_Msk (0x3U << GPIO_PUPDR_PUPD2_Pos) /*!< 0x00000030 */
lypinator 0:bb348c97df44 9335 #define GPIO_PUPDR_PUPD2 GPIO_PUPDR_PUPD2_Msk
lypinator 0:bb348c97df44 9336 #define GPIO_PUPDR_PUPD2_0 (0x1U << GPIO_PUPDR_PUPD2_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 9337 #define GPIO_PUPDR_PUPD2_1 (0x2U << GPIO_PUPDR_PUPD2_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 9338 #define GPIO_PUPDR_PUPD3_Pos (6U)
lypinator 0:bb348c97df44 9339 #define GPIO_PUPDR_PUPD3_Msk (0x3U << GPIO_PUPDR_PUPD3_Pos) /*!< 0x000000C0 */
lypinator 0:bb348c97df44 9340 #define GPIO_PUPDR_PUPD3 GPIO_PUPDR_PUPD3_Msk
lypinator 0:bb348c97df44 9341 #define GPIO_PUPDR_PUPD3_0 (0x1U << GPIO_PUPDR_PUPD3_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 9342 #define GPIO_PUPDR_PUPD3_1 (0x2U << GPIO_PUPDR_PUPD3_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 9343 #define GPIO_PUPDR_PUPD4_Pos (8U)
lypinator 0:bb348c97df44 9344 #define GPIO_PUPDR_PUPD4_Msk (0x3U << GPIO_PUPDR_PUPD4_Pos) /*!< 0x00000300 */
lypinator 0:bb348c97df44 9345 #define GPIO_PUPDR_PUPD4 GPIO_PUPDR_PUPD4_Msk
lypinator 0:bb348c97df44 9346 #define GPIO_PUPDR_PUPD4_0 (0x1U << GPIO_PUPDR_PUPD4_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 9347 #define GPIO_PUPDR_PUPD4_1 (0x2U << GPIO_PUPDR_PUPD4_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 9348 #define GPIO_PUPDR_PUPD5_Pos (10U)
lypinator 0:bb348c97df44 9349 #define GPIO_PUPDR_PUPD5_Msk (0x3U << GPIO_PUPDR_PUPD5_Pos) /*!< 0x00000C00 */
lypinator 0:bb348c97df44 9350 #define GPIO_PUPDR_PUPD5 GPIO_PUPDR_PUPD5_Msk
lypinator 0:bb348c97df44 9351 #define GPIO_PUPDR_PUPD5_0 (0x1U << GPIO_PUPDR_PUPD5_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 9352 #define GPIO_PUPDR_PUPD5_1 (0x2U << GPIO_PUPDR_PUPD5_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 9353 #define GPIO_PUPDR_PUPD6_Pos (12U)
lypinator 0:bb348c97df44 9354 #define GPIO_PUPDR_PUPD6_Msk (0x3U << GPIO_PUPDR_PUPD6_Pos) /*!< 0x00003000 */
lypinator 0:bb348c97df44 9355 #define GPIO_PUPDR_PUPD6 GPIO_PUPDR_PUPD6_Msk
lypinator 0:bb348c97df44 9356 #define GPIO_PUPDR_PUPD6_0 (0x1U << GPIO_PUPDR_PUPD6_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 9357 #define GPIO_PUPDR_PUPD6_1 (0x2U << GPIO_PUPDR_PUPD6_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 9358 #define GPIO_PUPDR_PUPD7_Pos (14U)
lypinator 0:bb348c97df44 9359 #define GPIO_PUPDR_PUPD7_Msk (0x3U << GPIO_PUPDR_PUPD7_Pos) /*!< 0x0000C000 */
lypinator 0:bb348c97df44 9360 #define GPIO_PUPDR_PUPD7 GPIO_PUPDR_PUPD7_Msk
lypinator 0:bb348c97df44 9361 #define GPIO_PUPDR_PUPD7_0 (0x1U << GPIO_PUPDR_PUPD7_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 9362 #define GPIO_PUPDR_PUPD7_1 (0x2U << GPIO_PUPDR_PUPD7_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 9363 #define GPIO_PUPDR_PUPD8_Pos (16U)
lypinator 0:bb348c97df44 9364 #define GPIO_PUPDR_PUPD8_Msk (0x3U << GPIO_PUPDR_PUPD8_Pos) /*!< 0x00030000 */
lypinator 0:bb348c97df44 9365 #define GPIO_PUPDR_PUPD8 GPIO_PUPDR_PUPD8_Msk
lypinator 0:bb348c97df44 9366 #define GPIO_PUPDR_PUPD8_0 (0x1U << GPIO_PUPDR_PUPD8_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 9367 #define GPIO_PUPDR_PUPD8_1 (0x2U << GPIO_PUPDR_PUPD8_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 9368 #define GPIO_PUPDR_PUPD9_Pos (18U)
lypinator 0:bb348c97df44 9369 #define GPIO_PUPDR_PUPD9_Msk (0x3U << GPIO_PUPDR_PUPD9_Pos) /*!< 0x000C0000 */
lypinator 0:bb348c97df44 9370 #define GPIO_PUPDR_PUPD9 GPIO_PUPDR_PUPD9_Msk
lypinator 0:bb348c97df44 9371 #define GPIO_PUPDR_PUPD9_0 (0x1U << GPIO_PUPDR_PUPD9_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 9372 #define GPIO_PUPDR_PUPD9_1 (0x2U << GPIO_PUPDR_PUPD9_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 9373 #define GPIO_PUPDR_PUPD10_Pos (20U)
lypinator 0:bb348c97df44 9374 #define GPIO_PUPDR_PUPD10_Msk (0x3U << GPIO_PUPDR_PUPD10_Pos) /*!< 0x00300000 */
lypinator 0:bb348c97df44 9375 #define GPIO_PUPDR_PUPD10 GPIO_PUPDR_PUPD10_Msk
lypinator 0:bb348c97df44 9376 #define GPIO_PUPDR_PUPD10_0 (0x1U << GPIO_PUPDR_PUPD10_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 9377 #define GPIO_PUPDR_PUPD10_1 (0x2U << GPIO_PUPDR_PUPD10_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 9378 #define GPIO_PUPDR_PUPD11_Pos (22U)
lypinator 0:bb348c97df44 9379 #define GPIO_PUPDR_PUPD11_Msk (0x3U << GPIO_PUPDR_PUPD11_Pos) /*!< 0x00C00000 */
lypinator 0:bb348c97df44 9380 #define GPIO_PUPDR_PUPD11 GPIO_PUPDR_PUPD11_Msk
lypinator 0:bb348c97df44 9381 #define GPIO_PUPDR_PUPD11_0 (0x1U << GPIO_PUPDR_PUPD11_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 9382 #define GPIO_PUPDR_PUPD11_1 (0x2U << GPIO_PUPDR_PUPD11_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 9383 #define GPIO_PUPDR_PUPD12_Pos (24U)
lypinator 0:bb348c97df44 9384 #define GPIO_PUPDR_PUPD12_Msk (0x3U << GPIO_PUPDR_PUPD12_Pos) /*!< 0x03000000 */
lypinator 0:bb348c97df44 9385 #define GPIO_PUPDR_PUPD12 GPIO_PUPDR_PUPD12_Msk
lypinator 0:bb348c97df44 9386 #define GPIO_PUPDR_PUPD12_0 (0x1U << GPIO_PUPDR_PUPD12_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 9387 #define GPIO_PUPDR_PUPD12_1 (0x2U << GPIO_PUPDR_PUPD12_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 9388 #define GPIO_PUPDR_PUPD13_Pos (26U)
lypinator 0:bb348c97df44 9389 #define GPIO_PUPDR_PUPD13_Msk (0x3U << GPIO_PUPDR_PUPD13_Pos) /*!< 0x0C000000 */
lypinator 0:bb348c97df44 9390 #define GPIO_PUPDR_PUPD13 GPIO_PUPDR_PUPD13_Msk
lypinator 0:bb348c97df44 9391 #define GPIO_PUPDR_PUPD13_0 (0x1U << GPIO_PUPDR_PUPD13_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 9392 #define GPIO_PUPDR_PUPD13_1 (0x2U << GPIO_PUPDR_PUPD13_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 9393 #define GPIO_PUPDR_PUPD14_Pos (28U)
lypinator 0:bb348c97df44 9394 #define GPIO_PUPDR_PUPD14_Msk (0x3U << GPIO_PUPDR_PUPD14_Pos) /*!< 0x30000000 */
lypinator 0:bb348c97df44 9395 #define GPIO_PUPDR_PUPD14 GPIO_PUPDR_PUPD14_Msk
lypinator 0:bb348c97df44 9396 #define GPIO_PUPDR_PUPD14_0 (0x1U << GPIO_PUPDR_PUPD14_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 9397 #define GPIO_PUPDR_PUPD14_1 (0x2U << GPIO_PUPDR_PUPD14_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 9398 #define GPIO_PUPDR_PUPD15_Pos (30U)
lypinator 0:bb348c97df44 9399 #define GPIO_PUPDR_PUPD15_Msk (0x3U << GPIO_PUPDR_PUPD15_Pos) /*!< 0xC0000000 */
lypinator 0:bb348c97df44 9400 #define GPIO_PUPDR_PUPD15 GPIO_PUPDR_PUPD15_Msk
lypinator 0:bb348c97df44 9401 #define GPIO_PUPDR_PUPD15_0 (0x1U << GPIO_PUPDR_PUPD15_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 9402 #define GPIO_PUPDR_PUPD15_1 (0x2U << GPIO_PUPDR_PUPD15_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 9403
lypinator 0:bb348c97df44 9404 /* Legacy defines */
lypinator 0:bb348c97df44 9405 #define GPIO_PUPDR_PUPDR0 GPIO_PUPDR_PUPD0
lypinator 0:bb348c97df44 9406 #define GPIO_PUPDR_PUPDR0_0 GPIO_PUPDR_PUPD0_0
lypinator 0:bb348c97df44 9407 #define GPIO_PUPDR_PUPDR0_1 GPIO_PUPDR_PUPD0_1
lypinator 0:bb348c97df44 9408 #define GPIO_PUPDR_PUPDR1 GPIO_PUPDR_PUPD1
lypinator 0:bb348c97df44 9409 #define GPIO_PUPDR_PUPDR1_0 GPIO_PUPDR_PUPD1_0
lypinator 0:bb348c97df44 9410 #define GPIO_PUPDR_PUPDR1_1 GPIO_PUPDR_PUPD1_1
lypinator 0:bb348c97df44 9411 #define GPIO_PUPDR_PUPDR2 GPIO_PUPDR_PUPD2
lypinator 0:bb348c97df44 9412 #define GPIO_PUPDR_PUPDR2_0 GPIO_PUPDR_PUPD2_0
lypinator 0:bb348c97df44 9413 #define GPIO_PUPDR_PUPDR2_1 GPIO_PUPDR_PUPD2_1
lypinator 0:bb348c97df44 9414 #define GPIO_PUPDR_PUPDR3 GPIO_PUPDR_PUPD3
lypinator 0:bb348c97df44 9415 #define GPIO_PUPDR_PUPDR3_0 GPIO_PUPDR_PUPD3_0
lypinator 0:bb348c97df44 9416 #define GPIO_PUPDR_PUPDR3_1 GPIO_PUPDR_PUPD3_1
lypinator 0:bb348c97df44 9417 #define GPIO_PUPDR_PUPDR4 GPIO_PUPDR_PUPD4
lypinator 0:bb348c97df44 9418 #define GPIO_PUPDR_PUPDR4_0 GPIO_PUPDR_PUPD4_0
lypinator 0:bb348c97df44 9419 #define GPIO_PUPDR_PUPDR4_1 GPIO_PUPDR_PUPD4_1
lypinator 0:bb348c97df44 9420 #define GPIO_PUPDR_PUPDR5 GPIO_PUPDR_PUPD5
lypinator 0:bb348c97df44 9421 #define GPIO_PUPDR_PUPDR5_0 GPIO_PUPDR_PUPD5_0
lypinator 0:bb348c97df44 9422 #define GPIO_PUPDR_PUPDR5_1 GPIO_PUPDR_PUPD5_1
lypinator 0:bb348c97df44 9423 #define GPIO_PUPDR_PUPDR6 GPIO_PUPDR_PUPD6
lypinator 0:bb348c97df44 9424 #define GPIO_PUPDR_PUPDR6_0 GPIO_PUPDR_PUPD6_0
lypinator 0:bb348c97df44 9425 #define GPIO_PUPDR_PUPDR6_1 GPIO_PUPDR_PUPD6_1
lypinator 0:bb348c97df44 9426 #define GPIO_PUPDR_PUPDR7 GPIO_PUPDR_PUPD7
lypinator 0:bb348c97df44 9427 #define GPIO_PUPDR_PUPDR7_0 GPIO_PUPDR_PUPD7_0
lypinator 0:bb348c97df44 9428 #define GPIO_PUPDR_PUPDR7_1 GPIO_PUPDR_PUPD7_1
lypinator 0:bb348c97df44 9429 #define GPIO_PUPDR_PUPDR8 GPIO_PUPDR_PUPD8
lypinator 0:bb348c97df44 9430 #define GPIO_PUPDR_PUPDR8_0 GPIO_PUPDR_PUPD8_0
lypinator 0:bb348c97df44 9431 #define GPIO_PUPDR_PUPDR8_1 GPIO_PUPDR_PUPD8_1
lypinator 0:bb348c97df44 9432 #define GPIO_PUPDR_PUPDR9 GPIO_PUPDR_PUPD9
lypinator 0:bb348c97df44 9433 #define GPIO_PUPDR_PUPDR9_0 GPIO_PUPDR_PUPD9_0
lypinator 0:bb348c97df44 9434 #define GPIO_PUPDR_PUPDR9_1 GPIO_PUPDR_PUPD9_1
lypinator 0:bb348c97df44 9435 #define GPIO_PUPDR_PUPDR10 GPIO_PUPDR_PUPD10
lypinator 0:bb348c97df44 9436 #define GPIO_PUPDR_PUPDR10_0 GPIO_PUPDR_PUPD10_0
lypinator 0:bb348c97df44 9437 #define GPIO_PUPDR_PUPDR10_1 GPIO_PUPDR_PUPD10_1
lypinator 0:bb348c97df44 9438 #define GPIO_PUPDR_PUPDR11 GPIO_PUPDR_PUPD11
lypinator 0:bb348c97df44 9439 #define GPIO_PUPDR_PUPDR11_0 GPIO_PUPDR_PUPD11_0
lypinator 0:bb348c97df44 9440 #define GPIO_PUPDR_PUPDR11_1 GPIO_PUPDR_PUPD11_1
lypinator 0:bb348c97df44 9441 #define GPIO_PUPDR_PUPDR12 GPIO_PUPDR_PUPD12
lypinator 0:bb348c97df44 9442 #define GPIO_PUPDR_PUPDR12_0 GPIO_PUPDR_PUPD12_0
lypinator 0:bb348c97df44 9443 #define GPIO_PUPDR_PUPDR12_1 GPIO_PUPDR_PUPD12_1
lypinator 0:bb348c97df44 9444 #define GPIO_PUPDR_PUPDR13 GPIO_PUPDR_PUPD13
lypinator 0:bb348c97df44 9445 #define GPIO_PUPDR_PUPDR13_0 GPIO_PUPDR_PUPD13_0
lypinator 0:bb348c97df44 9446 #define GPIO_PUPDR_PUPDR13_1 GPIO_PUPDR_PUPD13_1
lypinator 0:bb348c97df44 9447 #define GPIO_PUPDR_PUPDR14 GPIO_PUPDR_PUPD14
lypinator 0:bb348c97df44 9448 #define GPIO_PUPDR_PUPDR14_0 GPIO_PUPDR_PUPD14_0
lypinator 0:bb348c97df44 9449 #define GPIO_PUPDR_PUPDR14_1 GPIO_PUPDR_PUPD14_1
lypinator 0:bb348c97df44 9450 #define GPIO_PUPDR_PUPDR15 GPIO_PUPDR_PUPD15
lypinator 0:bb348c97df44 9451 #define GPIO_PUPDR_PUPDR15_0 GPIO_PUPDR_PUPD15_0
lypinator 0:bb348c97df44 9452 #define GPIO_PUPDR_PUPDR15_1 GPIO_PUPDR_PUPD15_1
lypinator 0:bb348c97df44 9453
lypinator 0:bb348c97df44 9454 /****************** Bits definition for GPIO_IDR register *******************/
lypinator 0:bb348c97df44 9455 #define GPIO_IDR_ID0_Pos (0U)
lypinator 0:bb348c97df44 9456 #define GPIO_IDR_ID0_Msk (0x1U << GPIO_IDR_ID0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 9457 #define GPIO_IDR_ID0 GPIO_IDR_ID0_Msk
lypinator 0:bb348c97df44 9458 #define GPIO_IDR_ID1_Pos (1U)
lypinator 0:bb348c97df44 9459 #define GPIO_IDR_ID1_Msk (0x1U << GPIO_IDR_ID1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 9460 #define GPIO_IDR_ID1 GPIO_IDR_ID1_Msk
lypinator 0:bb348c97df44 9461 #define GPIO_IDR_ID2_Pos (2U)
lypinator 0:bb348c97df44 9462 #define GPIO_IDR_ID2_Msk (0x1U << GPIO_IDR_ID2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 9463 #define GPIO_IDR_ID2 GPIO_IDR_ID2_Msk
lypinator 0:bb348c97df44 9464 #define GPIO_IDR_ID3_Pos (3U)
lypinator 0:bb348c97df44 9465 #define GPIO_IDR_ID3_Msk (0x1U << GPIO_IDR_ID3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 9466 #define GPIO_IDR_ID3 GPIO_IDR_ID3_Msk
lypinator 0:bb348c97df44 9467 #define GPIO_IDR_ID4_Pos (4U)
lypinator 0:bb348c97df44 9468 #define GPIO_IDR_ID4_Msk (0x1U << GPIO_IDR_ID4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 9469 #define GPIO_IDR_ID4 GPIO_IDR_ID4_Msk
lypinator 0:bb348c97df44 9470 #define GPIO_IDR_ID5_Pos (5U)
lypinator 0:bb348c97df44 9471 #define GPIO_IDR_ID5_Msk (0x1U << GPIO_IDR_ID5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 9472 #define GPIO_IDR_ID5 GPIO_IDR_ID5_Msk
lypinator 0:bb348c97df44 9473 #define GPIO_IDR_ID6_Pos (6U)
lypinator 0:bb348c97df44 9474 #define GPIO_IDR_ID6_Msk (0x1U << GPIO_IDR_ID6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 9475 #define GPIO_IDR_ID6 GPIO_IDR_ID6_Msk
lypinator 0:bb348c97df44 9476 #define GPIO_IDR_ID7_Pos (7U)
lypinator 0:bb348c97df44 9477 #define GPIO_IDR_ID7_Msk (0x1U << GPIO_IDR_ID7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 9478 #define GPIO_IDR_ID7 GPIO_IDR_ID7_Msk
lypinator 0:bb348c97df44 9479 #define GPIO_IDR_ID8_Pos (8U)
lypinator 0:bb348c97df44 9480 #define GPIO_IDR_ID8_Msk (0x1U << GPIO_IDR_ID8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 9481 #define GPIO_IDR_ID8 GPIO_IDR_ID8_Msk
lypinator 0:bb348c97df44 9482 #define GPIO_IDR_ID9_Pos (9U)
lypinator 0:bb348c97df44 9483 #define GPIO_IDR_ID9_Msk (0x1U << GPIO_IDR_ID9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 9484 #define GPIO_IDR_ID9 GPIO_IDR_ID9_Msk
lypinator 0:bb348c97df44 9485 #define GPIO_IDR_ID10_Pos (10U)
lypinator 0:bb348c97df44 9486 #define GPIO_IDR_ID10_Msk (0x1U << GPIO_IDR_ID10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 9487 #define GPIO_IDR_ID10 GPIO_IDR_ID10_Msk
lypinator 0:bb348c97df44 9488 #define GPIO_IDR_ID11_Pos (11U)
lypinator 0:bb348c97df44 9489 #define GPIO_IDR_ID11_Msk (0x1U << GPIO_IDR_ID11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 9490 #define GPIO_IDR_ID11 GPIO_IDR_ID11_Msk
lypinator 0:bb348c97df44 9491 #define GPIO_IDR_ID12_Pos (12U)
lypinator 0:bb348c97df44 9492 #define GPIO_IDR_ID12_Msk (0x1U << GPIO_IDR_ID12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 9493 #define GPIO_IDR_ID12 GPIO_IDR_ID12_Msk
lypinator 0:bb348c97df44 9494 #define GPIO_IDR_ID13_Pos (13U)
lypinator 0:bb348c97df44 9495 #define GPIO_IDR_ID13_Msk (0x1U << GPIO_IDR_ID13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 9496 #define GPIO_IDR_ID13 GPIO_IDR_ID13_Msk
lypinator 0:bb348c97df44 9497 #define GPIO_IDR_ID14_Pos (14U)
lypinator 0:bb348c97df44 9498 #define GPIO_IDR_ID14_Msk (0x1U << GPIO_IDR_ID14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 9499 #define GPIO_IDR_ID14 GPIO_IDR_ID14_Msk
lypinator 0:bb348c97df44 9500 #define GPIO_IDR_ID15_Pos (15U)
lypinator 0:bb348c97df44 9501 #define GPIO_IDR_ID15_Msk (0x1U << GPIO_IDR_ID15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 9502 #define GPIO_IDR_ID15 GPIO_IDR_ID15_Msk
lypinator 0:bb348c97df44 9503
lypinator 0:bb348c97df44 9504 /* Legacy defines */
lypinator 0:bb348c97df44 9505 #define GPIO_IDR_IDR_0 GPIO_IDR_ID0
lypinator 0:bb348c97df44 9506 #define GPIO_IDR_IDR_1 GPIO_IDR_ID1
lypinator 0:bb348c97df44 9507 #define GPIO_IDR_IDR_2 GPIO_IDR_ID2
lypinator 0:bb348c97df44 9508 #define GPIO_IDR_IDR_3 GPIO_IDR_ID3
lypinator 0:bb348c97df44 9509 #define GPIO_IDR_IDR_4 GPIO_IDR_ID4
lypinator 0:bb348c97df44 9510 #define GPIO_IDR_IDR_5 GPIO_IDR_ID5
lypinator 0:bb348c97df44 9511 #define GPIO_IDR_IDR_6 GPIO_IDR_ID6
lypinator 0:bb348c97df44 9512 #define GPIO_IDR_IDR_7 GPIO_IDR_ID7
lypinator 0:bb348c97df44 9513 #define GPIO_IDR_IDR_8 GPIO_IDR_ID8
lypinator 0:bb348c97df44 9514 #define GPIO_IDR_IDR_9 GPIO_IDR_ID9
lypinator 0:bb348c97df44 9515 #define GPIO_IDR_IDR_10 GPIO_IDR_ID10
lypinator 0:bb348c97df44 9516 #define GPIO_IDR_IDR_11 GPIO_IDR_ID11
lypinator 0:bb348c97df44 9517 #define GPIO_IDR_IDR_12 GPIO_IDR_ID12
lypinator 0:bb348c97df44 9518 #define GPIO_IDR_IDR_13 GPIO_IDR_ID13
lypinator 0:bb348c97df44 9519 #define GPIO_IDR_IDR_14 GPIO_IDR_ID14
lypinator 0:bb348c97df44 9520 #define GPIO_IDR_IDR_15 GPIO_IDR_ID15
lypinator 0:bb348c97df44 9521
lypinator 0:bb348c97df44 9522 /****************** Bits definition for GPIO_ODR register *******************/
lypinator 0:bb348c97df44 9523 #define GPIO_ODR_OD0_Pos (0U)
lypinator 0:bb348c97df44 9524 #define GPIO_ODR_OD0_Msk (0x1U << GPIO_ODR_OD0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 9525 #define GPIO_ODR_OD0 GPIO_ODR_OD0_Msk
lypinator 0:bb348c97df44 9526 #define GPIO_ODR_OD1_Pos (1U)
lypinator 0:bb348c97df44 9527 #define GPIO_ODR_OD1_Msk (0x1U << GPIO_ODR_OD1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 9528 #define GPIO_ODR_OD1 GPIO_ODR_OD1_Msk
lypinator 0:bb348c97df44 9529 #define GPIO_ODR_OD2_Pos (2U)
lypinator 0:bb348c97df44 9530 #define GPIO_ODR_OD2_Msk (0x1U << GPIO_ODR_OD2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 9531 #define GPIO_ODR_OD2 GPIO_ODR_OD2_Msk
lypinator 0:bb348c97df44 9532 #define GPIO_ODR_OD3_Pos (3U)
lypinator 0:bb348c97df44 9533 #define GPIO_ODR_OD3_Msk (0x1U << GPIO_ODR_OD3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 9534 #define GPIO_ODR_OD3 GPIO_ODR_OD3_Msk
lypinator 0:bb348c97df44 9535 #define GPIO_ODR_OD4_Pos (4U)
lypinator 0:bb348c97df44 9536 #define GPIO_ODR_OD4_Msk (0x1U << GPIO_ODR_OD4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 9537 #define GPIO_ODR_OD4 GPIO_ODR_OD4_Msk
lypinator 0:bb348c97df44 9538 #define GPIO_ODR_OD5_Pos (5U)
lypinator 0:bb348c97df44 9539 #define GPIO_ODR_OD5_Msk (0x1U << GPIO_ODR_OD5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 9540 #define GPIO_ODR_OD5 GPIO_ODR_OD5_Msk
lypinator 0:bb348c97df44 9541 #define GPIO_ODR_OD6_Pos (6U)
lypinator 0:bb348c97df44 9542 #define GPIO_ODR_OD6_Msk (0x1U << GPIO_ODR_OD6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 9543 #define GPIO_ODR_OD6 GPIO_ODR_OD6_Msk
lypinator 0:bb348c97df44 9544 #define GPIO_ODR_OD7_Pos (7U)
lypinator 0:bb348c97df44 9545 #define GPIO_ODR_OD7_Msk (0x1U << GPIO_ODR_OD7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 9546 #define GPIO_ODR_OD7 GPIO_ODR_OD7_Msk
lypinator 0:bb348c97df44 9547 #define GPIO_ODR_OD8_Pos (8U)
lypinator 0:bb348c97df44 9548 #define GPIO_ODR_OD8_Msk (0x1U << GPIO_ODR_OD8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 9549 #define GPIO_ODR_OD8 GPIO_ODR_OD8_Msk
lypinator 0:bb348c97df44 9550 #define GPIO_ODR_OD9_Pos (9U)
lypinator 0:bb348c97df44 9551 #define GPIO_ODR_OD9_Msk (0x1U << GPIO_ODR_OD9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 9552 #define GPIO_ODR_OD9 GPIO_ODR_OD9_Msk
lypinator 0:bb348c97df44 9553 #define GPIO_ODR_OD10_Pos (10U)
lypinator 0:bb348c97df44 9554 #define GPIO_ODR_OD10_Msk (0x1U << GPIO_ODR_OD10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 9555 #define GPIO_ODR_OD10 GPIO_ODR_OD10_Msk
lypinator 0:bb348c97df44 9556 #define GPIO_ODR_OD11_Pos (11U)
lypinator 0:bb348c97df44 9557 #define GPIO_ODR_OD11_Msk (0x1U << GPIO_ODR_OD11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 9558 #define GPIO_ODR_OD11 GPIO_ODR_OD11_Msk
lypinator 0:bb348c97df44 9559 #define GPIO_ODR_OD12_Pos (12U)
lypinator 0:bb348c97df44 9560 #define GPIO_ODR_OD12_Msk (0x1U << GPIO_ODR_OD12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 9561 #define GPIO_ODR_OD12 GPIO_ODR_OD12_Msk
lypinator 0:bb348c97df44 9562 #define GPIO_ODR_OD13_Pos (13U)
lypinator 0:bb348c97df44 9563 #define GPIO_ODR_OD13_Msk (0x1U << GPIO_ODR_OD13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 9564 #define GPIO_ODR_OD13 GPIO_ODR_OD13_Msk
lypinator 0:bb348c97df44 9565 #define GPIO_ODR_OD14_Pos (14U)
lypinator 0:bb348c97df44 9566 #define GPIO_ODR_OD14_Msk (0x1U << GPIO_ODR_OD14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 9567 #define GPIO_ODR_OD14 GPIO_ODR_OD14_Msk
lypinator 0:bb348c97df44 9568 #define GPIO_ODR_OD15_Pos (15U)
lypinator 0:bb348c97df44 9569 #define GPIO_ODR_OD15_Msk (0x1U << GPIO_ODR_OD15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 9570 #define GPIO_ODR_OD15 GPIO_ODR_OD15_Msk
lypinator 0:bb348c97df44 9571 /* Legacy defines */
lypinator 0:bb348c97df44 9572 #define GPIO_ODR_ODR_0 GPIO_ODR_OD0
lypinator 0:bb348c97df44 9573 #define GPIO_ODR_ODR_1 GPIO_ODR_OD1
lypinator 0:bb348c97df44 9574 #define GPIO_ODR_ODR_2 GPIO_ODR_OD2
lypinator 0:bb348c97df44 9575 #define GPIO_ODR_ODR_3 GPIO_ODR_OD3
lypinator 0:bb348c97df44 9576 #define GPIO_ODR_ODR_4 GPIO_ODR_OD4
lypinator 0:bb348c97df44 9577 #define GPIO_ODR_ODR_5 GPIO_ODR_OD5
lypinator 0:bb348c97df44 9578 #define GPIO_ODR_ODR_6 GPIO_ODR_OD6
lypinator 0:bb348c97df44 9579 #define GPIO_ODR_ODR_7 GPIO_ODR_OD7
lypinator 0:bb348c97df44 9580 #define GPIO_ODR_ODR_8 GPIO_ODR_OD8
lypinator 0:bb348c97df44 9581 #define GPIO_ODR_ODR_9 GPIO_ODR_OD9
lypinator 0:bb348c97df44 9582 #define GPIO_ODR_ODR_10 GPIO_ODR_OD10
lypinator 0:bb348c97df44 9583 #define GPIO_ODR_ODR_11 GPIO_ODR_OD11
lypinator 0:bb348c97df44 9584 #define GPIO_ODR_ODR_12 GPIO_ODR_OD12
lypinator 0:bb348c97df44 9585 #define GPIO_ODR_ODR_13 GPIO_ODR_OD13
lypinator 0:bb348c97df44 9586 #define GPIO_ODR_ODR_14 GPIO_ODR_OD14
lypinator 0:bb348c97df44 9587 #define GPIO_ODR_ODR_15 GPIO_ODR_OD15
lypinator 0:bb348c97df44 9588
lypinator 0:bb348c97df44 9589 /****************** Bits definition for GPIO_BSRR register ******************/
lypinator 0:bb348c97df44 9590 #define GPIO_BSRR_BS0_Pos (0U)
lypinator 0:bb348c97df44 9591 #define GPIO_BSRR_BS0_Msk (0x1U << GPIO_BSRR_BS0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 9592 #define GPIO_BSRR_BS0 GPIO_BSRR_BS0_Msk
lypinator 0:bb348c97df44 9593 #define GPIO_BSRR_BS1_Pos (1U)
lypinator 0:bb348c97df44 9594 #define GPIO_BSRR_BS1_Msk (0x1U << GPIO_BSRR_BS1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 9595 #define GPIO_BSRR_BS1 GPIO_BSRR_BS1_Msk
lypinator 0:bb348c97df44 9596 #define GPIO_BSRR_BS2_Pos (2U)
lypinator 0:bb348c97df44 9597 #define GPIO_BSRR_BS2_Msk (0x1U << GPIO_BSRR_BS2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 9598 #define GPIO_BSRR_BS2 GPIO_BSRR_BS2_Msk
lypinator 0:bb348c97df44 9599 #define GPIO_BSRR_BS3_Pos (3U)
lypinator 0:bb348c97df44 9600 #define GPIO_BSRR_BS3_Msk (0x1U << GPIO_BSRR_BS3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 9601 #define GPIO_BSRR_BS3 GPIO_BSRR_BS3_Msk
lypinator 0:bb348c97df44 9602 #define GPIO_BSRR_BS4_Pos (4U)
lypinator 0:bb348c97df44 9603 #define GPIO_BSRR_BS4_Msk (0x1U << GPIO_BSRR_BS4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 9604 #define GPIO_BSRR_BS4 GPIO_BSRR_BS4_Msk
lypinator 0:bb348c97df44 9605 #define GPIO_BSRR_BS5_Pos (5U)
lypinator 0:bb348c97df44 9606 #define GPIO_BSRR_BS5_Msk (0x1U << GPIO_BSRR_BS5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 9607 #define GPIO_BSRR_BS5 GPIO_BSRR_BS5_Msk
lypinator 0:bb348c97df44 9608 #define GPIO_BSRR_BS6_Pos (6U)
lypinator 0:bb348c97df44 9609 #define GPIO_BSRR_BS6_Msk (0x1U << GPIO_BSRR_BS6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 9610 #define GPIO_BSRR_BS6 GPIO_BSRR_BS6_Msk
lypinator 0:bb348c97df44 9611 #define GPIO_BSRR_BS7_Pos (7U)
lypinator 0:bb348c97df44 9612 #define GPIO_BSRR_BS7_Msk (0x1U << GPIO_BSRR_BS7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 9613 #define GPIO_BSRR_BS7 GPIO_BSRR_BS7_Msk
lypinator 0:bb348c97df44 9614 #define GPIO_BSRR_BS8_Pos (8U)
lypinator 0:bb348c97df44 9615 #define GPIO_BSRR_BS8_Msk (0x1U << GPIO_BSRR_BS8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 9616 #define GPIO_BSRR_BS8 GPIO_BSRR_BS8_Msk
lypinator 0:bb348c97df44 9617 #define GPIO_BSRR_BS9_Pos (9U)
lypinator 0:bb348c97df44 9618 #define GPIO_BSRR_BS9_Msk (0x1U << GPIO_BSRR_BS9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 9619 #define GPIO_BSRR_BS9 GPIO_BSRR_BS9_Msk
lypinator 0:bb348c97df44 9620 #define GPIO_BSRR_BS10_Pos (10U)
lypinator 0:bb348c97df44 9621 #define GPIO_BSRR_BS10_Msk (0x1U << GPIO_BSRR_BS10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 9622 #define GPIO_BSRR_BS10 GPIO_BSRR_BS10_Msk
lypinator 0:bb348c97df44 9623 #define GPIO_BSRR_BS11_Pos (11U)
lypinator 0:bb348c97df44 9624 #define GPIO_BSRR_BS11_Msk (0x1U << GPIO_BSRR_BS11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 9625 #define GPIO_BSRR_BS11 GPIO_BSRR_BS11_Msk
lypinator 0:bb348c97df44 9626 #define GPIO_BSRR_BS12_Pos (12U)
lypinator 0:bb348c97df44 9627 #define GPIO_BSRR_BS12_Msk (0x1U << GPIO_BSRR_BS12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 9628 #define GPIO_BSRR_BS12 GPIO_BSRR_BS12_Msk
lypinator 0:bb348c97df44 9629 #define GPIO_BSRR_BS13_Pos (13U)
lypinator 0:bb348c97df44 9630 #define GPIO_BSRR_BS13_Msk (0x1U << GPIO_BSRR_BS13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 9631 #define GPIO_BSRR_BS13 GPIO_BSRR_BS13_Msk
lypinator 0:bb348c97df44 9632 #define GPIO_BSRR_BS14_Pos (14U)
lypinator 0:bb348c97df44 9633 #define GPIO_BSRR_BS14_Msk (0x1U << GPIO_BSRR_BS14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 9634 #define GPIO_BSRR_BS14 GPIO_BSRR_BS14_Msk
lypinator 0:bb348c97df44 9635 #define GPIO_BSRR_BS15_Pos (15U)
lypinator 0:bb348c97df44 9636 #define GPIO_BSRR_BS15_Msk (0x1U << GPIO_BSRR_BS15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 9637 #define GPIO_BSRR_BS15 GPIO_BSRR_BS15_Msk
lypinator 0:bb348c97df44 9638 #define GPIO_BSRR_BR0_Pos (16U)
lypinator 0:bb348c97df44 9639 #define GPIO_BSRR_BR0_Msk (0x1U << GPIO_BSRR_BR0_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 9640 #define GPIO_BSRR_BR0 GPIO_BSRR_BR0_Msk
lypinator 0:bb348c97df44 9641 #define GPIO_BSRR_BR1_Pos (17U)
lypinator 0:bb348c97df44 9642 #define GPIO_BSRR_BR1_Msk (0x1U << GPIO_BSRR_BR1_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 9643 #define GPIO_BSRR_BR1 GPIO_BSRR_BR1_Msk
lypinator 0:bb348c97df44 9644 #define GPIO_BSRR_BR2_Pos (18U)
lypinator 0:bb348c97df44 9645 #define GPIO_BSRR_BR2_Msk (0x1U << GPIO_BSRR_BR2_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 9646 #define GPIO_BSRR_BR2 GPIO_BSRR_BR2_Msk
lypinator 0:bb348c97df44 9647 #define GPIO_BSRR_BR3_Pos (19U)
lypinator 0:bb348c97df44 9648 #define GPIO_BSRR_BR3_Msk (0x1U << GPIO_BSRR_BR3_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 9649 #define GPIO_BSRR_BR3 GPIO_BSRR_BR3_Msk
lypinator 0:bb348c97df44 9650 #define GPIO_BSRR_BR4_Pos (20U)
lypinator 0:bb348c97df44 9651 #define GPIO_BSRR_BR4_Msk (0x1U << GPIO_BSRR_BR4_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 9652 #define GPIO_BSRR_BR4 GPIO_BSRR_BR4_Msk
lypinator 0:bb348c97df44 9653 #define GPIO_BSRR_BR5_Pos (21U)
lypinator 0:bb348c97df44 9654 #define GPIO_BSRR_BR5_Msk (0x1U << GPIO_BSRR_BR5_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 9655 #define GPIO_BSRR_BR5 GPIO_BSRR_BR5_Msk
lypinator 0:bb348c97df44 9656 #define GPIO_BSRR_BR6_Pos (22U)
lypinator 0:bb348c97df44 9657 #define GPIO_BSRR_BR6_Msk (0x1U << GPIO_BSRR_BR6_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 9658 #define GPIO_BSRR_BR6 GPIO_BSRR_BR6_Msk
lypinator 0:bb348c97df44 9659 #define GPIO_BSRR_BR7_Pos (23U)
lypinator 0:bb348c97df44 9660 #define GPIO_BSRR_BR7_Msk (0x1U << GPIO_BSRR_BR7_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 9661 #define GPIO_BSRR_BR7 GPIO_BSRR_BR7_Msk
lypinator 0:bb348c97df44 9662 #define GPIO_BSRR_BR8_Pos (24U)
lypinator 0:bb348c97df44 9663 #define GPIO_BSRR_BR8_Msk (0x1U << GPIO_BSRR_BR8_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 9664 #define GPIO_BSRR_BR8 GPIO_BSRR_BR8_Msk
lypinator 0:bb348c97df44 9665 #define GPIO_BSRR_BR9_Pos (25U)
lypinator 0:bb348c97df44 9666 #define GPIO_BSRR_BR9_Msk (0x1U << GPIO_BSRR_BR9_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 9667 #define GPIO_BSRR_BR9 GPIO_BSRR_BR9_Msk
lypinator 0:bb348c97df44 9668 #define GPIO_BSRR_BR10_Pos (26U)
lypinator 0:bb348c97df44 9669 #define GPIO_BSRR_BR10_Msk (0x1U << GPIO_BSRR_BR10_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 9670 #define GPIO_BSRR_BR10 GPIO_BSRR_BR10_Msk
lypinator 0:bb348c97df44 9671 #define GPIO_BSRR_BR11_Pos (27U)
lypinator 0:bb348c97df44 9672 #define GPIO_BSRR_BR11_Msk (0x1U << GPIO_BSRR_BR11_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 9673 #define GPIO_BSRR_BR11 GPIO_BSRR_BR11_Msk
lypinator 0:bb348c97df44 9674 #define GPIO_BSRR_BR12_Pos (28U)
lypinator 0:bb348c97df44 9675 #define GPIO_BSRR_BR12_Msk (0x1U << GPIO_BSRR_BR12_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 9676 #define GPIO_BSRR_BR12 GPIO_BSRR_BR12_Msk
lypinator 0:bb348c97df44 9677 #define GPIO_BSRR_BR13_Pos (29U)
lypinator 0:bb348c97df44 9678 #define GPIO_BSRR_BR13_Msk (0x1U << GPIO_BSRR_BR13_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 9679 #define GPIO_BSRR_BR13 GPIO_BSRR_BR13_Msk
lypinator 0:bb348c97df44 9680 #define GPIO_BSRR_BR14_Pos (30U)
lypinator 0:bb348c97df44 9681 #define GPIO_BSRR_BR14_Msk (0x1U << GPIO_BSRR_BR14_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 9682 #define GPIO_BSRR_BR14 GPIO_BSRR_BR14_Msk
lypinator 0:bb348c97df44 9683 #define GPIO_BSRR_BR15_Pos (31U)
lypinator 0:bb348c97df44 9684 #define GPIO_BSRR_BR15_Msk (0x1U << GPIO_BSRR_BR15_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 9685 #define GPIO_BSRR_BR15 GPIO_BSRR_BR15_Msk
lypinator 0:bb348c97df44 9686
lypinator 0:bb348c97df44 9687 /* Legacy defines */
lypinator 0:bb348c97df44 9688 #define GPIO_BSRR_BS_0 GPIO_BSRR_BS0
lypinator 0:bb348c97df44 9689 #define GPIO_BSRR_BS_1 GPIO_BSRR_BS1
lypinator 0:bb348c97df44 9690 #define GPIO_BSRR_BS_2 GPIO_BSRR_BS2
lypinator 0:bb348c97df44 9691 #define GPIO_BSRR_BS_3 GPIO_BSRR_BS3
lypinator 0:bb348c97df44 9692 #define GPIO_BSRR_BS_4 GPIO_BSRR_BS4
lypinator 0:bb348c97df44 9693 #define GPIO_BSRR_BS_5 GPIO_BSRR_BS5
lypinator 0:bb348c97df44 9694 #define GPIO_BSRR_BS_6 GPIO_BSRR_BS6
lypinator 0:bb348c97df44 9695 #define GPIO_BSRR_BS_7 GPIO_BSRR_BS7
lypinator 0:bb348c97df44 9696 #define GPIO_BSRR_BS_8 GPIO_BSRR_BS8
lypinator 0:bb348c97df44 9697 #define GPIO_BSRR_BS_9 GPIO_BSRR_BS9
lypinator 0:bb348c97df44 9698 #define GPIO_BSRR_BS_10 GPIO_BSRR_BS10
lypinator 0:bb348c97df44 9699 #define GPIO_BSRR_BS_11 GPIO_BSRR_BS11
lypinator 0:bb348c97df44 9700 #define GPIO_BSRR_BS_12 GPIO_BSRR_BS12
lypinator 0:bb348c97df44 9701 #define GPIO_BSRR_BS_13 GPIO_BSRR_BS13
lypinator 0:bb348c97df44 9702 #define GPIO_BSRR_BS_14 GPIO_BSRR_BS14
lypinator 0:bb348c97df44 9703 #define GPIO_BSRR_BS_15 GPIO_BSRR_BS15
lypinator 0:bb348c97df44 9704 #define GPIO_BSRR_BR_0 GPIO_BSRR_BR0
lypinator 0:bb348c97df44 9705 #define GPIO_BSRR_BR_1 GPIO_BSRR_BR1
lypinator 0:bb348c97df44 9706 #define GPIO_BSRR_BR_2 GPIO_BSRR_BR2
lypinator 0:bb348c97df44 9707 #define GPIO_BSRR_BR_3 GPIO_BSRR_BR3
lypinator 0:bb348c97df44 9708 #define GPIO_BSRR_BR_4 GPIO_BSRR_BR4
lypinator 0:bb348c97df44 9709 #define GPIO_BSRR_BR_5 GPIO_BSRR_BR5
lypinator 0:bb348c97df44 9710 #define GPIO_BSRR_BR_6 GPIO_BSRR_BR6
lypinator 0:bb348c97df44 9711 #define GPIO_BSRR_BR_7 GPIO_BSRR_BR7
lypinator 0:bb348c97df44 9712 #define GPIO_BSRR_BR_8 GPIO_BSRR_BR8
lypinator 0:bb348c97df44 9713 #define GPIO_BSRR_BR_9 GPIO_BSRR_BR9
lypinator 0:bb348c97df44 9714 #define GPIO_BSRR_BR_10 GPIO_BSRR_BR10
lypinator 0:bb348c97df44 9715 #define GPIO_BSRR_BR_11 GPIO_BSRR_BR11
lypinator 0:bb348c97df44 9716 #define GPIO_BSRR_BR_12 GPIO_BSRR_BR12
lypinator 0:bb348c97df44 9717 #define GPIO_BSRR_BR_13 GPIO_BSRR_BR13
lypinator 0:bb348c97df44 9718 #define GPIO_BSRR_BR_14 GPIO_BSRR_BR14
lypinator 0:bb348c97df44 9719 #define GPIO_BSRR_BR_15 GPIO_BSRR_BR15
lypinator 0:bb348c97df44 9720 /****************** Bit definition for GPIO_LCKR register *********************/
lypinator 0:bb348c97df44 9721 #define GPIO_LCKR_LCK0_Pos (0U)
lypinator 0:bb348c97df44 9722 #define GPIO_LCKR_LCK0_Msk (0x1U << GPIO_LCKR_LCK0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 9723 #define GPIO_LCKR_LCK0 GPIO_LCKR_LCK0_Msk
lypinator 0:bb348c97df44 9724 #define GPIO_LCKR_LCK1_Pos (1U)
lypinator 0:bb348c97df44 9725 #define GPIO_LCKR_LCK1_Msk (0x1U << GPIO_LCKR_LCK1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 9726 #define GPIO_LCKR_LCK1 GPIO_LCKR_LCK1_Msk
lypinator 0:bb348c97df44 9727 #define GPIO_LCKR_LCK2_Pos (2U)
lypinator 0:bb348c97df44 9728 #define GPIO_LCKR_LCK2_Msk (0x1U << GPIO_LCKR_LCK2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 9729 #define GPIO_LCKR_LCK2 GPIO_LCKR_LCK2_Msk
lypinator 0:bb348c97df44 9730 #define GPIO_LCKR_LCK3_Pos (3U)
lypinator 0:bb348c97df44 9731 #define GPIO_LCKR_LCK3_Msk (0x1U << GPIO_LCKR_LCK3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 9732 #define GPIO_LCKR_LCK3 GPIO_LCKR_LCK3_Msk
lypinator 0:bb348c97df44 9733 #define GPIO_LCKR_LCK4_Pos (4U)
lypinator 0:bb348c97df44 9734 #define GPIO_LCKR_LCK4_Msk (0x1U << GPIO_LCKR_LCK4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 9735 #define GPIO_LCKR_LCK4 GPIO_LCKR_LCK4_Msk
lypinator 0:bb348c97df44 9736 #define GPIO_LCKR_LCK5_Pos (5U)
lypinator 0:bb348c97df44 9737 #define GPIO_LCKR_LCK5_Msk (0x1U << GPIO_LCKR_LCK5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 9738 #define GPIO_LCKR_LCK5 GPIO_LCKR_LCK5_Msk
lypinator 0:bb348c97df44 9739 #define GPIO_LCKR_LCK6_Pos (6U)
lypinator 0:bb348c97df44 9740 #define GPIO_LCKR_LCK6_Msk (0x1U << GPIO_LCKR_LCK6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 9741 #define GPIO_LCKR_LCK6 GPIO_LCKR_LCK6_Msk
lypinator 0:bb348c97df44 9742 #define GPIO_LCKR_LCK7_Pos (7U)
lypinator 0:bb348c97df44 9743 #define GPIO_LCKR_LCK7_Msk (0x1U << GPIO_LCKR_LCK7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 9744 #define GPIO_LCKR_LCK7 GPIO_LCKR_LCK7_Msk
lypinator 0:bb348c97df44 9745 #define GPIO_LCKR_LCK8_Pos (8U)
lypinator 0:bb348c97df44 9746 #define GPIO_LCKR_LCK8_Msk (0x1U << GPIO_LCKR_LCK8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 9747 #define GPIO_LCKR_LCK8 GPIO_LCKR_LCK8_Msk
lypinator 0:bb348c97df44 9748 #define GPIO_LCKR_LCK9_Pos (9U)
lypinator 0:bb348c97df44 9749 #define GPIO_LCKR_LCK9_Msk (0x1U << GPIO_LCKR_LCK9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 9750 #define GPIO_LCKR_LCK9 GPIO_LCKR_LCK9_Msk
lypinator 0:bb348c97df44 9751 #define GPIO_LCKR_LCK10_Pos (10U)
lypinator 0:bb348c97df44 9752 #define GPIO_LCKR_LCK10_Msk (0x1U << GPIO_LCKR_LCK10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 9753 #define GPIO_LCKR_LCK10 GPIO_LCKR_LCK10_Msk
lypinator 0:bb348c97df44 9754 #define GPIO_LCKR_LCK11_Pos (11U)
lypinator 0:bb348c97df44 9755 #define GPIO_LCKR_LCK11_Msk (0x1U << GPIO_LCKR_LCK11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 9756 #define GPIO_LCKR_LCK11 GPIO_LCKR_LCK11_Msk
lypinator 0:bb348c97df44 9757 #define GPIO_LCKR_LCK12_Pos (12U)
lypinator 0:bb348c97df44 9758 #define GPIO_LCKR_LCK12_Msk (0x1U << GPIO_LCKR_LCK12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 9759 #define GPIO_LCKR_LCK12 GPIO_LCKR_LCK12_Msk
lypinator 0:bb348c97df44 9760 #define GPIO_LCKR_LCK13_Pos (13U)
lypinator 0:bb348c97df44 9761 #define GPIO_LCKR_LCK13_Msk (0x1U << GPIO_LCKR_LCK13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 9762 #define GPIO_LCKR_LCK13 GPIO_LCKR_LCK13_Msk
lypinator 0:bb348c97df44 9763 #define GPIO_LCKR_LCK14_Pos (14U)
lypinator 0:bb348c97df44 9764 #define GPIO_LCKR_LCK14_Msk (0x1U << GPIO_LCKR_LCK14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 9765 #define GPIO_LCKR_LCK14 GPIO_LCKR_LCK14_Msk
lypinator 0:bb348c97df44 9766 #define GPIO_LCKR_LCK15_Pos (15U)
lypinator 0:bb348c97df44 9767 #define GPIO_LCKR_LCK15_Msk (0x1U << GPIO_LCKR_LCK15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 9768 #define GPIO_LCKR_LCK15 GPIO_LCKR_LCK15_Msk
lypinator 0:bb348c97df44 9769 #define GPIO_LCKR_LCKK_Pos (16U)
lypinator 0:bb348c97df44 9770 #define GPIO_LCKR_LCKK_Msk (0x1U << GPIO_LCKR_LCKK_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 9771 #define GPIO_LCKR_LCKK GPIO_LCKR_LCKK_Msk
lypinator 0:bb348c97df44 9772 /****************** Bit definition for GPIO_AFRL register *********************/
lypinator 0:bb348c97df44 9773 #define GPIO_AFRL_AFSEL0_Pos (0U)
lypinator 0:bb348c97df44 9774 #define GPIO_AFRL_AFSEL0_Msk (0xFU << GPIO_AFRL_AFSEL0_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 9775 #define GPIO_AFRL_AFSEL0 GPIO_AFRL_AFSEL0_Msk
lypinator 0:bb348c97df44 9776 #define GPIO_AFRL_AFSEL0_0 (0x1U << GPIO_AFRL_AFSEL0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 9777 #define GPIO_AFRL_AFSEL0_1 (0x2U << GPIO_AFRL_AFSEL0_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 9778 #define GPIO_AFRL_AFSEL0_2 (0x4U << GPIO_AFRL_AFSEL0_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 9779 #define GPIO_AFRL_AFSEL0_3 (0x8U << GPIO_AFRL_AFSEL0_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 9780 #define GPIO_AFRL_AFSEL1_Pos (4U)
lypinator 0:bb348c97df44 9781 #define GPIO_AFRL_AFSEL1_Msk (0xFU << GPIO_AFRL_AFSEL1_Pos) /*!< 0x000000F0 */
lypinator 0:bb348c97df44 9782 #define GPIO_AFRL_AFSEL1 GPIO_AFRL_AFSEL1_Msk
lypinator 0:bb348c97df44 9783 #define GPIO_AFRL_AFSEL1_0 (0x1U << GPIO_AFRL_AFSEL1_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 9784 #define GPIO_AFRL_AFSEL1_1 (0x2U << GPIO_AFRL_AFSEL1_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 9785 #define GPIO_AFRL_AFSEL1_2 (0x4U << GPIO_AFRL_AFSEL1_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 9786 #define GPIO_AFRL_AFSEL1_3 (0x8U << GPIO_AFRL_AFSEL1_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 9787 #define GPIO_AFRL_AFSEL2_Pos (8U)
lypinator 0:bb348c97df44 9788 #define GPIO_AFRL_AFSEL2_Msk (0xFU << GPIO_AFRL_AFSEL2_Pos) /*!< 0x00000F00 */
lypinator 0:bb348c97df44 9789 #define GPIO_AFRL_AFSEL2 GPIO_AFRL_AFSEL2_Msk
lypinator 0:bb348c97df44 9790 #define GPIO_AFRL_AFSEL2_0 (0x1U << GPIO_AFRL_AFSEL2_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 9791 #define GPIO_AFRL_AFSEL2_1 (0x2U << GPIO_AFRL_AFSEL2_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 9792 #define GPIO_AFRL_AFSEL2_2 (0x4U << GPIO_AFRL_AFSEL2_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 9793 #define GPIO_AFRL_AFSEL2_3 (0x8U << GPIO_AFRL_AFSEL2_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 9794 #define GPIO_AFRL_AFSEL3_Pos (12U)
lypinator 0:bb348c97df44 9795 #define GPIO_AFRL_AFSEL3_Msk (0xFU << GPIO_AFRL_AFSEL3_Pos) /*!< 0x0000F000 */
lypinator 0:bb348c97df44 9796 #define GPIO_AFRL_AFSEL3 GPIO_AFRL_AFSEL3_Msk
lypinator 0:bb348c97df44 9797 #define GPIO_AFRL_AFSEL3_0 (0x1U << GPIO_AFRL_AFSEL3_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 9798 #define GPIO_AFRL_AFSEL3_1 (0x2U << GPIO_AFRL_AFSEL3_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 9799 #define GPIO_AFRL_AFSEL3_2 (0x4U << GPIO_AFRL_AFSEL3_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 9800 #define GPIO_AFRL_AFSEL3_3 (0x8U << GPIO_AFRL_AFSEL3_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 9801 #define GPIO_AFRL_AFSEL4_Pos (16U)
lypinator 0:bb348c97df44 9802 #define GPIO_AFRL_AFSEL4_Msk (0xFU << GPIO_AFRL_AFSEL4_Pos) /*!< 0x000F0000 */
lypinator 0:bb348c97df44 9803 #define GPIO_AFRL_AFSEL4 GPIO_AFRL_AFSEL4_Msk
lypinator 0:bb348c97df44 9804 #define GPIO_AFRL_AFSEL4_0 (0x1U << GPIO_AFRL_AFSEL4_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 9805 #define GPIO_AFRL_AFSEL4_1 (0x2U << GPIO_AFRL_AFSEL4_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 9806 #define GPIO_AFRL_AFSEL4_2 (0x4U << GPIO_AFRL_AFSEL4_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 9807 #define GPIO_AFRL_AFSEL4_3 (0x8U << GPIO_AFRL_AFSEL4_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 9808 #define GPIO_AFRL_AFSEL5_Pos (20U)
lypinator 0:bb348c97df44 9809 #define GPIO_AFRL_AFSEL5_Msk (0xFU << GPIO_AFRL_AFSEL5_Pos) /*!< 0x00F00000 */
lypinator 0:bb348c97df44 9810 #define GPIO_AFRL_AFSEL5 GPIO_AFRL_AFSEL5_Msk
lypinator 0:bb348c97df44 9811 #define GPIO_AFRL_AFSEL5_0 (0x1U << GPIO_AFRL_AFSEL5_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 9812 #define GPIO_AFRL_AFSEL5_1 (0x2U << GPIO_AFRL_AFSEL5_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 9813 #define GPIO_AFRL_AFSEL5_2 (0x4U << GPIO_AFRL_AFSEL5_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 9814 #define GPIO_AFRL_AFSEL5_3 (0x8U << GPIO_AFRL_AFSEL5_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 9815 #define GPIO_AFRL_AFSEL6_Pos (24U)
lypinator 0:bb348c97df44 9816 #define GPIO_AFRL_AFSEL6_Msk (0xFU << GPIO_AFRL_AFSEL6_Pos) /*!< 0x0F000000 */
lypinator 0:bb348c97df44 9817 #define GPIO_AFRL_AFSEL6 GPIO_AFRL_AFSEL6_Msk
lypinator 0:bb348c97df44 9818 #define GPIO_AFRL_AFSEL6_0 (0x1U << GPIO_AFRL_AFSEL6_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 9819 #define GPIO_AFRL_AFSEL6_1 (0x2U << GPIO_AFRL_AFSEL6_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 9820 #define GPIO_AFRL_AFSEL6_2 (0x4U << GPIO_AFRL_AFSEL6_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 9821 #define GPIO_AFRL_AFSEL6_3 (0x8U << GPIO_AFRL_AFSEL6_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 9822 #define GPIO_AFRL_AFSEL7_Pos (28U)
lypinator 0:bb348c97df44 9823 #define GPIO_AFRL_AFSEL7_Msk (0xFU << GPIO_AFRL_AFSEL7_Pos) /*!< 0xF0000000 */
lypinator 0:bb348c97df44 9824 #define GPIO_AFRL_AFSEL7 GPIO_AFRL_AFSEL7_Msk
lypinator 0:bb348c97df44 9825 #define GPIO_AFRL_AFSEL7_0 (0x1U << GPIO_AFRL_AFSEL7_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 9826 #define GPIO_AFRL_AFSEL7_1 (0x2U << GPIO_AFRL_AFSEL7_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 9827 #define GPIO_AFRL_AFSEL7_2 (0x4U << GPIO_AFRL_AFSEL7_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 9828 #define GPIO_AFRL_AFSEL7_3 (0x8U << GPIO_AFRL_AFSEL7_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 9829
lypinator 0:bb348c97df44 9830 /* Legacy defines */
lypinator 0:bb348c97df44 9831 #define GPIO_AFRL_AFRL0 GPIO_AFRL_AFSEL0
lypinator 0:bb348c97df44 9832 #define GPIO_AFRL_AFRL0_0 GPIO_AFRL_AFSEL0_0
lypinator 0:bb348c97df44 9833 #define GPIO_AFRL_AFRL0_1 GPIO_AFRL_AFSEL0_1
lypinator 0:bb348c97df44 9834 #define GPIO_AFRL_AFRL0_2 GPIO_AFRL_AFSEL0_2
lypinator 0:bb348c97df44 9835 #define GPIO_AFRL_AFRL0_3 GPIO_AFRL_AFSEL0_3
lypinator 0:bb348c97df44 9836 #define GPIO_AFRL_AFRL1 GPIO_AFRL_AFSEL1
lypinator 0:bb348c97df44 9837 #define GPIO_AFRL_AFRL1_0 GPIO_AFRL_AFSEL1_0
lypinator 0:bb348c97df44 9838 #define GPIO_AFRL_AFRL1_1 GPIO_AFRL_AFSEL1_1
lypinator 0:bb348c97df44 9839 #define GPIO_AFRL_AFRL1_2 GPIO_AFRL_AFSEL1_2
lypinator 0:bb348c97df44 9840 #define GPIO_AFRL_AFRL1_3 GPIO_AFRL_AFSEL1_3
lypinator 0:bb348c97df44 9841 #define GPIO_AFRL_AFRL2 GPIO_AFRL_AFSEL2
lypinator 0:bb348c97df44 9842 #define GPIO_AFRL_AFRL2_0 GPIO_AFRL_AFSEL2_0
lypinator 0:bb348c97df44 9843 #define GPIO_AFRL_AFRL2_1 GPIO_AFRL_AFSEL2_1
lypinator 0:bb348c97df44 9844 #define GPIO_AFRL_AFRL2_2 GPIO_AFRL_AFSEL2_2
lypinator 0:bb348c97df44 9845 #define GPIO_AFRL_AFRL2_3 GPIO_AFRL_AFSEL2_3
lypinator 0:bb348c97df44 9846 #define GPIO_AFRL_AFRL3 GPIO_AFRL_AFSEL3
lypinator 0:bb348c97df44 9847 #define GPIO_AFRL_AFRL3_0 GPIO_AFRL_AFSEL3_0
lypinator 0:bb348c97df44 9848 #define GPIO_AFRL_AFRL3_1 GPIO_AFRL_AFSEL3_1
lypinator 0:bb348c97df44 9849 #define GPIO_AFRL_AFRL3_2 GPIO_AFRL_AFSEL3_2
lypinator 0:bb348c97df44 9850 #define GPIO_AFRL_AFRL3_3 GPIO_AFRL_AFSEL3_3
lypinator 0:bb348c97df44 9851 #define GPIO_AFRL_AFRL4 GPIO_AFRL_AFSEL4
lypinator 0:bb348c97df44 9852 #define GPIO_AFRL_AFRL4_0 GPIO_AFRL_AFSEL4_0
lypinator 0:bb348c97df44 9853 #define GPIO_AFRL_AFRL4_1 GPIO_AFRL_AFSEL4_1
lypinator 0:bb348c97df44 9854 #define GPIO_AFRL_AFRL4_2 GPIO_AFRL_AFSEL4_2
lypinator 0:bb348c97df44 9855 #define GPIO_AFRL_AFRL4_3 GPIO_AFRL_AFSEL4_3
lypinator 0:bb348c97df44 9856 #define GPIO_AFRL_AFRL5 GPIO_AFRL_AFSEL5
lypinator 0:bb348c97df44 9857 #define GPIO_AFRL_AFRL5_0 GPIO_AFRL_AFSEL5_0
lypinator 0:bb348c97df44 9858 #define GPIO_AFRL_AFRL5_1 GPIO_AFRL_AFSEL5_1
lypinator 0:bb348c97df44 9859 #define GPIO_AFRL_AFRL5_2 GPIO_AFRL_AFSEL5_2
lypinator 0:bb348c97df44 9860 #define GPIO_AFRL_AFRL5_3 GPIO_AFRL_AFSEL5_3
lypinator 0:bb348c97df44 9861 #define GPIO_AFRL_AFRL6 GPIO_AFRL_AFSEL6
lypinator 0:bb348c97df44 9862 #define GPIO_AFRL_AFRL6_0 GPIO_AFRL_AFSEL6_0
lypinator 0:bb348c97df44 9863 #define GPIO_AFRL_AFRL6_1 GPIO_AFRL_AFSEL6_1
lypinator 0:bb348c97df44 9864 #define GPIO_AFRL_AFRL6_2 GPIO_AFRL_AFSEL6_2
lypinator 0:bb348c97df44 9865 #define GPIO_AFRL_AFRL6_3 GPIO_AFRL_AFSEL6_3
lypinator 0:bb348c97df44 9866 #define GPIO_AFRL_AFRL7 GPIO_AFRL_AFSEL7
lypinator 0:bb348c97df44 9867 #define GPIO_AFRL_AFRL7_0 GPIO_AFRL_AFSEL7_0
lypinator 0:bb348c97df44 9868 #define GPIO_AFRL_AFRL7_1 GPIO_AFRL_AFSEL7_1
lypinator 0:bb348c97df44 9869 #define GPIO_AFRL_AFRL7_2 GPIO_AFRL_AFSEL7_2
lypinator 0:bb348c97df44 9870 #define GPIO_AFRL_AFRL7_3 GPIO_AFRL_AFSEL7_3
lypinator 0:bb348c97df44 9871
lypinator 0:bb348c97df44 9872 /****************** Bit definition for GPIO_AFRH register *********************/
lypinator 0:bb348c97df44 9873 #define GPIO_AFRH_AFSEL8_Pos (0U)
lypinator 0:bb348c97df44 9874 #define GPIO_AFRH_AFSEL8_Msk (0xFU << GPIO_AFRH_AFSEL8_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 9875 #define GPIO_AFRH_AFSEL8 GPIO_AFRH_AFSEL8_Msk
lypinator 0:bb348c97df44 9876 #define GPIO_AFRH_AFSEL8_0 (0x1U << GPIO_AFRH_AFSEL8_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 9877 #define GPIO_AFRH_AFSEL8_1 (0x2U << GPIO_AFRH_AFSEL8_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 9878 #define GPIO_AFRH_AFSEL8_2 (0x4U << GPIO_AFRH_AFSEL8_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 9879 #define GPIO_AFRH_AFSEL8_3 (0x8U << GPIO_AFRH_AFSEL8_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 9880 #define GPIO_AFRH_AFSEL9_Pos (4U)
lypinator 0:bb348c97df44 9881 #define GPIO_AFRH_AFSEL9_Msk (0xFU << GPIO_AFRH_AFSEL9_Pos) /*!< 0x000000F0 */
lypinator 0:bb348c97df44 9882 #define GPIO_AFRH_AFSEL9 GPIO_AFRH_AFSEL9_Msk
lypinator 0:bb348c97df44 9883 #define GPIO_AFRH_AFSEL9_0 (0x1U << GPIO_AFRH_AFSEL9_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 9884 #define GPIO_AFRH_AFSEL9_1 (0x2U << GPIO_AFRH_AFSEL9_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 9885 #define GPIO_AFRH_AFSEL9_2 (0x4U << GPIO_AFRH_AFSEL9_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 9886 #define GPIO_AFRH_AFSEL9_3 (0x8U << GPIO_AFRH_AFSEL9_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 9887 #define GPIO_AFRH_AFSEL10_Pos (8U)
lypinator 0:bb348c97df44 9888 #define GPIO_AFRH_AFSEL10_Msk (0xFU << GPIO_AFRH_AFSEL10_Pos) /*!< 0x00000F00 */
lypinator 0:bb348c97df44 9889 #define GPIO_AFRH_AFSEL10 GPIO_AFRH_AFSEL10_Msk
lypinator 0:bb348c97df44 9890 #define GPIO_AFRH_AFSEL10_0 (0x1U << GPIO_AFRH_AFSEL10_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 9891 #define GPIO_AFRH_AFSEL10_1 (0x2U << GPIO_AFRH_AFSEL10_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 9892 #define GPIO_AFRH_AFSEL10_2 (0x4U << GPIO_AFRH_AFSEL10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 9893 #define GPIO_AFRH_AFSEL10_3 (0x8U << GPIO_AFRH_AFSEL10_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 9894 #define GPIO_AFRH_AFSEL11_Pos (12U)
lypinator 0:bb348c97df44 9895 #define GPIO_AFRH_AFSEL11_Msk (0xFU << GPIO_AFRH_AFSEL11_Pos) /*!< 0x0000F000 */
lypinator 0:bb348c97df44 9896 #define GPIO_AFRH_AFSEL11 GPIO_AFRH_AFSEL11_Msk
lypinator 0:bb348c97df44 9897 #define GPIO_AFRH_AFSEL11_0 (0x1U << GPIO_AFRH_AFSEL11_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 9898 #define GPIO_AFRH_AFSEL11_1 (0x2U << GPIO_AFRH_AFSEL11_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 9899 #define GPIO_AFRH_AFSEL11_2 (0x4U << GPIO_AFRH_AFSEL11_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 9900 #define GPIO_AFRH_AFSEL11_3 (0x8U << GPIO_AFRH_AFSEL11_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 9901 #define GPIO_AFRH_AFSEL12_Pos (16U)
lypinator 0:bb348c97df44 9902 #define GPIO_AFRH_AFSEL12_Msk (0xFU << GPIO_AFRH_AFSEL12_Pos) /*!< 0x000F0000 */
lypinator 0:bb348c97df44 9903 #define GPIO_AFRH_AFSEL12 GPIO_AFRH_AFSEL12_Msk
lypinator 0:bb348c97df44 9904 #define GPIO_AFRH_AFSEL12_0 (0x1U << GPIO_AFRH_AFSEL12_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 9905 #define GPIO_AFRH_AFSEL12_1 (0x2U << GPIO_AFRH_AFSEL12_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 9906 #define GPIO_AFRH_AFSEL12_2 (0x4U << GPIO_AFRH_AFSEL12_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 9907 #define GPIO_AFRH_AFSEL12_3 (0x8U << GPIO_AFRH_AFSEL12_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 9908 #define GPIO_AFRH_AFSEL13_Pos (20U)
lypinator 0:bb348c97df44 9909 #define GPIO_AFRH_AFSEL13_Msk (0xFU << GPIO_AFRH_AFSEL13_Pos) /*!< 0x00F00000 */
lypinator 0:bb348c97df44 9910 #define GPIO_AFRH_AFSEL13 GPIO_AFRH_AFSEL13_Msk
lypinator 0:bb348c97df44 9911 #define GPIO_AFRH_AFSEL13_0 (0x1U << GPIO_AFRH_AFSEL13_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 9912 #define GPIO_AFRH_AFSEL13_1 (0x2U << GPIO_AFRH_AFSEL13_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 9913 #define GPIO_AFRH_AFSEL13_2 (0x4U << GPIO_AFRH_AFSEL13_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 9914 #define GPIO_AFRH_AFSEL13_3 (0x8U << GPIO_AFRH_AFSEL13_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 9915 #define GPIO_AFRH_AFSEL14_Pos (24U)
lypinator 0:bb348c97df44 9916 #define GPIO_AFRH_AFSEL14_Msk (0xFU << GPIO_AFRH_AFSEL14_Pos) /*!< 0x0F000000 */
lypinator 0:bb348c97df44 9917 #define GPIO_AFRH_AFSEL14 GPIO_AFRH_AFSEL14_Msk
lypinator 0:bb348c97df44 9918 #define GPIO_AFRH_AFSEL14_0 (0x1U << GPIO_AFRH_AFSEL14_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 9919 #define GPIO_AFRH_AFSEL14_1 (0x2U << GPIO_AFRH_AFSEL14_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 9920 #define GPIO_AFRH_AFSEL14_2 (0x4U << GPIO_AFRH_AFSEL14_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 9921 #define GPIO_AFRH_AFSEL14_3 (0x8U << GPIO_AFRH_AFSEL14_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 9922 #define GPIO_AFRH_AFSEL15_Pos (28U)
lypinator 0:bb348c97df44 9923 #define GPIO_AFRH_AFSEL15_Msk (0xFU << GPIO_AFRH_AFSEL15_Pos) /*!< 0xF0000000 */
lypinator 0:bb348c97df44 9924 #define GPIO_AFRH_AFSEL15 GPIO_AFRH_AFSEL15_Msk
lypinator 0:bb348c97df44 9925 #define GPIO_AFRH_AFSEL15_0 (0x1U << GPIO_AFRH_AFSEL15_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 9926 #define GPIO_AFRH_AFSEL15_1 (0x2U << GPIO_AFRH_AFSEL15_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 9927 #define GPIO_AFRH_AFSEL15_2 (0x4U << GPIO_AFRH_AFSEL15_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 9928 #define GPIO_AFRH_AFSEL15_3 (0x8U << GPIO_AFRH_AFSEL15_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 9929
lypinator 0:bb348c97df44 9930 /* Legacy defines */
lypinator 0:bb348c97df44 9931 #define GPIO_AFRH_AFRH0 GPIO_AFRH_AFSEL8
lypinator 0:bb348c97df44 9932 #define GPIO_AFRH_AFRH0_0 GPIO_AFRH_AFSEL8_0
lypinator 0:bb348c97df44 9933 #define GPIO_AFRH_AFRH0_1 GPIO_AFRH_AFSEL8_1
lypinator 0:bb348c97df44 9934 #define GPIO_AFRH_AFRH0_2 GPIO_AFRH_AFSEL8_2
lypinator 0:bb348c97df44 9935 #define GPIO_AFRH_AFRH0_3 GPIO_AFRH_AFSEL8_3
lypinator 0:bb348c97df44 9936 #define GPIO_AFRH_AFRH1 GPIO_AFRH_AFSEL9
lypinator 0:bb348c97df44 9937 #define GPIO_AFRH_AFRH1_0 GPIO_AFRH_AFSEL9_0
lypinator 0:bb348c97df44 9938 #define GPIO_AFRH_AFRH1_1 GPIO_AFRH_AFSEL9_1
lypinator 0:bb348c97df44 9939 #define GPIO_AFRH_AFRH1_2 GPIO_AFRH_AFSEL9_2
lypinator 0:bb348c97df44 9940 #define GPIO_AFRH_AFRH1_3 GPIO_AFRH_AFSEL9_3
lypinator 0:bb348c97df44 9941 #define GPIO_AFRH_AFRH2 GPIO_AFRH_AFSEL10
lypinator 0:bb348c97df44 9942 #define GPIO_AFRH_AFRH2_0 GPIO_AFRH_AFSEL10_0
lypinator 0:bb348c97df44 9943 #define GPIO_AFRH_AFRH2_1 GPIO_AFRH_AFSEL10_1
lypinator 0:bb348c97df44 9944 #define GPIO_AFRH_AFRH2_2 GPIO_AFRH_AFSEL10_2
lypinator 0:bb348c97df44 9945 #define GPIO_AFRH_AFRH2_3 GPIO_AFRH_AFSEL10_3
lypinator 0:bb348c97df44 9946 #define GPIO_AFRH_AFRH3 GPIO_AFRH_AFSEL11
lypinator 0:bb348c97df44 9947 #define GPIO_AFRH_AFRH3_0 GPIO_AFRH_AFSEL11_0
lypinator 0:bb348c97df44 9948 #define GPIO_AFRH_AFRH3_1 GPIO_AFRH_AFSEL11_1
lypinator 0:bb348c97df44 9949 #define GPIO_AFRH_AFRH3_2 GPIO_AFRH_AFSEL11_2
lypinator 0:bb348c97df44 9950 #define GPIO_AFRH_AFRH3_3 GPIO_AFRH_AFSEL11_3
lypinator 0:bb348c97df44 9951 #define GPIO_AFRH_AFRH4 GPIO_AFRH_AFSEL12
lypinator 0:bb348c97df44 9952 #define GPIO_AFRH_AFRH4_0 GPIO_AFRH_AFSEL12_0
lypinator 0:bb348c97df44 9953 #define GPIO_AFRH_AFRH4_1 GPIO_AFRH_AFSEL12_1
lypinator 0:bb348c97df44 9954 #define GPIO_AFRH_AFRH4_2 GPIO_AFRH_AFSEL12_2
lypinator 0:bb348c97df44 9955 #define GPIO_AFRH_AFRH4_3 GPIO_AFRH_AFSEL12_3
lypinator 0:bb348c97df44 9956 #define GPIO_AFRH_AFRH5 GPIO_AFRH_AFSEL13
lypinator 0:bb348c97df44 9957 #define GPIO_AFRH_AFRH5_0 GPIO_AFRH_AFSEL13_0
lypinator 0:bb348c97df44 9958 #define GPIO_AFRH_AFRH5_1 GPIO_AFRH_AFSEL13_1
lypinator 0:bb348c97df44 9959 #define GPIO_AFRH_AFRH5_2 GPIO_AFRH_AFSEL13_2
lypinator 0:bb348c97df44 9960 #define GPIO_AFRH_AFRH5_3 GPIO_AFRH_AFSEL13_3
lypinator 0:bb348c97df44 9961 #define GPIO_AFRH_AFRH6 GPIO_AFRH_AFSEL14
lypinator 0:bb348c97df44 9962 #define GPIO_AFRH_AFRH6_0 GPIO_AFRH_AFSEL14_0
lypinator 0:bb348c97df44 9963 #define GPIO_AFRH_AFRH6_1 GPIO_AFRH_AFSEL14_1
lypinator 0:bb348c97df44 9964 #define GPIO_AFRH_AFRH6_2 GPIO_AFRH_AFSEL14_2
lypinator 0:bb348c97df44 9965 #define GPIO_AFRH_AFRH6_3 GPIO_AFRH_AFSEL14_3
lypinator 0:bb348c97df44 9966 #define GPIO_AFRH_AFRH7 GPIO_AFRH_AFSEL15
lypinator 0:bb348c97df44 9967 #define GPIO_AFRH_AFRH7_0 GPIO_AFRH_AFSEL15_0
lypinator 0:bb348c97df44 9968 #define GPIO_AFRH_AFRH7_1 GPIO_AFRH_AFSEL15_1
lypinator 0:bb348c97df44 9969 #define GPIO_AFRH_AFRH7_2 GPIO_AFRH_AFSEL15_2
lypinator 0:bb348c97df44 9970 #define GPIO_AFRH_AFRH7_3 GPIO_AFRH_AFSEL15_3
lypinator 0:bb348c97df44 9971
lypinator 0:bb348c97df44 9972 /****************** Bits definition for GPIO_BRR register ******************/
lypinator 0:bb348c97df44 9973 #define GPIO_BRR_BR0_Pos (0U)
lypinator 0:bb348c97df44 9974 #define GPIO_BRR_BR0_Msk (0x1U << GPIO_BRR_BR0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 9975 #define GPIO_BRR_BR0 GPIO_BRR_BR0_Msk
lypinator 0:bb348c97df44 9976 #define GPIO_BRR_BR1_Pos (1U)
lypinator 0:bb348c97df44 9977 #define GPIO_BRR_BR1_Msk (0x1U << GPIO_BRR_BR1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 9978 #define GPIO_BRR_BR1 GPIO_BRR_BR1_Msk
lypinator 0:bb348c97df44 9979 #define GPIO_BRR_BR2_Pos (2U)
lypinator 0:bb348c97df44 9980 #define GPIO_BRR_BR2_Msk (0x1U << GPIO_BRR_BR2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 9981 #define GPIO_BRR_BR2 GPIO_BRR_BR2_Msk
lypinator 0:bb348c97df44 9982 #define GPIO_BRR_BR3_Pos (3U)
lypinator 0:bb348c97df44 9983 #define GPIO_BRR_BR3_Msk (0x1U << GPIO_BRR_BR3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 9984 #define GPIO_BRR_BR3 GPIO_BRR_BR3_Msk
lypinator 0:bb348c97df44 9985 #define GPIO_BRR_BR4_Pos (4U)
lypinator 0:bb348c97df44 9986 #define GPIO_BRR_BR4_Msk (0x1U << GPIO_BRR_BR4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 9987 #define GPIO_BRR_BR4 GPIO_BRR_BR4_Msk
lypinator 0:bb348c97df44 9988 #define GPIO_BRR_BR5_Pos (5U)
lypinator 0:bb348c97df44 9989 #define GPIO_BRR_BR5_Msk (0x1U << GPIO_BRR_BR5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 9990 #define GPIO_BRR_BR5 GPIO_BRR_BR5_Msk
lypinator 0:bb348c97df44 9991 #define GPIO_BRR_BR6_Pos (6U)
lypinator 0:bb348c97df44 9992 #define GPIO_BRR_BR6_Msk (0x1U << GPIO_BRR_BR6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 9993 #define GPIO_BRR_BR6 GPIO_BRR_BR6_Msk
lypinator 0:bb348c97df44 9994 #define GPIO_BRR_BR7_Pos (7U)
lypinator 0:bb348c97df44 9995 #define GPIO_BRR_BR7_Msk (0x1U << GPIO_BRR_BR7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 9996 #define GPIO_BRR_BR7 GPIO_BRR_BR7_Msk
lypinator 0:bb348c97df44 9997 #define GPIO_BRR_BR8_Pos (8U)
lypinator 0:bb348c97df44 9998 #define GPIO_BRR_BR8_Msk (0x1U << GPIO_BRR_BR8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 9999 #define GPIO_BRR_BR8 GPIO_BRR_BR8_Msk
lypinator 0:bb348c97df44 10000 #define GPIO_BRR_BR9_Pos (9U)
lypinator 0:bb348c97df44 10001 #define GPIO_BRR_BR9_Msk (0x1U << GPIO_BRR_BR9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 10002 #define GPIO_BRR_BR9 GPIO_BRR_BR9_Msk
lypinator 0:bb348c97df44 10003 #define GPIO_BRR_BR10_Pos (10U)
lypinator 0:bb348c97df44 10004 #define GPIO_BRR_BR10_Msk (0x1U << GPIO_BRR_BR10_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 10005 #define GPIO_BRR_BR10 GPIO_BRR_BR10_Msk
lypinator 0:bb348c97df44 10006 #define GPIO_BRR_BR11_Pos (11U)
lypinator 0:bb348c97df44 10007 #define GPIO_BRR_BR11_Msk (0x1U << GPIO_BRR_BR11_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 10008 #define GPIO_BRR_BR11 GPIO_BRR_BR11_Msk
lypinator 0:bb348c97df44 10009 #define GPIO_BRR_BR12_Pos (12U)
lypinator 0:bb348c97df44 10010 #define GPIO_BRR_BR12_Msk (0x1U << GPIO_BRR_BR12_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 10011 #define GPIO_BRR_BR12 GPIO_BRR_BR12_Msk
lypinator 0:bb348c97df44 10012 #define GPIO_BRR_BR13_Pos (13U)
lypinator 0:bb348c97df44 10013 #define GPIO_BRR_BR13_Msk (0x1U << GPIO_BRR_BR13_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 10014 #define GPIO_BRR_BR13 GPIO_BRR_BR13_Msk
lypinator 0:bb348c97df44 10015 #define GPIO_BRR_BR14_Pos (14U)
lypinator 0:bb348c97df44 10016 #define GPIO_BRR_BR14_Msk (0x1U << GPIO_BRR_BR14_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 10017 #define GPIO_BRR_BR14 GPIO_BRR_BR14_Msk
lypinator 0:bb348c97df44 10018 #define GPIO_BRR_BR15_Pos (15U)
lypinator 0:bb348c97df44 10019 #define GPIO_BRR_BR15_Msk (0x1U << GPIO_BRR_BR15_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 10020 #define GPIO_BRR_BR15 GPIO_BRR_BR15_Msk
lypinator 0:bb348c97df44 10021
lypinator 0:bb348c97df44 10022
lypinator 0:bb348c97df44 10023 /******************************************************************************/
lypinator 0:bb348c97df44 10024 /* */
lypinator 0:bb348c97df44 10025 /* HASH */
lypinator 0:bb348c97df44 10026 /* */
lypinator 0:bb348c97df44 10027 /******************************************************************************/
lypinator 0:bb348c97df44 10028 /****************** Bits definition for HASH_CR register ********************/
lypinator 0:bb348c97df44 10029 #define HASH_CR_INIT_Pos (2U)
lypinator 0:bb348c97df44 10030 #define HASH_CR_INIT_Msk (0x1U << HASH_CR_INIT_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 10031 #define HASH_CR_INIT HASH_CR_INIT_Msk
lypinator 0:bb348c97df44 10032 #define HASH_CR_DMAE_Pos (3U)
lypinator 0:bb348c97df44 10033 #define HASH_CR_DMAE_Msk (0x1U << HASH_CR_DMAE_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 10034 #define HASH_CR_DMAE HASH_CR_DMAE_Msk
lypinator 0:bb348c97df44 10035 #define HASH_CR_DATATYPE_Pos (4U)
lypinator 0:bb348c97df44 10036 #define HASH_CR_DATATYPE_Msk (0x3U << HASH_CR_DATATYPE_Pos) /*!< 0x00000030 */
lypinator 0:bb348c97df44 10037 #define HASH_CR_DATATYPE HASH_CR_DATATYPE_Msk
lypinator 0:bb348c97df44 10038 #define HASH_CR_DATATYPE_0 (0x1U << HASH_CR_DATATYPE_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 10039 #define HASH_CR_DATATYPE_1 (0x2U << HASH_CR_DATATYPE_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 10040 #define HASH_CR_MODE_Pos (6U)
lypinator 0:bb348c97df44 10041 #define HASH_CR_MODE_Msk (0x1U << HASH_CR_MODE_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 10042 #define HASH_CR_MODE HASH_CR_MODE_Msk
lypinator 0:bb348c97df44 10043 #define HASH_CR_ALGO_Pos (7U)
lypinator 0:bb348c97df44 10044 #define HASH_CR_ALGO_Msk (0x801U << HASH_CR_ALGO_Pos) /*!< 0x00040080 */
lypinator 0:bb348c97df44 10045 #define HASH_CR_ALGO HASH_CR_ALGO_Msk
lypinator 0:bb348c97df44 10046 #define HASH_CR_ALGO_0 (0x001U << HASH_CR_ALGO_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 10047 #define HASH_CR_ALGO_1 (0x800U << HASH_CR_ALGO_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 10048 #define HASH_CR_NBW_Pos (8U)
lypinator 0:bb348c97df44 10049 #define HASH_CR_NBW_Msk (0xFU << HASH_CR_NBW_Pos) /*!< 0x00000F00 */
lypinator 0:bb348c97df44 10050 #define HASH_CR_NBW HASH_CR_NBW_Msk
lypinator 0:bb348c97df44 10051 #define HASH_CR_NBW_0 (0x1U << HASH_CR_NBW_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 10052 #define HASH_CR_NBW_1 (0x2U << HASH_CR_NBW_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 10053 #define HASH_CR_NBW_2 (0x4U << HASH_CR_NBW_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 10054 #define HASH_CR_NBW_3 (0x8U << HASH_CR_NBW_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 10055 #define HASH_CR_DINNE_Pos (12U)
lypinator 0:bb348c97df44 10056 #define HASH_CR_DINNE_Msk (0x1U << HASH_CR_DINNE_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 10057 #define HASH_CR_DINNE HASH_CR_DINNE_Msk
lypinator 0:bb348c97df44 10058 #define HASH_CR_MDMAT_Pos (13U)
lypinator 0:bb348c97df44 10059 #define HASH_CR_MDMAT_Msk (0x1U << HASH_CR_MDMAT_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 10060 #define HASH_CR_MDMAT HASH_CR_MDMAT_Msk
lypinator 0:bb348c97df44 10061 #define HASH_CR_LKEY_Pos (16U)
lypinator 0:bb348c97df44 10062 #define HASH_CR_LKEY_Msk (0x1U << HASH_CR_LKEY_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 10063 #define HASH_CR_LKEY HASH_CR_LKEY_Msk
lypinator 0:bb348c97df44 10064
lypinator 0:bb348c97df44 10065 /****************** Bits definition for HASH_STR register *******************/
lypinator 0:bb348c97df44 10066 #define HASH_STR_NBLW_Pos (0U)
lypinator 0:bb348c97df44 10067 #define HASH_STR_NBLW_Msk (0x1FU << HASH_STR_NBLW_Pos) /*!< 0x0000001F */
lypinator 0:bb348c97df44 10068 #define HASH_STR_NBLW HASH_STR_NBLW_Msk
lypinator 0:bb348c97df44 10069 #define HASH_STR_NBLW_0 (0x01U << HASH_STR_NBLW_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 10070 #define HASH_STR_NBLW_1 (0x02U << HASH_STR_NBLW_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 10071 #define HASH_STR_NBLW_2 (0x04U << HASH_STR_NBLW_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 10072 #define HASH_STR_NBLW_3 (0x08U << HASH_STR_NBLW_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 10073 #define HASH_STR_NBLW_4 (0x10U << HASH_STR_NBLW_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 10074 #define HASH_STR_DCAL_Pos (8U)
lypinator 0:bb348c97df44 10075 #define HASH_STR_DCAL_Msk (0x1U << HASH_STR_DCAL_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 10076 #define HASH_STR_DCAL HASH_STR_DCAL_Msk
lypinator 0:bb348c97df44 10077 /* Aliases for HASH_STR register */
lypinator 0:bb348c97df44 10078 #define HASH_STR_NBW HASH_STR_NBLW
lypinator 0:bb348c97df44 10079 #define HASH_STR_NBW_0 HASH_STR_NBLW_0
lypinator 0:bb348c97df44 10080 #define HASH_STR_NBW_1 HASH_STR_NBLW_1
lypinator 0:bb348c97df44 10081 #define HASH_STR_NBW_2 HASH_STR_NBLW_2
lypinator 0:bb348c97df44 10082 #define HASH_STR_NBW_3 HASH_STR_NBLW_3
lypinator 0:bb348c97df44 10083 #define HASH_STR_NBW_4 HASH_STR_NBLW_4
lypinator 0:bb348c97df44 10084
lypinator 0:bb348c97df44 10085 /****************** Bits definition for HASH_IMR register *******************/
lypinator 0:bb348c97df44 10086 #define HASH_IMR_DINIE_Pos (0U)
lypinator 0:bb348c97df44 10087 #define HASH_IMR_DINIE_Msk (0x1U << HASH_IMR_DINIE_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 10088 #define HASH_IMR_DINIE HASH_IMR_DINIE_Msk
lypinator 0:bb348c97df44 10089 #define HASH_IMR_DCIE_Pos (1U)
lypinator 0:bb348c97df44 10090 #define HASH_IMR_DCIE_Msk (0x1U << HASH_IMR_DCIE_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 10091 #define HASH_IMR_DCIE HASH_IMR_DCIE_Msk
lypinator 0:bb348c97df44 10092 /* Aliases for HASH_IMR register */
lypinator 0:bb348c97df44 10093 #define HASH_IMR_DINIM HASH_IMR_DINIE
lypinator 0:bb348c97df44 10094 #define HASH_IMR_DCIM HASH_IMR_DCIE
lypinator 0:bb348c97df44 10095
lypinator 0:bb348c97df44 10096 /****************** Bits definition for HASH_SR register ********************/
lypinator 0:bb348c97df44 10097 #define HASH_SR_DINIS_Pos (0U)
lypinator 0:bb348c97df44 10098 #define HASH_SR_DINIS_Msk (0x1U << HASH_SR_DINIS_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 10099 #define HASH_SR_DINIS HASH_SR_DINIS_Msk
lypinator 0:bb348c97df44 10100 #define HASH_SR_DCIS_Pos (1U)
lypinator 0:bb348c97df44 10101 #define HASH_SR_DCIS_Msk (0x1U << HASH_SR_DCIS_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 10102 #define HASH_SR_DCIS HASH_SR_DCIS_Msk
lypinator 0:bb348c97df44 10103 #define HASH_SR_DMAS_Pos (2U)
lypinator 0:bb348c97df44 10104 #define HASH_SR_DMAS_Msk (0x1U << HASH_SR_DMAS_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 10105 #define HASH_SR_DMAS HASH_SR_DMAS_Msk
lypinator 0:bb348c97df44 10106 #define HASH_SR_BUSY_Pos (3U)
lypinator 0:bb348c97df44 10107 #define HASH_SR_BUSY_Msk (0x1U << HASH_SR_BUSY_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 10108 #define HASH_SR_BUSY HASH_SR_BUSY_Msk
lypinator 0:bb348c97df44 10109
lypinator 0:bb348c97df44 10110 /******************************************************************************/
lypinator 0:bb348c97df44 10111 /* */
lypinator 0:bb348c97df44 10112 /* Inter-integrated Circuit Interface */
lypinator 0:bb348c97df44 10113 /* */
lypinator 0:bb348c97df44 10114 /******************************************************************************/
lypinator 0:bb348c97df44 10115 /******************* Bit definition for I2C_CR1 register ********************/
lypinator 0:bb348c97df44 10116 #define I2C_CR1_PE_Pos (0U)
lypinator 0:bb348c97df44 10117 #define I2C_CR1_PE_Msk (0x1U << I2C_CR1_PE_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 10118 #define I2C_CR1_PE I2C_CR1_PE_Msk /*!<Peripheral Enable */
lypinator 0:bb348c97df44 10119 #define I2C_CR1_SMBUS_Pos (1U)
lypinator 0:bb348c97df44 10120 #define I2C_CR1_SMBUS_Msk (0x1U << I2C_CR1_SMBUS_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 10121 #define I2C_CR1_SMBUS I2C_CR1_SMBUS_Msk /*!<SMBus Mode */
lypinator 0:bb348c97df44 10122 #define I2C_CR1_SMBTYPE_Pos (3U)
lypinator 0:bb348c97df44 10123 #define I2C_CR1_SMBTYPE_Msk (0x1U << I2C_CR1_SMBTYPE_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 10124 #define I2C_CR1_SMBTYPE I2C_CR1_SMBTYPE_Msk /*!<SMBus Type */
lypinator 0:bb348c97df44 10125 #define I2C_CR1_ENARP_Pos (4U)
lypinator 0:bb348c97df44 10126 #define I2C_CR1_ENARP_Msk (0x1U << I2C_CR1_ENARP_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 10127 #define I2C_CR1_ENARP I2C_CR1_ENARP_Msk /*!<ARP Enable */
lypinator 0:bb348c97df44 10128 #define I2C_CR1_ENPEC_Pos (5U)
lypinator 0:bb348c97df44 10129 #define I2C_CR1_ENPEC_Msk (0x1U << I2C_CR1_ENPEC_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 10130 #define I2C_CR1_ENPEC I2C_CR1_ENPEC_Msk /*!<PEC Enable */
lypinator 0:bb348c97df44 10131 #define I2C_CR1_ENGC_Pos (6U)
lypinator 0:bb348c97df44 10132 #define I2C_CR1_ENGC_Msk (0x1U << I2C_CR1_ENGC_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 10133 #define I2C_CR1_ENGC I2C_CR1_ENGC_Msk /*!<General Call Enable */
lypinator 0:bb348c97df44 10134 #define I2C_CR1_NOSTRETCH_Pos (7U)
lypinator 0:bb348c97df44 10135 #define I2C_CR1_NOSTRETCH_Msk (0x1U << I2C_CR1_NOSTRETCH_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 10136 #define I2C_CR1_NOSTRETCH I2C_CR1_NOSTRETCH_Msk /*!<Clock Stretching Disable (Slave mode) */
lypinator 0:bb348c97df44 10137 #define I2C_CR1_START_Pos (8U)
lypinator 0:bb348c97df44 10138 #define I2C_CR1_START_Msk (0x1U << I2C_CR1_START_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 10139 #define I2C_CR1_START I2C_CR1_START_Msk /*!<Start Generation */
lypinator 0:bb348c97df44 10140 #define I2C_CR1_STOP_Pos (9U)
lypinator 0:bb348c97df44 10141 #define I2C_CR1_STOP_Msk (0x1U << I2C_CR1_STOP_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 10142 #define I2C_CR1_STOP I2C_CR1_STOP_Msk /*!<Stop Generation */
lypinator 0:bb348c97df44 10143 #define I2C_CR1_ACK_Pos (10U)
lypinator 0:bb348c97df44 10144 #define I2C_CR1_ACK_Msk (0x1U << I2C_CR1_ACK_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 10145 #define I2C_CR1_ACK I2C_CR1_ACK_Msk /*!<Acknowledge Enable */
lypinator 0:bb348c97df44 10146 #define I2C_CR1_POS_Pos (11U)
lypinator 0:bb348c97df44 10147 #define I2C_CR1_POS_Msk (0x1U << I2C_CR1_POS_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 10148 #define I2C_CR1_POS I2C_CR1_POS_Msk /*!<Acknowledge/PEC Position (for data reception) */
lypinator 0:bb348c97df44 10149 #define I2C_CR1_PEC_Pos (12U)
lypinator 0:bb348c97df44 10150 #define I2C_CR1_PEC_Msk (0x1U << I2C_CR1_PEC_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 10151 #define I2C_CR1_PEC I2C_CR1_PEC_Msk /*!<Packet Error Checking */
lypinator 0:bb348c97df44 10152 #define I2C_CR1_ALERT_Pos (13U)
lypinator 0:bb348c97df44 10153 #define I2C_CR1_ALERT_Msk (0x1U << I2C_CR1_ALERT_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 10154 #define I2C_CR1_ALERT I2C_CR1_ALERT_Msk /*!<SMBus Alert */
lypinator 0:bb348c97df44 10155 #define I2C_CR1_SWRST_Pos (15U)
lypinator 0:bb348c97df44 10156 #define I2C_CR1_SWRST_Msk (0x1U << I2C_CR1_SWRST_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 10157 #define I2C_CR1_SWRST I2C_CR1_SWRST_Msk /*!<Software Reset */
lypinator 0:bb348c97df44 10158
lypinator 0:bb348c97df44 10159 /******************* Bit definition for I2C_CR2 register ********************/
lypinator 0:bb348c97df44 10160 #define I2C_CR2_FREQ_Pos (0U)
lypinator 0:bb348c97df44 10161 #define I2C_CR2_FREQ_Msk (0x3FU << I2C_CR2_FREQ_Pos) /*!< 0x0000003F */
lypinator 0:bb348c97df44 10162 #define I2C_CR2_FREQ I2C_CR2_FREQ_Msk /*!<FREQ[5:0] bits (Peripheral Clock Frequency) */
lypinator 0:bb348c97df44 10163 #define I2C_CR2_FREQ_0 (0x01U << I2C_CR2_FREQ_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 10164 #define I2C_CR2_FREQ_1 (0x02U << I2C_CR2_FREQ_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 10165 #define I2C_CR2_FREQ_2 (0x04U << I2C_CR2_FREQ_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 10166 #define I2C_CR2_FREQ_3 (0x08U << I2C_CR2_FREQ_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 10167 #define I2C_CR2_FREQ_4 (0x10U << I2C_CR2_FREQ_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 10168 #define I2C_CR2_FREQ_5 (0x20U << I2C_CR2_FREQ_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 10169
lypinator 0:bb348c97df44 10170 #define I2C_CR2_ITERREN_Pos (8U)
lypinator 0:bb348c97df44 10171 #define I2C_CR2_ITERREN_Msk (0x1U << I2C_CR2_ITERREN_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 10172 #define I2C_CR2_ITERREN I2C_CR2_ITERREN_Msk /*!<Error Interrupt Enable */
lypinator 0:bb348c97df44 10173 #define I2C_CR2_ITEVTEN_Pos (9U)
lypinator 0:bb348c97df44 10174 #define I2C_CR2_ITEVTEN_Msk (0x1U << I2C_CR2_ITEVTEN_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 10175 #define I2C_CR2_ITEVTEN I2C_CR2_ITEVTEN_Msk /*!<Event Interrupt Enable */
lypinator 0:bb348c97df44 10176 #define I2C_CR2_ITBUFEN_Pos (10U)
lypinator 0:bb348c97df44 10177 #define I2C_CR2_ITBUFEN_Msk (0x1U << I2C_CR2_ITBUFEN_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 10178 #define I2C_CR2_ITBUFEN I2C_CR2_ITBUFEN_Msk /*!<Buffer Interrupt Enable */
lypinator 0:bb348c97df44 10179 #define I2C_CR2_DMAEN_Pos (11U)
lypinator 0:bb348c97df44 10180 #define I2C_CR2_DMAEN_Msk (0x1U << I2C_CR2_DMAEN_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 10181 #define I2C_CR2_DMAEN I2C_CR2_DMAEN_Msk /*!<DMA Requests Enable */
lypinator 0:bb348c97df44 10182 #define I2C_CR2_LAST_Pos (12U)
lypinator 0:bb348c97df44 10183 #define I2C_CR2_LAST_Msk (0x1U << I2C_CR2_LAST_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 10184 #define I2C_CR2_LAST I2C_CR2_LAST_Msk /*!<DMA Last Transfer */
lypinator 0:bb348c97df44 10185
lypinator 0:bb348c97df44 10186 /******************* Bit definition for I2C_OAR1 register *******************/
lypinator 0:bb348c97df44 10187 #define I2C_OAR1_ADD1_7 0x000000FEU /*!<Interface Address */
lypinator 0:bb348c97df44 10188 #define I2C_OAR1_ADD8_9 0x00000300U /*!<Interface Address */
lypinator 0:bb348c97df44 10189
lypinator 0:bb348c97df44 10190 #define I2C_OAR1_ADD0_Pos (0U)
lypinator 0:bb348c97df44 10191 #define I2C_OAR1_ADD0_Msk (0x1U << I2C_OAR1_ADD0_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 10192 #define I2C_OAR1_ADD0 I2C_OAR1_ADD0_Msk /*!<Bit 0 */
lypinator 0:bb348c97df44 10193 #define I2C_OAR1_ADD1_Pos (1U)
lypinator 0:bb348c97df44 10194 #define I2C_OAR1_ADD1_Msk (0x1U << I2C_OAR1_ADD1_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 10195 #define I2C_OAR1_ADD1 I2C_OAR1_ADD1_Msk /*!<Bit 1 */
lypinator 0:bb348c97df44 10196 #define I2C_OAR1_ADD2_Pos (2U)
lypinator 0:bb348c97df44 10197 #define I2C_OAR1_ADD2_Msk (0x1U << I2C_OAR1_ADD2_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 10198 #define I2C_OAR1_ADD2 I2C_OAR1_ADD2_Msk /*!<Bit 2 */
lypinator 0:bb348c97df44 10199 #define I2C_OAR1_ADD3_Pos (3U)
lypinator 0:bb348c97df44 10200 #define I2C_OAR1_ADD3_Msk (0x1U << I2C_OAR1_ADD3_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 10201 #define I2C_OAR1_ADD3 I2C_OAR1_ADD3_Msk /*!<Bit 3 */
lypinator 0:bb348c97df44 10202 #define I2C_OAR1_ADD4_Pos (4U)
lypinator 0:bb348c97df44 10203 #define I2C_OAR1_ADD4_Msk (0x1U << I2C_OAR1_ADD4_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 10204 #define I2C_OAR1_ADD4 I2C_OAR1_ADD4_Msk /*!<Bit 4 */
lypinator 0:bb348c97df44 10205 #define I2C_OAR1_ADD5_Pos (5U)
lypinator 0:bb348c97df44 10206 #define I2C_OAR1_ADD5_Msk (0x1U << I2C_OAR1_ADD5_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 10207 #define I2C_OAR1_ADD5 I2C_OAR1_ADD5_Msk /*!<Bit 5 */
lypinator 0:bb348c97df44 10208 #define I2C_OAR1_ADD6_Pos (6U)
lypinator 0:bb348c97df44 10209 #define I2C_OAR1_ADD6_Msk (0x1U << I2C_OAR1_ADD6_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 10210 #define I2C_OAR1_ADD6 I2C_OAR1_ADD6_Msk /*!<Bit 6 */
lypinator 0:bb348c97df44 10211 #define I2C_OAR1_ADD7_Pos (7U)
lypinator 0:bb348c97df44 10212 #define I2C_OAR1_ADD7_Msk (0x1U << I2C_OAR1_ADD7_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 10213 #define I2C_OAR1_ADD7 I2C_OAR1_ADD7_Msk /*!<Bit 7 */
lypinator 0:bb348c97df44 10214 #define I2C_OAR1_ADD8_Pos (8U)
lypinator 0:bb348c97df44 10215 #define I2C_OAR1_ADD8_Msk (0x1U << I2C_OAR1_ADD8_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 10216 #define I2C_OAR1_ADD8 I2C_OAR1_ADD8_Msk /*!<Bit 8 */
lypinator 0:bb348c97df44 10217 #define I2C_OAR1_ADD9_Pos (9U)
lypinator 0:bb348c97df44 10218 #define I2C_OAR1_ADD9_Msk (0x1U << I2C_OAR1_ADD9_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 10219 #define I2C_OAR1_ADD9 I2C_OAR1_ADD9_Msk /*!<Bit 9 */
lypinator 0:bb348c97df44 10220
lypinator 0:bb348c97df44 10221 #define I2C_OAR1_ADDMODE_Pos (15U)
lypinator 0:bb348c97df44 10222 #define I2C_OAR1_ADDMODE_Msk (0x1U << I2C_OAR1_ADDMODE_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 10223 #define I2C_OAR1_ADDMODE I2C_OAR1_ADDMODE_Msk /*!<Addressing Mode (Slave mode) */
lypinator 0:bb348c97df44 10224
lypinator 0:bb348c97df44 10225 /******************* Bit definition for I2C_OAR2 register *******************/
lypinator 0:bb348c97df44 10226 #define I2C_OAR2_ENDUAL_Pos (0U)
lypinator 0:bb348c97df44 10227 #define I2C_OAR2_ENDUAL_Msk (0x1U << I2C_OAR2_ENDUAL_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 10228 #define I2C_OAR2_ENDUAL I2C_OAR2_ENDUAL_Msk /*!<Dual addressing mode enable */
lypinator 0:bb348c97df44 10229 #define I2C_OAR2_ADD2_Pos (1U)
lypinator 0:bb348c97df44 10230 #define I2C_OAR2_ADD2_Msk (0x7FU << I2C_OAR2_ADD2_Pos) /*!< 0x000000FE */
lypinator 0:bb348c97df44 10231 #define I2C_OAR2_ADD2 I2C_OAR2_ADD2_Msk /*!<Interface address */
lypinator 0:bb348c97df44 10232
lypinator 0:bb348c97df44 10233 /******************** Bit definition for I2C_DR register ********************/
lypinator 0:bb348c97df44 10234 #define I2C_DR_DR_Pos (0U)
lypinator 0:bb348c97df44 10235 #define I2C_DR_DR_Msk (0xFFU << I2C_DR_DR_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 10236 #define I2C_DR_DR I2C_DR_DR_Msk /*!<8-bit Data Register */
lypinator 0:bb348c97df44 10237
lypinator 0:bb348c97df44 10238 /******************* Bit definition for I2C_SR1 register ********************/
lypinator 0:bb348c97df44 10239 #define I2C_SR1_SB_Pos (0U)
lypinator 0:bb348c97df44 10240 #define I2C_SR1_SB_Msk (0x1U << I2C_SR1_SB_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 10241 #define I2C_SR1_SB I2C_SR1_SB_Msk /*!<Start Bit (Master mode) */
lypinator 0:bb348c97df44 10242 #define I2C_SR1_ADDR_Pos (1U)
lypinator 0:bb348c97df44 10243 #define I2C_SR1_ADDR_Msk (0x1U << I2C_SR1_ADDR_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 10244 #define I2C_SR1_ADDR I2C_SR1_ADDR_Msk /*!<Address sent (master mode)/matched (slave mode) */
lypinator 0:bb348c97df44 10245 #define I2C_SR1_BTF_Pos (2U)
lypinator 0:bb348c97df44 10246 #define I2C_SR1_BTF_Msk (0x1U << I2C_SR1_BTF_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 10247 #define I2C_SR1_BTF I2C_SR1_BTF_Msk /*!<Byte Transfer Finished */
lypinator 0:bb348c97df44 10248 #define I2C_SR1_ADD10_Pos (3U)
lypinator 0:bb348c97df44 10249 #define I2C_SR1_ADD10_Msk (0x1U << I2C_SR1_ADD10_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 10250 #define I2C_SR1_ADD10 I2C_SR1_ADD10_Msk /*!<10-bit header sent (Master mode) */
lypinator 0:bb348c97df44 10251 #define I2C_SR1_STOPF_Pos (4U)
lypinator 0:bb348c97df44 10252 #define I2C_SR1_STOPF_Msk (0x1U << I2C_SR1_STOPF_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 10253 #define I2C_SR1_STOPF I2C_SR1_STOPF_Msk /*!<Stop detection (Slave mode) */
lypinator 0:bb348c97df44 10254 #define I2C_SR1_RXNE_Pos (6U)
lypinator 0:bb348c97df44 10255 #define I2C_SR1_RXNE_Msk (0x1U << I2C_SR1_RXNE_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 10256 #define I2C_SR1_RXNE I2C_SR1_RXNE_Msk /*!<Data Register not Empty (receivers) */
lypinator 0:bb348c97df44 10257 #define I2C_SR1_TXE_Pos (7U)
lypinator 0:bb348c97df44 10258 #define I2C_SR1_TXE_Msk (0x1U << I2C_SR1_TXE_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 10259 #define I2C_SR1_TXE I2C_SR1_TXE_Msk /*!<Data Register Empty (transmitters) */
lypinator 0:bb348c97df44 10260 #define I2C_SR1_BERR_Pos (8U)
lypinator 0:bb348c97df44 10261 #define I2C_SR1_BERR_Msk (0x1U << I2C_SR1_BERR_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 10262 #define I2C_SR1_BERR I2C_SR1_BERR_Msk /*!<Bus Error */
lypinator 0:bb348c97df44 10263 #define I2C_SR1_ARLO_Pos (9U)
lypinator 0:bb348c97df44 10264 #define I2C_SR1_ARLO_Msk (0x1U << I2C_SR1_ARLO_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 10265 #define I2C_SR1_ARLO I2C_SR1_ARLO_Msk /*!<Arbitration Lost (master mode) */
lypinator 0:bb348c97df44 10266 #define I2C_SR1_AF_Pos (10U)
lypinator 0:bb348c97df44 10267 #define I2C_SR1_AF_Msk (0x1U << I2C_SR1_AF_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 10268 #define I2C_SR1_AF I2C_SR1_AF_Msk /*!<Acknowledge Failure */
lypinator 0:bb348c97df44 10269 #define I2C_SR1_OVR_Pos (11U)
lypinator 0:bb348c97df44 10270 #define I2C_SR1_OVR_Msk (0x1U << I2C_SR1_OVR_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 10271 #define I2C_SR1_OVR I2C_SR1_OVR_Msk /*!<Overrun/Underrun */
lypinator 0:bb348c97df44 10272 #define I2C_SR1_PECERR_Pos (12U)
lypinator 0:bb348c97df44 10273 #define I2C_SR1_PECERR_Msk (0x1U << I2C_SR1_PECERR_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 10274 #define I2C_SR1_PECERR I2C_SR1_PECERR_Msk /*!<PEC Error in reception */
lypinator 0:bb348c97df44 10275 #define I2C_SR1_TIMEOUT_Pos (14U)
lypinator 0:bb348c97df44 10276 #define I2C_SR1_TIMEOUT_Msk (0x1U << I2C_SR1_TIMEOUT_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 10277 #define I2C_SR1_TIMEOUT I2C_SR1_TIMEOUT_Msk /*!<Timeout or Tlow Error */
lypinator 0:bb348c97df44 10278 #define I2C_SR1_SMBALERT_Pos (15U)
lypinator 0:bb348c97df44 10279 #define I2C_SR1_SMBALERT_Msk (0x1U << I2C_SR1_SMBALERT_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 10280 #define I2C_SR1_SMBALERT I2C_SR1_SMBALERT_Msk /*!<SMBus Alert */
lypinator 0:bb348c97df44 10281
lypinator 0:bb348c97df44 10282 /******************* Bit definition for I2C_SR2 register ********************/
lypinator 0:bb348c97df44 10283 #define I2C_SR2_MSL_Pos (0U)
lypinator 0:bb348c97df44 10284 #define I2C_SR2_MSL_Msk (0x1U << I2C_SR2_MSL_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 10285 #define I2C_SR2_MSL I2C_SR2_MSL_Msk /*!<Master/Slave */
lypinator 0:bb348c97df44 10286 #define I2C_SR2_BUSY_Pos (1U)
lypinator 0:bb348c97df44 10287 #define I2C_SR2_BUSY_Msk (0x1U << I2C_SR2_BUSY_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 10288 #define I2C_SR2_BUSY I2C_SR2_BUSY_Msk /*!<Bus Busy */
lypinator 0:bb348c97df44 10289 #define I2C_SR2_TRA_Pos (2U)
lypinator 0:bb348c97df44 10290 #define I2C_SR2_TRA_Msk (0x1U << I2C_SR2_TRA_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 10291 #define I2C_SR2_TRA I2C_SR2_TRA_Msk /*!<Transmitter/Receiver */
lypinator 0:bb348c97df44 10292 #define I2C_SR2_GENCALL_Pos (4U)
lypinator 0:bb348c97df44 10293 #define I2C_SR2_GENCALL_Msk (0x1U << I2C_SR2_GENCALL_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 10294 #define I2C_SR2_GENCALL I2C_SR2_GENCALL_Msk /*!<General Call Address (Slave mode) */
lypinator 0:bb348c97df44 10295 #define I2C_SR2_SMBDEFAULT_Pos (5U)
lypinator 0:bb348c97df44 10296 #define I2C_SR2_SMBDEFAULT_Msk (0x1U << I2C_SR2_SMBDEFAULT_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 10297 #define I2C_SR2_SMBDEFAULT I2C_SR2_SMBDEFAULT_Msk /*!<SMBus Device Default Address (Slave mode) */
lypinator 0:bb348c97df44 10298 #define I2C_SR2_SMBHOST_Pos (6U)
lypinator 0:bb348c97df44 10299 #define I2C_SR2_SMBHOST_Msk (0x1U << I2C_SR2_SMBHOST_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 10300 #define I2C_SR2_SMBHOST I2C_SR2_SMBHOST_Msk /*!<SMBus Host Header (Slave mode) */
lypinator 0:bb348c97df44 10301 #define I2C_SR2_DUALF_Pos (7U)
lypinator 0:bb348c97df44 10302 #define I2C_SR2_DUALF_Msk (0x1U << I2C_SR2_DUALF_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 10303 #define I2C_SR2_DUALF I2C_SR2_DUALF_Msk /*!<Dual Flag (Slave mode) */
lypinator 0:bb348c97df44 10304 #define I2C_SR2_PEC_Pos (8U)
lypinator 0:bb348c97df44 10305 #define I2C_SR2_PEC_Msk (0xFFU << I2C_SR2_PEC_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 10306 #define I2C_SR2_PEC I2C_SR2_PEC_Msk /*!<Packet Error Checking Register */
lypinator 0:bb348c97df44 10307
lypinator 0:bb348c97df44 10308 /******************* Bit definition for I2C_CCR register ********************/
lypinator 0:bb348c97df44 10309 #define I2C_CCR_CCR_Pos (0U)
lypinator 0:bb348c97df44 10310 #define I2C_CCR_CCR_Msk (0xFFFU << I2C_CCR_CCR_Pos) /*!< 0x00000FFF */
lypinator 0:bb348c97df44 10311 #define I2C_CCR_CCR I2C_CCR_CCR_Msk /*!<Clock Control Register in Fast/Standard mode (Master mode) */
lypinator 0:bb348c97df44 10312 #define I2C_CCR_DUTY_Pos (14U)
lypinator 0:bb348c97df44 10313 #define I2C_CCR_DUTY_Msk (0x1U << I2C_CCR_DUTY_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 10314 #define I2C_CCR_DUTY I2C_CCR_DUTY_Msk /*!<Fast Mode Duty Cycle */
lypinator 0:bb348c97df44 10315 #define I2C_CCR_FS_Pos (15U)
lypinator 0:bb348c97df44 10316 #define I2C_CCR_FS_Msk (0x1U << I2C_CCR_FS_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 10317 #define I2C_CCR_FS I2C_CCR_FS_Msk /*!<I2C Master Mode Selection */
lypinator 0:bb348c97df44 10318
lypinator 0:bb348c97df44 10319 /****************** Bit definition for I2C_TRISE register *******************/
lypinator 0:bb348c97df44 10320 #define I2C_TRISE_TRISE_Pos (0U)
lypinator 0:bb348c97df44 10321 #define I2C_TRISE_TRISE_Msk (0x3FU << I2C_TRISE_TRISE_Pos) /*!< 0x0000003F */
lypinator 0:bb348c97df44 10322 #define I2C_TRISE_TRISE I2C_TRISE_TRISE_Msk /*!<Maximum Rise Time in Fast/Standard mode (Master mode) */
lypinator 0:bb348c97df44 10323
lypinator 0:bb348c97df44 10324 /****************** Bit definition for I2C_FLTR register *******************/
lypinator 0:bb348c97df44 10325 #define I2C_FLTR_DNF_Pos (0U)
lypinator 0:bb348c97df44 10326 #define I2C_FLTR_DNF_Msk (0xFU << I2C_FLTR_DNF_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 10327 #define I2C_FLTR_DNF I2C_FLTR_DNF_Msk /*!<Digital Noise Filter */
lypinator 0:bb348c97df44 10328 #define I2C_FLTR_ANOFF_Pos (4U)
lypinator 0:bb348c97df44 10329 #define I2C_FLTR_ANOFF_Msk (0x1U << I2C_FLTR_ANOFF_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 10330 #define I2C_FLTR_ANOFF I2C_FLTR_ANOFF_Msk /*!<Analog Noise Filter OFF */
lypinator 0:bb348c97df44 10331
lypinator 0:bb348c97df44 10332 /******************************************************************************/
lypinator 0:bb348c97df44 10333 /* */
lypinator 0:bb348c97df44 10334 /* Independent WATCHDOG */
lypinator 0:bb348c97df44 10335 /* */
lypinator 0:bb348c97df44 10336 /******************************************************************************/
lypinator 0:bb348c97df44 10337 /******************* Bit definition for IWDG_KR register ********************/
lypinator 0:bb348c97df44 10338 #define IWDG_KR_KEY_Pos (0U)
lypinator 0:bb348c97df44 10339 #define IWDG_KR_KEY_Msk (0xFFFFU << IWDG_KR_KEY_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 10340 #define IWDG_KR_KEY IWDG_KR_KEY_Msk /*!<Key value (write only, read 0000h) */
lypinator 0:bb348c97df44 10341
lypinator 0:bb348c97df44 10342 /******************* Bit definition for IWDG_PR register ********************/
lypinator 0:bb348c97df44 10343 #define IWDG_PR_PR_Pos (0U)
lypinator 0:bb348c97df44 10344 #define IWDG_PR_PR_Msk (0x7U << IWDG_PR_PR_Pos) /*!< 0x00000007 */
lypinator 0:bb348c97df44 10345 #define IWDG_PR_PR IWDG_PR_PR_Msk /*!<PR[2:0] (Prescaler divider) */
lypinator 0:bb348c97df44 10346 #define IWDG_PR_PR_0 (0x1U << IWDG_PR_PR_Pos) /*!< 0x01 */
lypinator 0:bb348c97df44 10347 #define IWDG_PR_PR_1 (0x2U << IWDG_PR_PR_Pos) /*!< 0x02 */
lypinator 0:bb348c97df44 10348 #define IWDG_PR_PR_2 (0x4U << IWDG_PR_PR_Pos) /*!< 0x04 */
lypinator 0:bb348c97df44 10349
lypinator 0:bb348c97df44 10350 /******************* Bit definition for IWDG_RLR register *******************/
lypinator 0:bb348c97df44 10351 #define IWDG_RLR_RL_Pos (0U)
lypinator 0:bb348c97df44 10352 #define IWDG_RLR_RL_Msk (0xFFFU << IWDG_RLR_RL_Pos) /*!< 0x00000FFF */
lypinator 0:bb348c97df44 10353 #define IWDG_RLR_RL IWDG_RLR_RL_Msk /*!<Watchdog counter reload value */
lypinator 0:bb348c97df44 10354
lypinator 0:bb348c97df44 10355 /******************* Bit definition for IWDG_SR register ********************/
lypinator 0:bb348c97df44 10356 #define IWDG_SR_PVU_Pos (0U)
lypinator 0:bb348c97df44 10357 #define IWDG_SR_PVU_Msk (0x1U << IWDG_SR_PVU_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 10358 #define IWDG_SR_PVU IWDG_SR_PVU_Msk /*!<Watchdog prescaler value update */
lypinator 0:bb348c97df44 10359 #define IWDG_SR_RVU_Pos (1U)
lypinator 0:bb348c97df44 10360 #define IWDG_SR_RVU_Msk (0x1U << IWDG_SR_RVU_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 10361 #define IWDG_SR_RVU IWDG_SR_RVU_Msk /*!<Watchdog counter reload value update */
lypinator 0:bb348c97df44 10362
lypinator 0:bb348c97df44 10363
lypinator 0:bb348c97df44 10364 /******************************************************************************/
lypinator 0:bb348c97df44 10365 /* */
lypinator 0:bb348c97df44 10366 /* LCD-TFT Display Controller (LTDC) */
lypinator 0:bb348c97df44 10367 /* */
lypinator 0:bb348c97df44 10368 /******************************************************************************/
lypinator 0:bb348c97df44 10369
lypinator 0:bb348c97df44 10370 /******************** Bit definition for LTDC_SSCR register *****************/
lypinator 0:bb348c97df44 10371
lypinator 0:bb348c97df44 10372 #define LTDC_SSCR_VSH_Pos (0U)
lypinator 0:bb348c97df44 10373 #define LTDC_SSCR_VSH_Msk (0x7FFU << LTDC_SSCR_VSH_Pos) /*!< 0x000007FF */
lypinator 0:bb348c97df44 10374 #define LTDC_SSCR_VSH LTDC_SSCR_VSH_Msk /*!< Vertical Synchronization Height */
lypinator 0:bb348c97df44 10375 #define LTDC_SSCR_HSW_Pos (16U)
lypinator 0:bb348c97df44 10376 #define LTDC_SSCR_HSW_Msk (0xFFFU << LTDC_SSCR_HSW_Pos) /*!< 0x0FFF0000 */
lypinator 0:bb348c97df44 10377 #define LTDC_SSCR_HSW LTDC_SSCR_HSW_Msk /*!< Horizontal Synchronization Width */
lypinator 0:bb348c97df44 10378
lypinator 0:bb348c97df44 10379 /******************** Bit definition for LTDC_BPCR register *****************/
lypinator 0:bb348c97df44 10380
lypinator 0:bb348c97df44 10381 #define LTDC_BPCR_AVBP_Pos (0U)
lypinator 0:bb348c97df44 10382 #define LTDC_BPCR_AVBP_Msk (0x7FFU << LTDC_BPCR_AVBP_Pos) /*!< 0x000007FF */
lypinator 0:bb348c97df44 10383 #define LTDC_BPCR_AVBP LTDC_BPCR_AVBP_Msk /*!< Accumulated Vertical Back Porch */
lypinator 0:bb348c97df44 10384 #define LTDC_BPCR_AHBP_Pos (16U)
lypinator 0:bb348c97df44 10385 #define LTDC_BPCR_AHBP_Msk (0xFFFU << LTDC_BPCR_AHBP_Pos) /*!< 0x0FFF0000 */
lypinator 0:bb348c97df44 10386 #define LTDC_BPCR_AHBP LTDC_BPCR_AHBP_Msk /*!< Accumulated Horizontal Back Porch */
lypinator 0:bb348c97df44 10387
lypinator 0:bb348c97df44 10388 /******************** Bit definition for LTDC_AWCR register *****************/
lypinator 0:bb348c97df44 10389
lypinator 0:bb348c97df44 10390 #define LTDC_AWCR_AAH_Pos (0U)
lypinator 0:bb348c97df44 10391 #define LTDC_AWCR_AAH_Msk (0x7FFU << LTDC_AWCR_AAH_Pos) /*!< 0x000007FF */
lypinator 0:bb348c97df44 10392 #define LTDC_AWCR_AAH LTDC_AWCR_AAH_Msk /*!< Accumulated Active heigh */
lypinator 0:bb348c97df44 10393 #define LTDC_AWCR_AAW_Pos (16U)
lypinator 0:bb348c97df44 10394 #define LTDC_AWCR_AAW_Msk (0xFFFU << LTDC_AWCR_AAW_Pos) /*!< 0x0FFF0000 */
lypinator 0:bb348c97df44 10395 #define LTDC_AWCR_AAW LTDC_AWCR_AAW_Msk /*!< Accumulated Active Width */
lypinator 0:bb348c97df44 10396
lypinator 0:bb348c97df44 10397 /******************** Bit definition for LTDC_TWCR register *****************/
lypinator 0:bb348c97df44 10398
lypinator 0:bb348c97df44 10399 #define LTDC_TWCR_TOTALH_Pos (0U)
lypinator 0:bb348c97df44 10400 #define LTDC_TWCR_TOTALH_Msk (0x7FFU << LTDC_TWCR_TOTALH_Pos) /*!< 0x000007FF */
lypinator 0:bb348c97df44 10401 #define LTDC_TWCR_TOTALH LTDC_TWCR_TOTALH_Msk /*!< Total Heigh */
lypinator 0:bb348c97df44 10402 #define LTDC_TWCR_TOTALW_Pos (16U)
lypinator 0:bb348c97df44 10403 #define LTDC_TWCR_TOTALW_Msk (0xFFFU << LTDC_TWCR_TOTALW_Pos) /*!< 0x0FFF0000 */
lypinator 0:bb348c97df44 10404 #define LTDC_TWCR_TOTALW LTDC_TWCR_TOTALW_Msk /*!< Total Width */
lypinator 0:bb348c97df44 10405
lypinator 0:bb348c97df44 10406 /******************** Bit definition for LTDC_GCR register ******************/
lypinator 0:bb348c97df44 10407
lypinator 0:bb348c97df44 10408 #define LTDC_GCR_LTDCEN_Pos (0U)
lypinator 0:bb348c97df44 10409 #define LTDC_GCR_LTDCEN_Msk (0x1U << LTDC_GCR_LTDCEN_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 10410 #define LTDC_GCR_LTDCEN LTDC_GCR_LTDCEN_Msk /*!< LCD-TFT controller enable bit */
lypinator 0:bb348c97df44 10411 #define LTDC_GCR_DBW_Pos (4U)
lypinator 0:bb348c97df44 10412 #define LTDC_GCR_DBW_Msk (0x7U << LTDC_GCR_DBW_Pos) /*!< 0x00000070 */
lypinator 0:bb348c97df44 10413 #define LTDC_GCR_DBW LTDC_GCR_DBW_Msk /*!< Dither Blue Width */
lypinator 0:bb348c97df44 10414 #define LTDC_GCR_DGW_Pos (8U)
lypinator 0:bb348c97df44 10415 #define LTDC_GCR_DGW_Msk (0x7U << LTDC_GCR_DGW_Pos) /*!< 0x00000700 */
lypinator 0:bb348c97df44 10416 #define LTDC_GCR_DGW LTDC_GCR_DGW_Msk /*!< Dither Green Width */
lypinator 0:bb348c97df44 10417 #define LTDC_GCR_DRW_Pos (12U)
lypinator 0:bb348c97df44 10418 #define LTDC_GCR_DRW_Msk (0x7U << LTDC_GCR_DRW_Pos) /*!< 0x00007000 */
lypinator 0:bb348c97df44 10419 #define LTDC_GCR_DRW LTDC_GCR_DRW_Msk /*!< Dither Red Width */
lypinator 0:bb348c97df44 10420 #define LTDC_GCR_DEN_Pos (16U)
lypinator 0:bb348c97df44 10421 #define LTDC_GCR_DEN_Msk (0x1U << LTDC_GCR_DEN_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 10422 #define LTDC_GCR_DEN LTDC_GCR_DEN_Msk /*!< Dither Enable */
lypinator 0:bb348c97df44 10423 #define LTDC_GCR_PCPOL_Pos (28U)
lypinator 0:bb348c97df44 10424 #define LTDC_GCR_PCPOL_Msk (0x1U << LTDC_GCR_PCPOL_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 10425 #define LTDC_GCR_PCPOL LTDC_GCR_PCPOL_Msk /*!< Pixel Clock Polarity */
lypinator 0:bb348c97df44 10426 #define LTDC_GCR_DEPOL_Pos (29U)
lypinator 0:bb348c97df44 10427 #define LTDC_GCR_DEPOL_Msk (0x1U << LTDC_GCR_DEPOL_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 10428 #define LTDC_GCR_DEPOL LTDC_GCR_DEPOL_Msk /*!< Data Enable Polarity */
lypinator 0:bb348c97df44 10429 #define LTDC_GCR_VSPOL_Pos (30U)
lypinator 0:bb348c97df44 10430 #define LTDC_GCR_VSPOL_Msk (0x1U << LTDC_GCR_VSPOL_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 10431 #define LTDC_GCR_VSPOL LTDC_GCR_VSPOL_Msk /*!< Vertical Synchronization Polarity */
lypinator 0:bb348c97df44 10432 #define LTDC_GCR_HSPOL_Pos (31U)
lypinator 0:bb348c97df44 10433 #define LTDC_GCR_HSPOL_Msk (0x1U << LTDC_GCR_HSPOL_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 10434 #define LTDC_GCR_HSPOL LTDC_GCR_HSPOL_Msk /*!< Horizontal Synchronization Polarity */
lypinator 0:bb348c97df44 10435
lypinator 0:bb348c97df44 10436 /* Legacy defines */
lypinator 0:bb348c97df44 10437 #define LTDC_GCR_DTEN LTDC_GCR_DEN
lypinator 0:bb348c97df44 10438
lypinator 0:bb348c97df44 10439 /******************** Bit definition for LTDC_SRCR register *****************/
lypinator 0:bb348c97df44 10440
lypinator 0:bb348c97df44 10441 #define LTDC_SRCR_IMR_Pos (0U)
lypinator 0:bb348c97df44 10442 #define LTDC_SRCR_IMR_Msk (0x1U << LTDC_SRCR_IMR_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 10443 #define LTDC_SRCR_IMR LTDC_SRCR_IMR_Msk /*!< Immediate Reload */
lypinator 0:bb348c97df44 10444 #define LTDC_SRCR_VBR_Pos (1U)
lypinator 0:bb348c97df44 10445 #define LTDC_SRCR_VBR_Msk (0x1U << LTDC_SRCR_VBR_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 10446 #define LTDC_SRCR_VBR LTDC_SRCR_VBR_Msk /*!< Vertical Blanking Reload */
lypinator 0:bb348c97df44 10447
lypinator 0:bb348c97df44 10448 /******************** Bit definition for LTDC_BCCR register *****************/
lypinator 0:bb348c97df44 10449
lypinator 0:bb348c97df44 10450 #define LTDC_BCCR_BCBLUE_Pos (0U)
lypinator 0:bb348c97df44 10451 #define LTDC_BCCR_BCBLUE_Msk (0xFFU << LTDC_BCCR_BCBLUE_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 10452 #define LTDC_BCCR_BCBLUE LTDC_BCCR_BCBLUE_Msk /*!< Background Blue value */
lypinator 0:bb348c97df44 10453 #define LTDC_BCCR_BCGREEN_Pos (8U)
lypinator 0:bb348c97df44 10454 #define LTDC_BCCR_BCGREEN_Msk (0xFFU << LTDC_BCCR_BCGREEN_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 10455 #define LTDC_BCCR_BCGREEN LTDC_BCCR_BCGREEN_Msk /*!< Background Green value */
lypinator 0:bb348c97df44 10456 #define LTDC_BCCR_BCRED_Pos (16U)
lypinator 0:bb348c97df44 10457 #define LTDC_BCCR_BCRED_Msk (0xFFU << LTDC_BCCR_BCRED_Pos) /*!< 0x00FF0000 */
lypinator 0:bb348c97df44 10458 #define LTDC_BCCR_BCRED LTDC_BCCR_BCRED_Msk /*!< Background Red value */
lypinator 0:bb348c97df44 10459
lypinator 0:bb348c97df44 10460 /******************** Bit definition for LTDC_IER register ******************/
lypinator 0:bb348c97df44 10461
lypinator 0:bb348c97df44 10462 #define LTDC_IER_LIE_Pos (0U)
lypinator 0:bb348c97df44 10463 #define LTDC_IER_LIE_Msk (0x1U << LTDC_IER_LIE_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 10464 #define LTDC_IER_LIE LTDC_IER_LIE_Msk /*!< Line Interrupt Enable */
lypinator 0:bb348c97df44 10465 #define LTDC_IER_FUIE_Pos (1U)
lypinator 0:bb348c97df44 10466 #define LTDC_IER_FUIE_Msk (0x1U << LTDC_IER_FUIE_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 10467 #define LTDC_IER_FUIE LTDC_IER_FUIE_Msk /*!< FIFO Underrun Interrupt Enable */
lypinator 0:bb348c97df44 10468 #define LTDC_IER_TERRIE_Pos (2U)
lypinator 0:bb348c97df44 10469 #define LTDC_IER_TERRIE_Msk (0x1U << LTDC_IER_TERRIE_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 10470 #define LTDC_IER_TERRIE LTDC_IER_TERRIE_Msk /*!< Transfer Error Interrupt Enable */
lypinator 0:bb348c97df44 10471 #define LTDC_IER_RRIE_Pos (3U)
lypinator 0:bb348c97df44 10472 #define LTDC_IER_RRIE_Msk (0x1U << LTDC_IER_RRIE_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 10473 #define LTDC_IER_RRIE LTDC_IER_RRIE_Msk /*!< Register Reload interrupt enable */
lypinator 0:bb348c97df44 10474
lypinator 0:bb348c97df44 10475 /******************** Bit definition for LTDC_ISR register ******************/
lypinator 0:bb348c97df44 10476
lypinator 0:bb348c97df44 10477 #define LTDC_ISR_LIF_Pos (0U)
lypinator 0:bb348c97df44 10478 #define LTDC_ISR_LIF_Msk (0x1U << LTDC_ISR_LIF_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 10479 #define LTDC_ISR_LIF LTDC_ISR_LIF_Msk /*!< Line Interrupt Flag */
lypinator 0:bb348c97df44 10480 #define LTDC_ISR_FUIF_Pos (1U)
lypinator 0:bb348c97df44 10481 #define LTDC_ISR_FUIF_Msk (0x1U << LTDC_ISR_FUIF_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 10482 #define LTDC_ISR_FUIF LTDC_ISR_FUIF_Msk /*!< FIFO Underrun Interrupt Flag */
lypinator 0:bb348c97df44 10483 #define LTDC_ISR_TERRIF_Pos (2U)
lypinator 0:bb348c97df44 10484 #define LTDC_ISR_TERRIF_Msk (0x1U << LTDC_ISR_TERRIF_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 10485 #define LTDC_ISR_TERRIF LTDC_ISR_TERRIF_Msk /*!< Transfer Error Interrupt Flag */
lypinator 0:bb348c97df44 10486 #define LTDC_ISR_RRIF_Pos (3U)
lypinator 0:bb348c97df44 10487 #define LTDC_ISR_RRIF_Msk (0x1U << LTDC_ISR_RRIF_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 10488 #define LTDC_ISR_RRIF LTDC_ISR_RRIF_Msk /*!< Register Reload interrupt Flag */
lypinator 0:bb348c97df44 10489
lypinator 0:bb348c97df44 10490 /******************** Bit definition for LTDC_ICR register ******************/
lypinator 0:bb348c97df44 10491
lypinator 0:bb348c97df44 10492 #define LTDC_ICR_CLIF_Pos (0U)
lypinator 0:bb348c97df44 10493 #define LTDC_ICR_CLIF_Msk (0x1U << LTDC_ICR_CLIF_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 10494 #define LTDC_ICR_CLIF LTDC_ICR_CLIF_Msk /*!< Clears the Line Interrupt Flag */
lypinator 0:bb348c97df44 10495 #define LTDC_ICR_CFUIF_Pos (1U)
lypinator 0:bb348c97df44 10496 #define LTDC_ICR_CFUIF_Msk (0x1U << LTDC_ICR_CFUIF_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 10497 #define LTDC_ICR_CFUIF LTDC_ICR_CFUIF_Msk /*!< Clears the FIFO Underrun Interrupt Flag */
lypinator 0:bb348c97df44 10498 #define LTDC_ICR_CTERRIF_Pos (2U)
lypinator 0:bb348c97df44 10499 #define LTDC_ICR_CTERRIF_Msk (0x1U << LTDC_ICR_CTERRIF_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 10500 #define LTDC_ICR_CTERRIF LTDC_ICR_CTERRIF_Msk /*!< Clears the Transfer Error Interrupt Flag */
lypinator 0:bb348c97df44 10501 #define LTDC_ICR_CRRIF_Pos (3U)
lypinator 0:bb348c97df44 10502 #define LTDC_ICR_CRRIF_Msk (0x1U << LTDC_ICR_CRRIF_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 10503 #define LTDC_ICR_CRRIF LTDC_ICR_CRRIF_Msk /*!< Clears Register Reload interrupt Flag */
lypinator 0:bb348c97df44 10504
lypinator 0:bb348c97df44 10505 /******************** Bit definition for LTDC_LIPCR register ****************/
lypinator 0:bb348c97df44 10506
lypinator 0:bb348c97df44 10507 #define LTDC_LIPCR_LIPOS_Pos (0U)
lypinator 0:bb348c97df44 10508 #define LTDC_LIPCR_LIPOS_Msk (0x7FFU << LTDC_LIPCR_LIPOS_Pos) /*!< 0x000007FF */
lypinator 0:bb348c97df44 10509 #define LTDC_LIPCR_LIPOS LTDC_LIPCR_LIPOS_Msk /*!< Line Interrupt Position */
lypinator 0:bb348c97df44 10510
lypinator 0:bb348c97df44 10511 /******************** Bit definition for LTDC_CPSR register *****************/
lypinator 0:bb348c97df44 10512
lypinator 0:bb348c97df44 10513 #define LTDC_CPSR_CYPOS_Pos (0U)
lypinator 0:bb348c97df44 10514 #define LTDC_CPSR_CYPOS_Msk (0xFFFFU << LTDC_CPSR_CYPOS_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 10515 #define LTDC_CPSR_CYPOS LTDC_CPSR_CYPOS_Msk /*!< Current Y Position */
lypinator 0:bb348c97df44 10516 #define LTDC_CPSR_CXPOS_Pos (16U)
lypinator 0:bb348c97df44 10517 #define LTDC_CPSR_CXPOS_Msk (0xFFFFU << LTDC_CPSR_CXPOS_Pos) /*!< 0xFFFF0000 */
lypinator 0:bb348c97df44 10518 #define LTDC_CPSR_CXPOS LTDC_CPSR_CXPOS_Msk /*!< Current X Position */
lypinator 0:bb348c97df44 10519
lypinator 0:bb348c97df44 10520 /******************** Bit definition for LTDC_CDSR register *****************/
lypinator 0:bb348c97df44 10521
lypinator 0:bb348c97df44 10522 #define LTDC_CDSR_VDES_Pos (0U)
lypinator 0:bb348c97df44 10523 #define LTDC_CDSR_VDES_Msk (0x1U << LTDC_CDSR_VDES_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 10524 #define LTDC_CDSR_VDES LTDC_CDSR_VDES_Msk /*!< Vertical Data Enable Status */
lypinator 0:bb348c97df44 10525 #define LTDC_CDSR_HDES_Pos (1U)
lypinator 0:bb348c97df44 10526 #define LTDC_CDSR_HDES_Msk (0x1U << LTDC_CDSR_HDES_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 10527 #define LTDC_CDSR_HDES LTDC_CDSR_HDES_Msk /*!< Horizontal Data Enable Status */
lypinator 0:bb348c97df44 10528 #define LTDC_CDSR_VSYNCS_Pos (2U)
lypinator 0:bb348c97df44 10529 #define LTDC_CDSR_VSYNCS_Msk (0x1U << LTDC_CDSR_VSYNCS_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 10530 #define LTDC_CDSR_VSYNCS LTDC_CDSR_VSYNCS_Msk /*!< Vertical Synchronization Status */
lypinator 0:bb348c97df44 10531 #define LTDC_CDSR_HSYNCS_Pos (3U)
lypinator 0:bb348c97df44 10532 #define LTDC_CDSR_HSYNCS_Msk (0x1U << LTDC_CDSR_HSYNCS_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 10533 #define LTDC_CDSR_HSYNCS LTDC_CDSR_HSYNCS_Msk /*!< Horizontal Synchronization Status */
lypinator 0:bb348c97df44 10534
lypinator 0:bb348c97df44 10535 /******************** Bit definition for LTDC_LxCR register *****************/
lypinator 0:bb348c97df44 10536
lypinator 0:bb348c97df44 10537 #define LTDC_LxCR_LEN_Pos (0U)
lypinator 0:bb348c97df44 10538 #define LTDC_LxCR_LEN_Msk (0x1U << LTDC_LxCR_LEN_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 10539 #define LTDC_LxCR_LEN LTDC_LxCR_LEN_Msk /*!< Layer Enable */
lypinator 0:bb348c97df44 10540 #define LTDC_LxCR_COLKEN_Pos (1U)
lypinator 0:bb348c97df44 10541 #define LTDC_LxCR_COLKEN_Msk (0x1U << LTDC_LxCR_COLKEN_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 10542 #define LTDC_LxCR_COLKEN LTDC_LxCR_COLKEN_Msk /*!< Color Keying Enable */
lypinator 0:bb348c97df44 10543 #define LTDC_LxCR_CLUTEN_Pos (4U)
lypinator 0:bb348c97df44 10544 #define LTDC_LxCR_CLUTEN_Msk (0x1U << LTDC_LxCR_CLUTEN_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 10545 #define LTDC_LxCR_CLUTEN LTDC_LxCR_CLUTEN_Msk /*!< Color Lockup Table Enable */
lypinator 0:bb348c97df44 10546
lypinator 0:bb348c97df44 10547 /******************** Bit definition for LTDC_LxWHPCR register **************/
lypinator 0:bb348c97df44 10548
lypinator 0:bb348c97df44 10549 #define LTDC_LxWHPCR_WHSTPOS_Pos (0U)
lypinator 0:bb348c97df44 10550 #define LTDC_LxWHPCR_WHSTPOS_Msk (0xFFFU << LTDC_LxWHPCR_WHSTPOS_Pos) /*!< 0x00000FFF */
lypinator 0:bb348c97df44 10551 #define LTDC_LxWHPCR_WHSTPOS LTDC_LxWHPCR_WHSTPOS_Msk /*!< Window Horizontal Start Position */
lypinator 0:bb348c97df44 10552 #define LTDC_LxWHPCR_WHSPPOS_Pos (16U)
lypinator 0:bb348c97df44 10553 #define LTDC_LxWHPCR_WHSPPOS_Msk (0xFFFFU << LTDC_LxWHPCR_WHSPPOS_Pos) /*!< 0xFFFF0000 */
lypinator 0:bb348c97df44 10554 #define LTDC_LxWHPCR_WHSPPOS LTDC_LxWHPCR_WHSPPOS_Msk /*!< Window Horizontal Stop Position */
lypinator 0:bb348c97df44 10555
lypinator 0:bb348c97df44 10556 /******************** Bit definition for LTDC_LxWVPCR register **************/
lypinator 0:bb348c97df44 10557
lypinator 0:bb348c97df44 10558 #define LTDC_LxWVPCR_WVSTPOS_Pos (0U)
lypinator 0:bb348c97df44 10559 #define LTDC_LxWVPCR_WVSTPOS_Msk (0xFFFU << LTDC_LxWVPCR_WVSTPOS_Pos) /*!< 0x00000FFF */
lypinator 0:bb348c97df44 10560 #define LTDC_LxWVPCR_WVSTPOS LTDC_LxWVPCR_WVSTPOS_Msk /*!< Window Vertical Start Position */
lypinator 0:bb348c97df44 10561 #define LTDC_LxWVPCR_WVSPPOS_Pos (16U)
lypinator 0:bb348c97df44 10562 #define LTDC_LxWVPCR_WVSPPOS_Msk (0xFFFFU << LTDC_LxWVPCR_WVSPPOS_Pos) /*!< 0xFFFF0000 */
lypinator 0:bb348c97df44 10563 #define LTDC_LxWVPCR_WVSPPOS LTDC_LxWVPCR_WVSPPOS_Msk /*!< Window Vertical Stop Position */
lypinator 0:bb348c97df44 10564
lypinator 0:bb348c97df44 10565 /******************** Bit definition for LTDC_LxCKCR register ***************/
lypinator 0:bb348c97df44 10566
lypinator 0:bb348c97df44 10567 #define LTDC_LxCKCR_CKBLUE_Pos (0U)
lypinator 0:bb348c97df44 10568 #define LTDC_LxCKCR_CKBLUE_Msk (0xFFU << LTDC_LxCKCR_CKBLUE_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 10569 #define LTDC_LxCKCR_CKBLUE LTDC_LxCKCR_CKBLUE_Msk /*!< Color Key Blue value */
lypinator 0:bb348c97df44 10570 #define LTDC_LxCKCR_CKGREEN_Pos (8U)
lypinator 0:bb348c97df44 10571 #define LTDC_LxCKCR_CKGREEN_Msk (0xFFU << LTDC_LxCKCR_CKGREEN_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 10572 #define LTDC_LxCKCR_CKGREEN LTDC_LxCKCR_CKGREEN_Msk /*!< Color Key Green value */
lypinator 0:bb348c97df44 10573 #define LTDC_LxCKCR_CKRED_Pos (16U)
lypinator 0:bb348c97df44 10574 #define LTDC_LxCKCR_CKRED_Msk (0xFFU << LTDC_LxCKCR_CKRED_Pos) /*!< 0x00FF0000 */
lypinator 0:bb348c97df44 10575 #define LTDC_LxCKCR_CKRED LTDC_LxCKCR_CKRED_Msk /*!< Color Key Red value */
lypinator 0:bb348c97df44 10576
lypinator 0:bb348c97df44 10577 /******************** Bit definition for LTDC_LxPFCR register ***************/
lypinator 0:bb348c97df44 10578
lypinator 0:bb348c97df44 10579 #define LTDC_LxPFCR_PF_Pos (0U)
lypinator 0:bb348c97df44 10580 #define LTDC_LxPFCR_PF_Msk (0x7U << LTDC_LxPFCR_PF_Pos) /*!< 0x00000007 */
lypinator 0:bb348c97df44 10581 #define LTDC_LxPFCR_PF LTDC_LxPFCR_PF_Msk /*!< Pixel Format */
lypinator 0:bb348c97df44 10582
lypinator 0:bb348c97df44 10583 /******************** Bit definition for LTDC_LxCACR register ***************/
lypinator 0:bb348c97df44 10584
lypinator 0:bb348c97df44 10585 #define LTDC_LxCACR_CONSTA_Pos (0U)
lypinator 0:bb348c97df44 10586 #define LTDC_LxCACR_CONSTA_Msk (0xFFU << LTDC_LxCACR_CONSTA_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 10587 #define LTDC_LxCACR_CONSTA LTDC_LxCACR_CONSTA_Msk /*!< Constant Alpha */
lypinator 0:bb348c97df44 10588
lypinator 0:bb348c97df44 10589 /******************** Bit definition for LTDC_LxDCCR register ***************/
lypinator 0:bb348c97df44 10590
lypinator 0:bb348c97df44 10591 #define LTDC_LxDCCR_DCBLUE_Pos (0U)
lypinator 0:bb348c97df44 10592 #define LTDC_LxDCCR_DCBLUE_Msk (0xFFU << LTDC_LxDCCR_DCBLUE_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 10593 #define LTDC_LxDCCR_DCBLUE LTDC_LxDCCR_DCBLUE_Msk /*!< Default Color Blue */
lypinator 0:bb348c97df44 10594 #define LTDC_LxDCCR_DCGREEN_Pos (8U)
lypinator 0:bb348c97df44 10595 #define LTDC_LxDCCR_DCGREEN_Msk (0xFFU << LTDC_LxDCCR_DCGREEN_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 10596 #define LTDC_LxDCCR_DCGREEN LTDC_LxDCCR_DCGREEN_Msk /*!< Default Color Green */
lypinator 0:bb348c97df44 10597 #define LTDC_LxDCCR_DCRED_Pos (16U)
lypinator 0:bb348c97df44 10598 #define LTDC_LxDCCR_DCRED_Msk (0xFFU << LTDC_LxDCCR_DCRED_Pos) /*!< 0x00FF0000 */
lypinator 0:bb348c97df44 10599 #define LTDC_LxDCCR_DCRED LTDC_LxDCCR_DCRED_Msk /*!< Default Color Red */
lypinator 0:bb348c97df44 10600 #define LTDC_LxDCCR_DCALPHA_Pos (24U)
lypinator 0:bb348c97df44 10601 #define LTDC_LxDCCR_DCALPHA_Msk (0xFFU << LTDC_LxDCCR_DCALPHA_Pos) /*!< 0xFF000000 */
lypinator 0:bb348c97df44 10602 #define LTDC_LxDCCR_DCALPHA LTDC_LxDCCR_DCALPHA_Msk /*!< Default Color Alpha */
lypinator 0:bb348c97df44 10603
lypinator 0:bb348c97df44 10604 /******************** Bit definition for LTDC_LxBFCR register ***************/
lypinator 0:bb348c97df44 10605
lypinator 0:bb348c97df44 10606 #define LTDC_LxBFCR_BF2_Pos (0U)
lypinator 0:bb348c97df44 10607 #define LTDC_LxBFCR_BF2_Msk (0x7U << LTDC_LxBFCR_BF2_Pos) /*!< 0x00000007 */
lypinator 0:bb348c97df44 10608 #define LTDC_LxBFCR_BF2 LTDC_LxBFCR_BF2_Msk /*!< Blending Factor 2 */
lypinator 0:bb348c97df44 10609 #define LTDC_LxBFCR_BF1_Pos (8U)
lypinator 0:bb348c97df44 10610 #define LTDC_LxBFCR_BF1_Msk (0x7U << LTDC_LxBFCR_BF1_Pos) /*!< 0x00000700 */
lypinator 0:bb348c97df44 10611 #define LTDC_LxBFCR_BF1 LTDC_LxBFCR_BF1_Msk /*!< Blending Factor 1 */
lypinator 0:bb348c97df44 10612
lypinator 0:bb348c97df44 10613 /******************** Bit definition for LTDC_LxCFBAR register **************/
lypinator 0:bb348c97df44 10614
lypinator 0:bb348c97df44 10615 #define LTDC_LxCFBAR_CFBADD_Pos (0U)
lypinator 0:bb348c97df44 10616 #define LTDC_LxCFBAR_CFBADD_Msk (0xFFFFFFFFU << LTDC_LxCFBAR_CFBADD_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 10617 #define LTDC_LxCFBAR_CFBADD LTDC_LxCFBAR_CFBADD_Msk /*!< Color Frame Buffer Start Address */
lypinator 0:bb348c97df44 10618
lypinator 0:bb348c97df44 10619 /******************** Bit definition for LTDC_LxCFBLR register **************/
lypinator 0:bb348c97df44 10620
lypinator 0:bb348c97df44 10621 #define LTDC_LxCFBLR_CFBLL_Pos (0U)
lypinator 0:bb348c97df44 10622 #define LTDC_LxCFBLR_CFBLL_Msk (0x1FFFU << LTDC_LxCFBLR_CFBLL_Pos) /*!< 0x00001FFF */
lypinator 0:bb348c97df44 10623 #define LTDC_LxCFBLR_CFBLL LTDC_LxCFBLR_CFBLL_Msk /*!< Color Frame Buffer Line Length */
lypinator 0:bb348c97df44 10624 #define LTDC_LxCFBLR_CFBP_Pos (16U)
lypinator 0:bb348c97df44 10625 #define LTDC_LxCFBLR_CFBP_Msk (0x1FFFU << LTDC_LxCFBLR_CFBP_Pos) /*!< 0x1FFF0000 */
lypinator 0:bb348c97df44 10626 #define LTDC_LxCFBLR_CFBP LTDC_LxCFBLR_CFBP_Msk /*!< Color Frame Buffer Pitch in bytes */
lypinator 0:bb348c97df44 10627
lypinator 0:bb348c97df44 10628 /******************** Bit definition for LTDC_LxCFBLNR register *************/
lypinator 0:bb348c97df44 10629
lypinator 0:bb348c97df44 10630 #define LTDC_LxCFBLNR_CFBLNBR_Pos (0U)
lypinator 0:bb348c97df44 10631 #define LTDC_LxCFBLNR_CFBLNBR_Msk (0x7FFU << LTDC_LxCFBLNR_CFBLNBR_Pos) /*!< 0x000007FF */
lypinator 0:bb348c97df44 10632 #define LTDC_LxCFBLNR_CFBLNBR LTDC_LxCFBLNR_CFBLNBR_Msk /*!< Frame Buffer Line Number */
lypinator 0:bb348c97df44 10633
lypinator 0:bb348c97df44 10634 /******************** Bit definition for LTDC_LxCLUTWR register *************/
lypinator 0:bb348c97df44 10635
lypinator 0:bb348c97df44 10636 #define LTDC_LxCLUTWR_BLUE_Pos (0U)
lypinator 0:bb348c97df44 10637 #define LTDC_LxCLUTWR_BLUE_Msk (0xFFU << LTDC_LxCLUTWR_BLUE_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 10638 #define LTDC_LxCLUTWR_BLUE LTDC_LxCLUTWR_BLUE_Msk /*!< Blue value */
lypinator 0:bb348c97df44 10639 #define LTDC_LxCLUTWR_GREEN_Pos (8U)
lypinator 0:bb348c97df44 10640 #define LTDC_LxCLUTWR_GREEN_Msk (0xFFU << LTDC_LxCLUTWR_GREEN_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 10641 #define LTDC_LxCLUTWR_GREEN LTDC_LxCLUTWR_GREEN_Msk /*!< Green value */
lypinator 0:bb348c97df44 10642 #define LTDC_LxCLUTWR_RED_Pos (16U)
lypinator 0:bb348c97df44 10643 #define LTDC_LxCLUTWR_RED_Msk (0xFFU << LTDC_LxCLUTWR_RED_Pos) /*!< 0x00FF0000 */
lypinator 0:bb348c97df44 10644 #define LTDC_LxCLUTWR_RED LTDC_LxCLUTWR_RED_Msk /*!< Red value */
lypinator 0:bb348c97df44 10645 #define LTDC_LxCLUTWR_CLUTADD_Pos (24U)
lypinator 0:bb348c97df44 10646 #define LTDC_LxCLUTWR_CLUTADD_Msk (0xFFU << LTDC_LxCLUTWR_CLUTADD_Pos) /*!< 0xFF000000 */
lypinator 0:bb348c97df44 10647 #define LTDC_LxCLUTWR_CLUTADD LTDC_LxCLUTWR_CLUTADD_Msk /*!< CLUT address */
lypinator 0:bb348c97df44 10648
lypinator 0:bb348c97df44 10649
lypinator 0:bb348c97df44 10650 /******************************************************************************/
lypinator 0:bb348c97df44 10651 /* */
lypinator 0:bb348c97df44 10652 /* Power Control */
lypinator 0:bb348c97df44 10653 /* */
lypinator 0:bb348c97df44 10654 /******************************************************************************/
lypinator 0:bb348c97df44 10655 /******************** Bit definition for PWR_CR register ********************/
lypinator 0:bb348c97df44 10656 #define PWR_CR_LPDS_Pos (0U)
lypinator 0:bb348c97df44 10657 #define PWR_CR_LPDS_Msk (0x1U << PWR_CR_LPDS_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 10658 #define PWR_CR_LPDS PWR_CR_LPDS_Msk /*!< Low-Power Deepsleep */
lypinator 0:bb348c97df44 10659 #define PWR_CR_PDDS_Pos (1U)
lypinator 0:bb348c97df44 10660 #define PWR_CR_PDDS_Msk (0x1U << PWR_CR_PDDS_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 10661 #define PWR_CR_PDDS PWR_CR_PDDS_Msk /*!< Power Down Deepsleep */
lypinator 0:bb348c97df44 10662 #define PWR_CR_CWUF_Pos (2U)
lypinator 0:bb348c97df44 10663 #define PWR_CR_CWUF_Msk (0x1U << PWR_CR_CWUF_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 10664 #define PWR_CR_CWUF PWR_CR_CWUF_Msk /*!< Clear Wakeup Flag */
lypinator 0:bb348c97df44 10665 #define PWR_CR_CSBF_Pos (3U)
lypinator 0:bb348c97df44 10666 #define PWR_CR_CSBF_Msk (0x1U << PWR_CR_CSBF_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 10667 #define PWR_CR_CSBF PWR_CR_CSBF_Msk /*!< Clear Standby Flag */
lypinator 0:bb348c97df44 10668 #define PWR_CR_PVDE_Pos (4U)
lypinator 0:bb348c97df44 10669 #define PWR_CR_PVDE_Msk (0x1U << PWR_CR_PVDE_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 10670 #define PWR_CR_PVDE PWR_CR_PVDE_Msk /*!< Power Voltage Detector Enable */
lypinator 0:bb348c97df44 10671
lypinator 0:bb348c97df44 10672 #define PWR_CR_PLS_Pos (5U)
lypinator 0:bb348c97df44 10673 #define PWR_CR_PLS_Msk (0x7U << PWR_CR_PLS_Pos) /*!< 0x000000E0 */
lypinator 0:bb348c97df44 10674 #define PWR_CR_PLS PWR_CR_PLS_Msk /*!< PLS[2:0] bits (PVD Level Selection) */
lypinator 0:bb348c97df44 10675 #define PWR_CR_PLS_0 (0x1U << PWR_CR_PLS_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 10676 #define PWR_CR_PLS_1 (0x2U << PWR_CR_PLS_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 10677 #define PWR_CR_PLS_2 (0x4U << PWR_CR_PLS_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 10678
lypinator 0:bb348c97df44 10679 /*!< PVD level configuration */
lypinator 0:bb348c97df44 10680 #define PWR_CR_PLS_LEV0 0x00000000U /*!< PVD level 0 */
lypinator 0:bb348c97df44 10681 #define PWR_CR_PLS_LEV1 0x00000020U /*!< PVD level 1 */
lypinator 0:bb348c97df44 10682 #define PWR_CR_PLS_LEV2 0x00000040U /*!< PVD level 2 */
lypinator 0:bb348c97df44 10683 #define PWR_CR_PLS_LEV3 0x00000060U /*!< PVD level 3 */
lypinator 0:bb348c97df44 10684 #define PWR_CR_PLS_LEV4 0x00000080U /*!< PVD level 4 */
lypinator 0:bb348c97df44 10685 #define PWR_CR_PLS_LEV5 0x000000A0U /*!< PVD level 5 */
lypinator 0:bb348c97df44 10686 #define PWR_CR_PLS_LEV6 0x000000C0U /*!< PVD level 6 */
lypinator 0:bb348c97df44 10687 #define PWR_CR_PLS_LEV7 0x000000E0U /*!< PVD level 7 */
lypinator 0:bb348c97df44 10688 #define PWR_CR_DBP_Pos (8U)
lypinator 0:bb348c97df44 10689 #define PWR_CR_DBP_Msk (0x1U << PWR_CR_DBP_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 10690 #define PWR_CR_DBP PWR_CR_DBP_Msk /*!< Disable Backup Domain write protection */
lypinator 0:bb348c97df44 10691 #define PWR_CR_FPDS_Pos (9U)
lypinator 0:bb348c97df44 10692 #define PWR_CR_FPDS_Msk (0x1U << PWR_CR_FPDS_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 10693 #define PWR_CR_FPDS PWR_CR_FPDS_Msk /*!< Flash power down in Stop mode */
lypinator 0:bb348c97df44 10694 #define PWR_CR_LPLVDS_Pos (10U)
lypinator 0:bb348c97df44 10695 #define PWR_CR_LPLVDS_Msk (0x1U << PWR_CR_LPLVDS_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 10696 #define PWR_CR_LPLVDS PWR_CR_LPLVDS_Msk /*!< Low-Power Regulator Low Voltage Scaling in Stop mode */
lypinator 0:bb348c97df44 10697 #define PWR_CR_MRLVDS_Pos (11U)
lypinator 0:bb348c97df44 10698 #define PWR_CR_MRLVDS_Msk (0x1U << PWR_CR_MRLVDS_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 10699 #define PWR_CR_MRLVDS PWR_CR_MRLVDS_Msk /*!< Main regulator Low Voltage Scaling in Stop mode */
lypinator 0:bb348c97df44 10700 #define PWR_CR_ADCDC1_Pos (13U)
lypinator 0:bb348c97df44 10701 #define PWR_CR_ADCDC1_Msk (0x1U << PWR_CR_ADCDC1_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 10702 #define PWR_CR_ADCDC1 PWR_CR_ADCDC1_Msk /*!< Refer to AN4073 on how to use this bit */
lypinator 0:bb348c97df44 10703 #define PWR_CR_VOS_Pos (14U)
lypinator 0:bb348c97df44 10704 #define PWR_CR_VOS_Msk (0x3U << PWR_CR_VOS_Pos) /*!< 0x0000C000 */
lypinator 0:bb348c97df44 10705 #define PWR_CR_VOS PWR_CR_VOS_Msk /*!< VOS[1:0] bits (Regulator voltage scaling output selection) */
lypinator 0:bb348c97df44 10706 #define PWR_CR_VOS_0 0x00004000U /*!< Bit 0 */
lypinator 0:bb348c97df44 10707 #define PWR_CR_VOS_1 0x00008000U /*!< Bit 1 */
lypinator 0:bb348c97df44 10708 #define PWR_CR_ODEN_Pos (16U)
lypinator 0:bb348c97df44 10709 #define PWR_CR_ODEN_Msk (0x1U << PWR_CR_ODEN_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 10710 #define PWR_CR_ODEN PWR_CR_ODEN_Msk /*!< Over Drive enable */
lypinator 0:bb348c97df44 10711 #define PWR_CR_ODSWEN_Pos (17U)
lypinator 0:bb348c97df44 10712 #define PWR_CR_ODSWEN_Msk (0x1U << PWR_CR_ODSWEN_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 10713 #define PWR_CR_ODSWEN PWR_CR_ODSWEN_Msk /*!< Over Drive switch enabled */
lypinator 0:bb348c97df44 10714 #define PWR_CR_UDEN_Pos (18U)
lypinator 0:bb348c97df44 10715 #define PWR_CR_UDEN_Msk (0x3U << PWR_CR_UDEN_Pos) /*!< 0x000C0000 */
lypinator 0:bb348c97df44 10716 #define PWR_CR_UDEN PWR_CR_UDEN_Msk /*!< Under Drive enable in stop mode */
lypinator 0:bb348c97df44 10717 #define PWR_CR_UDEN_0 (0x1U << PWR_CR_UDEN_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 10718 #define PWR_CR_UDEN_1 (0x2U << PWR_CR_UDEN_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 10719
lypinator 0:bb348c97df44 10720 /* Legacy define */
lypinator 0:bb348c97df44 10721 #define PWR_CR_PMODE PWR_CR_VOS
lypinator 0:bb348c97df44 10722 #define PWR_CR_LPUDS PWR_CR_LPLVDS /*!< Low-Power Regulator in deepsleep under-drive mode */
lypinator 0:bb348c97df44 10723 #define PWR_CR_MRUDS PWR_CR_MRLVDS /*!< Main regulator in deepsleep under-drive mode */
lypinator 0:bb348c97df44 10724
lypinator 0:bb348c97df44 10725 /******************* Bit definition for PWR_CSR register ********************/
lypinator 0:bb348c97df44 10726 #define PWR_CSR_WUF_Pos (0U)
lypinator 0:bb348c97df44 10727 #define PWR_CSR_WUF_Msk (0x1U << PWR_CSR_WUF_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 10728 #define PWR_CSR_WUF PWR_CSR_WUF_Msk /*!< Wakeup Flag */
lypinator 0:bb348c97df44 10729 #define PWR_CSR_SBF_Pos (1U)
lypinator 0:bb348c97df44 10730 #define PWR_CSR_SBF_Msk (0x1U << PWR_CSR_SBF_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 10731 #define PWR_CSR_SBF PWR_CSR_SBF_Msk /*!< Standby Flag */
lypinator 0:bb348c97df44 10732 #define PWR_CSR_PVDO_Pos (2U)
lypinator 0:bb348c97df44 10733 #define PWR_CSR_PVDO_Msk (0x1U << PWR_CSR_PVDO_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 10734 #define PWR_CSR_PVDO PWR_CSR_PVDO_Msk /*!< PVD Output */
lypinator 0:bb348c97df44 10735 #define PWR_CSR_BRR_Pos (3U)
lypinator 0:bb348c97df44 10736 #define PWR_CSR_BRR_Msk (0x1U << PWR_CSR_BRR_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 10737 #define PWR_CSR_BRR PWR_CSR_BRR_Msk /*!< Backup regulator ready */
lypinator 0:bb348c97df44 10738 #define PWR_CSR_EWUP_Pos (8U)
lypinator 0:bb348c97df44 10739 #define PWR_CSR_EWUP_Msk (0x1U << PWR_CSR_EWUP_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 10740 #define PWR_CSR_EWUP PWR_CSR_EWUP_Msk /*!< Enable WKUP pin */
lypinator 0:bb348c97df44 10741 #define PWR_CSR_BRE_Pos (9U)
lypinator 0:bb348c97df44 10742 #define PWR_CSR_BRE_Msk (0x1U << PWR_CSR_BRE_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 10743 #define PWR_CSR_BRE PWR_CSR_BRE_Msk /*!< Backup regulator enable */
lypinator 0:bb348c97df44 10744 #define PWR_CSR_VOSRDY_Pos (14U)
lypinator 0:bb348c97df44 10745 #define PWR_CSR_VOSRDY_Msk (0x1U << PWR_CSR_VOSRDY_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 10746 #define PWR_CSR_VOSRDY PWR_CSR_VOSRDY_Msk /*!< Regulator voltage scaling output selection ready */
lypinator 0:bb348c97df44 10747 #define PWR_CSR_ODRDY_Pos (16U)
lypinator 0:bb348c97df44 10748 #define PWR_CSR_ODRDY_Msk (0x1U << PWR_CSR_ODRDY_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 10749 #define PWR_CSR_ODRDY PWR_CSR_ODRDY_Msk /*!< Over Drive generator ready */
lypinator 0:bb348c97df44 10750 #define PWR_CSR_ODSWRDY_Pos (17U)
lypinator 0:bb348c97df44 10751 #define PWR_CSR_ODSWRDY_Msk (0x1U << PWR_CSR_ODSWRDY_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 10752 #define PWR_CSR_ODSWRDY PWR_CSR_ODSWRDY_Msk /*!< Over Drive Switch ready */
lypinator 0:bb348c97df44 10753 #define PWR_CSR_UDRDY_Pos (18U)
lypinator 0:bb348c97df44 10754 #define PWR_CSR_UDRDY_Msk (0x3U << PWR_CSR_UDRDY_Pos) /*!< 0x000C0000 */
lypinator 0:bb348c97df44 10755 #define PWR_CSR_UDRDY PWR_CSR_UDRDY_Msk /*!< Under Drive ready */
lypinator 0:bb348c97df44 10756 /* Legacy define */
lypinator 0:bb348c97df44 10757 #define PWR_CSR_UDSWRDY PWR_CSR_UDRDY
lypinator 0:bb348c97df44 10758
lypinator 0:bb348c97df44 10759 /* Legacy define */
lypinator 0:bb348c97df44 10760 #define PWR_CSR_REGRDY PWR_CSR_VOSRDY
lypinator 0:bb348c97df44 10761
lypinator 0:bb348c97df44 10762 /******************************************************************************/
lypinator 0:bb348c97df44 10763 /* */
lypinator 0:bb348c97df44 10764 /* Reset and Clock Control */
lypinator 0:bb348c97df44 10765 /* */
lypinator 0:bb348c97df44 10766 /******************************************************************************/
lypinator 0:bb348c97df44 10767 /******************** Bit definition for RCC_CR register ********************/
lypinator 0:bb348c97df44 10768 #define RCC_CR_HSION_Pos (0U)
lypinator 0:bb348c97df44 10769 #define RCC_CR_HSION_Msk (0x1U << RCC_CR_HSION_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 10770 #define RCC_CR_HSION RCC_CR_HSION_Msk
lypinator 0:bb348c97df44 10771 #define RCC_CR_HSIRDY_Pos (1U)
lypinator 0:bb348c97df44 10772 #define RCC_CR_HSIRDY_Msk (0x1U << RCC_CR_HSIRDY_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 10773 #define RCC_CR_HSIRDY RCC_CR_HSIRDY_Msk
lypinator 0:bb348c97df44 10774
lypinator 0:bb348c97df44 10775 #define RCC_CR_HSITRIM_Pos (3U)
lypinator 0:bb348c97df44 10776 #define RCC_CR_HSITRIM_Msk (0x1FU << RCC_CR_HSITRIM_Pos) /*!< 0x000000F8 */
lypinator 0:bb348c97df44 10777 #define RCC_CR_HSITRIM RCC_CR_HSITRIM_Msk
lypinator 0:bb348c97df44 10778 #define RCC_CR_HSITRIM_0 (0x01U << RCC_CR_HSITRIM_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 10779 #define RCC_CR_HSITRIM_1 (0x02U << RCC_CR_HSITRIM_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 10780 #define RCC_CR_HSITRIM_2 (0x04U << RCC_CR_HSITRIM_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 10781 #define RCC_CR_HSITRIM_3 (0x08U << RCC_CR_HSITRIM_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 10782 #define RCC_CR_HSITRIM_4 (0x10U << RCC_CR_HSITRIM_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 10783
lypinator 0:bb348c97df44 10784 #define RCC_CR_HSICAL_Pos (8U)
lypinator 0:bb348c97df44 10785 #define RCC_CR_HSICAL_Msk (0xFFU << RCC_CR_HSICAL_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 10786 #define RCC_CR_HSICAL RCC_CR_HSICAL_Msk
lypinator 0:bb348c97df44 10787 #define RCC_CR_HSICAL_0 (0x01U << RCC_CR_HSICAL_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 10788 #define RCC_CR_HSICAL_1 (0x02U << RCC_CR_HSICAL_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 10789 #define RCC_CR_HSICAL_2 (0x04U << RCC_CR_HSICAL_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 10790 #define RCC_CR_HSICAL_3 (0x08U << RCC_CR_HSICAL_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 10791 #define RCC_CR_HSICAL_4 (0x10U << RCC_CR_HSICAL_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 10792 #define RCC_CR_HSICAL_5 (0x20U << RCC_CR_HSICAL_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 10793 #define RCC_CR_HSICAL_6 (0x40U << RCC_CR_HSICAL_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 10794 #define RCC_CR_HSICAL_7 (0x80U << RCC_CR_HSICAL_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 10795
lypinator 0:bb348c97df44 10796 #define RCC_CR_HSEON_Pos (16U)
lypinator 0:bb348c97df44 10797 #define RCC_CR_HSEON_Msk (0x1U << RCC_CR_HSEON_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 10798 #define RCC_CR_HSEON RCC_CR_HSEON_Msk
lypinator 0:bb348c97df44 10799 #define RCC_CR_HSERDY_Pos (17U)
lypinator 0:bb348c97df44 10800 #define RCC_CR_HSERDY_Msk (0x1U << RCC_CR_HSERDY_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 10801 #define RCC_CR_HSERDY RCC_CR_HSERDY_Msk
lypinator 0:bb348c97df44 10802 #define RCC_CR_HSEBYP_Pos (18U)
lypinator 0:bb348c97df44 10803 #define RCC_CR_HSEBYP_Msk (0x1U << RCC_CR_HSEBYP_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 10804 #define RCC_CR_HSEBYP RCC_CR_HSEBYP_Msk
lypinator 0:bb348c97df44 10805 #define RCC_CR_CSSON_Pos (19U)
lypinator 0:bb348c97df44 10806 #define RCC_CR_CSSON_Msk (0x1U << RCC_CR_CSSON_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 10807 #define RCC_CR_CSSON RCC_CR_CSSON_Msk
lypinator 0:bb348c97df44 10808 #define RCC_CR_PLLON_Pos (24U)
lypinator 0:bb348c97df44 10809 #define RCC_CR_PLLON_Msk (0x1U << RCC_CR_PLLON_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 10810 #define RCC_CR_PLLON RCC_CR_PLLON_Msk
lypinator 0:bb348c97df44 10811 #define RCC_CR_PLLRDY_Pos (25U)
lypinator 0:bb348c97df44 10812 #define RCC_CR_PLLRDY_Msk (0x1U << RCC_CR_PLLRDY_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 10813 #define RCC_CR_PLLRDY RCC_CR_PLLRDY_Msk
lypinator 0:bb348c97df44 10814 /*
lypinator 0:bb348c97df44 10815 * @brief Specific device feature definitions (not present on all devices in the STM32F4 serie)
lypinator 0:bb348c97df44 10816 */
lypinator 0:bb348c97df44 10817 #define RCC_PLLI2S_SUPPORT /*!< Support PLLI2S oscillator */
lypinator 0:bb348c97df44 10818
lypinator 0:bb348c97df44 10819 #define RCC_CR_PLLI2SON_Pos (26U)
lypinator 0:bb348c97df44 10820 #define RCC_CR_PLLI2SON_Msk (0x1U << RCC_CR_PLLI2SON_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 10821 #define RCC_CR_PLLI2SON RCC_CR_PLLI2SON_Msk
lypinator 0:bb348c97df44 10822 #define RCC_CR_PLLI2SRDY_Pos (27U)
lypinator 0:bb348c97df44 10823 #define RCC_CR_PLLI2SRDY_Msk (0x1U << RCC_CR_PLLI2SRDY_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 10824 #define RCC_CR_PLLI2SRDY RCC_CR_PLLI2SRDY_Msk
lypinator 0:bb348c97df44 10825 /*
lypinator 0:bb348c97df44 10826 * @brief Specific device feature definitions (not present on all devices in the STM32F4 serie)
lypinator 0:bb348c97df44 10827 */
lypinator 0:bb348c97df44 10828 #define RCC_PLLSAI_SUPPORT /*!< Support PLLSAI oscillator */
lypinator 0:bb348c97df44 10829
lypinator 0:bb348c97df44 10830 #define RCC_CR_PLLSAION_Pos (28U)
lypinator 0:bb348c97df44 10831 #define RCC_CR_PLLSAION_Msk (0x1U << RCC_CR_PLLSAION_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 10832 #define RCC_CR_PLLSAION RCC_CR_PLLSAION_Msk
lypinator 0:bb348c97df44 10833 #define RCC_CR_PLLSAIRDY_Pos (29U)
lypinator 0:bb348c97df44 10834 #define RCC_CR_PLLSAIRDY_Msk (0x1U << RCC_CR_PLLSAIRDY_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 10835 #define RCC_CR_PLLSAIRDY RCC_CR_PLLSAIRDY_Msk
lypinator 0:bb348c97df44 10836
lypinator 0:bb348c97df44 10837 /******************** Bit definition for RCC_PLLCFGR register ***************/
lypinator 0:bb348c97df44 10838 #define RCC_PLLCFGR_PLLM_Pos (0U)
lypinator 0:bb348c97df44 10839 #define RCC_PLLCFGR_PLLM_Msk (0x3FU << RCC_PLLCFGR_PLLM_Pos) /*!< 0x0000003F */
lypinator 0:bb348c97df44 10840 #define RCC_PLLCFGR_PLLM RCC_PLLCFGR_PLLM_Msk
lypinator 0:bb348c97df44 10841 #define RCC_PLLCFGR_PLLM_0 (0x01U << RCC_PLLCFGR_PLLM_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 10842 #define RCC_PLLCFGR_PLLM_1 (0x02U << RCC_PLLCFGR_PLLM_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 10843 #define RCC_PLLCFGR_PLLM_2 (0x04U << RCC_PLLCFGR_PLLM_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 10844 #define RCC_PLLCFGR_PLLM_3 (0x08U << RCC_PLLCFGR_PLLM_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 10845 #define RCC_PLLCFGR_PLLM_4 (0x10U << RCC_PLLCFGR_PLLM_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 10846 #define RCC_PLLCFGR_PLLM_5 (0x20U << RCC_PLLCFGR_PLLM_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 10847
lypinator 0:bb348c97df44 10848 #define RCC_PLLCFGR_PLLN_Pos (6U)
lypinator 0:bb348c97df44 10849 #define RCC_PLLCFGR_PLLN_Msk (0x1FFU << RCC_PLLCFGR_PLLN_Pos) /*!< 0x00007FC0 */
lypinator 0:bb348c97df44 10850 #define RCC_PLLCFGR_PLLN RCC_PLLCFGR_PLLN_Msk
lypinator 0:bb348c97df44 10851 #define RCC_PLLCFGR_PLLN_0 (0x001U << RCC_PLLCFGR_PLLN_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 10852 #define RCC_PLLCFGR_PLLN_1 (0x002U << RCC_PLLCFGR_PLLN_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 10853 #define RCC_PLLCFGR_PLLN_2 (0x004U << RCC_PLLCFGR_PLLN_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 10854 #define RCC_PLLCFGR_PLLN_3 (0x008U << RCC_PLLCFGR_PLLN_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 10855 #define RCC_PLLCFGR_PLLN_4 (0x010U << RCC_PLLCFGR_PLLN_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 10856 #define RCC_PLLCFGR_PLLN_5 (0x020U << RCC_PLLCFGR_PLLN_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 10857 #define RCC_PLLCFGR_PLLN_6 (0x040U << RCC_PLLCFGR_PLLN_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 10858 #define RCC_PLLCFGR_PLLN_7 (0x080U << RCC_PLLCFGR_PLLN_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 10859 #define RCC_PLLCFGR_PLLN_8 (0x100U << RCC_PLLCFGR_PLLN_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 10860
lypinator 0:bb348c97df44 10861 #define RCC_PLLCFGR_PLLP_Pos (16U)
lypinator 0:bb348c97df44 10862 #define RCC_PLLCFGR_PLLP_Msk (0x3U << RCC_PLLCFGR_PLLP_Pos) /*!< 0x00030000 */
lypinator 0:bb348c97df44 10863 #define RCC_PLLCFGR_PLLP RCC_PLLCFGR_PLLP_Msk
lypinator 0:bb348c97df44 10864 #define RCC_PLLCFGR_PLLP_0 (0x1U << RCC_PLLCFGR_PLLP_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 10865 #define RCC_PLLCFGR_PLLP_1 (0x2U << RCC_PLLCFGR_PLLP_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 10866
lypinator 0:bb348c97df44 10867 #define RCC_PLLCFGR_PLLSRC_Pos (22U)
lypinator 0:bb348c97df44 10868 #define RCC_PLLCFGR_PLLSRC_Msk (0x1U << RCC_PLLCFGR_PLLSRC_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 10869 #define RCC_PLLCFGR_PLLSRC RCC_PLLCFGR_PLLSRC_Msk
lypinator 0:bb348c97df44 10870 #define RCC_PLLCFGR_PLLSRC_HSE_Pos (22U)
lypinator 0:bb348c97df44 10871 #define RCC_PLLCFGR_PLLSRC_HSE_Msk (0x1U << RCC_PLLCFGR_PLLSRC_HSE_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 10872 #define RCC_PLLCFGR_PLLSRC_HSE RCC_PLLCFGR_PLLSRC_HSE_Msk
lypinator 0:bb348c97df44 10873 #define RCC_PLLCFGR_PLLSRC_HSI 0x00000000U
lypinator 0:bb348c97df44 10874
lypinator 0:bb348c97df44 10875 #define RCC_PLLCFGR_PLLQ_Pos (24U)
lypinator 0:bb348c97df44 10876 #define RCC_PLLCFGR_PLLQ_Msk (0xFU << RCC_PLLCFGR_PLLQ_Pos) /*!< 0x0F000000 */
lypinator 0:bb348c97df44 10877 #define RCC_PLLCFGR_PLLQ RCC_PLLCFGR_PLLQ_Msk
lypinator 0:bb348c97df44 10878 #define RCC_PLLCFGR_PLLQ_0 (0x1U << RCC_PLLCFGR_PLLQ_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 10879 #define RCC_PLLCFGR_PLLQ_1 (0x2U << RCC_PLLCFGR_PLLQ_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 10880 #define RCC_PLLCFGR_PLLQ_2 (0x4U << RCC_PLLCFGR_PLLQ_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 10881 #define RCC_PLLCFGR_PLLQ_3 (0x8U << RCC_PLLCFGR_PLLQ_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 10882
lypinator 0:bb348c97df44 10883
lypinator 0:bb348c97df44 10884 /******************** Bit definition for RCC_CFGR register ******************/
lypinator 0:bb348c97df44 10885 /*!< SW configuration */
lypinator 0:bb348c97df44 10886 #define RCC_CFGR_SW_Pos (0U)
lypinator 0:bb348c97df44 10887 #define RCC_CFGR_SW_Msk (0x3U << RCC_CFGR_SW_Pos) /*!< 0x00000003 */
lypinator 0:bb348c97df44 10888 #define RCC_CFGR_SW RCC_CFGR_SW_Msk /*!< SW[1:0] bits (System clock Switch) */
lypinator 0:bb348c97df44 10889 #define RCC_CFGR_SW_0 (0x1U << RCC_CFGR_SW_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 10890 #define RCC_CFGR_SW_1 (0x2U << RCC_CFGR_SW_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 10891
lypinator 0:bb348c97df44 10892 #define RCC_CFGR_SW_HSI 0x00000000U /*!< HSI selected as system clock */
lypinator 0:bb348c97df44 10893 #define RCC_CFGR_SW_HSE 0x00000001U /*!< HSE selected as system clock */
lypinator 0:bb348c97df44 10894 #define RCC_CFGR_SW_PLL 0x00000002U /*!< PLL selected as system clock */
lypinator 0:bb348c97df44 10895
lypinator 0:bb348c97df44 10896 /*!< SWS configuration */
lypinator 0:bb348c97df44 10897 #define RCC_CFGR_SWS_Pos (2U)
lypinator 0:bb348c97df44 10898 #define RCC_CFGR_SWS_Msk (0x3U << RCC_CFGR_SWS_Pos) /*!< 0x0000000C */
lypinator 0:bb348c97df44 10899 #define RCC_CFGR_SWS RCC_CFGR_SWS_Msk /*!< SWS[1:0] bits (System Clock Switch Status) */
lypinator 0:bb348c97df44 10900 #define RCC_CFGR_SWS_0 (0x1U << RCC_CFGR_SWS_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 10901 #define RCC_CFGR_SWS_1 (0x2U << RCC_CFGR_SWS_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 10902
lypinator 0:bb348c97df44 10903 #define RCC_CFGR_SWS_HSI 0x00000000U /*!< HSI oscillator used as system clock */
lypinator 0:bb348c97df44 10904 #define RCC_CFGR_SWS_HSE 0x00000004U /*!< HSE oscillator used as system clock */
lypinator 0:bb348c97df44 10905 #define RCC_CFGR_SWS_PLL 0x00000008U /*!< PLL used as system clock */
lypinator 0:bb348c97df44 10906
lypinator 0:bb348c97df44 10907 /*!< HPRE configuration */
lypinator 0:bb348c97df44 10908 #define RCC_CFGR_HPRE_Pos (4U)
lypinator 0:bb348c97df44 10909 #define RCC_CFGR_HPRE_Msk (0xFU << RCC_CFGR_HPRE_Pos) /*!< 0x000000F0 */
lypinator 0:bb348c97df44 10910 #define RCC_CFGR_HPRE RCC_CFGR_HPRE_Msk /*!< HPRE[3:0] bits (AHB prescaler) */
lypinator 0:bb348c97df44 10911 #define RCC_CFGR_HPRE_0 (0x1U << RCC_CFGR_HPRE_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 10912 #define RCC_CFGR_HPRE_1 (0x2U << RCC_CFGR_HPRE_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 10913 #define RCC_CFGR_HPRE_2 (0x4U << RCC_CFGR_HPRE_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 10914 #define RCC_CFGR_HPRE_3 (0x8U << RCC_CFGR_HPRE_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 10915
lypinator 0:bb348c97df44 10916 #define RCC_CFGR_HPRE_DIV1 0x00000000U /*!< SYSCLK not divided */
lypinator 0:bb348c97df44 10917 #define RCC_CFGR_HPRE_DIV2 0x00000080U /*!< SYSCLK divided by 2 */
lypinator 0:bb348c97df44 10918 #define RCC_CFGR_HPRE_DIV4 0x00000090U /*!< SYSCLK divided by 4 */
lypinator 0:bb348c97df44 10919 #define RCC_CFGR_HPRE_DIV8 0x000000A0U /*!< SYSCLK divided by 8 */
lypinator 0:bb348c97df44 10920 #define RCC_CFGR_HPRE_DIV16 0x000000B0U /*!< SYSCLK divided by 16 */
lypinator 0:bb348c97df44 10921 #define RCC_CFGR_HPRE_DIV64 0x000000C0U /*!< SYSCLK divided by 64 */
lypinator 0:bb348c97df44 10922 #define RCC_CFGR_HPRE_DIV128 0x000000D0U /*!< SYSCLK divided by 128 */
lypinator 0:bb348c97df44 10923 #define RCC_CFGR_HPRE_DIV256 0x000000E0U /*!< SYSCLK divided by 256 */
lypinator 0:bb348c97df44 10924 #define RCC_CFGR_HPRE_DIV512 0x000000F0U /*!< SYSCLK divided by 512 */
lypinator 0:bb348c97df44 10925
lypinator 0:bb348c97df44 10926 /*!< PPRE1 configuration */
lypinator 0:bb348c97df44 10927 #define RCC_CFGR_PPRE1_Pos (10U)
lypinator 0:bb348c97df44 10928 #define RCC_CFGR_PPRE1_Msk (0x7U << RCC_CFGR_PPRE1_Pos) /*!< 0x00001C00 */
lypinator 0:bb348c97df44 10929 #define RCC_CFGR_PPRE1 RCC_CFGR_PPRE1_Msk /*!< PRE1[2:0] bits (APB1 prescaler) */
lypinator 0:bb348c97df44 10930 #define RCC_CFGR_PPRE1_0 (0x1U << RCC_CFGR_PPRE1_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 10931 #define RCC_CFGR_PPRE1_1 (0x2U << RCC_CFGR_PPRE1_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 10932 #define RCC_CFGR_PPRE1_2 (0x4U << RCC_CFGR_PPRE1_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 10933
lypinator 0:bb348c97df44 10934 #define RCC_CFGR_PPRE1_DIV1 0x00000000U /*!< HCLK not divided */
lypinator 0:bb348c97df44 10935 #define RCC_CFGR_PPRE1_DIV2 0x00001000U /*!< HCLK divided by 2 */
lypinator 0:bb348c97df44 10936 #define RCC_CFGR_PPRE1_DIV4 0x00001400U /*!< HCLK divided by 4 */
lypinator 0:bb348c97df44 10937 #define RCC_CFGR_PPRE1_DIV8 0x00001800U /*!< HCLK divided by 8 */
lypinator 0:bb348c97df44 10938 #define RCC_CFGR_PPRE1_DIV16 0x00001C00U /*!< HCLK divided by 16 */
lypinator 0:bb348c97df44 10939
lypinator 0:bb348c97df44 10940 /*!< PPRE2 configuration */
lypinator 0:bb348c97df44 10941 #define RCC_CFGR_PPRE2_Pos (13U)
lypinator 0:bb348c97df44 10942 #define RCC_CFGR_PPRE2_Msk (0x7U << RCC_CFGR_PPRE2_Pos) /*!< 0x0000E000 */
lypinator 0:bb348c97df44 10943 #define RCC_CFGR_PPRE2 RCC_CFGR_PPRE2_Msk /*!< PRE2[2:0] bits (APB2 prescaler) */
lypinator 0:bb348c97df44 10944 #define RCC_CFGR_PPRE2_0 (0x1U << RCC_CFGR_PPRE2_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 10945 #define RCC_CFGR_PPRE2_1 (0x2U << RCC_CFGR_PPRE2_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 10946 #define RCC_CFGR_PPRE2_2 (0x4U << RCC_CFGR_PPRE2_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 10947
lypinator 0:bb348c97df44 10948 #define RCC_CFGR_PPRE2_DIV1 0x00000000U /*!< HCLK not divided */
lypinator 0:bb348c97df44 10949 #define RCC_CFGR_PPRE2_DIV2 0x00008000U /*!< HCLK divided by 2 */
lypinator 0:bb348c97df44 10950 #define RCC_CFGR_PPRE2_DIV4 0x0000A000U /*!< HCLK divided by 4 */
lypinator 0:bb348c97df44 10951 #define RCC_CFGR_PPRE2_DIV8 0x0000C000U /*!< HCLK divided by 8 */
lypinator 0:bb348c97df44 10952 #define RCC_CFGR_PPRE2_DIV16 0x0000E000U /*!< HCLK divided by 16 */
lypinator 0:bb348c97df44 10953
lypinator 0:bb348c97df44 10954 /*!< RTCPRE configuration */
lypinator 0:bb348c97df44 10955 #define RCC_CFGR_RTCPRE_Pos (16U)
lypinator 0:bb348c97df44 10956 #define RCC_CFGR_RTCPRE_Msk (0x1FU << RCC_CFGR_RTCPRE_Pos) /*!< 0x001F0000 */
lypinator 0:bb348c97df44 10957 #define RCC_CFGR_RTCPRE RCC_CFGR_RTCPRE_Msk
lypinator 0:bb348c97df44 10958 #define RCC_CFGR_RTCPRE_0 (0x01U << RCC_CFGR_RTCPRE_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 10959 #define RCC_CFGR_RTCPRE_1 (0x02U << RCC_CFGR_RTCPRE_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 10960 #define RCC_CFGR_RTCPRE_2 (0x04U << RCC_CFGR_RTCPRE_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 10961 #define RCC_CFGR_RTCPRE_3 (0x08U << RCC_CFGR_RTCPRE_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 10962 #define RCC_CFGR_RTCPRE_4 (0x10U << RCC_CFGR_RTCPRE_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 10963
lypinator 0:bb348c97df44 10964 /*!< MCO1 configuration */
lypinator 0:bb348c97df44 10965 #define RCC_CFGR_MCO1_Pos (21U)
lypinator 0:bb348c97df44 10966 #define RCC_CFGR_MCO1_Msk (0x3U << RCC_CFGR_MCO1_Pos) /*!< 0x00600000 */
lypinator 0:bb348c97df44 10967 #define RCC_CFGR_MCO1 RCC_CFGR_MCO1_Msk
lypinator 0:bb348c97df44 10968 #define RCC_CFGR_MCO1_0 (0x1U << RCC_CFGR_MCO1_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 10969 #define RCC_CFGR_MCO1_1 (0x2U << RCC_CFGR_MCO1_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 10970
lypinator 0:bb348c97df44 10971 #define RCC_CFGR_I2SSRC_Pos (23U)
lypinator 0:bb348c97df44 10972 #define RCC_CFGR_I2SSRC_Msk (0x1U << RCC_CFGR_I2SSRC_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 10973 #define RCC_CFGR_I2SSRC RCC_CFGR_I2SSRC_Msk
lypinator 0:bb348c97df44 10974
lypinator 0:bb348c97df44 10975 #define RCC_CFGR_MCO1PRE_Pos (24U)
lypinator 0:bb348c97df44 10976 #define RCC_CFGR_MCO1PRE_Msk (0x7U << RCC_CFGR_MCO1PRE_Pos) /*!< 0x07000000 */
lypinator 0:bb348c97df44 10977 #define RCC_CFGR_MCO1PRE RCC_CFGR_MCO1PRE_Msk
lypinator 0:bb348c97df44 10978 #define RCC_CFGR_MCO1PRE_0 (0x1U << RCC_CFGR_MCO1PRE_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 10979 #define RCC_CFGR_MCO1PRE_1 (0x2U << RCC_CFGR_MCO1PRE_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 10980 #define RCC_CFGR_MCO1PRE_2 (0x4U << RCC_CFGR_MCO1PRE_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 10981
lypinator 0:bb348c97df44 10982 #define RCC_CFGR_MCO2PRE_Pos (27U)
lypinator 0:bb348c97df44 10983 #define RCC_CFGR_MCO2PRE_Msk (0x7U << RCC_CFGR_MCO2PRE_Pos) /*!< 0x38000000 */
lypinator 0:bb348c97df44 10984 #define RCC_CFGR_MCO2PRE RCC_CFGR_MCO2PRE_Msk
lypinator 0:bb348c97df44 10985 #define RCC_CFGR_MCO2PRE_0 (0x1U << RCC_CFGR_MCO2PRE_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 10986 #define RCC_CFGR_MCO2PRE_1 (0x2U << RCC_CFGR_MCO2PRE_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 10987 #define RCC_CFGR_MCO2PRE_2 (0x4U << RCC_CFGR_MCO2PRE_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 10988
lypinator 0:bb348c97df44 10989 #define RCC_CFGR_MCO2_Pos (30U)
lypinator 0:bb348c97df44 10990 #define RCC_CFGR_MCO2_Msk (0x3U << RCC_CFGR_MCO2_Pos) /*!< 0xC0000000 */
lypinator 0:bb348c97df44 10991 #define RCC_CFGR_MCO2 RCC_CFGR_MCO2_Msk
lypinator 0:bb348c97df44 10992 #define RCC_CFGR_MCO2_0 (0x1U << RCC_CFGR_MCO2_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 10993 #define RCC_CFGR_MCO2_1 (0x2U << RCC_CFGR_MCO2_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 10994
lypinator 0:bb348c97df44 10995 /******************** Bit definition for RCC_CIR register *******************/
lypinator 0:bb348c97df44 10996 #define RCC_CIR_LSIRDYF_Pos (0U)
lypinator 0:bb348c97df44 10997 #define RCC_CIR_LSIRDYF_Msk (0x1U << RCC_CIR_LSIRDYF_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 10998 #define RCC_CIR_LSIRDYF RCC_CIR_LSIRDYF_Msk
lypinator 0:bb348c97df44 10999 #define RCC_CIR_LSERDYF_Pos (1U)
lypinator 0:bb348c97df44 11000 #define RCC_CIR_LSERDYF_Msk (0x1U << RCC_CIR_LSERDYF_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 11001 #define RCC_CIR_LSERDYF RCC_CIR_LSERDYF_Msk
lypinator 0:bb348c97df44 11002 #define RCC_CIR_HSIRDYF_Pos (2U)
lypinator 0:bb348c97df44 11003 #define RCC_CIR_HSIRDYF_Msk (0x1U << RCC_CIR_HSIRDYF_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 11004 #define RCC_CIR_HSIRDYF RCC_CIR_HSIRDYF_Msk
lypinator 0:bb348c97df44 11005 #define RCC_CIR_HSERDYF_Pos (3U)
lypinator 0:bb348c97df44 11006 #define RCC_CIR_HSERDYF_Msk (0x1U << RCC_CIR_HSERDYF_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 11007 #define RCC_CIR_HSERDYF RCC_CIR_HSERDYF_Msk
lypinator 0:bb348c97df44 11008 #define RCC_CIR_PLLRDYF_Pos (4U)
lypinator 0:bb348c97df44 11009 #define RCC_CIR_PLLRDYF_Msk (0x1U << RCC_CIR_PLLRDYF_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 11010 #define RCC_CIR_PLLRDYF RCC_CIR_PLLRDYF_Msk
lypinator 0:bb348c97df44 11011 #define RCC_CIR_PLLI2SRDYF_Pos (5U)
lypinator 0:bb348c97df44 11012 #define RCC_CIR_PLLI2SRDYF_Msk (0x1U << RCC_CIR_PLLI2SRDYF_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 11013 #define RCC_CIR_PLLI2SRDYF RCC_CIR_PLLI2SRDYF_Msk
lypinator 0:bb348c97df44 11014
lypinator 0:bb348c97df44 11015 #define RCC_CIR_PLLSAIRDYF_Pos (6U)
lypinator 0:bb348c97df44 11016 #define RCC_CIR_PLLSAIRDYF_Msk (0x1U << RCC_CIR_PLLSAIRDYF_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 11017 #define RCC_CIR_PLLSAIRDYF RCC_CIR_PLLSAIRDYF_Msk
lypinator 0:bb348c97df44 11018 #define RCC_CIR_CSSF_Pos (7U)
lypinator 0:bb348c97df44 11019 #define RCC_CIR_CSSF_Msk (0x1U << RCC_CIR_CSSF_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 11020 #define RCC_CIR_CSSF RCC_CIR_CSSF_Msk
lypinator 0:bb348c97df44 11021 #define RCC_CIR_LSIRDYIE_Pos (8U)
lypinator 0:bb348c97df44 11022 #define RCC_CIR_LSIRDYIE_Msk (0x1U << RCC_CIR_LSIRDYIE_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 11023 #define RCC_CIR_LSIRDYIE RCC_CIR_LSIRDYIE_Msk
lypinator 0:bb348c97df44 11024 #define RCC_CIR_LSERDYIE_Pos (9U)
lypinator 0:bb348c97df44 11025 #define RCC_CIR_LSERDYIE_Msk (0x1U << RCC_CIR_LSERDYIE_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 11026 #define RCC_CIR_LSERDYIE RCC_CIR_LSERDYIE_Msk
lypinator 0:bb348c97df44 11027 #define RCC_CIR_HSIRDYIE_Pos (10U)
lypinator 0:bb348c97df44 11028 #define RCC_CIR_HSIRDYIE_Msk (0x1U << RCC_CIR_HSIRDYIE_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 11029 #define RCC_CIR_HSIRDYIE RCC_CIR_HSIRDYIE_Msk
lypinator 0:bb348c97df44 11030 #define RCC_CIR_HSERDYIE_Pos (11U)
lypinator 0:bb348c97df44 11031 #define RCC_CIR_HSERDYIE_Msk (0x1U << RCC_CIR_HSERDYIE_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 11032 #define RCC_CIR_HSERDYIE RCC_CIR_HSERDYIE_Msk
lypinator 0:bb348c97df44 11033 #define RCC_CIR_PLLRDYIE_Pos (12U)
lypinator 0:bb348c97df44 11034 #define RCC_CIR_PLLRDYIE_Msk (0x1U << RCC_CIR_PLLRDYIE_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 11035 #define RCC_CIR_PLLRDYIE RCC_CIR_PLLRDYIE_Msk
lypinator 0:bb348c97df44 11036 #define RCC_CIR_PLLI2SRDYIE_Pos (13U)
lypinator 0:bb348c97df44 11037 #define RCC_CIR_PLLI2SRDYIE_Msk (0x1U << RCC_CIR_PLLI2SRDYIE_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 11038 #define RCC_CIR_PLLI2SRDYIE RCC_CIR_PLLI2SRDYIE_Msk
lypinator 0:bb348c97df44 11039
lypinator 0:bb348c97df44 11040 #define RCC_CIR_PLLSAIRDYIE_Pos (14U)
lypinator 0:bb348c97df44 11041 #define RCC_CIR_PLLSAIRDYIE_Msk (0x1U << RCC_CIR_PLLSAIRDYIE_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 11042 #define RCC_CIR_PLLSAIRDYIE RCC_CIR_PLLSAIRDYIE_Msk
lypinator 0:bb348c97df44 11043 #define RCC_CIR_LSIRDYC_Pos (16U)
lypinator 0:bb348c97df44 11044 #define RCC_CIR_LSIRDYC_Msk (0x1U << RCC_CIR_LSIRDYC_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 11045 #define RCC_CIR_LSIRDYC RCC_CIR_LSIRDYC_Msk
lypinator 0:bb348c97df44 11046 #define RCC_CIR_LSERDYC_Pos (17U)
lypinator 0:bb348c97df44 11047 #define RCC_CIR_LSERDYC_Msk (0x1U << RCC_CIR_LSERDYC_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 11048 #define RCC_CIR_LSERDYC RCC_CIR_LSERDYC_Msk
lypinator 0:bb348c97df44 11049 #define RCC_CIR_HSIRDYC_Pos (18U)
lypinator 0:bb348c97df44 11050 #define RCC_CIR_HSIRDYC_Msk (0x1U << RCC_CIR_HSIRDYC_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 11051 #define RCC_CIR_HSIRDYC RCC_CIR_HSIRDYC_Msk
lypinator 0:bb348c97df44 11052 #define RCC_CIR_HSERDYC_Pos (19U)
lypinator 0:bb348c97df44 11053 #define RCC_CIR_HSERDYC_Msk (0x1U << RCC_CIR_HSERDYC_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 11054 #define RCC_CIR_HSERDYC RCC_CIR_HSERDYC_Msk
lypinator 0:bb348c97df44 11055 #define RCC_CIR_PLLRDYC_Pos (20U)
lypinator 0:bb348c97df44 11056 #define RCC_CIR_PLLRDYC_Msk (0x1U << RCC_CIR_PLLRDYC_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 11057 #define RCC_CIR_PLLRDYC RCC_CIR_PLLRDYC_Msk
lypinator 0:bb348c97df44 11058 #define RCC_CIR_PLLI2SRDYC_Pos (21U)
lypinator 0:bb348c97df44 11059 #define RCC_CIR_PLLI2SRDYC_Msk (0x1U << RCC_CIR_PLLI2SRDYC_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 11060 #define RCC_CIR_PLLI2SRDYC RCC_CIR_PLLI2SRDYC_Msk
lypinator 0:bb348c97df44 11061 #define RCC_CIR_PLLSAIRDYC_Pos (22U)
lypinator 0:bb348c97df44 11062 #define RCC_CIR_PLLSAIRDYC_Msk (0x1U << RCC_CIR_PLLSAIRDYC_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 11063 #define RCC_CIR_PLLSAIRDYC RCC_CIR_PLLSAIRDYC_Msk
lypinator 0:bb348c97df44 11064
lypinator 0:bb348c97df44 11065 #define RCC_CIR_CSSC_Pos (23U)
lypinator 0:bb348c97df44 11066 #define RCC_CIR_CSSC_Msk (0x1U << RCC_CIR_CSSC_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 11067 #define RCC_CIR_CSSC RCC_CIR_CSSC_Msk
lypinator 0:bb348c97df44 11068
lypinator 0:bb348c97df44 11069 /******************** Bit definition for RCC_AHB1RSTR register **************/
lypinator 0:bb348c97df44 11070 #define RCC_AHB1RSTR_GPIOARST_Pos (0U)
lypinator 0:bb348c97df44 11071 #define RCC_AHB1RSTR_GPIOARST_Msk (0x1U << RCC_AHB1RSTR_GPIOARST_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 11072 #define RCC_AHB1RSTR_GPIOARST RCC_AHB1RSTR_GPIOARST_Msk
lypinator 0:bb348c97df44 11073 #define RCC_AHB1RSTR_GPIOBRST_Pos (1U)
lypinator 0:bb348c97df44 11074 #define RCC_AHB1RSTR_GPIOBRST_Msk (0x1U << RCC_AHB1RSTR_GPIOBRST_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 11075 #define RCC_AHB1RSTR_GPIOBRST RCC_AHB1RSTR_GPIOBRST_Msk
lypinator 0:bb348c97df44 11076 #define RCC_AHB1RSTR_GPIOCRST_Pos (2U)
lypinator 0:bb348c97df44 11077 #define RCC_AHB1RSTR_GPIOCRST_Msk (0x1U << RCC_AHB1RSTR_GPIOCRST_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 11078 #define RCC_AHB1RSTR_GPIOCRST RCC_AHB1RSTR_GPIOCRST_Msk
lypinator 0:bb348c97df44 11079 #define RCC_AHB1RSTR_GPIODRST_Pos (3U)
lypinator 0:bb348c97df44 11080 #define RCC_AHB1RSTR_GPIODRST_Msk (0x1U << RCC_AHB1RSTR_GPIODRST_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 11081 #define RCC_AHB1RSTR_GPIODRST RCC_AHB1RSTR_GPIODRST_Msk
lypinator 0:bb348c97df44 11082 #define RCC_AHB1RSTR_GPIOERST_Pos (4U)
lypinator 0:bb348c97df44 11083 #define RCC_AHB1RSTR_GPIOERST_Msk (0x1U << RCC_AHB1RSTR_GPIOERST_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 11084 #define RCC_AHB1RSTR_GPIOERST RCC_AHB1RSTR_GPIOERST_Msk
lypinator 0:bb348c97df44 11085 #define RCC_AHB1RSTR_GPIOFRST_Pos (5U)
lypinator 0:bb348c97df44 11086 #define RCC_AHB1RSTR_GPIOFRST_Msk (0x1U << RCC_AHB1RSTR_GPIOFRST_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 11087 #define RCC_AHB1RSTR_GPIOFRST RCC_AHB1RSTR_GPIOFRST_Msk
lypinator 0:bb348c97df44 11088 #define RCC_AHB1RSTR_GPIOGRST_Pos (6U)
lypinator 0:bb348c97df44 11089 #define RCC_AHB1RSTR_GPIOGRST_Msk (0x1U << RCC_AHB1RSTR_GPIOGRST_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 11090 #define RCC_AHB1RSTR_GPIOGRST RCC_AHB1RSTR_GPIOGRST_Msk
lypinator 0:bb348c97df44 11091 #define RCC_AHB1RSTR_GPIOHRST_Pos (7U)
lypinator 0:bb348c97df44 11092 #define RCC_AHB1RSTR_GPIOHRST_Msk (0x1U << RCC_AHB1RSTR_GPIOHRST_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 11093 #define RCC_AHB1RSTR_GPIOHRST RCC_AHB1RSTR_GPIOHRST_Msk
lypinator 0:bb348c97df44 11094 #define RCC_AHB1RSTR_GPIOIRST_Pos (8U)
lypinator 0:bb348c97df44 11095 #define RCC_AHB1RSTR_GPIOIRST_Msk (0x1U << RCC_AHB1RSTR_GPIOIRST_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 11096 #define RCC_AHB1RSTR_GPIOIRST RCC_AHB1RSTR_GPIOIRST_Msk
lypinator 0:bb348c97df44 11097 #define RCC_AHB1RSTR_GPIOJRST_Pos (9U)
lypinator 0:bb348c97df44 11098 #define RCC_AHB1RSTR_GPIOJRST_Msk (0x1U << RCC_AHB1RSTR_GPIOJRST_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 11099 #define RCC_AHB1RSTR_GPIOJRST RCC_AHB1RSTR_GPIOJRST_Msk
lypinator 0:bb348c97df44 11100 #define RCC_AHB1RSTR_GPIOKRST_Pos (10U)
lypinator 0:bb348c97df44 11101 #define RCC_AHB1RSTR_GPIOKRST_Msk (0x1U << RCC_AHB1RSTR_GPIOKRST_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 11102 #define RCC_AHB1RSTR_GPIOKRST RCC_AHB1RSTR_GPIOKRST_Msk
lypinator 0:bb348c97df44 11103 #define RCC_AHB1RSTR_CRCRST_Pos (12U)
lypinator 0:bb348c97df44 11104 #define RCC_AHB1RSTR_CRCRST_Msk (0x1U << RCC_AHB1RSTR_CRCRST_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 11105 #define RCC_AHB1RSTR_CRCRST RCC_AHB1RSTR_CRCRST_Msk
lypinator 0:bb348c97df44 11106 #define RCC_AHB1RSTR_DMA1RST_Pos (21U)
lypinator 0:bb348c97df44 11107 #define RCC_AHB1RSTR_DMA1RST_Msk (0x1U << RCC_AHB1RSTR_DMA1RST_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 11108 #define RCC_AHB1RSTR_DMA1RST RCC_AHB1RSTR_DMA1RST_Msk
lypinator 0:bb348c97df44 11109 #define RCC_AHB1RSTR_DMA2RST_Pos (22U)
lypinator 0:bb348c97df44 11110 #define RCC_AHB1RSTR_DMA2RST_Msk (0x1U << RCC_AHB1RSTR_DMA2RST_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 11111 #define RCC_AHB1RSTR_DMA2RST RCC_AHB1RSTR_DMA2RST_Msk
lypinator 0:bb348c97df44 11112 #define RCC_AHB1RSTR_DMA2DRST_Pos (23U)
lypinator 0:bb348c97df44 11113 #define RCC_AHB1RSTR_DMA2DRST_Msk (0x1U << RCC_AHB1RSTR_DMA2DRST_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 11114 #define RCC_AHB1RSTR_DMA2DRST RCC_AHB1RSTR_DMA2DRST_Msk
lypinator 0:bb348c97df44 11115 #define RCC_AHB1RSTR_ETHMACRST_Pos (25U)
lypinator 0:bb348c97df44 11116 #define RCC_AHB1RSTR_ETHMACRST_Msk (0x1U << RCC_AHB1RSTR_ETHMACRST_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 11117 #define RCC_AHB1RSTR_ETHMACRST RCC_AHB1RSTR_ETHMACRST_Msk
lypinator 0:bb348c97df44 11118 #define RCC_AHB1RSTR_OTGHRST_Pos (29U)
lypinator 0:bb348c97df44 11119 #define RCC_AHB1RSTR_OTGHRST_Msk (0x1U << RCC_AHB1RSTR_OTGHRST_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 11120 #define RCC_AHB1RSTR_OTGHRST RCC_AHB1RSTR_OTGHRST_Msk
lypinator 0:bb348c97df44 11121
lypinator 0:bb348c97df44 11122 /******************** Bit definition for RCC_AHB2RSTR register **************/
lypinator 0:bb348c97df44 11123 #define RCC_AHB2RSTR_DCMIRST_Pos (0U)
lypinator 0:bb348c97df44 11124 #define RCC_AHB2RSTR_DCMIRST_Msk (0x1U << RCC_AHB2RSTR_DCMIRST_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 11125 #define RCC_AHB2RSTR_DCMIRST RCC_AHB2RSTR_DCMIRST_Msk
lypinator 0:bb348c97df44 11126 #define RCC_AHB2RSTR_CRYPRST_Pos (4U)
lypinator 0:bb348c97df44 11127 #define RCC_AHB2RSTR_CRYPRST_Msk (0x1U << RCC_AHB2RSTR_CRYPRST_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 11128 #define RCC_AHB2RSTR_CRYPRST RCC_AHB2RSTR_CRYPRST_Msk
lypinator 0:bb348c97df44 11129 #define RCC_AHB2RSTR_HASHRST_Pos (5U)
lypinator 0:bb348c97df44 11130 #define RCC_AHB2RSTR_HASHRST_Msk (0x1U << RCC_AHB2RSTR_HASHRST_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 11131 #define RCC_AHB2RSTR_HASHRST RCC_AHB2RSTR_HASHRST_Msk
lypinator 0:bb348c97df44 11132 /* maintained for legacy purpose */
lypinator 0:bb348c97df44 11133 #define RCC_AHB2RSTR_HSAHRST RCC_AHB2RSTR_HASHRST
lypinator 0:bb348c97df44 11134 #define RCC_AHB2RSTR_RNGRST_Pos (6U)
lypinator 0:bb348c97df44 11135 #define RCC_AHB2RSTR_RNGRST_Msk (0x1U << RCC_AHB2RSTR_RNGRST_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 11136 #define RCC_AHB2RSTR_RNGRST RCC_AHB2RSTR_RNGRST_Msk
lypinator 0:bb348c97df44 11137 #define RCC_AHB2RSTR_OTGFSRST_Pos (7U)
lypinator 0:bb348c97df44 11138 #define RCC_AHB2RSTR_OTGFSRST_Msk (0x1U << RCC_AHB2RSTR_OTGFSRST_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 11139 #define RCC_AHB2RSTR_OTGFSRST RCC_AHB2RSTR_OTGFSRST_Msk
lypinator 0:bb348c97df44 11140 /******************** Bit definition for RCC_AHB3RSTR register **************/
lypinator 0:bb348c97df44 11141 #define RCC_AHB3RSTR_FMCRST_Pos (0U)
lypinator 0:bb348c97df44 11142 #define RCC_AHB3RSTR_FMCRST_Msk (0x1U << RCC_AHB3RSTR_FMCRST_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 11143 #define RCC_AHB3RSTR_FMCRST RCC_AHB3RSTR_FMCRST_Msk
lypinator 0:bb348c97df44 11144
lypinator 0:bb348c97df44 11145
lypinator 0:bb348c97df44 11146 /******************** Bit definition for RCC_APB1RSTR register **************/
lypinator 0:bb348c97df44 11147 #define RCC_APB1RSTR_TIM2RST_Pos (0U)
lypinator 0:bb348c97df44 11148 #define RCC_APB1RSTR_TIM2RST_Msk (0x1U << RCC_APB1RSTR_TIM2RST_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 11149 #define RCC_APB1RSTR_TIM2RST RCC_APB1RSTR_TIM2RST_Msk
lypinator 0:bb348c97df44 11150 #define RCC_APB1RSTR_TIM3RST_Pos (1U)
lypinator 0:bb348c97df44 11151 #define RCC_APB1RSTR_TIM3RST_Msk (0x1U << RCC_APB1RSTR_TIM3RST_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 11152 #define RCC_APB1RSTR_TIM3RST RCC_APB1RSTR_TIM3RST_Msk
lypinator 0:bb348c97df44 11153 #define RCC_APB1RSTR_TIM4RST_Pos (2U)
lypinator 0:bb348c97df44 11154 #define RCC_APB1RSTR_TIM4RST_Msk (0x1U << RCC_APB1RSTR_TIM4RST_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 11155 #define RCC_APB1RSTR_TIM4RST RCC_APB1RSTR_TIM4RST_Msk
lypinator 0:bb348c97df44 11156 #define RCC_APB1RSTR_TIM5RST_Pos (3U)
lypinator 0:bb348c97df44 11157 #define RCC_APB1RSTR_TIM5RST_Msk (0x1U << RCC_APB1RSTR_TIM5RST_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 11158 #define RCC_APB1RSTR_TIM5RST RCC_APB1RSTR_TIM5RST_Msk
lypinator 0:bb348c97df44 11159 #define RCC_APB1RSTR_TIM6RST_Pos (4U)
lypinator 0:bb348c97df44 11160 #define RCC_APB1RSTR_TIM6RST_Msk (0x1U << RCC_APB1RSTR_TIM6RST_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 11161 #define RCC_APB1RSTR_TIM6RST RCC_APB1RSTR_TIM6RST_Msk
lypinator 0:bb348c97df44 11162 #define RCC_APB1RSTR_TIM7RST_Pos (5U)
lypinator 0:bb348c97df44 11163 #define RCC_APB1RSTR_TIM7RST_Msk (0x1U << RCC_APB1RSTR_TIM7RST_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 11164 #define RCC_APB1RSTR_TIM7RST RCC_APB1RSTR_TIM7RST_Msk
lypinator 0:bb348c97df44 11165 #define RCC_APB1RSTR_TIM12RST_Pos (6U)
lypinator 0:bb348c97df44 11166 #define RCC_APB1RSTR_TIM12RST_Msk (0x1U << RCC_APB1RSTR_TIM12RST_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 11167 #define RCC_APB1RSTR_TIM12RST RCC_APB1RSTR_TIM12RST_Msk
lypinator 0:bb348c97df44 11168 #define RCC_APB1RSTR_TIM13RST_Pos (7U)
lypinator 0:bb348c97df44 11169 #define RCC_APB1RSTR_TIM13RST_Msk (0x1U << RCC_APB1RSTR_TIM13RST_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 11170 #define RCC_APB1RSTR_TIM13RST RCC_APB1RSTR_TIM13RST_Msk
lypinator 0:bb348c97df44 11171 #define RCC_APB1RSTR_TIM14RST_Pos (8U)
lypinator 0:bb348c97df44 11172 #define RCC_APB1RSTR_TIM14RST_Msk (0x1U << RCC_APB1RSTR_TIM14RST_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 11173 #define RCC_APB1RSTR_TIM14RST RCC_APB1RSTR_TIM14RST_Msk
lypinator 0:bb348c97df44 11174 #define RCC_APB1RSTR_WWDGRST_Pos (11U)
lypinator 0:bb348c97df44 11175 #define RCC_APB1RSTR_WWDGRST_Msk (0x1U << RCC_APB1RSTR_WWDGRST_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 11176 #define RCC_APB1RSTR_WWDGRST RCC_APB1RSTR_WWDGRST_Msk
lypinator 0:bb348c97df44 11177 #define RCC_APB1RSTR_SPI2RST_Pos (14U)
lypinator 0:bb348c97df44 11178 #define RCC_APB1RSTR_SPI2RST_Msk (0x1U << RCC_APB1RSTR_SPI2RST_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 11179 #define RCC_APB1RSTR_SPI2RST RCC_APB1RSTR_SPI2RST_Msk
lypinator 0:bb348c97df44 11180 #define RCC_APB1RSTR_SPI3RST_Pos (15U)
lypinator 0:bb348c97df44 11181 #define RCC_APB1RSTR_SPI3RST_Msk (0x1U << RCC_APB1RSTR_SPI3RST_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 11182 #define RCC_APB1RSTR_SPI3RST RCC_APB1RSTR_SPI3RST_Msk
lypinator 0:bb348c97df44 11183 #define RCC_APB1RSTR_USART2RST_Pos (17U)
lypinator 0:bb348c97df44 11184 #define RCC_APB1RSTR_USART2RST_Msk (0x1U << RCC_APB1RSTR_USART2RST_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 11185 #define RCC_APB1RSTR_USART2RST RCC_APB1RSTR_USART2RST_Msk
lypinator 0:bb348c97df44 11186 #define RCC_APB1RSTR_USART3RST_Pos (18U)
lypinator 0:bb348c97df44 11187 #define RCC_APB1RSTR_USART3RST_Msk (0x1U << RCC_APB1RSTR_USART3RST_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 11188 #define RCC_APB1RSTR_USART3RST RCC_APB1RSTR_USART3RST_Msk
lypinator 0:bb348c97df44 11189 #define RCC_APB1RSTR_UART4RST_Pos (19U)
lypinator 0:bb348c97df44 11190 #define RCC_APB1RSTR_UART4RST_Msk (0x1U << RCC_APB1RSTR_UART4RST_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 11191 #define RCC_APB1RSTR_UART4RST RCC_APB1RSTR_UART4RST_Msk
lypinator 0:bb348c97df44 11192 #define RCC_APB1RSTR_UART5RST_Pos (20U)
lypinator 0:bb348c97df44 11193 #define RCC_APB1RSTR_UART5RST_Msk (0x1U << RCC_APB1RSTR_UART5RST_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 11194 #define RCC_APB1RSTR_UART5RST RCC_APB1RSTR_UART5RST_Msk
lypinator 0:bb348c97df44 11195 #define RCC_APB1RSTR_I2C1RST_Pos (21U)
lypinator 0:bb348c97df44 11196 #define RCC_APB1RSTR_I2C1RST_Msk (0x1U << RCC_APB1RSTR_I2C1RST_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 11197 #define RCC_APB1RSTR_I2C1RST RCC_APB1RSTR_I2C1RST_Msk
lypinator 0:bb348c97df44 11198 #define RCC_APB1RSTR_I2C2RST_Pos (22U)
lypinator 0:bb348c97df44 11199 #define RCC_APB1RSTR_I2C2RST_Msk (0x1U << RCC_APB1RSTR_I2C2RST_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 11200 #define RCC_APB1RSTR_I2C2RST RCC_APB1RSTR_I2C2RST_Msk
lypinator 0:bb348c97df44 11201 #define RCC_APB1RSTR_I2C3RST_Pos (23U)
lypinator 0:bb348c97df44 11202 #define RCC_APB1RSTR_I2C3RST_Msk (0x1U << RCC_APB1RSTR_I2C3RST_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 11203 #define RCC_APB1RSTR_I2C3RST RCC_APB1RSTR_I2C3RST_Msk
lypinator 0:bb348c97df44 11204 #define RCC_APB1RSTR_CAN1RST_Pos (25U)
lypinator 0:bb348c97df44 11205 #define RCC_APB1RSTR_CAN1RST_Msk (0x1U << RCC_APB1RSTR_CAN1RST_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 11206 #define RCC_APB1RSTR_CAN1RST RCC_APB1RSTR_CAN1RST_Msk
lypinator 0:bb348c97df44 11207 #define RCC_APB1RSTR_CAN2RST_Pos (26U)
lypinator 0:bb348c97df44 11208 #define RCC_APB1RSTR_CAN2RST_Msk (0x1U << RCC_APB1RSTR_CAN2RST_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 11209 #define RCC_APB1RSTR_CAN2RST RCC_APB1RSTR_CAN2RST_Msk
lypinator 0:bb348c97df44 11210 #define RCC_APB1RSTR_PWRRST_Pos (28U)
lypinator 0:bb348c97df44 11211 #define RCC_APB1RSTR_PWRRST_Msk (0x1U << RCC_APB1RSTR_PWRRST_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 11212 #define RCC_APB1RSTR_PWRRST RCC_APB1RSTR_PWRRST_Msk
lypinator 0:bb348c97df44 11213 #define RCC_APB1RSTR_DACRST_Pos (29U)
lypinator 0:bb348c97df44 11214 #define RCC_APB1RSTR_DACRST_Msk (0x1U << RCC_APB1RSTR_DACRST_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 11215 #define RCC_APB1RSTR_DACRST RCC_APB1RSTR_DACRST_Msk
lypinator 0:bb348c97df44 11216 #define RCC_APB1RSTR_UART7RST_Pos (30U)
lypinator 0:bb348c97df44 11217 #define RCC_APB1RSTR_UART7RST_Msk (0x1U << RCC_APB1RSTR_UART7RST_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 11218 #define RCC_APB1RSTR_UART7RST RCC_APB1RSTR_UART7RST_Msk
lypinator 0:bb348c97df44 11219 #define RCC_APB1RSTR_UART8RST_Pos (31U)
lypinator 0:bb348c97df44 11220 #define RCC_APB1RSTR_UART8RST_Msk (0x1U << RCC_APB1RSTR_UART8RST_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 11221 #define RCC_APB1RSTR_UART8RST RCC_APB1RSTR_UART8RST_Msk
lypinator 0:bb348c97df44 11222
lypinator 0:bb348c97df44 11223 /******************** Bit definition for RCC_APB2RSTR register **************/
lypinator 0:bb348c97df44 11224 #define RCC_APB2RSTR_TIM1RST_Pos (0U)
lypinator 0:bb348c97df44 11225 #define RCC_APB2RSTR_TIM1RST_Msk (0x1U << RCC_APB2RSTR_TIM1RST_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 11226 #define RCC_APB2RSTR_TIM1RST RCC_APB2RSTR_TIM1RST_Msk
lypinator 0:bb348c97df44 11227 #define RCC_APB2RSTR_TIM8RST_Pos (1U)
lypinator 0:bb348c97df44 11228 #define RCC_APB2RSTR_TIM8RST_Msk (0x1U << RCC_APB2RSTR_TIM8RST_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 11229 #define RCC_APB2RSTR_TIM8RST RCC_APB2RSTR_TIM8RST_Msk
lypinator 0:bb348c97df44 11230 #define RCC_APB2RSTR_USART1RST_Pos (4U)
lypinator 0:bb348c97df44 11231 #define RCC_APB2RSTR_USART1RST_Msk (0x1U << RCC_APB2RSTR_USART1RST_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 11232 #define RCC_APB2RSTR_USART1RST RCC_APB2RSTR_USART1RST_Msk
lypinator 0:bb348c97df44 11233 #define RCC_APB2RSTR_USART6RST_Pos (5U)
lypinator 0:bb348c97df44 11234 #define RCC_APB2RSTR_USART6RST_Msk (0x1U << RCC_APB2RSTR_USART6RST_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 11235 #define RCC_APB2RSTR_USART6RST RCC_APB2RSTR_USART6RST_Msk
lypinator 0:bb348c97df44 11236 #define RCC_APB2RSTR_ADCRST_Pos (8U)
lypinator 0:bb348c97df44 11237 #define RCC_APB2RSTR_ADCRST_Msk (0x1U << RCC_APB2RSTR_ADCRST_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 11238 #define RCC_APB2RSTR_ADCRST RCC_APB2RSTR_ADCRST_Msk
lypinator 0:bb348c97df44 11239 #define RCC_APB2RSTR_SDIORST_Pos (11U)
lypinator 0:bb348c97df44 11240 #define RCC_APB2RSTR_SDIORST_Msk (0x1U << RCC_APB2RSTR_SDIORST_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 11241 #define RCC_APB2RSTR_SDIORST RCC_APB2RSTR_SDIORST_Msk
lypinator 0:bb348c97df44 11242 #define RCC_APB2RSTR_SPI1RST_Pos (12U)
lypinator 0:bb348c97df44 11243 #define RCC_APB2RSTR_SPI1RST_Msk (0x1U << RCC_APB2RSTR_SPI1RST_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 11244 #define RCC_APB2RSTR_SPI1RST RCC_APB2RSTR_SPI1RST_Msk
lypinator 0:bb348c97df44 11245 #define RCC_APB2RSTR_SPI4RST_Pos (13U)
lypinator 0:bb348c97df44 11246 #define RCC_APB2RSTR_SPI4RST_Msk (0x1U << RCC_APB2RSTR_SPI4RST_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 11247 #define RCC_APB2RSTR_SPI4RST RCC_APB2RSTR_SPI4RST_Msk
lypinator 0:bb348c97df44 11248 #define RCC_APB2RSTR_SYSCFGRST_Pos (14U)
lypinator 0:bb348c97df44 11249 #define RCC_APB2RSTR_SYSCFGRST_Msk (0x1U << RCC_APB2RSTR_SYSCFGRST_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 11250 #define RCC_APB2RSTR_SYSCFGRST RCC_APB2RSTR_SYSCFGRST_Msk
lypinator 0:bb348c97df44 11251 #define RCC_APB2RSTR_TIM9RST_Pos (16U)
lypinator 0:bb348c97df44 11252 #define RCC_APB2RSTR_TIM9RST_Msk (0x1U << RCC_APB2RSTR_TIM9RST_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 11253 #define RCC_APB2RSTR_TIM9RST RCC_APB2RSTR_TIM9RST_Msk
lypinator 0:bb348c97df44 11254 #define RCC_APB2RSTR_TIM10RST_Pos (17U)
lypinator 0:bb348c97df44 11255 #define RCC_APB2RSTR_TIM10RST_Msk (0x1U << RCC_APB2RSTR_TIM10RST_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 11256 #define RCC_APB2RSTR_TIM10RST RCC_APB2RSTR_TIM10RST_Msk
lypinator 0:bb348c97df44 11257 #define RCC_APB2RSTR_TIM11RST_Pos (18U)
lypinator 0:bb348c97df44 11258 #define RCC_APB2RSTR_TIM11RST_Msk (0x1U << RCC_APB2RSTR_TIM11RST_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 11259 #define RCC_APB2RSTR_TIM11RST RCC_APB2RSTR_TIM11RST_Msk
lypinator 0:bb348c97df44 11260 #define RCC_APB2RSTR_SPI5RST_Pos (20U)
lypinator 0:bb348c97df44 11261 #define RCC_APB2RSTR_SPI5RST_Msk (0x1U << RCC_APB2RSTR_SPI5RST_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 11262 #define RCC_APB2RSTR_SPI5RST RCC_APB2RSTR_SPI5RST_Msk
lypinator 0:bb348c97df44 11263 #define RCC_APB2RSTR_SPI6RST_Pos (21U)
lypinator 0:bb348c97df44 11264 #define RCC_APB2RSTR_SPI6RST_Msk (0x1U << RCC_APB2RSTR_SPI6RST_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 11265 #define RCC_APB2RSTR_SPI6RST RCC_APB2RSTR_SPI6RST_Msk
lypinator 0:bb348c97df44 11266 #define RCC_APB2RSTR_SAI1RST_Pos (22U)
lypinator 0:bb348c97df44 11267 #define RCC_APB2RSTR_SAI1RST_Msk (0x1U << RCC_APB2RSTR_SAI1RST_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 11268 #define RCC_APB2RSTR_SAI1RST RCC_APB2RSTR_SAI1RST_Msk
lypinator 0:bb348c97df44 11269 #define RCC_APB2RSTR_LTDCRST_Pos (26U)
lypinator 0:bb348c97df44 11270 #define RCC_APB2RSTR_LTDCRST_Msk (0x1U << RCC_APB2RSTR_LTDCRST_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 11271 #define RCC_APB2RSTR_LTDCRST RCC_APB2RSTR_LTDCRST_Msk
lypinator 0:bb348c97df44 11272
lypinator 0:bb348c97df44 11273 /* Old SPI1RST bit definition, maintained for legacy purpose */
lypinator 0:bb348c97df44 11274 #define RCC_APB2RSTR_SPI1 RCC_APB2RSTR_SPI1RST
lypinator 0:bb348c97df44 11275
lypinator 0:bb348c97df44 11276 /******************** Bit definition for RCC_AHB1ENR register ***************/
lypinator 0:bb348c97df44 11277 #define RCC_AHB1ENR_GPIOAEN_Pos (0U)
lypinator 0:bb348c97df44 11278 #define RCC_AHB1ENR_GPIOAEN_Msk (0x1U << RCC_AHB1ENR_GPIOAEN_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 11279 #define RCC_AHB1ENR_GPIOAEN RCC_AHB1ENR_GPIOAEN_Msk
lypinator 0:bb348c97df44 11280 #define RCC_AHB1ENR_GPIOBEN_Pos (1U)
lypinator 0:bb348c97df44 11281 #define RCC_AHB1ENR_GPIOBEN_Msk (0x1U << RCC_AHB1ENR_GPIOBEN_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 11282 #define RCC_AHB1ENR_GPIOBEN RCC_AHB1ENR_GPIOBEN_Msk
lypinator 0:bb348c97df44 11283 #define RCC_AHB1ENR_GPIOCEN_Pos (2U)
lypinator 0:bb348c97df44 11284 #define RCC_AHB1ENR_GPIOCEN_Msk (0x1U << RCC_AHB1ENR_GPIOCEN_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 11285 #define RCC_AHB1ENR_GPIOCEN RCC_AHB1ENR_GPIOCEN_Msk
lypinator 0:bb348c97df44 11286 #define RCC_AHB1ENR_GPIODEN_Pos (3U)
lypinator 0:bb348c97df44 11287 #define RCC_AHB1ENR_GPIODEN_Msk (0x1U << RCC_AHB1ENR_GPIODEN_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 11288 #define RCC_AHB1ENR_GPIODEN RCC_AHB1ENR_GPIODEN_Msk
lypinator 0:bb348c97df44 11289 #define RCC_AHB1ENR_GPIOEEN_Pos (4U)
lypinator 0:bb348c97df44 11290 #define RCC_AHB1ENR_GPIOEEN_Msk (0x1U << RCC_AHB1ENR_GPIOEEN_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 11291 #define RCC_AHB1ENR_GPIOEEN RCC_AHB1ENR_GPIOEEN_Msk
lypinator 0:bb348c97df44 11292 #define RCC_AHB1ENR_GPIOFEN_Pos (5U)
lypinator 0:bb348c97df44 11293 #define RCC_AHB1ENR_GPIOFEN_Msk (0x1U << RCC_AHB1ENR_GPIOFEN_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 11294 #define RCC_AHB1ENR_GPIOFEN RCC_AHB1ENR_GPIOFEN_Msk
lypinator 0:bb348c97df44 11295 #define RCC_AHB1ENR_GPIOGEN_Pos (6U)
lypinator 0:bb348c97df44 11296 #define RCC_AHB1ENR_GPIOGEN_Msk (0x1U << RCC_AHB1ENR_GPIOGEN_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 11297 #define RCC_AHB1ENR_GPIOGEN RCC_AHB1ENR_GPIOGEN_Msk
lypinator 0:bb348c97df44 11298 #define RCC_AHB1ENR_GPIOHEN_Pos (7U)
lypinator 0:bb348c97df44 11299 #define RCC_AHB1ENR_GPIOHEN_Msk (0x1U << RCC_AHB1ENR_GPIOHEN_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 11300 #define RCC_AHB1ENR_GPIOHEN RCC_AHB1ENR_GPIOHEN_Msk
lypinator 0:bb348c97df44 11301 #define RCC_AHB1ENR_GPIOIEN_Pos (8U)
lypinator 0:bb348c97df44 11302 #define RCC_AHB1ENR_GPIOIEN_Msk (0x1U << RCC_AHB1ENR_GPIOIEN_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 11303 #define RCC_AHB1ENR_GPIOIEN RCC_AHB1ENR_GPIOIEN_Msk
lypinator 0:bb348c97df44 11304 #define RCC_AHB1ENR_GPIOJEN_Pos (9U)
lypinator 0:bb348c97df44 11305 #define RCC_AHB1ENR_GPIOJEN_Msk (0x1U << RCC_AHB1ENR_GPIOJEN_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 11306 #define RCC_AHB1ENR_GPIOJEN RCC_AHB1ENR_GPIOJEN_Msk
lypinator 0:bb348c97df44 11307 #define RCC_AHB1ENR_GPIOKEN_Pos (10U)
lypinator 0:bb348c97df44 11308 #define RCC_AHB1ENR_GPIOKEN_Msk (0x1U << RCC_AHB1ENR_GPIOKEN_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 11309 #define RCC_AHB1ENR_GPIOKEN RCC_AHB1ENR_GPIOKEN_Msk
lypinator 0:bb348c97df44 11310 #define RCC_AHB1ENR_CRCEN_Pos (12U)
lypinator 0:bb348c97df44 11311 #define RCC_AHB1ENR_CRCEN_Msk (0x1U << RCC_AHB1ENR_CRCEN_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 11312 #define RCC_AHB1ENR_CRCEN RCC_AHB1ENR_CRCEN_Msk
lypinator 0:bb348c97df44 11313 #define RCC_AHB1ENR_BKPSRAMEN_Pos (18U)
lypinator 0:bb348c97df44 11314 #define RCC_AHB1ENR_BKPSRAMEN_Msk (0x1U << RCC_AHB1ENR_BKPSRAMEN_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 11315 #define RCC_AHB1ENR_BKPSRAMEN RCC_AHB1ENR_BKPSRAMEN_Msk
lypinator 0:bb348c97df44 11316 #define RCC_AHB1ENR_CCMDATARAMEN_Pos (20U)
lypinator 0:bb348c97df44 11317 #define RCC_AHB1ENR_CCMDATARAMEN_Msk (0x1U << RCC_AHB1ENR_CCMDATARAMEN_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 11318 #define RCC_AHB1ENR_CCMDATARAMEN RCC_AHB1ENR_CCMDATARAMEN_Msk
lypinator 0:bb348c97df44 11319 #define RCC_AHB1ENR_DMA1EN_Pos (21U)
lypinator 0:bb348c97df44 11320 #define RCC_AHB1ENR_DMA1EN_Msk (0x1U << RCC_AHB1ENR_DMA1EN_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 11321 #define RCC_AHB1ENR_DMA1EN RCC_AHB1ENR_DMA1EN_Msk
lypinator 0:bb348c97df44 11322 #define RCC_AHB1ENR_DMA2EN_Pos (22U)
lypinator 0:bb348c97df44 11323 #define RCC_AHB1ENR_DMA2EN_Msk (0x1U << RCC_AHB1ENR_DMA2EN_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 11324 #define RCC_AHB1ENR_DMA2EN RCC_AHB1ENR_DMA2EN_Msk
lypinator 0:bb348c97df44 11325 #define RCC_AHB1ENR_DMA2DEN_Pos (23U)
lypinator 0:bb348c97df44 11326 #define RCC_AHB1ENR_DMA2DEN_Msk (0x1U << RCC_AHB1ENR_DMA2DEN_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 11327 #define RCC_AHB1ENR_DMA2DEN RCC_AHB1ENR_DMA2DEN_Msk
lypinator 0:bb348c97df44 11328 #define RCC_AHB1ENR_ETHMACEN_Pos (25U)
lypinator 0:bb348c97df44 11329 #define RCC_AHB1ENR_ETHMACEN_Msk (0x1U << RCC_AHB1ENR_ETHMACEN_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 11330 #define RCC_AHB1ENR_ETHMACEN RCC_AHB1ENR_ETHMACEN_Msk
lypinator 0:bb348c97df44 11331 #define RCC_AHB1ENR_ETHMACTXEN_Pos (26U)
lypinator 0:bb348c97df44 11332 #define RCC_AHB1ENR_ETHMACTXEN_Msk (0x1U << RCC_AHB1ENR_ETHMACTXEN_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 11333 #define RCC_AHB1ENR_ETHMACTXEN RCC_AHB1ENR_ETHMACTXEN_Msk
lypinator 0:bb348c97df44 11334 #define RCC_AHB1ENR_ETHMACRXEN_Pos (27U)
lypinator 0:bb348c97df44 11335 #define RCC_AHB1ENR_ETHMACRXEN_Msk (0x1U << RCC_AHB1ENR_ETHMACRXEN_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 11336 #define RCC_AHB1ENR_ETHMACRXEN RCC_AHB1ENR_ETHMACRXEN_Msk
lypinator 0:bb348c97df44 11337 #define RCC_AHB1ENR_ETHMACPTPEN_Pos (28U)
lypinator 0:bb348c97df44 11338 #define RCC_AHB1ENR_ETHMACPTPEN_Msk (0x1U << RCC_AHB1ENR_ETHMACPTPEN_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 11339 #define RCC_AHB1ENR_ETHMACPTPEN RCC_AHB1ENR_ETHMACPTPEN_Msk
lypinator 0:bb348c97df44 11340 #define RCC_AHB1ENR_OTGHSEN_Pos (29U)
lypinator 0:bb348c97df44 11341 #define RCC_AHB1ENR_OTGHSEN_Msk (0x1U << RCC_AHB1ENR_OTGHSEN_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 11342 #define RCC_AHB1ENR_OTGHSEN RCC_AHB1ENR_OTGHSEN_Msk
lypinator 0:bb348c97df44 11343 #define RCC_AHB1ENR_OTGHSULPIEN_Pos (30U)
lypinator 0:bb348c97df44 11344 #define RCC_AHB1ENR_OTGHSULPIEN_Msk (0x1U << RCC_AHB1ENR_OTGHSULPIEN_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 11345 #define RCC_AHB1ENR_OTGHSULPIEN RCC_AHB1ENR_OTGHSULPIEN_Msk
lypinator 0:bb348c97df44 11346 /******************** Bit definition for RCC_AHB2ENR register ***************/
lypinator 0:bb348c97df44 11347 /*
lypinator 0:bb348c97df44 11348 * @brief Specific device feature definitions (not present on all devices in the STM32F4 serie)
lypinator 0:bb348c97df44 11349 */
lypinator 0:bb348c97df44 11350 #define RCC_AHB2_SUPPORT /*!< AHB2 Bus is supported */
lypinator 0:bb348c97df44 11351
lypinator 0:bb348c97df44 11352 #define RCC_AHB2ENR_DCMIEN_Pos (0U)
lypinator 0:bb348c97df44 11353 #define RCC_AHB2ENR_DCMIEN_Msk (0x1U << RCC_AHB2ENR_DCMIEN_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 11354 #define RCC_AHB2ENR_DCMIEN RCC_AHB2ENR_DCMIEN_Msk
lypinator 0:bb348c97df44 11355 #define RCC_AHB2ENR_CRYPEN_Pos (4U)
lypinator 0:bb348c97df44 11356 #define RCC_AHB2ENR_CRYPEN_Msk (0x1U << RCC_AHB2ENR_CRYPEN_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 11357 #define RCC_AHB2ENR_CRYPEN RCC_AHB2ENR_CRYPEN_Msk
lypinator 0:bb348c97df44 11358 #define RCC_AHB2ENR_HASHEN_Pos (5U)
lypinator 0:bb348c97df44 11359 #define RCC_AHB2ENR_HASHEN_Msk (0x1U << RCC_AHB2ENR_HASHEN_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 11360 #define RCC_AHB2ENR_HASHEN RCC_AHB2ENR_HASHEN_Msk
lypinator 0:bb348c97df44 11361 #define RCC_AHB2ENR_RNGEN_Pos (6U)
lypinator 0:bb348c97df44 11362 #define RCC_AHB2ENR_RNGEN_Msk (0x1U << RCC_AHB2ENR_RNGEN_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 11363 #define RCC_AHB2ENR_RNGEN RCC_AHB2ENR_RNGEN_Msk
lypinator 0:bb348c97df44 11364 #define RCC_AHB2ENR_OTGFSEN_Pos (7U)
lypinator 0:bb348c97df44 11365 #define RCC_AHB2ENR_OTGFSEN_Msk (0x1U << RCC_AHB2ENR_OTGFSEN_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 11366 #define RCC_AHB2ENR_OTGFSEN RCC_AHB2ENR_OTGFSEN_Msk
lypinator 0:bb348c97df44 11367
lypinator 0:bb348c97df44 11368 /******************** Bit definition for RCC_AHB3ENR register ***************/
lypinator 0:bb348c97df44 11369 /*
lypinator 0:bb348c97df44 11370 * @brief Specific device feature definitions (not present on all devices in the STM32F4 serie)
lypinator 0:bb348c97df44 11371 */
lypinator 0:bb348c97df44 11372 #define RCC_AHB3_SUPPORT /*!< AHB3 Bus is supported */
lypinator 0:bb348c97df44 11373
lypinator 0:bb348c97df44 11374 #define RCC_AHB3ENR_FMCEN_Pos (0U)
lypinator 0:bb348c97df44 11375 #define RCC_AHB3ENR_FMCEN_Msk (0x1U << RCC_AHB3ENR_FMCEN_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 11376 #define RCC_AHB3ENR_FMCEN RCC_AHB3ENR_FMCEN_Msk
lypinator 0:bb348c97df44 11377
lypinator 0:bb348c97df44 11378 /******************** Bit definition for RCC_APB1ENR register ***************/
lypinator 0:bb348c97df44 11379 #define RCC_APB1ENR_TIM2EN_Pos (0U)
lypinator 0:bb348c97df44 11380 #define RCC_APB1ENR_TIM2EN_Msk (0x1U << RCC_APB1ENR_TIM2EN_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 11381 #define RCC_APB1ENR_TIM2EN RCC_APB1ENR_TIM2EN_Msk
lypinator 0:bb348c97df44 11382 #define RCC_APB1ENR_TIM3EN_Pos (1U)
lypinator 0:bb348c97df44 11383 #define RCC_APB1ENR_TIM3EN_Msk (0x1U << RCC_APB1ENR_TIM3EN_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 11384 #define RCC_APB1ENR_TIM3EN RCC_APB1ENR_TIM3EN_Msk
lypinator 0:bb348c97df44 11385 #define RCC_APB1ENR_TIM4EN_Pos (2U)
lypinator 0:bb348c97df44 11386 #define RCC_APB1ENR_TIM4EN_Msk (0x1U << RCC_APB1ENR_TIM4EN_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 11387 #define RCC_APB1ENR_TIM4EN RCC_APB1ENR_TIM4EN_Msk
lypinator 0:bb348c97df44 11388 #define RCC_APB1ENR_TIM5EN_Pos (3U)
lypinator 0:bb348c97df44 11389 #define RCC_APB1ENR_TIM5EN_Msk (0x1U << RCC_APB1ENR_TIM5EN_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 11390 #define RCC_APB1ENR_TIM5EN RCC_APB1ENR_TIM5EN_Msk
lypinator 0:bb348c97df44 11391 #define RCC_APB1ENR_TIM6EN_Pos (4U)
lypinator 0:bb348c97df44 11392 #define RCC_APB1ENR_TIM6EN_Msk (0x1U << RCC_APB1ENR_TIM6EN_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 11393 #define RCC_APB1ENR_TIM6EN RCC_APB1ENR_TIM6EN_Msk
lypinator 0:bb348c97df44 11394 #define RCC_APB1ENR_TIM7EN_Pos (5U)
lypinator 0:bb348c97df44 11395 #define RCC_APB1ENR_TIM7EN_Msk (0x1U << RCC_APB1ENR_TIM7EN_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 11396 #define RCC_APB1ENR_TIM7EN RCC_APB1ENR_TIM7EN_Msk
lypinator 0:bb348c97df44 11397 #define RCC_APB1ENR_TIM12EN_Pos (6U)
lypinator 0:bb348c97df44 11398 #define RCC_APB1ENR_TIM12EN_Msk (0x1U << RCC_APB1ENR_TIM12EN_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 11399 #define RCC_APB1ENR_TIM12EN RCC_APB1ENR_TIM12EN_Msk
lypinator 0:bb348c97df44 11400 #define RCC_APB1ENR_TIM13EN_Pos (7U)
lypinator 0:bb348c97df44 11401 #define RCC_APB1ENR_TIM13EN_Msk (0x1U << RCC_APB1ENR_TIM13EN_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 11402 #define RCC_APB1ENR_TIM13EN RCC_APB1ENR_TIM13EN_Msk
lypinator 0:bb348c97df44 11403 #define RCC_APB1ENR_TIM14EN_Pos (8U)
lypinator 0:bb348c97df44 11404 #define RCC_APB1ENR_TIM14EN_Msk (0x1U << RCC_APB1ENR_TIM14EN_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 11405 #define RCC_APB1ENR_TIM14EN RCC_APB1ENR_TIM14EN_Msk
lypinator 0:bb348c97df44 11406 #define RCC_APB1ENR_WWDGEN_Pos (11U)
lypinator 0:bb348c97df44 11407 #define RCC_APB1ENR_WWDGEN_Msk (0x1U << RCC_APB1ENR_WWDGEN_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 11408 #define RCC_APB1ENR_WWDGEN RCC_APB1ENR_WWDGEN_Msk
lypinator 0:bb348c97df44 11409 #define RCC_APB1ENR_SPI2EN_Pos (14U)
lypinator 0:bb348c97df44 11410 #define RCC_APB1ENR_SPI2EN_Msk (0x1U << RCC_APB1ENR_SPI2EN_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 11411 #define RCC_APB1ENR_SPI2EN RCC_APB1ENR_SPI2EN_Msk
lypinator 0:bb348c97df44 11412 #define RCC_APB1ENR_SPI3EN_Pos (15U)
lypinator 0:bb348c97df44 11413 #define RCC_APB1ENR_SPI3EN_Msk (0x1U << RCC_APB1ENR_SPI3EN_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 11414 #define RCC_APB1ENR_SPI3EN RCC_APB1ENR_SPI3EN_Msk
lypinator 0:bb348c97df44 11415 #define RCC_APB1ENR_USART2EN_Pos (17U)
lypinator 0:bb348c97df44 11416 #define RCC_APB1ENR_USART2EN_Msk (0x1U << RCC_APB1ENR_USART2EN_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 11417 #define RCC_APB1ENR_USART2EN RCC_APB1ENR_USART2EN_Msk
lypinator 0:bb348c97df44 11418 #define RCC_APB1ENR_USART3EN_Pos (18U)
lypinator 0:bb348c97df44 11419 #define RCC_APB1ENR_USART3EN_Msk (0x1U << RCC_APB1ENR_USART3EN_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 11420 #define RCC_APB1ENR_USART3EN RCC_APB1ENR_USART3EN_Msk
lypinator 0:bb348c97df44 11421 #define RCC_APB1ENR_UART4EN_Pos (19U)
lypinator 0:bb348c97df44 11422 #define RCC_APB1ENR_UART4EN_Msk (0x1U << RCC_APB1ENR_UART4EN_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 11423 #define RCC_APB1ENR_UART4EN RCC_APB1ENR_UART4EN_Msk
lypinator 0:bb348c97df44 11424 #define RCC_APB1ENR_UART5EN_Pos (20U)
lypinator 0:bb348c97df44 11425 #define RCC_APB1ENR_UART5EN_Msk (0x1U << RCC_APB1ENR_UART5EN_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 11426 #define RCC_APB1ENR_UART5EN RCC_APB1ENR_UART5EN_Msk
lypinator 0:bb348c97df44 11427 #define RCC_APB1ENR_I2C1EN_Pos (21U)
lypinator 0:bb348c97df44 11428 #define RCC_APB1ENR_I2C1EN_Msk (0x1U << RCC_APB1ENR_I2C1EN_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 11429 #define RCC_APB1ENR_I2C1EN RCC_APB1ENR_I2C1EN_Msk
lypinator 0:bb348c97df44 11430 #define RCC_APB1ENR_I2C2EN_Pos (22U)
lypinator 0:bb348c97df44 11431 #define RCC_APB1ENR_I2C2EN_Msk (0x1U << RCC_APB1ENR_I2C2EN_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 11432 #define RCC_APB1ENR_I2C2EN RCC_APB1ENR_I2C2EN_Msk
lypinator 0:bb348c97df44 11433 #define RCC_APB1ENR_I2C3EN_Pos (23U)
lypinator 0:bb348c97df44 11434 #define RCC_APB1ENR_I2C3EN_Msk (0x1U << RCC_APB1ENR_I2C3EN_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 11435 #define RCC_APB1ENR_I2C3EN RCC_APB1ENR_I2C3EN_Msk
lypinator 0:bb348c97df44 11436 #define RCC_APB1ENR_CAN1EN_Pos (25U)
lypinator 0:bb348c97df44 11437 #define RCC_APB1ENR_CAN1EN_Msk (0x1U << RCC_APB1ENR_CAN1EN_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 11438 #define RCC_APB1ENR_CAN1EN RCC_APB1ENR_CAN1EN_Msk
lypinator 0:bb348c97df44 11439 #define RCC_APB1ENR_CAN2EN_Pos (26U)
lypinator 0:bb348c97df44 11440 #define RCC_APB1ENR_CAN2EN_Msk (0x1U << RCC_APB1ENR_CAN2EN_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 11441 #define RCC_APB1ENR_CAN2EN RCC_APB1ENR_CAN2EN_Msk
lypinator 0:bb348c97df44 11442 #define RCC_APB1ENR_PWREN_Pos (28U)
lypinator 0:bb348c97df44 11443 #define RCC_APB1ENR_PWREN_Msk (0x1U << RCC_APB1ENR_PWREN_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 11444 #define RCC_APB1ENR_PWREN RCC_APB1ENR_PWREN_Msk
lypinator 0:bb348c97df44 11445 #define RCC_APB1ENR_DACEN_Pos (29U)
lypinator 0:bb348c97df44 11446 #define RCC_APB1ENR_DACEN_Msk (0x1U << RCC_APB1ENR_DACEN_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 11447 #define RCC_APB1ENR_DACEN RCC_APB1ENR_DACEN_Msk
lypinator 0:bb348c97df44 11448 #define RCC_APB1ENR_UART7EN_Pos (30U)
lypinator 0:bb348c97df44 11449 #define RCC_APB1ENR_UART7EN_Msk (0x1U << RCC_APB1ENR_UART7EN_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 11450 #define RCC_APB1ENR_UART7EN RCC_APB1ENR_UART7EN_Msk
lypinator 0:bb348c97df44 11451 #define RCC_APB1ENR_UART8EN_Pos (31U)
lypinator 0:bb348c97df44 11452 #define RCC_APB1ENR_UART8EN_Msk (0x1U << RCC_APB1ENR_UART8EN_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 11453 #define RCC_APB1ENR_UART8EN RCC_APB1ENR_UART8EN_Msk
lypinator 0:bb348c97df44 11454
lypinator 0:bb348c97df44 11455 /******************** Bit definition for RCC_APB2ENR register ***************/
lypinator 0:bb348c97df44 11456 #define RCC_APB2ENR_TIM1EN_Pos (0U)
lypinator 0:bb348c97df44 11457 #define RCC_APB2ENR_TIM1EN_Msk (0x1U << RCC_APB2ENR_TIM1EN_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 11458 #define RCC_APB2ENR_TIM1EN RCC_APB2ENR_TIM1EN_Msk
lypinator 0:bb348c97df44 11459 #define RCC_APB2ENR_TIM8EN_Pos (1U)
lypinator 0:bb348c97df44 11460 #define RCC_APB2ENR_TIM8EN_Msk (0x1U << RCC_APB2ENR_TIM8EN_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 11461 #define RCC_APB2ENR_TIM8EN RCC_APB2ENR_TIM8EN_Msk
lypinator 0:bb348c97df44 11462 #define RCC_APB2ENR_USART1EN_Pos (4U)
lypinator 0:bb348c97df44 11463 #define RCC_APB2ENR_USART1EN_Msk (0x1U << RCC_APB2ENR_USART1EN_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 11464 #define RCC_APB2ENR_USART1EN RCC_APB2ENR_USART1EN_Msk
lypinator 0:bb348c97df44 11465 #define RCC_APB2ENR_USART6EN_Pos (5U)
lypinator 0:bb348c97df44 11466 #define RCC_APB2ENR_USART6EN_Msk (0x1U << RCC_APB2ENR_USART6EN_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 11467 #define RCC_APB2ENR_USART6EN RCC_APB2ENR_USART6EN_Msk
lypinator 0:bb348c97df44 11468 #define RCC_APB2ENR_ADC1EN_Pos (8U)
lypinator 0:bb348c97df44 11469 #define RCC_APB2ENR_ADC1EN_Msk (0x1U << RCC_APB2ENR_ADC1EN_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 11470 #define RCC_APB2ENR_ADC1EN RCC_APB2ENR_ADC1EN_Msk
lypinator 0:bb348c97df44 11471 #define RCC_APB2ENR_ADC2EN_Pos (9U)
lypinator 0:bb348c97df44 11472 #define RCC_APB2ENR_ADC2EN_Msk (0x1U << RCC_APB2ENR_ADC2EN_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 11473 #define RCC_APB2ENR_ADC2EN RCC_APB2ENR_ADC2EN_Msk
lypinator 0:bb348c97df44 11474 #define RCC_APB2ENR_ADC3EN_Pos (10U)
lypinator 0:bb348c97df44 11475 #define RCC_APB2ENR_ADC3EN_Msk (0x1U << RCC_APB2ENR_ADC3EN_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 11476 #define RCC_APB2ENR_ADC3EN RCC_APB2ENR_ADC3EN_Msk
lypinator 0:bb348c97df44 11477 #define RCC_APB2ENR_SDIOEN_Pos (11U)
lypinator 0:bb348c97df44 11478 #define RCC_APB2ENR_SDIOEN_Msk (0x1U << RCC_APB2ENR_SDIOEN_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 11479 #define RCC_APB2ENR_SDIOEN RCC_APB2ENR_SDIOEN_Msk
lypinator 0:bb348c97df44 11480 #define RCC_APB2ENR_SPI1EN_Pos (12U)
lypinator 0:bb348c97df44 11481 #define RCC_APB2ENR_SPI1EN_Msk (0x1U << RCC_APB2ENR_SPI1EN_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 11482 #define RCC_APB2ENR_SPI1EN RCC_APB2ENR_SPI1EN_Msk
lypinator 0:bb348c97df44 11483 #define RCC_APB2ENR_SPI4EN_Pos (13U)
lypinator 0:bb348c97df44 11484 #define RCC_APB2ENR_SPI4EN_Msk (0x1U << RCC_APB2ENR_SPI4EN_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 11485 #define RCC_APB2ENR_SPI4EN RCC_APB2ENR_SPI4EN_Msk
lypinator 0:bb348c97df44 11486 #define RCC_APB2ENR_SYSCFGEN_Pos (14U)
lypinator 0:bb348c97df44 11487 #define RCC_APB2ENR_SYSCFGEN_Msk (0x1U << RCC_APB2ENR_SYSCFGEN_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 11488 #define RCC_APB2ENR_SYSCFGEN RCC_APB2ENR_SYSCFGEN_Msk
lypinator 0:bb348c97df44 11489 #define RCC_APB2ENR_TIM9EN_Pos (16U)
lypinator 0:bb348c97df44 11490 #define RCC_APB2ENR_TIM9EN_Msk (0x1U << RCC_APB2ENR_TIM9EN_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 11491 #define RCC_APB2ENR_TIM9EN RCC_APB2ENR_TIM9EN_Msk
lypinator 0:bb348c97df44 11492 #define RCC_APB2ENR_TIM10EN_Pos (17U)
lypinator 0:bb348c97df44 11493 #define RCC_APB2ENR_TIM10EN_Msk (0x1U << RCC_APB2ENR_TIM10EN_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 11494 #define RCC_APB2ENR_TIM10EN RCC_APB2ENR_TIM10EN_Msk
lypinator 0:bb348c97df44 11495 #define RCC_APB2ENR_TIM11EN_Pos (18U)
lypinator 0:bb348c97df44 11496 #define RCC_APB2ENR_TIM11EN_Msk (0x1U << RCC_APB2ENR_TIM11EN_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 11497 #define RCC_APB2ENR_TIM11EN RCC_APB2ENR_TIM11EN_Msk
lypinator 0:bb348c97df44 11498 #define RCC_APB2ENR_SPI5EN_Pos (20U)
lypinator 0:bb348c97df44 11499 #define RCC_APB2ENR_SPI5EN_Msk (0x1U << RCC_APB2ENR_SPI5EN_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 11500 #define RCC_APB2ENR_SPI5EN RCC_APB2ENR_SPI5EN_Msk
lypinator 0:bb348c97df44 11501 #define RCC_APB2ENR_SPI6EN_Pos (21U)
lypinator 0:bb348c97df44 11502 #define RCC_APB2ENR_SPI6EN_Msk (0x1U << RCC_APB2ENR_SPI6EN_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 11503 #define RCC_APB2ENR_SPI6EN RCC_APB2ENR_SPI6EN_Msk
lypinator 0:bb348c97df44 11504 #define RCC_APB2ENR_SAI1EN_Pos (22U)
lypinator 0:bb348c97df44 11505 #define RCC_APB2ENR_SAI1EN_Msk (0x1U << RCC_APB2ENR_SAI1EN_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 11506 #define RCC_APB2ENR_SAI1EN RCC_APB2ENR_SAI1EN_Msk
lypinator 0:bb348c97df44 11507 #define RCC_APB2ENR_LTDCEN_Pos (26U)
lypinator 0:bb348c97df44 11508 #define RCC_APB2ENR_LTDCEN_Msk (0x1U << RCC_APB2ENR_LTDCEN_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 11509 #define RCC_APB2ENR_LTDCEN RCC_APB2ENR_LTDCEN_Msk
lypinator 0:bb348c97df44 11510
lypinator 0:bb348c97df44 11511 /******************** Bit definition for RCC_AHB1LPENR register *************/
lypinator 0:bb348c97df44 11512 #define RCC_AHB1LPENR_GPIOALPEN_Pos (0U)
lypinator 0:bb348c97df44 11513 #define RCC_AHB1LPENR_GPIOALPEN_Msk (0x1U << RCC_AHB1LPENR_GPIOALPEN_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 11514 #define RCC_AHB1LPENR_GPIOALPEN RCC_AHB1LPENR_GPIOALPEN_Msk
lypinator 0:bb348c97df44 11515 #define RCC_AHB1LPENR_GPIOBLPEN_Pos (1U)
lypinator 0:bb348c97df44 11516 #define RCC_AHB1LPENR_GPIOBLPEN_Msk (0x1U << RCC_AHB1LPENR_GPIOBLPEN_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 11517 #define RCC_AHB1LPENR_GPIOBLPEN RCC_AHB1LPENR_GPIOBLPEN_Msk
lypinator 0:bb348c97df44 11518 #define RCC_AHB1LPENR_GPIOCLPEN_Pos (2U)
lypinator 0:bb348c97df44 11519 #define RCC_AHB1LPENR_GPIOCLPEN_Msk (0x1U << RCC_AHB1LPENR_GPIOCLPEN_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 11520 #define RCC_AHB1LPENR_GPIOCLPEN RCC_AHB1LPENR_GPIOCLPEN_Msk
lypinator 0:bb348c97df44 11521 #define RCC_AHB1LPENR_GPIODLPEN_Pos (3U)
lypinator 0:bb348c97df44 11522 #define RCC_AHB1LPENR_GPIODLPEN_Msk (0x1U << RCC_AHB1LPENR_GPIODLPEN_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 11523 #define RCC_AHB1LPENR_GPIODLPEN RCC_AHB1LPENR_GPIODLPEN_Msk
lypinator 0:bb348c97df44 11524 #define RCC_AHB1LPENR_GPIOELPEN_Pos (4U)
lypinator 0:bb348c97df44 11525 #define RCC_AHB1LPENR_GPIOELPEN_Msk (0x1U << RCC_AHB1LPENR_GPIOELPEN_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 11526 #define RCC_AHB1LPENR_GPIOELPEN RCC_AHB1LPENR_GPIOELPEN_Msk
lypinator 0:bb348c97df44 11527 #define RCC_AHB1LPENR_GPIOFLPEN_Pos (5U)
lypinator 0:bb348c97df44 11528 #define RCC_AHB1LPENR_GPIOFLPEN_Msk (0x1U << RCC_AHB1LPENR_GPIOFLPEN_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 11529 #define RCC_AHB1LPENR_GPIOFLPEN RCC_AHB1LPENR_GPIOFLPEN_Msk
lypinator 0:bb348c97df44 11530 #define RCC_AHB1LPENR_GPIOGLPEN_Pos (6U)
lypinator 0:bb348c97df44 11531 #define RCC_AHB1LPENR_GPIOGLPEN_Msk (0x1U << RCC_AHB1LPENR_GPIOGLPEN_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 11532 #define RCC_AHB1LPENR_GPIOGLPEN RCC_AHB1LPENR_GPIOGLPEN_Msk
lypinator 0:bb348c97df44 11533 #define RCC_AHB1LPENR_GPIOHLPEN_Pos (7U)
lypinator 0:bb348c97df44 11534 #define RCC_AHB1LPENR_GPIOHLPEN_Msk (0x1U << RCC_AHB1LPENR_GPIOHLPEN_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 11535 #define RCC_AHB1LPENR_GPIOHLPEN RCC_AHB1LPENR_GPIOHLPEN_Msk
lypinator 0:bb348c97df44 11536 #define RCC_AHB1LPENR_GPIOILPEN_Pos (8U)
lypinator 0:bb348c97df44 11537 #define RCC_AHB1LPENR_GPIOILPEN_Msk (0x1U << RCC_AHB1LPENR_GPIOILPEN_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 11538 #define RCC_AHB1LPENR_GPIOILPEN RCC_AHB1LPENR_GPIOILPEN_Msk
lypinator 0:bb348c97df44 11539 #define RCC_AHB1LPENR_GPIOJLPEN_Pos (9U)
lypinator 0:bb348c97df44 11540 #define RCC_AHB1LPENR_GPIOJLPEN_Msk (0x1U << RCC_AHB1LPENR_GPIOJLPEN_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 11541 #define RCC_AHB1LPENR_GPIOJLPEN RCC_AHB1LPENR_GPIOJLPEN_Msk
lypinator 0:bb348c97df44 11542 #define RCC_AHB1LPENR_GPIOKLPEN_Pos (10U)
lypinator 0:bb348c97df44 11543 #define RCC_AHB1LPENR_GPIOKLPEN_Msk (0x1U << RCC_AHB1LPENR_GPIOKLPEN_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 11544 #define RCC_AHB1LPENR_GPIOKLPEN RCC_AHB1LPENR_GPIOKLPEN_Msk
lypinator 0:bb348c97df44 11545 #define RCC_AHB1LPENR_CRCLPEN_Pos (12U)
lypinator 0:bb348c97df44 11546 #define RCC_AHB1LPENR_CRCLPEN_Msk (0x1U << RCC_AHB1LPENR_CRCLPEN_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 11547 #define RCC_AHB1LPENR_CRCLPEN RCC_AHB1LPENR_CRCLPEN_Msk
lypinator 0:bb348c97df44 11548 #define RCC_AHB1LPENR_FLITFLPEN_Pos (15U)
lypinator 0:bb348c97df44 11549 #define RCC_AHB1LPENR_FLITFLPEN_Msk (0x1U << RCC_AHB1LPENR_FLITFLPEN_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 11550 #define RCC_AHB1LPENR_FLITFLPEN RCC_AHB1LPENR_FLITFLPEN_Msk
lypinator 0:bb348c97df44 11551 #define RCC_AHB1LPENR_SRAM1LPEN_Pos (16U)
lypinator 0:bb348c97df44 11552 #define RCC_AHB1LPENR_SRAM1LPEN_Msk (0x1U << RCC_AHB1LPENR_SRAM1LPEN_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 11553 #define RCC_AHB1LPENR_SRAM1LPEN RCC_AHB1LPENR_SRAM1LPEN_Msk
lypinator 0:bb348c97df44 11554 #define RCC_AHB1LPENR_SRAM2LPEN_Pos (17U)
lypinator 0:bb348c97df44 11555 #define RCC_AHB1LPENR_SRAM2LPEN_Msk (0x1U << RCC_AHB1LPENR_SRAM2LPEN_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 11556 #define RCC_AHB1LPENR_SRAM2LPEN RCC_AHB1LPENR_SRAM2LPEN_Msk
lypinator 0:bb348c97df44 11557 #define RCC_AHB1LPENR_BKPSRAMLPEN_Pos (18U)
lypinator 0:bb348c97df44 11558 #define RCC_AHB1LPENR_BKPSRAMLPEN_Msk (0x1U << RCC_AHB1LPENR_BKPSRAMLPEN_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 11559 #define RCC_AHB1LPENR_BKPSRAMLPEN RCC_AHB1LPENR_BKPSRAMLPEN_Msk
lypinator 0:bb348c97df44 11560 #define RCC_AHB1LPENR_SRAM3LPEN_Pos (19U)
lypinator 0:bb348c97df44 11561 #define RCC_AHB1LPENR_SRAM3LPEN_Msk (0x1U << RCC_AHB1LPENR_SRAM3LPEN_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 11562 #define RCC_AHB1LPENR_SRAM3LPEN RCC_AHB1LPENR_SRAM3LPEN_Msk
lypinator 0:bb348c97df44 11563 #define RCC_AHB1LPENR_DMA1LPEN_Pos (21U)
lypinator 0:bb348c97df44 11564 #define RCC_AHB1LPENR_DMA1LPEN_Msk (0x1U << RCC_AHB1LPENR_DMA1LPEN_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 11565 #define RCC_AHB1LPENR_DMA1LPEN RCC_AHB1LPENR_DMA1LPEN_Msk
lypinator 0:bb348c97df44 11566 #define RCC_AHB1LPENR_DMA2LPEN_Pos (22U)
lypinator 0:bb348c97df44 11567 #define RCC_AHB1LPENR_DMA2LPEN_Msk (0x1U << RCC_AHB1LPENR_DMA2LPEN_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 11568 #define RCC_AHB1LPENR_DMA2LPEN RCC_AHB1LPENR_DMA2LPEN_Msk
lypinator 0:bb348c97df44 11569 #define RCC_AHB1LPENR_DMA2DLPEN_Pos (23U)
lypinator 0:bb348c97df44 11570 #define RCC_AHB1LPENR_DMA2DLPEN_Msk (0x1U << RCC_AHB1LPENR_DMA2DLPEN_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 11571 #define RCC_AHB1LPENR_DMA2DLPEN RCC_AHB1LPENR_DMA2DLPEN_Msk
lypinator 0:bb348c97df44 11572
lypinator 0:bb348c97df44 11573 #define RCC_AHB1LPENR_ETHMACLPEN_Pos (25U)
lypinator 0:bb348c97df44 11574 #define RCC_AHB1LPENR_ETHMACLPEN_Msk (0x1U << RCC_AHB1LPENR_ETHMACLPEN_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 11575 #define RCC_AHB1LPENR_ETHMACLPEN RCC_AHB1LPENR_ETHMACLPEN_Msk
lypinator 0:bb348c97df44 11576 #define RCC_AHB1LPENR_ETHMACTXLPEN_Pos (26U)
lypinator 0:bb348c97df44 11577 #define RCC_AHB1LPENR_ETHMACTXLPEN_Msk (0x1U << RCC_AHB1LPENR_ETHMACTXLPEN_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 11578 #define RCC_AHB1LPENR_ETHMACTXLPEN RCC_AHB1LPENR_ETHMACTXLPEN_Msk
lypinator 0:bb348c97df44 11579 #define RCC_AHB1LPENR_ETHMACRXLPEN_Pos (27U)
lypinator 0:bb348c97df44 11580 #define RCC_AHB1LPENR_ETHMACRXLPEN_Msk (0x1U << RCC_AHB1LPENR_ETHMACRXLPEN_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 11581 #define RCC_AHB1LPENR_ETHMACRXLPEN RCC_AHB1LPENR_ETHMACRXLPEN_Msk
lypinator 0:bb348c97df44 11582 #define RCC_AHB1LPENR_ETHMACPTPLPEN_Pos (28U)
lypinator 0:bb348c97df44 11583 #define RCC_AHB1LPENR_ETHMACPTPLPEN_Msk (0x1U << RCC_AHB1LPENR_ETHMACPTPLPEN_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 11584 #define RCC_AHB1LPENR_ETHMACPTPLPEN RCC_AHB1LPENR_ETHMACPTPLPEN_Msk
lypinator 0:bb348c97df44 11585 #define RCC_AHB1LPENR_OTGHSLPEN_Pos (29U)
lypinator 0:bb348c97df44 11586 #define RCC_AHB1LPENR_OTGHSLPEN_Msk (0x1U << RCC_AHB1LPENR_OTGHSLPEN_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 11587 #define RCC_AHB1LPENR_OTGHSLPEN RCC_AHB1LPENR_OTGHSLPEN_Msk
lypinator 0:bb348c97df44 11588 #define RCC_AHB1LPENR_OTGHSULPILPEN_Pos (30U)
lypinator 0:bb348c97df44 11589 #define RCC_AHB1LPENR_OTGHSULPILPEN_Msk (0x1U << RCC_AHB1LPENR_OTGHSULPILPEN_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 11590 #define RCC_AHB1LPENR_OTGHSULPILPEN RCC_AHB1LPENR_OTGHSULPILPEN_Msk
lypinator 0:bb348c97df44 11591
lypinator 0:bb348c97df44 11592 /******************** Bit definition for RCC_AHB2LPENR register *************/
lypinator 0:bb348c97df44 11593 #define RCC_AHB2LPENR_DCMILPEN_Pos (0U)
lypinator 0:bb348c97df44 11594 #define RCC_AHB2LPENR_DCMILPEN_Msk (0x1U << RCC_AHB2LPENR_DCMILPEN_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 11595 #define RCC_AHB2LPENR_DCMILPEN RCC_AHB2LPENR_DCMILPEN_Msk
lypinator 0:bb348c97df44 11596 #define RCC_AHB2LPENR_CRYPLPEN_Pos (4U)
lypinator 0:bb348c97df44 11597 #define RCC_AHB2LPENR_CRYPLPEN_Msk (0x1U << RCC_AHB2LPENR_CRYPLPEN_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 11598 #define RCC_AHB2LPENR_CRYPLPEN RCC_AHB2LPENR_CRYPLPEN_Msk
lypinator 0:bb348c97df44 11599 #define RCC_AHB2LPENR_HASHLPEN_Pos (5U)
lypinator 0:bb348c97df44 11600 #define RCC_AHB2LPENR_HASHLPEN_Msk (0x1U << RCC_AHB2LPENR_HASHLPEN_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 11601 #define RCC_AHB2LPENR_HASHLPEN RCC_AHB2LPENR_HASHLPEN_Msk
lypinator 0:bb348c97df44 11602 #define RCC_AHB2LPENR_RNGLPEN_Pos (6U)
lypinator 0:bb348c97df44 11603 #define RCC_AHB2LPENR_RNGLPEN_Msk (0x1U << RCC_AHB2LPENR_RNGLPEN_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 11604 #define RCC_AHB2LPENR_RNGLPEN RCC_AHB2LPENR_RNGLPEN_Msk
lypinator 0:bb348c97df44 11605 #define RCC_AHB2LPENR_OTGFSLPEN_Pos (7U)
lypinator 0:bb348c97df44 11606 #define RCC_AHB2LPENR_OTGFSLPEN_Msk (0x1U << RCC_AHB2LPENR_OTGFSLPEN_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 11607 #define RCC_AHB2LPENR_OTGFSLPEN RCC_AHB2LPENR_OTGFSLPEN_Msk
lypinator 0:bb348c97df44 11608
lypinator 0:bb348c97df44 11609 /******************** Bit definition for RCC_AHB3LPENR register *************/
lypinator 0:bb348c97df44 11610 #define RCC_AHB3LPENR_FMCLPEN_Pos (0U)
lypinator 0:bb348c97df44 11611 #define RCC_AHB3LPENR_FMCLPEN_Msk (0x1U << RCC_AHB3LPENR_FMCLPEN_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 11612 #define RCC_AHB3LPENR_FMCLPEN RCC_AHB3LPENR_FMCLPEN_Msk
lypinator 0:bb348c97df44 11613
lypinator 0:bb348c97df44 11614 /******************** Bit definition for RCC_APB1LPENR register *************/
lypinator 0:bb348c97df44 11615 #define RCC_APB1LPENR_TIM2LPEN_Pos (0U)
lypinator 0:bb348c97df44 11616 #define RCC_APB1LPENR_TIM2LPEN_Msk (0x1U << RCC_APB1LPENR_TIM2LPEN_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 11617 #define RCC_APB1LPENR_TIM2LPEN RCC_APB1LPENR_TIM2LPEN_Msk
lypinator 0:bb348c97df44 11618 #define RCC_APB1LPENR_TIM3LPEN_Pos (1U)
lypinator 0:bb348c97df44 11619 #define RCC_APB1LPENR_TIM3LPEN_Msk (0x1U << RCC_APB1LPENR_TIM3LPEN_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 11620 #define RCC_APB1LPENR_TIM3LPEN RCC_APB1LPENR_TIM3LPEN_Msk
lypinator 0:bb348c97df44 11621 #define RCC_APB1LPENR_TIM4LPEN_Pos (2U)
lypinator 0:bb348c97df44 11622 #define RCC_APB1LPENR_TIM4LPEN_Msk (0x1U << RCC_APB1LPENR_TIM4LPEN_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 11623 #define RCC_APB1LPENR_TIM4LPEN RCC_APB1LPENR_TIM4LPEN_Msk
lypinator 0:bb348c97df44 11624 #define RCC_APB1LPENR_TIM5LPEN_Pos (3U)
lypinator 0:bb348c97df44 11625 #define RCC_APB1LPENR_TIM5LPEN_Msk (0x1U << RCC_APB1LPENR_TIM5LPEN_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 11626 #define RCC_APB1LPENR_TIM5LPEN RCC_APB1LPENR_TIM5LPEN_Msk
lypinator 0:bb348c97df44 11627 #define RCC_APB1LPENR_TIM6LPEN_Pos (4U)
lypinator 0:bb348c97df44 11628 #define RCC_APB1LPENR_TIM6LPEN_Msk (0x1U << RCC_APB1LPENR_TIM6LPEN_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 11629 #define RCC_APB1LPENR_TIM6LPEN RCC_APB1LPENR_TIM6LPEN_Msk
lypinator 0:bb348c97df44 11630 #define RCC_APB1LPENR_TIM7LPEN_Pos (5U)
lypinator 0:bb348c97df44 11631 #define RCC_APB1LPENR_TIM7LPEN_Msk (0x1U << RCC_APB1LPENR_TIM7LPEN_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 11632 #define RCC_APB1LPENR_TIM7LPEN RCC_APB1LPENR_TIM7LPEN_Msk
lypinator 0:bb348c97df44 11633 #define RCC_APB1LPENR_TIM12LPEN_Pos (6U)
lypinator 0:bb348c97df44 11634 #define RCC_APB1LPENR_TIM12LPEN_Msk (0x1U << RCC_APB1LPENR_TIM12LPEN_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 11635 #define RCC_APB1LPENR_TIM12LPEN RCC_APB1LPENR_TIM12LPEN_Msk
lypinator 0:bb348c97df44 11636 #define RCC_APB1LPENR_TIM13LPEN_Pos (7U)
lypinator 0:bb348c97df44 11637 #define RCC_APB1LPENR_TIM13LPEN_Msk (0x1U << RCC_APB1LPENR_TIM13LPEN_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 11638 #define RCC_APB1LPENR_TIM13LPEN RCC_APB1LPENR_TIM13LPEN_Msk
lypinator 0:bb348c97df44 11639 #define RCC_APB1LPENR_TIM14LPEN_Pos (8U)
lypinator 0:bb348c97df44 11640 #define RCC_APB1LPENR_TIM14LPEN_Msk (0x1U << RCC_APB1LPENR_TIM14LPEN_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 11641 #define RCC_APB1LPENR_TIM14LPEN RCC_APB1LPENR_TIM14LPEN_Msk
lypinator 0:bb348c97df44 11642 #define RCC_APB1LPENR_WWDGLPEN_Pos (11U)
lypinator 0:bb348c97df44 11643 #define RCC_APB1LPENR_WWDGLPEN_Msk (0x1U << RCC_APB1LPENR_WWDGLPEN_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 11644 #define RCC_APB1LPENR_WWDGLPEN RCC_APB1LPENR_WWDGLPEN_Msk
lypinator 0:bb348c97df44 11645 #define RCC_APB1LPENR_SPI2LPEN_Pos (14U)
lypinator 0:bb348c97df44 11646 #define RCC_APB1LPENR_SPI2LPEN_Msk (0x1U << RCC_APB1LPENR_SPI2LPEN_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 11647 #define RCC_APB1LPENR_SPI2LPEN RCC_APB1LPENR_SPI2LPEN_Msk
lypinator 0:bb348c97df44 11648 #define RCC_APB1LPENR_SPI3LPEN_Pos (15U)
lypinator 0:bb348c97df44 11649 #define RCC_APB1LPENR_SPI3LPEN_Msk (0x1U << RCC_APB1LPENR_SPI3LPEN_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 11650 #define RCC_APB1LPENR_SPI3LPEN RCC_APB1LPENR_SPI3LPEN_Msk
lypinator 0:bb348c97df44 11651 #define RCC_APB1LPENR_USART2LPEN_Pos (17U)
lypinator 0:bb348c97df44 11652 #define RCC_APB1LPENR_USART2LPEN_Msk (0x1U << RCC_APB1LPENR_USART2LPEN_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 11653 #define RCC_APB1LPENR_USART2LPEN RCC_APB1LPENR_USART2LPEN_Msk
lypinator 0:bb348c97df44 11654 #define RCC_APB1LPENR_USART3LPEN_Pos (18U)
lypinator 0:bb348c97df44 11655 #define RCC_APB1LPENR_USART3LPEN_Msk (0x1U << RCC_APB1LPENR_USART3LPEN_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 11656 #define RCC_APB1LPENR_USART3LPEN RCC_APB1LPENR_USART3LPEN_Msk
lypinator 0:bb348c97df44 11657 #define RCC_APB1LPENR_UART4LPEN_Pos (19U)
lypinator 0:bb348c97df44 11658 #define RCC_APB1LPENR_UART4LPEN_Msk (0x1U << RCC_APB1LPENR_UART4LPEN_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 11659 #define RCC_APB1LPENR_UART4LPEN RCC_APB1LPENR_UART4LPEN_Msk
lypinator 0:bb348c97df44 11660 #define RCC_APB1LPENR_UART5LPEN_Pos (20U)
lypinator 0:bb348c97df44 11661 #define RCC_APB1LPENR_UART5LPEN_Msk (0x1U << RCC_APB1LPENR_UART5LPEN_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 11662 #define RCC_APB1LPENR_UART5LPEN RCC_APB1LPENR_UART5LPEN_Msk
lypinator 0:bb348c97df44 11663 #define RCC_APB1LPENR_I2C1LPEN_Pos (21U)
lypinator 0:bb348c97df44 11664 #define RCC_APB1LPENR_I2C1LPEN_Msk (0x1U << RCC_APB1LPENR_I2C1LPEN_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 11665 #define RCC_APB1LPENR_I2C1LPEN RCC_APB1LPENR_I2C1LPEN_Msk
lypinator 0:bb348c97df44 11666 #define RCC_APB1LPENR_I2C2LPEN_Pos (22U)
lypinator 0:bb348c97df44 11667 #define RCC_APB1LPENR_I2C2LPEN_Msk (0x1U << RCC_APB1LPENR_I2C2LPEN_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 11668 #define RCC_APB1LPENR_I2C2LPEN RCC_APB1LPENR_I2C2LPEN_Msk
lypinator 0:bb348c97df44 11669 #define RCC_APB1LPENR_I2C3LPEN_Pos (23U)
lypinator 0:bb348c97df44 11670 #define RCC_APB1LPENR_I2C3LPEN_Msk (0x1U << RCC_APB1LPENR_I2C3LPEN_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 11671 #define RCC_APB1LPENR_I2C3LPEN RCC_APB1LPENR_I2C3LPEN_Msk
lypinator 0:bb348c97df44 11672 #define RCC_APB1LPENR_CAN1LPEN_Pos (25U)
lypinator 0:bb348c97df44 11673 #define RCC_APB1LPENR_CAN1LPEN_Msk (0x1U << RCC_APB1LPENR_CAN1LPEN_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 11674 #define RCC_APB1LPENR_CAN1LPEN RCC_APB1LPENR_CAN1LPEN_Msk
lypinator 0:bb348c97df44 11675 #define RCC_APB1LPENR_CAN2LPEN_Pos (26U)
lypinator 0:bb348c97df44 11676 #define RCC_APB1LPENR_CAN2LPEN_Msk (0x1U << RCC_APB1LPENR_CAN2LPEN_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 11677 #define RCC_APB1LPENR_CAN2LPEN RCC_APB1LPENR_CAN2LPEN_Msk
lypinator 0:bb348c97df44 11678 #define RCC_APB1LPENR_PWRLPEN_Pos (28U)
lypinator 0:bb348c97df44 11679 #define RCC_APB1LPENR_PWRLPEN_Msk (0x1U << RCC_APB1LPENR_PWRLPEN_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 11680 #define RCC_APB1LPENR_PWRLPEN RCC_APB1LPENR_PWRLPEN_Msk
lypinator 0:bb348c97df44 11681 #define RCC_APB1LPENR_DACLPEN_Pos (29U)
lypinator 0:bb348c97df44 11682 #define RCC_APB1LPENR_DACLPEN_Msk (0x1U << RCC_APB1LPENR_DACLPEN_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 11683 #define RCC_APB1LPENR_DACLPEN RCC_APB1LPENR_DACLPEN_Msk
lypinator 0:bb348c97df44 11684 #define RCC_APB1LPENR_UART7LPEN_Pos (30U)
lypinator 0:bb348c97df44 11685 #define RCC_APB1LPENR_UART7LPEN_Msk (0x1U << RCC_APB1LPENR_UART7LPEN_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 11686 #define RCC_APB1LPENR_UART7LPEN RCC_APB1LPENR_UART7LPEN_Msk
lypinator 0:bb348c97df44 11687 #define RCC_APB1LPENR_UART8LPEN_Pos (31U)
lypinator 0:bb348c97df44 11688 #define RCC_APB1LPENR_UART8LPEN_Msk (0x1U << RCC_APB1LPENR_UART8LPEN_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 11689 #define RCC_APB1LPENR_UART8LPEN RCC_APB1LPENR_UART8LPEN_Msk
lypinator 0:bb348c97df44 11690
lypinator 0:bb348c97df44 11691 /******************** Bit definition for RCC_APB2LPENR register *************/
lypinator 0:bb348c97df44 11692 #define RCC_APB2LPENR_TIM1LPEN_Pos (0U)
lypinator 0:bb348c97df44 11693 #define RCC_APB2LPENR_TIM1LPEN_Msk (0x1U << RCC_APB2LPENR_TIM1LPEN_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 11694 #define RCC_APB2LPENR_TIM1LPEN RCC_APB2LPENR_TIM1LPEN_Msk
lypinator 0:bb348c97df44 11695 #define RCC_APB2LPENR_TIM8LPEN_Pos (1U)
lypinator 0:bb348c97df44 11696 #define RCC_APB2LPENR_TIM8LPEN_Msk (0x1U << RCC_APB2LPENR_TIM8LPEN_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 11697 #define RCC_APB2LPENR_TIM8LPEN RCC_APB2LPENR_TIM8LPEN_Msk
lypinator 0:bb348c97df44 11698 #define RCC_APB2LPENR_USART1LPEN_Pos (4U)
lypinator 0:bb348c97df44 11699 #define RCC_APB2LPENR_USART1LPEN_Msk (0x1U << RCC_APB2LPENR_USART1LPEN_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 11700 #define RCC_APB2LPENR_USART1LPEN RCC_APB2LPENR_USART1LPEN_Msk
lypinator 0:bb348c97df44 11701 #define RCC_APB2LPENR_USART6LPEN_Pos (5U)
lypinator 0:bb348c97df44 11702 #define RCC_APB2LPENR_USART6LPEN_Msk (0x1U << RCC_APB2LPENR_USART6LPEN_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 11703 #define RCC_APB2LPENR_USART6LPEN RCC_APB2LPENR_USART6LPEN_Msk
lypinator 0:bb348c97df44 11704 #define RCC_APB2LPENR_ADC1LPEN_Pos (8U)
lypinator 0:bb348c97df44 11705 #define RCC_APB2LPENR_ADC1LPEN_Msk (0x1U << RCC_APB2LPENR_ADC1LPEN_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 11706 #define RCC_APB2LPENR_ADC1LPEN RCC_APB2LPENR_ADC1LPEN_Msk
lypinator 0:bb348c97df44 11707 #define RCC_APB2LPENR_ADC2LPEN_Pos (9U)
lypinator 0:bb348c97df44 11708 #define RCC_APB2LPENR_ADC2LPEN_Msk (0x1U << RCC_APB2LPENR_ADC2LPEN_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 11709 #define RCC_APB2LPENR_ADC2LPEN RCC_APB2LPENR_ADC2LPEN_Msk
lypinator 0:bb348c97df44 11710 #define RCC_APB2LPENR_ADC3LPEN_Pos (10U)
lypinator 0:bb348c97df44 11711 #define RCC_APB2LPENR_ADC3LPEN_Msk (0x1U << RCC_APB2LPENR_ADC3LPEN_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 11712 #define RCC_APB2LPENR_ADC3LPEN RCC_APB2LPENR_ADC3LPEN_Msk
lypinator 0:bb348c97df44 11713 #define RCC_APB2LPENR_SDIOLPEN_Pos (11U)
lypinator 0:bb348c97df44 11714 #define RCC_APB2LPENR_SDIOLPEN_Msk (0x1U << RCC_APB2LPENR_SDIOLPEN_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 11715 #define RCC_APB2LPENR_SDIOLPEN RCC_APB2LPENR_SDIOLPEN_Msk
lypinator 0:bb348c97df44 11716 #define RCC_APB2LPENR_SPI1LPEN_Pos (12U)
lypinator 0:bb348c97df44 11717 #define RCC_APB2LPENR_SPI1LPEN_Msk (0x1U << RCC_APB2LPENR_SPI1LPEN_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 11718 #define RCC_APB2LPENR_SPI1LPEN RCC_APB2LPENR_SPI1LPEN_Msk
lypinator 0:bb348c97df44 11719 #define RCC_APB2LPENR_SPI4LPEN_Pos (13U)
lypinator 0:bb348c97df44 11720 #define RCC_APB2LPENR_SPI4LPEN_Msk (0x1U << RCC_APB2LPENR_SPI4LPEN_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 11721 #define RCC_APB2LPENR_SPI4LPEN RCC_APB2LPENR_SPI4LPEN_Msk
lypinator 0:bb348c97df44 11722 #define RCC_APB2LPENR_SYSCFGLPEN_Pos (14U)
lypinator 0:bb348c97df44 11723 #define RCC_APB2LPENR_SYSCFGLPEN_Msk (0x1U << RCC_APB2LPENR_SYSCFGLPEN_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 11724 #define RCC_APB2LPENR_SYSCFGLPEN RCC_APB2LPENR_SYSCFGLPEN_Msk
lypinator 0:bb348c97df44 11725 #define RCC_APB2LPENR_TIM9LPEN_Pos (16U)
lypinator 0:bb348c97df44 11726 #define RCC_APB2LPENR_TIM9LPEN_Msk (0x1U << RCC_APB2LPENR_TIM9LPEN_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 11727 #define RCC_APB2LPENR_TIM9LPEN RCC_APB2LPENR_TIM9LPEN_Msk
lypinator 0:bb348c97df44 11728 #define RCC_APB2LPENR_TIM10LPEN_Pos (17U)
lypinator 0:bb348c97df44 11729 #define RCC_APB2LPENR_TIM10LPEN_Msk (0x1U << RCC_APB2LPENR_TIM10LPEN_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 11730 #define RCC_APB2LPENR_TIM10LPEN RCC_APB2LPENR_TIM10LPEN_Msk
lypinator 0:bb348c97df44 11731 #define RCC_APB2LPENR_TIM11LPEN_Pos (18U)
lypinator 0:bb348c97df44 11732 #define RCC_APB2LPENR_TIM11LPEN_Msk (0x1U << RCC_APB2LPENR_TIM11LPEN_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 11733 #define RCC_APB2LPENR_TIM11LPEN RCC_APB2LPENR_TIM11LPEN_Msk
lypinator 0:bb348c97df44 11734 #define RCC_APB2LPENR_SPI5LPEN_Pos (20U)
lypinator 0:bb348c97df44 11735 #define RCC_APB2LPENR_SPI5LPEN_Msk (0x1U << RCC_APB2LPENR_SPI5LPEN_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 11736 #define RCC_APB2LPENR_SPI5LPEN RCC_APB2LPENR_SPI5LPEN_Msk
lypinator 0:bb348c97df44 11737 #define RCC_APB2LPENR_SPI6LPEN_Pos (21U)
lypinator 0:bb348c97df44 11738 #define RCC_APB2LPENR_SPI6LPEN_Msk (0x1U << RCC_APB2LPENR_SPI6LPEN_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 11739 #define RCC_APB2LPENR_SPI6LPEN RCC_APB2LPENR_SPI6LPEN_Msk
lypinator 0:bb348c97df44 11740 #define RCC_APB2LPENR_SAI1LPEN_Pos (22U)
lypinator 0:bb348c97df44 11741 #define RCC_APB2LPENR_SAI1LPEN_Msk (0x1U << RCC_APB2LPENR_SAI1LPEN_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 11742 #define RCC_APB2LPENR_SAI1LPEN RCC_APB2LPENR_SAI1LPEN_Msk
lypinator 0:bb348c97df44 11743 #define RCC_APB2LPENR_LTDCLPEN_Pos (26U)
lypinator 0:bb348c97df44 11744 #define RCC_APB2LPENR_LTDCLPEN_Msk (0x1U << RCC_APB2LPENR_LTDCLPEN_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 11745 #define RCC_APB2LPENR_LTDCLPEN RCC_APB2LPENR_LTDCLPEN_Msk
lypinator 0:bb348c97df44 11746
lypinator 0:bb348c97df44 11747 /******************** Bit definition for RCC_BDCR register ******************/
lypinator 0:bb348c97df44 11748 #define RCC_BDCR_LSEON_Pos (0U)
lypinator 0:bb348c97df44 11749 #define RCC_BDCR_LSEON_Msk (0x1U << RCC_BDCR_LSEON_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 11750 #define RCC_BDCR_LSEON RCC_BDCR_LSEON_Msk
lypinator 0:bb348c97df44 11751 #define RCC_BDCR_LSERDY_Pos (1U)
lypinator 0:bb348c97df44 11752 #define RCC_BDCR_LSERDY_Msk (0x1U << RCC_BDCR_LSERDY_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 11753 #define RCC_BDCR_LSERDY RCC_BDCR_LSERDY_Msk
lypinator 0:bb348c97df44 11754 #define RCC_BDCR_LSEBYP_Pos (2U)
lypinator 0:bb348c97df44 11755 #define RCC_BDCR_LSEBYP_Msk (0x1U << RCC_BDCR_LSEBYP_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 11756 #define RCC_BDCR_LSEBYP RCC_BDCR_LSEBYP_Msk
lypinator 0:bb348c97df44 11757
lypinator 0:bb348c97df44 11758 #define RCC_BDCR_RTCSEL_Pos (8U)
lypinator 0:bb348c97df44 11759 #define RCC_BDCR_RTCSEL_Msk (0x3U << RCC_BDCR_RTCSEL_Pos) /*!< 0x00000300 */
lypinator 0:bb348c97df44 11760 #define RCC_BDCR_RTCSEL RCC_BDCR_RTCSEL_Msk
lypinator 0:bb348c97df44 11761 #define RCC_BDCR_RTCSEL_0 (0x1U << RCC_BDCR_RTCSEL_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 11762 #define RCC_BDCR_RTCSEL_1 (0x2U << RCC_BDCR_RTCSEL_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 11763
lypinator 0:bb348c97df44 11764 #define RCC_BDCR_RTCEN_Pos (15U)
lypinator 0:bb348c97df44 11765 #define RCC_BDCR_RTCEN_Msk (0x1U << RCC_BDCR_RTCEN_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 11766 #define RCC_BDCR_RTCEN RCC_BDCR_RTCEN_Msk
lypinator 0:bb348c97df44 11767 #define RCC_BDCR_BDRST_Pos (16U)
lypinator 0:bb348c97df44 11768 #define RCC_BDCR_BDRST_Msk (0x1U << RCC_BDCR_BDRST_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 11769 #define RCC_BDCR_BDRST RCC_BDCR_BDRST_Msk
lypinator 0:bb348c97df44 11770
lypinator 0:bb348c97df44 11771 /******************** Bit definition for RCC_CSR register *******************/
lypinator 0:bb348c97df44 11772 #define RCC_CSR_LSION_Pos (0U)
lypinator 0:bb348c97df44 11773 #define RCC_CSR_LSION_Msk (0x1U << RCC_CSR_LSION_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 11774 #define RCC_CSR_LSION RCC_CSR_LSION_Msk
lypinator 0:bb348c97df44 11775 #define RCC_CSR_LSIRDY_Pos (1U)
lypinator 0:bb348c97df44 11776 #define RCC_CSR_LSIRDY_Msk (0x1U << RCC_CSR_LSIRDY_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 11777 #define RCC_CSR_LSIRDY RCC_CSR_LSIRDY_Msk
lypinator 0:bb348c97df44 11778 #define RCC_CSR_RMVF_Pos (24U)
lypinator 0:bb348c97df44 11779 #define RCC_CSR_RMVF_Msk (0x1U << RCC_CSR_RMVF_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 11780 #define RCC_CSR_RMVF RCC_CSR_RMVF_Msk
lypinator 0:bb348c97df44 11781 #define RCC_CSR_BORRSTF_Pos (25U)
lypinator 0:bb348c97df44 11782 #define RCC_CSR_BORRSTF_Msk (0x1U << RCC_CSR_BORRSTF_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 11783 #define RCC_CSR_BORRSTF RCC_CSR_BORRSTF_Msk
lypinator 0:bb348c97df44 11784 #define RCC_CSR_PINRSTF_Pos (26U)
lypinator 0:bb348c97df44 11785 #define RCC_CSR_PINRSTF_Msk (0x1U << RCC_CSR_PINRSTF_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 11786 #define RCC_CSR_PINRSTF RCC_CSR_PINRSTF_Msk
lypinator 0:bb348c97df44 11787 #define RCC_CSR_PORRSTF_Pos (27U)
lypinator 0:bb348c97df44 11788 #define RCC_CSR_PORRSTF_Msk (0x1U << RCC_CSR_PORRSTF_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 11789 #define RCC_CSR_PORRSTF RCC_CSR_PORRSTF_Msk
lypinator 0:bb348c97df44 11790 #define RCC_CSR_SFTRSTF_Pos (28U)
lypinator 0:bb348c97df44 11791 #define RCC_CSR_SFTRSTF_Msk (0x1U << RCC_CSR_SFTRSTF_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 11792 #define RCC_CSR_SFTRSTF RCC_CSR_SFTRSTF_Msk
lypinator 0:bb348c97df44 11793 #define RCC_CSR_IWDGRSTF_Pos (29U)
lypinator 0:bb348c97df44 11794 #define RCC_CSR_IWDGRSTF_Msk (0x1U << RCC_CSR_IWDGRSTF_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 11795 #define RCC_CSR_IWDGRSTF RCC_CSR_IWDGRSTF_Msk
lypinator 0:bb348c97df44 11796 #define RCC_CSR_WWDGRSTF_Pos (30U)
lypinator 0:bb348c97df44 11797 #define RCC_CSR_WWDGRSTF_Msk (0x1U << RCC_CSR_WWDGRSTF_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 11798 #define RCC_CSR_WWDGRSTF RCC_CSR_WWDGRSTF_Msk
lypinator 0:bb348c97df44 11799 #define RCC_CSR_LPWRRSTF_Pos (31U)
lypinator 0:bb348c97df44 11800 #define RCC_CSR_LPWRRSTF_Msk (0x1U << RCC_CSR_LPWRRSTF_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 11801 #define RCC_CSR_LPWRRSTF RCC_CSR_LPWRRSTF_Msk
lypinator 0:bb348c97df44 11802 /* Legacy defines */
lypinator 0:bb348c97df44 11803 #define RCC_CSR_PADRSTF RCC_CSR_PINRSTF
lypinator 0:bb348c97df44 11804 #define RCC_CSR_WDGRSTF RCC_CSR_IWDGRSTF
lypinator 0:bb348c97df44 11805
lypinator 0:bb348c97df44 11806 /******************** Bit definition for RCC_SSCGR register *****************/
lypinator 0:bb348c97df44 11807 #define RCC_SSCGR_MODPER_Pos (0U)
lypinator 0:bb348c97df44 11808 #define RCC_SSCGR_MODPER_Msk (0x1FFFU << RCC_SSCGR_MODPER_Pos) /*!< 0x00001FFF */
lypinator 0:bb348c97df44 11809 #define RCC_SSCGR_MODPER RCC_SSCGR_MODPER_Msk
lypinator 0:bb348c97df44 11810 #define RCC_SSCGR_INCSTEP_Pos (13U)
lypinator 0:bb348c97df44 11811 #define RCC_SSCGR_INCSTEP_Msk (0x7FFFU << RCC_SSCGR_INCSTEP_Pos) /*!< 0x0FFFE000 */
lypinator 0:bb348c97df44 11812 #define RCC_SSCGR_INCSTEP RCC_SSCGR_INCSTEP_Msk
lypinator 0:bb348c97df44 11813 #define RCC_SSCGR_SPREADSEL_Pos (30U)
lypinator 0:bb348c97df44 11814 #define RCC_SSCGR_SPREADSEL_Msk (0x1U << RCC_SSCGR_SPREADSEL_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 11815 #define RCC_SSCGR_SPREADSEL RCC_SSCGR_SPREADSEL_Msk
lypinator 0:bb348c97df44 11816 #define RCC_SSCGR_SSCGEN_Pos (31U)
lypinator 0:bb348c97df44 11817 #define RCC_SSCGR_SSCGEN_Msk (0x1U << RCC_SSCGR_SSCGEN_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 11818 #define RCC_SSCGR_SSCGEN RCC_SSCGR_SSCGEN_Msk
lypinator 0:bb348c97df44 11819
lypinator 0:bb348c97df44 11820 /******************** Bit definition for RCC_PLLI2SCFGR register ************/
lypinator 0:bb348c97df44 11821 #define RCC_PLLI2SCFGR_PLLI2SN_Pos (6U)
lypinator 0:bb348c97df44 11822 #define RCC_PLLI2SCFGR_PLLI2SN_Msk (0x1FFU << RCC_PLLI2SCFGR_PLLI2SN_Pos) /*!< 0x00007FC0 */
lypinator 0:bb348c97df44 11823 #define RCC_PLLI2SCFGR_PLLI2SN RCC_PLLI2SCFGR_PLLI2SN_Msk
lypinator 0:bb348c97df44 11824 #define RCC_PLLI2SCFGR_PLLI2SN_0 (0x001U << RCC_PLLI2SCFGR_PLLI2SN_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 11825 #define RCC_PLLI2SCFGR_PLLI2SN_1 (0x002U << RCC_PLLI2SCFGR_PLLI2SN_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 11826 #define RCC_PLLI2SCFGR_PLLI2SN_2 (0x004U << RCC_PLLI2SCFGR_PLLI2SN_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 11827 #define RCC_PLLI2SCFGR_PLLI2SN_3 (0x008U << RCC_PLLI2SCFGR_PLLI2SN_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 11828 #define RCC_PLLI2SCFGR_PLLI2SN_4 (0x010U << RCC_PLLI2SCFGR_PLLI2SN_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 11829 #define RCC_PLLI2SCFGR_PLLI2SN_5 (0x020U << RCC_PLLI2SCFGR_PLLI2SN_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 11830 #define RCC_PLLI2SCFGR_PLLI2SN_6 (0x040U << RCC_PLLI2SCFGR_PLLI2SN_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 11831 #define RCC_PLLI2SCFGR_PLLI2SN_7 (0x080U << RCC_PLLI2SCFGR_PLLI2SN_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 11832 #define RCC_PLLI2SCFGR_PLLI2SN_8 (0x100U << RCC_PLLI2SCFGR_PLLI2SN_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 11833
lypinator 0:bb348c97df44 11834 #define RCC_PLLI2SCFGR_PLLI2SQ_Pos (24U)
lypinator 0:bb348c97df44 11835 #define RCC_PLLI2SCFGR_PLLI2SQ_Msk (0xFU << RCC_PLLI2SCFGR_PLLI2SQ_Pos) /*!< 0x0F000000 */
lypinator 0:bb348c97df44 11836 #define RCC_PLLI2SCFGR_PLLI2SQ RCC_PLLI2SCFGR_PLLI2SQ_Msk
lypinator 0:bb348c97df44 11837 #define RCC_PLLI2SCFGR_PLLI2SQ_0 (0x1U << RCC_PLLI2SCFGR_PLLI2SQ_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 11838 #define RCC_PLLI2SCFGR_PLLI2SQ_1 (0x2U << RCC_PLLI2SCFGR_PLLI2SQ_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 11839 #define RCC_PLLI2SCFGR_PLLI2SQ_2 (0x4U << RCC_PLLI2SCFGR_PLLI2SQ_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 11840 #define RCC_PLLI2SCFGR_PLLI2SQ_3 (0x8U << RCC_PLLI2SCFGR_PLLI2SQ_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 11841 #define RCC_PLLI2SCFGR_PLLI2SR_Pos (28U)
lypinator 0:bb348c97df44 11842 #define RCC_PLLI2SCFGR_PLLI2SR_Msk (0x7U << RCC_PLLI2SCFGR_PLLI2SR_Pos) /*!< 0x70000000 */
lypinator 0:bb348c97df44 11843 #define RCC_PLLI2SCFGR_PLLI2SR RCC_PLLI2SCFGR_PLLI2SR_Msk
lypinator 0:bb348c97df44 11844 #define RCC_PLLI2SCFGR_PLLI2SR_0 (0x1U << RCC_PLLI2SCFGR_PLLI2SR_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 11845 #define RCC_PLLI2SCFGR_PLLI2SR_1 (0x2U << RCC_PLLI2SCFGR_PLLI2SR_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 11846 #define RCC_PLLI2SCFGR_PLLI2SR_2 (0x4U << RCC_PLLI2SCFGR_PLLI2SR_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 11847
lypinator 0:bb348c97df44 11848 /******************** Bit definition for RCC_PLLSAICFGR register ************/
lypinator 0:bb348c97df44 11849 #define RCC_PLLSAICFGR_PLLSAIN_Pos (6U)
lypinator 0:bb348c97df44 11850 #define RCC_PLLSAICFGR_PLLSAIN_Msk (0x1FFU << RCC_PLLSAICFGR_PLLSAIN_Pos) /*!< 0x00007FC0 */
lypinator 0:bb348c97df44 11851 #define RCC_PLLSAICFGR_PLLSAIN RCC_PLLSAICFGR_PLLSAIN_Msk
lypinator 0:bb348c97df44 11852 #define RCC_PLLSAICFGR_PLLSAIN_0 (0x001U << RCC_PLLSAICFGR_PLLSAIN_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 11853 #define RCC_PLLSAICFGR_PLLSAIN_1 (0x002U << RCC_PLLSAICFGR_PLLSAIN_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 11854 #define RCC_PLLSAICFGR_PLLSAIN_2 (0x004U << RCC_PLLSAICFGR_PLLSAIN_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 11855 #define RCC_PLLSAICFGR_PLLSAIN_3 (0x008U << RCC_PLLSAICFGR_PLLSAIN_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 11856 #define RCC_PLLSAICFGR_PLLSAIN_4 (0x010U << RCC_PLLSAICFGR_PLLSAIN_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 11857 #define RCC_PLLSAICFGR_PLLSAIN_5 (0x020U << RCC_PLLSAICFGR_PLLSAIN_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 11858 #define RCC_PLLSAICFGR_PLLSAIN_6 (0x040U << RCC_PLLSAICFGR_PLLSAIN_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 11859 #define RCC_PLLSAICFGR_PLLSAIN_7 (0x080U << RCC_PLLSAICFGR_PLLSAIN_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 11860 #define RCC_PLLSAICFGR_PLLSAIN_8 (0x100U << RCC_PLLSAICFGR_PLLSAIN_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 11861
lypinator 0:bb348c97df44 11862
lypinator 0:bb348c97df44 11863 #define RCC_PLLSAICFGR_PLLSAIQ_Pos (24U)
lypinator 0:bb348c97df44 11864 #define RCC_PLLSAICFGR_PLLSAIQ_Msk (0xFU << RCC_PLLSAICFGR_PLLSAIQ_Pos) /*!< 0x0F000000 */
lypinator 0:bb348c97df44 11865 #define RCC_PLLSAICFGR_PLLSAIQ RCC_PLLSAICFGR_PLLSAIQ_Msk
lypinator 0:bb348c97df44 11866 #define RCC_PLLSAICFGR_PLLSAIQ_0 (0x1U << RCC_PLLSAICFGR_PLLSAIQ_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 11867 #define RCC_PLLSAICFGR_PLLSAIQ_1 (0x2U << RCC_PLLSAICFGR_PLLSAIQ_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 11868 #define RCC_PLLSAICFGR_PLLSAIQ_2 (0x4U << RCC_PLLSAICFGR_PLLSAIQ_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 11869 #define RCC_PLLSAICFGR_PLLSAIQ_3 (0x8U << RCC_PLLSAICFGR_PLLSAIQ_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 11870
lypinator 0:bb348c97df44 11871 #define RCC_PLLSAICFGR_PLLSAIR_Pos (28U)
lypinator 0:bb348c97df44 11872 #define RCC_PLLSAICFGR_PLLSAIR_Msk (0x7U << RCC_PLLSAICFGR_PLLSAIR_Pos) /*!< 0x70000000 */
lypinator 0:bb348c97df44 11873 #define RCC_PLLSAICFGR_PLLSAIR RCC_PLLSAICFGR_PLLSAIR_Msk
lypinator 0:bb348c97df44 11874 #define RCC_PLLSAICFGR_PLLSAIR_0 (0x1U << RCC_PLLSAICFGR_PLLSAIR_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 11875 #define RCC_PLLSAICFGR_PLLSAIR_1 (0x2U << RCC_PLLSAICFGR_PLLSAIR_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 11876 #define RCC_PLLSAICFGR_PLLSAIR_2 (0x4U << RCC_PLLSAICFGR_PLLSAIR_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 11877
lypinator 0:bb348c97df44 11878 /******************** Bit definition for RCC_DCKCFGR register ***************/
lypinator 0:bb348c97df44 11879 #define RCC_DCKCFGR_PLLI2SDIVQ_Pos (0U)
lypinator 0:bb348c97df44 11880 #define RCC_DCKCFGR_PLLI2SDIVQ_Msk (0x1FU << RCC_DCKCFGR_PLLI2SDIVQ_Pos) /*!< 0x0000001F */
lypinator 0:bb348c97df44 11881 #define RCC_DCKCFGR_PLLI2SDIVQ RCC_DCKCFGR_PLLI2SDIVQ_Msk
lypinator 0:bb348c97df44 11882 #define RCC_DCKCFGR_PLLI2SDIVQ_0 (0x01U << RCC_DCKCFGR_PLLI2SDIVQ_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 11883 #define RCC_DCKCFGR_PLLI2SDIVQ_1 (0x02U << RCC_DCKCFGR_PLLI2SDIVQ_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 11884 #define RCC_DCKCFGR_PLLI2SDIVQ_2 (0x04U << RCC_DCKCFGR_PLLI2SDIVQ_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 11885 #define RCC_DCKCFGR_PLLI2SDIVQ_3 (0x08U << RCC_DCKCFGR_PLLI2SDIVQ_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 11886 #define RCC_DCKCFGR_PLLI2SDIVQ_4 (0x10U << RCC_DCKCFGR_PLLI2SDIVQ_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 11887
lypinator 0:bb348c97df44 11888 #define RCC_DCKCFGR_PLLSAIDIVQ_Pos (8U)
lypinator 0:bb348c97df44 11889 #define RCC_DCKCFGR_PLLSAIDIVQ_Msk (0x1FU << RCC_DCKCFGR_PLLSAIDIVQ_Pos) /*!< 0x00001F00 */
lypinator 0:bb348c97df44 11890 #define RCC_DCKCFGR_PLLSAIDIVQ RCC_DCKCFGR_PLLSAIDIVQ_Msk
lypinator 0:bb348c97df44 11891 #define RCC_DCKCFGR_PLLSAIDIVQ_0 (0x01U << RCC_DCKCFGR_PLLSAIDIVQ_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 11892 #define RCC_DCKCFGR_PLLSAIDIVQ_1 (0x02U << RCC_DCKCFGR_PLLSAIDIVQ_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 11893 #define RCC_DCKCFGR_PLLSAIDIVQ_2 (0x04U << RCC_DCKCFGR_PLLSAIDIVQ_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 11894 #define RCC_DCKCFGR_PLLSAIDIVQ_3 (0x08U << RCC_DCKCFGR_PLLSAIDIVQ_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 11895 #define RCC_DCKCFGR_PLLSAIDIVQ_4 (0x10U << RCC_DCKCFGR_PLLSAIDIVQ_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 11896 #define RCC_DCKCFGR_PLLSAIDIVR_Pos (16U)
lypinator 0:bb348c97df44 11897 #define RCC_DCKCFGR_PLLSAIDIVR_Msk (0x3U << RCC_DCKCFGR_PLLSAIDIVR_Pos) /*!< 0x00030000 */
lypinator 0:bb348c97df44 11898 #define RCC_DCKCFGR_PLLSAIDIVR RCC_DCKCFGR_PLLSAIDIVR_Msk
lypinator 0:bb348c97df44 11899 #define RCC_DCKCFGR_PLLSAIDIVR_0 (0x1U << RCC_DCKCFGR_PLLSAIDIVR_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 11900 #define RCC_DCKCFGR_PLLSAIDIVR_1 (0x2U << RCC_DCKCFGR_PLLSAIDIVR_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 11901
lypinator 0:bb348c97df44 11902 #define RCC_DCKCFGR_SAI1ASRC_Pos (20U)
lypinator 0:bb348c97df44 11903 #define RCC_DCKCFGR_SAI1ASRC_Msk (0x3U << RCC_DCKCFGR_SAI1ASRC_Pos) /*!< 0x00300000 */
lypinator 0:bb348c97df44 11904 #define RCC_DCKCFGR_SAI1ASRC RCC_DCKCFGR_SAI1ASRC_Msk
lypinator 0:bb348c97df44 11905 #define RCC_DCKCFGR_SAI1ASRC_0 (0x1U << RCC_DCKCFGR_SAI1ASRC_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 11906 #define RCC_DCKCFGR_SAI1ASRC_1 (0x2U << RCC_DCKCFGR_SAI1ASRC_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 11907 #define RCC_DCKCFGR_SAI1BSRC_Pos (22U)
lypinator 0:bb348c97df44 11908 #define RCC_DCKCFGR_SAI1BSRC_Msk (0x3U << RCC_DCKCFGR_SAI1BSRC_Pos) /*!< 0x00C00000 */
lypinator 0:bb348c97df44 11909 #define RCC_DCKCFGR_SAI1BSRC RCC_DCKCFGR_SAI1BSRC_Msk
lypinator 0:bb348c97df44 11910 #define RCC_DCKCFGR_SAI1BSRC_0 (0x1U << RCC_DCKCFGR_SAI1BSRC_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 11911 #define RCC_DCKCFGR_SAI1BSRC_1 (0x2U << RCC_DCKCFGR_SAI1BSRC_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 11912 #define RCC_DCKCFGR_TIMPRE_Pos (24U)
lypinator 0:bb348c97df44 11913 #define RCC_DCKCFGR_TIMPRE_Msk (0x1U << RCC_DCKCFGR_TIMPRE_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 11914 #define RCC_DCKCFGR_TIMPRE RCC_DCKCFGR_TIMPRE_Msk
lypinator 0:bb348c97df44 11915
lypinator 0:bb348c97df44 11916
lypinator 0:bb348c97df44 11917 /******************************************************************************/
lypinator 0:bb348c97df44 11918 /* */
lypinator 0:bb348c97df44 11919 /* RNG */
lypinator 0:bb348c97df44 11920 /* */
lypinator 0:bb348c97df44 11921 /******************************************************************************/
lypinator 0:bb348c97df44 11922 /******************** Bits definition for RNG_CR register *******************/
lypinator 0:bb348c97df44 11923 #define RNG_CR_RNGEN_Pos (2U)
lypinator 0:bb348c97df44 11924 #define RNG_CR_RNGEN_Msk (0x1U << RNG_CR_RNGEN_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 11925 #define RNG_CR_RNGEN RNG_CR_RNGEN_Msk
lypinator 0:bb348c97df44 11926 #define RNG_CR_IE_Pos (3U)
lypinator 0:bb348c97df44 11927 #define RNG_CR_IE_Msk (0x1U << RNG_CR_IE_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 11928 #define RNG_CR_IE RNG_CR_IE_Msk
lypinator 0:bb348c97df44 11929
lypinator 0:bb348c97df44 11930 /******************** Bits definition for RNG_SR register *******************/
lypinator 0:bb348c97df44 11931 #define RNG_SR_DRDY_Pos (0U)
lypinator 0:bb348c97df44 11932 #define RNG_SR_DRDY_Msk (0x1U << RNG_SR_DRDY_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 11933 #define RNG_SR_DRDY RNG_SR_DRDY_Msk
lypinator 0:bb348c97df44 11934 #define RNG_SR_CECS_Pos (1U)
lypinator 0:bb348c97df44 11935 #define RNG_SR_CECS_Msk (0x1U << RNG_SR_CECS_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 11936 #define RNG_SR_CECS RNG_SR_CECS_Msk
lypinator 0:bb348c97df44 11937 #define RNG_SR_SECS_Pos (2U)
lypinator 0:bb348c97df44 11938 #define RNG_SR_SECS_Msk (0x1U << RNG_SR_SECS_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 11939 #define RNG_SR_SECS RNG_SR_SECS_Msk
lypinator 0:bb348c97df44 11940 #define RNG_SR_CEIS_Pos (5U)
lypinator 0:bb348c97df44 11941 #define RNG_SR_CEIS_Msk (0x1U << RNG_SR_CEIS_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 11942 #define RNG_SR_CEIS RNG_SR_CEIS_Msk
lypinator 0:bb348c97df44 11943 #define RNG_SR_SEIS_Pos (6U)
lypinator 0:bb348c97df44 11944 #define RNG_SR_SEIS_Msk (0x1U << RNG_SR_SEIS_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 11945 #define RNG_SR_SEIS RNG_SR_SEIS_Msk
lypinator 0:bb348c97df44 11946
lypinator 0:bb348c97df44 11947 /******************************************************************************/
lypinator 0:bb348c97df44 11948 /* */
lypinator 0:bb348c97df44 11949 /* Real-Time Clock (RTC) */
lypinator 0:bb348c97df44 11950 /* */
lypinator 0:bb348c97df44 11951 /******************************************************************************/
lypinator 0:bb348c97df44 11952 /*
lypinator 0:bb348c97df44 11953 * @brief Specific device feature definitions (not present on all devices in the STM32F4 serie)
lypinator 0:bb348c97df44 11954 */
lypinator 0:bb348c97df44 11955 #define RTC_TAMPER2_SUPPORT /*!< TAMPER 2 feature support */
lypinator 0:bb348c97df44 11956 #define RTC_AF2_SUPPORT /*!< RTC Alternate Function 2 mapping support */
lypinator 0:bb348c97df44 11957 /******************** Bits definition for RTC_TR register *******************/
lypinator 0:bb348c97df44 11958 #define RTC_TR_PM_Pos (22U)
lypinator 0:bb348c97df44 11959 #define RTC_TR_PM_Msk (0x1U << RTC_TR_PM_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 11960 #define RTC_TR_PM RTC_TR_PM_Msk
lypinator 0:bb348c97df44 11961 #define RTC_TR_HT_Pos (20U)
lypinator 0:bb348c97df44 11962 #define RTC_TR_HT_Msk (0x3U << RTC_TR_HT_Pos) /*!< 0x00300000 */
lypinator 0:bb348c97df44 11963 #define RTC_TR_HT RTC_TR_HT_Msk
lypinator 0:bb348c97df44 11964 #define RTC_TR_HT_0 (0x1U << RTC_TR_HT_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 11965 #define RTC_TR_HT_1 (0x2U << RTC_TR_HT_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 11966 #define RTC_TR_HU_Pos (16U)
lypinator 0:bb348c97df44 11967 #define RTC_TR_HU_Msk (0xFU << RTC_TR_HU_Pos) /*!< 0x000F0000 */
lypinator 0:bb348c97df44 11968 #define RTC_TR_HU RTC_TR_HU_Msk
lypinator 0:bb348c97df44 11969 #define RTC_TR_HU_0 (0x1U << RTC_TR_HU_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 11970 #define RTC_TR_HU_1 (0x2U << RTC_TR_HU_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 11971 #define RTC_TR_HU_2 (0x4U << RTC_TR_HU_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 11972 #define RTC_TR_HU_3 (0x8U << RTC_TR_HU_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 11973 #define RTC_TR_MNT_Pos (12U)
lypinator 0:bb348c97df44 11974 #define RTC_TR_MNT_Msk (0x7U << RTC_TR_MNT_Pos) /*!< 0x00007000 */
lypinator 0:bb348c97df44 11975 #define RTC_TR_MNT RTC_TR_MNT_Msk
lypinator 0:bb348c97df44 11976 #define RTC_TR_MNT_0 (0x1U << RTC_TR_MNT_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 11977 #define RTC_TR_MNT_1 (0x2U << RTC_TR_MNT_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 11978 #define RTC_TR_MNT_2 (0x4U << RTC_TR_MNT_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 11979 #define RTC_TR_MNU_Pos (8U)
lypinator 0:bb348c97df44 11980 #define RTC_TR_MNU_Msk (0xFU << RTC_TR_MNU_Pos) /*!< 0x00000F00 */
lypinator 0:bb348c97df44 11981 #define RTC_TR_MNU RTC_TR_MNU_Msk
lypinator 0:bb348c97df44 11982 #define RTC_TR_MNU_0 (0x1U << RTC_TR_MNU_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 11983 #define RTC_TR_MNU_1 (0x2U << RTC_TR_MNU_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 11984 #define RTC_TR_MNU_2 (0x4U << RTC_TR_MNU_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 11985 #define RTC_TR_MNU_3 (0x8U << RTC_TR_MNU_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 11986 #define RTC_TR_ST_Pos (4U)
lypinator 0:bb348c97df44 11987 #define RTC_TR_ST_Msk (0x7U << RTC_TR_ST_Pos) /*!< 0x00000070 */
lypinator 0:bb348c97df44 11988 #define RTC_TR_ST RTC_TR_ST_Msk
lypinator 0:bb348c97df44 11989 #define RTC_TR_ST_0 (0x1U << RTC_TR_ST_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 11990 #define RTC_TR_ST_1 (0x2U << RTC_TR_ST_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 11991 #define RTC_TR_ST_2 (0x4U << RTC_TR_ST_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 11992 #define RTC_TR_SU_Pos (0U)
lypinator 0:bb348c97df44 11993 #define RTC_TR_SU_Msk (0xFU << RTC_TR_SU_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 11994 #define RTC_TR_SU RTC_TR_SU_Msk
lypinator 0:bb348c97df44 11995 #define RTC_TR_SU_0 (0x1U << RTC_TR_SU_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 11996 #define RTC_TR_SU_1 (0x2U << RTC_TR_SU_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 11997 #define RTC_TR_SU_2 (0x4U << RTC_TR_SU_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 11998 #define RTC_TR_SU_3 (0x8U << RTC_TR_SU_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 11999
lypinator 0:bb348c97df44 12000 /******************** Bits definition for RTC_DR register *******************/
lypinator 0:bb348c97df44 12001 #define RTC_DR_YT_Pos (20U)
lypinator 0:bb348c97df44 12002 #define RTC_DR_YT_Msk (0xFU << RTC_DR_YT_Pos) /*!< 0x00F00000 */
lypinator 0:bb348c97df44 12003 #define RTC_DR_YT RTC_DR_YT_Msk
lypinator 0:bb348c97df44 12004 #define RTC_DR_YT_0 (0x1U << RTC_DR_YT_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 12005 #define RTC_DR_YT_1 (0x2U << RTC_DR_YT_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 12006 #define RTC_DR_YT_2 (0x4U << RTC_DR_YT_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 12007 #define RTC_DR_YT_3 (0x8U << RTC_DR_YT_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 12008 #define RTC_DR_YU_Pos (16U)
lypinator 0:bb348c97df44 12009 #define RTC_DR_YU_Msk (0xFU << RTC_DR_YU_Pos) /*!< 0x000F0000 */
lypinator 0:bb348c97df44 12010 #define RTC_DR_YU RTC_DR_YU_Msk
lypinator 0:bb348c97df44 12011 #define RTC_DR_YU_0 (0x1U << RTC_DR_YU_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 12012 #define RTC_DR_YU_1 (0x2U << RTC_DR_YU_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 12013 #define RTC_DR_YU_2 (0x4U << RTC_DR_YU_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 12014 #define RTC_DR_YU_3 (0x8U << RTC_DR_YU_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 12015 #define RTC_DR_WDU_Pos (13U)
lypinator 0:bb348c97df44 12016 #define RTC_DR_WDU_Msk (0x7U << RTC_DR_WDU_Pos) /*!< 0x0000E000 */
lypinator 0:bb348c97df44 12017 #define RTC_DR_WDU RTC_DR_WDU_Msk
lypinator 0:bb348c97df44 12018 #define RTC_DR_WDU_0 (0x1U << RTC_DR_WDU_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 12019 #define RTC_DR_WDU_1 (0x2U << RTC_DR_WDU_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 12020 #define RTC_DR_WDU_2 (0x4U << RTC_DR_WDU_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 12021 #define RTC_DR_MT_Pos (12U)
lypinator 0:bb348c97df44 12022 #define RTC_DR_MT_Msk (0x1U << RTC_DR_MT_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 12023 #define RTC_DR_MT RTC_DR_MT_Msk
lypinator 0:bb348c97df44 12024 #define RTC_DR_MU_Pos (8U)
lypinator 0:bb348c97df44 12025 #define RTC_DR_MU_Msk (0xFU << RTC_DR_MU_Pos) /*!< 0x00000F00 */
lypinator 0:bb348c97df44 12026 #define RTC_DR_MU RTC_DR_MU_Msk
lypinator 0:bb348c97df44 12027 #define RTC_DR_MU_0 (0x1U << RTC_DR_MU_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 12028 #define RTC_DR_MU_1 (0x2U << RTC_DR_MU_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 12029 #define RTC_DR_MU_2 (0x4U << RTC_DR_MU_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 12030 #define RTC_DR_MU_3 (0x8U << RTC_DR_MU_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 12031 #define RTC_DR_DT_Pos (4U)
lypinator 0:bb348c97df44 12032 #define RTC_DR_DT_Msk (0x3U << RTC_DR_DT_Pos) /*!< 0x00000030 */
lypinator 0:bb348c97df44 12033 #define RTC_DR_DT RTC_DR_DT_Msk
lypinator 0:bb348c97df44 12034 #define RTC_DR_DT_0 (0x1U << RTC_DR_DT_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 12035 #define RTC_DR_DT_1 (0x2U << RTC_DR_DT_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 12036 #define RTC_DR_DU_Pos (0U)
lypinator 0:bb348c97df44 12037 #define RTC_DR_DU_Msk (0xFU << RTC_DR_DU_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 12038 #define RTC_DR_DU RTC_DR_DU_Msk
lypinator 0:bb348c97df44 12039 #define RTC_DR_DU_0 (0x1U << RTC_DR_DU_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 12040 #define RTC_DR_DU_1 (0x2U << RTC_DR_DU_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 12041 #define RTC_DR_DU_2 (0x4U << RTC_DR_DU_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 12042 #define RTC_DR_DU_3 (0x8U << RTC_DR_DU_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 12043
lypinator 0:bb348c97df44 12044 /******************** Bits definition for RTC_CR register *******************/
lypinator 0:bb348c97df44 12045 #define RTC_CR_COE_Pos (23U)
lypinator 0:bb348c97df44 12046 #define RTC_CR_COE_Msk (0x1U << RTC_CR_COE_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 12047 #define RTC_CR_COE RTC_CR_COE_Msk
lypinator 0:bb348c97df44 12048 #define RTC_CR_OSEL_Pos (21U)
lypinator 0:bb348c97df44 12049 #define RTC_CR_OSEL_Msk (0x3U << RTC_CR_OSEL_Pos) /*!< 0x00600000 */
lypinator 0:bb348c97df44 12050 #define RTC_CR_OSEL RTC_CR_OSEL_Msk
lypinator 0:bb348c97df44 12051 #define RTC_CR_OSEL_0 (0x1U << RTC_CR_OSEL_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 12052 #define RTC_CR_OSEL_1 (0x2U << RTC_CR_OSEL_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 12053 #define RTC_CR_POL_Pos (20U)
lypinator 0:bb348c97df44 12054 #define RTC_CR_POL_Msk (0x1U << RTC_CR_POL_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 12055 #define RTC_CR_POL RTC_CR_POL_Msk
lypinator 0:bb348c97df44 12056 #define RTC_CR_COSEL_Pos (19U)
lypinator 0:bb348c97df44 12057 #define RTC_CR_COSEL_Msk (0x1U << RTC_CR_COSEL_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 12058 #define RTC_CR_COSEL RTC_CR_COSEL_Msk
lypinator 0:bb348c97df44 12059 #define RTC_CR_BKP_Pos (18U)
lypinator 0:bb348c97df44 12060 #define RTC_CR_BKP_Msk (0x1U << RTC_CR_BKP_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 12061 #define RTC_CR_BKP RTC_CR_BKP_Msk
lypinator 0:bb348c97df44 12062 #define RTC_CR_SUB1H_Pos (17U)
lypinator 0:bb348c97df44 12063 #define RTC_CR_SUB1H_Msk (0x1U << RTC_CR_SUB1H_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 12064 #define RTC_CR_SUB1H RTC_CR_SUB1H_Msk
lypinator 0:bb348c97df44 12065 #define RTC_CR_ADD1H_Pos (16U)
lypinator 0:bb348c97df44 12066 #define RTC_CR_ADD1H_Msk (0x1U << RTC_CR_ADD1H_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 12067 #define RTC_CR_ADD1H RTC_CR_ADD1H_Msk
lypinator 0:bb348c97df44 12068 #define RTC_CR_TSIE_Pos (15U)
lypinator 0:bb348c97df44 12069 #define RTC_CR_TSIE_Msk (0x1U << RTC_CR_TSIE_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 12070 #define RTC_CR_TSIE RTC_CR_TSIE_Msk
lypinator 0:bb348c97df44 12071 #define RTC_CR_WUTIE_Pos (14U)
lypinator 0:bb348c97df44 12072 #define RTC_CR_WUTIE_Msk (0x1U << RTC_CR_WUTIE_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 12073 #define RTC_CR_WUTIE RTC_CR_WUTIE_Msk
lypinator 0:bb348c97df44 12074 #define RTC_CR_ALRBIE_Pos (13U)
lypinator 0:bb348c97df44 12075 #define RTC_CR_ALRBIE_Msk (0x1U << RTC_CR_ALRBIE_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 12076 #define RTC_CR_ALRBIE RTC_CR_ALRBIE_Msk
lypinator 0:bb348c97df44 12077 #define RTC_CR_ALRAIE_Pos (12U)
lypinator 0:bb348c97df44 12078 #define RTC_CR_ALRAIE_Msk (0x1U << RTC_CR_ALRAIE_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 12079 #define RTC_CR_ALRAIE RTC_CR_ALRAIE_Msk
lypinator 0:bb348c97df44 12080 #define RTC_CR_TSE_Pos (11U)
lypinator 0:bb348c97df44 12081 #define RTC_CR_TSE_Msk (0x1U << RTC_CR_TSE_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 12082 #define RTC_CR_TSE RTC_CR_TSE_Msk
lypinator 0:bb348c97df44 12083 #define RTC_CR_WUTE_Pos (10U)
lypinator 0:bb348c97df44 12084 #define RTC_CR_WUTE_Msk (0x1U << RTC_CR_WUTE_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 12085 #define RTC_CR_WUTE RTC_CR_WUTE_Msk
lypinator 0:bb348c97df44 12086 #define RTC_CR_ALRBE_Pos (9U)
lypinator 0:bb348c97df44 12087 #define RTC_CR_ALRBE_Msk (0x1U << RTC_CR_ALRBE_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 12088 #define RTC_CR_ALRBE RTC_CR_ALRBE_Msk
lypinator 0:bb348c97df44 12089 #define RTC_CR_ALRAE_Pos (8U)
lypinator 0:bb348c97df44 12090 #define RTC_CR_ALRAE_Msk (0x1U << RTC_CR_ALRAE_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 12091 #define RTC_CR_ALRAE RTC_CR_ALRAE_Msk
lypinator 0:bb348c97df44 12092 #define RTC_CR_DCE_Pos (7U)
lypinator 0:bb348c97df44 12093 #define RTC_CR_DCE_Msk (0x1U << RTC_CR_DCE_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 12094 #define RTC_CR_DCE RTC_CR_DCE_Msk
lypinator 0:bb348c97df44 12095 #define RTC_CR_FMT_Pos (6U)
lypinator 0:bb348c97df44 12096 #define RTC_CR_FMT_Msk (0x1U << RTC_CR_FMT_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 12097 #define RTC_CR_FMT RTC_CR_FMT_Msk
lypinator 0:bb348c97df44 12098 #define RTC_CR_BYPSHAD_Pos (5U)
lypinator 0:bb348c97df44 12099 #define RTC_CR_BYPSHAD_Msk (0x1U << RTC_CR_BYPSHAD_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 12100 #define RTC_CR_BYPSHAD RTC_CR_BYPSHAD_Msk
lypinator 0:bb348c97df44 12101 #define RTC_CR_REFCKON_Pos (4U)
lypinator 0:bb348c97df44 12102 #define RTC_CR_REFCKON_Msk (0x1U << RTC_CR_REFCKON_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 12103 #define RTC_CR_REFCKON RTC_CR_REFCKON_Msk
lypinator 0:bb348c97df44 12104 #define RTC_CR_TSEDGE_Pos (3U)
lypinator 0:bb348c97df44 12105 #define RTC_CR_TSEDGE_Msk (0x1U << RTC_CR_TSEDGE_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 12106 #define RTC_CR_TSEDGE RTC_CR_TSEDGE_Msk
lypinator 0:bb348c97df44 12107 #define RTC_CR_WUCKSEL_Pos (0U)
lypinator 0:bb348c97df44 12108 #define RTC_CR_WUCKSEL_Msk (0x7U << RTC_CR_WUCKSEL_Pos) /*!< 0x00000007 */
lypinator 0:bb348c97df44 12109 #define RTC_CR_WUCKSEL RTC_CR_WUCKSEL_Msk
lypinator 0:bb348c97df44 12110 #define RTC_CR_WUCKSEL_0 (0x1U << RTC_CR_WUCKSEL_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 12111 #define RTC_CR_WUCKSEL_1 (0x2U << RTC_CR_WUCKSEL_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 12112 #define RTC_CR_WUCKSEL_2 (0x4U << RTC_CR_WUCKSEL_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 12113
lypinator 0:bb348c97df44 12114 /* Legacy defines */
lypinator 0:bb348c97df44 12115 #define RTC_CR_BCK RTC_CR_BKP
lypinator 0:bb348c97df44 12116
lypinator 0:bb348c97df44 12117 /******************** Bits definition for RTC_ISR register ******************/
lypinator 0:bb348c97df44 12118 #define RTC_ISR_RECALPF_Pos (16U)
lypinator 0:bb348c97df44 12119 #define RTC_ISR_RECALPF_Msk (0x1U << RTC_ISR_RECALPF_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 12120 #define RTC_ISR_RECALPF RTC_ISR_RECALPF_Msk
lypinator 0:bb348c97df44 12121 #define RTC_ISR_TAMP1F_Pos (13U)
lypinator 0:bb348c97df44 12122 #define RTC_ISR_TAMP1F_Msk (0x1U << RTC_ISR_TAMP1F_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 12123 #define RTC_ISR_TAMP1F RTC_ISR_TAMP1F_Msk
lypinator 0:bb348c97df44 12124 #define RTC_ISR_TAMP2F_Pos (14U)
lypinator 0:bb348c97df44 12125 #define RTC_ISR_TAMP2F_Msk (0x1U << RTC_ISR_TAMP2F_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 12126 #define RTC_ISR_TAMP2F RTC_ISR_TAMP2F_Msk
lypinator 0:bb348c97df44 12127 #define RTC_ISR_TSOVF_Pos (12U)
lypinator 0:bb348c97df44 12128 #define RTC_ISR_TSOVF_Msk (0x1U << RTC_ISR_TSOVF_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 12129 #define RTC_ISR_TSOVF RTC_ISR_TSOVF_Msk
lypinator 0:bb348c97df44 12130 #define RTC_ISR_TSF_Pos (11U)
lypinator 0:bb348c97df44 12131 #define RTC_ISR_TSF_Msk (0x1U << RTC_ISR_TSF_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 12132 #define RTC_ISR_TSF RTC_ISR_TSF_Msk
lypinator 0:bb348c97df44 12133 #define RTC_ISR_WUTF_Pos (10U)
lypinator 0:bb348c97df44 12134 #define RTC_ISR_WUTF_Msk (0x1U << RTC_ISR_WUTF_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 12135 #define RTC_ISR_WUTF RTC_ISR_WUTF_Msk
lypinator 0:bb348c97df44 12136 #define RTC_ISR_ALRBF_Pos (9U)
lypinator 0:bb348c97df44 12137 #define RTC_ISR_ALRBF_Msk (0x1U << RTC_ISR_ALRBF_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 12138 #define RTC_ISR_ALRBF RTC_ISR_ALRBF_Msk
lypinator 0:bb348c97df44 12139 #define RTC_ISR_ALRAF_Pos (8U)
lypinator 0:bb348c97df44 12140 #define RTC_ISR_ALRAF_Msk (0x1U << RTC_ISR_ALRAF_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 12141 #define RTC_ISR_ALRAF RTC_ISR_ALRAF_Msk
lypinator 0:bb348c97df44 12142 #define RTC_ISR_INIT_Pos (7U)
lypinator 0:bb348c97df44 12143 #define RTC_ISR_INIT_Msk (0x1U << RTC_ISR_INIT_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 12144 #define RTC_ISR_INIT RTC_ISR_INIT_Msk
lypinator 0:bb348c97df44 12145 #define RTC_ISR_INITF_Pos (6U)
lypinator 0:bb348c97df44 12146 #define RTC_ISR_INITF_Msk (0x1U << RTC_ISR_INITF_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 12147 #define RTC_ISR_INITF RTC_ISR_INITF_Msk
lypinator 0:bb348c97df44 12148 #define RTC_ISR_RSF_Pos (5U)
lypinator 0:bb348c97df44 12149 #define RTC_ISR_RSF_Msk (0x1U << RTC_ISR_RSF_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 12150 #define RTC_ISR_RSF RTC_ISR_RSF_Msk
lypinator 0:bb348c97df44 12151 #define RTC_ISR_INITS_Pos (4U)
lypinator 0:bb348c97df44 12152 #define RTC_ISR_INITS_Msk (0x1U << RTC_ISR_INITS_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 12153 #define RTC_ISR_INITS RTC_ISR_INITS_Msk
lypinator 0:bb348c97df44 12154 #define RTC_ISR_SHPF_Pos (3U)
lypinator 0:bb348c97df44 12155 #define RTC_ISR_SHPF_Msk (0x1U << RTC_ISR_SHPF_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 12156 #define RTC_ISR_SHPF RTC_ISR_SHPF_Msk
lypinator 0:bb348c97df44 12157 #define RTC_ISR_WUTWF_Pos (2U)
lypinator 0:bb348c97df44 12158 #define RTC_ISR_WUTWF_Msk (0x1U << RTC_ISR_WUTWF_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 12159 #define RTC_ISR_WUTWF RTC_ISR_WUTWF_Msk
lypinator 0:bb348c97df44 12160 #define RTC_ISR_ALRBWF_Pos (1U)
lypinator 0:bb348c97df44 12161 #define RTC_ISR_ALRBWF_Msk (0x1U << RTC_ISR_ALRBWF_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 12162 #define RTC_ISR_ALRBWF RTC_ISR_ALRBWF_Msk
lypinator 0:bb348c97df44 12163 #define RTC_ISR_ALRAWF_Pos (0U)
lypinator 0:bb348c97df44 12164 #define RTC_ISR_ALRAWF_Msk (0x1U << RTC_ISR_ALRAWF_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 12165 #define RTC_ISR_ALRAWF RTC_ISR_ALRAWF_Msk
lypinator 0:bb348c97df44 12166
lypinator 0:bb348c97df44 12167 /******************** Bits definition for RTC_PRER register *****************/
lypinator 0:bb348c97df44 12168 #define RTC_PRER_PREDIV_A_Pos (16U)
lypinator 0:bb348c97df44 12169 #define RTC_PRER_PREDIV_A_Msk (0x7FU << RTC_PRER_PREDIV_A_Pos) /*!< 0x007F0000 */
lypinator 0:bb348c97df44 12170 #define RTC_PRER_PREDIV_A RTC_PRER_PREDIV_A_Msk
lypinator 0:bb348c97df44 12171 #define RTC_PRER_PREDIV_S_Pos (0U)
lypinator 0:bb348c97df44 12172 #define RTC_PRER_PREDIV_S_Msk (0x7FFFU << RTC_PRER_PREDIV_S_Pos) /*!< 0x00007FFF */
lypinator 0:bb348c97df44 12173 #define RTC_PRER_PREDIV_S RTC_PRER_PREDIV_S_Msk
lypinator 0:bb348c97df44 12174
lypinator 0:bb348c97df44 12175 /******************** Bits definition for RTC_WUTR register *****************/
lypinator 0:bb348c97df44 12176 #define RTC_WUTR_WUT_Pos (0U)
lypinator 0:bb348c97df44 12177 #define RTC_WUTR_WUT_Msk (0xFFFFU << RTC_WUTR_WUT_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 12178 #define RTC_WUTR_WUT RTC_WUTR_WUT_Msk
lypinator 0:bb348c97df44 12179
lypinator 0:bb348c97df44 12180 /******************** Bits definition for RTC_CALIBR register ***************/
lypinator 0:bb348c97df44 12181 #define RTC_CALIBR_DCS_Pos (7U)
lypinator 0:bb348c97df44 12182 #define RTC_CALIBR_DCS_Msk (0x1U << RTC_CALIBR_DCS_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 12183 #define RTC_CALIBR_DCS RTC_CALIBR_DCS_Msk
lypinator 0:bb348c97df44 12184 #define RTC_CALIBR_DC_Pos (0U)
lypinator 0:bb348c97df44 12185 #define RTC_CALIBR_DC_Msk (0x1FU << RTC_CALIBR_DC_Pos) /*!< 0x0000001F */
lypinator 0:bb348c97df44 12186 #define RTC_CALIBR_DC RTC_CALIBR_DC_Msk
lypinator 0:bb348c97df44 12187
lypinator 0:bb348c97df44 12188 /******************** Bits definition for RTC_ALRMAR register ***************/
lypinator 0:bb348c97df44 12189 #define RTC_ALRMAR_MSK4_Pos (31U)
lypinator 0:bb348c97df44 12190 #define RTC_ALRMAR_MSK4_Msk (0x1U << RTC_ALRMAR_MSK4_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 12191 #define RTC_ALRMAR_MSK4 RTC_ALRMAR_MSK4_Msk
lypinator 0:bb348c97df44 12192 #define RTC_ALRMAR_WDSEL_Pos (30U)
lypinator 0:bb348c97df44 12193 #define RTC_ALRMAR_WDSEL_Msk (0x1U << RTC_ALRMAR_WDSEL_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 12194 #define RTC_ALRMAR_WDSEL RTC_ALRMAR_WDSEL_Msk
lypinator 0:bb348c97df44 12195 #define RTC_ALRMAR_DT_Pos (28U)
lypinator 0:bb348c97df44 12196 #define RTC_ALRMAR_DT_Msk (0x3U << RTC_ALRMAR_DT_Pos) /*!< 0x30000000 */
lypinator 0:bb348c97df44 12197 #define RTC_ALRMAR_DT RTC_ALRMAR_DT_Msk
lypinator 0:bb348c97df44 12198 #define RTC_ALRMAR_DT_0 (0x1U << RTC_ALRMAR_DT_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 12199 #define RTC_ALRMAR_DT_1 (0x2U << RTC_ALRMAR_DT_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 12200 #define RTC_ALRMAR_DU_Pos (24U)
lypinator 0:bb348c97df44 12201 #define RTC_ALRMAR_DU_Msk (0xFU << RTC_ALRMAR_DU_Pos) /*!< 0x0F000000 */
lypinator 0:bb348c97df44 12202 #define RTC_ALRMAR_DU RTC_ALRMAR_DU_Msk
lypinator 0:bb348c97df44 12203 #define RTC_ALRMAR_DU_0 (0x1U << RTC_ALRMAR_DU_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 12204 #define RTC_ALRMAR_DU_1 (0x2U << RTC_ALRMAR_DU_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 12205 #define RTC_ALRMAR_DU_2 (0x4U << RTC_ALRMAR_DU_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 12206 #define RTC_ALRMAR_DU_3 (0x8U << RTC_ALRMAR_DU_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 12207 #define RTC_ALRMAR_MSK3_Pos (23U)
lypinator 0:bb348c97df44 12208 #define RTC_ALRMAR_MSK3_Msk (0x1U << RTC_ALRMAR_MSK3_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 12209 #define RTC_ALRMAR_MSK3 RTC_ALRMAR_MSK3_Msk
lypinator 0:bb348c97df44 12210 #define RTC_ALRMAR_PM_Pos (22U)
lypinator 0:bb348c97df44 12211 #define RTC_ALRMAR_PM_Msk (0x1U << RTC_ALRMAR_PM_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 12212 #define RTC_ALRMAR_PM RTC_ALRMAR_PM_Msk
lypinator 0:bb348c97df44 12213 #define RTC_ALRMAR_HT_Pos (20U)
lypinator 0:bb348c97df44 12214 #define RTC_ALRMAR_HT_Msk (0x3U << RTC_ALRMAR_HT_Pos) /*!< 0x00300000 */
lypinator 0:bb348c97df44 12215 #define RTC_ALRMAR_HT RTC_ALRMAR_HT_Msk
lypinator 0:bb348c97df44 12216 #define RTC_ALRMAR_HT_0 (0x1U << RTC_ALRMAR_HT_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 12217 #define RTC_ALRMAR_HT_1 (0x2U << RTC_ALRMAR_HT_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 12218 #define RTC_ALRMAR_HU_Pos (16U)
lypinator 0:bb348c97df44 12219 #define RTC_ALRMAR_HU_Msk (0xFU << RTC_ALRMAR_HU_Pos) /*!< 0x000F0000 */
lypinator 0:bb348c97df44 12220 #define RTC_ALRMAR_HU RTC_ALRMAR_HU_Msk
lypinator 0:bb348c97df44 12221 #define RTC_ALRMAR_HU_0 (0x1U << RTC_ALRMAR_HU_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 12222 #define RTC_ALRMAR_HU_1 (0x2U << RTC_ALRMAR_HU_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 12223 #define RTC_ALRMAR_HU_2 (0x4U << RTC_ALRMAR_HU_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 12224 #define RTC_ALRMAR_HU_3 (0x8U << RTC_ALRMAR_HU_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 12225 #define RTC_ALRMAR_MSK2_Pos (15U)
lypinator 0:bb348c97df44 12226 #define RTC_ALRMAR_MSK2_Msk (0x1U << RTC_ALRMAR_MSK2_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 12227 #define RTC_ALRMAR_MSK2 RTC_ALRMAR_MSK2_Msk
lypinator 0:bb348c97df44 12228 #define RTC_ALRMAR_MNT_Pos (12U)
lypinator 0:bb348c97df44 12229 #define RTC_ALRMAR_MNT_Msk (0x7U << RTC_ALRMAR_MNT_Pos) /*!< 0x00007000 */
lypinator 0:bb348c97df44 12230 #define RTC_ALRMAR_MNT RTC_ALRMAR_MNT_Msk
lypinator 0:bb348c97df44 12231 #define RTC_ALRMAR_MNT_0 (0x1U << RTC_ALRMAR_MNT_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 12232 #define RTC_ALRMAR_MNT_1 (0x2U << RTC_ALRMAR_MNT_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 12233 #define RTC_ALRMAR_MNT_2 (0x4U << RTC_ALRMAR_MNT_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 12234 #define RTC_ALRMAR_MNU_Pos (8U)
lypinator 0:bb348c97df44 12235 #define RTC_ALRMAR_MNU_Msk (0xFU << RTC_ALRMAR_MNU_Pos) /*!< 0x00000F00 */
lypinator 0:bb348c97df44 12236 #define RTC_ALRMAR_MNU RTC_ALRMAR_MNU_Msk
lypinator 0:bb348c97df44 12237 #define RTC_ALRMAR_MNU_0 (0x1U << RTC_ALRMAR_MNU_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 12238 #define RTC_ALRMAR_MNU_1 (0x2U << RTC_ALRMAR_MNU_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 12239 #define RTC_ALRMAR_MNU_2 (0x4U << RTC_ALRMAR_MNU_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 12240 #define RTC_ALRMAR_MNU_3 (0x8U << RTC_ALRMAR_MNU_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 12241 #define RTC_ALRMAR_MSK1_Pos (7U)
lypinator 0:bb348c97df44 12242 #define RTC_ALRMAR_MSK1_Msk (0x1U << RTC_ALRMAR_MSK1_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 12243 #define RTC_ALRMAR_MSK1 RTC_ALRMAR_MSK1_Msk
lypinator 0:bb348c97df44 12244 #define RTC_ALRMAR_ST_Pos (4U)
lypinator 0:bb348c97df44 12245 #define RTC_ALRMAR_ST_Msk (0x7U << RTC_ALRMAR_ST_Pos) /*!< 0x00000070 */
lypinator 0:bb348c97df44 12246 #define RTC_ALRMAR_ST RTC_ALRMAR_ST_Msk
lypinator 0:bb348c97df44 12247 #define RTC_ALRMAR_ST_0 (0x1U << RTC_ALRMAR_ST_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 12248 #define RTC_ALRMAR_ST_1 (0x2U << RTC_ALRMAR_ST_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 12249 #define RTC_ALRMAR_ST_2 (0x4U << RTC_ALRMAR_ST_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 12250 #define RTC_ALRMAR_SU_Pos (0U)
lypinator 0:bb348c97df44 12251 #define RTC_ALRMAR_SU_Msk (0xFU << RTC_ALRMAR_SU_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 12252 #define RTC_ALRMAR_SU RTC_ALRMAR_SU_Msk
lypinator 0:bb348c97df44 12253 #define RTC_ALRMAR_SU_0 (0x1U << RTC_ALRMAR_SU_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 12254 #define RTC_ALRMAR_SU_1 (0x2U << RTC_ALRMAR_SU_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 12255 #define RTC_ALRMAR_SU_2 (0x4U << RTC_ALRMAR_SU_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 12256 #define RTC_ALRMAR_SU_3 (0x8U << RTC_ALRMAR_SU_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 12257
lypinator 0:bb348c97df44 12258 /******************** Bits definition for RTC_ALRMBR register ***************/
lypinator 0:bb348c97df44 12259 #define RTC_ALRMBR_MSK4_Pos (31U)
lypinator 0:bb348c97df44 12260 #define RTC_ALRMBR_MSK4_Msk (0x1U << RTC_ALRMBR_MSK4_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 12261 #define RTC_ALRMBR_MSK4 RTC_ALRMBR_MSK4_Msk
lypinator 0:bb348c97df44 12262 #define RTC_ALRMBR_WDSEL_Pos (30U)
lypinator 0:bb348c97df44 12263 #define RTC_ALRMBR_WDSEL_Msk (0x1U << RTC_ALRMBR_WDSEL_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 12264 #define RTC_ALRMBR_WDSEL RTC_ALRMBR_WDSEL_Msk
lypinator 0:bb348c97df44 12265 #define RTC_ALRMBR_DT_Pos (28U)
lypinator 0:bb348c97df44 12266 #define RTC_ALRMBR_DT_Msk (0x3U << RTC_ALRMBR_DT_Pos) /*!< 0x30000000 */
lypinator 0:bb348c97df44 12267 #define RTC_ALRMBR_DT RTC_ALRMBR_DT_Msk
lypinator 0:bb348c97df44 12268 #define RTC_ALRMBR_DT_0 (0x1U << RTC_ALRMBR_DT_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 12269 #define RTC_ALRMBR_DT_1 (0x2U << RTC_ALRMBR_DT_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 12270 #define RTC_ALRMBR_DU_Pos (24U)
lypinator 0:bb348c97df44 12271 #define RTC_ALRMBR_DU_Msk (0xFU << RTC_ALRMBR_DU_Pos) /*!< 0x0F000000 */
lypinator 0:bb348c97df44 12272 #define RTC_ALRMBR_DU RTC_ALRMBR_DU_Msk
lypinator 0:bb348c97df44 12273 #define RTC_ALRMBR_DU_0 (0x1U << RTC_ALRMBR_DU_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 12274 #define RTC_ALRMBR_DU_1 (0x2U << RTC_ALRMBR_DU_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 12275 #define RTC_ALRMBR_DU_2 (0x4U << RTC_ALRMBR_DU_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 12276 #define RTC_ALRMBR_DU_3 (0x8U << RTC_ALRMBR_DU_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 12277 #define RTC_ALRMBR_MSK3_Pos (23U)
lypinator 0:bb348c97df44 12278 #define RTC_ALRMBR_MSK3_Msk (0x1U << RTC_ALRMBR_MSK3_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 12279 #define RTC_ALRMBR_MSK3 RTC_ALRMBR_MSK3_Msk
lypinator 0:bb348c97df44 12280 #define RTC_ALRMBR_PM_Pos (22U)
lypinator 0:bb348c97df44 12281 #define RTC_ALRMBR_PM_Msk (0x1U << RTC_ALRMBR_PM_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 12282 #define RTC_ALRMBR_PM RTC_ALRMBR_PM_Msk
lypinator 0:bb348c97df44 12283 #define RTC_ALRMBR_HT_Pos (20U)
lypinator 0:bb348c97df44 12284 #define RTC_ALRMBR_HT_Msk (0x3U << RTC_ALRMBR_HT_Pos) /*!< 0x00300000 */
lypinator 0:bb348c97df44 12285 #define RTC_ALRMBR_HT RTC_ALRMBR_HT_Msk
lypinator 0:bb348c97df44 12286 #define RTC_ALRMBR_HT_0 (0x1U << RTC_ALRMBR_HT_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 12287 #define RTC_ALRMBR_HT_1 (0x2U << RTC_ALRMBR_HT_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 12288 #define RTC_ALRMBR_HU_Pos (16U)
lypinator 0:bb348c97df44 12289 #define RTC_ALRMBR_HU_Msk (0xFU << RTC_ALRMBR_HU_Pos) /*!< 0x000F0000 */
lypinator 0:bb348c97df44 12290 #define RTC_ALRMBR_HU RTC_ALRMBR_HU_Msk
lypinator 0:bb348c97df44 12291 #define RTC_ALRMBR_HU_0 (0x1U << RTC_ALRMBR_HU_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 12292 #define RTC_ALRMBR_HU_1 (0x2U << RTC_ALRMBR_HU_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 12293 #define RTC_ALRMBR_HU_2 (0x4U << RTC_ALRMBR_HU_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 12294 #define RTC_ALRMBR_HU_3 (0x8U << RTC_ALRMBR_HU_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 12295 #define RTC_ALRMBR_MSK2_Pos (15U)
lypinator 0:bb348c97df44 12296 #define RTC_ALRMBR_MSK2_Msk (0x1U << RTC_ALRMBR_MSK2_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 12297 #define RTC_ALRMBR_MSK2 RTC_ALRMBR_MSK2_Msk
lypinator 0:bb348c97df44 12298 #define RTC_ALRMBR_MNT_Pos (12U)
lypinator 0:bb348c97df44 12299 #define RTC_ALRMBR_MNT_Msk (0x7U << RTC_ALRMBR_MNT_Pos) /*!< 0x00007000 */
lypinator 0:bb348c97df44 12300 #define RTC_ALRMBR_MNT RTC_ALRMBR_MNT_Msk
lypinator 0:bb348c97df44 12301 #define RTC_ALRMBR_MNT_0 (0x1U << RTC_ALRMBR_MNT_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 12302 #define RTC_ALRMBR_MNT_1 (0x2U << RTC_ALRMBR_MNT_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 12303 #define RTC_ALRMBR_MNT_2 (0x4U << RTC_ALRMBR_MNT_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 12304 #define RTC_ALRMBR_MNU_Pos (8U)
lypinator 0:bb348c97df44 12305 #define RTC_ALRMBR_MNU_Msk (0xFU << RTC_ALRMBR_MNU_Pos) /*!< 0x00000F00 */
lypinator 0:bb348c97df44 12306 #define RTC_ALRMBR_MNU RTC_ALRMBR_MNU_Msk
lypinator 0:bb348c97df44 12307 #define RTC_ALRMBR_MNU_0 (0x1U << RTC_ALRMBR_MNU_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 12308 #define RTC_ALRMBR_MNU_1 (0x2U << RTC_ALRMBR_MNU_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 12309 #define RTC_ALRMBR_MNU_2 (0x4U << RTC_ALRMBR_MNU_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 12310 #define RTC_ALRMBR_MNU_3 (0x8U << RTC_ALRMBR_MNU_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 12311 #define RTC_ALRMBR_MSK1_Pos (7U)
lypinator 0:bb348c97df44 12312 #define RTC_ALRMBR_MSK1_Msk (0x1U << RTC_ALRMBR_MSK1_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 12313 #define RTC_ALRMBR_MSK1 RTC_ALRMBR_MSK1_Msk
lypinator 0:bb348c97df44 12314 #define RTC_ALRMBR_ST_Pos (4U)
lypinator 0:bb348c97df44 12315 #define RTC_ALRMBR_ST_Msk (0x7U << RTC_ALRMBR_ST_Pos) /*!< 0x00000070 */
lypinator 0:bb348c97df44 12316 #define RTC_ALRMBR_ST RTC_ALRMBR_ST_Msk
lypinator 0:bb348c97df44 12317 #define RTC_ALRMBR_ST_0 (0x1U << RTC_ALRMBR_ST_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 12318 #define RTC_ALRMBR_ST_1 (0x2U << RTC_ALRMBR_ST_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 12319 #define RTC_ALRMBR_ST_2 (0x4U << RTC_ALRMBR_ST_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 12320 #define RTC_ALRMBR_SU_Pos (0U)
lypinator 0:bb348c97df44 12321 #define RTC_ALRMBR_SU_Msk (0xFU << RTC_ALRMBR_SU_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 12322 #define RTC_ALRMBR_SU RTC_ALRMBR_SU_Msk
lypinator 0:bb348c97df44 12323 #define RTC_ALRMBR_SU_0 (0x1U << RTC_ALRMBR_SU_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 12324 #define RTC_ALRMBR_SU_1 (0x2U << RTC_ALRMBR_SU_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 12325 #define RTC_ALRMBR_SU_2 (0x4U << RTC_ALRMBR_SU_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 12326 #define RTC_ALRMBR_SU_3 (0x8U << RTC_ALRMBR_SU_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 12327
lypinator 0:bb348c97df44 12328 /******************** Bits definition for RTC_WPR register ******************/
lypinator 0:bb348c97df44 12329 #define RTC_WPR_KEY_Pos (0U)
lypinator 0:bb348c97df44 12330 #define RTC_WPR_KEY_Msk (0xFFU << RTC_WPR_KEY_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 12331 #define RTC_WPR_KEY RTC_WPR_KEY_Msk
lypinator 0:bb348c97df44 12332
lypinator 0:bb348c97df44 12333 /******************** Bits definition for RTC_SSR register ******************/
lypinator 0:bb348c97df44 12334 #define RTC_SSR_SS_Pos (0U)
lypinator 0:bb348c97df44 12335 #define RTC_SSR_SS_Msk (0xFFFFU << RTC_SSR_SS_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 12336 #define RTC_SSR_SS RTC_SSR_SS_Msk
lypinator 0:bb348c97df44 12337
lypinator 0:bb348c97df44 12338 /******************** Bits definition for RTC_SHIFTR register ***************/
lypinator 0:bb348c97df44 12339 #define RTC_SHIFTR_SUBFS_Pos (0U)
lypinator 0:bb348c97df44 12340 #define RTC_SHIFTR_SUBFS_Msk (0x7FFFU << RTC_SHIFTR_SUBFS_Pos) /*!< 0x00007FFF */
lypinator 0:bb348c97df44 12341 #define RTC_SHIFTR_SUBFS RTC_SHIFTR_SUBFS_Msk
lypinator 0:bb348c97df44 12342 #define RTC_SHIFTR_ADD1S_Pos (31U)
lypinator 0:bb348c97df44 12343 #define RTC_SHIFTR_ADD1S_Msk (0x1U << RTC_SHIFTR_ADD1S_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 12344 #define RTC_SHIFTR_ADD1S RTC_SHIFTR_ADD1S_Msk
lypinator 0:bb348c97df44 12345
lypinator 0:bb348c97df44 12346 /******************** Bits definition for RTC_TSTR register *****************/
lypinator 0:bb348c97df44 12347 #define RTC_TSTR_PM_Pos (22U)
lypinator 0:bb348c97df44 12348 #define RTC_TSTR_PM_Msk (0x1U << RTC_TSTR_PM_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 12349 #define RTC_TSTR_PM RTC_TSTR_PM_Msk
lypinator 0:bb348c97df44 12350 #define RTC_TSTR_HT_Pos (20U)
lypinator 0:bb348c97df44 12351 #define RTC_TSTR_HT_Msk (0x3U << RTC_TSTR_HT_Pos) /*!< 0x00300000 */
lypinator 0:bb348c97df44 12352 #define RTC_TSTR_HT RTC_TSTR_HT_Msk
lypinator 0:bb348c97df44 12353 #define RTC_TSTR_HT_0 (0x1U << RTC_TSTR_HT_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 12354 #define RTC_TSTR_HT_1 (0x2U << RTC_TSTR_HT_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 12355 #define RTC_TSTR_HU_Pos (16U)
lypinator 0:bb348c97df44 12356 #define RTC_TSTR_HU_Msk (0xFU << RTC_TSTR_HU_Pos) /*!< 0x000F0000 */
lypinator 0:bb348c97df44 12357 #define RTC_TSTR_HU RTC_TSTR_HU_Msk
lypinator 0:bb348c97df44 12358 #define RTC_TSTR_HU_0 (0x1U << RTC_TSTR_HU_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 12359 #define RTC_TSTR_HU_1 (0x2U << RTC_TSTR_HU_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 12360 #define RTC_TSTR_HU_2 (0x4U << RTC_TSTR_HU_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 12361 #define RTC_TSTR_HU_3 (0x8U << RTC_TSTR_HU_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 12362 #define RTC_TSTR_MNT_Pos (12U)
lypinator 0:bb348c97df44 12363 #define RTC_TSTR_MNT_Msk (0x7U << RTC_TSTR_MNT_Pos) /*!< 0x00007000 */
lypinator 0:bb348c97df44 12364 #define RTC_TSTR_MNT RTC_TSTR_MNT_Msk
lypinator 0:bb348c97df44 12365 #define RTC_TSTR_MNT_0 (0x1U << RTC_TSTR_MNT_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 12366 #define RTC_TSTR_MNT_1 (0x2U << RTC_TSTR_MNT_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 12367 #define RTC_TSTR_MNT_2 (0x4U << RTC_TSTR_MNT_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 12368 #define RTC_TSTR_MNU_Pos (8U)
lypinator 0:bb348c97df44 12369 #define RTC_TSTR_MNU_Msk (0xFU << RTC_TSTR_MNU_Pos) /*!< 0x00000F00 */
lypinator 0:bb348c97df44 12370 #define RTC_TSTR_MNU RTC_TSTR_MNU_Msk
lypinator 0:bb348c97df44 12371 #define RTC_TSTR_MNU_0 (0x1U << RTC_TSTR_MNU_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 12372 #define RTC_TSTR_MNU_1 (0x2U << RTC_TSTR_MNU_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 12373 #define RTC_TSTR_MNU_2 (0x4U << RTC_TSTR_MNU_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 12374 #define RTC_TSTR_MNU_3 (0x8U << RTC_TSTR_MNU_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 12375 #define RTC_TSTR_ST_Pos (4U)
lypinator 0:bb348c97df44 12376 #define RTC_TSTR_ST_Msk (0x7U << RTC_TSTR_ST_Pos) /*!< 0x00000070 */
lypinator 0:bb348c97df44 12377 #define RTC_TSTR_ST RTC_TSTR_ST_Msk
lypinator 0:bb348c97df44 12378 #define RTC_TSTR_ST_0 (0x1U << RTC_TSTR_ST_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 12379 #define RTC_TSTR_ST_1 (0x2U << RTC_TSTR_ST_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 12380 #define RTC_TSTR_ST_2 (0x4U << RTC_TSTR_ST_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 12381 #define RTC_TSTR_SU_Pos (0U)
lypinator 0:bb348c97df44 12382 #define RTC_TSTR_SU_Msk (0xFU << RTC_TSTR_SU_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 12383 #define RTC_TSTR_SU RTC_TSTR_SU_Msk
lypinator 0:bb348c97df44 12384 #define RTC_TSTR_SU_0 (0x1U << RTC_TSTR_SU_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 12385 #define RTC_TSTR_SU_1 (0x2U << RTC_TSTR_SU_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 12386 #define RTC_TSTR_SU_2 (0x4U << RTC_TSTR_SU_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 12387 #define RTC_TSTR_SU_3 (0x8U << RTC_TSTR_SU_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 12388
lypinator 0:bb348c97df44 12389 /******************** Bits definition for RTC_TSDR register *****************/
lypinator 0:bb348c97df44 12390 #define RTC_TSDR_WDU_Pos (13U)
lypinator 0:bb348c97df44 12391 #define RTC_TSDR_WDU_Msk (0x7U << RTC_TSDR_WDU_Pos) /*!< 0x0000E000 */
lypinator 0:bb348c97df44 12392 #define RTC_TSDR_WDU RTC_TSDR_WDU_Msk
lypinator 0:bb348c97df44 12393 #define RTC_TSDR_WDU_0 (0x1U << RTC_TSDR_WDU_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 12394 #define RTC_TSDR_WDU_1 (0x2U << RTC_TSDR_WDU_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 12395 #define RTC_TSDR_WDU_2 (0x4U << RTC_TSDR_WDU_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 12396 #define RTC_TSDR_MT_Pos (12U)
lypinator 0:bb348c97df44 12397 #define RTC_TSDR_MT_Msk (0x1U << RTC_TSDR_MT_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 12398 #define RTC_TSDR_MT RTC_TSDR_MT_Msk
lypinator 0:bb348c97df44 12399 #define RTC_TSDR_MU_Pos (8U)
lypinator 0:bb348c97df44 12400 #define RTC_TSDR_MU_Msk (0xFU << RTC_TSDR_MU_Pos) /*!< 0x00000F00 */
lypinator 0:bb348c97df44 12401 #define RTC_TSDR_MU RTC_TSDR_MU_Msk
lypinator 0:bb348c97df44 12402 #define RTC_TSDR_MU_0 (0x1U << RTC_TSDR_MU_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 12403 #define RTC_TSDR_MU_1 (0x2U << RTC_TSDR_MU_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 12404 #define RTC_TSDR_MU_2 (0x4U << RTC_TSDR_MU_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 12405 #define RTC_TSDR_MU_3 (0x8U << RTC_TSDR_MU_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 12406 #define RTC_TSDR_DT_Pos (4U)
lypinator 0:bb348c97df44 12407 #define RTC_TSDR_DT_Msk (0x3U << RTC_TSDR_DT_Pos) /*!< 0x00000030 */
lypinator 0:bb348c97df44 12408 #define RTC_TSDR_DT RTC_TSDR_DT_Msk
lypinator 0:bb348c97df44 12409 #define RTC_TSDR_DT_0 (0x1U << RTC_TSDR_DT_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 12410 #define RTC_TSDR_DT_1 (0x2U << RTC_TSDR_DT_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 12411 #define RTC_TSDR_DU_Pos (0U)
lypinator 0:bb348c97df44 12412 #define RTC_TSDR_DU_Msk (0xFU << RTC_TSDR_DU_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 12413 #define RTC_TSDR_DU RTC_TSDR_DU_Msk
lypinator 0:bb348c97df44 12414 #define RTC_TSDR_DU_0 (0x1U << RTC_TSDR_DU_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 12415 #define RTC_TSDR_DU_1 (0x2U << RTC_TSDR_DU_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 12416 #define RTC_TSDR_DU_2 (0x4U << RTC_TSDR_DU_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 12417 #define RTC_TSDR_DU_3 (0x8U << RTC_TSDR_DU_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 12418
lypinator 0:bb348c97df44 12419 /******************** Bits definition for RTC_TSSSR register ****************/
lypinator 0:bb348c97df44 12420 #define RTC_TSSSR_SS_Pos (0U)
lypinator 0:bb348c97df44 12421 #define RTC_TSSSR_SS_Msk (0xFFFFU << RTC_TSSSR_SS_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 12422 #define RTC_TSSSR_SS RTC_TSSSR_SS_Msk
lypinator 0:bb348c97df44 12423
lypinator 0:bb348c97df44 12424 /******************** Bits definition for RTC_CAL register *****************/
lypinator 0:bb348c97df44 12425 #define RTC_CALR_CALP_Pos (15U)
lypinator 0:bb348c97df44 12426 #define RTC_CALR_CALP_Msk (0x1U << RTC_CALR_CALP_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 12427 #define RTC_CALR_CALP RTC_CALR_CALP_Msk
lypinator 0:bb348c97df44 12428 #define RTC_CALR_CALW8_Pos (14U)
lypinator 0:bb348c97df44 12429 #define RTC_CALR_CALW8_Msk (0x1U << RTC_CALR_CALW8_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 12430 #define RTC_CALR_CALW8 RTC_CALR_CALW8_Msk
lypinator 0:bb348c97df44 12431 #define RTC_CALR_CALW16_Pos (13U)
lypinator 0:bb348c97df44 12432 #define RTC_CALR_CALW16_Msk (0x1U << RTC_CALR_CALW16_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 12433 #define RTC_CALR_CALW16 RTC_CALR_CALW16_Msk
lypinator 0:bb348c97df44 12434 #define RTC_CALR_CALM_Pos (0U)
lypinator 0:bb348c97df44 12435 #define RTC_CALR_CALM_Msk (0x1FFU << RTC_CALR_CALM_Pos) /*!< 0x000001FF */
lypinator 0:bb348c97df44 12436 #define RTC_CALR_CALM RTC_CALR_CALM_Msk
lypinator 0:bb348c97df44 12437 #define RTC_CALR_CALM_0 (0x001U << RTC_CALR_CALM_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 12438 #define RTC_CALR_CALM_1 (0x002U << RTC_CALR_CALM_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 12439 #define RTC_CALR_CALM_2 (0x004U << RTC_CALR_CALM_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 12440 #define RTC_CALR_CALM_3 (0x008U << RTC_CALR_CALM_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 12441 #define RTC_CALR_CALM_4 (0x010U << RTC_CALR_CALM_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 12442 #define RTC_CALR_CALM_5 (0x020U << RTC_CALR_CALM_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 12443 #define RTC_CALR_CALM_6 (0x040U << RTC_CALR_CALM_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 12444 #define RTC_CALR_CALM_7 (0x080U << RTC_CALR_CALM_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 12445 #define RTC_CALR_CALM_8 (0x100U << RTC_CALR_CALM_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 12446
lypinator 0:bb348c97df44 12447 /******************** Bits definition for RTC_TAFCR register ****************/
lypinator 0:bb348c97df44 12448 #define RTC_TAFCR_ALARMOUTTYPE_Pos (18U)
lypinator 0:bb348c97df44 12449 #define RTC_TAFCR_ALARMOUTTYPE_Msk (0x1U << RTC_TAFCR_ALARMOUTTYPE_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 12450 #define RTC_TAFCR_ALARMOUTTYPE RTC_TAFCR_ALARMOUTTYPE_Msk
lypinator 0:bb348c97df44 12451 #define RTC_TAFCR_TSINSEL_Pos (17U)
lypinator 0:bb348c97df44 12452 #define RTC_TAFCR_TSINSEL_Msk (0x1U << RTC_TAFCR_TSINSEL_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 12453 #define RTC_TAFCR_TSINSEL RTC_TAFCR_TSINSEL_Msk
lypinator 0:bb348c97df44 12454 #define RTC_TAFCR_TAMP1INSEL_Pos (16U)
lypinator 0:bb348c97df44 12455 #define RTC_TAFCR_TAMP1INSEL_Msk (0x1U << RTC_TAFCR_TAMP1INSEL_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 12456 #define RTC_TAFCR_TAMP1INSEL RTC_TAFCR_TAMP1INSEL_Msk
lypinator 0:bb348c97df44 12457 #define RTC_TAFCR_TAMPPUDIS_Pos (15U)
lypinator 0:bb348c97df44 12458 #define RTC_TAFCR_TAMPPUDIS_Msk (0x1U << RTC_TAFCR_TAMPPUDIS_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 12459 #define RTC_TAFCR_TAMPPUDIS RTC_TAFCR_TAMPPUDIS_Msk
lypinator 0:bb348c97df44 12460 #define RTC_TAFCR_TAMPPRCH_Pos (13U)
lypinator 0:bb348c97df44 12461 #define RTC_TAFCR_TAMPPRCH_Msk (0x3U << RTC_TAFCR_TAMPPRCH_Pos) /*!< 0x00006000 */
lypinator 0:bb348c97df44 12462 #define RTC_TAFCR_TAMPPRCH RTC_TAFCR_TAMPPRCH_Msk
lypinator 0:bb348c97df44 12463 #define RTC_TAFCR_TAMPPRCH_0 (0x1U << RTC_TAFCR_TAMPPRCH_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 12464 #define RTC_TAFCR_TAMPPRCH_1 (0x2U << RTC_TAFCR_TAMPPRCH_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 12465 #define RTC_TAFCR_TAMPFLT_Pos (11U)
lypinator 0:bb348c97df44 12466 #define RTC_TAFCR_TAMPFLT_Msk (0x3U << RTC_TAFCR_TAMPFLT_Pos) /*!< 0x00001800 */
lypinator 0:bb348c97df44 12467 #define RTC_TAFCR_TAMPFLT RTC_TAFCR_TAMPFLT_Msk
lypinator 0:bb348c97df44 12468 #define RTC_TAFCR_TAMPFLT_0 (0x1U << RTC_TAFCR_TAMPFLT_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 12469 #define RTC_TAFCR_TAMPFLT_1 (0x2U << RTC_TAFCR_TAMPFLT_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 12470 #define RTC_TAFCR_TAMPFREQ_Pos (8U)
lypinator 0:bb348c97df44 12471 #define RTC_TAFCR_TAMPFREQ_Msk (0x7U << RTC_TAFCR_TAMPFREQ_Pos) /*!< 0x00000700 */
lypinator 0:bb348c97df44 12472 #define RTC_TAFCR_TAMPFREQ RTC_TAFCR_TAMPFREQ_Msk
lypinator 0:bb348c97df44 12473 #define RTC_TAFCR_TAMPFREQ_0 (0x1U << RTC_TAFCR_TAMPFREQ_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 12474 #define RTC_TAFCR_TAMPFREQ_1 (0x2U << RTC_TAFCR_TAMPFREQ_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 12475 #define RTC_TAFCR_TAMPFREQ_2 (0x4U << RTC_TAFCR_TAMPFREQ_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 12476 #define RTC_TAFCR_TAMPTS_Pos (7U)
lypinator 0:bb348c97df44 12477 #define RTC_TAFCR_TAMPTS_Msk (0x1U << RTC_TAFCR_TAMPTS_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 12478 #define RTC_TAFCR_TAMPTS RTC_TAFCR_TAMPTS_Msk
lypinator 0:bb348c97df44 12479 #define RTC_TAFCR_TAMP2TRG_Pos (4U)
lypinator 0:bb348c97df44 12480 #define RTC_TAFCR_TAMP2TRG_Msk (0x1U << RTC_TAFCR_TAMP2TRG_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 12481 #define RTC_TAFCR_TAMP2TRG RTC_TAFCR_TAMP2TRG_Msk
lypinator 0:bb348c97df44 12482 #define RTC_TAFCR_TAMP2E_Pos (3U)
lypinator 0:bb348c97df44 12483 #define RTC_TAFCR_TAMP2E_Msk (0x1U << RTC_TAFCR_TAMP2E_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 12484 #define RTC_TAFCR_TAMP2E RTC_TAFCR_TAMP2E_Msk
lypinator 0:bb348c97df44 12485 #define RTC_TAFCR_TAMPIE_Pos (2U)
lypinator 0:bb348c97df44 12486 #define RTC_TAFCR_TAMPIE_Msk (0x1U << RTC_TAFCR_TAMPIE_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 12487 #define RTC_TAFCR_TAMPIE RTC_TAFCR_TAMPIE_Msk
lypinator 0:bb348c97df44 12488 #define RTC_TAFCR_TAMP1TRG_Pos (1U)
lypinator 0:bb348c97df44 12489 #define RTC_TAFCR_TAMP1TRG_Msk (0x1U << RTC_TAFCR_TAMP1TRG_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 12490 #define RTC_TAFCR_TAMP1TRG RTC_TAFCR_TAMP1TRG_Msk
lypinator 0:bb348c97df44 12491 #define RTC_TAFCR_TAMP1E_Pos (0U)
lypinator 0:bb348c97df44 12492 #define RTC_TAFCR_TAMP1E_Msk (0x1U << RTC_TAFCR_TAMP1E_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 12493 #define RTC_TAFCR_TAMP1E RTC_TAFCR_TAMP1E_Msk
lypinator 0:bb348c97df44 12494
lypinator 0:bb348c97df44 12495 /* Legacy defines */
lypinator 0:bb348c97df44 12496 #define RTC_TAFCR_TAMPINSEL RTC_TAFCR_TAMP1INSEL
lypinator 0:bb348c97df44 12497
lypinator 0:bb348c97df44 12498 /******************** Bits definition for RTC_ALRMASSR register *************/
lypinator 0:bb348c97df44 12499 #define RTC_ALRMASSR_MASKSS_Pos (24U)
lypinator 0:bb348c97df44 12500 #define RTC_ALRMASSR_MASKSS_Msk (0xFU << RTC_ALRMASSR_MASKSS_Pos) /*!< 0x0F000000 */
lypinator 0:bb348c97df44 12501 #define RTC_ALRMASSR_MASKSS RTC_ALRMASSR_MASKSS_Msk
lypinator 0:bb348c97df44 12502 #define RTC_ALRMASSR_MASKSS_0 (0x1U << RTC_ALRMASSR_MASKSS_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 12503 #define RTC_ALRMASSR_MASKSS_1 (0x2U << RTC_ALRMASSR_MASKSS_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 12504 #define RTC_ALRMASSR_MASKSS_2 (0x4U << RTC_ALRMASSR_MASKSS_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 12505 #define RTC_ALRMASSR_MASKSS_3 (0x8U << RTC_ALRMASSR_MASKSS_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 12506 #define RTC_ALRMASSR_SS_Pos (0U)
lypinator 0:bb348c97df44 12507 #define RTC_ALRMASSR_SS_Msk (0x7FFFU << RTC_ALRMASSR_SS_Pos) /*!< 0x00007FFF */
lypinator 0:bb348c97df44 12508 #define RTC_ALRMASSR_SS RTC_ALRMASSR_SS_Msk
lypinator 0:bb348c97df44 12509
lypinator 0:bb348c97df44 12510 /******************** Bits definition for RTC_ALRMBSSR register *************/
lypinator 0:bb348c97df44 12511 #define RTC_ALRMBSSR_MASKSS_Pos (24U)
lypinator 0:bb348c97df44 12512 #define RTC_ALRMBSSR_MASKSS_Msk (0xFU << RTC_ALRMBSSR_MASKSS_Pos) /*!< 0x0F000000 */
lypinator 0:bb348c97df44 12513 #define RTC_ALRMBSSR_MASKSS RTC_ALRMBSSR_MASKSS_Msk
lypinator 0:bb348c97df44 12514 #define RTC_ALRMBSSR_MASKSS_0 (0x1U << RTC_ALRMBSSR_MASKSS_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 12515 #define RTC_ALRMBSSR_MASKSS_1 (0x2U << RTC_ALRMBSSR_MASKSS_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 12516 #define RTC_ALRMBSSR_MASKSS_2 (0x4U << RTC_ALRMBSSR_MASKSS_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 12517 #define RTC_ALRMBSSR_MASKSS_3 (0x8U << RTC_ALRMBSSR_MASKSS_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 12518 #define RTC_ALRMBSSR_SS_Pos (0U)
lypinator 0:bb348c97df44 12519 #define RTC_ALRMBSSR_SS_Msk (0x7FFFU << RTC_ALRMBSSR_SS_Pos) /*!< 0x00007FFF */
lypinator 0:bb348c97df44 12520 #define RTC_ALRMBSSR_SS RTC_ALRMBSSR_SS_Msk
lypinator 0:bb348c97df44 12521
lypinator 0:bb348c97df44 12522 /******************** Bits definition for RTC_BKP0R register ****************/
lypinator 0:bb348c97df44 12523 #define RTC_BKP0R_Pos (0U)
lypinator 0:bb348c97df44 12524 #define RTC_BKP0R_Msk (0xFFFFFFFFU << RTC_BKP0R_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 12525 #define RTC_BKP0R RTC_BKP0R_Msk
lypinator 0:bb348c97df44 12526
lypinator 0:bb348c97df44 12527 /******************** Bits definition for RTC_BKP1R register ****************/
lypinator 0:bb348c97df44 12528 #define RTC_BKP1R_Pos (0U)
lypinator 0:bb348c97df44 12529 #define RTC_BKP1R_Msk (0xFFFFFFFFU << RTC_BKP1R_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 12530 #define RTC_BKP1R RTC_BKP1R_Msk
lypinator 0:bb348c97df44 12531
lypinator 0:bb348c97df44 12532 /******************** Bits definition for RTC_BKP2R register ****************/
lypinator 0:bb348c97df44 12533 #define RTC_BKP2R_Pos (0U)
lypinator 0:bb348c97df44 12534 #define RTC_BKP2R_Msk (0xFFFFFFFFU << RTC_BKP2R_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 12535 #define RTC_BKP2R RTC_BKP2R_Msk
lypinator 0:bb348c97df44 12536
lypinator 0:bb348c97df44 12537 /******************** Bits definition for RTC_BKP3R register ****************/
lypinator 0:bb348c97df44 12538 #define RTC_BKP3R_Pos (0U)
lypinator 0:bb348c97df44 12539 #define RTC_BKP3R_Msk (0xFFFFFFFFU << RTC_BKP3R_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 12540 #define RTC_BKP3R RTC_BKP3R_Msk
lypinator 0:bb348c97df44 12541
lypinator 0:bb348c97df44 12542 /******************** Bits definition for RTC_BKP4R register ****************/
lypinator 0:bb348c97df44 12543 #define RTC_BKP4R_Pos (0U)
lypinator 0:bb348c97df44 12544 #define RTC_BKP4R_Msk (0xFFFFFFFFU << RTC_BKP4R_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 12545 #define RTC_BKP4R RTC_BKP4R_Msk
lypinator 0:bb348c97df44 12546
lypinator 0:bb348c97df44 12547 /******************** Bits definition for RTC_BKP5R register ****************/
lypinator 0:bb348c97df44 12548 #define RTC_BKP5R_Pos (0U)
lypinator 0:bb348c97df44 12549 #define RTC_BKP5R_Msk (0xFFFFFFFFU << RTC_BKP5R_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 12550 #define RTC_BKP5R RTC_BKP5R_Msk
lypinator 0:bb348c97df44 12551
lypinator 0:bb348c97df44 12552 /******************** Bits definition for RTC_BKP6R register ****************/
lypinator 0:bb348c97df44 12553 #define RTC_BKP6R_Pos (0U)
lypinator 0:bb348c97df44 12554 #define RTC_BKP6R_Msk (0xFFFFFFFFU << RTC_BKP6R_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 12555 #define RTC_BKP6R RTC_BKP6R_Msk
lypinator 0:bb348c97df44 12556
lypinator 0:bb348c97df44 12557 /******************** Bits definition for RTC_BKP7R register ****************/
lypinator 0:bb348c97df44 12558 #define RTC_BKP7R_Pos (0U)
lypinator 0:bb348c97df44 12559 #define RTC_BKP7R_Msk (0xFFFFFFFFU << RTC_BKP7R_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 12560 #define RTC_BKP7R RTC_BKP7R_Msk
lypinator 0:bb348c97df44 12561
lypinator 0:bb348c97df44 12562 /******************** Bits definition for RTC_BKP8R register ****************/
lypinator 0:bb348c97df44 12563 #define RTC_BKP8R_Pos (0U)
lypinator 0:bb348c97df44 12564 #define RTC_BKP8R_Msk (0xFFFFFFFFU << RTC_BKP8R_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 12565 #define RTC_BKP8R RTC_BKP8R_Msk
lypinator 0:bb348c97df44 12566
lypinator 0:bb348c97df44 12567 /******************** Bits definition for RTC_BKP9R register ****************/
lypinator 0:bb348c97df44 12568 #define RTC_BKP9R_Pos (0U)
lypinator 0:bb348c97df44 12569 #define RTC_BKP9R_Msk (0xFFFFFFFFU << RTC_BKP9R_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 12570 #define RTC_BKP9R RTC_BKP9R_Msk
lypinator 0:bb348c97df44 12571
lypinator 0:bb348c97df44 12572 /******************** Bits definition for RTC_BKP10R register ***************/
lypinator 0:bb348c97df44 12573 #define RTC_BKP10R_Pos (0U)
lypinator 0:bb348c97df44 12574 #define RTC_BKP10R_Msk (0xFFFFFFFFU << RTC_BKP10R_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 12575 #define RTC_BKP10R RTC_BKP10R_Msk
lypinator 0:bb348c97df44 12576
lypinator 0:bb348c97df44 12577 /******************** Bits definition for RTC_BKP11R register ***************/
lypinator 0:bb348c97df44 12578 #define RTC_BKP11R_Pos (0U)
lypinator 0:bb348c97df44 12579 #define RTC_BKP11R_Msk (0xFFFFFFFFU << RTC_BKP11R_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 12580 #define RTC_BKP11R RTC_BKP11R_Msk
lypinator 0:bb348c97df44 12581
lypinator 0:bb348c97df44 12582 /******************** Bits definition for RTC_BKP12R register ***************/
lypinator 0:bb348c97df44 12583 #define RTC_BKP12R_Pos (0U)
lypinator 0:bb348c97df44 12584 #define RTC_BKP12R_Msk (0xFFFFFFFFU << RTC_BKP12R_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 12585 #define RTC_BKP12R RTC_BKP12R_Msk
lypinator 0:bb348c97df44 12586
lypinator 0:bb348c97df44 12587 /******************** Bits definition for RTC_BKP13R register ***************/
lypinator 0:bb348c97df44 12588 #define RTC_BKP13R_Pos (0U)
lypinator 0:bb348c97df44 12589 #define RTC_BKP13R_Msk (0xFFFFFFFFU << RTC_BKP13R_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 12590 #define RTC_BKP13R RTC_BKP13R_Msk
lypinator 0:bb348c97df44 12591
lypinator 0:bb348c97df44 12592 /******************** Bits definition for RTC_BKP14R register ***************/
lypinator 0:bb348c97df44 12593 #define RTC_BKP14R_Pos (0U)
lypinator 0:bb348c97df44 12594 #define RTC_BKP14R_Msk (0xFFFFFFFFU << RTC_BKP14R_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 12595 #define RTC_BKP14R RTC_BKP14R_Msk
lypinator 0:bb348c97df44 12596
lypinator 0:bb348c97df44 12597 /******************** Bits definition for RTC_BKP15R register ***************/
lypinator 0:bb348c97df44 12598 #define RTC_BKP15R_Pos (0U)
lypinator 0:bb348c97df44 12599 #define RTC_BKP15R_Msk (0xFFFFFFFFU << RTC_BKP15R_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 12600 #define RTC_BKP15R RTC_BKP15R_Msk
lypinator 0:bb348c97df44 12601
lypinator 0:bb348c97df44 12602 /******************** Bits definition for RTC_BKP16R register ***************/
lypinator 0:bb348c97df44 12603 #define RTC_BKP16R_Pos (0U)
lypinator 0:bb348c97df44 12604 #define RTC_BKP16R_Msk (0xFFFFFFFFU << RTC_BKP16R_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 12605 #define RTC_BKP16R RTC_BKP16R_Msk
lypinator 0:bb348c97df44 12606
lypinator 0:bb348c97df44 12607 /******************** Bits definition for RTC_BKP17R register ***************/
lypinator 0:bb348c97df44 12608 #define RTC_BKP17R_Pos (0U)
lypinator 0:bb348c97df44 12609 #define RTC_BKP17R_Msk (0xFFFFFFFFU << RTC_BKP17R_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 12610 #define RTC_BKP17R RTC_BKP17R_Msk
lypinator 0:bb348c97df44 12611
lypinator 0:bb348c97df44 12612 /******************** Bits definition for RTC_BKP18R register ***************/
lypinator 0:bb348c97df44 12613 #define RTC_BKP18R_Pos (0U)
lypinator 0:bb348c97df44 12614 #define RTC_BKP18R_Msk (0xFFFFFFFFU << RTC_BKP18R_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 12615 #define RTC_BKP18R RTC_BKP18R_Msk
lypinator 0:bb348c97df44 12616
lypinator 0:bb348c97df44 12617 /******************** Bits definition for RTC_BKP19R register ***************/
lypinator 0:bb348c97df44 12618 #define RTC_BKP19R_Pos (0U)
lypinator 0:bb348c97df44 12619 #define RTC_BKP19R_Msk (0xFFFFFFFFU << RTC_BKP19R_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 12620 #define RTC_BKP19R RTC_BKP19R_Msk
lypinator 0:bb348c97df44 12621
lypinator 0:bb348c97df44 12622 /******************** Number of backup registers ******************************/
lypinator 0:bb348c97df44 12623 #define RTC_BKP_NUMBER 0x000000014U
lypinator 0:bb348c97df44 12624
lypinator 0:bb348c97df44 12625 /******************************************************************************/
lypinator 0:bb348c97df44 12626 /* */
lypinator 0:bb348c97df44 12627 /* Serial Audio Interface */
lypinator 0:bb348c97df44 12628 /* */
lypinator 0:bb348c97df44 12629 /******************************************************************************/
lypinator 0:bb348c97df44 12630 /******************** Bit definition for SAI_GCR register *******************/
lypinator 0:bb348c97df44 12631 #define SAI_GCR_SYNCIN_Pos (0U)
lypinator 0:bb348c97df44 12632 #define SAI_GCR_SYNCIN_Msk (0x3U << SAI_GCR_SYNCIN_Pos) /*!< 0x00000003 */
lypinator 0:bb348c97df44 12633 #define SAI_GCR_SYNCIN SAI_GCR_SYNCIN_Msk /*!<SYNCIN[1:0] bits (Synchronization Inputs) */
lypinator 0:bb348c97df44 12634 #define SAI_GCR_SYNCIN_0 (0x1U << SAI_GCR_SYNCIN_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 12635 #define SAI_GCR_SYNCIN_1 (0x2U << SAI_GCR_SYNCIN_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 12636
lypinator 0:bb348c97df44 12637 #define SAI_GCR_SYNCOUT_Pos (4U)
lypinator 0:bb348c97df44 12638 #define SAI_GCR_SYNCOUT_Msk (0x3U << SAI_GCR_SYNCOUT_Pos) /*!< 0x00000030 */
lypinator 0:bb348c97df44 12639 #define SAI_GCR_SYNCOUT SAI_GCR_SYNCOUT_Msk /*!<SYNCOUT[1:0] bits (Synchronization Outputs) */
lypinator 0:bb348c97df44 12640 #define SAI_GCR_SYNCOUT_0 (0x1U << SAI_GCR_SYNCOUT_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 12641 #define SAI_GCR_SYNCOUT_1 (0x2U << SAI_GCR_SYNCOUT_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 12642
lypinator 0:bb348c97df44 12643 /******************* Bit definition for SAI_xCR1 register *******************/
lypinator 0:bb348c97df44 12644 #define SAI_xCR1_MODE_Pos (0U)
lypinator 0:bb348c97df44 12645 #define SAI_xCR1_MODE_Msk (0x3U << SAI_xCR1_MODE_Pos) /*!< 0x00000003 */
lypinator 0:bb348c97df44 12646 #define SAI_xCR1_MODE SAI_xCR1_MODE_Msk /*!<MODE[1:0] bits (Audio Block Mode) */
lypinator 0:bb348c97df44 12647 #define SAI_xCR1_MODE_0 (0x1U << SAI_xCR1_MODE_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 12648 #define SAI_xCR1_MODE_1 (0x2U << SAI_xCR1_MODE_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 12649
lypinator 0:bb348c97df44 12650 #define SAI_xCR1_PRTCFG_Pos (2U)
lypinator 0:bb348c97df44 12651 #define SAI_xCR1_PRTCFG_Msk (0x3U << SAI_xCR1_PRTCFG_Pos) /*!< 0x0000000C */
lypinator 0:bb348c97df44 12652 #define SAI_xCR1_PRTCFG SAI_xCR1_PRTCFG_Msk /*!<PRTCFG[1:0] bits (Protocol Configuration) */
lypinator 0:bb348c97df44 12653 #define SAI_xCR1_PRTCFG_0 (0x1U << SAI_xCR1_PRTCFG_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 12654 #define SAI_xCR1_PRTCFG_1 (0x2U << SAI_xCR1_PRTCFG_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 12655
lypinator 0:bb348c97df44 12656 #define SAI_xCR1_DS_Pos (5U)
lypinator 0:bb348c97df44 12657 #define SAI_xCR1_DS_Msk (0x7U << SAI_xCR1_DS_Pos) /*!< 0x000000E0 */
lypinator 0:bb348c97df44 12658 #define SAI_xCR1_DS SAI_xCR1_DS_Msk /*!<DS[1:0] bits (Data Size) */
lypinator 0:bb348c97df44 12659 #define SAI_xCR1_DS_0 (0x1U << SAI_xCR1_DS_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 12660 #define SAI_xCR1_DS_1 (0x2U << SAI_xCR1_DS_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 12661 #define SAI_xCR1_DS_2 (0x4U << SAI_xCR1_DS_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 12662
lypinator 0:bb348c97df44 12663 #define SAI_xCR1_LSBFIRST_Pos (8U)
lypinator 0:bb348c97df44 12664 #define SAI_xCR1_LSBFIRST_Msk (0x1U << SAI_xCR1_LSBFIRST_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 12665 #define SAI_xCR1_LSBFIRST SAI_xCR1_LSBFIRST_Msk /*!<LSB First Configuration */
lypinator 0:bb348c97df44 12666 #define SAI_xCR1_CKSTR_Pos (9U)
lypinator 0:bb348c97df44 12667 #define SAI_xCR1_CKSTR_Msk (0x1U << SAI_xCR1_CKSTR_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 12668 #define SAI_xCR1_CKSTR SAI_xCR1_CKSTR_Msk /*!<ClocK STRobing edge */
lypinator 0:bb348c97df44 12669
lypinator 0:bb348c97df44 12670 #define SAI_xCR1_SYNCEN_Pos (10U)
lypinator 0:bb348c97df44 12671 #define SAI_xCR1_SYNCEN_Msk (0x3U << SAI_xCR1_SYNCEN_Pos) /*!< 0x00000C00 */
lypinator 0:bb348c97df44 12672 #define SAI_xCR1_SYNCEN SAI_xCR1_SYNCEN_Msk /*!<SYNCEN[1:0](SYNChronization ENable) */
lypinator 0:bb348c97df44 12673 #define SAI_xCR1_SYNCEN_0 (0x1U << SAI_xCR1_SYNCEN_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 12674 #define SAI_xCR1_SYNCEN_1 (0x2U << SAI_xCR1_SYNCEN_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 12675
lypinator 0:bb348c97df44 12676 #define SAI_xCR1_MONO_Pos (12U)
lypinator 0:bb348c97df44 12677 #define SAI_xCR1_MONO_Msk (0x1U << SAI_xCR1_MONO_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 12678 #define SAI_xCR1_MONO SAI_xCR1_MONO_Msk /*!<Mono mode */
lypinator 0:bb348c97df44 12679 #define SAI_xCR1_OUTDRIV_Pos (13U)
lypinator 0:bb348c97df44 12680 #define SAI_xCR1_OUTDRIV_Msk (0x1U << SAI_xCR1_OUTDRIV_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 12681 #define SAI_xCR1_OUTDRIV SAI_xCR1_OUTDRIV_Msk /*!<Output Drive */
lypinator 0:bb348c97df44 12682 #define SAI_xCR1_SAIEN_Pos (16U)
lypinator 0:bb348c97df44 12683 #define SAI_xCR1_SAIEN_Msk (0x1U << SAI_xCR1_SAIEN_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 12684 #define SAI_xCR1_SAIEN SAI_xCR1_SAIEN_Msk /*!<Audio Block enable */
lypinator 0:bb348c97df44 12685 #define SAI_xCR1_DMAEN_Pos (17U)
lypinator 0:bb348c97df44 12686 #define SAI_xCR1_DMAEN_Msk (0x1U << SAI_xCR1_DMAEN_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 12687 #define SAI_xCR1_DMAEN SAI_xCR1_DMAEN_Msk /*!<DMA enable */
lypinator 0:bb348c97df44 12688 #define SAI_xCR1_NODIV_Pos (19U)
lypinator 0:bb348c97df44 12689 #define SAI_xCR1_NODIV_Msk (0x1U << SAI_xCR1_NODIV_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 12690 #define SAI_xCR1_NODIV SAI_xCR1_NODIV_Msk /*!<No Divider Configuration */
lypinator 0:bb348c97df44 12691
lypinator 0:bb348c97df44 12692 #define SAI_xCR1_MCKDIV_Pos (20U)
lypinator 0:bb348c97df44 12693 #define SAI_xCR1_MCKDIV_Msk (0xFU << SAI_xCR1_MCKDIV_Pos) /*!< 0x00F00000 */
lypinator 0:bb348c97df44 12694 #define SAI_xCR1_MCKDIV SAI_xCR1_MCKDIV_Msk /*!<MCKDIV[3:0] (Master ClocK Divider) */
lypinator 0:bb348c97df44 12695 #define SAI_xCR1_MCKDIV_0 (0x1U << SAI_xCR1_MCKDIV_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 12696 #define SAI_xCR1_MCKDIV_1 (0x2U << SAI_xCR1_MCKDIV_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 12697 #define SAI_xCR1_MCKDIV_2 (0x4U << SAI_xCR1_MCKDIV_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 12698 #define SAI_xCR1_MCKDIV_3 (0x8U << SAI_xCR1_MCKDIV_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 12699
lypinator 0:bb348c97df44 12700 /******************* Bit definition for SAI_xCR2 register *******************/
lypinator 0:bb348c97df44 12701 #define SAI_xCR2_FTH_Pos (0U)
lypinator 0:bb348c97df44 12702 #define SAI_xCR2_FTH_Msk (0x7U << SAI_xCR2_FTH_Pos) /*!< 0x00000007 */
lypinator 0:bb348c97df44 12703 #define SAI_xCR2_FTH SAI_xCR2_FTH_Msk /*!<FTH[2:0](Fifo THreshold) */
lypinator 0:bb348c97df44 12704 #define SAI_xCR2_FTH_0 (0x1U << SAI_xCR2_FTH_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 12705 #define SAI_xCR2_FTH_1 (0x2U << SAI_xCR2_FTH_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 12706 #define SAI_xCR2_FTH_2 (0x4U << SAI_xCR2_FTH_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 12707
lypinator 0:bb348c97df44 12708 #define SAI_xCR2_FFLUSH_Pos (3U)
lypinator 0:bb348c97df44 12709 #define SAI_xCR2_FFLUSH_Msk (0x1U << SAI_xCR2_FFLUSH_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 12710 #define SAI_xCR2_FFLUSH SAI_xCR2_FFLUSH_Msk /*!<Fifo FLUSH */
lypinator 0:bb348c97df44 12711 #define SAI_xCR2_TRIS_Pos (4U)
lypinator 0:bb348c97df44 12712 #define SAI_xCR2_TRIS_Msk (0x1U << SAI_xCR2_TRIS_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 12713 #define SAI_xCR2_TRIS SAI_xCR2_TRIS_Msk /*!<TRIState Management on data line */
lypinator 0:bb348c97df44 12714 #define SAI_xCR2_MUTE_Pos (5U)
lypinator 0:bb348c97df44 12715 #define SAI_xCR2_MUTE_Msk (0x1U << SAI_xCR2_MUTE_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 12716 #define SAI_xCR2_MUTE SAI_xCR2_MUTE_Msk /*!<Mute mode */
lypinator 0:bb348c97df44 12717 #define SAI_xCR2_MUTEVAL_Pos (6U)
lypinator 0:bb348c97df44 12718 #define SAI_xCR2_MUTEVAL_Msk (0x1U << SAI_xCR2_MUTEVAL_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 12719 #define SAI_xCR2_MUTEVAL SAI_xCR2_MUTEVAL_Msk /*!<Muate value */
lypinator 0:bb348c97df44 12720
lypinator 0:bb348c97df44 12721 #define SAI_xCR2_MUTECNT_Pos (7U)
lypinator 0:bb348c97df44 12722 #define SAI_xCR2_MUTECNT_Msk (0x3FU << SAI_xCR2_MUTECNT_Pos) /*!< 0x00001F80 */
lypinator 0:bb348c97df44 12723 #define SAI_xCR2_MUTECNT SAI_xCR2_MUTECNT_Msk /*!<MUTECNT[5:0] (MUTE counter) */
lypinator 0:bb348c97df44 12724 #define SAI_xCR2_MUTECNT_0 (0x01U << SAI_xCR2_MUTECNT_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 12725 #define SAI_xCR2_MUTECNT_1 (0x02U << SAI_xCR2_MUTECNT_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 12726 #define SAI_xCR2_MUTECNT_2 (0x04U << SAI_xCR2_MUTECNT_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 12727 #define SAI_xCR2_MUTECNT_3 (0x08U << SAI_xCR2_MUTECNT_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 12728 #define SAI_xCR2_MUTECNT_4 (0x10U << SAI_xCR2_MUTECNT_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 12729 #define SAI_xCR2_MUTECNT_5 (0x20U << SAI_xCR2_MUTECNT_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 12730
lypinator 0:bb348c97df44 12731 #define SAI_xCR2_CPL_Pos (13U)
lypinator 0:bb348c97df44 12732 #define SAI_xCR2_CPL_Msk (0x1U << SAI_xCR2_CPL_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 12733 #define SAI_xCR2_CPL SAI_xCR2_CPL_Msk /*!< Complement Bit */
lypinator 0:bb348c97df44 12734
lypinator 0:bb348c97df44 12735 #define SAI_xCR2_COMP_Pos (14U)
lypinator 0:bb348c97df44 12736 #define SAI_xCR2_COMP_Msk (0x3U << SAI_xCR2_COMP_Pos) /*!< 0x0000C000 */
lypinator 0:bb348c97df44 12737 #define SAI_xCR2_COMP SAI_xCR2_COMP_Msk /*!<COMP[1:0] (Companding mode) */
lypinator 0:bb348c97df44 12738 #define SAI_xCR2_COMP_0 (0x1U << SAI_xCR2_COMP_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 12739 #define SAI_xCR2_COMP_1 (0x2U << SAI_xCR2_COMP_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 12740
lypinator 0:bb348c97df44 12741 /****************** Bit definition for SAI_xFRCR register *******************/
lypinator 0:bb348c97df44 12742 #define SAI_xFRCR_FRL_Pos (0U)
lypinator 0:bb348c97df44 12743 #define SAI_xFRCR_FRL_Msk (0xFFU << SAI_xFRCR_FRL_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 12744 #define SAI_xFRCR_FRL SAI_xFRCR_FRL_Msk /*!<FRL[1:0](Frame length) */
lypinator 0:bb348c97df44 12745 #define SAI_xFRCR_FRL_0 (0x01U << SAI_xFRCR_FRL_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 12746 #define SAI_xFRCR_FRL_1 (0x02U << SAI_xFRCR_FRL_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 12747 #define SAI_xFRCR_FRL_2 (0x04U << SAI_xFRCR_FRL_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 12748 #define SAI_xFRCR_FRL_3 (0x08U << SAI_xFRCR_FRL_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 12749 #define SAI_xFRCR_FRL_4 (0x10U << SAI_xFRCR_FRL_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 12750 #define SAI_xFRCR_FRL_5 (0x20U << SAI_xFRCR_FRL_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 12751 #define SAI_xFRCR_FRL_6 (0x40U << SAI_xFRCR_FRL_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 12752 #define SAI_xFRCR_FRL_7 (0x80U << SAI_xFRCR_FRL_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 12753
lypinator 0:bb348c97df44 12754 #define SAI_xFRCR_FSALL_Pos (8U)
lypinator 0:bb348c97df44 12755 #define SAI_xFRCR_FSALL_Msk (0x7FU << SAI_xFRCR_FSALL_Pos) /*!< 0x00007F00 */
lypinator 0:bb348c97df44 12756 #define SAI_xFRCR_FSALL SAI_xFRCR_FSALL_Msk /*!<FRL[1:0] (Frame synchronization active level length) */
lypinator 0:bb348c97df44 12757 #define SAI_xFRCR_FSALL_0 (0x01U << SAI_xFRCR_FSALL_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 12758 #define SAI_xFRCR_FSALL_1 (0x02U << SAI_xFRCR_FSALL_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 12759 #define SAI_xFRCR_FSALL_2 (0x04U << SAI_xFRCR_FSALL_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 12760 #define SAI_xFRCR_FSALL_3 (0x08U << SAI_xFRCR_FSALL_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 12761 #define SAI_xFRCR_FSALL_4 (0x10U << SAI_xFRCR_FSALL_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 12762 #define SAI_xFRCR_FSALL_5 (0x20U << SAI_xFRCR_FSALL_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 12763 #define SAI_xFRCR_FSALL_6 (0x40U << SAI_xFRCR_FSALL_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 12764
lypinator 0:bb348c97df44 12765 #define SAI_xFRCR_FSDEF_Pos (16U)
lypinator 0:bb348c97df44 12766 #define SAI_xFRCR_FSDEF_Msk (0x1U << SAI_xFRCR_FSDEF_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 12767 #define SAI_xFRCR_FSDEF SAI_xFRCR_FSDEF_Msk /*!< Frame Synchronization Definition */
lypinator 0:bb348c97df44 12768 #define SAI_xFRCR_FSPOL_Pos (17U)
lypinator 0:bb348c97df44 12769 #define SAI_xFRCR_FSPOL_Msk (0x1U << SAI_xFRCR_FSPOL_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 12770 #define SAI_xFRCR_FSPOL SAI_xFRCR_FSPOL_Msk /*!<Frame Synchronization POLarity */
lypinator 0:bb348c97df44 12771 #define SAI_xFRCR_FSOFF_Pos (18U)
lypinator 0:bb348c97df44 12772 #define SAI_xFRCR_FSOFF_Msk (0x1U << SAI_xFRCR_FSOFF_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 12773 #define SAI_xFRCR_FSOFF SAI_xFRCR_FSOFF_Msk /*!<Frame Synchronization OFFset */
lypinator 0:bb348c97df44 12774 /* Legacy defines */
lypinator 0:bb348c97df44 12775 #define SAI_xFRCR_FSPO SAI_xFRCR_FSPOL
lypinator 0:bb348c97df44 12776
lypinator 0:bb348c97df44 12777 /****************** Bit definition for SAI_xSLOTR register *******************/
lypinator 0:bb348c97df44 12778 #define SAI_xSLOTR_FBOFF_Pos (0U)
lypinator 0:bb348c97df44 12779 #define SAI_xSLOTR_FBOFF_Msk (0x1FU << SAI_xSLOTR_FBOFF_Pos) /*!< 0x0000001F */
lypinator 0:bb348c97df44 12780 #define SAI_xSLOTR_FBOFF SAI_xSLOTR_FBOFF_Msk /*!<FRL[4:0](First Bit Offset) */
lypinator 0:bb348c97df44 12781 #define SAI_xSLOTR_FBOFF_0 (0x01U << SAI_xSLOTR_FBOFF_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 12782 #define SAI_xSLOTR_FBOFF_1 (0x02U << SAI_xSLOTR_FBOFF_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 12783 #define SAI_xSLOTR_FBOFF_2 (0x04U << SAI_xSLOTR_FBOFF_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 12784 #define SAI_xSLOTR_FBOFF_3 (0x08U << SAI_xSLOTR_FBOFF_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 12785 #define SAI_xSLOTR_FBOFF_4 (0x10U << SAI_xSLOTR_FBOFF_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 12786
lypinator 0:bb348c97df44 12787 #define SAI_xSLOTR_SLOTSZ_Pos (6U)
lypinator 0:bb348c97df44 12788 #define SAI_xSLOTR_SLOTSZ_Msk (0x3U << SAI_xSLOTR_SLOTSZ_Pos) /*!< 0x000000C0 */
lypinator 0:bb348c97df44 12789 #define SAI_xSLOTR_SLOTSZ SAI_xSLOTR_SLOTSZ_Msk /*!<SLOTSZ[1:0] (Slot size) */
lypinator 0:bb348c97df44 12790 #define SAI_xSLOTR_SLOTSZ_0 (0x1U << SAI_xSLOTR_SLOTSZ_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 12791 #define SAI_xSLOTR_SLOTSZ_1 (0x2U << SAI_xSLOTR_SLOTSZ_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 12792
lypinator 0:bb348c97df44 12793 #define SAI_xSLOTR_NBSLOT_Pos (8U)
lypinator 0:bb348c97df44 12794 #define SAI_xSLOTR_NBSLOT_Msk (0xFU << SAI_xSLOTR_NBSLOT_Pos) /*!< 0x00000F00 */
lypinator 0:bb348c97df44 12795 #define SAI_xSLOTR_NBSLOT SAI_xSLOTR_NBSLOT_Msk /*!<NBSLOT[3:0] (Number of Slot in audio Frame) */
lypinator 0:bb348c97df44 12796 #define SAI_xSLOTR_NBSLOT_0 (0x1U << SAI_xSLOTR_NBSLOT_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 12797 #define SAI_xSLOTR_NBSLOT_1 (0x2U << SAI_xSLOTR_NBSLOT_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 12798 #define SAI_xSLOTR_NBSLOT_2 (0x4U << SAI_xSLOTR_NBSLOT_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 12799 #define SAI_xSLOTR_NBSLOT_3 (0x8U << SAI_xSLOTR_NBSLOT_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 12800
lypinator 0:bb348c97df44 12801 #define SAI_xSLOTR_SLOTEN_Pos (16U)
lypinator 0:bb348c97df44 12802 #define SAI_xSLOTR_SLOTEN_Msk (0xFFFFU << SAI_xSLOTR_SLOTEN_Pos) /*!< 0xFFFF0000 */
lypinator 0:bb348c97df44 12803 #define SAI_xSLOTR_SLOTEN SAI_xSLOTR_SLOTEN_Msk /*!<SLOTEN[15:0] (Slot Enable) */
lypinator 0:bb348c97df44 12804
lypinator 0:bb348c97df44 12805 /******************* Bit definition for SAI_xIMR register *******************/
lypinator 0:bb348c97df44 12806 #define SAI_xIMR_OVRUDRIE_Pos (0U)
lypinator 0:bb348c97df44 12807 #define SAI_xIMR_OVRUDRIE_Msk (0x1U << SAI_xIMR_OVRUDRIE_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 12808 #define SAI_xIMR_OVRUDRIE SAI_xIMR_OVRUDRIE_Msk /*!<Overrun underrun interrupt enable */
lypinator 0:bb348c97df44 12809 #define SAI_xIMR_MUTEDETIE_Pos (1U)
lypinator 0:bb348c97df44 12810 #define SAI_xIMR_MUTEDETIE_Msk (0x1U << SAI_xIMR_MUTEDETIE_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 12811 #define SAI_xIMR_MUTEDETIE SAI_xIMR_MUTEDETIE_Msk /*!<Mute detection interrupt enable */
lypinator 0:bb348c97df44 12812 #define SAI_xIMR_WCKCFGIE_Pos (2U)
lypinator 0:bb348c97df44 12813 #define SAI_xIMR_WCKCFGIE_Msk (0x1U << SAI_xIMR_WCKCFGIE_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 12814 #define SAI_xIMR_WCKCFGIE SAI_xIMR_WCKCFGIE_Msk /*!<Wrong Clock Configuration interrupt enable */
lypinator 0:bb348c97df44 12815 #define SAI_xIMR_FREQIE_Pos (3U)
lypinator 0:bb348c97df44 12816 #define SAI_xIMR_FREQIE_Msk (0x1U << SAI_xIMR_FREQIE_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 12817 #define SAI_xIMR_FREQIE SAI_xIMR_FREQIE_Msk /*!<FIFO request interrupt enable */
lypinator 0:bb348c97df44 12818 #define SAI_xIMR_CNRDYIE_Pos (4U)
lypinator 0:bb348c97df44 12819 #define SAI_xIMR_CNRDYIE_Msk (0x1U << SAI_xIMR_CNRDYIE_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 12820 #define SAI_xIMR_CNRDYIE SAI_xIMR_CNRDYIE_Msk /*!<Codec not ready interrupt enable */
lypinator 0:bb348c97df44 12821 #define SAI_xIMR_AFSDETIE_Pos (5U)
lypinator 0:bb348c97df44 12822 #define SAI_xIMR_AFSDETIE_Msk (0x1U << SAI_xIMR_AFSDETIE_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 12823 #define SAI_xIMR_AFSDETIE SAI_xIMR_AFSDETIE_Msk /*!<Anticipated frame synchronization detection interrupt enable */
lypinator 0:bb348c97df44 12824 #define SAI_xIMR_LFSDETIE_Pos (6U)
lypinator 0:bb348c97df44 12825 #define SAI_xIMR_LFSDETIE_Msk (0x1U << SAI_xIMR_LFSDETIE_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 12826 #define SAI_xIMR_LFSDETIE SAI_xIMR_LFSDETIE_Msk /*!<Late frame synchronization detection interrupt enable */
lypinator 0:bb348c97df44 12827
lypinator 0:bb348c97df44 12828 /******************** Bit definition for SAI_xSR register *******************/
lypinator 0:bb348c97df44 12829 #define SAI_xSR_OVRUDR_Pos (0U)
lypinator 0:bb348c97df44 12830 #define SAI_xSR_OVRUDR_Msk (0x1U << SAI_xSR_OVRUDR_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 12831 #define SAI_xSR_OVRUDR SAI_xSR_OVRUDR_Msk /*!<Overrun underrun */
lypinator 0:bb348c97df44 12832 #define SAI_xSR_MUTEDET_Pos (1U)
lypinator 0:bb348c97df44 12833 #define SAI_xSR_MUTEDET_Msk (0x1U << SAI_xSR_MUTEDET_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 12834 #define SAI_xSR_MUTEDET SAI_xSR_MUTEDET_Msk /*!<Mute detection */
lypinator 0:bb348c97df44 12835 #define SAI_xSR_WCKCFG_Pos (2U)
lypinator 0:bb348c97df44 12836 #define SAI_xSR_WCKCFG_Msk (0x1U << SAI_xSR_WCKCFG_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 12837 #define SAI_xSR_WCKCFG SAI_xSR_WCKCFG_Msk /*!<Wrong Clock Configuration */
lypinator 0:bb348c97df44 12838 #define SAI_xSR_FREQ_Pos (3U)
lypinator 0:bb348c97df44 12839 #define SAI_xSR_FREQ_Msk (0x1U << SAI_xSR_FREQ_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 12840 #define SAI_xSR_FREQ SAI_xSR_FREQ_Msk /*!<FIFO request */
lypinator 0:bb348c97df44 12841 #define SAI_xSR_CNRDY_Pos (4U)
lypinator 0:bb348c97df44 12842 #define SAI_xSR_CNRDY_Msk (0x1U << SAI_xSR_CNRDY_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 12843 #define SAI_xSR_CNRDY SAI_xSR_CNRDY_Msk /*!<Codec not ready */
lypinator 0:bb348c97df44 12844 #define SAI_xSR_AFSDET_Pos (5U)
lypinator 0:bb348c97df44 12845 #define SAI_xSR_AFSDET_Msk (0x1U << SAI_xSR_AFSDET_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 12846 #define SAI_xSR_AFSDET SAI_xSR_AFSDET_Msk /*!<Anticipated frame synchronization detection */
lypinator 0:bb348c97df44 12847 #define SAI_xSR_LFSDET_Pos (6U)
lypinator 0:bb348c97df44 12848 #define SAI_xSR_LFSDET_Msk (0x1U << SAI_xSR_LFSDET_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 12849 #define SAI_xSR_LFSDET SAI_xSR_LFSDET_Msk /*!<Late frame synchronization detection */
lypinator 0:bb348c97df44 12850
lypinator 0:bb348c97df44 12851 #define SAI_xSR_FLVL_Pos (16U)
lypinator 0:bb348c97df44 12852 #define SAI_xSR_FLVL_Msk (0x7U << SAI_xSR_FLVL_Pos) /*!< 0x00070000 */
lypinator 0:bb348c97df44 12853 #define SAI_xSR_FLVL SAI_xSR_FLVL_Msk /*!<FLVL[2:0] (FIFO Level Threshold) */
lypinator 0:bb348c97df44 12854 #define SAI_xSR_FLVL_0 (0x1U << SAI_xSR_FLVL_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 12855 #define SAI_xSR_FLVL_1 (0x2U << SAI_xSR_FLVL_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 12856 #define SAI_xSR_FLVL_2 (0x4U << SAI_xSR_FLVL_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 12857
lypinator 0:bb348c97df44 12858 /****************** Bit definition for SAI_xCLRFR register ******************/
lypinator 0:bb348c97df44 12859 #define SAI_xCLRFR_COVRUDR_Pos (0U)
lypinator 0:bb348c97df44 12860 #define SAI_xCLRFR_COVRUDR_Msk (0x1U << SAI_xCLRFR_COVRUDR_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 12861 #define SAI_xCLRFR_COVRUDR SAI_xCLRFR_COVRUDR_Msk /*!<Clear Overrun underrun */
lypinator 0:bb348c97df44 12862 #define SAI_xCLRFR_CMUTEDET_Pos (1U)
lypinator 0:bb348c97df44 12863 #define SAI_xCLRFR_CMUTEDET_Msk (0x1U << SAI_xCLRFR_CMUTEDET_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 12864 #define SAI_xCLRFR_CMUTEDET SAI_xCLRFR_CMUTEDET_Msk /*!<Clear Mute detection */
lypinator 0:bb348c97df44 12865 #define SAI_xCLRFR_CWCKCFG_Pos (2U)
lypinator 0:bb348c97df44 12866 #define SAI_xCLRFR_CWCKCFG_Msk (0x1U << SAI_xCLRFR_CWCKCFG_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 12867 #define SAI_xCLRFR_CWCKCFG SAI_xCLRFR_CWCKCFG_Msk /*!<Clear Wrong Clock Configuration */
lypinator 0:bb348c97df44 12868 #define SAI_xCLRFR_CFREQ_Pos (3U)
lypinator 0:bb348c97df44 12869 #define SAI_xCLRFR_CFREQ_Msk (0x1U << SAI_xCLRFR_CFREQ_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 12870 #define SAI_xCLRFR_CFREQ SAI_xCLRFR_CFREQ_Msk /*!<Clear FIFO request */
lypinator 0:bb348c97df44 12871 #define SAI_xCLRFR_CCNRDY_Pos (4U)
lypinator 0:bb348c97df44 12872 #define SAI_xCLRFR_CCNRDY_Msk (0x1U << SAI_xCLRFR_CCNRDY_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 12873 #define SAI_xCLRFR_CCNRDY SAI_xCLRFR_CCNRDY_Msk /*!<Clear Codec not ready */
lypinator 0:bb348c97df44 12874 #define SAI_xCLRFR_CAFSDET_Pos (5U)
lypinator 0:bb348c97df44 12875 #define SAI_xCLRFR_CAFSDET_Msk (0x1U << SAI_xCLRFR_CAFSDET_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 12876 #define SAI_xCLRFR_CAFSDET SAI_xCLRFR_CAFSDET_Msk /*!<Clear Anticipated frame synchronization detection */
lypinator 0:bb348c97df44 12877 #define SAI_xCLRFR_CLFSDET_Pos (6U)
lypinator 0:bb348c97df44 12878 #define SAI_xCLRFR_CLFSDET_Msk (0x1U << SAI_xCLRFR_CLFSDET_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 12879 #define SAI_xCLRFR_CLFSDET SAI_xCLRFR_CLFSDET_Msk /*!<Clear Late frame synchronization detection */
lypinator 0:bb348c97df44 12880
lypinator 0:bb348c97df44 12881 /****************** Bit definition for SAI_xDR register ******************/
lypinator 0:bb348c97df44 12882 #define SAI_xDR_DATA_Pos (0U)
lypinator 0:bb348c97df44 12883 #define SAI_xDR_DATA_Msk (0xFFFFFFFFU << SAI_xDR_DATA_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 12884 #define SAI_xDR_DATA SAI_xDR_DATA_Msk
lypinator 0:bb348c97df44 12885
lypinator 0:bb348c97df44 12886
lypinator 0:bb348c97df44 12887 /******************************************************************************/
lypinator 0:bb348c97df44 12888 /* */
lypinator 0:bb348c97df44 12889 /* SD host Interface */
lypinator 0:bb348c97df44 12890 /* */
lypinator 0:bb348c97df44 12891 /******************************************************************************/
lypinator 0:bb348c97df44 12892 /****************** Bit definition for SDIO_POWER register ******************/
lypinator 0:bb348c97df44 12893 #define SDIO_POWER_PWRCTRL_Pos (0U)
lypinator 0:bb348c97df44 12894 #define SDIO_POWER_PWRCTRL_Msk (0x3U << SDIO_POWER_PWRCTRL_Pos) /*!< 0x00000003 */
lypinator 0:bb348c97df44 12895 #define SDIO_POWER_PWRCTRL SDIO_POWER_PWRCTRL_Msk /*!<PWRCTRL[1:0] bits (Power supply control bits) */
lypinator 0:bb348c97df44 12896 #define SDIO_POWER_PWRCTRL_0 (0x1U << SDIO_POWER_PWRCTRL_Pos) /*!< 0x01 */
lypinator 0:bb348c97df44 12897 #define SDIO_POWER_PWRCTRL_1 (0x2U << SDIO_POWER_PWRCTRL_Pos) /*!< 0x02 */
lypinator 0:bb348c97df44 12898
lypinator 0:bb348c97df44 12899 /****************** Bit definition for SDIO_CLKCR register ******************/
lypinator 0:bb348c97df44 12900 #define SDIO_CLKCR_CLKDIV_Pos (0U)
lypinator 0:bb348c97df44 12901 #define SDIO_CLKCR_CLKDIV_Msk (0xFFU << SDIO_CLKCR_CLKDIV_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 12902 #define SDIO_CLKCR_CLKDIV SDIO_CLKCR_CLKDIV_Msk /*!<Clock divide factor */
lypinator 0:bb348c97df44 12903 #define SDIO_CLKCR_CLKEN_Pos (8U)
lypinator 0:bb348c97df44 12904 #define SDIO_CLKCR_CLKEN_Msk (0x1U << SDIO_CLKCR_CLKEN_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 12905 #define SDIO_CLKCR_CLKEN SDIO_CLKCR_CLKEN_Msk /*!<Clock enable bit */
lypinator 0:bb348c97df44 12906 #define SDIO_CLKCR_PWRSAV_Pos (9U)
lypinator 0:bb348c97df44 12907 #define SDIO_CLKCR_PWRSAV_Msk (0x1U << SDIO_CLKCR_PWRSAV_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 12908 #define SDIO_CLKCR_PWRSAV SDIO_CLKCR_PWRSAV_Msk /*!<Power saving configuration bit */
lypinator 0:bb348c97df44 12909 #define SDIO_CLKCR_BYPASS_Pos (10U)
lypinator 0:bb348c97df44 12910 #define SDIO_CLKCR_BYPASS_Msk (0x1U << SDIO_CLKCR_BYPASS_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 12911 #define SDIO_CLKCR_BYPASS SDIO_CLKCR_BYPASS_Msk /*!<Clock divider bypass enable bit */
lypinator 0:bb348c97df44 12912
lypinator 0:bb348c97df44 12913 #define SDIO_CLKCR_WIDBUS_Pos (11U)
lypinator 0:bb348c97df44 12914 #define SDIO_CLKCR_WIDBUS_Msk (0x3U << SDIO_CLKCR_WIDBUS_Pos) /*!< 0x00001800 */
lypinator 0:bb348c97df44 12915 #define SDIO_CLKCR_WIDBUS SDIO_CLKCR_WIDBUS_Msk /*!<WIDBUS[1:0] bits (Wide bus mode enable bit) */
lypinator 0:bb348c97df44 12916 #define SDIO_CLKCR_WIDBUS_0 (0x1U << SDIO_CLKCR_WIDBUS_Pos) /*!< 0x0800 */
lypinator 0:bb348c97df44 12917 #define SDIO_CLKCR_WIDBUS_1 (0x2U << SDIO_CLKCR_WIDBUS_Pos) /*!< 0x1000 */
lypinator 0:bb348c97df44 12918
lypinator 0:bb348c97df44 12919 #define SDIO_CLKCR_NEGEDGE_Pos (13U)
lypinator 0:bb348c97df44 12920 #define SDIO_CLKCR_NEGEDGE_Msk (0x1U << SDIO_CLKCR_NEGEDGE_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 12921 #define SDIO_CLKCR_NEGEDGE SDIO_CLKCR_NEGEDGE_Msk /*!<SDIO_CK dephasing selection bit */
lypinator 0:bb348c97df44 12922 #define SDIO_CLKCR_HWFC_EN_Pos (14U)
lypinator 0:bb348c97df44 12923 #define SDIO_CLKCR_HWFC_EN_Msk (0x1U << SDIO_CLKCR_HWFC_EN_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 12924 #define SDIO_CLKCR_HWFC_EN SDIO_CLKCR_HWFC_EN_Msk /*!<HW Flow Control enable */
lypinator 0:bb348c97df44 12925
lypinator 0:bb348c97df44 12926 /******************* Bit definition for SDIO_ARG register *******************/
lypinator 0:bb348c97df44 12927 #define SDIO_ARG_CMDARG_Pos (0U)
lypinator 0:bb348c97df44 12928 #define SDIO_ARG_CMDARG_Msk (0xFFFFFFFFU << SDIO_ARG_CMDARG_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 12929 #define SDIO_ARG_CMDARG SDIO_ARG_CMDARG_Msk /*!<Command argument */
lypinator 0:bb348c97df44 12930
lypinator 0:bb348c97df44 12931 /******************* Bit definition for SDIO_CMD register *******************/
lypinator 0:bb348c97df44 12932 #define SDIO_CMD_CMDINDEX_Pos (0U)
lypinator 0:bb348c97df44 12933 #define SDIO_CMD_CMDINDEX_Msk (0x3FU << SDIO_CMD_CMDINDEX_Pos) /*!< 0x0000003F */
lypinator 0:bb348c97df44 12934 #define SDIO_CMD_CMDINDEX SDIO_CMD_CMDINDEX_Msk /*!<Command Index */
lypinator 0:bb348c97df44 12935
lypinator 0:bb348c97df44 12936 #define SDIO_CMD_WAITRESP_Pos (6U)
lypinator 0:bb348c97df44 12937 #define SDIO_CMD_WAITRESP_Msk (0x3U << SDIO_CMD_WAITRESP_Pos) /*!< 0x000000C0 */
lypinator 0:bb348c97df44 12938 #define SDIO_CMD_WAITRESP SDIO_CMD_WAITRESP_Msk /*!<WAITRESP[1:0] bits (Wait for response bits) */
lypinator 0:bb348c97df44 12939 #define SDIO_CMD_WAITRESP_0 (0x1U << SDIO_CMD_WAITRESP_Pos) /*!< 0x0040 */
lypinator 0:bb348c97df44 12940 #define SDIO_CMD_WAITRESP_1 (0x2U << SDIO_CMD_WAITRESP_Pos) /*!< 0x0080 */
lypinator 0:bb348c97df44 12941
lypinator 0:bb348c97df44 12942 #define SDIO_CMD_WAITINT_Pos (8U)
lypinator 0:bb348c97df44 12943 #define SDIO_CMD_WAITINT_Msk (0x1U << SDIO_CMD_WAITINT_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 12944 #define SDIO_CMD_WAITINT SDIO_CMD_WAITINT_Msk /*!<CPSM Waits for Interrupt Request */
lypinator 0:bb348c97df44 12945 #define SDIO_CMD_WAITPEND_Pos (9U)
lypinator 0:bb348c97df44 12946 #define SDIO_CMD_WAITPEND_Msk (0x1U << SDIO_CMD_WAITPEND_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 12947 #define SDIO_CMD_WAITPEND SDIO_CMD_WAITPEND_Msk /*!<CPSM Waits for ends of data transfer (CmdPend internal signal) */
lypinator 0:bb348c97df44 12948 #define SDIO_CMD_CPSMEN_Pos (10U)
lypinator 0:bb348c97df44 12949 #define SDIO_CMD_CPSMEN_Msk (0x1U << SDIO_CMD_CPSMEN_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 12950 #define SDIO_CMD_CPSMEN SDIO_CMD_CPSMEN_Msk /*!<Command path state machine (CPSM) Enable bit */
lypinator 0:bb348c97df44 12951 #define SDIO_CMD_SDIOSUSPEND_Pos (11U)
lypinator 0:bb348c97df44 12952 #define SDIO_CMD_SDIOSUSPEND_Msk (0x1U << SDIO_CMD_SDIOSUSPEND_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 12953 #define SDIO_CMD_SDIOSUSPEND SDIO_CMD_SDIOSUSPEND_Msk /*!<SD I/O suspend command */
lypinator 0:bb348c97df44 12954 #define SDIO_CMD_ENCMDCOMPL_Pos (12U)
lypinator 0:bb348c97df44 12955 #define SDIO_CMD_ENCMDCOMPL_Msk (0x1U << SDIO_CMD_ENCMDCOMPL_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 12956 #define SDIO_CMD_ENCMDCOMPL SDIO_CMD_ENCMDCOMPL_Msk /*!<Enable CMD completion */
lypinator 0:bb348c97df44 12957 #define SDIO_CMD_NIEN_Pos (13U)
lypinator 0:bb348c97df44 12958 #define SDIO_CMD_NIEN_Msk (0x1U << SDIO_CMD_NIEN_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 12959 #define SDIO_CMD_NIEN SDIO_CMD_NIEN_Msk /*!<Not Interrupt Enable */
lypinator 0:bb348c97df44 12960 #define SDIO_CMD_CEATACMD_Pos (14U)
lypinator 0:bb348c97df44 12961 #define SDIO_CMD_CEATACMD_Msk (0x1U << SDIO_CMD_CEATACMD_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 12962 #define SDIO_CMD_CEATACMD SDIO_CMD_CEATACMD_Msk /*!<CE-ATA command */
lypinator 0:bb348c97df44 12963
lypinator 0:bb348c97df44 12964 /***************** Bit definition for SDIO_RESPCMD register *****************/
lypinator 0:bb348c97df44 12965 #define SDIO_RESPCMD_RESPCMD_Pos (0U)
lypinator 0:bb348c97df44 12966 #define SDIO_RESPCMD_RESPCMD_Msk (0x3FU << SDIO_RESPCMD_RESPCMD_Pos) /*!< 0x0000003F */
lypinator 0:bb348c97df44 12967 #define SDIO_RESPCMD_RESPCMD SDIO_RESPCMD_RESPCMD_Msk /*!<Response command index */
lypinator 0:bb348c97df44 12968
lypinator 0:bb348c97df44 12969 /****************** Bit definition for SDIO_RESP0 register ******************/
lypinator 0:bb348c97df44 12970 #define SDIO_RESP0_CARDSTATUS0_Pos (0U)
lypinator 0:bb348c97df44 12971 #define SDIO_RESP0_CARDSTATUS0_Msk (0xFFFFFFFFU << SDIO_RESP0_CARDSTATUS0_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 12972 #define SDIO_RESP0_CARDSTATUS0 SDIO_RESP0_CARDSTATUS0_Msk /*!<Card Status */
lypinator 0:bb348c97df44 12973
lypinator 0:bb348c97df44 12974 /****************** Bit definition for SDIO_RESP1 register ******************/
lypinator 0:bb348c97df44 12975 #define SDIO_RESP1_CARDSTATUS1_Pos (0U)
lypinator 0:bb348c97df44 12976 #define SDIO_RESP1_CARDSTATUS1_Msk (0xFFFFFFFFU << SDIO_RESP1_CARDSTATUS1_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 12977 #define SDIO_RESP1_CARDSTATUS1 SDIO_RESP1_CARDSTATUS1_Msk /*!<Card Status */
lypinator 0:bb348c97df44 12978
lypinator 0:bb348c97df44 12979 /****************** Bit definition for SDIO_RESP2 register ******************/
lypinator 0:bb348c97df44 12980 #define SDIO_RESP2_CARDSTATUS2_Pos (0U)
lypinator 0:bb348c97df44 12981 #define SDIO_RESP2_CARDSTATUS2_Msk (0xFFFFFFFFU << SDIO_RESP2_CARDSTATUS2_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 12982 #define SDIO_RESP2_CARDSTATUS2 SDIO_RESP2_CARDSTATUS2_Msk /*!<Card Status */
lypinator 0:bb348c97df44 12983
lypinator 0:bb348c97df44 12984 /****************** Bit definition for SDIO_RESP3 register ******************/
lypinator 0:bb348c97df44 12985 #define SDIO_RESP3_CARDSTATUS3_Pos (0U)
lypinator 0:bb348c97df44 12986 #define SDIO_RESP3_CARDSTATUS3_Msk (0xFFFFFFFFU << SDIO_RESP3_CARDSTATUS3_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 12987 #define SDIO_RESP3_CARDSTATUS3 SDIO_RESP3_CARDSTATUS3_Msk /*!<Card Status */
lypinator 0:bb348c97df44 12988
lypinator 0:bb348c97df44 12989 /****************** Bit definition for SDIO_RESP4 register ******************/
lypinator 0:bb348c97df44 12990 #define SDIO_RESP4_CARDSTATUS4_Pos (0U)
lypinator 0:bb348c97df44 12991 #define SDIO_RESP4_CARDSTATUS4_Msk (0xFFFFFFFFU << SDIO_RESP4_CARDSTATUS4_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 12992 #define SDIO_RESP4_CARDSTATUS4 SDIO_RESP4_CARDSTATUS4_Msk /*!<Card Status */
lypinator 0:bb348c97df44 12993
lypinator 0:bb348c97df44 12994 /****************** Bit definition for SDIO_DTIMER register *****************/
lypinator 0:bb348c97df44 12995 #define SDIO_DTIMER_DATATIME_Pos (0U)
lypinator 0:bb348c97df44 12996 #define SDIO_DTIMER_DATATIME_Msk (0xFFFFFFFFU << SDIO_DTIMER_DATATIME_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 12997 #define SDIO_DTIMER_DATATIME SDIO_DTIMER_DATATIME_Msk /*!<Data timeout period. */
lypinator 0:bb348c97df44 12998
lypinator 0:bb348c97df44 12999 /****************** Bit definition for SDIO_DLEN register *******************/
lypinator 0:bb348c97df44 13000 #define SDIO_DLEN_DATALENGTH_Pos (0U)
lypinator 0:bb348c97df44 13001 #define SDIO_DLEN_DATALENGTH_Msk (0x1FFFFFFU << SDIO_DLEN_DATALENGTH_Pos) /*!< 0x01FFFFFF */
lypinator 0:bb348c97df44 13002 #define SDIO_DLEN_DATALENGTH SDIO_DLEN_DATALENGTH_Msk /*!<Data length value */
lypinator 0:bb348c97df44 13003
lypinator 0:bb348c97df44 13004 /****************** Bit definition for SDIO_DCTRL register ******************/
lypinator 0:bb348c97df44 13005 #define SDIO_DCTRL_DTEN_Pos (0U)
lypinator 0:bb348c97df44 13006 #define SDIO_DCTRL_DTEN_Msk (0x1U << SDIO_DCTRL_DTEN_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 13007 #define SDIO_DCTRL_DTEN SDIO_DCTRL_DTEN_Msk /*!<Data transfer enabled bit */
lypinator 0:bb348c97df44 13008 #define SDIO_DCTRL_DTDIR_Pos (1U)
lypinator 0:bb348c97df44 13009 #define SDIO_DCTRL_DTDIR_Msk (0x1U << SDIO_DCTRL_DTDIR_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 13010 #define SDIO_DCTRL_DTDIR SDIO_DCTRL_DTDIR_Msk /*!<Data transfer direction selection */
lypinator 0:bb348c97df44 13011 #define SDIO_DCTRL_DTMODE_Pos (2U)
lypinator 0:bb348c97df44 13012 #define SDIO_DCTRL_DTMODE_Msk (0x1U << SDIO_DCTRL_DTMODE_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 13013 #define SDIO_DCTRL_DTMODE SDIO_DCTRL_DTMODE_Msk /*!<Data transfer mode selection */
lypinator 0:bb348c97df44 13014 #define SDIO_DCTRL_DMAEN_Pos (3U)
lypinator 0:bb348c97df44 13015 #define SDIO_DCTRL_DMAEN_Msk (0x1U << SDIO_DCTRL_DMAEN_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 13016 #define SDIO_DCTRL_DMAEN SDIO_DCTRL_DMAEN_Msk /*!<DMA enabled bit */
lypinator 0:bb348c97df44 13017
lypinator 0:bb348c97df44 13018 #define SDIO_DCTRL_DBLOCKSIZE_Pos (4U)
lypinator 0:bb348c97df44 13019 #define SDIO_DCTRL_DBLOCKSIZE_Msk (0xFU << SDIO_DCTRL_DBLOCKSIZE_Pos) /*!< 0x000000F0 */
lypinator 0:bb348c97df44 13020 #define SDIO_DCTRL_DBLOCKSIZE SDIO_DCTRL_DBLOCKSIZE_Msk /*!<DBLOCKSIZE[3:0] bits (Data block size) */
lypinator 0:bb348c97df44 13021 #define SDIO_DCTRL_DBLOCKSIZE_0 (0x1U << SDIO_DCTRL_DBLOCKSIZE_Pos) /*!< 0x0010 */
lypinator 0:bb348c97df44 13022 #define SDIO_DCTRL_DBLOCKSIZE_1 (0x2U << SDIO_DCTRL_DBLOCKSIZE_Pos) /*!< 0x0020 */
lypinator 0:bb348c97df44 13023 #define SDIO_DCTRL_DBLOCKSIZE_2 (0x4U << SDIO_DCTRL_DBLOCKSIZE_Pos) /*!< 0x0040 */
lypinator 0:bb348c97df44 13024 #define SDIO_DCTRL_DBLOCKSIZE_3 (0x8U << SDIO_DCTRL_DBLOCKSIZE_Pos) /*!< 0x0080 */
lypinator 0:bb348c97df44 13025
lypinator 0:bb348c97df44 13026 #define SDIO_DCTRL_RWSTART_Pos (8U)
lypinator 0:bb348c97df44 13027 #define SDIO_DCTRL_RWSTART_Msk (0x1U << SDIO_DCTRL_RWSTART_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 13028 #define SDIO_DCTRL_RWSTART SDIO_DCTRL_RWSTART_Msk /*!<Read wait start */
lypinator 0:bb348c97df44 13029 #define SDIO_DCTRL_RWSTOP_Pos (9U)
lypinator 0:bb348c97df44 13030 #define SDIO_DCTRL_RWSTOP_Msk (0x1U << SDIO_DCTRL_RWSTOP_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 13031 #define SDIO_DCTRL_RWSTOP SDIO_DCTRL_RWSTOP_Msk /*!<Read wait stop */
lypinator 0:bb348c97df44 13032 #define SDIO_DCTRL_RWMOD_Pos (10U)
lypinator 0:bb348c97df44 13033 #define SDIO_DCTRL_RWMOD_Msk (0x1U << SDIO_DCTRL_RWMOD_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 13034 #define SDIO_DCTRL_RWMOD SDIO_DCTRL_RWMOD_Msk /*!<Read wait mode */
lypinator 0:bb348c97df44 13035 #define SDIO_DCTRL_SDIOEN_Pos (11U)
lypinator 0:bb348c97df44 13036 #define SDIO_DCTRL_SDIOEN_Msk (0x1U << SDIO_DCTRL_SDIOEN_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 13037 #define SDIO_DCTRL_SDIOEN SDIO_DCTRL_SDIOEN_Msk /*!<SD I/O enable functions */
lypinator 0:bb348c97df44 13038
lypinator 0:bb348c97df44 13039 /****************** Bit definition for SDIO_DCOUNT register *****************/
lypinator 0:bb348c97df44 13040 #define SDIO_DCOUNT_DATACOUNT_Pos (0U)
lypinator 0:bb348c97df44 13041 #define SDIO_DCOUNT_DATACOUNT_Msk (0x1FFFFFFU << SDIO_DCOUNT_DATACOUNT_Pos) /*!< 0x01FFFFFF */
lypinator 0:bb348c97df44 13042 #define SDIO_DCOUNT_DATACOUNT SDIO_DCOUNT_DATACOUNT_Msk /*!<Data count value */
lypinator 0:bb348c97df44 13043
lypinator 0:bb348c97df44 13044 /****************** Bit definition for SDIO_STA register ********************/
lypinator 0:bb348c97df44 13045 #define SDIO_STA_CCRCFAIL_Pos (0U)
lypinator 0:bb348c97df44 13046 #define SDIO_STA_CCRCFAIL_Msk (0x1U << SDIO_STA_CCRCFAIL_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 13047 #define SDIO_STA_CCRCFAIL SDIO_STA_CCRCFAIL_Msk /*!<Command response received (CRC check failed) */
lypinator 0:bb348c97df44 13048 #define SDIO_STA_DCRCFAIL_Pos (1U)
lypinator 0:bb348c97df44 13049 #define SDIO_STA_DCRCFAIL_Msk (0x1U << SDIO_STA_DCRCFAIL_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 13050 #define SDIO_STA_DCRCFAIL SDIO_STA_DCRCFAIL_Msk /*!<Data block sent/received (CRC check failed) */
lypinator 0:bb348c97df44 13051 #define SDIO_STA_CTIMEOUT_Pos (2U)
lypinator 0:bb348c97df44 13052 #define SDIO_STA_CTIMEOUT_Msk (0x1U << SDIO_STA_CTIMEOUT_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 13053 #define SDIO_STA_CTIMEOUT SDIO_STA_CTIMEOUT_Msk /*!<Command response timeout */
lypinator 0:bb348c97df44 13054 #define SDIO_STA_DTIMEOUT_Pos (3U)
lypinator 0:bb348c97df44 13055 #define SDIO_STA_DTIMEOUT_Msk (0x1U << SDIO_STA_DTIMEOUT_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 13056 #define SDIO_STA_DTIMEOUT SDIO_STA_DTIMEOUT_Msk /*!<Data timeout */
lypinator 0:bb348c97df44 13057 #define SDIO_STA_TXUNDERR_Pos (4U)
lypinator 0:bb348c97df44 13058 #define SDIO_STA_TXUNDERR_Msk (0x1U << SDIO_STA_TXUNDERR_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 13059 #define SDIO_STA_TXUNDERR SDIO_STA_TXUNDERR_Msk /*!<Transmit FIFO underrun error */
lypinator 0:bb348c97df44 13060 #define SDIO_STA_RXOVERR_Pos (5U)
lypinator 0:bb348c97df44 13061 #define SDIO_STA_RXOVERR_Msk (0x1U << SDIO_STA_RXOVERR_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 13062 #define SDIO_STA_RXOVERR SDIO_STA_RXOVERR_Msk /*!<Received FIFO overrun error */
lypinator 0:bb348c97df44 13063 #define SDIO_STA_CMDREND_Pos (6U)
lypinator 0:bb348c97df44 13064 #define SDIO_STA_CMDREND_Msk (0x1U << SDIO_STA_CMDREND_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 13065 #define SDIO_STA_CMDREND SDIO_STA_CMDREND_Msk /*!<Command response received (CRC check passed) */
lypinator 0:bb348c97df44 13066 #define SDIO_STA_CMDSENT_Pos (7U)
lypinator 0:bb348c97df44 13067 #define SDIO_STA_CMDSENT_Msk (0x1U << SDIO_STA_CMDSENT_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 13068 #define SDIO_STA_CMDSENT SDIO_STA_CMDSENT_Msk /*!<Command sent (no response required) */
lypinator 0:bb348c97df44 13069 #define SDIO_STA_DATAEND_Pos (8U)
lypinator 0:bb348c97df44 13070 #define SDIO_STA_DATAEND_Msk (0x1U << SDIO_STA_DATAEND_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 13071 #define SDIO_STA_DATAEND SDIO_STA_DATAEND_Msk /*!<Data end (data counter, SDIDCOUNT, is zero) */
lypinator 0:bb348c97df44 13072 #define SDIO_STA_STBITERR_Pos (9U)
lypinator 0:bb348c97df44 13073 #define SDIO_STA_STBITERR_Msk (0x1U << SDIO_STA_STBITERR_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 13074 #define SDIO_STA_STBITERR SDIO_STA_STBITERR_Msk /*!<Start bit not detected on all data signals in wide bus mode */
lypinator 0:bb348c97df44 13075 #define SDIO_STA_DBCKEND_Pos (10U)
lypinator 0:bb348c97df44 13076 #define SDIO_STA_DBCKEND_Msk (0x1U << SDIO_STA_DBCKEND_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 13077 #define SDIO_STA_DBCKEND SDIO_STA_DBCKEND_Msk /*!<Data block sent/received (CRC check passed) */
lypinator 0:bb348c97df44 13078 #define SDIO_STA_CMDACT_Pos (11U)
lypinator 0:bb348c97df44 13079 #define SDIO_STA_CMDACT_Msk (0x1U << SDIO_STA_CMDACT_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 13080 #define SDIO_STA_CMDACT SDIO_STA_CMDACT_Msk /*!<Command transfer in progress */
lypinator 0:bb348c97df44 13081 #define SDIO_STA_TXACT_Pos (12U)
lypinator 0:bb348c97df44 13082 #define SDIO_STA_TXACT_Msk (0x1U << SDIO_STA_TXACT_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 13083 #define SDIO_STA_TXACT SDIO_STA_TXACT_Msk /*!<Data transmit in progress */
lypinator 0:bb348c97df44 13084 #define SDIO_STA_RXACT_Pos (13U)
lypinator 0:bb348c97df44 13085 #define SDIO_STA_RXACT_Msk (0x1U << SDIO_STA_RXACT_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 13086 #define SDIO_STA_RXACT SDIO_STA_RXACT_Msk /*!<Data receive in progress */
lypinator 0:bb348c97df44 13087 #define SDIO_STA_TXFIFOHE_Pos (14U)
lypinator 0:bb348c97df44 13088 #define SDIO_STA_TXFIFOHE_Msk (0x1U << SDIO_STA_TXFIFOHE_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 13089 #define SDIO_STA_TXFIFOHE SDIO_STA_TXFIFOHE_Msk /*!<Transmit FIFO Half Empty: at least 8 words can be written into the FIFO */
lypinator 0:bb348c97df44 13090 #define SDIO_STA_RXFIFOHF_Pos (15U)
lypinator 0:bb348c97df44 13091 #define SDIO_STA_RXFIFOHF_Msk (0x1U << SDIO_STA_RXFIFOHF_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 13092 #define SDIO_STA_RXFIFOHF SDIO_STA_RXFIFOHF_Msk /*!<Receive FIFO Half Full: there are at least 8 words in the FIFO */
lypinator 0:bb348c97df44 13093 #define SDIO_STA_TXFIFOF_Pos (16U)
lypinator 0:bb348c97df44 13094 #define SDIO_STA_TXFIFOF_Msk (0x1U << SDIO_STA_TXFIFOF_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 13095 #define SDIO_STA_TXFIFOF SDIO_STA_TXFIFOF_Msk /*!<Transmit FIFO full */
lypinator 0:bb348c97df44 13096 #define SDIO_STA_RXFIFOF_Pos (17U)
lypinator 0:bb348c97df44 13097 #define SDIO_STA_RXFIFOF_Msk (0x1U << SDIO_STA_RXFIFOF_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 13098 #define SDIO_STA_RXFIFOF SDIO_STA_RXFIFOF_Msk /*!<Receive FIFO full */
lypinator 0:bb348c97df44 13099 #define SDIO_STA_TXFIFOE_Pos (18U)
lypinator 0:bb348c97df44 13100 #define SDIO_STA_TXFIFOE_Msk (0x1U << SDIO_STA_TXFIFOE_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 13101 #define SDIO_STA_TXFIFOE SDIO_STA_TXFIFOE_Msk /*!<Transmit FIFO empty */
lypinator 0:bb348c97df44 13102 #define SDIO_STA_RXFIFOE_Pos (19U)
lypinator 0:bb348c97df44 13103 #define SDIO_STA_RXFIFOE_Msk (0x1U << SDIO_STA_RXFIFOE_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 13104 #define SDIO_STA_RXFIFOE SDIO_STA_RXFIFOE_Msk /*!<Receive FIFO empty */
lypinator 0:bb348c97df44 13105 #define SDIO_STA_TXDAVL_Pos (20U)
lypinator 0:bb348c97df44 13106 #define SDIO_STA_TXDAVL_Msk (0x1U << SDIO_STA_TXDAVL_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 13107 #define SDIO_STA_TXDAVL SDIO_STA_TXDAVL_Msk /*!<Data available in transmit FIFO */
lypinator 0:bb348c97df44 13108 #define SDIO_STA_RXDAVL_Pos (21U)
lypinator 0:bb348c97df44 13109 #define SDIO_STA_RXDAVL_Msk (0x1U << SDIO_STA_RXDAVL_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 13110 #define SDIO_STA_RXDAVL SDIO_STA_RXDAVL_Msk /*!<Data available in receive FIFO */
lypinator 0:bb348c97df44 13111 #define SDIO_STA_SDIOIT_Pos (22U)
lypinator 0:bb348c97df44 13112 #define SDIO_STA_SDIOIT_Msk (0x1U << SDIO_STA_SDIOIT_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 13113 #define SDIO_STA_SDIOIT SDIO_STA_SDIOIT_Msk /*!<SDIO interrupt received */
lypinator 0:bb348c97df44 13114 #define SDIO_STA_CEATAEND_Pos (23U)
lypinator 0:bb348c97df44 13115 #define SDIO_STA_CEATAEND_Msk (0x1U << SDIO_STA_CEATAEND_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 13116 #define SDIO_STA_CEATAEND SDIO_STA_CEATAEND_Msk /*!<CE-ATA command completion signal received for CMD61 */
lypinator 0:bb348c97df44 13117
lypinator 0:bb348c97df44 13118 /******************* Bit definition for SDIO_ICR register *******************/
lypinator 0:bb348c97df44 13119 #define SDIO_ICR_CCRCFAILC_Pos (0U)
lypinator 0:bb348c97df44 13120 #define SDIO_ICR_CCRCFAILC_Msk (0x1U << SDIO_ICR_CCRCFAILC_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 13121 #define SDIO_ICR_CCRCFAILC SDIO_ICR_CCRCFAILC_Msk /*!<CCRCFAIL flag clear bit */
lypinator 0:bb348c97df44 13122 #define SDIO_ICR_DCRCFAILC_Pos (1U)
lypinator 0:bb348c97df44 13123 #define SDIO_ICR_DCRCFAILC_Msk (0x1U << SDIO_ICR_DCRCFAILC_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 13124 #define SDIO_ICR_DCRCFAILC SDIO_ICR_DCRCFAILC_Msk /*!<DCRCFAIL flag clear bit */
lypinator 0:bb348c97df44 13125 #define SDIO_ICR_CTIMEOUTC_Pos (2U)
lypinator 0:bb348c97df44 13126 #define SDIO_ICR_CTIMEOUTC_Msk (0x1U << SDIO_ICR_CTIMEOUTC_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 13127 #define SDIO_ICR_CTIMEOUTC SDIO_ICR_CTIMEOUTC_Msk /*!<CTIMEOUT flag clear bit */
lypinator 0:bb348c97df44 13128 #define SDIO_ICR_DTIMEOUTC_Pos (3U)
lypinator 0:bb348c97df44 13129 #define SDIO_ICR_DTIMEOUTC_Msk (0x1U << SDIO_ICR_DTIMEOUTC_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 13130 #define SDIO_ICR_DTIMEOUTC SDIO_ICR_DTIMEOUTC_Msk /*!<DTIMEOUT flag clear bit */
lypinator 0:bb348c97df44 13131 #define SDIO_ICR_TXUNDERRC_Pos (4U)
lypinator 0:bb348c97df44 13132 #define SDIO_ICR_TXUNDERRC_Msk (0x1U << SDIO_ICR_TXUNDERRC_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 13133 #define SDIO_ICR_TXUNDERRC SDIO_ICR_TXUNDERRC_Msk /*!<TXUNDERR flag clear bit */
lypinator 0:bb348c97df44 13134 #define SDIO_ICR_RXOVERRC_Pos (5U)
lypinator 0:bb348c97df44 13135 #define SDIO_ICR_RXOVERRC_Msk (0x1U << SDIO_ICR_RXOVERRC_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 13136 #define SDIO_ICR_RXOVERRC SDIO_ICR_RXOVERRC_Msk /*!<RXOVERR flag clear bit */
lypinator 0:bb348c97df44 13137 #define SDIO_ICR_CMDRENDC_Pos (6U)
lypinator 0:bb348c97df44 13138 #define SDIO_ICR_CMDRENDC_Msk (0x1U << SDIO_ICR_CMDRENDC_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 13139 #define SDIO_ICR_CMDRENDC SDIO_ICR_CMDRENDC_Msk /*!<CMDREND flag clear bit */
lypinator 0:bb348c97df44 13140 #define SDIO_ICR_CMDSENTC_Pos (7U)
lypinator 0:bb348c97df44 13141 #define SDIO_ICR_CMDSENTC_Msk (0x1U << SDIO_ICR_CMDSENTC_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 13142 #define SDIO_ICR_CMDSENTC SDIO_ICR_CMDSENTC_Msk /*!<CMDSENT flag clear bit */
lypinator 0:bb348c97df44 13143 #define SDIO_ICR_DATAENDC_Pos (8U)
lypinator 0:bb348c97df44 13144 #define SDIO_ICR_DATAENDC_Msk (0x1U << SDIO_ICR_DATAENDC_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 13145 #define SDIO_ICR_DATAENDC SDIO_ICR_DATAENDC_Msk /*!<DATAEND flag clear bit */
lypinator 0:bb348c97df44 13146 #define SDIO_ICR_STBITERRC_Pos (9U)
lypinator 0:bb348c97df44 13147 #define SDIO_ICR_STBITERRC_Msk (0x1U << SDIO_ICR_STBITERRC_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 13148 #define SDIO_ICR_STBITERRC SDIO_ICR_STBITERRC_Msk /*!<STBITERR flag clear bit */
lypinator 0:bb348c97df44 13149 #define SDIO_ICR_DBCKENDC_Pos (10U)
lypinator 0:bb348c97df44 13150 #define SDIO_ICR_DBCKENDC_Msk (0x1U << SDIO_ICR_DBCKENDC_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 13151 #define SDIO_ICR_DBCKENDC SDIO_ICR_DBCKENDC_Msk /*!<DBCKEND flag clear bit */
lypinator 0:bb348c97df44 13152 #define SDIO_ICR_SDIOITC_Pos (22U)
lypinator 0:bb348c97df44 13153 #define SDIO_ICR_SDIOITC_Msk (0x1U << SDIO_ICR_SDIOITC_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 13154 #define SDIO_ICR_SDIOITC SDIO_ICR_SDIOITC_Msk /*!<SDIOIT flag clear bit */
lypinator 0:bb348c97df44 13155 #define SDIO_ICR_CEATAENDC_Pos (23U)
lypinator 0:bb348c97df44 13156 #define SDIO_ICR_CEATAENDC_Msk (0x1U << SDIO_ICR_CEATAENDC_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 13157 #define SDIO_ICR_CEATAENDC SDIO_ICR_CEATAENDC_Msk /*!<CEATAEND flag clear bit */
lypinator 0:bb348c97df44 13158
lypinator 0:bb348c97df44 13159 /****************** Bit definition for SDIO_MASK register *******************/
lypinator 0:bb348c97df44 13160 #define SDIO_MASK_CCRCFAILIE_Pos (0U)
lypinator 0:bb348c97df44 13161 #define SDIO_MASK_CCRCFAILIE_Msk (0x1U << SDIO_MASK_CCRCFAILIE_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 13162 #define SDIO_MASK_CCRCFAILIE SDIO_MASK_CCRCFAILIE_Msk /*!<Command CRC Fail Interrupt Enable */
lypinator 0:bb348c97df44 13163 #define SDIO_MASK_DCRCFAILIE_Pos (1U)
lypinator 0:bb348c97df44 13164 #define SDIO_MASK_DCRCFAILIE_Msk (0x1U << SDIO_MASK_DCRCFAILIE_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 13165 #define SDIO_MASK_DCRCFAILIE SDIO_MASK_DCRCFAILIE_Msk /*!<Data CRC Fail Interrupt Enable */
lypinator 0:bb348c97df44 13166 #define SDIO_MASK_CTIMEOUTIE_Pos (2U)
lypinator 0:bb348c97df44 13167 #define SDIO_MASK_CTIMEOUTIE_Msk (0x1U << SDIO_MASK_CTIMEOUTIE_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 13168 #define SDIO_MASK_CTIMEOUTIE SDIO_MASK_CTIMEOUTIE_Msk /*!<Command TimeOut Interrupt Enable */
lypinator 0:bb348c97df44 13169 #define SDIO_MASK_DTIMEOUTIE_Pos (3U)
lypinator 0:bb348c97df44 13170 #define SDIO_MASK_DTIMEOUTIE_Msk (0x1U << SDIO_MASK_DTIMEOUTIE_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 13171 #define SDIO_MASK_DTIMEOUTIE SDIO_MASK_DTIMEOUTIE_Msk /*!<Data TimeOut Interrupt Enable */
lypinator 0:bb348c97df44 13172 #define SDIO_MASK_TXUNDERRIE_Pos (4U)
lypinator 0:bb348c97df44 13173 #define SDIO_MASK_TXUNDERRIE_Msk (0x1U << SDIO_MASK_TXUNDERRIE_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 13174 #define SDIO_MASK_TXUNDERRIE SDIO_MASK_TXUNDERRIE_Msk /*!<Tx FIFO UnderRun Error Interrupt Enable */
lypinator 0:bb348c97df44 13175 #define SDIO_MASK_RXOVERRIE_Pos (5U)
lypinator 0:bb348c97df44 13176 #define SDIO_MASK_RXOVERRIE_Msk (0x1U << SDIO_MASK_RXOVERRIE_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 13177 #define SDIO_MASK_RXOVERRIE SDIO_MASK_RXOVERRIE_Msk /*!<Rx FIFO OverRun Error Interrupt Enable */
lypinator 0:bb348c97df44 13178 #define SDIO_MASK_CMDRENDIE_Pos (6U)
lypinator 0:bb348c97df44 13179 #define SDIO_MASK_CMDRENDIE_Msk (0x1U << SDIO_MASK_CMDRENDIE_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 13180 #define SDIO_MASK_CMDRENDIE SDIO_MASK_CMDRENDIE_Msk /*!<Command Response Received Interrupt Enable */
lypinator 0:bb348c97df44 13181 #define SDIO_MASK_CMDSENTIE_Pos (7U)
lypinator 0:bb348c97df44 13182 #define SDIO_MASK_CMDSENTIE_Msk (0x1U << SDIO_MASK_CMDSENTIE_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 13183 #define SDIO_MASK_CMDSENTIE SDIO_MASK_CMDSENTIE_Msk /*!<Command Sent Interrupt Enable */
lypinator 0:bb348c97df44 13184 #define SDIO_MASK_DATAENDIE_Pos (8U)
lypinator 0:bb348c97df44 13185 #define SDIO_MASK_DATAENDIE_Msk (0x1U << SDIO_MASK_DATAENDIE_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 13186 #define SDIO_MASK_DATAENDIE SDIO_MASK_DATAENDIE_Msk /*!<Data End Interrupt Enable */
lypinator 0:bb348c97df44 13187 #define SDIO_MASK_STBITERRIE_Pos (9U)
lypinator 0:bb348c97df44 13188 #define SDIO_MASK_STBITERRIE_Msk (0x1U << SDIO_MASK_STBITERRIE_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 13189 #define SDIO_MASK_STBITERRIE SDIO_MASK_STBITERRIE_Msk /*!<Start Bit Error Interrupt Enable */
lypinator 0:bb348c97df44 13190 #define SDIO_MASK_DBCKENDIE_Pos (10U)
lypinator 0:bb348c97df44 13191 #define SDIO_MASK_DBCKENDIE_Msk (0x1U << SDIO_MASK_DBCKENDIE_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 13192 #define SDIO_MASK_DBCKENDIE SDIO_MASK_DBCKENDIE_Msk /*!<Data Block End Interrupt Enable */
lypinator 0:bb348c97df44 13193 #define SDIO_MASK_CMDACTIE_Pos (11U)
lypinator 0:bb348c97df44 13194 #define SDIO_MASK_CMDACTIE_Msk (0x1U << SDIO_MASK_CMDACTIE_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 13195 #define SDIO_MASK_CMDACTIE SDIO_MASK_CMDACTIE_Msk /*!<CCommand Acting Interrupt Enable */
lypinator 0:bb348c97df44 13196 #define SDIO_MASK_TXACTIE_Pos (12U)
lypinator 0:bb348c97df44 13197 #define SDIO_MASK_TXACTIE_Msk (0x1U << SDIO_MASK_TXACTIE_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 13198 #define SDIO_MASK_TXACTIE SDIO_MASK_TXACTIE_Msk /*!<Data Transmit Acting Interrupt Enable */
lypinator 0:bb348c97df44 13199 #define SDIO_MASK_RXACTIE_Pos (13U)
lypinator 0:bb348c97df44 13200 #define SDIO_MASK_RXACTIE_Msk (0x1U << SDIO_MASK_RXACTIE_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 13201 #define SDIO_MASK_RXACTIE SDIO_MASK_RXACTIE_Msk /*!<Data receive acting interrupt enabled */
lypinator 0:bb348c97df44 13202 #define SDIO_MASK_TXFIFOHEIE_Pos (14U)
lypinator 0:bb348c97df44 13203 #define SDIO_MASK_TXFIFOHEIE_Msk (0x1U << SDIO_MASK_TXFIFOHEIE_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 13204 #define SDIO_MASK_TXFIFOHEIE SDIO_MASK_TXFIFOHEIE_Msk /*!<Tx FIFO Half Empty interrupt Enable */
lypinator 0:bb348c97df44 13205 #define SDIO_MASK_RXFIFOHFIE_Pos (15U)
lypinator 0:bb348c97df44 13206 #define SDIO_MASK_RXFIFOHFIE_Msk (0x1U << SDIO_MASK_RXFIFOHFIE_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 13207 #define SDIO_MASK_RXFIFOHFIE SDIO_MASK_RXFIFOHFIE_Msk /*!<Rx FIFO Half Full interrupt Enable */
lypinator 0:bb348c97df44 13208 #define SDIO_MASK_TXFIFOFIE_Pos (16U)
lypinator 0:bb348c97df44 13209 #define SDIO_MASK_TXFIFOFIE_Msk (0x1U << SDIO_MASK_TXFIFOFIE_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 13210 #define SDIO_MASK_TXFIFOFIE SDIO_MASK_TXFIFOFIE_Msk /*!<Tx FIFO Full interrupt Enable */
lypinator 0:bb348c97df44 13211 #define SDIO_MASK_RXFIFOFIE_Pos (17U)
lypinator 0:bb348c97df44 13212 #define SDIO_MASK_RXFIFOFIE_Msk (0x1U << SDIO_MASK_RXFIFOFIE_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 13213 #define SDIO_MASK_RXFIFOFIE SDIO_MASK_RXFIFOFIE_Msk /*!<Rx FIFO Full interrupt Enable */
lypinator 0:bb348c97df44 13214 #define SDIO_MASK_TXFIFOEIE_Pos (18U)
lypinator 0:bb348c97df44 13215 #define SDIO_MASK_TXFIFOEIE_Msk (0x1U << SDIO_MASK_TXFIFOEIE_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 13216 #define SDIO_MASK_TXFIFOEIE SDIO_MASK_TXFIFOEIE_Msk /*!<Tx FIFO Empty interrupt Enable */
lypinator 0:bb348c97df44 13217 #define SDIO_MASK_RXFIFOEIE_Pos (19U)
lypinator 0:bb348c97df44 13218 #define SDIO_MASK_RXFIFOEIE_Msk (0x1U << SDIO_MASK_RXFIFOEIE_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 13219 #define SDIO_MASK_RXFIFOEIE SDIO_MASK_RXFIFOEIE_Msk /*!<Rx FIFO Empty interrupt Enable */
lypinator 0:bb348c97df44 13220 #define SDIO_MASK_TXDAVLIE_Pos (20U)
lypinator 0:bb348c97df44 13221 #define SDIO_MASK_TXDAVLIE_Msk (0x1U << SDIO_MASK_TXDAVLIE_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 13222 #define SDIO_MASK_TXDAVLIE SDIO_MASK_TXDAVLIE_Msk /*!<Data available in Tx FIFO interrupt Enable */
lypinator 0:bb348c97df44 13223 #define SDIO_MASK_RXDAVLIE_Pos (21U)
lypinator 0:bb348c97df44 13224 #define SDIO_MASK_RXDAVLIE_Msk (0x1U << SDIO_MASK_RXDAVLIE_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 13225 #define SDIO_MASK_RXDAVLIE SDIO_MASK_RXDAVLIE_Msk /*!<Data available in Rx FIFO interrupt Enable */
lypinator 0:bb348c97df44 13226 #define SDIO_MASK_SDIOITIE_Pos (22U)
lypinator 0:bb348c97df44 13227 #define SDIO_MASK_SDIOITIE_Msk (0x1U << SDIO_MASK_SDIOITIE_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 13228 #define SDIO_MASK_SDIOITIE SDIO_MASK_SDIOITIE_Msk /*!<SDIO Mode Interrupt Received interrupt Enable */
lypinator 0:bb348c97df44 13229 #define SDIO_MASK_CEATAENDIE_Pos (23U)
lypinator 0:bb348c97df44 13230 #define SDIO_MASK_CEATAENDIE_Msk (0x1U << SDIO_MASK_CEATAENDIE_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 13231 #define SDIO_MASK_CEATAENDIE SDIO_MASK_CEATAENDIE_Msk /*!<CE-ATA command completion signal received Interrupt Enable */
lypinator 0:bb348c97df44 13232
lypinator 0:bb348c97df44 13233 /***************** Bit definition for SDIO_FIFOCNT register *****************/
lypinator 0:bb348c97df44 13234 #define SDIO_FIFOCNT_FIFOCOUNT_Pos (0U)
lypinator 0:bb348c97df44 13235 #define SDIO_FIFOCNT_FIFOCOUNT_Msk (0xFFFFFFU << SDIO_FIFOCNT_FIFOCOUNT_Pos) /*!< 0x00FFFFFF */
lypinator 0:bb348c97df44 13236 #define SDIO_FIFOCNT_FIFOCOUNT SDIO_FIFOCNT_FIFOCOUNT_Msk /*!<Remaining number of words to be written to or read from the FIFO */
lypinator 0:bb348c97df44 13237
lypinator 0:bb348c97df44 13238 /****************** Bit definition for SDIO_FIFO register *******************/
lypinator 0:bb348c97df44 13239 #define SDIO_FIFO_FIFODATA_Pos (0U)
lypinator 0:bb348c97df44 13240 #define SDIO_FIFO_FIFODATA_Msk (0xFFFFFFFFU << SDIO_FIFO_FIFODATA_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 13241 #define SDIO_FIFO_FIFODATA SDIO_FIFO_FIFODATA_Msk /*!<Receive and transmit FIFO data */
lypinator 0:bb348c97df44 13242
lypinator 0:bb348c97df44 13243 /******************************************************************************/
lypinator 0:bb348c97df44 13244 /* */
lypinator 0:bb348c97df44 13245 /* Serial Peripheral Interface */
lypinator 0:bb348c97df44 13246 /* */
lypinator 0:bb348c97df44 13247 /******************************************************************************/
lypinator 0:bb348c97df44 13248 #define SPI_I2S_FULLDUPLEX_SUPPORT /*!< I2S Full-Duplex support */
lypinator 0:bb348c97df44 13249
lypinator 0:bb348c97df44 13250 /******************* Bit definition for SPI_CR1 register ********************/
lypinator 0:bb348c97df44 13251 #define SPI_CR1_CPHA_Pos (0U)
lypinator 0:bb348c97df44 13252 #define SPI_CR1_CPHA_Msk (0x1U << SPI_CR1_CPHA_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 13253 #define SPI_CR1_CPHA SPI_CR1_CPHA_Msk /*!<Clock Phase */
lypinator 0:bb348c97df44 13254 #define SPI_CR1_CPOL_Pos (1U)
lypinator 0:bb348c97df44 13255 #define SPI_CR1_CPOL_Msk (0x1U << SPI_CR1_CPOL_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 13256 #define SPI_CR1_CPOL SPI_CR1_CPOL_Msk /*!<Clock Polarity */
lypinator 0:bb348c97df44 13257 #define SPI_CR1_MSTR_Pos (2U)
lypinator 0:bb348c97df44 13258 #define SPI_CR1_MSTR_Msk (0x1U << SPI_CR1_MSTR_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 13259 #define SPI_CR1_MSTR SPI_CR1_MSTR_Msk /*!<Master Selection */
lypinator 0:bb348c97df44 13260
lypinator 0:bb348c97df44 13261 #define SPI_CR1_BR_Pos (3U)
lypinator 0:bb348c97df44 13262 #define SPI_CR1_BR_Msk (0x7U << SPI_CR1_BR_Pos) /*!< 0x00000038 */
lypinator 0:bb348c97df44 13263 #define SPI_CR1_BR SPI_CR1_BR_Msk /*!<BR[2:0] bits (Baud Rate Control) */
lypinator 0:bb348c97df44 13264 #define SPI_CR1_BR_0 (0x1U << SPI_CR1_BR_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 13265 #define SPI_CR1_BR_1 (0x2U << SPI_CR1_BR_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 13266 #define SPI_CR1_BR_2 (0x4U << SPI_CR1_BR_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 13267
lypinator 0:bb348c97df44 13268 #define SPI_CR1_SPE_Pos (6U)
lypinator 0:bb348c97df44 13269 #define SPI_CR1_SPE_Msk (0x1U << SPI_CR1_SPE_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 13270 #define SPI_CR1_SPE SPI_CR1_SPE_Msk /*!<SPI Enable */
lypinator 0:bb348c97df44 13271 #define SPI_CR1_LSBFIRST_Pos (7U)
lypinator 0:bb348c97df44 13272 #define SPI_CR1_LSBFIRST_Msk (0x1U << SPI_CR1_LSBFIRST_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 13273 #define SPI_CR1_LSBFIRST SPI_CR1_LSBFIRST_Msk /*!<Frame Format */
lypinator 0:bb348c97df44 13274 #define SPI_CR1_SSI_Pos (8U)
lypinator 0:bb348c97df44 13275 #define SPI_CR1_SSI_Msk (0x1U << SPI_CR1_SSI_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 13276 #define SPI_CR1_SSI SPI_CR1_SSI_Msk /*!<Internal slave select */
lypinator 0:bb348c97df44 13277 #define SPI_CR1_SSM_Pos (9U)
lypinator 0:bb348c97df44 13278 #define SPI_CR1_SSM_Msk (0x1U << SPI_CR1_SSM_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 13279 #define SPI_CR1_SSM SPI_CR1_SSM_Msk /*!<Software slave management */
lypinator 0:bb348c97df44 13280 #define SPI_CR1_RXONLY_Pos (10U)
lypinator 0:bb348c97df44 13281 #define SPI_CR1_RXONLY_Msk (0x1U << SPI_CR1_RXONLY_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 13282 #define SPI_CR1_RXONLY SPI_CR1_RXONLY_Msk /*!<Receive only */
lypinator 0:bb348c97df44 13283 #define SPI_CR1_DFF_Pos (11U)
lypinator 0:bb348c97df44 13284 #define SPI_CR1_DFF_Msk (0x1U << SPI_CR1_DFF_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 13285 #define SPI_CR1_DFF SPI_CR1_DFF_Msk /*!<Data Frame Format */
lypinator 0:bb348c97df44 13286 #define SPI_CR1_CRCNEXT_Pos (12U)
lypinator 0:bb348c97df44 13287 #define SPI_CR1_CRCNEXT_Msk (0x1U << SPI_CR1_CRCNEXT_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 13288 #define SPI_CR1_CRCNEXT SPI_CR1_CRCNEXT_Msk /*!<Transmit CRC next */
lypinator 0:bb348c97df44 13289 #define SPI_CR1_CRCEN_Pos (13U)
lypinator 0:bb348c97df44 13290 #define SPI_CR1_CRCEN_Msk (0x1U << SPI_CR1_CRCEN_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 13291 #define SPI_CR1_CRCEN SPI_CR1_CRCEN_Msk /*!<Hardware CRC calculation enable */
lypinator 0:bb348c97df44 13292 #define SPI_CR1_BIDIOE_Pos (14U)
lypinator 0:bb348c97df44 13293 #define SPI_CR1_BIDIOE_Msk (0x1U << SPI_CR1_BIDIOE_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 13294 #define SPI_CR1_BIDIOE SPI_CR1_BIDIOE_Msk /*!<Output enable in bidirectional mode */
lypinator 0:bb348c97df44 13295 #define SPI_CR1_BIDIMODE_Pos (15U)
lypinator 0:bb348c97df44 13296 #define SPI_CR1_BIDIMODE_Msk (0x1U << SPI_CR1_BIDIMODE_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 13297 #define SPI_CR1_BIDIMODE SPI_CR1_BIDIMODE_Msk /*!<Bidirectional data mode enable */
lypinator 0:bb348c97df44 13298
lypinator 0:bb348c97df44 13299 /******************* Bit definition for SPI_CR2 register ********************/
lypinator 0:bb348c97df44 13300 #define SPI_CR2_RXDMAEN_Pos (0U)
lypinator 0:bb348c97df44 13301 #define SPI_CR2_RXDMAEN_Msk (0x1U << SPI_CR2_RXDMAEN_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 13302 #define SPI_CR2_RXDMAEN SPI_CR2_RXDMAEN_Msk /*!<Rx Buffer DMA Enable */
lypinator 0:bb348c97df44 13303 #define SPI_CR2_TXDMAEN_Pos (1U)
lypinator 0:bb348c97df44 13304 #define SPI_CR2_TXDMAEN_Msk (0x1U << SPI_CR2_TXDMAEN_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 13305 #define SPI_CR2_TXDMAEN SPI_CR2_TXDMAEN_Msk /*!<Tx Buffer DMA Enable */
lypinator 0:bb348c97df44 13306 #define SPI_CR2_SSOE_Pos (2U)
lypinator 0:bb348c97df44 13307 #define SPI_CR2_SSOE_Msk (0x1U << SPI_CR2_SSOE_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 13308 #define SPI_CR2_SSOE SPI_CR2_SSOE_Msk /*!<SS Output Enable */
lypinator 0:bb348c97df44 13309 #define SPI_CR2_FRF_Pos (4U)
lypinator 0:bb348c97df44 13310 #define SPI_CR2_FRF_Msk (0x1U << SPI_CR2_FRF_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 13311 #define SPI_CR2_FRF SPI_CR2_FRF_Msk /*!<Frame Format */
lypinator 0:bb348c97df44 13312 #define SPI_CR2_ERRIE_Pos (5U)
lypinator 0:bb348c97df44 13313 #define SPI_CR2_ERRIE_Msk (0x1U << SPI_CR2_ERRIE_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 13314 #define SPI_CR2_ERRIE SPI_CR2_ERRIE_Msk /*!<Error Interrupt Enable */
lypinator 0:bb348c97df44 13315 #define SPI_CR2_RXNEIE_Pos (6U)
lypinator 0:bb348c97df44 13316 #define SPI_CR2_RXNEIE_Msk (0x1U << SPI_CR2_RXNEIE_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 13317 #define SPI_CR2_RXNEIE SPI_CR2_RXNEIE_Msk /*!<RX buffer Not Empty Interrupt Enable */
lypinator 0:bb348c97df44 13318 #define SPI_CR2_TXEIE_Pos (7U)
lypinator 0:bb348c97df44 13319 #define SPI_CR2_TXEIE_Msk (0x1U << SPI_CR2_TXEIE_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 13320 #define SPI_CR2_TXEIE SPI_CR2_TXEIE_Msk /*!<Tx buffer Empty Interrupt Enable */
lypinator 0:bb348c97df44 13321
lypinator 0:bb348c97df44 13322 /******************** Bit definition for SPI_SR register ********************/
lypinator 0:bb348c97df44 13323 #define SPI_SR_RXNE_Pos (0U)
lypinator 0:bb348c97df44 13324 #define SPI_SR_RXNE_Msk (0x1U << SPI_SR_RXNE_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 13325 #define SPI_SR_RXNE SPI_SR_RXNE_Msk /*!<Receive buffer Not Empty */
lypinator 0:bb348c97df44 13326 #define SPI_SR_TXE_Pos (1U)
lypinator 0:bb348c97df44 13327 #define SPI_SR_TXE_Msk (0x1U << SPI_SR_TXE_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 13328 #define SPI_SR_TXE SPI_SR_TXE_Msk /*!<Transmit buffer Empty */
lypinator 0:bb348c97df44 13329 #define SPI_SR_CHSIDE_Pos (2U)
lypinator 0:bb348c97df44 13330 #define SPI_SR_CHSIDE_Msk (0x1U << SPI_SR_CHSIDE_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 13331 #define SPI_SR_CHSIDE SPI_SR_CHSIDE_Msk /*!<Channel side */
lypinator 0:bb348c97df44 13332 #define SPI_SR_UDR_Pos (3U)
lypinator 0:bb348c97df44 13333 #define SPI_SR_UDR_Msk (0x1U << SPI_SR_UDR_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 13334 #define SPI_SR_UDR SPI_SR_UDR_Msk /*!<Underrun flag */
lypinator 0:bb348c97df44 13335 #define SPI_SR_CRCERR_Pos (4U)
lypinator 0:bb348c97df44 13336 #define SPI_SR_CRCERR_Msk (0x1U << SPI_SR_CRCERR_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 13337 #define SPI_SR_CRCERR SPI_SR_CRCERR_Msk /*!<CRC Error flag */
lypinator 0:bb348c97df44 13338 #define SPI_SR_MODF_Pos (5U)
lypinator 0:bb348c97df44 13339 #define SPI_SR_MODF_Msk (0x1U << SPI_SR_MODF_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 13340 #define SPI_SR_MODF SPI_SR_MODF_Msk /*!<Mode fault */
lypinator 0:bb348c97df44 13341 #define SPI_SR_OVR_Pos (6U)
lypinator 0:bb348c97df44 13342 #define SPI_SR_OVR_Msk (0x1U << SPI_SR_OVR_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 13343 #define SPI_SR_OVR SPI_SR_OVR_Msk /*!<Overrun flag */
lypinator 0:bb348c97df44 13344 #define SPI_SR_BSY_Pos (7U)
lypinator 0:bb348c97df44 13345 #define SPI_SR_BSY_Msk (0x1U << SPI_SR_BSY_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 13346 #define SPI_SR_BSY SPI_SR_BSY_Msk /*!<Busy flag */
lypinator 0:bb348c97df44 13347 #define SPI_SR_FRE_Pos (8U)
lypinator 0:bb348c97df44 13348 #define SPI_SR_FRE_Msk (0x1U << SPI_SR_FRE_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 13349 #define SPI_SR_FRE SPI_SR_FRE_Msk /*!<Frame format error flag */
lypinator 0:bb348c97df44 13350
lypinator 0:bb348c97df44 13351 /******************** Bit definition for SPI_DR register ********************/
lypinator 0:bb348c97df44 13352 #define SPI_DR_DR_Pos (0U)
lypinator 0:bb348c97df44 13353 #define SPI_DR_DR_Msk (0xFFFFU << SPI_DR_DR_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 13354 #define SPI_DR_DR SPI_DR_DR_Msk /*!<Data Register */
lypinator 0:bb348c97df44 13355
lypinator 0:bb348c97df44 13356 /******************* Bit definition for SPI_CRCPR register ******************/
lypinator 0:bb348c97df44 13357 #define SPI_CRCPR_CRCPOLY_Pos (0U)
lypinator 0:bb348c97df44 13358 #define SPI_CRCPR_CRCPOLY_Msk (0xFFFFU << SPI_CRCPR_CRCPOLY_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 13359 #define SPI_CRCPR_CRCPOLY SPI_CRCPR_CRCPOLY_Msk /*!<CRC polynomial register */
lypinator 0:bb348c97df44 13360
lypinator 0:bb348c97df44 13361 /****************** Bit definition for SPI_RXCRCR register ******************/
lypinator 0:bb348c97df44 13362 #define SPI_RXCRCR_RXCRC_Pos (0U)
lypinator 0:bb348c97df44 13363 #define SPI_RXCRCR_RXCRC_Msk (0xFFFFU << SPI_RXCRCR_RXCRC_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 13364 #define SPI_RXCRCR_RXCRC SPI_RXCRCR_RXCRC_Msk /*!<Rx CRC Register */
lypinator 0:bb348c97df44 13365
lypinator 0:bb348c97df44 13366 /****************** Bit definition for SPI_TXCRCR register ******************/
lypinator 0:bb348c97df44 13367 #define SPI_TXCRCR_TXCRC_Pos (0U)
lypinator 0:bb348c97df44 13368 #define SPI_TXCRCR_TXCRC_Msk (0xFFFFU << SPI_TXCRCR_TXCRC_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 13369 #define SPI_TXCRCR_TXCRC SPI_TXCRCR_TXCRC_Msk /*!<Tx CRC Register */
lypinator 0:bb348c97df44 13370
lypinator 0:bb348c97df44 13371 /****************** Bit definition for SPI_I2SCFGR register *****************/
lypinator 0:bb348c97df44 13372 #define SPI_I2SCFGR_CHLEN_Pos (0U)
lypinator 0:bb348c97df44 13373 #define SPI_I2SCFGR_CHLEN_Msk (0x1U << SPI_I2SCFGR_CHLEN_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 13374 #define SPI_I2SCFGR_CHLEN SPI_I2SCFGR_CHLEN_Msk /*!<Channel length (number of bits per audio channel) */
lypinator 0:bb348c97df44 13375
lypinator 0:bb348c97df44 13376 #define SPI_I2SCFGR_DATLEN_Pos (1U)
lypinator 0:bb348c97df44 13377 #define SPI_I2SCFGR_DATLEN_Msk (0x3U << SPI_I2SCFGR_DATLEN_Pos) /*!< 0x00000006 */
lypinator 0:bb348c97df44 13378 #define SPI_I2SCFGR_DATLEN SPI_I2SCFGR_DATLEN_Msk /*!<DATLEN[1:0] bits (Data length to be transferred) */
lypinator 0:bb348c97df44 13379 #define SPI_I2SCFGR_DATLEN_0 (0x1U << SPI_I2SCFGR_DATLEN_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 13380 #define SPI_I2SCFGR_DATLEN_1 (0x2U << SPI_I2SCFGR_DATLEN_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 13381
lypinator 0:bb348c97df44 13382 #define SPI_I2SCFGR_CKPOL_Pos (3U)
lypinator 0:bb348c97df44 13383 #define SPI_I2SCFGR_CKPOL_Msk (0x1U << SPI_I2SCFGR_CKPOL_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 13384 #define SPI_I2SCFGR_CKPOL SPI_I2SCFGR_CKPOL_Msk /*!<steady state clock polarity */
lypinator 0:bb348c97df44 13385
lypinator 0:bb348c97df44 13386 #define SPI_I2SCFGR_I2SSTD_Pos (4U)
lypinator 0:bb348c97df44 13387 #define SPI_I2SCFGR_I2SSTD_Msk (0x3U << SPI_I2SCFGR_I2SSTD_Pos) /*!< 0x00000030 */
lypinator 0:bb348c97df44 13388 #define SPI_I2SCFGR_I2SSTD SPI_I2SCFGR_I2SSTD_Msk /*!<I2SSTD[1:0] bits (I2S standard selection) */
lypinator 0:bb348c97df44 13389 #define SPI_I2SCFGR_I2SSTD_0 (0x1U << SPI_I2SCFGR_I2SSTD_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 13390 #define SPI_I2SCFGR_I2SSTD_1 (0x2U << SPI_I2SCFGR_I2SSTD_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 13391
lypinator 0:bb348c97df44 13392 #define SPI_I2SCFGR_PCMSYNC_Pos (7U)
lypinator 0:bb348c97df44 13393 #define SPI_I2SCFGR_PCMSYNC_Msk (0x1U << SPI_I2SCFGR_PCMSYNC_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 13394 #define SPI_I2SCFGR_PCMSYNC SPI_I2SCFGR_PCMSYNC_Msk /*!<PCM frame synchronization */
lypinator 0:bb348c97df44 13395
lypinator 0:bb348c97df44 13396 #define SPI_I2SCFGR_I2SCFG_Pos (8U)
lypinator 0:bb348c97df44 13397 #define SPI_I2SCFGR_I2SCFG_Msk (0x3U << SPI_I2SCFGR_I2SCFG_Pos) /*!< 0x00000300 */
lypinator 0:bb348c97df44 13398 #define SPI_I2SCFGR_I2SCFG SPI_I2SCFGR_I2SCFG_Msk /*!<I2SCFG[1:0] bits (I2S configuration mode) */
lypinator 0:bb348c97df44 13399 #define SPI_I2SCFGR_I2SCFG_0 (0x1U << SPI_I2SCFGR_I2SCFG_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 13400 #define SPI_I2SCFGR_I2SCFG_1 (0x2U << SPI_I2SCFGR_I2SCFG_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 13401
lypinator 0:bb348c97df44 13402 #define SPI_I2SCFGR_I2SE_Pos (10U)
lypinator 0:bb348c97df44 13403 #define SPI_I2SCFGR_I2SE_Msk (0x1U << SPI_I2SCFGR_I2SE_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 13404 #define SPI_I2SCFGR_I2SE SPI_I2SCFGR_I2SE_Msk /*!<I2S Enable */
lypinator 0:bb348c97df44 13405 #define SPI_I2SCFGR_I2SMOD_Pos (11U)
lypinator 0:bb348c97df44 13406 #define SPI_I2SCFGR_I2SMOD_Msk (0x1U << SPI_I2SCFGR_I2SMOD_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 13407 #define SPI_I2SCFGR_I2SMOD SPI_I2SCFGR_I2SMOD_Msk /*!<I2S mode selection */
lypinator 0:bb348c97df44 13408
lypinator 0:bb348c97df44 13409 /****************** Bit definition for SPI_I2SPR register *******************/
lypinator 0:bb348c97df44 13410 #define SPI_I2SPR_I2SDIV_Pos (0U)
lypinator 0:bb348c97df44 13411 #define SPI_I2SPR_I2SDIV_Msk (0xFFU << SPI_I2SPR_I2SDIV_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 13412 #define SPI_I2SPR_I2SDIV SPI_I2SPR_I2SDIV_Msk /*!<I2S Linear prescaler */
lypinator 0:bb348c97df44 13413 #define SPI_I2SPR_ODD_Pos (8U)
lypinator 0:bb348c97df44 13414 #define SPI_I2SPR_ODD_Msk (0x1U << SPI_I2SPR_ODD_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 13415 #define SPI_I2SPR_ODD SPI_I2SPR_ODD_Msk /*!<Odd factor for the prescaler */
lypinator 0:bb348c97df44 13416 #define SPI_I2SPR_MCKOE_Pos (9U)
lypinator 0:bb348c97df44 13417 #define SPI_I2SPR_MCKOE_Msk (0x1U << SPI_I2SPR_MCKOE_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 13418 #define SPI_I2SPR_MCKOE SPI_I2SPR_MCKOE_Msk /*!<Master Clock Output Enable */
lypinator 0:bb348c97df44 13419
lypinator 0:bb348c97df44 13420 /******************************************************************************/
lypinator 0:bb348c97df44 13421 /* */
lypinator 0:bb348c97df44 13422 /* SYSCFG */
lypinator 0:bb348c97df44 13423 /* */
lypinator 0:bb348c97df44 13424 /******************************************************************************/
lypinator 0:bb348c97df44 13425 /****************** Bit definition for SYSCFG_MEMRMP register ***************/
lypinator 0:bb348c97df44 13426 #define SYSCFG_MEMRMP_MEM_MODE_Pos (0U)
lypinator 0:bb348c97df44 13427 #define SYSCFG_MEMRMP_MEM_MODE_Msk (0x7U << SYSCFG_MEMRMP_MEM_MODE_Pos) /*!< 0x00000007 */
lypinator 0:bb348c97df44 13428 #define SYSCFG_MEMRMP_MEM_MODE SYSCFG_MEMRMP_MEM_MODE_Msk /*!< SYSCFG_Memory Remap Config */
lypinator 0:bb348c97df44 13429 #define SYSCFG_MEMRMP_MEM_MODE_0 (0x1U << SYSCFG_MEMRMP_MEM_MODE_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 13430 #define SYSCFG_MEMRMP_MEM_MODE_1 (0x2U << SYSCFG_MEMRMP_MEM_MODE_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 13431 #define SYSCFG_MEMRMP_MEM_MODE_2 (0x4U << SYSCFG_MEMRMP_MEM_MODE_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 13432 #define SYSCFG_MEMRMP_UFB_MODE_Pos (8U)
lypinator 0:bb348c97df44 13433 #define SYSCFG_MEMRMP_UFB_MODE_Msk (0x1U << SYSCFG_MEMRMP_UFB_MODE_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 13434 #define SYSCFG_MEMRMP_UFB_MODE SYSCFG_MEMRMP_UFB_MODE_Msk /*!< User Flash Bank mode */
lypinator 0:bb348c97df44 13435 #define SYSCFG_MEMRMP_SWP_FMC_Pos (10U)
lypinator 0:bb348c97df44 13436 #define SYSCFG_MEMRMP_SWP_FMC_Msk (0x3U << SYSCFG_MEMRMP_SWP_FMC_Pos) /*!< 0x00000C00 */
lypinator 0:bb348c97df44 13437 #define SYSCFG_MEMRMP_SWP_FMC SYSCFG_MEMRMP_SWP_FMC_Msk /*!< FMC memory mapping swap */
lypinator 0:bb348c97df44 13438 #define SYSCFG_MEMRMP_SWP_FMC_0 (0x1U << SYSCFG_MEMRMP_SWP_FMC_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 13439 /* Legacy Defines */
lypinator 0:bb348c97df44 13440 #define SYSCFG_SWP_FMC SYSCFG_MEMRMP_SWP_FMC
lypinator 0:bb348c97df44 13441 /****************** Bit definition for SYSCFG_PMC register ******************/
lypinator 0:bb348c97df44 13442 #define SYSCFG_PMC_ADCxDC2_Pos (16U)
lypinator 0:bb348c97df44 13443 #define SYSCFG_PMC_ADCxDC2_Msk (0x7U << SYSCFG_PMC_ADCxDC2_Pos) /*!< 0x00070000 */
lypinator 0:bb348c97df44 13444 #define SYSCFG_PMC_ADCxDC2 SYSCFG_PMC_ADCxDC2_Msk /*!< Refer to AN4073 on how to use this bit */
lypinator 0:bb348c97df44 13445 #define SYSCFG_PMC_ADC1DC2_Pos (16U)
lypinator 0:bb348c97df44 13446 #define SYSCFG_PMC_ADC1DC2_Msk (0x1U << SYSCFG_PMC_ADC1DC2_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 13447 #define SYSCFG_PMC_ADC1DC2 SYSCFG_PMC_ADC1DC2_Msk /*!< Refer to AN4073 on how to use this bit */
lypinator 0:bb348c97df44 13448 #define SYSCFG_PMC_ADC2DC2_Pos (17U)
lypinator 0:bb348c97df44 13449 #define SYSCFG_PMC_ADC2DC2_Msk (0x1U << SYSCFG_PMC_ADC2DC2_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 13450 #define SYSCFG_PMC_ADC2DC2 SYSCFG_PMC_ADC2DC2_Msk /*!< Refer to AN4073 on how to use this bit */
lypinator 0:bb348c97df44 13451 #define SYSCFG_PMC_ADC3DC2_Pos (18U)
lypinator 0:bb348c97df44 13452 #define SYSCFG_PMC_ADC3DC2_Msk (0x1U << SYSCFG_PMC_ADC3DC2_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 13453 #define SYSCFG_PMC_ADC3DC2 SYSCFG_PMC_ADC3DC2_Msk /*!< Refer to AN4073 on how to use this bit */
lypinator 0:bb348c97df44 13454 #define SYSCFG_PMC_MII_RMII_SEL_Pos (23U)
lypinator 0:bb348c97df44 13455 #define SYSCFG_PMC_MII_RMII_SEL_Msk (0x1U << SYSCFG_PMC_MII_RMII_SEL_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 13456 #define SYSCFG_PMC_MII_RMII_SEL SYSCFG_PMC_MII_RMII_SEL_Msk /*!<Ethernet PHY interface selection */
lypinator 0:bb348c97df44 13457 /* Old MII_RMII_SEL bit definition, maintained for legacy purpose */
lypinator 0:bb348c97df44 13458 #define SYSCFG_PMC_MII_RMII SYSCFG_PMC_MII_RMII_SEL
lypinator 0:bb348c97df44 13459
lypinator 0:bb348c97df44 13460 /***************** Bit definition for SYSCFG_EXTICR1 register ***************/
lypinator 0:bb348c97df44 13461 #define SYSCFG_EXTICR1_EXTI0_Pos (0U)
lypinator 0:bb348c97df44 13462 #define SYSCFG_EXTICR1_EXTI0_Msk (0xFU << SYSCFG_EXTICR1_EXTI0_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 13463 #define SYSCFG_EXTICR1_EXTI0 SYSCFG_EXTICR1_EXTI0_Msk /*!<EXTI 0 configuration */
lypinator 0:bb348c97df44 13464 #define SYSCFG_EXTICR1_EXTI1_Pos (4U)
lypinator 0:bb348c97df44 13465 #define SYSCFG_EXTICR1_EXTI1_Msk (0xFU << SYSCFG_EXTICR1_EXTI1_Pos) /*!< 0x000000F0 */
lypinator 0:bb348c97df44 13466 #define SYSCFG_EXTICR1_EXTI1 SYSCFG_EXTICR1_EXTI1_Msk /*!<EXTI 1 configuration */
lypinator 0:bb348c97df44 13467 #define SYSCFG_EXTICR1_EXTI2_Pos (8U)
lypinator 0:bb348c97df44 13468 #define SYSCFG_EXTICR1_EXTI2_Msk (0xFU << SYSCFG_EXTICR1_EXTI2_Pos) /*!< 0x00000F00 */
lypinator 0:bb348c97df44 13469 #define SYSCFG_EXTICR1_EXTI2 SYSCFG_EXTICR1_EXTI2_Msk /*!<EXTI 2 configuration */
lypinator 0:bb348c97df44 13470 #define SYSCFG_EXTICR1_EXTI3_Pos (12U)
lypinator 0:bb348c97df44 13471 #define SYSCFG_EXTICR1_EXTI3_Msk (0xFU << SYSCFG_EXTICR1_EXTI3_Pos) /*!< 0x0000F000 */
lypinator 0:bb348c97df44 13472 #define SYSCFG_EXTICR1_EXTI3 SYSCFG_EXTICR1_EXTI3_Msk /*!<EXTI 3 configuration */
lypinator 0:bb348c97df44 13473 /**
lypinator 0:bb348c97df44 13474 * @brief EXTI0 configuration
lypinator 0:bb348c97df44 13475 */
lypinator 0:bb348c97df44 13476 #define SYSCFG_EXTICR1_EXTI0_PA 0x0000U /*!<PA[0] pin */
lypinator 0:bb348c97df44 13477 #define SYSCFG_EXTICR1_EXTI0_PB 0x0001U /*!<PB[0] pin */
lypinator 0:bb348c97df44 13478 #define SYSCFG_EXTICR1_EXTI0_PC 0x0002U /*!<PC[0] pin */
lypinator 0:bb348c97df44 13479 #define SYSCFG_EXTICR1_EXTI0_PD 0x0003U /*!<PD[0] pin */
lypinator 0:bb348c97df44 13480 #define SYSCFG_EXTICR1_EXTI0_PE 0x0004U /*!<PE[0] pin */
lypinator 0:bb348c97df44 13481 #define SYSCFG_EXTICR1_EXTI0_PF 0x0005U /*!<PF[0] pin */
lypinator 0:bb348c97df44 13482 #define SYSCFG_EXTICR1_EXTI0_PG 0x0006U /*!<PG[0] pin */
lypinator 0:bb348c97df44 13483 #define SYSCFG_EXTICR1_EXTI0_PH 0x0007U /*!<PH[0] pin */
lypinator 0:bb348c97df44 13484 #define SYSCFG_EXTICR1_EXTI0_PI 0x0008U /*!<PI[0] pin */
lypinator 0:bb348c97df44 13485 #define SYSCFG_EXTICR1_EXTI0_PJ 0x0009U /*!<PJ[0] pin */
lypinator 0:bb348c97df44 13486 #define SYSCFG_EXTICR1_EXTI0_PK 0x000AU /*!<PK[0] pin */
lypinator 0:bb348c97df44 13487
lypinator 0:bb348c97df44 13488 /**
lypinator 0:bb348c97df44 13489 * @brief EXTI1 configuration
lypinator 0:bb348c97df44 13490 */
lypinator 0:bb348c97df44 13491 #define SYSCFG_EXTICR1_EXTI1_PA 0x0000U /*!<PA[1] pin */
lypinator 0:bb348c97df44 13492 #define SYSCFG_EXTICR1_EXTI1_PB 0x0010U /*!<PB[1] pin */
lypinator 0:bb348c97df44 13493 #define SYSCFG_EXTICR1_EXTI1_PC 0x0020U /*!<PC[1] pin */
lypinator 0:bb348c97df44 13494 #define SYSCFG_EXTICR1_EXTI1_PD 0x0030U /*!<PD[1] pin */
lypinator 0:bb348c97df44 13495 #define SYSCFG_EXTICR1_EXTI1_PE 0x0040U /*!<PE[1] pin */
lypinator 0:bb348c97df44 13496 #define SYSCFG_EXTICR1_EXTI1_PF 0x0050U /*!<PF[1] pin */
lypinator 0:bb348c97df44 13497 #define SYSCFG_EXTICR1_EXTI1_PG 0x0060U /*!<PG[1] pin */
lypinator 0:bb348c97df44 13498 #define SYSCFG_EXTICR1_EXTI1_PH 0x0070U /*!<PH[1] pin */
lypinator 0:bb348c97df44 13499 #define SYSCFG_EXTICR1_EXTI1_PI 0x0080U /*!<PI[1] pin */
lypinator 0:bb348c97df44 13500 #define SYSCFG_EXTICR1_EXTI1_PJ 0x0090U /*!<PJ[1] pin */
lypinator 0:bb348c97df44 13501 #define SYSCFG_EXTICR1_EXTI1_PK 0x00A0U /*!<PK[1] pin */
lypinator 0:bb348c97df44 13502
lypinator 0:bb348c97df44 13503 /**
lypinator 0:bb348c97df44 13504 * @brief EXTI2 configuration
lypinator 0:bb348c97df44 13505 */
lypinator 0:bb348c97df44 13506 #define SYSCFG_EXTICR1_EXTI2_PA 0x0000U /*!<PA[2] pin */
lypinator 0:bb348c97df44 13507 #define SYSCFG_EXTICR1_EXTI2_PB 0x0100U /*!<PB[2] pin */
lypinator 0:bb348c97df44 13508 #define SYSCFG_EXTICR1_EXTI2_PC 0x0200U /*!<PC[2] pin */
lypinator 0:bb348c97df44 13509 #define SYSCFG_EXTICR1_EXTI2_PD 0x0300U /*!<PD[2] pin */
lypinator 0:bb348c97df44 13510 #define SYSCFG_EXTICR1_EXTI2_PE 0x0400U /*!<PE[2] pin */
lypinator 0:bb348c97df44 13511 #define SYSCFG_EXTICR1_EXTI2_PF 0x0500U /*!<PF[2] pin */
lypinator 0:bb348c97df44 13512 #define SYSCFG_EXTICR1_EXTI2_PG 0x0600U /*!<PG[2] pin */
lypinator 0:bb348c97df44 13513 #define SYSCFG_EXTICR1_EXTI2_PH 0x0700U /*!<PH[2] pin */
lypinator 0:bb348c97df44 13514 #define SYSCFG_EXTICR1_EXTI2_PI 0x0800U /*!<PI[2] pin */
lypinator 0:bb348c97df44 13515 #define SYSCFG_EXTICR1_EXTI2_PJ 0x0900U /*!<PJ[2] pin */
lypinator 0:bb348c97df44 13516 #define SYSCFG_EXTICR1_EXTI2_PK 0x0A00U /*!<PK[2] pin */
lypinator 0:bb348c97df44 13517
lypinator 0:bb348c97df44 13518 /**
lypinator 0:bb348c97df44 13519 * @brief EXTI3 configuration
lypinator 0:bb348c97df44 13520 */
lypinator 0:bb348c97df44 13521 #define SYSCFG_EXTICR1_EXTI3_PA 0x0000U /*!<PA[3] pin */
lypinator 0:bb348c97df44 13522 #define SYSCFG_EXTICR1_EXTI3_PB 0x1000U /*!<PB[3] pin */
lypinator 0:bb348c97df44 13523 #define SYSCFG_EXTICR1_EXTI3_PC 0x2000U /*!<PC[3] pin */
lypinator 0:bb348c97df44 13524 #define SYSCFG_EXTICR1_EXTI3_PD 0x3000U /*!<PD[3] pin */
lypinator 0:bb348c97df44 13525 #define SYSCFG_EXTICR1_EXTI3_PE 0x4000U /*!<PE[3] pin */
lypinator 0:bb348c97df44 13526 #define SYSCFG_EXTICR1_EXTI3_PF 0x5000U /*!<PF[3] pin */
lypinator 0:bb348c97df44 13527 #define SYSCFG_EXTICR1_EXTI3_PG 0x6000U /*!<PG[3] pin */
lypinator 0:bb348c97df44 13528 #define SYSCFG_EXTICR1_EXTI3_PH 0x7000U /*!<PH[3] pin */
lypinator 0:bb348c97df44 13529 #define SYSCFG_EXTICR1_EXTI3_PI 0x8000U /*!<PI[3] pin */
lypinator 0:bb348c97df44 13530 #define SYSCFG_EXTICR1_EXTI3_PJ 0x9000U /*!<PJ[3] pin */
lypinator 0:bb348c97df44 13531 #define SYSCFG_EXTICR1_EXTI3_PK 0xA000U /*!<PK[3] pin */
lypinator 0:bb348c97df44 13532
lypinator 0:bb348c97df44 13533 /***************** Bit definition for SYSCFG_EXTICR2 register ***************/
lypinator 0:bb348c97df44 13534 #define SYSCFG_EXTICR2_EXTI4_Pos (0U)
lypinator 0:bb348c97df44 13535 #define SYSCFG_EXTICR2_EXTI4_Msk (0xFU << SYSCFG_EXTICR2_EXTI4_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 13536 #define SYSCFG_EXTICR2_EXTI4 SYSCFG_EXTICR2_EXTI4_Msk /*!<EXTI 4 configuration */
lypinator 0:bb348c97df44 13537 #define SYSCFG_EXTICR2_EXTI5_Pos (4U)
lypinator 0:bb348c97df44 13538 #define SYSCFG_EXTICR2_EXTI5_Msk (0xFU << SYSCFG_EXTICR2_EXTI5_Pos) /*!< 0x000000F0 */
lypinator 0:bb348c97df44 13539 #define SYSCFG_EXTICR2_EXTI5 SYSCFG_EXTICR2_EXTI5_Msk /*!<EXTI 5 configuration */
lypinator 0:bb348c97df44 13540 #define SYSCFG_EXTICR2_EXTI6_Pos (8U)
lypinator 0:bb348c97df44 13541 #define SYSCFG_EXTICR2_EXTI6_Msk (0xFU << SYSCFG_EXTICR2_EXTI6_Pos) /*!< 0x00000F00 */
lypinator 0:bb348c97df44 13542 #define SYSCFG_EXTICR2_EXTI6 SYSCFG_EXTICR2_EXTI6_Msk /*!<EXTI 6 configuration */
lypinator 0:bb348c97df44 13543 #define SYSCFG_EXTICR2_EXTI7_Pos (12U)
lypinator 0:bb348c97df44 13544 #define SYSCFG_EXTICR2_EXTI7_Msk (0xFU << SYSCFG_EXTICR2_EXTI7_Pos) /*!< 0x0000F000 */
lypinator 0:bb348c97df44 13545 #define SYSCFG_EXTICR2_EXTI7 SYSCFG_EXTICR2_EXTI7_Msk /*!<EXTI 7 configuration */
lypinator 0:bb348c97df44 13546
lypinator 0:bb348c97df44 13547 /**
lypinator 0:bb348c97df44 13548 * @brief EXTI4 configuration
lypinator 0:bb348c97df44 13549 */
lypinator 0:bb348c97df44 13550 #define SYSCFG_EXTICR2_EXTI4_PA 0x0000U /*!<PA[4] pin */
lypinator 0:bb348c97df44 13551 #define SYSCFG_EXTICR2_EXTI4_PB 0x0001U /*!<PB[4] pin */
lypinator 0:bb348c97df44 13552 #define SYSCFG_EXTICR2_EXTI4_PC 0x0002U /*!<PC[4] pin */
lypinator 0:bb348c97df44 13553 #define SYSCFG_EXTICR2_EXTI4_PD 0x0003U /*!<PD[4] pin */
lypinator 0:bb348c97df44 13554 #define SYSCFG_EXTICR2_EXTI4_PE 0x0004U /*!<PE[4] pin */
lypinator 0:bb348c97df44 13555 #define SYSCFG_EXTICR2_EXTI4_PF 0x0005U /*!<PF[4] pin */
lypinator 0:bb348c97df44 13556 #define SYSCFG_EXTICR2_EXTI4_PG 0x0006U /*!<PG[4] pin */
lypinator 0:bb348c97df44 13557 #define SYSCFG_EXTICR2_EXTI4_PH 0x0007U /*!<PH[4] pin */
lypinator 0:bb348c97df44 13558 #define SYSCFG_EXTICR2_EXTI4_PI 0x0008U /*!<PI[4] pin */
lypinator 0:bb348c97df44 13559 #define SYSCFG_EXTICR2_EXTI4_PJ 0x0009U /*!<PJ[4] pin */
lypinator 0:bb348c97df44 13560 #define SYSCFG_EXTICR2_EXTI4_PK 0x000AU /*!<PK[4] pin */
lypinator 0:bb348c97df44 13561
lypinator 0:bb348c97df44 13562 /**
lypinator 0:bb348c97df44 13563 * @brief EXTI5 configuration
lypinator 0:bb348c97df44 13564 */
lypinator 0:bb348c97df44 13565 #define SYSCFG_EXTICR2_EXTI5_PA 0x0000U /*!<PA[5] pin */
lypinator 0:bb348c97df44 13566 #define SYSCFG_EXTICR2_EXTI5_PB 0x0010U /*!<PB[5] pin */
lypinator 0:bb348c97df44 13567 #define SYSCFG_EXTICR2_EXTI5_PC 0x0020U /*!<PC[5] pin */
lypinator 0:bb348c97df44 13568 #define SYSCFG_EXTICR2_EXTI5_PD 0x0030U /*!<PD[5] pin */
lypinator 0:bb348c97df44 13569 #define SYSCFG_EXTICR2_EXTI5_PE 0x0040U /*!<PE[5] pin */
lypinator 0:bb348c97df44 13570 #define SYSCFG_EXTICR2_EXTI5_PF 0x0050U /*!<PF[5] pin */
lypinator 0:bb348c97df44 13571 #define SYSCFG_EXTICR2_EXTI5_PG 0x0060U /*!<PG[5] pin */
lypinator 0:bb348c97df44 13572 #define SYSCFG_EXTICR2_EXTI5_PH 0x0070U /*!<PH[5] pin */
lypinator 0:bb348c97df44 13573 #define SYSCFG_EXTICR2_EXTI5_PI 0x0080U /*!<PI[5] pin */
lypinator 0:bb348c97df44 13574 #define SYSCFG_EXTICR2_EXTI5_PJ 0x0090U /*!<PJ[5] pin */
lypinator 0:bb348c97df44 13575 #define SYSCFG_EXTICR2_EXTI5_PK 0x00A0U /*!<PK[5] pin */
lypinator 0:bb348c97df44 13576
lypinator 0:bb348c97df44 13577 /**
lypinator 0:bb348c97df44 13578 * @brief EXTI6 configuration
lypinator 0:bb348c97df44 13579 */
lypinator 0:bb348c97df44 13580 #define SYSCFG_EXTICR2_EXTI6_PA 0x0000U /*!<PA[6] pin */
lypinator 0:bb348c97df44 13581 #define SYSCFG_EXTICR2_EXTI6_PB 0x0100U /*!<PB[6] pin */
lypinator 0:bb348c97df44 13582 #define SYSCFG_EXTICR2_EXTI6_PC 0x0200U /*!<PC[6] pin */
lypinator 0:bb348c97df44 13583 #define SYSCFG_EXTICR2_EXTI6_PD 0x0300U /*!<PD[6] pin */
lypinator 0:bb348c97df44 13584 #define SYSCFG_EXTICR2_EXTI6_PE 0x0400U /*!<PE[6] pin */
lypinator 0:bb348c97df44 13585 #define SYSCFG_EXTICR2_EXTI6_PF 0x0500U /*!<PF[6] pin */
lypinator 0:bb348c97df44 13586 #define SYSCFG_EXTICR2_EXTI6_PG 0x0600U /*!<PG[6] pin */
lypinator 0:bb348c97df44 13587 #define SYSCFG_EXTICR2_EXTI6_PH 0x0700U /*!<PH[6] pin */
lypinator 0:bb348c97df44 13588 #define SYSCFG_EXTICR2_EXTI6_PI 0x0800U /*!<PI[6] pin */
lypinator 0:bb348c97df44 13589 #define SYSCFG_EXTICR2_EXTI6_PJ 0x0900U /*!<PJ[6] pin */
lypinator 0:bb348c97df44 13590 #define SYSCFG_EXTICR2_EXTI6_PK 0x0A00U /*!<PK[6] pin */
lypinator 0:bb348c97df44 13591
lypinator 0:bb348c97df44 13592 /**
lypinator 0:bb348c97df44 13593 * @brief EXTI7 configuration
lypinator 0:bb348c97df44 13594 */
lypinator 0:bb348c97df44 13595 #define SYSCFG_EXTICR2_EXTI7_PA 0x0000U /*!<PA[7] pin */
lypinator 0:bb348c97df44 13596 #define SYSCFG_EXTICR2_EXTI7_PB 0x1000U /*!<PB[7] pin */
lypinator 0:bb348c97df44 13597 #define SYSCFG_EXTICR2_EXTI7_PC 0x2000U /*!<PC[7] pin */
lypinator 0:bb348c97df44 13598 #define SYSCFG_EXTICR2_EXTI7_PD 0x3000U /*!<PD[7] pin */
lypinator 0:bb348c97df44 13599 #define SYSCFG_EXTICR2_EXTI7_PE 0x4000U /*!<PE[7] pin */
lypinator 0:bb348c97df44 13600 #define SYSCFG_EXTICR2_EXTI7_PF 0x5000U /*!<PF[7] pin */
lypinator 0:bb348c97df44 13601 #define SYSCFG_EXTICR2_EXTI7_PG 0x6000U /*!<PG[7] pin */
lypinator 0:bb348c97df44 13602 #define SYSCFG_EXTICR2_EXTI7_PH 0x7000U /*!<PH[7] pin */
lypinator 0:bb348c97df44 13603 #define SYSCFG_EXTICR2_EXTI7_PI 0x8000U /*!<PI[7] pin */
lypinator 0:bb348c97df44 13604 #define SYSCFG_EXTICR2_EXTI7_PJ 0x9000U /*!<PJ[7] pin */
lypinator 0:bb348c97df44 13605 #define SYSCFG_EXTICR2_EXTI7_PK 0xA000U /*!<PK[7] pin */
lypinator 0:bb348c97df44 13606
lypinator 0:bb348c97df44 13607 /***************** Bit definition for SYSCFG_EXTICR3 register ***************/
lypinator 0:bb348c97df44 13608 #define SYSCFG_EXTICR3_EXTI8_Pos (0U)
lypinator 0:bb348c97df44 13609 #define SYSCFG_EXTICR3_EXTI8_Msk (0xFU << SYSCFG_EXTICR3_EXTI8_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 13610 #define SYSCFG_EXTICR3_EXTI8 SYSCFG_EXTICR3_EXTI8_Msk /*!<EXTI 8 configuration */
lypinator 0:bb348c97df44 13611 #define SYSCFG_EXTICR3_EXTI9_Pos (4U)
lypinator 0:bb348c97df44 13612 #define SYSCFG_EXTICR3_EXTI9_Msk (0xFU << SYSCFG_EXTICR3_EXTI9_Pos) /*!< 0x000000F0 */
lypinator 0:bb348c97df44 13613 #define SYSCFG_EXTICR3_EXTI9 SYSCFG_EXTICR3_EXTI9_Msk /*!<EXTI 9 configuration */
lypinator 0:bb348c97df44 13614 #define SYSCFG_EXTICR3_EXTI10_Pos (8U)
lypinator 0:bb348c97df44 13615 #define SYSCFG_EXTICR3_EXTI10_Msk (0xFU << SYSCFG_EXTICR3_EXTI10_Pos) /*!< 0x00000F00 */
lypinator 0:bb348c97df44 13616 #define SYSCFG_EXTICR3_EXTI10 SYSCFG_EXTICR3_EXTI10_Msk /*!<EXTI 10 configuration */
lypinator 0:bb348c97df44 13617 #define SYSCFG_EXTICR3_EXTI11_Pos (12U)
lypinator 0:bb348c97df44 13618 #define SYSCFG_EXTICR3_EXTI11_Msk (0xFU << SYSCFG_EXTICR3_EXTI11_Pos) /*!< 0x0000F000 */
lypinator 0:bb348c97df44 13619 #define SYSCFG_EXTICR3_EXTI11 SYSCFG_EXTICR3_EXTI11_Msk /*!<EXTI 11 configuration */
lypinator 0:bb348c97df44 13620
lypinator 0:bb348c97df44 13621 /**
lypinator 0:bb348c97df44 13622 * @brief EXTI8 configuration
lypinator 0:bb348c97df44 13623 */
lypinator 0:bb348c97df44 13624 #define SYSCFG_EXTICR3_EXTI8_PA 0x0000U /*!<PA[8] pin */
lypinator 0:bb348c97df44 13625 #define SYSCFG_EXTICR3_EXTI8_PB 0x0001U /*!<PB[8] pin */
lypinator 0:bb348c97df44 13626 #define SYSCFG_EXTICR3_EXTI8_PC 0x0002U /*!<PC[8] pin */
lypinator 0:bb348c97df44 13627 #define SYSCFG_EXTICR3_EXTI8_PD 0x0003U /*!<PD[8] pin */
lypinator 0:bb348c97df44 13628 #define SYSCFG_EXTICR3_EXTI8_PE 0x0004U /*!<PE[8] pin */
lypinator 0:bb348c97df44 13629 #define SYSCFG_EXTICR3_EXTI8_PF 0x0005U /*!<PF[8] pin */
lypinator 0:bb348c97df44 13630 #define SYSCFG_EXTICR3_EXTI8_PG 0x0006U /*!<PG[8] pin */
lypinator 0:bb348c97df44 13631 #define SYSCFG_EXTICR3_EXTI8_PH 0x0007U /*!<PH[8] pin */
lypinator 0:bb348c97df44 13632 #define SYSCFG_EXTICR3_EXTI8_PI 0x0008U /*!<PI[8] pin */
lypinator 0:bb348c97df44 13633 #define SYSCFG_EXTICR3_EXTI8_PJ 0x0009U /*!<PJ[8] pin */
lypinator 0:bb348c97df44 13634
lypinator 0:bb348c97df44 13635 /**
lypinator 0:bb348c97df44 13636 * @brief EXTI9 configuration
lypinator 0:bb348c97df44 13637 */
lypinator 0:bb348c97df44 13638 #define SYSCFG_EXTICR3_EXTI9_PA 0x0000U /*!<PA[9] pin */
lypinator 0:bb348c97df44 13639 #define SYSCFG_EXTICR3_EXTI9_PB 0x0010U /*!<PB[9] pin */
lypinator 0:bb348c97df44 13640 #define SYSCFG_EXTICR3_EXTI9_PC 0x0020U /*!<PC[9] pin */
lypinator 0:bb348c97df44 13641 #define SYSCFG_EXTICR3_EXTI9_PD 0x0030U /*!<PD[9] pin */
lypinator 0:bb348c97df44 13642 #define SYSCFG_EXTICR3_EXTI9_PE 0x0040U /*!<PE[9] pin */
lypinator 0:bb348c97df44 13643 #define SYSCFG_EXTICR3_EXTI9_PF 0x0050U /*!<PF[9] pin */
lypinator 0:bb348c97df44 13644 #define SYSCFG_EXTICR3_EXTI9_PG 0x0060U /*!<PG[9] pin */
lypinator 0:bb348c97df44 13645 #define SYSCFG_EXTICR3_EXTI9_PH 0x0070U /*!<PH[9] pin */
lypinator 0:bb348c97df44 13646 #define SYSCFG_EXTICR3_EXTI9_PI 0x0080U /*!<PI[9] pin */
lypinator 0:bb348c97df44 13647 #define SYSCFG_EXTICR3_EXTI9_PJ 0x0090U /*!<PJ[9] pin */
lypinator 0:bb348c97df44 13648
lypinator 0:bb348c97df44 13649 /**
lypinator 0:bb348c97df44 13650 * @brief EXTI10 configuration
lypinator 0:bb348c97df44 13651 */
lypinator 0:bb348c97df44 13652 #define SYSCFG_EXTICR3_EXTI10_PA 0x0000U /*!<PA[10] pin */
lypinator 0:bb348c97df44 13653 #define SYSCFG_EXTICR3_EXTI10_PB 0x0100U /*!<PB[10] pin */
lypinator 0:bb348c97df44 13654 #define SYSCFG_EXTICR3_EXTI10_PC 0x0200U /*!<PC[10] pin */
lypinator 0:bb348c97df44 13655 #define SYSCFG_EXTICR3_EXTI10_PD 0x0300U /*!<PD[10] pin */
lypinator 0:bb348c97df44 13656 #define SYSCFG_EXTICR3_EXTI10_PE 0x0400U /*!<PE[10] pin */
lypinator 0:bb348c97df44 13657 #define SYSCFG_EXTICR3_EXTI10_PF 0x0500U /*!<PF[10] pin */
lypinator 0:bb348c97df44 13658 #define SYSCFG_EXTICR3_EXTI10_PG 0x0600U /*!<PG[10] pin */
lypinator 0:bb348c97df44 13659 #define SYSCFG_EXTICR3_EXTI10_PH 0x0700U /*!<PH[10] pin */
lypinator 0:bb348c97df44 13660 #define SYSCFG_EXTICR3_EXTI10_PI 0x0800U /*!<PI[10] pin */
lypinator 0:bb348c97df44 13661 #define SYSCFG_EXTICR3_EXTI10_PJ 0x0900U /*!<PJ[10] pin */
lypinator 0:bb348c97df44 13662
lypinator 0:bb348c97df44 13663 /**
lypinator 0:bb348c97df44 13664 * @brief EXTI11 configuration
lypinator 0:bb348c97df44 13665 */
lypinator 0:bb348c97df44 13666 #define SYSCFG_EXTICR3_EXTI11_PA 0x0000U /*!<PA[11] pin */
lypinator 0:bb348c97df44 13667 #define SYSCFG_EXTICR3_EXTI11_PB 0x1000U /*!<PB[11] pin */
lypinator 0:bb348c97df44 13668 #define SYSCFG_EXTICR3_EXTI11_PC 0x2000U /*!<PC[11] pin */
lypinator 0:bb348c97df44 13669 #define SYSCFG_EXTICR3_EXTI11_PD 0x3000U /*!<PD[11] pin */
lypinator 0:bb348c97df44 13670 #define SYSCFG_EXTICR3_EXTI11_PE 0x4000U /*!<PE[11] pin */
lypinator 0:bb348c97df44 13671 #define SYSCFG_EXTICR3_EXTI11_PF 0x5000U /*!<PF[11] pin */
lypinator 0:bb348c97df44 13672 #define SYSCFG_EXTICR3_EXTI11_PG 0x6000U /*!<PG[11] pin */
lypinator 0:bb348c97df44 13673 #define SYSCFG_EXTICR3_EXTI11_PH 0x7000U /*!<PH[11] pin */
lypinator 0:bb348c97df44 13674 #define SYSCFG_EXTICR3_EXTI11_PI 0x8000U /*!<PI[11] pin */
lypinator 0:bb348c97df44 13675 #define SYSCFG_EXTICR3_EXTI11_PJ 0x9000U /*!<PJ[11] pin */
lypinator 0:bb348c97df44 13676
lypinator 0:bb348c97df44 13677
lypinator 0:bb348c97df44 13678 /***************** Bit definition for SYSCFG_EXTICR4 register ***************/
lypinator 0:bb348c97df44 13679 #define SYSCFG_EXTICR4_EXTI12_Pos (0U)
lypinator 0:bb348c97df44 13680 #define SYSCFG_EXTICR4_EXTI12_Msk (0xFU << SYSCFG_EXTICR4_EXTI12_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 13681 #define SYSCFG_EXTICR4_EXTI12 SYSCFG_EXTICR4_EXTI12_Msk /*!<EXTI 12 configuration */
lypinator 0:bb348c97df44 13682 #define SYSCFG_EXTICR4_EXTI13_Pos (4U)
lypinator 0:bb348c97df44 13683 #define SYSCFG_EXTICR4_EXTI13_Msk (0xFU << SYSCFG_EXTICR4_EXTI13_Pos) /*!< 0x000000F0 */
lypinator 0:bb348c97df44 13684 #define SYSCFG_EXTICR4_EXTI13 SYSCFG_EXTICR4_EXTI13_Msk /*!<EXTI 13 configuration */
lypinator 0:bb348c97df44 13685 #define SYSCFG_EXTICR4_EXTI14_Pos (8U)
lypinator 0:bb348c97df44 13686 #define SYSCFG_EXTICR4_EXTI14_Msk (0xFU << SYSCFG_EXTICR4_EXTI14_Pos) /*!< 0x00000F00 */
lypinator 0:bb348c97df44 13687 #define SYSCFG_EXTICR4_EXTI14 SYSCFG_EXTICR4_EXTI14_Msk /*!<EXTI 14 configuration */
lypinator 0:bb348c97df44 13688 #define SYSCFG_EXTICR4_EXTI15_Pos (12U)
lypinator 0:bb348c97df44 13689 #define SYSCFG_EXTICR4_EXTI15_Msk (0xFU << SYSCFG_EXTICR4_EXTI15_Pos) /*!< 0x0000F000 */
lypinator 0:bb348c97df44 13690 #define SYSCFG_EXTICR4_EXTI15 SYSCFG_EXTICR4_EXTI15_Msk /*!<EXTI 15 configuration */
lypinator 0:bb348c97df44 13691
lypinator 0:bb348c97df44 13692 /**
lypinator 0:bb348c97df44 13693 * @brief EXTI12 configuration
lypinator 0:bb348c97df44 13694 */
lypinator 0:bb348c97df44 13695 #define SYSCFG_EXTICR4_EXTI12_PA 0x0000U /*!<PA[12] pin */
lypinator 0:bb348c97df44 13696 #define SYSCFG_EXTICR4_EXTI12_PB 0x0001U /*!<PB[12] pin */
lypinator 0:bb348c97df44 13697 #define SYSCFG_EXTICR4_EXTI12_PC 0x0002U /*!<PC[12] pin */
lypinator 0:bb348c97df44 13698 #define SYSCFG_EXTICR4_EXTI12_PD 0x0003U /*!<PD[12] pin */
lypinator 0:bb348c97df44 13699 #define SYSCFG_EXTICR4_EXTI12_PE 0x0004U /*!<PE[12] pin */
lypinator 0:bb348c97df44 13700 #define SYSCFG_EXTICR4_EXTI12_PF 0x0005U /*!<PF[12] pin */
lypinator 0:bb348c97df44 13701 #define SYSCFG_EXTICR4_EXTI12_PG 0x0006U /*!<PG[12] pin */
lypinator 0:bb348c97df44 13702 #define SYSCFG_EXTICR4_EXTI12_PH 0x0007U /*!<PH[12] pin */
lypinator 0:bb348c97df44 13703 #define SYSCFG_EXTICR4_EXTI12_PI 0x0008U /*!<PI[12] pin */
lypinator 0:bb348c97df44 13704 #define SYSCFG_EXTICR4_EXTI12_PJ 0x0009U /*!<PJ[12] pin */
lypinator 0:bb348c97df44 13705
lypinator 0:bb348c97df44 13706 /**
lypinator 0:bb348c97df44 13707 * @brief EXTI13 configuration
lypinator 0:bb348c97df44 13708 */
lypinator 0:bb348c97df44 13709 #define SYSCFG_EXTICR4_EXTI13_PA 0x0000U /*!<PA[13] pin */
lypinator 0:bb348c97df44 13710 #define SYSCFG_EXTICR4_EXTI13_PB 0x0010U /*!<PB[13] pin */
lypinator 0:bb348c97df44 13711 #define SYSCFG_EXTICR4_EXTI13_PC 0x0020U /*!<PC[13] pin */
lypinator 0:bb348c97df44 13712 #define SYSCFG_EXTICR4_EXTI13_PD 0x0030U /*!<PD[13] pin */
lypinator 0:bb348c97df44 13713 #define SYSCFG_EXTICR4_EXTI13_PE 0x0040U /*!<PE[13] pin */
lypinator 0:bb348c97df44 13714 #define SYSCFG_EXTICR4_EXTI13_PF 0x0050U /*!<PF[13] pin */
lypinator 0:bb348c97df44 13715 #define SYSCFG_EXTICR4_EXTI13_PG 0x0060U /*!<PG[13] pin */
lypinator 0:bb348c97df44 13716 #define SYSCFG_EXTICR4_EXTI13_PH 0x0070U /*!<PH[13] pin */
lypinator 0:bb348c97df44 13717 #define SYSCFG_EXTICR4_EXTI13_PI 0x0008U /*!<PI[13] pin */
lypinator 0:bb348c97df44 13718 #define SYSCFG_EXTICR4_EXTI13_PJ 0x0009U /*!<PJ[13] pin */
lypinator 0:bb348c97df44 13719
lypinator 0:bb348c97df44 13720 /**
lypinator 0:bb348c97df44 13721 * @brief EXTI14 configuration
lypinator 0:bb348c97df44 13722 */
lypinator 0:bb348c97df44 13723 #define SYSCFG_EXTICR4_EXTI14_PA 0x0000U /*!<PA[14] pin */
lypinator 0:bb348c97df44 13724 #define SYSCFG_EXTICR4_EXTI14_PB 0x0100U /*!<PB[14] pin */
lypinator 0:bb348c97df44 13725 #define SYSCFG_EXTICR4_EXTI14_PC 0x0200U /*!<PC[14] pin */
lypinator 0:bb348c97df44 13726 #define SYSCFG_EXTICR4_EXTI14_PD 0x0300U /*!<PD[14] pin */
lypinator 0:bb348c97df44 13727 #define SYSCFG_EXTICR4_EXTI14_PE 0x0400U /*!<PE[14] pin */
lypinator 0:bb348c97df44 13728 #define SYSCFG_EXTICR4_EXTI14_PF 0x0500U /*!<PF[14] pin */
lypinator 0:bb348c97df44 13729 #define SYSCFG_EXTICR4_EXTI14_PG 0x0600U /*!<PG[14] pin */
lypinator 0:bb348c97df44 13730 #define SYSCFG_EXTICR4_EXTI14_PH 0x0700U /*!<PH[14] pin */
lypinator 0:bb348c97df44 13731 #define SYSCFG_EXTICR4_EXTI14_PI 0x0800U /*!<PI[14] pin */
lypinator 0:bb348c97df44 13732 #define SYSCFG_EXTICR4_EXTI14_PJ 0x0900U /*!<PJ[14] pin */
lypinator 0:bb348c97df44 13733
lypinator 0:bb348c97df44 13734 /**
lypinator 0:bb348c97df44 13735 * @brief EXTI15 configuration
lypinator 0:bb348c97df44 13736 */
lypinator 0:bb348c97df44 13737 #define SYSCFG_EXTICR4_EXTI15_PA 0x0000U /*!<PA[15] pin */
lypinator 0:bb348c97df44 13738 #define SYSCFG_EXTICR4_EXTI15_PB 0x1000U /*!<PB[15] pin */
lypinator 0:bb348c97df44 13739 #define SYSCFG_EXTICR4_EXTI15_PC 0x2000U /*!<PC[15] pin */
lypinator 0:bb348c97df44 13740 #define SYSCFG_EXTICR4_EXTI15_PD 0x3000U /*!<PD[15] pin */
lypinator 0:bb348c97df44 13741 #define SYSCFG_EXTICR4_EXTI15_PE 0x4000U /*!<PE[15] pin */
lypinator 0:bb348c97df44 13742 #define SYSCFG_EXTICR4_EXTI15_PF 0x5000U /*!<PF[15] pin */
lypinator 0:bb348c97df44 13743 #define SYSCFG_EXTICR4_EXTI15_PG 0x6000U /*!<PG[15] pin */
lypinator 0:bb348c97df44 13744 #define SYSCFG_EXTICR4_EXTI15_PH 0x7000U /*!<PH[15] pin */
lypinator 0:bb348c97df44 13745 #define SYSCFG_EXTICR4_EXTI15_PI 0x8000U /*!<PI[15] pin */
lypinator 0:bb348c97df44 13746 #define SYSCFG_EXTICR4_EXTI15_PJ 0x9000U /*!<PJ[15] pin */
lypinator 0:bb348c97df44 13747
lypinator 0:bb348c97df44 13748 /****************** Bit definition for SYSCFG_CMPCR register ****************/
lypinator 0:bb348c97df44 13749 #define SYSCFG_CMPCR_CMP_PD_Pos (0U)
lypinator 0:bb348c97df44 13750 #define SYSCFG_CMPCR_CMP_PD_Msk (0x1U << SYSCFG_CMPCR_CMP_PD_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 13751 #define SYSCFG_CMPCR_CMP_PD SYSCFG_CMPCR_CMP_PD_Msk /*!<Compensation cell ready flag */
lypinator 0:bb348c97df44 13752 #define SYSCFG_CMPCR_READY_Pos (8U)
lypinator 0:bb348c97df44 13753 #define SYSCFG_CMPCR_READY_Msk (0x1U << SYSCFG_CMPCR_READY_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 13754 #define SYSCFG_CMPCR_READY SYSCFG_CMPCR_READY_Msk /*!<Compensation cell power-down */
lypinator 0:bb348c97df44 13755
lypinator 0:bb348c97df44 13756 /******************************************************************************/
lypinator 0:bb348c97df44 13757 /* */
lypinator 0:bb348c97df44 13758 /* TIM */
lypinator 0:bb348c97df44 13759 /* */
lypinator 0:bb348c97df44 13760 /******************************************************************************/
lypinator 0:bb348c97df44 13761 /******************* Bit definition for TIM_CR1 register ********************/
lypinator 0:bb348c97df44 13762 #define TIM_CR1_CEN_Pos (0U)
lypinator 0:bb348c97df44 13763 #define TIM_CR1_CEN_Msk (0x1U << TIM_CR1_CEN_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 13764 #define TIM_CR1_CEN TIM_CR1_CEN_Msk /*!<Counter enable */
lypinator 0:bb348c97df44 13765 #define TIM_CR1_UDIS_Pos (1U)
lypinator 0:bb348c97df44 13766 #define TIM_CR1_UDIS_Msk (0x1U << TIM_CR1_UDIS_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 13767 #define TIM_CR1_UDIS TIM_CR1_UDIS_Msk /*!<Update disable */
lypinator 0:bb348c97df44 13768 #define TIM_CR1_URS_Pos (2U)
lypinator 0:bb348c97df44 13769 #define TIM_CR1_URS_Msk (0x1U << TIM_CR1_URS_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 13770 #define TIM_CR1_URS TIM_CR1_URS_Msk /*!<Update request source */
lypinator 0:bb348c97df44 13771 #define TIM_CR1_OPM_Pos (3U)
lypinator 0:bb348c97df44 13772 #define TIM_CR1_OPM_Msk (0x1U << TIM_CR1_OPM_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 13773 #define TIM_CR1_OPM TIM_CR1_OPM_Msk /*!<One pulse mode */
lypinator 0:bb348c97df44 13774 #define TIM_CR1_DIR_Pos (4U)
lypinator 0:bb348c97df44 13775 #define TIM_CR1_DIR_Msk (0x1U << TIM_CR1_DIR_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 13776 #define TIM_CR1_DIR TIM_CR1_DIR_Msk /*!<Direction */
lypinator 0:bb348c97df44 13777
lypinator 0:bb348c97df44 13778 #define TIM_CR1_CMS_Pos (5U)
lypinator 0:bb348c97df44 13779 #define TIM_CR1_CMS_Msk (0x3U << TIM_CR1_CMS_Pos) /*!< 0x00000060 */
lypinator 0:bb348c97df44 13780 #define TIM_CR1_CMS TIM_CR1_CMS_Msk /*!<CMS[1:0] bits (Center-aligned mode selection) */
lypinator 0:bb348c97df44 13781 #define TIM_CR1_CMS_0 (0x1U << TIM_CR1_CMS_Pos) /*!< 0x0020 */
lypinator 0:bb348c97df44 13782 #define TIM_CR1_CMS_1 (0x2U << TIM_CR1_CMS_Pos) /*!< 0x0040 */
lypinator 0:bb348c97df44 13783
lypinator 0:bb348c97df44 13784 #define TIM_CR1_ARPE_Pos (7U)
lypinator 0:bb348c97df44 13785 #define TIM_CR1_ARPE_Msk (0x1U << TIM_CR1_ARPE_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 13786 #define TIM_CR1_ARPE TIM_CR1_ARPE_Msk /*!<Auto-reload preload enable */
lypinator 0:bb348c97df44 13787
lypinator 0:bb348c97df44 13788 #define TIM_CR1_CKD_Pos (8U)
lypinator 0:bb348c97df44 13789 #define TIM_CR1_CKD_Msk (0x3U << TIM_CR1_CKD_Pos) /*!< 0x00000300 */
lypinator 0:bb348c97df44 13790 #define TIM_CR1_CKD TIM_CR1_CKD_Msk /*!<CKD[1:0] bits (clock division) */
lypinator 0:bb348c97df44 13791 #define TIM_CR1_CKD_0 (0x1U << TIM_CR1_CKD_Pos) /*!< 0x0100 */
lypinator 0:bb348c97df44 13792 #define TIM_CR1_CKD_1 (0x2U << TIM_CR1_CKD_Pos) /*!< 0x0200 */
lypinator 0:bb348c97df44 13793
lypinator 0:bb348c97df44 13794 /******************* Bit definition for TIM_CR2 register ********************/
lypinator 0:bb348c97df44 13795 #define TIM_CR2_CCPC_Pos (0U)
lypinator 0:bb348c97df44 13796 #define TIM_CR2_CCPC_Msk (0x1U << TIM_CR2_CCPC_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 13797 #define TIM_CR2_CCPC TIM_CR2_CCPC_Msk /*!<Capture/Compare Preloaded Control */
lypinator 0:bb348c97df44 13798 #define TIM_CR2_CCUS_Pos (2U)
lypinator 0:bb348c97df44 13799 #define TIM_CR2_CCUS_Msk (0x1U << TIM_CR2_CCUS_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 13800 #define TIM_CR2_CCUS TIM_CR2_CCUS_Msk /*!<Capture/Compare Control Update Selection */
lypinator 0:bb348c97df44 13801 #define TIM_CR2_CCDS_Pos (3U)
lypinator 0:bb348c97df44 13802 #define TIM_CR2_CCDS_Msk (0x1U << TIM_CR2_CCDS_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 13803 #define TIM_CR2_CCDS TIM_CR2_CCDS_Msk /*!<Capture/Compare DMA Selection */
lypinator 0:bb348c97df44 13804
lypinator 0:bb348c97df44 13805 #define TIM_CR2_MMS_Pos (4U)
lypinator 0:bb348c97df44 13806 #define TIM_CR2_MMS_Msk (0x7U << TIM_CR2_MMS_Pos) /*!< 0x00000070 */
lypinator 0:bb348c97df44 13807 #define TIM_CR2_MMS TIM_CR2_MMS_Msk /*!<MMS[2:0] bits (Master Mode Selection) */
lypinator 0:bb348c97df44 13808 #define TIM_CR2_MMS_0 (0x1U << TIM_CR2_MMS_Pos) /*!< 0x0010 */
lypinator 0:bb348c97df44 13809 #define TIM_CR2_MMS_1 (0x2U << TIM_CR2_MMS_Pos) /*!< 0x0020 */
lypinator 0:bb348c97df44 13810 #define TIM_CR2_MMS_2 (0x4U << TIM_CR2_MMS_Pos) /*!< 0x0040 */
lypinator 0:bb348c97df44 13811
lypinator 0:bb348c97df44 13812 #define TIM_CR2_TI1S_Pos (7U)
lypinator 0:bb348c97df44 13813 #define TIM_CR2_TI1S_Msk (0x1U << TIM_CR2_TI1S_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 13814 #define TIM_CR2_TI1S TIM_CR2_TI1S_Msk /*!<TI1 Selection */
lypinator 0:bb348c97df44 13815 #define TIM_CR2_OIS1_Pos (8U)
lypinator 0:bb348c97df44 13816 #define TIM_CR2_OIS1_Msk (0x1U << TIM_CR2_OIS1_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 13817 #define TIM_CR2_OIS1 TIM_CR2_OIS1_Msk /*!<Output Idle state 1 (OC1 output) */
lypinator 0:bb348c97df44 13818 #define TIM_CR2_OIS1N_Pos (9U)
lypinator 0:bb348c97df44 13819 #define TIM_CR2_OIS1N_Msk (0x1U << TIM_CR2_OIS1N_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 13820 #define TIM_CR2_OIS1N TIM_CR2_OIS1N_Msk /*!<Output Idle state 1 (OC1N output) */
lypinator 0:bb348c97df44 13821 #define TIM_CR2_OIS2_Pos (10U)
lypinator 0:bb348c97df44 13822 #define TIM_CR2_OIS2_Msk (0x1U << TIM_CR2_OIS2_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 13823 #define TIM_CR2_OIS2 TIM_CR2_OIS2_Msk /*!<Output Idle state 2 (OC2 output) */
lypinator 0:bb348c97df44 13824 #define TIM_CR2_OIS2N_Pos (11U)
lypinator 0:bb348c97df44 13825 #define TIM_CR2_OIS2N_Msk (0x1U << TIM_CR2_OIS2N_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 13826 #define TIM_CR2_OIS2N TIM_CR2_OIS2N_Msk /*!<Output Idle state 2 (OC2N output) */
lypinator 0:bb348c97df44 13827 #define TIM_CR2_OIS3_Pos (12U)
lypinator 0:bb348c97df44 13828 #define TIM_CR2_OIS3_Msk (0x1U << TIM_CR2_OIS3_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 13829 #define TIM_CR2_OIS3 TIM_CR2_OIS3_Msk /*!<Output Idle state 3 (OC3 output) */
lypinator 0:bb348c97df44 13830 #define TIM_CR2_OIS3N_Pos (13U)
lypinator 0:bb348c97df44 13831 #define TIM_CR2_OIS3N_Msk (0x1U << TIM_CR2_OIS3N_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 13832 #define TIM_CR2_OIS3N TIM_CR2_OIS3N_Msk /*!<Output Idle state 3 (OC3N output) */
lypinator 0:bb348c97df44 13833 #define TIM_CR2_OIS4_Pos (14U)
lypinator 0:bb348c97df44 13834 #define TIM_CR2_OIS4_Msk (0x1U << TIM_CR2_OIS4_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 13835 #define TIM_CR2_OIS4 TIM_CR2_OIS4_Msk /*!<Output Idle state 4 (OC4 output) */
lypinator 0:bb348c97df44 13836
lypinator 0:bb348c97df44 13837 /******************* Bit definition for TIM_SMCR register *******************/
lypinator 0:bb348c97df44 13838 #define TIM_SMCR_SMS_Pos (0U)
lypinator 0:bb348c97df44 13839 #define TIM_SMCR_SMS_Msk (0x7U << TIM_SMCR_SMS_Pos) /*!< 0x00000007 */
lypinator 0:bb348c97df44 13840 #define TIM_SMCR_SMS TIM_SMCR_SMS_Msk /*!<SMS[2:0] bits (Slave mode selection) */
lypinator 0:bb348c97df44 13841 #define TIM_SMCR_SMS_0 (0x1U << TIM_SMCR_SMS_Pos) /*!< 0x0001 */
lypinator 0:bb348c97df44 13842 #define TIM_SMCR_SMS_1 (0x2U << TIM_SMCR_SMS_Pos) /*!< 0x0002 */
lypinator 0:bb348c97df44 13843 #define TIM_SMCR_SMS_2 (0x4U << TIM_SMCR_SMS_Pos) /*!< 0x0004 */
lypinator 0:bb348c97df44 13844
lypinator 0:bb348c97df44 13845 #define TIM_SMCR_TS_Pos (4U)
lypinator 0:bb348c97df44 13846 #define TIM_SMCR_TS_Msk (0x7U << TIM_SMCR_TS_Pos) /*!< 0x00000070 */
lypinator 0:bb348c97df44 13847 #define TIM_SMCR_TS TIM_SMCR_TS_Msk /*!<TS[2:0] bits (Trigger selection) */
lypinator 0:bb348c97df44 13848 #define TIM_SMCR_TS_0 (0x1U << TIM_SMCR_TS_Pos) /*!< 0x0010 */
lypinator 0:bb348c97df44 13849 #define TIM_SMCR_TS_1 (0x2U << TIM_SMCR_TS_Pos) /*!< 0x0020 */
lypinator 0:bb348c97df44 13850 #define TIM_SMCR_TS_2 (0x4U << TIM_SMCR_TS_Pos) /*!< 0x0040 */
lypinator 0:bb348c97df44 13851
lypinator 0:bb348c97df44 13852 #define TIM_SMCR_MSM_Pos (7U)
lypinator 0:bb348c97df44 13853 #define TIM_SMCR_MSM_Msk (0x1U << TIM_SMCR_MSM_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 13854 #define TIM_SMCR_MSM TIM_SMCR_MSM_Msk /*!<Master/slave mode */
lypinator 0:bb348c97df44 13855
lypinator 0:bb348c97df44 13856 #define TIM_SMCR_ETF_Pos (8U)
lypinator 0:bb348c97df44 13857 #define TIM_SMCR_ETF_Msk (0xFU << TIM_SMCR_ETF_Pos) /*!< 0x00000F00 */
lypinator 0:bb348c97df44 13858 #define TIM_SMCR_ETF TIM_SMCR_ETF_Msk /*!<ETF[3:0] bits (External trigger filter) */
lypinator 0:bb348c97df44 13859 #define TIM_SMCR_ETF_0 (0x1U << TIM_SMCR_ETF_Pos) /*!< 0x0100 */
lypinator 0:bb348c97df44 13860 #define TIM_SMCR_ETF_1 (0x2U << TIM_SMCR_ETF_Pos) /*!< 0x0200 */
lypinator 0:bb348c97df44 13861 #define TIM_SMCR_ETF_2 (0x4U << TIM_SMCR_ETF_Pos) /*!< 0x0400 */
lypinator 0:bb348c97df44 13862 #define TIM_SMCR_ETF_3 (0x8U << TIM_SMCR_ETF_Pos) /*!< 0x0800 */
lypinator 0:bb348c97df44 13863
lypinator 0:bb348c97df44 13864 #define TIM_SMCR_ETPS_Pos (12U)
lypinator 0:bb348c97df44 13865 #define TIM_SMCR_ETPS_Msk (0x3U << TIM_SMCR_ETPS_Pos) /*!< 0x00003000 */
lypinator 0:bb348c97df44 13866 #define TIM_SMCR_ETPS TIM_SMCR_ETPS_Msk /*!<ETPS[1:0] bits (External trigger prescaler) */
lypinator 0:bb348c97df44 13867 #define TIM_SMCR_ETPS_0 (0x1U << TIM_SMCR_ETPS_Pos) /*!< 0x1000 */
lypinator 0:bb348c97df44 13868 #define TIM_SMCR_ETPS_1 (0x2U << TIM_SMCR_ETPS_Pos) /*!< 0x2000 */
lypinator 0:bb348c97df44 13869
lypinator 0:bb348c97df44 13870 #define TIM_SMCR_ECE_Pos (14U)
lypinator 0:bb348c97df44 13871 #define TIM_SMCR_ECE_Msk (0x1U << TIM_SMCR_ECE_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 13872 #define TIM_SMCR_ECE TIM_SMCR_ECE_Msk /*!<External clock enable */
lypinator 0:bb348c97df44 13873 #define TIM_SMCR_ETP_Pos (15U)
lypinator 0:bb348c97df44 13874 #define TIM_SMCR_ETP_Msk (0x1U << TIM_SMCR_ETP_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 13875 #define TIM_SMCR_ETP TIM_SMCR_ETP_Msk /*!<External trigger polarity */
lypinator 0:bb348c97df44 13876
lypinator 0:bb348c97df44 13877 /******************* Bit definition for TIM_DIER register *******************/
lypinator 0:bb348c97df44 13878 #define TIM_DIER_UIE_Pos (0U)
lypinator 0:bb348c97df44 13879 #define TIM_DIER_UIE_Msk (0x1U << TIM_DIER_UIE_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 13880 #define TIM_DIER_UIE TIM_DIER_UIE_Msk /*!<Update interrupt enable */
lypinator 0:bb348c97df44 13881 #define TIM_DIER_CC1IE_Pos (1U)
lypinator 0:bb348c97df44 13882 #define TIM_DIER_CC1IE_Msk (0x1U << TIM_DIER_CC1IE_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 13883 #define TIM_DIER_CC1IE TIM_DIER_CC1IE_Msk /*!<Capture/Compare 1 interrupt enable */
lypinator 0:bb348c97df44 13884 #define TIM_DIER_CC2IE_Pos (2U)
lypinator 0:bb348c97df44 13885 #define TIM_DIER_CC2IE_Msk (0x1U << TIM_DIER_CC2IE_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 13886 #define TIM_DIER_CC2IE TIM_DIER_CC2IE_Msk /*!<Capture/Compare 2 interrupt enable */
lypinator 0:bb348c97df44 13887 #define TIM_DIER_CC3IE_Pos (3U)
lypinator 0:bb348c97df44 13888 #define TIM_DIER_CC3IE_Msk (0x1U << TIM_DIER_CC3IE_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 13889 #define TIM_DIER_CC3IE TIM_DIER_CC3IE_Msk /*!<Capture/Compare 3 interrupt enable */
lypinator 0:bb348c97df44 13890 #define TIM_DIER_CC4IE_Pos (4U)
lypinator 0:bb348c97df44 13891 #define TIM_DIER_CC4IE_Msk (0x1U << TIM_DIER_CC4IE_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 13892 #define TIM_DIER_CC4IE TIM_DIER_CC4IE_Msk /*!<Capture/Compare 4 interrupt enable */
lypinator 0:bb348c97df44 13893 #define TIM_DIER_COMIE_Pos (5U)
lypinator 0:bb348c97df44 13894 #define TIM_DIER_COMIE_Msk (0x1U << TIM_DIER_COMIE_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 13895 #define TIM_DIER_COMIE TIM_DIER_COMIE_Msk /*!<COM interrupt enable */
lypinator 0:bb348c97df44 13896 #define TIM_DIER_TIE_Pos (6U)
lypinator 0:bb348c97df44 13897 #define TIM_DIER_TIE_Msk (0x1U << TIM_DIER_TIE_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 13898 #define TIM_DIER_TIE TIM_DIER_TIE_Msk /*!<Trigger interrupt enable */
lypinator 0:bb348c97df44 13899 #define TIM_DIER_BIE_Pos (7U)
lypinator 0:bb348c97df44 13900 #define TIM_DIER_BIE_Msk (0x1U << TIM_DIER_BIE_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 13901 #define TIM_DIER_BIE TIM_DIER_BIE_Msk /*!<Break interrupt enable */
lypinator 0:bb348c97df44 13902 #define TIM_DIER_UDE_Pos (8U)
lypinator 0:bb348c97df44 13903 #define TIM_DIER_UDE_Msk (0x1U << TIM_DIER_UDE_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 13904 #define TIM_DIER_UDE TIM_DIER_UDE_Msk /*!<Update DMA request enable */
lypinator 0:bb348c97df44 13905 #define TIM_DIER_CC1DE_Pos (9U)
lypinator 0:bb348c97df44 13906 #define TIM_DIER_CC1DE_Msk (0x1U << TIM_DIER_CC1DE_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 13907 #define TIM_DIER_CC1DE TIM_DIER_CC1DE_Msk /*!<Capture/Compare 1 DMA request enable */
lypinator 0:bb348c97df44 13908 #define TIM_DIER_CC2DE_Pos (10U)
lypinator 0:bb348c97df44 13909 #define TIM_DIER_CC2DE_Msk (0x1U << TIM_DIER_CC2DE_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 13910 #define TIM_DIER_CC2DE TIM_DIER_CC2DE_Msk /*!<Capture/Compare 2 DMA request enable */
lypinator 0:bb348c97df44 13911 #define TIM_DIER_CC3DE_Pos (11U)
lypinator 0:bb348c97df44 13912 #define TIM_DIER_CC3DE_Msk (0x1U << TIM_DIER_CC3DE_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 13913 #define TIM_DIER_CC3DE TIM_DIER_CC3DE_Msk /*!<Capture/Compare 3 DMA request enable */
lypinator 0:bb348c97df44 13914 #define TIM_DIER_CC4DE_Pos (12U)
lypinator 0:bb348c97df44 13915 #define TIM_DIER_CC4DE_Msk (0x1U << TIM_DIER_CC4DE_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 13916 #define TIM_DIER_CC4DE TIM_DIER_CC4DE_Msk /*!<Capture/Compare 4 DMA request enable */
lypinator 0:bb348c97df44 13917 #define TIM_DIER_COMDE_Pos (13U)
lypinator 0:bb348c97df44 13918 #define TIM_DIER_COMDE_Msk (0x1U << TIM_DIER_COMDE_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 13919 #define TIM_DIER_COMDE TIM_DIER_COMDE_Msk /*!<COM DMA request enable */
lypinator 0:bb348c97df44 13920 #define TIM_DIER_TDE_Pos (14U)
lypinator 0:bb348c97df44 13921 #define TIM_DIER_TDE_Msk (0x1U << TIM_DIER_TDE_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 13922 #define TIM_DIER_TDE TIM_DIER_TDE_Msk /*!<Trigger DMA request enable */
lypinator 0:bb348c97df44 13923
lypinator 0:bb348c97df44 13924 /******************** Bit definition for TIM_SR register ********************/
lypinator 0:bb348c97df44 13925 #define TIM_SR_UIF_Pos (0U)
lypinator 0:bb348c97df44 13926 #define TIM_SR_UIF_Msk (0x1U << TIM_SR_UIF_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 13927 #define TIM_SR_UIF TIM_SR_UIF_Msk /*!<Update interrupt Flag */
lypinator 0:bb348c97df44 13928 #define TIM_SR_CC1IF_Pos (1U)
lypinator 0:bb348c97df44 13929 #define TIM_SR_CC1IF_Msk (0x1U << TIM_SR_CC1IF_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 13930 #define TIM_SR_CC1IF TIM_SR_CC1IF_Msk /*!<Capture/Compare 1 interrupt Flag */
lypinator 0:bb348c97df44 13931 #define TIM_SR_CC2IF_Pos (2U)
lypinator 0:bb348c97df44 13932 #define TIM_SR_CC2IF_Msk (0x1U << TIM_SR_CC2IF_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 13933 #define TIM_SR_CC2IF TIM_SR_CC2IF_Msk /*!<Capture/Compare 2 interrupt Flag */
lypinator 0:bb348c97df44 13934 #define TIM_SR_CC3IF_Pos (3U)
lypinator 0:bb348c97df44 13935 #define TIM_SR_CC3IF_Msk (0x1U << TIM_SR_CC3IF_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 13936 #define TIM_SR_CC3IF TIM_SR_CC3IF_Msk /*!<Capture/Compare 3 interrupt Flag */
lypinator 0:bb348c97df44 13937 #define TIM_SR_CC4IF_Pos (4U)
lypinator 0:bb348c97df44 13938 #define TIM_SR_CC4IF_Msk (0x1U << TIM_SR_CC4IF_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 13939 #define TIM_SR_CC4IF TIM_SR_CC4IF_Msk /*!<Capture/Compare 4 interrupt Flag */
lypinator 0:bb348c97df44 13940 #define TIM_SR_COMIF_Pos (5U)
lypinator 0:bb348c97df44 13941 #define TIM_SR_COMIF_Msk (0x1U << TIM_SR_COMIF_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 13942 #define TIM_SR_COMIF TIM_SR_COMIF_Msk /*!<COM interrupt Flag */
lypinator 0:bb348c97df44 13943 #define TIM_SR_TIF_Pos (6U)
lypinator 0:bb348c97df44 13944 #define TIM_SR_TIF_Msk (0x1U << TIM_SR_TIF_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 13945 #define TIM_SR_TIF TIM_SR_TIF_Msk /*!<Trigger interrupt Flag */
lypinator 0:bb348c97df44 13946 #define TIM_SR_BIF_Pos (7U)
lypinator 0:bb348c97df44 13947 #define TIM_SR_BIF_Msk (0x1U << TIM_SR_BIF_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 13948 #define TIM_SR_BIF TIM_SR_BIF_Msk /*!<Break interrupt Flag */
lypinator 0:bb348c97df44 13949 #define TIM_SR_CC1OF_Pos (9U)
lypinator 0:bb348c97df44 13950 #define TIM_SR_CC1OF_Msk (0x1U << TIM_SR_CC1OF_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 13951 #define TIM_SR_CC1OF TIM_SR_CC1OF_Msk /*!<Capture/Compare 1 Overcapture Flag */
lypinator 0:bb348c97df44 13952 #define TIM_SR_CC2OF_Pos (10U)
lypinator 0:bb348c97df44 13953 #define TIM_SR_CC2OF_Msk (0x1U << TIM_SR_CC2OF_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 13954 #define TIM_SR_CC2OF TIM_SR_CC2OF_Msk /*!<Capture/Compare 2 Overcapture Flag */
lypinator 0:bb348c97df44 13955 #define TIM_SR_CC3OF_Pos (11U)
lypinator 0:bb348c97df44 13956 #define TIM_SR_CC3OF_Msk (0x1U << TIM_SR_CC3OF_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 13957 #define TIM_SR_CC3OF TIM_SR_CC3OF_Msk /*!<Capture/Compare 3 Overcapture Flag */
lypinator 0:bb348c97df44 13958 #define TIM_SR_CC4OF_Pos (12U)
lypinator 0:bb348c97df44 13959 #define TIM_SR_CC4OF_Msk (0x1U << TIM_SR_CC4OF_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 13960 #define TIM_SR_CC4OF TIM_SR_CC4OF_Msk /*!<Capture/Compare 4 Overcapture Flag */
lypinator 0:bb348c97df44 13961
lypinator 0:bb348c97df44 13962 /******************* Bit definition for TIM_EGR register ********************/
lypinator 0:bb348c97df44 13963 #define TIM_EGR_UG_Pos (0U)
lypinator 0:bb348c97df44 13964 #define TIM_EGR_UG_Msk (0x1U << TIM_EGR_UG_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 13965 #define TIM_EGR_UG TIM_EGR_UG_Msk /*!<Update Generation */
lypinator 0:bb348c97df44 13966 #define TIM_EGR_CC1G_Pos (1U)
lypinator 0:bb348c97df44 13967 #define TIM_EGR_CC1G_Msk (0x1U << TIM_EGR_CC1G_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 13968 #define TIM_EGR_CC1G TIM_EGR_CC1G_Msk /*!<Capture/Compare 1 Generation */
lypinator 0:bb348c97df44 13969 #define TIM_EGR_CC2G_Pos (2U)
lypinator 0:bb348c97df44 13970 #define TIM_EGR_CC2G_Msk (0x1U << TIM_EGR_CC2G_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 13971 #define TIM_EGR_CC2G TIM_EGR_CC2G_Msk /*!<Capture/Compare 2 Generation */
lypinator 0:bb348c97df44 13972 #define TIM_EGR_CC3G_Pos (3U)
lypinator 0:bb348c97df44 13973 #define TIM_EGR_CC3G_Msk (0x1U << TIM_EGR_CC3G_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 13974 #define TIM_EGR_CC3G TIM_EGR_CC3G_Msk /*!<Capture/Compare 3 Generation */
lypinator 0:bb348c97df44 13975 #define TIM_EGR_CC4G_Pos (4U)
lypinator 0:bb348c97df44 13976 #define TIM_EGR_CC4G_Msk (0x1U << TIM_EGR_CC4G_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 13977 #define TIM_EGR_CC4G TIM_EGR_CC4G_Msk /*!<Capture/Compare 4 Generation */
lypinator 0:bb348c97df44 13978 #define TIM_EGR_COMG_Pos (5U)
lypinator 0:bb348c97df44 13979 #define TIM_EGR_COMG_Msk (0x1U << TIM_EGR_COMG_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 13980 #define TIM_EGR_COMG TIM_EGR_COMG_Msk /*!<Capture/Compare Control Update Generation */
lypinator 0:bb348c97df44 13981 #define TIM_EGR_TG_Pos (6U)
lypinator 0:bb348c97df44 13982 #define TIM_EGR_TG_Msk (0x1U << TIM_EGR_TG_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 13983 #define TIM_EGR_TG TIM_EGR_TG_Msk /*!<Trigger Generation */
lypinator 0:bb348c97df44 13984 #define TIM_EGR_BG_Pos (7U)
lypinator 0:bb348c97df44 13985 #define TIM_EGR_BG_Msk (0x1U << TIM_EGR_BG_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 13986 #define TIM_EGR_BG TIM_EGR_BG_Msk /*!<Break Generation */
lypinator 0:bb348c97df44 13987
lypinator 0:bb348c97df44 13988 /****************** Bit definition for TIM_CCMR1 register *******************/
lypinator 0:bb348c97df44 13989 #define TIM_CCMR1_CC1S_Pos (0U)
lypinator 0:bb348c97df44 13990 #define TIM_CCMR1_CC1S_Msk (0x3U << TIM_CCMR1_CC1S_Pos) /*!< 0x00000003 */
lypinator 0:bb348c97df44 13991 #define TIM_CCMR1_CC1S TIM_CCMR1_CC1S_Msk /*!<CC1S[1:0] bits (Capture/Compare 1 Selection) */
lypinator 0:bb348c97df44 13992 #define TIM_CCMR1_CC1S_0 (0x1U << TIM_CCMR1_CC1S_Pos) /*!< 0x0001 */
lypinator 0:bb348c97df44 13993 #define TIM_CCMR1_CC1S_1 (0x2U << TIM_CCMR1_CC1S_Pos) /*!< 0x0002 */
lypinator 0:bb348c97df44 13994
lypinator 0:bb348c97df44 13995 #define TIM_CCMR1_OC1FE_Pos (2U)
lypinator 0:bb348c97df44 13996 #define TIM_CCMR1_OC1FE_Msk (0x1U << TIM_CCMR1_OC1FE_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 13997 #define TIM_CCMR1_OC1FE TIM_CCMR1_OC1FE_Msk /*!<Output Compare 1 Fast enable */
lypinator 0:bb348c97df44 13998 #define TIM_CCMR1_OC1PE_Pos (3U)
lypinator 0:bb348c97df44 13999 #define TIM_CCMR1_OC1PE_Msk (0x1U << TIM_CCMR1_OC1PE_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 14000 #define TIM_CCMR1_OC1PE TIM_CCMR1_OC1PE_Msk /*!<Output Compare 1 Preload enable */
lypinator 0:bb348c97df44 14001
lypinator 0:bb348c97df44 14002 #define TIM_CCMR1_OC1M_Pos (4U)
lypinator 0:bb348c97df44 14003 #define TIM_CCMR1_OC1M_Msk (0x7U << TIM_CCMR1_OC1M_Pos) /*!< 0x00000070 */
lypinator 0:bb348c97df44 14004 #define TIM_CCMR1_OC1M TIM_CCMR1_OC1M_Msk /*!<OC1M[2:0] bits (Output Compare 1 Mode) */
lypinator 0:bb348c97df44 14005 #define TIM_CCMR1_OC1M_0 (0x1U << TIM_CCMR1_OC1M_Pos) /*!< 0x0010 */
lypinator 0:bb348c97df44 14006 #define TIM_CCMR1_OC1M_1 (0x2U << TIM_CCMR1_OC1M_Pos) /*!< 0x0020 */
lypinator 0:bb348c97df44 14007 #define TIM_CCMR1_OC1M_2 (0x4U << TIM_CCMR1_OC1M_Pos) /*!< 0x0040 */
lypinator 0:bb348c97df44 14008
lypinator 0:bb348c97df44 14009 #define TIM_CCMR1_OC1CE_Pos (7U)
lypinator 0:bb348c97df44 14010 #define TIM_CCMR1_OC1CE_Msk (0x1U << TIM_CCMR1_OC1CE_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 14011 #define TIM_CCMR1_OC1CE TIM_CCMR1_OC1CE_Msk /*!<Output Compare 1Clear Enable */
lypinator 0:bb348c97df44 14012
lypinator 0:bb348c97df44 14013 #define TIM_CCMR1_CC2S_Pos (8U)
lypinator 0:bb348c97df44 14014 #define TIM_CCMR1_CC2S_Msk (0x3U << TIM_CCMR1_CC2S_Pos) /*!< 0x00000300 */
lypinator 0:bb348c97df44 14015 #define TIM_CCMR1_CC2S TIM_CCMR1_CC2S_Msk /*!<CC2S[1:0] bits (Capture/Compare 2 Selection) */
lypinator 0:bb348c97df44 14016 #define TIM_CCMR1_CC2S_0 (0x1U << TIM_CCMR1_CC2S_Pos) /*!< 0x0100 */
lypinator 0:bb348c97df44 14017 #define TIM_CCMR1_CC2S_1 (0x2U << TIM_CCMR1_CC2S_Pos) /*!< 0x0200 */
lypinator 0:bb348c97df44 14018
lypinator 0:bb348c97df44 14019 #define TIM_CCMR1_OC2FE_Pos (10U)
lypinator 0:bb348c97df44 14020 #define TIM_CCMR1_OC2FE_Msk (0x1U << TIM_CCMR1_OC2FE_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 14021 #define TIM_CCMR1_OC2FE TIM_CCMR1_OC2FE_Msk /*!<Output Compare 2 Fast enable */
lypinator 0:bb348c97df44 14022 #define TIM_CCMR1_OC2PE_Pos (11U)
lypinator 0:bb348c97df44 14023 #define TIM_CCMR1_OC2PE_Msk (0x1U << TIM_CCMR1_OC2PE_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 14024 #define TIM_CCMR1_OC2PE TIM_CCMR1_OC2PE_Msk /*!<Output Compare 2 Preload enable */
lypinator 0:bb348c97df44 14025
lypinator 0:bb348c97df44 14026 #define TIM_CCMR1_OC2M_Pos (12U)
lypinator 0:bb348c97df44 14027 #define TIM_CCMR1_OC2M_Msk (0x7U << TIM_CCMR1_OC2M_Pos) /*!< 0x00007000 */
lypinator 0:bb348c97df44 14028 #define TIM_CCMR1_OC2M TIM_CCMR1_OC2M_Msk /*!<OC2M[2:0] bits (Output Compare 2 Mode) */
lypinator 0:bb348c97df44 14029 #define TIM_CCMR1_OC2M_0 (0x1U << TIM_CCMR1_OC2M_Pos) /*!< 0x1000 */
lypinator 0:bb348c97df44 14030 #define TIM_CCMR1_OC2M_1 (0x2U << TIM_CCMR1_OC2M_Pos) /*!< 0x2000 */
lypinator 0:bb348c97df44 14031 #define TIM_CCMR1_OC2M_2 (0x4U << TIM_CCMR1_OC2M_Pos) /*!< 0x4000 */
lypinator 0:bb348c97df44 14032
lypinator 0:bb348c97df44 14033 #define TIM_CCMR1_OC2CE_Pos (15U)
lypinator 0:bb348c97df44 14034 #define TIM_CCMR1_OC2CE_Msk (0x1U << TIM_CCMR1_OC2CE_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 14035 #define TIM_CCMR1_OC2CE TIM_CCMR1_OC2CE_Msk /*!<Output Compare 2 Clear Enable */
lypinator 0:bb348c97df44 14036
lypinator 0:bb348c97df44 14037 /*----------------------------------------------------------------------------*/
lypinator 0:bb348c97df44 14038
lypinator 0:bb348c97df44 14039 #define TIM_CCMR1_IC1PSC_Pos (2U)
lypinator 0:bb348c97df44 14040 #define TIM_CCMR1_IC1PSC_Msk (0x3U << TIM_CCMR1_IC1PSC_Pos) /*!< 0x0000000C */
lypinator 0:bb348c97df44 14041 #define TIM_CCMR1_IC1PSC TIM_CCMR1_IC1PSC_Msk /*!<IC1PSC[1:0] bits (Input Capture 1 Prescaler) */
lypinator 0:bb348c97df44 14042 #define TIM_CCMR1_IC1PSC_0 (0x1U << TIM_CCMR1_IC1PSC_Pos) /*!< 0x0004 */
lypinator 0:bb348c97df44 14043 #define TIM_CCMR1_IC1PSC_1 (0x2U << TIM_CCMR1_IC1PSC_Pos) /*!< 0x0008 */
lypinator 0:bb348c97df44 14044
lypinator 0:bb348c97df44 14045 #define TIM_CCMR1_IC1F_Pos (4U)
lypinator 0:bb348c97df44 14046 #define TIM_CCMR1_IC1F_Msk (0xFU << TIM_CCMR1_IC1F_Pos) /*!< 0x000000F0 */
lypinator 0:bb348c97df44 14047 #define TIM_CCMR1_IC1F TIM_CCMR1_IC1F_Msk /*!<IC1F[3:0] bits (Input Capture 1 Filter) */
lypinator 0:bb348c97df44 14048 #define TIM_CCMR1_IC1F_0 (0x1U << TIM_CCMR1_IC1F_Pos) /*!< 0x0010 */
lypinator 0:bb348c97df44 14049 #define TIM_CCMR1_IC1F_1 (0x2U << TIM_CCMR1_IC1F_Pos) /*!< 0x0020 */
lypinator 0:bb348c97df44 14050 #define TIM_CCMR1_IC1F_2 (0x4U << TIM_CCMR1_IC1F_Pos) /*!< 0x0040 */
lypinator 0:bb348c97df44 14051 #define TIM_CCMR1_IC1F_3 (0x8U << TIM_CCMR1_IC1F_Pos) /*!< 0x0080 */
lypinator 0:bb348c97df44 14052
lypinator 0:bb348c97df44 14053 #define TIM_CCMR1_IC2PSC_Pos (10U)
lypinator 0:bb348c97df44 14054 #define TIM_CCMR1_IC2PSC_Msk (0x3U << TIM_CCMR1_IC2PSC_Pos) /*!< 0x00000C00 */
lypinator 0:bb348c97df44 14055 #define TIM_CCMR1_IC2PSC TIM_CCMR1_IC2PSC_Msk /*!<IC2PSC[1:0] bits (Input Capture 2 Prescaler) */
lypinator 0:bb348c97df44 14056 #define TIM_CCMR1_IC2PSC_0 (0x1U << TIM_CCMR1_IC2PSC_Pos) /*!< 0x0400 */
lypinator 0:bb348c97df44 14057 #define TIM_CCMR1_IC2PSC_1 (0x2U << TIM_CCMR1_IC2PSC_Pos) /*!< 0x0800 */
lypinator 0:bb348c97df44 14058
lypinator 0:bb348c97df44 14059 #define TIM_CCMR1_IC2F_Pos (12U)
lypinator 0:bb348c97df44 14060 #define TIM_CCMR1_IC2F_Msk (0xFU << TIM_CCMR1_IC2F_Pos) /*!< 0x0000F000 */
lypinator 0:bb348c97df44 14061 #define TIM_CCMR1_IC2F TIM_CCMR1_IC2F_Msk /*!<IC2F[3:0] bits (Input Capture 2 Filter) */
lypinator 0:bb348c97df44 14062 #define TIM_CCMR1_IC2F_0 (0x1U << TIM_CCMR1_IC2F_Pos) /*!< 0x1000 */
lypinator 0:bb348c97df44 14063 #define TIM_CCMR1_IC2F_1 (0x2U << TIM_CCMR1_IC2F_Pos) /*!< 0x2000 */
lypinator 0:bb348c97df44 14064 #define TIM_CCMR1_IC2F_2 (0x4U << TIM_CCMR1_IC2F_Pos) /*!< 0x4000 */
lypinator 0:bb348c97df44 14065 #define TIM_CCMR1_IC2F_3 (0x8U << TIM_CCMR1_IC2F_Pos) /*!< 0x8000 */
lypinator 0:bb348c97df44 14066
lypinator 0:bb348c97df44 14067 /****************** Bit definition for TIM_CCMR2 register *******************/
lypinator 0:bb348c97df44 14068 #define TIM_CCMR2_CC3S_Pos (0U)
lypinator 0:bb348c97df44 14069 #define TIM_CCMR2_CC3S_Msk (0x3U << TIM_CCMR2_CC3S_Pos) /*!< 0x00000003 */
lypinator 0:bb348c97df44 14070 #define TIM_CCMR2_CC3S TIM_CCMR2_CC3S_Msk /*!<CC3S[1:0] bits (Capture/Compare 3 Selection) */
lypinator 0:bb348c97df44 14071 #define TIM_CCMR2_CC3S_0 (0x1U << TIM_CCMR2_CC3S_Pos) /*!< 0x0001 */
lypinator 0:bb348c97df44 14072 #define TIM_CCMR2_CC3S_1 (0x2U << TIM_CCMR2_CC3S_Pos) /*!< 0x0002 */
lypinator 0:bb348c97df44 14073
lypinator 0:bb348c97df44 14074 #define TIM_CCMR2_OC3FE_Pos (2U)
lypinator 0:bb348c97df44 14075 #define TIM_CCMR2_OC3FE_Msk (0x1U << TIM_CCMR2_OC3FE_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 14076 #define TIM_CCMR2_OC3FE TIM_CCMR2_OC3FE_Msk /*!<Output Compare 3 Fast enable */
lypinator 0:bb348c97df44 14077 #define TIM_CCMR2_OC3PE_Pos (3U)
lypinator 0:bb348c97df44 14078 #define TIM_CCMR2_OC3PE_Msk (0x1U << TIM_CCMR2_OC3PE_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 14079 #define TIM_CCMR2_OC3PE TIM_CCMR2_OC3PE_Msk /*!<Output Compare 3 Preload enable */
lypinator 0:bb348c97df44 14080
lypinator 0:bb348c97df44 14081 #define TIM_CCMR2_OC3M_Pos (4U)
lypinator 0:bb348c97df44 14082 #define TIM_CCMR2_OC3M_Msk (0x7U << TIM_CCMR2_OC3M_Pos) /*!< 0x00000070 */
lypinator 0:bb348c97df44 14083 #define TIM_CCMR2_OC3M TIM_CCMR2_OC3M_Msk /*!<OC3M[2:0] bits (Output Compare 3 Mode) */
lypinator 0:bb348c97df44 14084 #define TIM_CCMR2_OC3M_0 (0x1U << TIM_CCMR2_OC3M_Pos) /*!< 0x0010 */
lypinator 0:bb348c97df44 14085 #define TIM_CCMR2_OC3M_1 (0x2U << TIM_CCMR2_OC3M_Pos) /*!< 0x0020 */
lypinator 0:bb348c97df44 14086 #define TIM_CCMR2_OC3M_2 (0x4U << TIM_CCMR2_OC3M_Pos) /*!< 0x0040 */
lypinator 0:bb348c97df44 14087
lypinator 0:bb348c97df44 14088 #define TIM_CCMR2_OC3CE_Pos (7U)
lypinator 0:bb348c97df44 14089 #define TIM_CCMR2_OC3CE_Msk (0x1U << TIM_CCMR2_OC3CE_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 14090 #define TIM_CCMR2_OC3CE TIM_CCMR2_OC3CE_Msk /*!<Output Compare 3 Clear Enable */
lypinator 0:bb348c97df44 14091
lypinator 0:bb348c97df44 14092 #define TIM_CCMR2_CC4S_Pos (8U)
lypinator 0:bb348c97df44 14093 #define TIM_CCMR2_CC4S_Msk (0x3U << TIM_CCMR2_CC4S_Pos) /*!< 0x00000300 */
lypinator 0:bb348c97df44 14094 #define TIM_CCMR2_CC4S TIM_CCMR2_CC4S_Msk /*!<CC4S[1:0] bits (Capture/Compare 4 Selection) */
lypinator 0:bb348c97df44 14095 #define TIM_CCMR2_CC4S_0 (0x1U << TIM_CCMR2_CC4S_Pos) /*!< 0x0100 */
lypinator 0:bb348c97df44 14096 #define TIM_CCMR2_CC4S_1 (0x2U << TIM_CCMR2_CC4S_Pos) /*!< 0x0200 */
lypinator 0:bb348c97df44 14097
lypinator 0:bb348c97df44 14098 #define TIM_CCMR2_OC4FE_Pos (10U)
lypinator 0:bb348c97df44 14099 #define TIM_CCMR2_OC4FE_Msk (0x1U << TIM_CCMR2_OC4FE_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 14100 #define TIM_CCMR2_OC4FE TIM_CCMR2_OC4FE_Msk /*!<Output Compare 4 Fast enable */
lypinator 0:bb348c97df44 14101 #define TIM_CCMR2_OC4PE_Pos (11U)
lypinator 0:bb348c97df44 14102 #define TIM_CCMR2_OC4PE_Msk (0x1U << TIM_CCMR2_OC4PE_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 14103 #define TIM_CCMR2_OC4PE TIM_CCMR2_OC4PE_Msk /*!<Output Compare 4 Preload enable */
lypinator 0:bb348c97df44 14104
lypinator 0:bb348c97df44 14105 #define TIM_CCMR2_OC4M_Pos (12U)
lypinator 0:bb348c97df44 14106 #define TIM_CCMR2_OC4M_Msk (0x7U << TIM_CCMR2_OC4M_Pos) /*!< 0x00007000 */
lypinator 0:bb348c97df44 14107 #define TIM_CCMR2_OC4M TIM_CCMR2_OC4M_Msk /*!<OC4M[2:0] bits (Output Compare 4 Mode) */
lypinator 0:bb348c97df44 14108 #define TIM_CCMR2_OC4M_0 (0x1U << TIM_CCMR2_OC4M_Pos) /*!< 0x1000 */
lypinator 0:bb348c97df44 14109 #define TIM_CCMR2_OC4M_1 (0x2U << TIM_CCMR2_OC4M_Pos) /*!< 0x2000 */
lypinator 0:bb348c97df44 14110 #define TIM_CCMR2_OC4M_2 (0x4U << TIM_CCMR2_OC4M_Pos) /*!< 0x4000 */
lypinator 0:bb348c97df44 14111
lypinator 0:bb348c97df44 14112 #define TIM_CCMR2_OC4CE_Pos (15U)
lypinator 0:bb348c97df44 14113 #define TIM_CCMR2_OC4CE_Msk (0x1U << TIM_CCMR2_OC4CE_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 14114 #define TIM_CCMR2_OC4CE TIM_CCMR2_OC4CE_Msk /*!<Output Compare 4 Clear Enable */
lypinator 0:bb348c97df44 14115
lypinator 0:bb348c97df44 14116 /*----------------------------------------------------------------------------*/
lypinator 0:bb348c97df44 14117
lypinator 0:bb348c97df44 14118 #define TIM_CCMR2_IC3PSC_Pos (2U)
lypinator 0:bb348c97df44 14119 #define TIM_CCMR2_IC3PSC_Msk (0x3U << TIM_CCMR2_IC3PSC_Pos) /*!< 0x0000000C */
lypinator 0:bb348c97df44 14120 #define TIM_CCMR2_IC3PSC TIM_CCMR2_IC3PSC_Msk /*!<IC3PSC[1:0] bits (Input Capture 3 Prescaler) */
lypinator 0:bb348c97df44 14121 #define TIM_CCMR2_IC3PSC_0 (0x1U << TIM_CCMR2_IC3PSC_Pos) /*!< 0x0004 */
lypinator 0:bb348c97df44 14122 #define TIM_CCMR2_IC3PSC_1 (0x2U << TIM_CCMR2_IC3PSC_Pos) /*!< 0x0008 */
lypinator 0:bb348c97df44 14123
lypinator 0:bb348c97df44 14124 #define TIM_CCMR2_IC3F_Pos (4U)
lypinator 0:bb348c97df44 14125 #define TIM_CCMR2_IC3F_Msk (0xFU << TIM_CCMR2_IC3F_Pos) /*!< 0x000000F0 */
lypinator 0:bb348c97df44 14126 #define TIM_CCMR2_IC3F TIM_CCMR2_IC3F_Msk /*!<IC3F[3:0] bits (Input Capture 3 Filter) */
lypinator 0:bb348c97df44 14127 #define TIM_CCMR2_IC3F_0 (0x1U << TIM_CCMR2_IC3F_Pos) /*!< 0x0010 */
lypinator 0:bb348c97df44 14128 #define TIM_CCMR2_IC3F_1 (0x2U << TIM_CCMR2_IC3F_Pos) /*!< 0x0020 */
lypinator 0:bb348c97df44 14129 #define TIM_CCMR2_IC3F_2 (0x4U << TIM_CCMR2_IC3F_Pos) /*!< 0x0040 */
lypinator 0:bb348c97df44 14130 #define TIM_CCMR2_IC3F_3 (0x8U << TIM_CCMR2_IC3F_Pos) /*!< 0x0080 */
lypinator 0:bb348c97df44 14131
lypinator 0:bb348c97df44 14132 #define TIM_CCMR2_IC4PSC_Pos (10U)
lypinator 0:bb348c97df44 14133 #define TIM_CCMR2_IC4PSC_Msk (0x3U << TIM_CCMR2_IC4PSC_Pos) /*!< 0x00000C00 */
lypinator 0:bb348c97df44 14134 #define TIM_CCMR2_IC4PSC TIM_CCMR2_IC4PSC_Msk /*!<IC4PSC[1:0] bits (Input Capture 4 Prescaler) */
lypinator 0:bb348c97df44 14135 #define TIM_CCMR2_IC4PSC_0 (0x1U << TIM_CCMR2_IC4PSC_Pos) /*!< 0x0400 */
lypinator 0:bb348c97df44 14136 #define TIM_CCMR2_IC4PSC_1 (0x2U << TIM_CCMR2_IC4PSC_Pos) /*!< 0x0800 */
lypinator 0:bb348c97df44 14137
lypinator 0:bb348c97df44 14138 #define TIM_CCMR2_IC4F_Pos (12U)
lypinator 0:bb348c97df44 14139 #define TIM_CCMR2_IC4F_Msk (0xFU << TIM_CCMR2_IC4F_Pos) /*!< 0x0000F000 */
lypinator 0:bb348c97df44 14140 #define TIM_CCMR2_IC4F TIM_CCMR2_IC4F_Msk /*!<IC4F[3:0] bits (Input Capture 4 Filter) */
lypinator 0:bb348c97df44 14141 #define TIM_CCMR2_IC4F_0 (0x1U << TIM_CCMR2_IC4F_Pos) /*!< 0x1000 */
lypinator 0:bb348c97df44 14142 #define TIM_CCMR2_IC4F_1 (0x2U << TIM_CCMR2_IC4F_Pos) /*!< 0x2000 */
lypinator 0:bb348c97df44 14143 #define TIM_CCMR2_IC4F_2 (0x4U << TIM_CCMR2_IC4F_Pos) /*!< 0x4000 */
lypinator 0:bb348c97df44 14144 #define TIM_CCMR2_IC4F_3 (0x8U << TIM_CCMR2_IC4F_Pos) /*!< 0x8000 */
lypinator 0:bb348c97df44 14145
lypinator 0:bb348c97df44 14146 /******************* Bit definition for TIM_CCER register *******************/
lypinator 0:bb348c97df44 14147 #define TIM_CCER_CC1E_Pos (0U)
lypinator 0:bb348c97df44 14148 #define TIM_CCER_CC1E_Msk (0x1U << TIM_CCER_CC1E_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 14149 #define TIM_CCER_CC1E TIM_CCER_CC1E_Msk /*!<Capture/Compare 1 output enable */
lypinator 0:bb348c97df44 14150 #define TIM_CCER_CC1P_Pos (1U)
lypinator 0:bb348c97df44 14151 #define TIM_CCER_CC1P_Msk (0x1U << TIM_CCER_CC1P_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 14152 #define TIM_CCER_CC1P TIM_CCER_CC1P_Msk /*!<Capture/Compare 1 output Polarity */
lypinator 0:bb348c97df44 14153 #define TIM_CCER_CC1NE_Pos (2U)
lypinator 0:bb348c97df44 14154 #define TIM_CCER_CC1NE_Msk (0x1U << TIM_CCER_CC1NE_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 14155 #define TIM_CCER_CC1NE TIM_CCER_CC1NE_Msk /*!<Capture/Compare 1 Complementary output enable */
lypinator 0:bb348c97df44 14156 #define TIM_CCER_CC1NP_Pos (3U)
lypinator 0:bb348c97df44 14157 #define TIM_CCER_CC1NP_Msk (0x1U << TIM_CCER_CC1NP_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 14158 #define TIM_CCER_CC1NP TIM_CCER_CC1NP_Msk /*!<Capture/Compare 1 Complementary output Polarity */
lypinator 0:bb348c97df44 14159 #define TIM_CCER_CC2E_Pos (4U)
lypinator 0:bb348c97df44 14160 #define TIM_CCER_CC2E_Msk (0x1U << TIM_CCER_CC2E_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 14161 #define TIM_CCER_CC2E TIM_CCER_CC2E_Msk /*!<Capture/Compare 2 output enable */
lypinator 0:bb348c97df44 14162 #define TIM_CCER_CC2P_Pos (5U)
lypinator 0:bb348c97df44 14163 #define TIM_CCER_CC2P_Msk (0x1U << TIM_CCER_CC2P_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 14164 #define TIM_CCER_CC2P TIM_CCER_CC2P_Msk /*!<Capture/Compare 2 output Polarity */
lypinator 0:bb348c97df44 14165 #define TIM_CCER_CC2NE_Pos (6U)
lypinator 0:bb348c97df44 14166 #define TIM_CCER_CC2NE_Msk (0x1U << TIM_CCER_CC2NE_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 14167 #define TIM_CCER_CC2NE TIM_CCER_CC2NE_Msk /*!<Capture/Compare 2 Complementary output enable */
lypinator 0:bb348c97df44 14168 #define TIM_CCER_CC2NP_Pos (7U)
lypinator 0:bb348c97df44 14169 #define TIM_CCER_CC2NP_Msk (0x1U << TIM_CCER_CC2NP_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 14170 #define TIM_CCER_CC2NP TIM_CCER_CC2NP_Msk /*!<Capture/Compare 2 Complementary output Polarity */
lypinator 0:bb348c97df44 14171 #define TIM_CCER_CC3E_Pos (8U)
lypinator 0:bb348c97df44 14172 #define TIM_CCER_CC3E_Msk (0x1U << TIM_CCER_CC3E_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 14173 #define TIM_CCER_CC3E TIM_CCER_CC3E_Msk /*!<Capture/Compare 3 output enable */
lypinator 0:bb348c97df44 14174 #define TIM_CCER_CC3P_Pos (9U)
lypinator 0:bb348c97df44 14175 #define TIM_CCER_CC3P_Msk (0x1U << TIM_CCER_CC3P_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 14176 #define TIM_CCER_CC3P TIM_CCER_CC3P_Msk /*!<Capture/Compare 3 output Polarity */
lypinator 0:bb348c97df44 14177 #define TIM_CCER_CC3NE_Pos (10U)
lypinator 0:bb348c97df44 14178 #define TIM_CCER_CC3NE_Msk (0x1U << TIM_CCER_CC3NE_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 14179 #define TIM_CCER_CC3NE TIM_CCER_CC3NE_Msk /*!<Capture/Compare 3 Complementary output enable */
lypinator 0:bb348c97df44 14180 #define TIM_CCER_CC3NP_Pos (11U)
lypinator 0:bb348c97df44 14181 #define TIM_CCER_CC3NP_Msk (0x1U << TIM_CCER_CC3NP_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 14182 #define TIM_CCER_CC3NP TIM_CCER_CC3NP_Msk /*!<Capture/Compare 3 Complementary output Polarity */
lypinator 0:bb348c97df44 14183 #define TIM_CCER_CC4E_Pos (12U)
lypinator 0:bb348c97df44 14184 #define TIM_CCER_CC4E_Msk (0x1U << TIM_CCER_CC4E_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 14185 #define TIM_CCER_CC4E TIM_CCER_CC4E_Msk /*!<Capture/Compare 4 output enable */
lypinator 0:bb348c97df44 14186 #define TIM_CCER_CC4P_Pos (13U)
lypinator 0:bb348c97df44 14187 #define TIM_CCER_CC4P_Msk (0x1U << TIM_CCER_CC4P_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 14188 #define TIM_CCER_CC4P TIM_CCER_CC4P_Msk /*!<Capture/Compare 4 output Polarity */
lypinator 0:bb348c97df44 14189 #define TIM_CCER_CC4NP_Pos (15U)
lypinator 0:bb348c97df44 14190 #define TIM_CCER_CC4NP_Msk (0x1U << TIM_CCER_CC4NP_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 14191 #define TIM_CCER_CC4NP TIM_CCER_CC4NP_Msk /*!<Capture/Compare 4 Complementary output Polarity */
lypinator 0:bb348c97df44 14192
lypinator 0:bb348c97df44 14193 /******************* Bit definition for TIM_CNT register ********************/
lypinator 0:bb348c97df44 14194 #define TIM_CNT_CNT_Pos (0U)
lypinator 0:bb348c97df44 14195 #define TIM_CNT_CNT_Msk (0xFFFFFFFFU << TIM_CNT_CNT_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 14196 #define TIM_CNT_CNT TIM_CNT_CNT_Msk /*!<Counter Value */
lypinator 0:bb348c97df44 14197
lypinator 0:bb348c97df44 14198 /******************* Bit definition for TIM_PSC register ********************/
lypinator 0:bb348c97df44 14199 #define TIM_PSC_PSC_Pos (0U)
lypinator 0:bb348c97df44 14200 #define TIM_PSC_PSC_Msk (0xFFFFU << TIM_PSC_PSC_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 14201 #define TIM_PSC_PSC TIM_PSC_PSC_Msk /*!<Prescaler Value */
lypinator 0:bb348c97df44 14202
lypinator 0:bb348c97df44 14203 /******************* Bit definition for TIM_ARR register ********************/
lypinator 0:bb348c97df44 14204 #define TIM_ARR_ARR_Pos (0U)
lypinator 0:bb348c97df44 14205 #define TIM_ARR_ARR_Msk (0xFFFFFFFFU << TIM_ARR_ARR_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 14206 #define TIM_ARR_ARR TIM_ARR_ARR_Msk /*!<actual auto-reload Value */
lypinator 0:bb348c97df44 14207
lypinator 0:bb348c97df44 14208 /******************* Bit definition for TIM_RCR register ********************/
lypinator 0:bb348c97df44 14209 #define TIM_RCR_REP_Pos (0U)
lypinator 0:bb348c97df44 14210 #define TIM_RCR_REP_Msk (0xFFU << TIM_RCR_REP_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 14211 #define TIM_RCR_REP TIM_RCR_REP_Msk /*!<Repetition Counter Value */
lypinator 0:bb348c97df44 14212
lypinator 0:bb348c97df44 14213 /******************* Bit definition for TIM_CCR1 register *******************/
lypinator 0:bb348c97df44 14214 #define TIM_CCR1_CCR1_Pos (0U)
lypinator 0:bb348c97df44 14215 #define TIM_CCR1_CCR1_Msk (0xFFFFU << TIM_CCR1_CCR1_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 14216 #define TIM_CCR1_CCR1 TIM_CCR1_CCR1_Msk /*!<Capture/Compare 1 Value */
lypinator 0:bb348c97df44 14217
lypinator 0:bb348c97df44 14218 /******************* Bit definition for TIM_CCR2 register *******************/
lypinator 0:bb348c97df44 14219 #define TIM_CCR2_CCR2_Pos (0U)
lypinator 0:bb348c97df44 14220 #define TIM_CCR2_CCR2_Msk (0xFFFFU << TIM_CCR2_CCR2_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 14221 #define TIM_CCR2_CCR2 TIM_CCR2_CCR2_Msk /*!<Capture/Compare 2 Value */
lypinator 0:bb348c97df44 14222
lypinator 0:bb348c97df44 14223 /******************* Bit definition for TIM_CCR3 register *******************/
lypinator 0:bb348c97df44 14224 #define TIM_CCR3_CCR3_Pos (0U)
lypinator 0:bb348c97df44 14225 #define TIM_CCR3_CCR3_Msk (0xFFFFU << TIM_CCR3_CCR3_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 14226 #define TIM_CCR3_CCR3 TIM_CCR3_CCR3_Msk /*!<Capture/Compare 3 Value */
lypinator 0:bb348c97df44 14227
lypinator 0:bb348c97df44 14228 /******************* Bit definition for TIM_CCR4 register *******************/
lypinator 0:bb348c97df44 14229 #define TIM_CCR4_CCR4_Pos (0U)
lypinator 0:bb348c97df44 14230 #define TIM_CCR4_CCR4_Msk (0xFFFFU << TIM_CCR4_CCR4_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 14231 #define TIM_CCR4_CCR4 TIM_CCR4_CCR4_Msk /*!<Capture/Compare 4 Value */
lypinator 0:bb348c97df44 14232
lypinator 0:bb348c97df44 14233 /******************* Bit definition for TIM_BDTR register *******************/
lypinator 0:bb348c97df44 14234 #define TIM_BDTR_DTG_Pos (0U)
lypinator 0:bb348c97df44 14235 #define TIM_BDTR_DTG_Msk (0xFFU << TIM_BDTR_DTG_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 14236 #define TIM_BDTR_DTG TIM_BDTR_DTG_Msk /*!<DTG[0:7] bits (Dead-Time Generator set-up) */
lypinator 0:bb348c97df44 14237 #define TIM_BDTR_DTG_0 (0x01U << TIM_BDTR_DTG_Pos) /*!< 0x0001 */
lypinator 0:bb348c97df44 14238 #define TIM_BDTR_DTG_1 (0x02U << TIM_BDTR_DTG_Pos) /*!< 0x0002 */
lypinator 0:bb348c97df44 14239 #define TIM_BDTR_DTG_2 (0x04U << TIM_BDTR_DTG_Pos) /*!< 0x0004 */
lypinator 0:bb348c97df44 14240 #define TIM_BDTR_DTG_3 (0x08U << TIM_BDTR_DTG_Pos) /*!< 0x0008 */
lypinator 0:bb348c97df44 14241 #define TIM_BDTR_DTG_4 (0x10U << TIM_BDTR_DTG_Pos) /*!< 0x0010 */
lypinator 0:bb348c97df44 14242 #define TIM_BDTR_DTG_5 (0x20U << TIM_BDTR_DTG_Pos) /*!< 0x0020 */
lypinator 0:bb348c97df44 14243 #define TIM_BDTR_DTG_6 (0x40U << TIM_BDTR_DTG_Pos) /*!< 0x0040 */
lypinator 0:bb348c97df44 14244 #define TIM_BDTR_DTG_7 (0x80U << TIM_BDTR_DTG_Pos) /*!< 0x0080 */
lypinator 0:bb348c97df44 14245
lypinator 0:bb348c97df44 14246 #define TIM_BDTR_LOCK_Pos (8U)
lypinator 0:bb348c97df44 14247 #define TIM_BDTR_LOCK_Msk (0x3U << TIM_BDTR_LOCK_Pos) /*!< 0x00000300 */
lypinator 0:bb348c97df44 14248 #define TIM_BDTR_LOCK TIM_BDTR_LOCK_Msk /*!<LOCK[1:0] bits (Lock Configuration) */
lypinator 0:bb348c97df44 14249 #define TIM_BDTR_LOCK_0 (0x1U << TIM_BDTR_LOCK_Pos) /*!< 0x0100 */
lypinator 0:bb348c97df44 14250 #define TIM_BDTR_LOCK_1 (0x2U << TIM_BDTR_LOCK_Pos) /*!< 0x0200 */
lypinator 0:bb348c97df44 14251
lypinator 0:bb348c97df44 14252 #define TIM_BDTR_OSSI_Pos (10U)
lypinator 0:bb348c97df44 14253 #define TIM_BDTR_OSSI_Msk (0x1U << TIM_BDTR_OSSI_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 14254 #define TIM_BDTR_OSSI TIM_BDTR_OSSI_Msk /*!<Off-State Selection for Idle mode */
lypinator 0:bb348c97df44 14255 #define TIM_BDTR_OSSR_Pos (11U)
lypinator 0:bb348c97df44 14256 #define TIM_BDTR_OSSR_Msk (0x1U << TIM_BDTR_OSSR_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 14257 #define TIM_BDTR_OSSR TIM_BDTR_OSSR_Msk /*!<Off-State Selection for Run mode */
lypinator 0:bb348c97df44 14258 #define TIM_BDTR_BKE_Pos (12U)
lypinator 0:bb348c97df44 14259 #define TIM_BDTR_BKE_Msk (0x1U << TIM_BDTR_BKE_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 14260 #define TIM_BDTR_BKE TIM_BDTR_BKE_Msk /*!<Break enable */
lypinator 0:bb348c97df44 14261 #define TIM_BDTR_BKP_Pos (13U)
lypinator 0:bb348c97df44 14262 #define TIM_BDTR_BKP_Msk (0x1U << TIM_BDTR_BKP_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 14263 #define TIM_BDTR_BKP TIM_BDTR_BKP_Msk /*!<Break Polarity */
lypinator 0:bb348c97df44 14264 #define TIM_BDTR_AOE_Pos (14U)
lypinator 0:bb348c97df44 14265 #define TIM_BDTR_AOE_Msk (0x1U << TIM_BDTR_AOE_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 14266 #define TIM_BDTR_AOE TIM_BDTR_AOE_Msk /*!<Automatic Output enable */
lypinator 0:bb348c97df44 14267 #define TIM_BDTR_MOE_Pos (15U)
lypinator 0:bb348c97df44 14268 #define TIM_BDTR_MOE_Msk (0x1U << TIM_BDTR_MOE_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 14269 #define TIM_BDTR_MOE TIM_BDTR_MOE_Msk /*!<Main Output enable */
lypinator 0:bb348c97df44 14270
lypinator 0:bb348c97df44 14271 /******************* Bit definition for TIM_DCR register ********************/
lypinator 0:bb348c97df44 14272 #define TIM_DCR_DBA_Pos (0U)
lypinator 0:bb348c97df44 14273 #define TIM_DCR_DBA_Msk (0x1FU << TIM_DCR_DBA_Pos) /*!< 0x0000001F */
lypinator 0:bb348c97df44 14274 #define TIM_DCR_DBA TIM_DCR_DBA_Msk /*!<DBA[4:0] bits (DMA Base Address) */
lypinator 0:bb348c97df44 14275 #define TIM_DCR_DBA_0 (0x01U << TIM_DCR_DBA_Pos) /*!< 0x0001 */
lypinator 0:bb348c97df44 14276 #define TIM_DCR_DBA_1 (0x02U << TIM_DCR_DBA_Pos) /*!< 0x0002 */
lypinator 0:bb348c97df44 14277 #define TIM_DCR_DBA_2 (0x04U << TIM_DCR_DBA_Pos) /*!< 0x0004 */
lypinator 0:bb348c97df44 14278 #define TIM_DCR_DBA_3 (0x08U << TIM_DCR_DBA_Pos) /*!< 0x0008 */
lypinator 0:bb348c97df44 14279 #define TIM_DCR_DBA_4 (0x10U << TIM_DCR_DBA_Pos) /*!< 0x0010 */
lypinator 0:bb348c97df44 14280
lypinator 0:bb348c97df44 14281 #define TIM_DCR_DBL_Pos (8U)
lypinator 0:bb348c97df44 14282 #define TIM_DCR_DBL_Msk (0x1FU << TIM_DCR_DBL_Pos) /*!< 0x00001F00 */
lypinator 0:bb348c97df44 14283 #define TIM_DCR_DBL TIM_DCR_DBL_Msk /*!<DBL[4:0] bits (DMA Burst Length) */
lypinator 0:bb348c97df44 14284 #define TIM_DCR_DBL_0 (0x01U << TIM_DCR_DBL_Pos) /*!< 0x0100 */
lypinator 0:bb348c97df44 14285 #define TIM_DCR_DBL_1 (0x02U << TIM_DCR_DBL_Pos) /*!< 0x0200 */
lypinator 0:bb348c97df44 14286 #define TIM_DCR_DBL_2 (0x04U << TIM_DCR_DBL_Pos) /*!< 0x0400 */
lypinator 0:bb348c97df44 14287 #define TIM_DCR_DBL_3 (0x08U << TIM_DCR_DBL_Pos) /*!< 0x0800 */
lypinator 0:bb348c97df44 14288 #define TIM_DCR_DBL_4 (0x10U << TIM_DCR_DBL_Pos) /*!< 0x1000 */
lypinator 0:bb348c97df44 14289
lypinator 0:bb348c97df44 14290 /******************* Bit definition for TIM_DMAR register *******************/
lypinator 0:bb348c97df44 14291 #define TIM_DMAR_DMAB_Pos (0U)
lypinator 0:bb348c97df44 14292 #define TIM_DMAR_DMAB_Msk (0xFFFFU << TIM_DMAR_DMAB_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 14293 #define TIM_DMAR_DMAB TIM_DMAR_DMAB_Msk /*!<DMA register for burst accesses */
lypinator 0:bb348c97df44 14294
lypinator 0:bb348c97df44 14295 /******************* Bit definition for TIM_OR register *********************/
lypinator 0:bb348c97df44 14296 #define TIM_OR_TI1_RMP_Pos (0U)
lypinator 0:bb348c97df44 14297 #define TIM_OR_TI1_RMP_Msk (0x3U << TIM_OR_TI1_RMP_Pos) /*!< 0x00000003 */
lypinator 0:bb348c97df44 14298 #define TIM_OR_TI1_RMP TIM_OR_TI1_RMP_Msk /*!< TI1_RMP[1:0] bits (TIM11 Input Capture 1 remap) */
lypinator 0:bb348c97df44 14299 #define TIM_OR_TI1_RMP_0 (0x1U << TIM_OR_TI1_RMP_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 14300 #define TIM_OR_TI1_RMP_1 (0x2U << TIM_OR_TI1_RMP_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 14301
lypinator 0:bb348c97df44 14302 #define TIM_OR_TI4_RMP_Pos (6U)
lypinator 0:bb348c97df44 14303 #define TIM_OR_TI4_RMP_Msk (0x3U << TIM_OR_TI4_RMP_Pos) /*!< 0x000000C0 */
lypinator 0:bb348c97df44 14304 #define TIM_OR_TI4_RMP TIM_OR_TI4_RMP_Msk /*!<TI4_RMP[1:0] bits (TIM5 Input 4 remap) */
lypinator 0:bb348c97df44 14305 #define TIM_OR_TI4_RMP_0 (0x1U << TIM_OR_TI4_RMP_Pos) /*!< 0x0040 */
lypinator 0:bb348c97df44 14306 #define TIM_OR_TI4_RMP_1 (0x2U << TIM_OR_TI4_RMP_Pos) /*!< 0x0080 */
lypinator 0:bb348c97df44 14307 #define TIM_OR_ITR1_RMP_Pos (10U)
lypinator 0:bb348c97df44 14308 #define TIM_OR_ITR1_RMP_Msk (0x3U << TIM_OR_ITR1_RMP_Pos) /*!< 0x00000C00 */
lypinator 0:bb348c97df44 14309 #define TIM_OR_ITR1_RMP TIM_OR_ITR1_RMP_Msk /*!<ITR1_RMP[1:0] bits (TIM2 Internal trigger 1 remap) */
lypinator 0:bb348c97df44 14310 #define TIM_OR_ITR1_RMP_0 (0x1U << TIM_OR_ITR1_RMP_Pos) /*!< 0x0400 */
lypinator 0:bb348c97df44 14311 #define TIM_OR_ITR1_RMP_1 (0x2U << TIM_OR_ITR1_RMP_Pos) /*!< 0x0800 */
lypinator 0:bb348c97df44 14312
lypinator 0:bb348c97df44 14313
lypinator 0:bb348c97df44 14314 /******************************************************************************/
lypinator 0:bb348c97df44 14315 /* */
lypinator 0:bb348c97df44 14316 /* Universal Synchronous Asynchronous Receiver Transmitter */
lypinator 0:bb348c97df44 14317 /* */
lypinator 0:bb348c97df44 14318 /******************************************************************************/
lypinator 0:bb348c97df44 14319 /******************* Bit definition for USART_SR register *******************/
lypinator 0:bb348c97df44 14320 #define USART_SR_PE_Pos (0U)
lypinator 0:bb348c97df44 14321 #define USART_SR_PE_Msk (0x1U << USART_SR_PE_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 14322 #define USART_SR_PE USART_SR_PE_Msk /*!<Parity Error */
lypinator 0:bb348c97df44 14323 #define USART_SR_FE_Pos (1U)
lypinator 0:bb348c97df44 14324 #define USART_SR_FE_Msk (0x1U << USART_SR_FE_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 14325 #define USART_SR_FE USART_SR_FE_Msk /*!<Framing Error */
lypinator 0:bb348c97df44 14326 #define USART_SR_NE_Pos (2U)
lypinator 0:bb348c97df44 14327 #define USART_SR_NE_Msk (0x1U << USART_SR_NE_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 14328 #define USART_SR_NE USART_SR_NE_Msk /*!<Noise Error Flag */
lypinator 0:bb348c97df44 14329 #define USART_SR_ORE_Pos (3U)
lypinator 0:bb348c97df44 14330 #define USART_SR_ORE_Msk (0x1U << USART_SR_ORE_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 14331 #define USART_SR_ORE USART_SR_ORE_Msk /*!<OverRun Error */
lypinator 0:bb348c97df44 14332 #define USART_SR_IDLE_Pos (4U)
lypinator 0:bb348c97df44 14333 #define USART_SR_IDLE_Msk (0x1U << USART_SR_IDLE_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 14334 #define USART_SR_IDLE USART_SR_IDLE_Msk /*!<IDLE line detected */
lypinator 0:bb348c97df44 14335 #define USART_SR_RXNE_Pos (5U)
lypinator 0:bb348c97df44 14336 #define USART_SR_RXNE_Msk (0x1U << USART_SR_RXNE_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 14337 #define USART_SR_RXNE USART_SR_RXNE_Msk /*!<Read Data Register Not Empty */
lypinator 0:bb348c97df44 14338 #define USART_SR_TC_Pos (6U)
lypinator 0:bb348c97df44 14339 #define USART_SR_TC_Msk (0x1U << USART_SR_TC_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 14340 #define USART_SR_TC USART_SR_TC_Msk /*!<Transmission Complete */
lypinator 0:bb348c97df44 14341 #define USART_SR_TXE_Pos (7U)
lypinator 0:bb348c97df44 14342 #define USART_SR_TXE_Msk (0x1U << USART_SR_TXE_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 14343 #define USART_SR_TXE USART_SR_TXE_Msk /*!<Transmit Data Register Empty */
lypinator 0:bb348c97df44 14344 #define USART_SR_LBD_Pos (8U)
lypinator 0:bb348c97df44 14345 #define USART_SR_LBD_Msk (0x1U << USART_SR_LBD_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 14346 #define USART_SR_LBD USART_SR_LBD_Msk /*!<LIN Break Detection Flag */
lypinator 0:bb348c97df44 14347 #define USART_SR_CTS_Pos (9U)
lypinator 0:bb348c97df44 14348 #define USART_SR_CTS_Msk (0x1U << USART_SR_CTS_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 14349 #define USART_SR_CTS USART_SR_CTS_Msk /*!<CTS Flag */
lypinator 0:bb348c97df44 14350
lypinator 0:bb348c97df44 14351 /******************* Bit definition for USART_DR register *******************/
lypinator 0:bb348c97df44 14352 #define USART_DR_DR_Pos (0U)
lypinator 0:bb348c97df44 14353 #define USART_DR_DR_Msk (0x1FFU << USART_DR_DR_Pos) /*!< 0x000001FF */
lypinator 0:bb348c97df44 14354 #define USART_DR_DR USART_DR_DR_Msk /*!<Data value */
lypinator 0:bb348c97df44 14355
lypinator 0:bb348c97df44 14356 /****************** Bit definition for USART_BRR register *******************/
lypinator 0:bb348c97df44 14357 #define USART_BRR_DIV_Fraction_Pos (0U)
lypinator 0:bb348c97df44 14358 #define USART_BRR_DIV_Fraction_Msk (0xFU << USART_BRR_DIV_Fraction_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 14359 #define USART_BRR_DIV_Fraction USART_BRR_DIV_Fraction_Msk /*!<Fraction of USARTDIV */
lypinator 0:bb348c97df44 14360 #define USART_BRR_DIV_Mantissa_Pos (4U)
lypinator 0:bb348c97df44 14361 #define USART_BRR_DIV_Mantissa_Msk (0xFFFU << USART_BRR_DIV_Mantissa_Pos) /*!< 0x0000FFF0 */
lypinator 0:bb348c97df44 14362 #define USART_BRR_DIV_Mantissa USART_BRR_DIV_Mantissa_Msk /*!<Mantissa of USARTDIV */
lypinator 0:bb348c97df44 14363
lypinator 0:bb348c97df44 14364 /****************** Bit definition for USART_CR1 register *******************/
lypinator 0:bb348c97df44 14365 #define USART_CR1_SBK_Pos (0U)
lypinator 0:bb348c97df44 14366 #define USART_CR1_SBK_Msk (0x1U << USART_CR1_SBK_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 14367 #define USART_CR1_SBK USART_CR1_SBK_Msk /*!<Send Break */
lypinator 0:bb348c97df44 14368 #define USART_CR1_RWU_Pos (1U)
lypinator 0:bb348c97df44 14369 #define USART_CR1_RWU_Msk (0x1U << USART_CR1_RWU_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 14370 #define USART_CR1_RWU USART_CR1_RWU_Msk /*!<Receiver wakeup */
lypinator 0:bb348c97df44 14371 #define USART_CR1_RE_Pos (2U)
lypinator 0:bb348c97df44 14372 #define USART_CR1_RE_Msk (0x1U << USART_CR1_RE_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 14373 #define USART_CR1_RE USART_CR1_RE_Msk /*!<Receiver Enable */
lypinator 0:bb348c97df44 14374 #define USART_CR1_TE_Pos (3U)
lypinator 0:bb348c97df44 14375 #define USART_CR1_TE_Msk (0x1U << USART_CR1_TE_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 14376 #define USART_CR1_TE USART_CR1_TE_Msk /*!<Transmitter Enable */
lypinator 0:bb348c97df44 14377 #define USART_CR1_IDLEIE_Pos (4U)
lypinator 0:bb348c97df44 14378 #define USART_CR1_IDLEIE_Msk (0x1U << USART_CR1_IDLEIE_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 14379 #define USART_CR1_IDLEIE USART_CR1_IDLEIE_Msk /*!<IDLE Interrupt Enable */
lypinator 0:bb348c97df44 14380 #define USART_CR1_RXNEIE_Pos (5U)
lypinator 0:bb348c97df44 14381 #define USART_CR1_RXNEIE_Msk (0x1U << USART_CR1_RXNEIE_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 14382 #define USART_CR1_RXNEIE USART_CR1_RXNEIE_Msk /*!<RXNE Interrupt Enable */
lypinator 0:bb348c97df44 14383 #define USART_CR1_TCIE_Pos (6U)
lypinator 0:bb348c97df44 14384 #define USART_CR1_TCIE_Msk (0x1U << USART_CR1_TCIE_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 14385 #define USART_CR1_TCIE USART_CR1_TCIE_Msk /*!<Transmission Complete Interrupt Enable */
lypinator 0:bb348c97df44 14386 #define USART_CR1_TXEIE_Pos (7U)
lypinator 0:bb348c97df44 14387 #define USART_CR1_TXEIE_Msk (0x1U << USART_CR1_TXEIE_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 14388 #define USART_CR1_TXEIE USART_CR1_TXEIE_Msk /*!<TXE Interrupt Enable */
lypinator 0:bb348c97df44 14389 #define USART_CR1_PEIE_Pos (8U)
lypinator 0:bb348c97df44 14390 #define USART_CR1_PEIE_Msk (0x1U << USART_CR1_PEIE_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 14391 #define USART_CR1_PEIE USART_CR1_PEIE_Msk /*!<PE Interrupt Enable */
lypinator 0:bb348c97df44 14392 #define USART_CR1_PS_Pos (9U)
lypinator 0:bb348c97df44 14393 #define USART_CR1_PS_Msk (0x1U << USART_CR1_PS_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 14394 #define USART_CR1_PS USART_CR1_PS_Msk /*!<Parity Selection */
lypinator 0:bb348c97df44 14395 #define USART_CR1_PCE_Pos (10U)
lypinator 0:bb348c97df44 14396 #define USART_CR1_PCE_Msk (0x1U << USART_CR1_PCE_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 14397 #define USART_CR1_PCE USART_CR1_PCE_Msk /*!<Parity Control Enable */
lypinator 0:bb348c97df44 14398 #define USART_CR1_WAKE_Pos (11U)
lypinator 0:bb348c97df44 14399 #define USART_CR1_WAKE_Msk (0x1U << USART_CR1_WAKE_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 14400 #define USART_CR1_WAKE USART_CR1_WAKE_Msk /*!<Wakeup method */
lypinator 0:bb348c97df44 14401 #define USART_CR1_M_Pos (12U)
lypinator 0:bb348c97df44 14402 #define USART_CR1_M_Msk (0x1U << USART_CR1_M_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 14403 #define USART_CR1_M USART_CR1_M_Msk /*!<Word length */
lypinator 0:bb348c97df44 14404 #define USART_CR1_UE_Pos (13U)
lypinator 0:bb348c97df44 14405 #define USART_CR1_UE_Msk (0x1U << USART_CR1_UE_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 14406 #define USART_CR1_UE USART_CR1_UE_Msk /*!<USART Enable */
lypinator 0:bb348c97df44 14407 #define USART_CR1_OVER8_Pos (15U)
lypinator 0:bb348c97df44 14408 #define USART_CR1_OVER8_Msk (0x1U << USART_CR1_OVER8_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 14409 #define USART_CR1_OVER8 USART_CR1_OVER8_Msk /*!<USART Oversampling by 8 enable */
lypinator 0:bb348c97df44 14410
lypinator 0:bb348c97df44 14411 /****************** Bit definition for USART_CR2 register *******************/
lypinator 0:bb348c97df44 14412 #define USART_CR2_ADD_Pos (0U)
lypinator 0:bb348c97df44 14413 #define USART_CR2_ADD_Msk (0xFU << USART_CR2_ADD_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 14414 #define USART_CR2_ADD USART_CR2_ADD_Msk /*!<Address of the USART node */
lypinator 0:bb348c97df44 14415 #define USART_CR2_LBDL_Pos (5U)
lypinator 0:bb348c97df44 14416 #define USART_CR2_LBDL_Msk (0x1U << USART_CR2_LBDL_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 14417 #define USART_CR2_LBDL USART_CR2_LBDL_Msk /*!<LIN Break Detection Length */
lypinator 0:bb348c97df44 14418 #define USART_CR2_LBDIE_Pos (6U)
lypinator 0:bb348c97df44 14419 #define USART_CR2_LBDIE_Msk (0x1U << USART_CR2_LBDIE_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 14420 #define USART_CR2_LBDIE USART_CR2_LBDIE_Msk /*!<LIN Break Detection Interrupt Enable */
lypinator 0:bb348c97df44 14421 #define USART_CR2_LBCL_Pos (8U)
lypinator 0:bb348c97df44 14422 #define USART_CR2_LBCL_Msk (0x1U << USART_CR2_LBCL_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 14423 #define USART_CR2_LBCL USART_CR2_LBCL_Msk /*!<Last Bit Clock pulse */
lypinator 0:bb348c97df44 14424 #define USART_CR2_CPHA_Pos (9U)
lypinator 0:bb348c97df44 14425 #define USART_CR2_CPHA_Msk (0x1U << USART_CR2_CPHA_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 14426 #define USART_CR2_CPHA USART_CR2_CPHA_Msk /*!<Clock Phase */
lypinator 0:bb348c97df44 14427 #define USART_CR2_CPOL_Pos (10U)
lypinator 0:bb348c97df44 14428 #define USART_CR2_CPOL_Msk (0x1U << USART_CR2_CPOL_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 14429 #define USART_CR2_CPOL USART_CR2_CPOL_Msk /*!<Clock Polarity */
lypinator 0:bb348c97df44 14430 #define USART_CR2_CLKEN_Pos (11U)
lypinator 0:bb348c97df44 14431 #define USART_CR2_CLKEN_Msk (0x1U << USART_CR2_CLKEN_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 14432 #define USART_CR2_CLKEN USART_CR2_CLKEN_Msk /*!<Clock Enable */
lypinator 0:bb348c97df44 14433
lypinator 0:bb348c97df44 14434 #define USART_CR2_STOP_Pos (12U)
lypinator 0:bb348c97df44 14435 #define USART_CR2_STOP_Msk (0x3U << USART_CR2_STOP_Pos) /*!< 0x00003000 */
lypinator 0:bb348c97df44 14436 #define USART_CR2_STOP USART_CR2_STOP_Msk /*!<STOP[1:0] bits (STOP bits) */
lypinator 0:bb348c97df44 14437 #define USART_CR2_STOP_0 (0x1U << USART_CR2_STOP_Pos) /*!< 0x1000 */
lypinator 0:bb348c97df44 14438 #define USART_CR2_STOP_1 (0x2U << USART_CR2_STOP_Pos) /*!< 0x2000 */
lypinator 0:bb348c97df44 14439
lypinator 0:bb348c97df44 14440 #define USART_CR2_LINEN_Pos (14U)
lypinator 0:bb348c97df44 14441 #define USART_CR2_LINEN_Msk (0x1U << USART_CR2_LINEN_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 14442 #define USART_CR2_LINEN USART_CR2_LINEN_Msk /*!<LIN mode enable */
lypinator 0:bb348c97df44 14443
lypinator 0:bb348c97df44 14444 /****************** Bit definition for USART_CR3 register *******************/
lypinator 0:bb348c97df44 14445 #define USART_CR3_EIE_Pos (0U)
lypinator 0:bb348c97df44 14446 #define USART_CR3_EIE_Msk (0x1U << USART_CR3_EIE_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 14447 #define USART_CR3_EIE USART_CR3_EIE_Msk /*!<Error Interrupt Enable */
lypinator 0:bb348c97df44 14448 #define USART_CR3_IREN_Pos (1U)
lypinator 0:bb348c97df44 14449 #define USART_CR3_IREN_Msk (0x1U << USART_CR3_IREN_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 14450 #define USART_CR3_IREN USART_CR3_IREN_Msk /*!<IrDA mode Enable */
lypinator 0:bb348c97df44 14451 #define USART_CR3_IRLP_Pos (2U)
lypinator 0:bb348c97df44 14452 #define USART_CR3_IRLP_Msk (0x1U << USART_CR3_IRLP_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 14453 #define USART_CR3_IRLP USART_CR3_IRLP_Msk /*!<IrDA Low-Power */
lypinator 0:bb348c97df44 14454 #define USART_CR3_HDSEL_Pos (3U)
lypinator 0:bb348c97df44 14455 #define USART_CR3_HDSEL_Msk (0x1U << USART_CR3_HDSEL_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 14456 #define USART_CR3_HDSEL USART_CR3_HDSEL_Msk /*!<Half-Duplex Selection */
lypinator 0:bb348c97df44 14457 #define USART_CR3_NACK_Pos (4U)
lypinator 0:bb348c97df44 14458 #define USART_CR3_NACK_Msk (0x1U << USART_CR3_NACK_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 14459 #define USART_CR3_NACK USART_CR3_NACK_Msk /*!<Smartcard NACK enable */
lypinator 0:bb348c97df44 14460 #define USART_CR3_SCEN_Pos (5U)
lypinator 0:bb348c97df44 14461 #define USART_CR3_SCEN_Msk (0x1U << USART_CR3_SCEN_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 14462 #define USART_CR3_SCEN USART_CR3_SCEN_Msk /*!<Smartcard mode enable */
lypinator 0:bb348c97df44 14463 #define USART_CR3_DMAR_Pos (6U)
lypinator 0:bb348c97df44 14464 #define USART_CR3_DMAR_Msk (0x1U << USART_CR3_DMAR_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 14465 #define USART_CR3_DMAR USART_CR3_DMAR_Msk /*!<DMA Enable Receiver */
lypinator 0:bb348c97df44 14466 #define USART_CR3_DMAT_Pos (7U)
lypinator 0:bb348c97df44 14467 #define USART_CR3_DMAT_Msk (0x1U << USART_CR3_DMAT_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 14468 #define USART_CR3_DMAT USART_CR3_DMAT_Msk /*!<DMA Enable Transmitter */
lypinator 0:bb348c97df44 14469 #define USART_CR3_RTSE_Pos (8U)
lypinator 0:bb348c97df44 14470 #define USART_CR3_RTSE_Msk (0x1U << USART_CR3_RTSE_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 14471 #define USART_CR3_RTSE USART_CR3_RTSE_Msk /*!<RTS Enable */
lypinator 0:bb348c97df44 14472 #define USART_CR3_CTSE_Pos (9U)
lypinator 0:bb348c97df44 14473 #define USART_CR3_CTSE_Msk (0x1U << USART_CR3_CTSE_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 14474 #define USART_CR3_CTSE USART_CR3_CTSE_Msk /*!<CTS Enable */
lypinator 0:bb348c97df44 14475 #define USART_CR3_CTSIE_Pos (10U)
lypinator 0:bb348c97df44 14476 #define USART_CR3_CTSIE_Msk (0x1U << USART_CR3_CTSIE_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 14477 #define USART_CR3_CTSIE USART_CR3_CTSIE_Msk /*!<CTS Interrupt Enable */
lypinator 0:bb348c97df44 14478 #define USART_CR3_ONEBIT_Pos (11U)
lypinator 0:bb348c97df44 14479 #define USART_CR3_ONEBIT_Msk (0x1U << USART_CR3_ONEBIT_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 14480 #define USART_CR3_ONEBIT USART_CR3_ONEBIT_Msk /*!<USART One bit method enable */
lypinator 0:bb348c97df44 14481
lypinator 0:bb348c97df44 14482 /****************** Bit definition for USART_GTPR register ******************/
lypinator 0:bb348c97df44 14483 #define USART_GTPR_PSC_Pos (0U)
lypinator 0:bb348c97df44 14484 #define USART_GTPR_PSC_Msk (0xFFU << USART_GTPR_PSC_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 14485 #define USART_GTPR_PSC USART_GTPR_PSC_Msk /*!<PSC[7:0] bits (Prescaler value) */
lypinator 0:bb348c97df44 14486 #define USART_GTPR_PSC_0 (0x01U << USART_GTPR_PSC_Pos) /*!< 0x0001 */
lypinator 0:bb348c97df44 14487 #define USART_GTPR_PSC_1 (0x02U << USART_GTPR_PSC_Pos) /*!< 0x0002 */
lypinator 0:bb348c97df44 14488 #define USART_GTPR_PSC_2 (0x04U << USART_GTPR_PSC_Pos) /*!< 0x0004 */
lypinator 0:bb348c97df44 14489 #define USART_GTPR_PSC_3 (0x08U << USART_GTPR_PSC_Pos) /*!< 0x0008 */
lypinator 0:bb348c97df44 14490 #define USART_GTPR_PSC_4 (0x10U << USART_GTPR_PSC_Pos) /*!< 0x0010 */
lypinator 0:bb348c97df44 14491 #define USART_GTPR_PSC_5 (0x20U << USART_GTPR_PSC_Pos) /*!< 0x0020 */
lypinator 0:bb348c97df44 14492 #define USART_GTPR_PSC_6 (0x40U << USART_GTPR_PSC_Pos) /*!< 0x0040 */
lypinator 0:bb348c97df44 14493 #define USART_GTPR_PSC_7 (0x80U << USART_GTPR_PSC_Pos) /*!< 0x0080 */
lypinator 0:bb348c97df44 14494
lypinator 0:bb348c97df44 14495 #define USART_GTPR_GT_Pos (8U)
lypinator 0:bb348c97df44 14496 #define USART_GTPR_GT_Msk (0xFFU << USART_GTPR_GT_Pos) /*!< 0x0000FF00 */
lypinator 0:bb348c97df44 14497 #define USART_GTPR_GT USART_GTPR_GT_Msk /*!<Guard time value */
lypinator 0:bb348c97df44 14498
lypinator 0:bb348c97df44 14499 /******************************************************************************/
lypinator 0:bb348c97df44 14500 /* */
lypinator 0:bb348c97df44 14501 /* Window WATCHDOG */
lypinator 0:bb348c97df44 14502 /* */
lypinator 0:bb348c97df44 14503 /******************************************************************************/
lypinator 0:bb348c97df44 14504 /******************* Bit definition for WWDG_CR register ********************/
lypinator 0:bb348c97df44 14505 #define WWDG_CR_T_Pos (0U)
lypinator 0:bb348c97df44 14506 #define WWDG_CR_T_Msk (0x7FU << WWDG_CR_T_Pos) /*!< 0x0000007F */
lypinator 0:bb348c97df44 14507 #define WWDG_CR_T WWDG_CR_T_Msk /*!<T[6:0] bits (7-Bit counter (MSB to LSB)) */
lypinator 0:bb348c97df44 14508 #define WWDG_CR_T_0 (0x01U << WWDG_CR_T_Pos) /*!< 0x01 */
lypinator 0:bb348c97df44 14509 #define WWDG_CR_T_1 (0x02U << WWDG_CR_T_Pos) /*!< 0x02 */
lypinator 0:bb348c97df44 14510 #define WWDG_CR_T_2 (0x04U << WWDG_CR_T_Pos) /*!< 0x04 */
lypinator 0:bb348c97df44 14511 #define WWDG_CR_T_3 (0x08U << WWDG_CR_T_Pos) /*!< 0x08 */
lypinator 0:bb348c97df44 14512 #define WWDG_CR_T_4 (0x10U << WWDG_CR_T_Pos) /*!< 0x10 */
lypinator 0:bb348c97df44 14513 #define WWDG_CR_T_5 (0x20U << WWDG_CR_T_Pos) /*!< 0x20 */
lypinator 0:bb348c97df44 14514 #define WWDG_CR_T_6 (0x40U << WWDG_CR_T_Pos) /*!< 0x40 */
lypinator 0:bb348c97df44 14515 /* Legacy defines */
lypinator 0:bb348c97df44 14516 #define WWDG_CR_T0 WWDG_CR_T_0
lypinator 0:bb348c97df44 14517 #define WWDG_CR_T1 WWDG_CR_T_1
lypinator 0:bb348c97df44 14518 #define WWDG_CR_T2 WWDG_CR_T_2
lypinator 0:bb348c97df44 14519 #define WWDG_CR_T3 WWDG_CR_T_3
lypinator 0:bb348c97df44 14520 #define WWDG_CR_T4 WWDG_CR_T_4
lypinator 0:bb348c97df44 14521 #define WWDG_CR_T5 WWDG_CR_T_5
lypinator 0:bb348c97df44 14522 #define WWDG_CR_T6 WWDG_CR_T_6
lypinator 0:bb348c97df44 14523
lypinator 0:bb348c97df44 14524 #define WWDG_CR_WDGA_Pos (7U)
lypinator 0:bb348c97df44 14525 #define WWDG_CR_WDGA_Msk (0x1U << WWDG_CR_WDGA_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 14526 #define WWDG_CR_WDGA WWDG_CR_WDGA_Msk /*!<Activation bit */
lypinator 0:bb348c97df44 14527
lypinator 0:bb348c97df44 14528 /******************* Bit definition for WWDG_CFR register *******************/
lypinator 0:bb348c97df44 14529 #define WWDG_CFR_W_Pos (0U)
lypinator 0:bb348c97df44 14530 #define WWDG_CFR_W_Msk (0x7FU << WWDG_CFR_W_Pos) /*!< 0x0000007F */
lypinator 0:bb348c97df44 14531 #define WWDG_CFR_W WWDG_CFR_W_Msk /*!<W[6:0] bits (7-bit window value) */
lypinator 0:bb348c97df44 14532 #define WWDG_CFR_W_0 (0x01U << WWDG_CFR_W_Pos) /*!< 0x0001 */
lypinator 0:bb348c97df44 14533 #define WWDG_CFR_W_1 (0x02U << WWDG_CFR_W_Pos) /*!< 0x0002 */
lypinator 0:bb348c97df44 14534 #define WWDG_CFR_W_2 (0x04U << WWDG_CFR_W_Pos) /*!< 0x0004 */
lypinator 0:bb348c97df44 14535 #define WWDG_CFR_W_3 (0x08U << WWDG_CFR_W_Pos) /*!< 0x0008 */
lypinator 0:bb348c97df44 14536 #define WWDG_CFR_W_4 (0x10U << WWDG_CFR_W_Pos) /*!< 0x0010 */
lypinator 0:bb348c97df44 14537 #define WWDG_CFR_W_5 (0x20U << WWDG_CFR_W_Pos) /*!< 0x0020 */
lypinator 0:bb348c97df44 14538 #define WWDG_CFR_W_6 (0x40U << WWDG_CFR_W_Pos) /*!< 0x0040 */
lypinator 0:bb348c97df44 14539 /* Legacy defines */
lypinator 0:bb348c97df44 14540 #define WWDG_CFR_W0 WWDG_CFR_W_0
lypinator 0:bb348c97df44 14541 #define WWDG_CFR_W1 WWDG_CFR_W_1
lypinator 0:bb348c97df44 14542 #define WWDG_CFR_W2 WWDG_CFR_W_2
lypinator 0:bb348c97df44 14543 #define WWDG_CFR_W3 WWDG_CFR_W_3
lypinator 0:bb348c97df44 14544 #define WWDG_CFR_W4 WWDG_CFR_W_4
lypinator 0:bb348c97df44 14545 #define WWDG_CFR_W5 WWDG_CFR_W_5
lypinator 0:bb348c97df44 14546 #define WWDG_CFR_W6 WWDG_CFR_W_6
lypinator 0:bb348c97df44 14547
lypinator 0:bb348c97df44 14548 #define WWDG_CFR_WDGTB_Pos (7U)
lypinator 0:bb348c97df44 14549 #define WWDG_CFR_WDGTB_Msk (0x3U << WWDG_CFR_WDGTB_Pos) /*!< 0x00000180 */
lypinator 0:bb348c97df44 14550 #define WWDG_CFR_WDGTB WWDG_CFR_WDGTB_Msk /*!<WDGTB[1:0] bits (Timer Base) */
lypinator 0:bb348c97df44 14551 #define WWDG_CFR_WDGTB_0 (0x1U << WWDG_CFR_WDGTB_Pos) /*!< 0x0080 */
lypinator 0:bb348c97df44 14552 #define WWDG_CFR_WDGTB_1 (0x2U << WWDG_CFR_WDGTB_Pos) /*!< 0x0100 */
lypinator 0:bb348c97df44 14553 /* Legacy defines */
lypinator 0:bb348c97df44 14554 #define WWDG_CFR_WDGTB0 WWDG_CFR_WDGTB_0
lypinator 0:bb348c97df44 14555 #define WWDG_CFR_WDGTB1 WWDG_CFR_WDGTB_1
lypinator 0:bb348c97df44 14556
lypinator 0:bb348c97df44 14557 #define WWDG_CFR_EWI_Pos (9U)
lypinator 0:bb348c97df44 14558 #define WWDG_CFR_EWI_Msk (0x1U << WWDG_CFR_EWI_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 14559 #define WWDG_CFR_EWI WWDG_CFR_EWI_Msk /*!<Early Wakeup Interrupt */
lypinator 0:bb348c97df44 14560
lypinator 0:bb348c97df44 14561 /******************* Bit definition for WWDG_SR register ********************/
lypinator 0:bb348c97df44 14562 #define WWDG_SR_EWIF_Pos (0U)
lypinator 0:bb348c97df44 14563 #define WWDG_SR_EWIF_Msk (0x1U << WWDG_SR_EWIF_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 14564 #define WWDG_SR_EWIF WWDG_SR_EWIF_Msk /*!<Early Wakeup Interrupt Flag */
lypinator 0:bb348c97df44 14565
lypinator 0:bb348c97df44 14566
lypinator 0:bb348c97df44 14567 /******************************************************************************/
lypinator 0:bb348c97df44 14568 /* */
lypinator 0:bb348c97df44 14569 /* DBG */
lypinator 0:bb348c97df44 14570 /* */
lypinator 0:bb348c97df44 14571 /******************************************************************************/
lypinator 0:bb348c97df44 14572 /******************** Bit definition for DBGMCU_IDCODE register *************/
lypinator 0:bb348c97df44 14573 #define DBGMCU_IDCODE_DEV_ID_Pos (0U)
lypinator 0:bb348c97df44 14574 #define DBGMCU_IDCODE_DEV_ID_Msk (0xFFFU << DBGMCU_IDCODE_DEV_ID_Pos) /*!< 0x00000FFF */
lypinator 0:bb348c97df44 14575 #define DBGMCU_IDCODE_DEV_ID DBGMCU_IDCODE_DEV_ID_Msk
lypinator 0:bb348c97df44 14576 #define DBGMCU_IDCODE_REV_ID_Pos (16U)
lypinator 0:bb348c97df44 14577 #define DBGMCU_IDCODE_REV_ID_Msk (0xFFFFU << DBGMCU_IDCODE_REV_ID_Pos) /*!< 0xFFFF0000 */
lypinator 0:bb348c97df44 14578 #define DBGMCU_IDCODE_REV_ID DBGMCU_IDCODE_REV_ID_Msk
lypinator 0:bb348c97df44 14579
lypinator 0:bb348c97df44 14580 /******************** Bit definition for DBGMCU_CR register *****************/
lypinator 0:bb348c97df44 14581 #define DBGMCU_CR_DBG_SLEEP_Pos (0U)
lypinator 0:bb348c97df44 14582 #define DBGMCU_CR_DBG_SLEEP_Msk (0x1U << DBGMCU_CR_DBG_SLEEP_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 14583 #define DBGMCU_CR_DBG_SLEEP DBGMCU_CR_DBG_SLEEP_Msk
lypinator 0:bb348c97df44 14584 #define DBGMCU_CR_DBG_STOP_Pos (1U)
lypinator 0:bb348c97df44 14585 #define DBGMCU_CR_DBG_STOP_Msk (0x1U << DBGMCU_CR_DBG_STOP_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 14586 #define DBGMCU_CR_DBG_STOP DBGMCU_CR_DBG_STOP_Msk
lypinator 0:bb348c97df44 14587 #define DBGMCU_CR_DBG_STANDBY_Pos (2U)
lypinator 0:bb348c97df44 14588 #define DBGMCU_CR_DBG_STANDBY_Msk (0x1U << DBGMCU_CR_DBG_STANDBY_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 14589 #define DBGMCU_CR_DBG_STANDBY DBGMCU_CR_DBG_STANDBY_Msk
lypinator 0:bb348c97df44 14590 #define DBGMCU_CR_TRACE_IOEN_Pos (5U)
lypinator 0:bb348c97df44 14591 #define DBGMCU_CR_TRACE_IOEN_Msk (0x1U << DBGMCU_CR_TRACE_IOEN_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 14592 #define DBGMCU_CR_TRACE_IOEN DBGMCU_CR_TRACE_IOEN_Msk
lypinator 0:bb348c97df44 14593
lypinator 0:bb348c97df44 14594 #define DBGMCU_CR_TRACE_MODE_Pos (6U)
lypinator 0:bb348c97df44 14595 #define DBGMCU_CR_TRACE_MODE_Msk (0x3U << DBGMCU_CR_TRACE_MODE_Pos) /*!< 0x000000C0 */
lypinator 0:bb348c97df44 14596 #define DBGMCU_CR_TRACE_MODE DBGMCU_CR_TRACE_MODE_Msk
lypinator 0:bb348c97df44 14597 #define DBGMCU_CR_TRACE_MODE_0 (0x1U << DBGMCU_CR_TRACE_MODE_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 14598 #define DBGMCU_CR_TRACE_MODE_1 (0x2U << DBGMCU_CR_TRACE_MODE_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 14599
lypinator 0:bb348c97df44 14600 /******************** Bit definition for DBGMCU_APB1_FZ register ************/
lypinator 0:bb348c97df44 14601 #define DBGMCU_APB1_FZ_DBG_TIM2_STOP_Pos (0U)
lypinator 0:bb348c97df44 14602 #define DBGMCU_APB1_FZ_DBG_TIM2_STOP_Msk (0x1U << DBGMCU_APB1_FZ_DBG_TIM2_STOP_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 14603 #define DBGMCU_APB1_FZ_DBG_TIM2_STOP DBGMCU_APB1_FZ_DBG_TIM2_STOP_Msk
lypinator 0:bb348c97df44 14604 #define DBGMCU_APB1_FZ_DBG_TIM3_STOP_Pos (1U)
lypinator 0:bb348c97df44 14605 #define DBGMCU_APB1_FZ_DBG_TIM3_STOP_Msk (0x1U << DBGMCU_APB1_FZ_DBG_TIM3_STOP_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 14606 #define DBGMCU_APB1_FZ_DBG_TIM3_STOP DBGMCU_APB1_FZ_DBG_TIM3_STOP_Msk
lypinator 0:bb348c97df44 14607 #define DBGMCU_APB1_FZ_DBG_TIM4_STOP_Pos (2U)
lypinator 0:bb348c97df44 14608 #define DBGMCU_APB1_FZ_DBG_TIM4_STOP_Msk (0x1U << DBGMCU_APB1_FZ_DBG_TIM4_STOP_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 14609 #define DBGMCU_APB1_FZ_DBG_TIM4_STOP DBGMCU_APB1_FZ_DBG_TIM4_STOP_Msk
lypinator 0:bb348c97df44 14610 #define DBGMCU_APB1_FZ_DBG_TIM5_STOP_Pos (3U)
lypinator 0:bb348c97df44 14611 #define DBGMCU_APB1_FZ_DBG_TIM5_STOP_Msk (0x1U << DBGMCU_APB1_FZ_DBG_TIM5_STOP_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 14612 #define DBGMCU_APB1_FZ_DBG_TIM5_STOP DBGMCU_APB1_FZ_DBG_TIM5_STOP_Msk
lypinator 0:bb348c97df44 14613 #define DBGMCU_APB1_FZ_DBG_TIM6_STOP_Pos (4U)
lypinator 0:bb348c97df44 14614 #define DBGMCU_APB1_FZ_DBG_TIM6_STOP_Msk (0x1U << DBGMCU_APB1_FZ_DBG_TIM6_STOP_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 14615 #define DBGMCU_APB1_FZ_DBG_TIM6_STOP DBGMCU_APB1_FZ_DBG_TIM6_STOP_Msk
lypinator 0:bb348c97df44 14616 #define DBGMCU_APB1_FZ_DBG_TIM7_STOP_Pos (5U)
lypinator 0:bb348c97df44 14617 #define DBGMCU_APB1_FZ_DBG_TIM7_STOP_Msk (0x1U << DBGMCU_APB1_FZ_DBG_TIM7_STOP_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 14618 #define DBGMCU_APB1_FZ_DBG_TIM7_STOP DBGMCU_APB1_FZ_DBG_TIM7_STOP_Msk
lypinator 0:bb348c97df44 14619 #define DBGMCU_APB1_FZ_DBG_TIM12_STOP_Pos (6U)
lypinator 0:bb348c97df44 14620 #define DBGMCU_APB1_FZ_DBG_TIM12_STOP_Msk (0x1U << DBGMCU_APB1_FZ_DBG_TIM12_STOP_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 14621 #define DBGMCU_APB1_FZ_DBG_TIM12_STOP DBGMCU_APB1_FZ_DBG_TIM12_STOP_Msk
lypinator 0:bb348c97df44 14622 #define DBGMCU_APB1_FZ_DBG_TIM13_STOP_Pos (7U)
lypinator 0:bb348c97df44 14623 #define DBGMCU_APB1_FZ_DBG_TIM13_STOP_Msk (0x1U << DBGMCU_APB1_FZ_DBG_TIM13_STOP_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 14624 #define DBGMCU_APB1_FZ_DBG_TIM13_STOP DBGMCU_APB1_FZ_DBG_TIM13_STOP_Msk
lypinator 0:bb348c97df44 14625 #define DBGMCU_APB1_FZ_DBG_TIM14_STOP_Pos (8U)
lypinator 0:bb348c97df44 14626 #define DBGMCU_APB1_FZ_DBG_TIM14_STOP_Msk (0x1U << DBGMCU_APB1_FZ_DBG_TIM14_STOP_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 14627 #define DBGMCU_APB1_FZ_DBG_TIM14_STOP DBGMCU_APB1_FZ_DBG_TIM14_STOP_Msk
lypinator 0:bb348c97df44 14628 #define DBGMCU_APB1_FZ_DBG_RTC_STOP_Pos (10U)
lypinator 0:bb348c97df44 14629 #define DBGMCU_APB1_FZ_DBG_RTC_STOP_Msk (0x1U << DBGMCU_APB1_FZ_DBG_RTC_STOP_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 14630 #define DBGMCU_APB1_FZ_DBG_RTC_STOP DBGMCU_APB1_FZ_DBG_RTC_STOP_Msk
lypinator 0:bb348c97df44 14631 #define DBGMCU_APB1_FZ_DBG_WWDG_STOP_Pos (11U)
lypinator 0:bb348c97df44 14632 #define DBGMCU_APB1_FZ_DBG_WWDG_STOP_Msk (0x1U << DBGMCU_APB1_FZ_DBG_WWDG_STOP_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 14633 #define DBGMCU_APB1_FZ_DBG_WWDG_STOP DBGMCU_APB1_FZ_DBG_WWDG_STOP_Msk
lypinator 0:bb348c97df44 14634 #define DBGMCU_APB1_FZ_DBG_IWDG_STOP_Pos (12U)
lypinator 0:bb348c97df44 14635 #define DBGMCU_APB1_FZ_DBG_IWDG_STOP_Msk (0x1U << DBGMCU_APB1_FZ_DBG_IWDG_STOP_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 14636 #define DBGMCU_APB1_FZ_DBG_IWDG_STOP DBGMCU_APB1_FZ_DBG_IWDG_STOP_Msk
lypinator 0:bb348c97df44 14637 #define DBGMCU_APB1_FZ_DBG_I2C1_SMBUS_TIMEOUT_Pos (21U)
lypinator 0:bb348c97df44 14638 #define DBGMCU_APB1_FZ_DBG_I2C1_SMBUS_TIMEOUT_Msk (0x1U << DBGMCU_APB1_FZ_DBG_I2C1_SMBUS_TIMEOUT_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 14639 #define DBGMCU_APB1_FZ_DBG_I2C1_SMBUS_TIMEOUT DBGMCU_APB1_FZ_DBG_I2C1_SMBUS_TIMEOUT_Msk
lypinator 0:bb348c97df44 14640 #define DBGMCU_APB1_FZ_DBG_I2C2_SMBUS_TIMEOUT_Pos (22U)
lypinator 0:bb348c97df44 14641 #define DBGMCU_APB1_FZ_DBG_I2C2_SMBUS_TIMEOUT_Msk (0x1U << DBGMCU_APB1_FZ_DBG_I2C2_SMBUS_TIMEOUT_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 14642 #define DBGMCU_APB1_FZ_DBG_I2C2_SMBUS_TIMEOUT DBGMCU_APB1_FZ_DBG_I2C2_SMBUS_TIMEOUT_Msk
lypinator 0:bb348c97df44 14643 #define DBGMCU_APB1_FZ_DBG_I2C3_SMBUS_TIMEOUT_Pos (23U)
lypinator 0:bb348c97df44 14644 #define DBGMCU_APB1_FZ_DBG_I2C3_SMBUS_TIMEOUT_Msk (0x1U << DBGMCU_APB1_FZ_DBG_I2C3_SMBUS_TIMEOUT_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 14645 #define DBGMCU_APB1_FZ_DBG_I2C3_SMBUS_TIMEOUT DBGMCU_APB1_FZ_DBG_I2C3_SMBUS_TIMEOUT_Msk
lypinator 0:bb348c97df44 14646 #define DBGMCU_APB1_FZ_DBG_CAN1_STOP_Pos (25U)
lypinator 0:bb348c97df44 14647 #define DBGMCU_APB1_FZ_DBG_CAN1_STOP_Msk (0x1U << DBGMCU_APB1_FZ_DBG_CAN1_STOP_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 14648 #define DBGMCU_APB1_FZ_DBG_CAN1_STOP DBGMCU_APB1_FZ_DBG_CAN1_STOP_Msk
lypinator 0:bb348c97df44 14649 #define DBGMCU_APB1_FZ_DBG_CAN2_STOP_Pos (26U)
lypinator 0:bb348c97df44 14650 #define DBGMCU_APB1_FZ_DBG_CAN2_STOP_Msk (0x1U << DBGMCU_APB1_FZ_DBG_CAN2_STOP_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 14651 #define DBGMCU_APB1_FZ_DBG_CAN2_STOP DBGMCU_APB1_FZ_DBG_CAN2_STOP_Msk
lypinator 0:bb348c97df44 14652 /* Old IWDGSTOP bit definition, maintained for legacy purpose */
lypinator 0:bb348c97df44 14653 #define DBGMCU_APB1_FZ_DBG_IWDEG_STOP DBGMCU_APB1_FZ_DBG_IWDG_STOP
lypinator 0:bb348c97df44 14654
lypinator 0:bb348c97df44 14655 /******************** Bit definition for DBGMCU_APB2_FZ register ************/
lypinator 0:bb348c97df44 14656 #define DBGMCU_APB2_FZ_DBG_TIM1_STOP_Pos (0U)
lypinator 0:bb348c97df44 14657 #define DBGMCU_APB2_FZ_DBG_TIM1_STOP_Msk (0x1U << DBGMCU_APB2_FZ_DBG_TIM1_STOP_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 14658 #define DBGMCU_APB2_FZ_DBG_TIM1_STOP DBGMCU_APB2_FZ_DBG_TIM1_STOP_Msk
lypinator 0:bb348c97df44 14659 #define DBGMCU_APB2_FZ_DBG_TIM8_STOP_Pos (1U)
lypinator 0:bb348c97df44 14660 #define DBGMCU_APB2_FZ_DBG_TIM8_STOP_Msk (0x1U << DBGMCU_APB2_FZ_DBG_TIM8_STOP_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 14661 #define DBGMCU_APB2_FZ_DBG_TIM8_STOP DBGMCU_APB2_FZ_DBG_TIM8_STOP_Msk
lypinator 0:bb348c97df44 14662 #define DBGMCU_APB2_FZ_DBG_TIM9_STOP_Pos (16U)
lypinator 0:bb348c97df44 14663 #define DBGMCU_APB2_FZ_DBG_TIM9_STOP_Msk (0x1U << DBGMCU_APB2_FZ_DBG_TIM9_STOP_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 14664 #define DBGMCU_APB2_FZ_DBG_TIM9_STOP DBGMCU_APB2_FZ_DBG_TIM9_STOP_Msk
lypinator 0:bb348c97df44 14665 #define DBGMCU_APB2_FZ_DBG_TIM10_STOP_Pos (17U)
lypinator 0:bb348c97df44 14666 #define DBGMCU_APB2_FZ_DBG_TIM10_STOP_Msk (0x1U << DBGMCU_APB2_FZ_DBG_TIM10_STOP_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 14667 #define DBGMCU_APB2_FZ_DBG_TIM10_STOP DBGMCU_APB2_FZ_DBG_TIM10_STOP_Msk
lypinator 0:bb348c97df44 14668 #define DBGMCU_APB2_FZ_DBG_TIM11_STOP_Pos (18U)
lypinator 0:bb348c97df44 14669 #define DBGMCU_APB2_FZ_DBG_TIM11_STOP_Msk (0x1U << DBGMCU_APB2_FZ_DBG_TIM11_STOP_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 14670 #define DBGMCU_APB2_FZ_DBG_TIM11_STOP DBGMCU_APB2_FZ_DBG_TIM11_STOP_Msk
lypinator 0:bb348c97df44 14671
lypinator 0:bb348c97df44 14672 /******************************************************************************/
lypinator 0:bb348c97df44 14673 /* */
lypinator 0:bb348c97df44 14674 /* Ethernet MAC Registers bits definitions */
lypinator 0:bb348c97df44 14675 /* */
lypinator 0:bb348c97df44 14676 /******************************************************************************/
lypinator 0:bb348c97df44 14677 /* Bit definition for Ethernet MAC Control Register register */
lypinator 0:bb348c97df44 14678 #define ETH_MACCR_WD_Pos (23U)
lypinator 0:bb348c97df44 14679 #define ETH_MACCR_WD_Msk (0x1U << ETH_MACCR_WD_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 14680 #define ETH_MACCR_WD ETH_MACCR_WD_Msk /* Watchdog disable */
lypinator 0:bb348c97df44 14681 #define ETH_MACCR_JD_Pos (22U)
lypinator 0:bb348c97df44 14682 #define ETH_MACCR_JD_Msk (0x1U << ETH_MACCR_JD_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 14683 #define ETH_MACCR_JD ETH_MACCR_JD_Msk /* Jabber disable */
lypinator 0:bb348c97df44 14684 #define ETH_MACCR_IFG_Pos (17U)
lypinator 0:bb348c97df44 14685 #define ETH_MACCR_IFG_Msk (0x7U << ETH_MACCR_IFG_Pos) /*!< 0x000E0000 */
lypinator 0:bb348c97df44 14686 #define ETH_MACCR_IFG ETH_MACCR_IFG_Msk /* Inter-frame gap */
lypinator 0:bb348c97df44 14687 #define ETH_MACCR_IFG_96Bit 0x00000000U /* Minimum IFG between frames during transmission is 96Bit */
lypinator 0:bb348c97df44 14688 #define ETH_MACCR_IFG_88Bit 0x00020000U /* Minimum IFG between frames during transmission is 88Bit */
lypinator 0:bb348c97df44 14689 #define ETH_MACCR_IFG_80Bit 0x00040000U /* Minimum IFG between frames during transmission is 80Bit */
lypinator 0:bb348c97df44 14690 #define ETH_MACCR_IFG_72Bit 0x00060000U /* Minimum IFG between frames during transmission is 72Bit */
lypinator 0:bb348c97df44 14691 #define ETH_MACCR_IFG_64Bit 0x00080000U /* Minimum IFG between frames during transmission is 64Bit */
lypinator 0:bb348c97df44 14692 #define ETH_MACCR_IFG_56Bit 0x000A0000U /* Minimum IFG between frames during transmission is 56Bit */
lypinator 0:bb348c97df44 14693 #define ETH_MACCR_IFG_48Bit 0x000C0000U /* Minimum IFG between frames during transmission is 48Bit */
lypinator 0:bb348c97df44 14694 #define ETH_MACCR_IFG_40Bit 0x000E0000U /* Minimum IFG between frames during transmission is 40Bit */
lypinator 0:bb348c97df44 14695 #define ETH_MACCR_CSD_Pos (16U)
lypinator 0:bb348c97df44 14696 #define ETH_MACCR_CSD_Msk (0x1U << ETH_MACCR_CSD_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 14697 #define ETH_MACCR_CSD ETH_MACCR_CSD_Msk /* Carrier sense disable (during transmission) */
lypinator 0:bb348c97df44 14698 #define ETH_MACCR_FES_Pos (14U)
lypinator 0:bb348c97df44 14699 #define ETH_MACCR_FES_Msk (0x1U << ETH_MACCR_FES_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 14700 #define ETH_MACCR_FES ETH_MACCR_FES_Msk /* Fast ethernet speed */
lypinator 0:bb348c97df44 14701 #define ETH_MACCR_ROD_Pos (13U)
lypinator 0:bb348c97df44 14702 #define ETH_MACCR_ROD_Msk (0x1U << ETH_MACCR_ROD_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 14703 #define ETH_MACCR_ROD ETH_MACCR_ROD_Msk /* Receive own disable */
lypinator 0:bb348c97df44 14704 #define ETH_MACCR_LM_Pos (12U)
lypinator 0:bb348c97df44 14705 #define ETH_MACCR_LM_Msk (0x1U << ETH_MACCR_LM_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 14706 #define ETH_MACCR_LM ETH_MACCR_LM_Msk /* loopback mode */
lypinator 0:bb348c97df44 14707 #define ETH_MACCR_DM_Pos (11U)
lypinator 0:bb348c97df44 14708 #define ETH_MACCR_DM_Msk (0x1U << ETH_MACCR_DM_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 14709 #define ETH_MACCR_DM ETH_MACCR_DM_Msk /* Duplex mode */
lypinator 0:bb348c97df44 14710 #define ETH_MACCR_IPCO_Pos (10U)
lypinator 0:bb348c97df44 14711 #define ETH_MACCR_IPCO_Msk (0x1U << ETH_MACCR_IPCO_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 14712 #define ETH_MACCR_IPCO ETH_MACCR_IPCO_Msk /* IP Checksum offload */
lypinator 0:bb348c97df44 14713 #define ETH_MACCR_RD_Pos (9U)
lypinator 0:bb348c97df44 14714 #define ETH_MACCR_RD_Msk (0x1U << ETH_MACCR_RD_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 14715 #define ETH_MACCR_RD ETH_MACCR_RD_Msk /* Retry disable */
lypinator 0:bb348c97df44 14716 #define ETH_MACCR_APCS_Pos (7U)
lypinator 0:bb348c97df44 14717 #define ETH_MACCR_APCS_Msk (0x1U << ETH_MACCR_APCS_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 14718 #define ETH_MACCR_APCS ETH_MACCR_APCS_Msk /* Automatic Pad/CRC stripping */
lypinator 0:bb348c97df44 14719 #define ETH_MACCR_BL_Pos (5U)
lypinator 0:bb348c97df44 14720 #define ETH_MACCR_BL_Msk (0x3U << ETH_MACCR_BL_Pos) /*!< 0x00000060 */
lypinator 0:bb348c97df44 14721 #define ETH_MACCR_BL ETH_MACCR_BL_Msk /* Back-off limit: random integer number (r) of slot time delays before rescheduling
lypinator 0:bb348c97df44 14722 a transmission attempt during retries after a collision: 0 =< r <2^k */
lypinator 0:bb348c97df44 14723 #define ETH_MACCR_BL_10 0x00000000U /* k = min (n, 10) */
lypinator 0:bb348c97df44 14724 #define ETH_MACCR_BL_8 0x00000020U /* k = min (n, 8) */
lypinator 0:bb348c97df44 14725 #define ETH_MACCR_BL_4 0x00000040U /* k = min (n, 4) */
lypinator 0:bb348c97df44 14726 #define ETH_MACCR_BL_1 0x00000060U /* k = min (n, 1) */
lypinator 0:bb348c97df44 14727 #define ETH_MACCR_DC_Pos (4U)
lypinator 0:bb348c97df44 14728 #define ETH_MACCR_DC_Msk (0x1U << ETH_MACCR_DC_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 14729 #define ETH_MACCR_DC ETH_MACCR_DC_Msk /* Defferal check */
lypinator 0:bb348c97df44 14730 #define ETH_MACCR_TE_Pos (3U)
lypinator 0:bb348c97df44 14731 #define ETH_MACCR_TE_Msk (0x1U << ETH_MACCR_TE_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 14732 #define ETH_MACCR_TE ETH_MACCR_TE_Msk /* Transmitter enable */
lypinator 0:bb348c97df44 14733 #define ETH_MACCR_RE_Pos (2U)
lypinator 0:bb348c97df44 14734 #define ETH_MACCR_RE_Msk (0x1U << ETH_MACCR_RE_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 14735 #define ETH_MACCR_RE ETH_MACCR_RE_Msk /* Receiver enable */
lypinator 0:bb348c97df44 14736
lypinator 0:bb348c97df44 14737 /* Bit definition for Ethernet MAC Frame Filter Register */
lypinator 0:bb348c97df44 14738 #define ETH_MACFFR_RA_Pos (31U)
lypinator 0:bb348c97df44 14739 #define ETH_MACFFR_RA_Msk (0x1U << ETH_MACFFR_RA_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 14740 #define ETH_MACFFR_RA ETH_MACFFR_RA_Msk /* Receive all */
lypinator 0:bb348c97df44 14741 #define ETH_MACFFR_HPF_Pos (10U)
lypinator 0:bb348c97df44 14742 #define ETH_MACFFR_HPF_Msk (0x1U << ETH_MACFFR_HPF_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 14743 #define ETH_MACFFR_HPF ETH_MACFFR_HPF_Msk /* Hash or perfect filter */
lypinator 0:bb348c97df44 14744 #define ETH_MACFFR_SAF_Pos (9U)
lypinator 0:bb348c97df44 14745 #define ETH_MACFFR_SAF_Msk (0x1U << ETH_MACFFR_SAF_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 14746 #define ETH_MACFFR_SAF ETH_MACFFR_SAF_Msk /* Source address filter enable */
lypinator 0:bb348c97df44 14747 #define ETH_MACFFR_SAIF_Pos (8U)
lypinator 0:bb348c97df44 14748 #define ETH_MACFFR_SAIF_Msk (0x1U << ETH_MACFFR_SAIF_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 14749 #define ETH_MACFFR_SAIF ETH_MACFFR_SAIF_Msk /* SA inverse filtering */
lypinator 0:bb348c97df44 14750 #define ETH_MACFFR_PCF_Pos (6U)
lypinator 0:bb348c97df44 14751 #define ETH_MACFFR_PCF_Msk (0x3U << ETH_MACFFR_PCF_Pos) /*!< 0x000000C0 */
lypinator 0:bb348c97df44 14752 #define ETH_MACFFR_PCF ETH_MACFFR_PCF_Msk /* Pass control frames: 3 cases */
lypinator 0:bb348c97df44 14753 #define ETH_MACFFR_PCF_BlockAll_Pos (6U)
lypinator 0:bb348c97df44 14754 #define ETH_MACFFR_PCF_BlockAll_Msk (0x1U << ETH_MACFFR_PCF_BlockAll_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 14755 #define ETH_MACFFR_PCF_BlockAll ETH_MACFFR_PCF_BlockAll_Msk /* MAC filters all control frames from reaching the application */
lypinator 0:bb348c97df44 14756 #define ETH_MACFFR_PCF_ForwardAll_Pos (7U)
lypinator 0:bb348c97df44 14757 #define ETH_MACFFR_PCF_ForwardAll_Msk (0x1U << ETH_MACFFR_PCF_ForwardAll_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 14758 #define ETH_MACFFR_PCF_ForwardAll ETH_MACFFR_PCF_ForwardAll_Msk /* MAC forwards all control frames to application even if they fail the Address Filter */
lypinator 0:bb348c97df44 14759 #define ETH_MACFFR_PCF_ForwardPassedAddrFilter_Pos (6U)
lypinator 0:bb348c97df44 14760 #define ETH_MACFFR_PCF_ForwardPassedAddrFilter_Msk (0x3U << ETH_MACFFR_PCF_ForwardPassedAddrFilter_Pos) /*!< 0x000000C0 */
lypinator 0:bb348c97df44 14761 #define ETH_MACFFR_PCF_ForwardPassedAddrFilter ETH_MACFFR_PCF_ForwardPassedAddrFilter_Msk /* MAC forwards control frames that pass the Address Filter. */
lypinator 0:bb348c97df44 14762 #define ETH_MACFFR_BFD_Pos (5U)
lypinator 0:bb348c97df44 14763 #define ETH_MACFFR_BFD_Msk (0x1U << ETH_MACFFR_BFD_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 14764 #define ETH_MACFFR_BFD ETH_MACFFR_BFD_Msk /* Broadcast frame disable */
lypinator 0:bb348c97df44 14765 #define ETH_MACFFR_PAM_Pos (4U)
lypinator 0:bb348c97df44 14766 #define ETH_MACFFR_PAM_Msk (0x1U << ETH_MACFFR_PAM_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 14767 #define ETH_MACFFR_PAM ETH_MACFFR_PAM_Msk /* Pass all mutlicast */
lypinator 0:bb348c97df44 14768 #define ETH_MACFFR_DAIF_Pos (3U)
lypinator 0:bb348c97df44 14769 #define ETH_MACFFR_DAIF_Msk (0x1U << ETH_MACFFR_DAIF_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 14770 #define ETH_MACFFR_DAIF ETH_MACFFR_DAIF_Msk /* DA Inverse filtering */
lypinator 0:bb348c97df44 14771 #define ETH_MACFFR_HM_Pos (2U)
lypinator 0:bb348c97df44 14772 #define ETH_MACFFR_HM_Msk (0x1U << ETH_MACFFR_HM_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 14773 #define ETH_MACFFR_HM ETH_MACFFR_HM_Msk /* Hash multicast */
lypinator 0:bb348c97df44 14774 #define ETH_MACFFR_HU_Pos (1U)
lypinator 0:bb348c97df44 14775 #define ETH_MACFFR_HU_Msk (0x1U << ETH_MACFFR_HU_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 14776 #define ETH_MACFFR_HU ETH_MACFFR_HU_Msk /* Hash unicast */
lypinator 0:bb348c97df44 14777 #define ETH_MACFFR_PM_Pos (0U)
lypinator 0:bb348c97df44 14778 #define ETH_MACFFR_PM_Msk (0x1U << ETH_MACFFR_PM_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 14779 #define ETH_MACFFR_PM ETH_MACFFR_PM_Msk /* Promiscuous mode */
lypinator 0:bb348c97df44 14780
lypinator 0:bb348c97df44 14781 /* Bit definition for Ethernet MAC Hash Table High Register */
lypinator 0:bb348c97df44 14782 #define ETH_MACHTHR_HTH_Pos (0U)
lypinator 0:bb348c97df44 14783 #define ETH_MACHTHR_HTH_Msk (0xFFFFFFFFU << ETH_MACHTHR_HTH_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 14784 #define ETH_MACHTHR_HTH ETH_MACHTHR_HTH_Msk /* Hash table high */
lypinator 0:bb348c97df44 14785
lypinator 0:bb348c97df44 14786 /* Bit definition for Ethernet MAC Hash Table Low Register */
lypinator 0:bb348c97df44 14787 #define ETH_MACHTLR_HTL_Pos (0U)
lypinator 0:bb348c97df44 14788 #define ETH_MACHTLR_HTL_Msk (0xFFFFFFFFU << ETH_MACHTLR_HTL_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 14789 #define ETH_MACHTLR_HTL ETH_MACHTLR_HTL_Msk /* Hash table low */
lypinator 0:bb348c97df44 14790
lypinator 0:bb348c97df44 14791 /* Bit definition for Ethernet MAC MII Address Register */
lypinator 0:bb348c97df44 14792 #define ETH_MACMIIAR_PA_Pos (11U)
lypinator 0:bb348c97df44 14793 #define ETH_MACMIIAR_PA_Msk (0x1FU << ETH_MACMIIAR_PA_Pos) /*!< 0x0000F800 */
lypinator 0:bb348c97df44 14794 #define ETH_MACMIIAR_PA ETH_MACMIIAR_PA_Msk /* Physical layer address */
lypinator 0:bb348c97df44 14795 #define ETH_MACMIIAR_MR_Pos (6U)
lypinator 0:bb348c97df44 14796 #define ETH_MACMIIAR_MR_Msk (0x1FU << ETH_MACMIIAR_MR_Pos) /*!< 0x000007C0 */
lypinator 0:bb348c97df44 14797 #define ETH_MACMIIAR_MR ETH_MACMIIAR_MR_Msk /* MII register in the selected PHY */
lypinator 0:bb348c97df44 14798 #define ETH_MACMIIAR_CR_Pos (2U)
lypinator 0:bb348c97df44 14799 #define ETH_MACMIIAR_CR_Msk (0x7U << ETH_MACMIIAR_CR_Pos) /*!< 0x0000001C */
lypinator 0:bb348c97df44 14800 #define ETH_MACMIIAR_CR ETH_MACMIIAR_CR_Msk /* CR clock range: 6 cases */
lypinator 0:bb348c97df44 14801 #define ETH_MACMIIAR_CR_Div42 0x00000000U /* HCLK:60-100 MHz; MDC clock= HCLK/42 */
lypinator 0:bb348c97df44 14802 #define ETH_MACMIIAR_CR_Div62_Pos (2U)
lypinator 0:bb348c97df44 14803 #define ETH_MACMIIAR_CR_Div62_Msk (0x1U << ETH_MACMIIAR_CR_Div62_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 14804 #define ETH_MACMIIAR_CR_Div62 ETH_MACMIIAR_CR_Div62_Msk /* HCLK:100-150 MHz; MDC clock= HCLK/62 */
lypinator 0:bb348c97df44 14805 #define ETH_MACMIIAR_CR_Div16_Pos (3U)
lypinator 0:bb348c97df44 14806 #define ETH_MACMIIAR_CR_Div16_Msk (0x1U << ETH_MACMIIAR_CR_Div16_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 14807 #define ETH_MACMIIAR_CR_Div16 ETH_MACMIIAR_CR_Div16_Msk /* HCLK:20-35 MHz; MDC clock= HCLK/16 */
lypinator 0:bb348c97df44 14808 #define ETH_MACMIIAR_CR_Div26_Pos (2U)
lypinator 0:bb348c97df44 14809 #define ETH_MACMIIAR_CR_Div26_Msk (0x3U << ETH_MACMIIAR_CR_Div26_Pos) /*!< 0x0000000C */
lypinator 0:bb348c97df44 14810 #define ETH_MACMIIAR_CR_Div26 ETH_MACMIIAR_CR_Div26_Msk /* HCLK:35-60 MHz; MDC clock= HCLK/26 */
lypinator 0:bb348c97df44 14811 #define ETH_MACMIIAR_CR_Div102_Pos (4U)
lypinator 0:bb348c97df44 14812 #define ETH_MACMIIAR_CR_Div102_Msk (0x1U << ETH_MACMIIAR_CR_Div102_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 14813 #define ETH_MACMIIAR_CR_Div102 ETH_MACMIIAR_CR_Div102_Msk /* HCLK:150-168 MHz; MDC clock= HCLK/102 */
lypinator 0:bb348c97df44 14814 #define ETH_MACMIIAR_MW_Pos (1U)
lypinator 0:bb348c97df44 14815 #define ETH_MACMIIAR_MW_Msk (0x1U << ETH_MACMIIAR_MW_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 14816 #define ETH_MACMIIAR_MW ETH_MACMIIAR_MW_Msk /* MII write */
lypinator 0:bb348c97df44 14817 #define ETH_MACMIIAR_MB_Pos (0U)
lypinator 0:bb348c97df44 14818 #define ETH_MACMIIAR_MB_Msk (0x1U << ETH_MACMIIAR_MB_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 14819 #define ETH_MACMIIAR_MB ETH_MACMIIAR_MB_Msk /* MII busy */
lypinator 0:bb348c97df44 14820
lypinator 0:bb348c97df44 14821 /* Bit definition for Ethernet MAC MII Data Register */
lypinator 0:bb348c97df44 14822 #define ETH_MACMIIDR_MD_Pos (0U)
lypinator 0:bb348c97df44 14823 #define ETH_MACMIIDR_MD_Msk (0xFFFFU << ETH_MACMIIDR_MD_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 14824 #define ETH_MACMIIDR_MD ETH_MACMIIDR_MD_Msk /* MII data: read/write data from/to PHY */
lypinator 0:bb348c97df44 14825
lypinator 0:bb348c97df44 14826 /* Bit definition for Ethernet MAC Flow Control Register */
lypinator 0:bb348c97df44 14827 #define ETH_MACFCR_PT_Pos (16U)
lypinator 0:bb348c97df44 14828 #define ETH_MACFCR_PT_Msk (0xFFFFU << ETH_MACFCR_PT_Pos) /*!< 0xFFFF0000 */
lypinator 0:bb348c97df44 14829 #define ETH_MACFCR_PT ETH_MACFCR_PT_Msk /* Pause time */
lypinator 0:bb348c97df44 14830 #define ETH_MACFCR_ZQPD_Pos (7U)
lypinator 0:bb348c97df44 14831 #define ETH_MACFCR_ZQPD_Msk (0x1U << ETH_MACFCR_ZQPD_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 14832 #define ETH_MACFCR_ZQPD ETH_MACFCR_ZQPD_Msk /* Zero-quanta pause disable */
lypinator 0:bb348c97df44 14833 #define ETH_MACFCR_PLT_Pos (4U)
lypinator 0:bb348c97df44 14834 #define ETH_MACFCR_PLT_Msk (0x3U << ETH_MACFCR_PLT_Pos) /*!< 0x00000030 */
lypinator 0:bb348c97df44 14835 #define ETH_MACFCR_PLT ETH_MACFCR_PLT_Msk /* Pause low threshold: 4 cases */
lypinator 0:bb348c97df44 14836 #define ETH_MACFCR_PLT_Minus4 0x00000000U /* Pause time minus 4 slot times */
lypinator 0:bb348c97df44 14837 #define ETH_MACFCR_PLT_Minus28_Pos (4U)
lypinator 0:bb348c97df44 14838 #define ETH_MACFCR_PLT_Minus28_Msk (0x1U << ETH_MACFCR_PLT_Minus28_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 14839 #define ETH_MACFCR_PLT_Minus28 ETH_MACFCR_PLT_Minus28_Msk /* Pause time minus 28 slot times */
lypinator 0:bb348c97df44 14840 #define ETH_MACFCR_PLT_Minus144_Pos (5U)
lypinator 0:bb348c97df44 14841 #define ETH_MACFCR_PLT_Minus144_Msk (0x1U << ETH_MACFCR_PLT_Minus144_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 14842 #define ETH_MACFCR_PLT_Minus144 ETH_MACFCR_PLT_Minus144_Msk /* Pause time minus 144 slot times */
lypinator 0:bb348c97df44 14843 #define ETH_MACFCR_PLT_Minus256_Pos (4U)
lypinator 0:bb348c97df44 14844 #define ETH_MACFCR_PLT_Minus256_Msk (0x3U << ETH_MACFCR_PLT_Minus256_Pos) /*!< 0x00000030 */
lypinator 0:bb348c97df44 14845 #define ETH_MACFCR_PLT_Minus256 ETH_MACFCR_PLT_Minus256_Msk /* Pause time minus 256 slot times */
lypinator 0:bb348c97df44 14846 #define ETH_MACFCR_UPFD_Pos (3U)
lypinator 0:bb348c97df44 14847 #define ETH_MACFCR_UPFD_Msk (0x1U << ETH_MACFCR_UPFD_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 14848 #define ETH_MACFCR_UPFD ETH_MACFCR_UPFD_Msk /* Unicast pause frame detect */
lypinator 0:bb348c97df44 14849 #define ETH_MACFCR_RFCE_Pos (2U)
lypinator 0:bb348c97df44 14850 #define ETH_MACFCR_RFCE_Msk (0x1U << ETH_MACFCR_RFCE_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 14851 #define ETH_MACFCR_RFCE ETH_MACFCR_RFCE_Msk /* Receive flow control enable */
lypinator 0:bb348c97df44 14852 #define ETH_MACFCR_TFCE_Pos (1U)
lypinator 0:bb348c97df44 14853 #define ETH_MACFCR_TFCE_Msk (0x1U << ETH_MACFCR_TFCE_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 14854 #define ETH_MACFCR_TFCE ETH_MACFCR_TFCE_Msk /* Transmit flow control enable */
lypinator 0:bb348c97df44 14855 #define ETH_MACFCR_FCBBPA_Pos (0U)
lypinator 0:bb348c97df44 14856 #define ETH_MACFCR_FCBBPA_Msk (0x1U << ETH_MACFCR_FCBBPA_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 14857 #define ETH_MACFCR_FCBBPA ETH_MACFCR_FCBBPA_Msk /* Flow control busy/backpressure activate */
lypinator 0:bb348c97df44 14858
lypinator 0:bb348c97df44 14859 /* Bit definition for Ethernet MAC VLAN Tag Register */
lypinator 0:bb348c97df44 14860 #define ETH_MACVLANTR_VLANTC_Pos (16U)
lypinator 0:bb348c97df44 14861 #define ETH_MACVLANTR_VLANTC_Msk (0x1U << ETH_MACVLANTR_VLANTC_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 14862 #define ETH_MACVLANTR_VLANTC ETH_MACVLANTR_VLANTC_Msk /* 12-bit VLAN tag comparison */
lypinator 0:bb348c97df44 14863 #define ETH_MACVLANTR_VLANTI_Pos (0U)
lypinator 0:bb348c97df44 14864 #define ETH_MACVLANTR_VLANTI_Msk (0xFFFFU << ETH_MACVLANTR_VLANTI_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 14865 #define ETH_MACVLANTR_VLANTI ETH_MACVLANTR_VLANTI_Msk /* VLAN tag identifier (for receive frames) */
lypinator 0:bb348c97df44 14866
lypinator 0:bb348c97df44 14867 /* Bit definition for Ethernet MAC Remote Wake-UpFrame Filter Register */
lypinator 0:bb348c97df44 14868 #define ETH_MACRWUFFR_D_Pos (0U)
lypinator 0:bb348c97df44 14869 #define ETH_MACRWUFFR_D_Msk (0xFFFFFFFFU << ETH_MACRWUFFR_D_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 14870 #define ETH_MACRWUFFR_D ETH_MACRWUFFR_D_Msk /* Wake-up frame filter register data */
lypinator 0:bb348c97df44 14871 /* Eight sequential Writes to this address (offset 0x28) will write all Wake-UpFrame Filter Registers.
lypinator 0:bb348c97df44 14872 Eight sequential Reads from this address (offset 0x28) will read all Wake-UpFrame Filter Registers. */
lypinator 0:bb348c97df44 14873 /* Wake-UpFrame Filter Reg0 : Filter 0 Byte Mask
lypinator 0:bb348c97df44 14874 Wake-UpFrame Filter Reg1 : Filter 1 Byte Mask
lypinator 0:bb348c97df44 14875 Wake-UpFrame Filter Reg2 : Filter 2 Byte Mask
lypinator 0:bb348c97df44 14876 Wake-UpFrame Filter Reg3 : Filter 3 Byte Mask
lypinator 0:bb348c97df44 14877 Wake-UpFrame Filter Reg4 : RSVD - Filter3 Command - RSVD - Filter2 Command -
lypinator 0:bb348c97df44 14878 RSVD - Filter1 Command - RSVD - Filter0 Command
lypinator 0:bb348c97df44 14879 Wake-UpFrame Filter Re5 : Filter3 Offset - Filter2 Offset - Filter1 Offset - Filter0 Offset
lypinator 0:bb348c97df44 14880 Wake-UpFrame Filter Re6 : Filter1 CRC16 - Filter0 CRC16
lypinator 0:bb348c97df44 14881 Wake-UpFrame Filter Re7 : Filter3 CRC16 - Filter2 CRC16 */
lypinator 0:bb348c97df44 14882
lypinator 0:bb348c97df44 14883 /* Bit definition for Ethernet MAC PMT Control and Status Register */
lypinator 0:bb348c97df44 14884 #define ETH_MACPMTCSR_WFFRPR_Pos (31U)
lypinator 0:bb348c97df44 14885 #define ETH_MACPMTCSR_WFFRPR_Msk (0x1U << ETH_MACPMTCSR_WFFRPR_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 14886 #define ETH_MACPMTCSR_WFFRPR ETH_MACPMTCSR_WFFRPR_Msk /* Wake-Up Frame Filter Register Pointer Reset */
lypinator 0:bb348c97df44 14887 #define ETH_MACPMTCSR_GU_Pos (9U)
lypinator 0:bb348c97df44 14888 #define ETH_MACPMTCSR_GU_Msk (0x1U << ETH_MACPMTCSR_GU_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 14889 #define ETH_MACPMTCSR_GU ETH_MACPMTCSR_GU_Msk /* Global Unicast */
lypinator 0:bb348c97df44 14890 #define ETH_MACPMTCSR_WFR_Pos (6U)
lypinator 0:bb348c97df44 14891 #define ETH_MACPMTCSR_WFR_Msk (0x1U << ETH_MACPMTCSR_WFR_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 14892 #define ETH_MACPMTCSR_WFR ETH_MACPMTCSR_WFR_Msk /* Wake-Up Frame Received */
lypinator 0:bb348c97df44 14893 #define ETH_MACPMTCSR_MPR_Pos (5U)
lypinator 0:bb348c97df44 14894 #define ETH_MACPMTCSR_MPR_Msk (0x1U << ETH_MACPMTCSR_MPR_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 14895 #define ETH_MACPMTCSR_MPR ETH_MACPMTCSR_MPR_Msk /* Magic Packet Received */
lypinator 0:bb348c97df44 14896 #define ETH_MACPMTCSR_WFE_Pos (2U)
lypinator 0:bb348c97df44 14897 #define ETH_MACPMTCSR_WFE_Msk (0x1U << ETH_MACPMTCSR_WFE_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 14898 #define ETH_MACPMTCSR_WFE ETH_MACPMTCSR_WFE_Msk /* Wake-Up Frame Enable */
lypinator 0:bb348c97df44 14899 #define ETH_MACPMTCSR_MPE_Pos (1U)
lypinator 0:bb348c97df44 14900 #define ETH_MACPMTCSR_MPE_Msk (0x1U << ETH_MACPMTCSR_MPE_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 14901 #define ETH_MACPMTCSR_MPE ETH_MACPMTCSR_MPE_Msk /* Magic Packet Enable */
lypinator 0:bb348c97df44 14902 #define ETH_MACPMTCSR_PD_Pos (0U)
lypinator 0:bb348c97df44 14903 #define ETH_MACPMTCSR_PD_Msk (0x1U << ETH_MACPMTCSR_PD_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 14904 #define ETH_MACPMTCSR_PD ETH_MACPMTCSR_PD_Msk /* Power Down */
lypinator 0:bb348c97df44 14905
lypinator 0:bb348c97df44 14906 /* Bit definition for Ethernet MAC debug Register */
lypinator 0:bb348c97df44 14907 #define ETH_MACDBGR_TFF_Pos (25U)
lypinator 0:bb348c97df44 14908 #define ETH_MACDBGR_TFF_Msk (0x1U << ETH_MACDBGR_TFF_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 14909 #define ETH_MACDBGR_TFF ETH_MACDBGR_TFF_Msk /* Tx FIFO full */
lypinator 0:bb348c97df44 14910 #define ETH_MACDBGR_TFNE_Pos (24U)
lypinator 0:bb348c97df44 14911 #define ETH_MACDBGR_TFNE_Msk (0x1U << ETH_MACDBGR_TFNE_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 14912 #define ETH_MACDBGR_TFNE ETH_MACDBGR_TFNE_Msk /* Tx FIFO not empty */
lypinator 0:bb348c97df44 14913 #define ETH_MACDBGR_TFWA_Pos (22U)
lypinator 0:bb348c97df44 14914 #define ETH_MACDBGR_TFWA_Msk (0x1U << ETH_MACDBGR_TFWA_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 14915 #define ETH_MACDBGR_TFWA ETH_MACDBGR_TFWA_Msk /* Tx FIFO write active */
lypinator 0:bb348c97df44 14916 #define ETH_MACDBGR_TFRS_Pos (20U)
lypinator 0:bb348c97df44 14917 #define ETH_MACDBGR_TFRS_Msk (0x3U << ETH_MACDBGR_TFRS_Pos) /*!< 0x00300000 */
lypinator 0:bb348c97df44 14918 #define ETH_MACDBGR_TFRS ETH_MACDBGR_TFRS_Msk /* Tx FIFO read status mask */
lypinator 0:bb348c97df44 14919 #define ETH_MACDBGR_TFRS_WRITING_Pos (20U)
lypinator 0:bb348c97df44 14920 #define ETH_MACDBGR_TFRS_WRITING_Msk (0x3U << ETH_MACDBGR_TFRS_WRITING_Pos) /*!< 0x00300000 */
lypinator 0:bb348c97df44 14921 #define ETH_MACDBGR_TFRS_WRITING ETH_MACDBGR_TFRS_WRITING_Msk /* Writing the received TxStatus or flushing the TxFIFO */
lypinator 0:bb348c97df44 14922 #define ETH_MACDBGR_TFRS_WAITING_Pos (21U)
lypinator 0:bb348c97df44 14923 #define ETH_MACDBGR_TFRS_WAITING_Msk (0x1U << ETH_MACDBGR_TFRS_WAITING_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 14924 #define ETH_MACDBGR_TFRS_WAITING ETH_MACDBGR_TFRS_WAITING_Msk /* Waiting for TxStatus from MAC transmitter */
lypinator 0:bb348c97df44 14925 #define ETH_MACDBGR_TFRS_READ_Pos (20U)
lypinator 0:bb348c97df44 14926 #define ETH_MACDBGR_TFRS_READ_Msk (0x1U << ETH_MACDBGR_TFRS_READ_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 14927 #define ETH_MACDBGR_TFRS_READ ETH_MACDBGR_TFRS_READ_Msk /* Read state (transferring data to the MAC transmitter) */
lypinator 0:bb348c97df44 14928 #define ETH_MACDBGR_TFRS_IDLE 0x00000000U /* Idle state */
lypinator 0:bb348c97df44 14929 #define ETH_MACDBGR_MTP_Pos (19U)
lypinator 0:bb348c97df44 14930 #define ETH_MACDBGR_MTP_Msk (0x1U << ETH_MACDBGR_MTP_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 14931 #define ETH_MACDBGR_MTP ETH_MACDBGR_MTP_Msk /* MAC transmitter in pause */
lypinator 0:bb348c97df44 14932 #define ETH_MACDBGR_MTFCS_Pos (17U)
lypinator 0:bb348c97df44 14933 #define ETH_MACDBGR_MTFCS_Msk (0x3U << ETH_MACDBGR_MTFCS_Pos) /*!< 0x00060000 */
lypinator 0:bb348c97df44 14934 #define ETH_MACDBGR_MTFCS ETH_MACDBGR_MTFCS_Msk /* MAC transmit frame controller status mask */
lypinator 0:bb348c97df44 14935 #define ETH_MACDBGR_MTFCS_TRANSFERRING_Pos (17U)
lypinator 0:bb348c97df44 14936 #define ETH_MACDBGR_MTFCS_TRANSFERRING_Msk (0x3U << ETH_MACDBGR_MTFCS_TRANSFERRING_Pos) /*!< 0x00060000 */
lypinator 0:bb348c97df44 14937 #define ETH_MACDBGR_MTFCS_TRANSFERRING ETH_MACDBGR_MTFCS_TRANSFERRING_Msk /* Transferring input frame for transmission */
lypinator 0:bb348c97df44 14938 #define ETH_MACDBGR_MTFCS_GENERATINGPCF_Pos (18U)
lypinator 0:bb348c97df44 14939 #define ETH_MACDBGR_MTFCS_GENERATINGPCF_Msk (0x1U << ETH_MACDBGR_MTFCS_GENERATINGPCF_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 14940 #define ETH_MACDBGR_MTFCS_GENERATINGPCF ETH_MACDBGR_MTFCS_GENERATINGPCF_Msk /* Generating and transmitting a Pause control frame (in full duplex mode) */
lypinator 0:bb348c97df44 14941 #define ETH_MACDBGR_MTFCS_WAITING_Pos (17U)
lypinator 0:bb348c97df44 14942 #define ETH_MACDBGR_MTFCS_WAITING_Msk (0x1U << ETH_MACDBGR_MTFCS_WAITING_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 14943 #define ETH_MACDBGR_MTFCS_WAITING ETH_MACDBGR_MTFCS_WAITING_Msk /* Waiting for Status of previous frame or IFG/backoff period to be over */
lypinator 0:bb348c97df44 14944 #define ETH_MACDBGR_MTFCS_IDLE 0x00000000U /* Idle */
lypinator 0:bb348c97df44 14945 #define ETH_MACDBGR_MMTEA_Pos (16U)
lypinator 0:bb348c97df44 14946 #define ETH_MACDBGR_MMTEA_Msk (0x1U << ETH_MACDBGR_MMTEA_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 14947 #define ETH_MACDBGR_MMTEA ETH_MACDBGR_MMTEA_Msk /* MAC MII transmit engine active */
lypinator 0:bb348c97df44 14948 #define ETH_MACDBGR_RFFL_Pos (8U)
lypinator 0:bb348c97df44 14949 #define ETH_MACDBGR_RFFL_Msk (0x3U << ETH_MACDBGR_RFFL_Pos) /*!< 0x00000300 */
lypinator 0:bb348c97df44 14950 #define ETH_MACDBGR_RFFL ETH_MACDBGR_RFFL_Msk /* Rx FIFO fill level mask */
lypinator 0:bb348c97df44 14951 #define ETH_MACDBGR_RFFL_FULL_Pos (8U)
lypinator 0:bb348c97df44 14952 #define ETH_MACDBGR_RFFL_FULL_Msk (0x3U << ETH_MACDBGR_RFFL_FULL_Pos) /*!< 0x00000300 */
lypinator 0:bb348c97df44 14953 #define ETH_MACDBGR_RFFL_FULL ETH_MACDBGR_RFFL_FULL_Msk /* RxFIFO full */
lypinator 0:bb348c97df44 14954 #define ETH_MACDBGR_RFFL_ABOVEFCT_Pos (9U)
lypinator 0:bb348c97df44 14955 #define ETH_MACDBGR_RFFL_ABOVEFCT_Msk (0x1U << ETH_MACDBGR_RFFL_ABOVEFCT_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 14956 #define ETH_MACDBGR_RFFL_ABOVEFCT ETH_MACDBGR_RFFL_ABOVEFCT_Msk /* RxFIFO fill-level above flow-control activate threshold */
lypinator 0:bb348c97df44 14957 #define ETH_MACDBGR_RFFL_BELOWFCT_Pos (8U)
lypinator 0:bb348c97df44 14958 #define ETH_MACDBGR_RFFL_BELOWFCT_Msk (0x1U << ETH_MACDBGR_RFFL_BELOWFCT_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 14959 #define ETH_MACDBGR_RFFL_BELOWFCT ETH_MACDBGR_RFFL_BELOWFCT_Msk /* RxFIFO fill-level below flow-control de-activate threshold */
lypinator 0:bb348c97df44 14960 #define ETH_MACDBGR_RFFL_EMPTY 0x00000000U /* RxFIFO empty */
lypinator 0:bb348c97df44 14961 #define ETH_MACDBGR_RFRCS_Pos (5U)
lypinator 0:bb348c97df44 14962 #define ETH_MACDBGR_RFRCS_Msk (0x3U << ETH_MACDBGR_RFRCS_Pos) /*!< 0x00000060 */
lypinator 0:bb348c97df44 14963 #define ETH_MACDBGR_RFRCS ETH_MACDBGR_RFRCS_Msk /* Rx FIFO read controller status mask */
lypinator 0:bb348c97df44 14964 #define ETH_MACDBGR_RFRCS_FLUSHING_Pos (5U)
lypinator 0:bb348c97df44 14965 #define ETH_MACDBGR_RFRCS_FLUSHING_Msk (0x3U << ETH_MACDBGR_RFRCS_FLUSHING_Pos) /*!< 0x00000060 */
lypinator 0:bb348c97df44 14966 #define ETH_MACDBGR_RFRCS_FLUSHING ETH_MACDBGR_RFRCS_FLUSHING_Msk /* Flushing the frame data and status */
lypinator 0:bb348c97df44 14967 #define ETH_MACDBGR_RFRCS_STATUSREADING_Pos (6U)
lypinator 0:bb348c97df44 14968 #define ETH_MACDBGR_RFRCS_STATUSREADING_Msk (0x1U << ETH_MACDBGR_RFRCS_STATUSREADING_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 14969 #define ETH_MACDBGR_RFRCS_STATUSREADING ETH_MACDBGR_RFRCS_STATUSREADING_Msk /* Reading frame status (or time-stamp) */
lypinator 0:bb348c97df44 14970 #define ETH_MACDBGR_RFRCS_DATAREADING_Pos (5U)
lypinator 0:bb348c97df44 14971 #define ETH_MACDBGR_RFRCS_DATAREADING_Msk (0x1U << ETH_MACDBGR_RFRCS_DATAREADING_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 14972 #define ETH_MACDBGR_RFRCS_DATAREADING ETH_MACDBGR_RFRCS_DATAREADING_Msk /* Reading frame data */
lypinator 0:bb348c97df44 14973 #define ETH_MACDBGR_RFRCS_IDLE 0x00000000U /* IDLE state */
lypinator 0:bb348c97df44 14974 #define ETH_MACDBGR_RFWRA_Pos (4U)
lypinator 0:bb348c97df44 14975 #define ETH_MACDBGR_RFWRA_Msk (0x1U << ETH_MACDBGR_RFWRA_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 14976 #define ETH_MACDBGR_RFWRA ETH_MACDBGR_RFWRA_Msk /* Rx FIFO write controller active */
lypinator 0:bb348c97df44 14977 #define ETH_MACDBGR_MSFRWCS_Pos (1U)
lypinator 0:bb348c97df44 14978 #define ETH_MACDBGR_MSFRWCS_Msk (0x3U << ETH_MACDBGR_MSFRWCS_Pos) /*!< 0x00000006 */
lypinator 0:bb348c97df44 14979 #define ETH_MACDBGR_MSFRWCS ETH_MACDBGR_MSFRWCS_Msk /* MAC small FIFO read / write controllers status mask */
lypinator 0:bb348c97df44 14980 #define ETH_MACDBGR_MSFRWCS_1 (0x2U << ETH_MACDBGR_MSFRWCS_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 14981 #define ETH_MACDBGR_MSFRWCS_0 (0x1U << ETH_MACDBGR_MSFRWCS_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 14982 #define ETH_MACDBGR_MMRPEA_Pos (0U)
lypinator 0:bb348c97df44 14983 #define ETH_MACDBGR_MMRPEA_Msk (0x1U << ETH_MACDBGR_MMRPEA_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 14984 #define ETH_MACDBGR_MMRPEA ETH_MACDBGR_MMRPEA_Msk /* MAC MII receive protocol engine active */
lypinator 0:bb348c97df44 14985
lypinator 0:bb348c97df44 14986 /* Bit definition for Ethernet MAC Status Register */
lypinator 0:bb348c97df44 14987 #define ETH_MACSR_TSTS_Pos (9U)
lypinator 0:bb348c97df44 14988 #define ETH_MACSR_TSTS_Msk (0x1U << ETH_MACSR_TSTS_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 14989 #define ETH_MACSR_TSTS ETH_MACSR_TSTS_Msk /* Time stamp trigger status */
lypinator 0:bb348c97df44 14990 #define ETH_MACSR_MMCTS_Pos (6U)
lypinator 0:bb348c97df44 14991 #define ETH_MACSR_MMCTS_Msk (0x1U << ETH_MACSR_MMCTS_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 14992 #define ETH_MACSR_MMCTS ETH_MACSR_MMCTS_Msk /* MMC transmit status */
lypinator 0:bb348c97df44 14993 #define ETH_MACSR_MMMCRS_Pos (5U)
lypinator 0:bb348c97df44 14994 #define ETH_MACSR_MMMCRS_Msk (0x1U << ETH_MACSR_MMMCRS_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 14995 #define ETH_MACSR_MMMCRS ETH_MACSR_MMMCRS_Msk /* MMC receive status */
lypinator 0:bb348c97df44 14996 #define ETH_MACSR_MMCS_Pos (4U)
lypinator 0:bb348c97df44 14997 #define ETH_MACSR_MMCS_Msk (0x1U << ETH_MACSR_MMCS_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 14998 #define ETH_MACSR_MMCS ETH_MACSR_MMCS_Msk /* MMC status */
lypinator 0:bb348c97df44 14999 #define ETH_MACSR_PMTS_Pos (3U)
lypinator 0:bb348c97df44 15000 #define ETH_MACSR_PMTS_Msk (0x1U << ETH_MACSR_PMTS_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 15001 #define ETH_MACSR_PMTS ETH_MACSR_PMTS_Msk /* PMT status */
lypinator 0:bb348c97df44 15002
lypinator 0:bb348c97df44 15003 /* Bit definition for Ethernet MAC Interrupt Mask Register */
lypinator 0:bb348c97df44 15004 #define ETH_MACIMR_TSTIM_Pos (9U)
lypinator 0:bb348c97df44 15005 #define ETH_MACIMR_TSTIM_Msk (0x1U << ETH_MACIMR_TSTIM_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 15006 #define ETH_MACIMR_TSTIM ETH_MACIMR_TSTIM_Msk /* Time stamp trigger interrupt mask */
lypinator 0:bb348c97df44 15007 #define ETH_MACIMR_PMTIM_Pos (3U)
lypinator 0:bb348c97df44 15008 #define ETH_MACIMR_PMTIM_Msk (0x1U << ETH_MACIMR_PMTIM_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 15009 #define ETH_MACIMR_PMTIM ETH_MACIMR_PMTIM_Msk /* PMT interrupt mask */
lypinator 0:bb348c97df44 15010
lypinator 0:bb348c97df44 15011 /* Bit definition for Ethernet MAC Address0 High Register */
lypinator 0:bb348c97df44 15012 #define ETH_MACA0HR_MACA0H_Pos (0U)
lypinator 0:bb348c97df44 15013 #define ETH_MACA0HR_MACA0H_Msk (0xFFFFU << ETH_MACA0HR_MACA0H_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 15014 #define ETH_MACA0HR_MACA0H ETH_MACA0HR_MACA0H_Msk /* MAC address0 high */
lypinator 0:bb348c97df44 15015
lypinator 0:bb348c97df44 15016 /* Bit definition for Ethernet MAC Address0 Low Register */
lypinator 0:bb348c97df44 15017 #define ETH_MACA0LR_MACA0L_Pos (0U)
lypinator 0:bb348c97df44 15018 #define ETH_MACA0LR_MACA0L_Msk (0xFFFFFFFFU << ETH_MACA0LR_MACA0L_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 15019 #define ETH_MACA0LR_MACA0L ETH_MACA0LR_MACA0L_Msk /* MAC address0 low */
lypinator 0:bb348c97df44 15020
lypinator 0:bb348c97df44 15021 /* Bit definition for Ethernet MAC Address1 High Register */
lypinator 0:bb348c97df44 15022 #define ETH_MACA1HR_AE_Pos (31U)
lypinator 0:bb348c97df44 15023 #define ETH_MACA1HR_AE_Msk (0x1U << ETH_MACA1HR_AE_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 15024 #define ETH_MACA1HR_AE ETH_MACA1HR_AE_Msk /* Address enable */
lypinator 0:bb348c97df44 15025 #define ETH_MACA1HR_SA_Pos (30U)
lypinator 0:bb348c97df44 15026 #define ETH_MACA1HR_SA_Msk (0x1U << ETH_MACA1HR_SA_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 15027 #define ETH_MACA1HR_SA ETH_MACA1HR_SA_Msk /* Source address */
lypinator 0:bb348c97df44 15028 #define ETH_MACA1HR_MBC_Pos (24U)
lypinator 0:bb348c97df44 15029 #define ETH_MACA1HR_MBC_Msk (0x3FU << ETH_MACA1HR_MBC_Pos) /*!< 0x3F000000 */
lypinator 0:bb348c97df44 15030 #define ETH_MACA1HR_MBC ETH_MACA1HR_MBC_Msk /* Mask byte control: bits to mask for comparison of the MAC Address bytes */
lypinator 0:bb348c97df44 15031 #define ETH_MACA1HR_MBC_HBits15_8 0x20000000U /* Mask MAC Address high reg bits [15:8] */
lypinator 0:bb348c97df44 15032 #define ETH_MACA1HR_MBC_HBits7_0 0x10000000U /* Mask MAC Address high reg bits [7:0] */
lypinator 0:bb348c97df44 15033 #define ETH_MACA1HR_MBC_LBits31_24 0x08000000U /* Mask MAC Address low reg bits [31:24] */
lypinator 0:bb348c97df44 15034 #define ETH_MACA1HR_MBC_LBits23_16 0x04000000U /* Mask MAC Address low reg bits [23:16] */
lypinator 0:bb348c97df44 15035 #define ETH_MACA1HR_MBC_LBits15_8 0x02000000U /* Mask MAC Address low reg bits [15:8] */
lypinator 0:bb348c97df44 15036 #define ETH_MACA1HR_MBC_LBits7_0 0x01000000U /* Mask MAC Address low reg bits [7:0] */
lypinator 0:bb348c97df44 15037 #define ETH_MACA1HR_MACA1H_Pos (0U)
lypinator 0:bb348c97df44 15038 #define ETH_MACA1HR_MACA1H_Msk (0xFFFFU << ETH_MACA1HR_MACA1H_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 15039 #define ETH_MACA1HR_MACA1H ETH_MACA1HR_MACA1H_Msk /* MAC address1 high */
lypinator 0:bb348c97df44 15040
lypinator 0:bb348c97df44 15041 /* Bit definition for Ethernet MAC Address1 Low Register */
lypinator 0:bb348c97df44 15042 #define ETH_MACA1LR_MACA1L_Pos (0U)
lypinator 0:bb348c97df44 15043 #define ETH_MACA1LR_MACA1L_Msk (0xFFFFFFFFU << ETH_MACA1LR_MACA1L_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 15044 #define ETH_MACA1LR_MACA1L ETH_MACA1LR_MACA1L_Msk /* MAC address1 low */
lypinator 0:bb348c97df44 15045
lypinator 0:bb348c97df44 15046 /* Bit definition for Ethernet MAC Address2 High Register */
lypinator 0:bb348c97df44 15047 #define ETH_MACA2HR_AE_Pos (31U)
lypinator 0:bb348c97df44 15048 #define ETH_MACA2HR_AE_Msk (0x1U << ETH_MACA2HR_AE_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 15049 #define ETH_MACA2HR_AE ETH_MACA2HR_AE_Msk /* Address enable */
lypinator 0:bb348c97df44 15050 #define ETH_MACA2HR_SA_Pos (30U)
lypinator 0:bb348c97df44 15051 #define ETH_MACA2HR_SA_Msk (0x1U << ETH_MACA2HR_SA_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 15052 #define ETH_MACA2HR_SA ETH_MACA2HR_SA_Msk /* Source address */
lypinator 0:bb348c97df44 15053 #define ETH_MACA2HR_MBC_Pos (24U)
lypinator 0:bb348c97df44 15054 #define ETH_MACA2HR_MBC_Msk (0x3FU << ETH_MACA2HR_MBC_Pos) /*!< 0x3F000000 */
lypinator 0:bb348c97df44 15055 #define ETH_MACA2HR_MBC ETH_MACA2HR_MBC_Msk /* Mask byte control */
lypinator 0:bb348c97df44 15056 #define ETH_MACA2HR_MBC_HBits15_8 0x20000000U /* Mask MAC Address high reg bits [15:8] */
lypinator 0:bb348c97df44 15057 #define ETH_MACA2HR_MBC_HBits7_0 0x10000000U /* Mask MAC Address high reg bits [7:0] */
lypinator 0:bb348c97df44 15058 #define ETH_MACA2HR_MBC_LBits31_24 0x08000000U /* Mask MAC Address low reg bits [31:24] */
lypinator 0:bb348c97df44 15059 #define ETH_MACA2HR_MBC_LBits23_16 0x04000000U /* Mask MAC Address low reg bits [23:16] */
lypinator 0:bb348c97df44 15060 #define ETH_MACA2HR_MBC_LBits15_8 0x02000000U /* Mask MAC Address low reg bits [15:8] */
lypinator 0:bb348c97df44 15061 #define ETH_MACA2HR_MBC_LBits7_0 0x01000000U /* Mask MAC Address low reg bits [70] */
lypinator 0:bb348c97df44 15062 #define ETH_MACA2HR_MACA2H_Pos (0U)
lypinator 0:bb348c97df44 15063 #define ETH_MACA2HR_MACA2H_Msk (0xFFFFU << ETH_MACA2HR_MACA2H_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 15064 #define ETH_MACA2HR_MACA2H ETH_MACA2HR_MACA2H_Msk /* MAC address1 high */
lypinator 0:bb348c97df44 15065
lypinator 0:bb348c97df44 15066 /* Bit definition for Ethernet MAC Address2 Low Register */
lypinator 0:bb348c97df44 15067 #define ETH_MACA2LR_MACA2L_Pos (0U)
lypinator 0:bb348c97df44 15068 #define ETH_MACA2LR_MACA2L_Msk (0xFFFFFFFFU << ETH_MACA2LR_MACA2L_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 15069 #define ETH_MACA2LR_MACA2L ETH_MACA2LR_MACA2L_Msk /* MAC address2 low */
lypinator 0:bb348c97df44 15070
lypinator 0:bb348c97df44 15071 /* Bit definition for Ethernet MAC Address3 High Register */
lypinator 0:bb348c97df44 15072 #define ETH_MACA3HR_AE_Pos (31U)
lypinator 0:bb348c97df44 15073 #define ETH_MACA3HR_AE_Msk (0x1U << ETH_MACA3HR_AE_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 15074 #define ETH_MACA3HR_AE ETH_MACA3HR_AE_Msk /* Address enable */
lypinator 0:bb348c97df44 15075 #define ETH_MACA3HR_SA_Pos (30U)
lypinator 0:bb348c97df44 15076 #define ETH_MACA3HR_SA_Msk (0x1U << ETH_MACA3HR_SA_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 15077 #define ETH_MACA3HR_SA ETH_MACA3HR_SA_Msk /* Source address */
lypinator 0:bb348c97df44 15078 #define ETH_MACA3HR_MBC_Pos (24U)
lypinator 0:bb348c97df44 15079 #define ETH_MACA3HR_MBC_Msk (0x3FU << ETH_MACA3HR_MBC_Pos) /*!< 0x3F000000 */
lypinator 0:bb348c97df44 15080 #define ETH_MACA3HR_MBC ETH_MACA3HR_MBC_Msk /* Mask byte control */
lypinator 0:bb348c97df44 15081 #define ETH_MACA3HR_MBC_HBits15_8 0x20000000U /* Mask MAC Address high reg bits [15:8] */
lypinator 0:bb348c97df44 15082 #define ETH_MACA3HR_MBC_HBits7_0 0x10000000U /* Mask MAC Address high reg bits [7:0] */
lypinator 0:bb348c97df44 15083 #define ETH_MACA3HR_MBC_LBits31_24 0x08000000U /* Mask MAC Address low reg bits [31:24] */
lypinator 0:bb348c97df44 15084 #define ETH_MACA3HR_MBC_LBits23_16 0x04000000U /* Mask MAC Address low reg bits [23:16] */
lypinator 0:bb348c97df44 15085 #define ETH_MACA3HR_MBC_LBits15_8 0x02000000U /* Mask MAC Address low reg bits [15:8] */
lypinator 0:bb348c97df44 15086 #define ETH_MACA3HR_MBC_LBits7_0 0x01000000U /* Mask MAC Address low reg bits [70] */
lypinator 0:bb348c97df44 15087 #define ETH_MACA3HR_MACA3H_Pos (0U)
lypinator 0:bb348c97df44 15088 #define ETH_MACA3HR_MACA3H_Msk (0xFFFFU << ETH_MACA3HR_MACA3H_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 15089 #define ETH_MACA3HR_MACA3H ETH_MACA3HR_MACA3H_Msk /* MAC address3 high */
lypinator 0:bb348c97df44 15090
lypinator 0:bb348c97df44 15091 /* Bit definition for Ethernet MAC Address3 Low Register */
lypinator 0:bb348c97df44 15092 #define ETH_MACA3LR_MACA3L_Pos (0U)
lypinator 0:bb348c97df44 15093 #define ETH_MACA3LR_MACA3L_Msk (0xFFFFFFFFU << ETH_MACA3LR_MACA3L_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 15094 #define ETH_MACA3LR_MACA3L ETH_MACA3LR_MACA3L_Msk /* MAC address3 low */
lypinator 0:bb348c97df44 15095
lypinator 0:bb348c97df44 15096 /******************************************************************************/
lypinator 0:bb348c97df44 15097 /* Ethernet MMC Registers bits definition */
lypinator 0:bb348c97df44 15098 /******************************************************************************/
lypinator 0:bb348c97df44 15099
lypinator 0:bb348c97df44 15100 /* Bit definition for Ethernet MMC Contol Register */
lypinator 0:bb348c97df44 15101 #define ETH_MMCCR_MCFHP_Pos (5U)
lypinator 0:bb348c97df44 15102 #define ETH_MMCCR_MCFHP_Msk (0x1U << ETH_MMCCR_MCFHP_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 15103 #define ETH_MMCCR_MCFHP ETH_MMCCR_MCFHP_Msk /* MMC counter Full-Half preset */
lypinator 0:bb348c97df44 15104 #define ETH_MMCCR_MCP_Pos (4U)
lypinator 0:bb348c97df44 15105 #define ETH_MMCCR_MCP_Msk (0x1U << ETH_MMCCR_MCP_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 15106 #define ETH_MMCCR_MCP ETH_MMCCR_MCP_Msk /* MMC counter preset */
lypinator 0:bb348c97df44 15107 #define ETH_MMCCR_MCF_Pos (3U)
lypinator 0:bb348c97df44 15108 #define ETH_MMCCR_MCF_Msk (0x1U << ETH_MMCCR_MCF_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 15109 #define ETH_MMCCR_MCF ETH_MMCCR_MCF_Msk /* MMC Counter Freeze */
lypinator 0:bb348c97df44 15110 #define ETH_MMCCR_ROR_Pos (2U)
lypinator 0:bb348c97df44 15111 #define ETH_MMCCR_ROR_Msk (0x1U << ETH_MMCCR_ROR_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 15112 #define ETH_MMCCR_ROR ETH_MMCCR_ROR_Msk /* Reset on Read */
lypinator 0:bb348c97df44 15113 #define ETH_MMCCR_CSR_Pos (1U)
lypinator 0:bb348c97df44 15114 #define ETH_MMCCR_CSR_Msk (0x1U << ETH_MMCCR_CSR_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 15115 #define ETH_MMCCR_CSR ETH_MMCCR_CSR_Msk /* Counter Stop Rollover */
lypinator 0:bb348c97df44 15116 #define ETH_MMCCR_CR_Pos (0U)
lypinator 0:bb348c97df44 15117 #define ETH_MMCCR_CR_Msk (0x1U << ETH_MMCCR_CR_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 15118 #define ETH_MMCCR_CR ETH_MMCCR_CR_Msk /* Counters Reset */
lypinator 0:bb348c97df44 15119
lypinator 0:bb348c97df44 15120 /* Bit definition for Ethernet MMC Receive Interrupt Register */
lypinator 0:bb348c97df44 15121 #define ETH_MMCRIR_RGUFS_Pos (17U)
lypinator 0:bb348c97df44 15122 #define ETH_MMCRIR_RGUFS_Msk (0x1U << ETH_MMCRIR_RGUFS_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 15123 #define ETH_MMCRIR_RGUFS ETH_MMCRIR_RGUFS_Msk /* Set when Rx good unicast frames counter reaches half the maximum value */
lypinator 0:bb348c97df44 15124 #define ETH_MMCRIR_RFAES_Pos (6U)
lypinator 0:bb348c97df44 15125 #define ETH_MMCRIR_RFAES_Msk (0x1U << ETH_MMCRIR_RFAES_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 15126 #define ETH_MMCRIR_RFAES ETH_MMCRIR_RFAES_Msk /* Set when Rx alignment error counter reaches half the maximum value */
lypinator 0:bb348c97df44 15127 #define ETH_MMCRIR_RFCES_Pos (5U)
lypinator 0:bb348c97df44 15128 #define ETH_MMCRIR_RFCES_Msk (0x1U << ETH_MMCRIR_RFCES_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 15129 #define ETH_MMCRIR_RFCES ETH_MMCRIR_RFCES_Msk /* Set when Rx crc error counter reaches half the maximum value */
lypinator 0:bb348c97df44 15130
lypinator 0:bb348c97df44 15131 /* Bit definition for Ethernet MMC Transmit Interrupt Register */
lypinator 0:bb348c97df44 15132 #define ETH_MMCTIR_TGFS_Pos (21U)
lypinator 0:bb348c97df44 15133 #define ETH_MMCTIR_TGFS_Msk (0x1U << ETH_MMCTIR_TGFS_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 15134 #define ETH_MMCTIR_TGFS ETH_MMCTIR_TGFS_Msk /* Set when Tx good frame count counter reaches half the maximum value */
lypinator 0:bb348c97df44 15135 #define ETH_MMCTIR_TGFMSCS_Pos (15U)
lypinator 0:bb348c97df44 15136 #define ETH_MMCTIR_TGFMSCS_Msk (0x1U << ETH_MMCTIR_TGFMSCS_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 15137 #define ETH_MMCTIR_TGFMSCS ETH_MMCTIR_TGFMSCS_Msk /* Set when Tx good multi col counter reaches half the maximum value */
lypinator 0:bb348c97df44 15138 #define ETH_MMCTIR_TGFSCS_Pos (14U)
lypinator 0:bb348c97df44 15139 #define ETH_MMCTIR_TGFSCS_Msk (0x1U << ETH_MMCTIR_TGFSCS_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 15140 #define ETH_MMCTIR_TGFSCS ETH_MMCTIR_TGFSCS_Msk /* Set when Tx good single col counter reaches half the maximum value */
lypinator 0:bb348c97df44 15141
lypinator 0:bb348c97df44 15142 /* Bit definition for Ethernet MMC Receive Interrupt Mask Register */
lypinator 0:bb348c97df44 15143 #define ETH_MMCRIMR_RGUFM_Pos (17U)
lypinator 0:bb348c97df44 15144 #define ETH_MMCRIMR_RGUFM_Msk (0x1U << ETH_MMCRIMR_RGUFM_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 15145 #define ETH_MMCRIMR_RGUFM ETH_MMCRIMR_RGUFM_Msk /* Mask the interrupt when Rx good unicast frames counter reaches half the maximum value */
lypinator 0:bb348c97df44 15146 #define ETH_MMCRIMR_RFAEM_Pos (6U)
lypinator 0:bb348c97df44 15147 #define ETH_MMCRIMR_RFAEM_Msk (0x1U << ETH_MMCRIMR_RFAEM_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 15148 #define ETH_MMCRIMR_RFAEM ETH_MMCRIMR_RFAEM_Msk /* Mask the interrupt when when Rx alignment error counter reaches half the maximum value */
lypinator 0:bb348c97df44 15149 #define ETH_MMCRIMR_RFCEM_Pos (5U)
lypinator 0:bb348c97df44 15150 #define ETH_MMCRIMR_RFCEM_Msk (0x1U << ETH_MMCRIMR_RFCEM_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 15151 #define ETH_MMCRIMR_RFCEM ETH_MMCRIMR_RFCEM_Msk /* Mask the interrupt when Rx crc error counter reaches half the maximum value */
lypinator 0:bb348c97df44 15152
lypinator 0:bb348c97df44 15153 /* Bit definition for Ethernet MMC Transmit Interrupt Mask Register */
lypinator 0:bb348c97df44 15154 #define ETH_MMCTIMR_TGFM_Pos (21U)
lypinator 0:bb348c97df44 15155 #define ETH_MMCTIMR_TGFM_Msk (0x1U << ETH_MMCTIMR_TGFM_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 15156 #define ETH_MMCTIMR_TGFM ETH_MMCTIMR_TGFM_Msk /* Mask the interrupt when Tx good frame count counter reaches half the maximum value */
lypinator 0:bb348c97df44 15157 #define ETH_MMCTIMR_TGFMSCM_Pos (15U)
lypinator 0:bb348c97df44 15158 #define ETH_MMCTIMR_TGFMSCM_Msk (0x1U << ETH_MMCTIMR_TGFMSCM_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 15159 #define ETH_MMCTIMR_TGFMSCM ETH_MMCTIMR_TGFMSCM_Msk /* Mask the interrupt when Tx good multi col counter reaches half the maximum value */
lypinator 0:bb348c97df44 15160 #define ETH_MMCTIMR_TGFSCM_Pos (14U)
lypinator 0:bb348c97df44 15161 #define ETH_MMCTIMR_TGFSCM_Msk (0x1U << ETH_MMCTIMR_TGFSCM_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 15162 #define ETH_MMCTIMR_TGFSCM ETH_MMCTIMR_TGFSCM_Msk /* Mask the interrupt when Tx good single col counter reaches half the maximum value */
lypinator 0:bb348c97df44 15163
lypinator 0:bb348c97df44 15164 /* Bit definition for Ethernet MMC Transmitted Good Frames after Single Collision Counter Register */
lypinator 0:bb348c97df44 15165 #define ETH_MMCTGFSCCR_TGFSCC_Pos (0U)
lypinator 0:bb348c97df44 15166 #define ETH_MMCTGFSCCR_TGFSCC_Msk (0xFFFFFFFFU << ETH_MMCTGFSCCR_TGFSCC_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 15167 #define ETH_MMCTGFSCCR_TGFSCC ETH_MMCTGFSCCR_TGFSCC_Msk /* Number of successfully transmitted frames after a single collision in Half-duplex mode. */
lypinator 0:bb348c97df44 15168
lypinator 0:bb348c97df44 15169 /* Bit definition for Ethernet MMC Transmitted Good Frames after More than a Single Collision Counter Register */
lypinator 0:bb348c97df44 15170 #define ETH_MMCTGFMSCCR_TGFMSCC_Pos (0U)
lypinator 0:bb348c97df44 15171 #define ETH_MMCTGFMSCCR_TGFMSCC_Msk (0xFFFFFFFFU << ETH_MMCTGFMSCCR_TGFMSCC_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 15172 #define ETH_MMCTGFMSCCR_TGFMSCC ETH_MMCTGFMSCCR_TGFMSCC_Msk /* Number of successfully transmitted frames after more than a single collision in Half-duplex mode. */
lypinator 0:bb348c97df44 15173
lypinator 0:bb348c97df44 15174 /* Bit definition for Ethernet MMC Transmitted Good Frames Counter Register */
lypinator 0:bb348c97df44 15175 #define ETH_MMCTGFCR_TGFC_Pos (0U)
lypinator 0:bb348c97df44 15176 #define ETH_MMCTGFCR_TGFC_Msk (0xFFFFFFFFU << ETH_MMCTGFCR_TGFC_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 15177 #define ETH_MMCTGFCR_TGFC ETH_MMCTGFCR_TGFC_Msk /* Number of good frames transmitted. */
lypinator 0:bb348c97df44 15178
lypinator 0:bb348c97df44 15179 /* Bit definition for Ethernet MMC Received Frames with CRC Error Counter Register */
lypinator 0:bb348c97df44 15180 #define ETH_MMCRFCECR_RFCEC_Pos (0U)
lypinator 0:bb348c97df44 15181 #define ETH_MMCRFCECR_RFCEC_Msk (0xFFFFFFFFU << ETH_MMCRFCECR_RFCEC_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 15182 #define ETH_MMCRFCECR_RFCEC ETH_MMCRFCECR_RFCEC_Msk /* Number of frames received with CRC error. */
lypinator 0:bb348c97df44 15183
lypinator 0:bb348c97df44 15184 /* Bit definition for Ethernet MMC Received Frames with Alignement Error Counter Register */
lypinator 0:bb348c97df44 15185 #define ETH_MMCRFAECR_RFAEC_Pos (0U)
lypinator 0:bb348c97df44 15186 #define ETH_MMCRFAECR_RFAEC_Msk (0xFFFFFFFFU << ETH_MMCRFAECR_RFAEC_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 15187 #define ETH_MMCRFAECR_RFAEC ETH_MMCRFAECR_RFAEC_Msk /* Number of frames received with alignment (dribble) error */
lypinator 0:bb348c97df44 15188
lypinator 0:bb348c97df44 15189 /* Bit definition for Ethernet MMC Received Good Unicast Frames Counter Register */
lypinator 0:bb348c97df44 15190 #define ETH_MMCRGUFCR_RGUFC_Pos (0U)
lypinator 0:bb348c97df44 15191 #define ETH_MMCRGUFCR_RGUFC_Msk (0xFFFFFFFFU << ETH_MMCRGUFCR_RGUFC_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 15192 #define ETH_MMCRGUFCR_RGUFC ETH_MMCRGUFCR_RGUFC_Msk /* Number of good unicast frames received. */
lypinator 0:bb348c97df44 15193
lypinator 0:bb348c97df44 15194 /******************************************************************************/
lypinator 0:bb348c97df44 15195 /* Ethernet PTP Registers bits definition */
lypinator 0:bb348c97df44 15196 /******************************************************************************/
lypinator 0:bb348c97df44 15197
lypinator 0:bb348c97df44 15198 /* Bit definition for Ethernet PTP Time Stamp Contol Register */
lypinator 0:bb348c97df44 15199 #define ETH_PTPTSCR_TSCNT_Pos (16U)
lypinator 0:bb348c97df44 15200 #define ETH_PTPTSCR_TSCNT_Msk (0x3U << ETH_PTPTSCR_TSCNT_Pos) /*!< 0x00030000 */
lypinator 0:bb348c97df44 15201 #define ETH_PTPTSCR_TSCNT ETH_PTPTSCR_TSCNT_Msk /* Time stamp clock node type */
lypinator 0:bb348c97df44 15202 #define ETH_PTPTSSR_TSSMRME_Pos (15U)
lypinator 0:bb348c97df44 15203 #define ETH_PTPTSSR_TSSMRME_Msk (0x1U << ETH_PTPTSSR_TSSMRME_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 15204 #define ETH_PTPTSSR_TSSMRME ETH_PTPTSSR_TSSMRME_Msk /* Time stamp snapshot for message relevant to master enable */
lypinator 0:bb348c97df44 15205 #define ETH_PTPTSSR_TSSEME_Pos (14U)
lypinator 0:bb348c97df44 15206 #define ETH_PTPTSSR_TSSEME_Msk (0x1U << ETH_PTPTSSR_TSSEME_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 15207 #define ETH_PTPTSSR_TSSEME ETH_PTPTSSR_TSSEME_Msk /* Time stamp snapshot for event message enable */
lypinator 0:bb348c97df44 15208 #define ETH_PTPTSSR_TSSIPV4FE_Pos (13U)
lypinator 0:bb348c97df44 15209 #define ETH_PTPTSSR_TSSIPV4FE_Msk (0x1U << ETH_PTPTSSR_TSSIPV4FE_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 15210 #define ETH_PTPTSSR_TSSIPV4FE ETH_PTPTSSR_TSSIPV4FE_Msk /* Time stamp snapshot for IPv4 frames enable */
lypinator 0:bb348c97df44 15211 #define ETH_PTPTSSR_TSSIPV6FE_Pos (12U)
lypinator 0:bb348c97df44 15212 #define ETH_PTPTSSR_TSSIPV6FE_Msk (0x1U << ETH_PTPTSSR_TSSIPV6FE_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 15213 #define ETH_PTPTSSR_TSSIPV6FE ETH_PTPTSSR_TSSIPV6FE_Msk /* Time stamp snapshot for IPv6 frames enable */
lypinator 0:bb348c97df44 15214 #define ETH_PTPTSSR_TSSPTPOEFE_Pos (11U)
lypinator 0:bb348c97df44 15215 #define ETH_PTPTSSR_TSSPTPOEFE_Msk (0x1U << ETH_PTPTSSR_TSSPTPOEFE_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 15216 #define ETH_PTPTSSR_TSSPTPOEFE ETH_PTPTSSR_TSSPTPOEFE_Msk /* Time stamp snapshot for PTP over ethernet frames enable */
lypinator 0:bb348c97df44 15217 #define ETH_PTPTSSR_TSPTPPSV2E_Pos (10U)
lypinator 0:bb348c97df44 15218 #define ETH_PTPTSSR_TSPTPPSV2E_Msk (0x1U << ETH_PTPTSSR_TSPTPPSV2E_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 15219 #define ETH_PTPTSSR_TSPTPPSV2E ETH_PTPTSSR_TSPTPPSV2E_Msk /* Time stamp PTP packet snooping for version2 format enable */
lypinator 0:bb348c97df44 15220 #define ETH_PTPTSSR_TSSSR_Pos (9U)
lypinator 0:bb348c97df44 15221 #define ETH_PTPTSSR_TSSSR_Msk (0x1U << ETH_PTPTSSR_TSSSR_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 15222 #define ETH_PTPTSSR_TSSSR ETH_PTPTSSR_TSSSR_Msk /* Time stamp Sub-seconds rollover */
lypinator 0:bb348c97df44 15223 #define ETH_PTPTSSR_TSSARFE_Pos (8U)
lypinator 0:bb348c97df44 15224 #define ETH_PTPTSSR_TSSARFE_Msk (0x1U << ETH_PTPTSSR_TSSARFE_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 15225 #define ETH_PTPTSSR_TSSARFE ETH_PTPTSSR_TSSARFE_Msk /* Time stamp snapshot for all received frames enable */
lypinator 0:bb348c97df44 15226
lypinator 0:bb348c97df44 15227 #define ETH_PTPTSCR_TSARU_Pos (5U)
lypinator 0:bb348c97df44 15228 #define ETH_PTPTSCR_TSARU_Msk (0x1U << ETH_PTPTSCR_TSARU_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 15229 #define ETH_PTPTSCR_TSARU ETH_PTPTSCR_TSARU_Msk /* Addend register update */
lypinator 0:bb348c97df44 15230 #define ETH_PTPTSCR_TSITE_Pos (4U)
lypinator 0:bb348c97df44 15231 #define ETH_PTPTSCR_TSITE_Msk (0x1U << ETH_PTPTSCR_TSITE_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 15232 #define ETH_PTPTSCR_TSITE ETH_PTPTSCR_TSITE_Msk /* Time stamp interrupt trigger enable */
lypinator 0:bb348c97df44 15233 #define ETH_PTPTSCR_TSSTU_Pos (3U)
lypinator 0:bb348c97df44 15234 #define ETH_PTPTSCR_TSSTU_Msk (0x1U << ETH_PTPTSCR_TSSTU_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 15235 #define ETH_PTPTSCR_TSSTU ETH_PTPTSCR_TSSTU_Msk /* Time stamp update */
lypinator 0:bb348c97df44 15236 #define ETH_PTPTSCR_TSSTI_Pos (2U)
lypinator 0:bb348c97df44 15237 #define ETH_PTPTSCR_TSSTI_Msk (0x1U << ETH_PTPTSCR_TSSTI_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 15238 #define ETH_PTPTSCR_TSSTI ETH_PTPTSCR_TSSTI_Msk /* Time stamp initialize */
lypinator 0:bb348c97df44 15239 #define ETH_PTPTSCR_TSFCU_Pos (1U)
lypinator 0:bb348c97df44 15240 #define ETH_PTPTSCR_TSFCU_Msk (0x1U << ETH_PTPTSCR_TSFCU_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 15241 #define ETH_PTPTSCR_TSFCU ETH_PTPTSCR_TSFCU_Msk /* Time stamp fine or coarse update */
lypinator 0:bb348c97df44 15242 #define ETH_PTPTSCR_TSE_Pos (0U)
lypinator 0:bb348c97df44 15243 #define ETH_PTPTSCR_TSE_Msk (0x1U << ETH_PTPTSCR_TSE_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 15244 #define ETH_PTPTSCR_TSE ETH_PTPTSCR_TSE_Msk /* Time stamp enable */
lypinator 0:bb348c97df44 15245
lypinator 0:bb348c97df44 15246 /* Bit definition for Ethernet PTP Sub-Second Increment Register */
lypinator 0:bb348c97df44 15247 #define ETH_PTPSSIR_STSSI_Pos (0U)
lypinator 0:bb348c97df44 15248 #define ETH_PTPSSIR_STSSI_Msk (0xFFU << ETH_PTPSSIR_STSSI_Pos) /*!< 0x000000FF */
lypinator 0:bb348c97df44 15249 #define ETH_PTPSSIR_STSSI ETH_PTPSSIR_STSSI_Msk /* System time Sub-second increment value */
lypinator 0:bb348c97df44 15250
lypinator 0:bb348c97df44 15251 /* Bit definition for Ethernet PTP Time Stamp High Register */
lypinator 0:bb348c97df44 15252 #define ETH_PTPTSHR_STS_Pos (0U)
lypinator 0:bb348c97df44 15253 #define ETH_PTPTSHR_STS_Msk (0xFFFFFFFFU << ETH_PTPTSHR_STS_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 15254 #define ETH_PTPTSHR_STS ETH_PTPTSHR_STS_Msk /* System Time second */
lypinator 0:bb348c97df44 15255
lypinator 0:bb348c97df44 15256 /* Bit definition for Ethernet PTP Time Stamp Low Register */
lypinator 0:bb348c97df44 15257 #define ETH_PTPTSLR_STPNS_Pos (31U)
lypinator 0:bb348c97df44 15258 #define ETH_PTPTSLR_STPNS_Msk (0x1U << ETH_PTPTSLR_STPNS_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 15259 #define ETH_PTPTSLR_STPNS ETH_PTPTSLR_STPNS_Msk /* System Time Positive or negative time */
lypinator 0:bb348c97df44 15260 #define ETH_PTPTSLR_STSS_Pos (0U)
lypinator 0:bb348c97df44 15261 #define ETH_PTPTSLR_STSS_Msk (0x7FFFFFFFU << ETH_PTPTSLR_STSS_Pos) /*!< 0x7FFFFFFF */
lypinator 0:bb348c97df44 15262 #define ETH_PTPTSLR_STSS ETH_PTPTSLR_STSS_Msk /* System Time sub-seconds */
lypinator 0:bb348c97df44 15263
lypinator 0:bb348c97df44 15264 /* Bit definition for Ethernet PTP Time Stamp High Update Register */
lypinator 0:bb348c97df44 15265 #define ETH_PTPTSHUR_TSUS_Pos (0U)
lypinator 0:bb348c97df44 15266 #define ETH_PTPTSHUR_TSUS_Msk (0xFFFFFFFFU << ETH_PTPTSHUR_TSUS_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 15267 #define ETH_PTPTSHUR_TSUS ETH_PTPTSHUR_TSUS_Msk /* Time stamp update seconds */
lypinator 0:bb348c97df44 15268
lypinator 0:bb348c97df44 15269 /* Bit definition for Ethernet PTP Time Stamp Low Update Register */
lypinator 0:bb348c97df44 15270 #define ETH_PTPTSLUR_TSUPNS_Pos (31U)
lypinator 0:bb348c97df44 15271 #define ETH_PTPTSLUR_TSUPNS_Msk (0x1U << ETH_PTPTSLUR_TSUPNS_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 15272 #define ETH_PTPTSLUR_TSUPNS ETH_PTPTSLUR_TSUPNS_Msk /* Time stamp update Positive or negative time */
lypinator 0:bb348c97df44 15273 #define ETH_PTPTSLUR_TSUSS_Pos (0U)
lypinator 0:bb348c97df44 15274 #define ETH_PTPTSLUR_TSUSS_Msk (0x7FFFFFFFU << ETH_PTPTSLUR_TSUSS_Pos) /*!< 0x7FFFFFFF */
lypinator 0:bb348c97df44 15275 #define ETH_PTPTSLUR_TSUSS ETH_PTPTSLUR_TSUSS_Msk /* Time stamp update sub-seconds */
lypinator 0:bb348c97df44 15276
lypinator 0:bb348c97df44 15277 /* Bit definition for Ethernet PTP Time Stamp Addend Register */
lypinator 0:bb348c97df44 15278 #define ETH_PTPTSAR_TSA_Pos (0U)
lypinator 0:bb348c97df44 15279 #define ETH_PTPTSAR_TSA_Msk (0xFFFFFFFFU << ETH_PTPTSAR_TSA_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 15280 #define ETH_PTPTSAR_TSA ETH_PTPTSAR_TSA_Msk /* Time stamp addend */
lypinator 0:bb348c97df44 15281
lypinator 0:bb348c97df44 15282 /* Bit definition for Ethernet PTP Target Time High Register */
lypinator 0:bb348c97df44 15283 #define ETH_PTPTTHR_TTSH_Pos (0U)
lypinator 0:bb348c97df44 15284 #define ETH_PTPTTHR_TTSH_Msk (0xFFFFFFFFU << ETH_PTPTTHR_TTSH_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 15285 #define ETH_PTPTTHR_TTSH ETH_PTPTTHR_TTSH_Msk /* Target time stamp high */
lypinator 0:bb348c97df44 15286
lypinator 0:bb348c97df44 15287 /* Bit definition for Ethernet PTP Target Time Low Register */
lypinator 0:bb348c97df44 15288 #define ETH_PTPTTLR_TTSL_Pos (0U)
lypinator 0:bb348c97df44 15289 #define ETH_PTPTTLR_TTSL_Msk (0xFFFFFFFFU << ETH_PTPTTLR_TTSL_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 15290 #define ETH_PTPTTLR_TTSL ETH_PTPTTLR_TTSL_Msk /* Target time stamp low */
lypinator 0:bb348c97df44 15291
lypinator 0:bb348c97df44 15292 /* Bit definition for Ethernet PTP Time Stamp Status Register */
lypinator 0:bb348c97df44 15293 #define ETH_PTPTSSR_TSTTR_Pos (5U)
lypinator 0:bb348c97df44 15294 #define ETH_PTPTSSR_TSTTR_Msk (0x1U << ETH_PTPTSSR_TSTTR_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 15295 #define ETH_PTPTSSR_TSTTR ETH_PTPTSSR_TSTTR_Msk /* Time stamp target time reached */
lypinator 0:bb348c97df44 15296 #define ETH_PTPTSSR_TSSO_Pos (4U)
lypinator 0:bb348c97df44 15297 #define ETH_PTPTSSR_TSSO_Msk (0x1U << ETH_PTPTSSR_TSSO_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 15298 #define ETH_PTPTSSR_TSSO ETH_PTPTSSR_TSSO_Msk /* Time stamp seconds overflow */
lypinator 0:bb348c97df44 15299
lypinator 0:bb348c97df44 15300 /******************************************************************************/
lypinator 0:bb348c97df44 15301 /* Ethernet DMA Registers bits definition */
lypinator 0:bb348c97df44 15302 /******************************************************************************/
lypinator 0:bb348c97df44 15303
lypinator 0:bb348c97df44 15304 /* Bit definition for Ethernet DMA Bus Mode Register */
lypinator 0:bb348c97df44 15305 #define ETH_DMABMR_AAB_Pos (25U)
lypinator 0:bb348c97df44 15306 #define ETH_DMABMR_AAB_Msk (0x1U << ETH_DMABMR_AAB_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 15307 #define ETH_DMABMR_AAB ETH_DMABMR_AAB_Msk /* Address-Aligned beats */
lypinator 0:bb348c97df44 15308 #define ETH_DMABMR_FPM_Pos (24U)
lypinator 0:bb348c97df44 15309 #define ETH_DMABMR_FPM_Msk (0x1U << ETH_DMABMR_FPM_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 15310 #define ETH_DMABMR_FPM ETH_DMABMR_FPM_Msk /* 4xPBL mode */
lypinator 0:bb348c97df44 15311 #define ETH_DMABMR_USP_Pos (23U)
lypinator 0:bb348c97df44 15312 #define ETH_DMABMR_USP_Msk (0x1U << ETH_DMABMR_USP_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 15313 #define ETH_DMABMR_USP ETH_DMABMR_USP_Msk /* Use separate PBL */
lypinator 0:bb348c97df44 15314 #define ETH_DMABMR_RDP_Pos (17U)
lypinator 0:bb348c97df44 15315 #define ETH_DMABMR_RDP_Msk (0x3FU << ETH_DMABMR_RDP_Pos) /*!< 0x007E0000 */
lypinator 0:bb348c97df44 15316 #define ETH_DMABMR_RDP ETH_DMABMR_RDP_Msk /* RxDMA PBL */
lypinator 0:bb348c97df44 15317 #define ETH_DMABMR_RDP_1Beat 0x00020000U /* maximum number of beats to be transferred in one RxDMA transaction is 1 */
lypinator 0:bb348c97df44 15318 #define ETH_DMABMR_RDP_2Beat 0x00040000U /* maximum number of beats to be transferred in one RxDMA transaction is 2 */
lypinator 0:bb348c97df44 15319 #define ETH_DMABMR_RDP_4Beat 0x00080000U /* maximum number of beats to be transferred in one RxDMA transaction is 4 */
lypinator 0:bb348c97df44 15320 #define ETH_DMABMR_RDP_8Beat 0x00100000U /* maximum number of beats to be transferred in one RxDMA transaction is 8 */
lypinator 0:bb348c97df44 15321 #define ETH_DMABMR_RDP_16Beat 0x00200000U /* maximum number of beats to be transferred in one RxDMA transaction is 16 */
lypinator 0:bb348c97df44 15322 #define ETH_DMABMR_RDP_32Beat 0x00400000U /* maximum number of beats to be transferred in one RxDMA transaction is 32 */
lypinator 0:bb348c97df44 15323 #define ETH_DMABMR_RDP_4xPBL_4Beat 0x01020000U /* maximum number of beats to be transferred in one RxDMA transaction is 4 */
lypinator 0:bb348c97df44 15324 #define ETH_DMABMR_RDP_4xPBL_8Beat 0x01040000U /* maximum number of beats to be transferred in one RxDMA transaction is 8 */
lypinator 0:bb348c97df44 15325 #define ETH_DMABMR_RDP_4xPBL_16Beat 0x01080000U /* maximum number of beats to be transferred in one RxDMA transaction is 16 */
lypinator 0:bb348c97df44 15326 #define ETH_DMABMR_RDP_4xPBL_32Beat 0x01100000U /* maximum number of beats to be transferred in one RxDMA transaction is 32 */
lypinator 0:bb348c97df44 15327 #define ETH_DMABMR_RDP_4xPBL_64Beat 0x01200000U /* maximum number of beats to be transferred in one RxDMA transaction is 64 */
lypinator 0:bb348c97df44 15328 #define ETH_DMABMR_RDP_4xPBL_128Beat 0x01400000U /* maximum number of beats to be transferred in one RxDMA transaction is 128 */
lypinator 0:bb348c97df44 15329 #define ETH_DMABMR_FB_Pos (16U)
lypinator 0:bb348c97df44 15330 #define ETH_DMABMR_FB_Msk (0x1U << ETH_DMABMR_FB_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 15331 #define ETH_DMABMR_FB ETH_DMABMR_FB_Msk /* Fixed Burst */
lypinator 0:bb348c97df44 15332 #define ETH_DMABMR_RTPR_Pos (14U)
lypinator 0:bb348c97df44 15333 #define ETH_DMABMR_RTPR_Msk (0x3U << ETH_DMABMR_RTPR_Pos) /*!< 0x0000C000 */
lypinator 0:bb348c97df44 15334 #define ETH_DMABMR_RTPR ETH_DMABMR_RTPR_Msk /* Rx Tx priority ratio */
lypinator 0:bb348c97df44 15335 #define ETH_DMABMR_RTPR_1_1 0x00000000U /* Rx Tx priority ratio */
lypinator 0:bb348c97df44 15336 #define ETH_DMABMR_RTPR_2_1 0x00004000U /* Rx Tx priority ratio */
lypinator 0:bb348c97df44 15337 #define ETH_DMABMR_RTPR_3_1 0x00008000U /* Rx Tx priority ratio */
lypinator 0:bb348c97df44 15338 #define ETH_DMABMR_RTPR_4_1 0x0000C000U /* Rx Tx priority ratio */
lypinator 0:bb348c97df44 15339 #define ETH_DMABMR_PBL_Pos (8U)
lypinator 0:bb348c97df44 15340 #define ETH_DMABMR_PBL_Msk (0x3FU << ETH_DMABMR_PBL_Pos) /*!< 0x00003F00 */
lypinator 0:bb348c97df44 15341 #define ETH_DMABMR_PBL ETH_DMABMR_PBL_Msk /* Programmable burst length */
lypinator 0:bb348c97df44 15342 #define ETH_DMABMR_PBL_1Beat 0x00000100U /* maximum number of beats to be transferred in one TxDMA (or both) transaction is 1 */
lypinator 0:bb348c97df44 15343 #define ETH_DMABMR_PBL_2Beat 0x00000200U /* maximum number of beats to be transferred in one TxDMA (or both) transaction is 2 */
lypinator 0:bb348c97df44 15344 #define ETH_DMABMR_PBL_4Beat 0x00000400U /* maximum number of beats to be transferred in one TxDMA (or both) transaction is 4 */
lypinator 0:bb348c97df44 15345 #define ETH_DMABMR_PBL_8Beat 0x00000800U /* maximum number of beats to be transferred in one TxDMA (or both) transaction is 8 */
lypinator 0:bb348c97df44 15346 #define ETH_DMABMR_PBL_16Beat 0x00001000U /* maximum number of beats to be transferred in one TxDMA (or both) transaction is 16 */
lypinator 0:bb348c97df44 15347 #define ETH_DMABMR_PBL_32Beat 0x00002000U /* maximum number of beats to be transferred in one TxDMA (or both) transaction is 32 */
lypinator 0:bb348c97df44 15348 #define ETH_DMABMR_PBL_4xPBL_4Beat 0x01000100U /* maximum number of beats to be transferred in one TxDMA (or both) transaction is 4 */
lypinator 0:bb348c97df44 15349 #define ETH_DMABMR_PBL_4xPBL_8Beat 0x01000200U /* maximum number of beats to be transferred in one TxDMA (or both) transaction is 8 */
lypinator 0:bb348c97df44 15350 #define ETH_DMABMR_PBL_4xPBL_16Beat 0x01000400U /* maximum number of beats to be transferred in one TxDMA (or both) transaction is 16 */
lypinator 0:bb348c97df44 15351 #define ETH_DMABMR_PBL_4xPBL_32Beat 0x01000800U /* maximum number of beats to be transferred in one TxDMA (or both) transaction is 32 */
lypinator 0:bb348c97df44 15352 #define ETH_DMABMR_PBL_4xPBL_64Beat 0x01001000U /* maximum number of beats to be transferred in one TxDMA (or both) transaction is 64 */
lypinator 0:bb348c97df44 15353 #define ETH_DMABMR_PBL_4xPBL_128Beat 0x01002000U /* maximum number of beats to be transferred in one TxDMA (or both) transaction is 128 */
lypinator 0:bb348c97df44 15354 #define ETH_DMABMR_EDE_Pos (7U)
lypinator 0:bb348c97df44 15355 #define ETH_DMABMR_EDE_Msk (0x1U << ETH_DMABMR_EDE_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 15356 #define ETH_DMABMR_EDE ETH_DMABMR_EDE_Msk /* Enhanced Descriptor Enable */
lypinator 0:bb348c97df44 15357 #define ETH_DMABMR_DSL_Pos (2U)
lypinator 0:bb348c97df44 15358 #define ETH_DMABMR_DSL_Msk (0x1FU << ETH_DMABMR_DSL_Pos) /*!< 0x0000007C */
lypinator 0:bb348c97df44 15359 #define ETH_DMABMR_DSL ETH_DMABMR_DSL_Msk /* Descriptor Skip Length */
lypinator 0:bb348c97df44 15360 #define ETH_DMABMR_DA_Pos (1U)
lypinator 0:bb348c97df44 15361 #define ETH_DMABMR_DA_Msk (0x1U << ETH_DMABMR_DA_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 15362 #define ETH_DMABMR_DA ETH_DMABMR_DA_Msk /* DMA arbitration scheme */
lypinator 0:bb348c97df44 15363 #define ETH_DMABMR_SR_Pos (0U)
lypinator 0:bb348c97df44 15364 #define ETH_DMABMR_SR_Msk (0x1U << ETH_DMABMR_SR_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 15365 #define ETH_DMABMR_SR ETH_DMABMR_SR_Msk /* Software reset */
lypinator 0:bb348c97df44 15366
lypinator 0:bb348c97df44 15367 /* Bit definition for Ethernet DMA Transmit Poll Demand Register */
lypinator 0:bb348c97df44 15368 #define ETH_DMATPDR_TPD_Pos (0U)
lypinator 0:bb348c97df44 15369 #define ETH_DMATPDR_TPD_Msk (0xFFFFFFFFU << ETH_DMATPDR_TPD_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 15370 #define ETH_DMATPDR_TPD ETH_DMATPDR_TPD_Msk /* Transmit poll demand */
lypinator 0:bb348c97df44 15371
lypinator 0:bb348c97df44 15372 /* Bit definition for Ethernet DMA Receive Poll Demand Register */
lypinator 0:bb348c97df44 15373 #define ETH_DMARPDR_RPD_Pos (0U)
lypinator 0:bb348c97df44 15374 #define ETH_DMARPDR_RPD_Msk (0xFFFFFFFFU << ETH_DMARPDR_RPD_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 15375 #define ETH_DMARPDR_RPD ETH_DMARPDR_RPD_Msk /* Receive poll demand */
lypinator 0:bb348c97df44 15376
lypinator 0:bb348c97df44 15377 /* Bit definition for Ethernet DMA Receive Descriptor List Address Register */
lypinator 0:bb348c97df44 15378 #define ETH_DMARDLAR_SRL_Pos (0U)
lypinator 0:bb348c97df44 15379 #define ETH_DMARDLAR_SRL_Msk (0xFFFFFFFFU << ETH_DMARDLAR_SRL_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 15380 #define ETH_DMARDLAR_SRL ETH_DMARDLAR_SRL_Msk /* Start of receive list */
lypinator 0:bb348c97df44 15381
lypinator 0:bb348c97df44 15382 /* Bit definition for Ethernet DMA Transmit Descriptor List Address Register */
lypinator 0:bb348c97df44 15383 #define ETH_DMATDLAR_STL_Pos (0U)
lypinator 0:bb348c97df44 15384 #define ETH_DMATDLAR_STL_Msk (0xFFFFFFFFU << ETH_DMATDLAR_STL_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 15385 #define ETH_DMATDLAR_STL ETH_DMATDLAR_STL_Msk /* Start of transmit list */
lypinator 0:bb348c97df44 15386
lypinator 0:bb348c97df44 15387 /* Bit definition for Ethernet DMA Status Register */
lypinator 0:bb348c97df44 15388 #define ETH_DMASR_TSTS_Pos (29U)
lypinator 0:bb348c97df44 15389 #define ETH_DMASR_TSTS_Msk (0x1U << ETH_DMASR_TSTS_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 15390 #define ETH_DMASR_TSTS ETH_DMASR_TSTS_Msk /* Time-stamp trigger status */
lypinator 0:bb348c97df44 15391 #define ETH_DMASR_PMTS_Pos (28U)
lypinator 0:bb348c97df44 15392 #define ETH_DMASR_PMTS_Msk (0x1U << ETH_DMASR_PMTS_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 15393 #define ETH_DMASR_PMTS ETH_DMASR_PMTS_Msk /* PMT status */
lypinator 0:bb348c97df44 15394 #define ETH_DMASR_MMCS_Pos (27U)
lypinator 0:bb348c97df44 15395 #define ETH_DMASR_MMCS_Msk (0x1U << ETH_DMASR_MMCS_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 15396 #define ETH_DMASR_MMCS ETH_DMASR_MMCS_Msk /* MMC status */
lypinator 0:bb348c97df44 15397 #define ETH_DMASR_EBS_Pos (23U)
lypinator 0:bb348c97df44 15398 #define ETH_DMASR_EBS_Msk (0x7U << ETH_DMASR_EBS_Pos) /*!< 0x03800000 */
lypinator 0:bb348c97df44 15399 #define ETH_DMASR_EBS ETH_DMASR_EBS_Msk /* Error bits status */
lypinator 0:bb348c97df44 15400 /* combination with EBS[2:0] for GetFlagStatus function */
lypinator 0:bb348c97df44 15401 #define ETH_DMASR_EBS_DescAccess_Pos (25U)
lypinator 0:bb348c97df44 15402 #define ETH_DMASR_EBS_DescAccess_Msk (0x1U << ETH_DMASR_EBS_DescAccess_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 15403 #define ETH_DMASR_EBS_DescAccess ETH_DMASR_EBS_DescAccess_Msk /* Error bits 0-data buffer, 1-desc. access */
lypinator 0:bb348c97df44 15404 #define ETH_DMASR_EBS_ReadTransf_Pos (24U)
lypinator 0:bb348c97df44 15405 #define ETH_DMASR_EBS_ReadTransf_Msk (0x1U << ETH_DMASR_EBS_ReadTransf_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 15406 #define ETH_DMASR_EBS_ReadTransf ETH_DMASR_EBS_ReadTransf_Msk /* Error bits 0-write trnsf, 1-read transfr */
lypinator 0:bb348c97df44 15407 #define ETH_DMASR_EBS_DataTransfTx_Pos (23U)
lypinator 0:bb348c97df44 15408 #define ETH_DMASR_EBS_DataTransfTx_Msk (0x1U << ETH_DMASR_EBS_DataTransfTx_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 15409 #define ETH_DMASR_EBS_DataTransfTx ETH_DMASR_EBS_DataTransfTx_Msk /* Error bits 0-Rx DMA, 1-Tx DMA */
lypinator 0:bb348c97df44 15410 #define ETH_DMASR_TPS_Pos (20U)
lypinator 0:bb348c97df44 15411 #define ETH_DMASR_TPS_Msk (0x7U << ETH_DMASR_TPS_Pos) /*!< 0x00700000 */
lypinator 0:bb348c97df44 15412 #define ETH_DMASR_TPS ETH_DMASR_TPS_Msk /* Transmit process state */
lypinator 0:bb348c97df44 15413 #define ETH_DMASR_TPS_Stopped 0x00000000U /* Stopped - Reset or Stop Tx Command issued */
lypinator 0:bb348c97df44 15414 #define ETH_DMASR_TPS_Fetching_Pos (20U)
lypinator 0:bb348c97df44 15415 #define ETH_DMASR_TPS_Fetching_Msk (0x1U << ETH_DMASR_TPS_Fetching_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 15416 #define ETH_DMASR_TPS_Fetching ETH_DMASR_TPS_Fetching_Msk /* Running - fetching the Tx descriptor */
lypinator 0:bb348c97df44 15417 #define ETH_DMASR_TPS_Waiting_Pos (21U)
lypinator 0:bb348c97df44 15418 #define ETH_DMASR_TPS_Waiting_Msk (0x1U << ETH_DMASR_TPS_Waiting_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 15419 #define ETH_DMASR_TPS_Waiting ETH_DMASR_TPS_Waiting_Msk /* Running - waiting for status */
lypinator 0:bb348c97df44 15420 #define ETH_DMASR_TPS_Reading_Pos (20U)
lypinator 0:bb348c97df44 15421 #define ETH_DMASR_TPS_Reading_Msk (0x3U << ETH_DMASR_TPS_Reading_Pos) /*!< 0x00300000 */
lypinator 0:bb348c97df44 15422 #define ETH_DMASR_TPS_Reading ETH_DMASR_TPS_Reading_Msk /* Running - reading the data from host memory */
lypinator 0:bb348c97df44 15423 #define ETH_DMASR_TPS_Suspended_Pos (21U)
lypinator 0:bb348c97df44 15424 #define ETH_DMASR_TPS_Suspended_Msk (0x3U << ETH_DMASR_TPS_Suspended_Pos) /*!< 0x00600000 */
lypinator 0:bb348c97df44 15425 #define ETH_DMASR_TPS_Suspended ETH_DMASR_TPS_Suspended_Msk /* Suspended - Tx Descriptor unavailabe */
lypinator 0:bb348c97df44 15426 #define ETH_DMASR_TPS_Closing_Pos (20U)
lypinator 0:bb348c97df44 15427 #define ETH_DMASR_TPS_Closing_Msk (0x7U << ETH_DMASR_TPS_Closing_Pos) /*!< 0x00700000 */
lypinator 0:bb348c97df44 15428 #define ETH_DMASR_TPS_Closing ETH_DMASR_TPS_Closing_Msk /* Running - closing Rx descriptor */
lypinator 0:bb348c97df44 15429 #define ETH_DMASR_RPS_Pos (17U)
lypinator 0:bb348c97df44 15430 #define ETH_DMASR_RPS_Msk (0x7U << ETH_DMASR_RPS_Pos) /*!< 0x000E0000 */
lypinator 0:bb348c97df44 15431 #define ETH_DMASR_RPS ETH_DMASR_RPS_Msk /* Receive process state */
lypinator 0:bb348c97df44 15432 #define ETH_DMASR_RPS_Stopped 0x00000000U /* Stopped - Reset or Stop Rx Command issued */
lypinator 0:bb348c97df44 15433 #define ETH_DMASR_RPS_Fetching_Pos (17U)
lypinator 0:bb348c97df44 15434 #define ETH_DMASR_RPS_Fetching_Msk (0x1U << ETH_DMASR_RPS_Fetching_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 15435 #define ETH_DMASR_RPS_Fetching ETH_DMASR_RPS_Fetching_Msk /* Running - fetching the Rx descriptor */
lypinator 0:bb348c97df44 15436 #define ETH_DMASR_RPS_Waiting_Pos (17U)
lypinator 0:bb348c97df44 15437 #define ETH_DMASR_RPS_Waiting_Msk (0x3U << ETH_DMASR_RPS_Waiting_Pos) /*!< 0x00060000 */
lypinator 0:bb348c97df44 15438 #define ETH_DMASR_RPS_Waiting ETH_DMASR_RPS_Waiting_Msk /* Running - waiting for packet */
lypinator 0:bb348c97df44 15439 #define ETH_DMASR_RPS_Suspended_Pos (19U)
lypinator 0:bb348c97df44 15440 #define ETH_DMASR_RPS_Suspended_Msk (0x1U << ETH_DMASR_RPS_Suspended_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 15441 #define ETH_DMASR_RPS_Suspended ETH_DMASR_RPS_Suspended_Msk /* Suspended - Rx Descriptor unavailable */
lypinator 0:bb348c97df44 15442 #define ETH_DMASR_RPS_Closing_Pos (17U)
lypinator 0:bb348c97df44 15443 #define ETH_DMASR_RPS_Closing_Msk (0x5U << ETH_DMASR_RPS_Closing_Pos) /*!< 0x000A0000 */
lypinator 0:bb348c97df44 15444 #define ETH_DMASR_RPS_Closing ETH_DMASR_RPS_Closing_Msk /* Running - closing descriptor */
lypinator 0:bb348c97df44 15445 #define ETH_DMASR_RPS_Queuing_Pos (17U)
lypinator 0:bb348c97df44 15446 #define ETH_DMASR_RPS_Queuing_Msk (0x7U << ETH_DMASR_RPS_Queuing_Pos) /*!< 0x000E0000 */
lypinator 0:bb348c97df44 15447 #define ETH_DMASR_RPS_Queuing ETH_DMASR_RPS_Queuing_Msk /* Running - queuing the recieve frame into host memory */
lypinator 0:bb348c97df44 15448 #define ETH_DMASR_NIS_Pos (16U)
lypinator 0:bb348c97df44 15449 #define ETH_DMASR_NIS_Msk (0x1U << ETH_DMASR_NIS_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 15450 #define ETH_DMASR_NIS ETH_DMASR_NIS_Msk /* Normal interrupt summary */
lypinator 0:bb348c97df44 15451 #define ETH_DMASR_AIS_Pos (15U)
lypinator 0:bb348c97df44 15452 #define ETH_DMASR_AIS_Msk (0x1U << ETH_DMASR_AIS_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 15453 #define ETH_DMASR_AIS ETH_DMASR_AIS_Msk /* Abnormal interrupt summary */
lypinator 0:bb348c97df44 15454 #define ETH_DMASR_ERS_Pos (14U)
lypinator 0:bb348c97df44 15455 #define ETH_DMASR_ERS_Msk (0x1U << ETH_DMASR_ERS_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 15456 #define ETH_DMASR_ERS ETH_DMASR_ERS_Msk /* Early receive status */
lypinator 0:bb348c97df44 15457 #define ETH_DMASR_FBES_Pos (13U)
lypinator 0:bb348c97df44 15458 #define ETH_DMASR_FBES_Msk (0x1U << ETH_DMASR_FBES_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 15459 #define ETH_DMASR_FBES ETH_DMASR_FBES_Msk /* Fatal bus error status */
lypinator 0:bb348c97df44 15460 #define ETH_DMASR_ETS_Pos (10U)
lypinator 0:bb348c97df44 15461 #define ETH_DMASR_ETS_Msk (0x1U << ETH_DMASR_ETS_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 15462 #define ETH_DMASR_ETS ETH_DMASR_ETS_Msk /* Early transmit status */
lypinator 0:bb348c97df44 15463 #define ETH_DMASR_RWTS_Pos (9U)
lypinator 0:bb348c97df44 15464 #define ETH_DMASR_RWTS_Msk (0x1U << ETH_DMASR_RWTS_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 15465 #define ETH_DMASR_RWTS ETH_DMASR_RWTS_Msk /* Receive watchdog timeout status */
lypinator 0:bb348c97df44 15466 #define ETH_DMASR_RPSS_Pos (8U)
lypinator 0:bb348c97df44 15467 #define ETH_DMASR_RPSS_Msk (0x1U << ETH_DMASR_RPSS_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 15468 #define ETH_DMASR_RPSS ETH_DMASR_RPSS_Msk /* Receive process stopped status */
lypinator 0:bb348c97df44 15469 #define ETH_DMASR_RBUS_Pos (7U)
lypinator 0:bb348c97df44 15470 #define ETH_DMASR_RBUS_Msk (0x1U << ETH_DMASR_RBUS_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 15471 #define ETH_DMASR_RBUS ETH_DMASR_RBUS_Msk /* Receive buffer unavailable status */
lypinator 0:bb348c97df44 15472 #define ETH_DMASR_RS_Pos (6U)
lypinator 0:bb348c97df44 15473 #define ETH_DMASR_RS_Msk (0x1U << ETH_DMASR_RS_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 15474 #define ETH_DMASR_RS ETH_DMASR_RS_Msk /* Receive status */
lypinator 0:bb348c97df44 15475 #define ETH_DMASR_TUS_Pos (5U)
lypinator 0:bb348c97df44 15476 #define ETH_DMASR_TUS_Msk (0x1U << ETH_DMASR_TUS_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 15477 #define ETH_DMASR_TUS ETH_DMASR_TUS_Msk /* Transmit underflow status */
lypinator 0:bb348c97df44 15478 #define ETH_DMASR_ROS_Pos (4U)
lypinator 0:bb348c97df44 15479 #define ETH_DMASR_ROS_Msk (0x1U << ETH_DMASR_ROS_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 15480 #define ETH_DMASR_ROS ETH_DMASR_ROS_Msk /* Receive overflow status */
lypinator 0:bb348c97df44 15481 #define ETH_DMASR_TJTS_Pos (3U)
lypinator 0:bb348c97df44 15482 #define ETH_DMASR_TJTS_Msk (0x1U << ETH_DMASR_TJTS_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 15483 #define ETH_DMASR_TJTS ETH_DMASR_TJTS_Msk /* Transmit jabber timeout status */
lypinator 0:bb348c97df44 15484 #define ETH_DMASR_TBUS_Pos (2U)
lypinator 0:bb348c97df44 15485 #define ETH_DMASR_TBUS_Msk (0x1U << ETH_DMASR_TBUS_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 15486 #define ETH_DMASR_TBUS ETH_DMASR_TBUS_Msk /* Transmit buffer unavailable status */
lypinator 0:bb348c97df44 15487 #define ETH_DMASR_TPSS_Pos (1U)
lypinator 0:bb348c97df44 15488 #define ETH_DMASR_TPSS_Msk (0x1U << ETH_DMASR_TPSS_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 15489 #define ETH_DMASR_TPSS ETH_DMASR_TPSS_Msk /* Transmit process stopped status */
lypinator 0:bb348c97df44 15490 #define ETH_DMASR_TS_Pos (0U)
lypinator 0:bb348c97df44 15491 #define ETH_DMASR_TS_Msk (0x1U << ETH_DMASR_TS_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 15492 #define ETH_DMASR_TS ETH_DMASR_TS_Msk /* Transmit status */
lypinator 0:bb348c97df44 15493
lypinator 0:bb348c97df44 15494 /* Bit definition for Ethernet DMA Operation Mode Register */
lypinator 0:bb348c97df44 15495 #define ETH_DMAOMR_DTCEFD_Pos (26U)
lypinator 0:bb348c97df44 15496 #define ETH_DMAOMR_DTCEFD_Msk (0x1U << ETH_DMAOMR_DTCEFD_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 15497 #define ETH_DMAOMR_DTCEFD ETH_DMAOMR_DTCEFD_Msk /* Disable Dropping of TCP/IP checksum error frames */
lypinator 0:bb348c97df44 15498 #define ETH_DMAOMR_RSF_Pos (25U)
lypinator 0:bb348c97df44 15499 #define ETH_DMAOMR_RSF_Msk (0x1U << ETH_DMAOMR_RSF_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 15500 #define ETH_DMAOMR_RSF ETH_DMAOMR_RSF_Msk /* Receive store and forward */
lypinator 0:bb348c97df44 15501 #define ETH_DMAOMR_DFRF_Pos (24U)
lypinator 0:bb348c97df44 15502 #define ETH_DMAOMR_DFRF_Msk (0x1U << ETH_DMAOMR_DFRF_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 15503 #define ETH_DMAOMR_DFRF ETH_DMAOMR_DFRF_Msk /* Disable flushing of received frames */
lypinator 0:bb348c97df44 15504 #define ETH_DMAOMR_TSF_Pos (21U)
lypinator 0:bb348c97df44 15505 #define ETH_DMAOMR_TSF_Msk (0x1U << ETH_DMAOMR_TSF_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 15506 #define ETH_DMAOMR_TSF ETH_DMAOMR_TSF_Msk /* Transmit store and forward */
lypinator 0:bb348c97df44 15507 #define ETH_DMAOMR_FTF_Pos (20U)
lypinator 0:bb348c97df44 15508 #define ETH_DMAOMR_FTF_Msk (0x1U << ETH_DMAOMR_FTF_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 15509 #define ETH_DMAOMR_FTF ETH_DMAOMR_FTF_Msk /* Flush transmit FIFO */
lypinator 0:bb348c97df44 15510 #define ETH_DMAOMR_TTC_Pos (14U)
lypinator 0:bb348c97df44 15511 #define ETH_DMAOMR_TTC_Msk (0x7U << ETH_DMAOMR_TTC_Pos) /*!< 0x0001C000 */
lypinator 0:bb348c97df44 15512 #define ETH_DMAOMR_TTC ETH_DMAOMR_TTC_Msk /* Transmit threshold control */
lypinator 0:bb348c97df44 15513 #define ETH_DMAOMR_TTC_64Bytes 0x00000000U /* threshold level of the MTL Transmit FIFO is 64 Bytes */
lypinator 0:bb348c97df44 15514 #define ETH_DMAOMR_TTC_128Bytes 0x00004000U /* threshold level of the MTL Transmit FIFO is 128 Bytes */
lypinator 0:bb348c97df44 15515 #define ETH_DMAOMR_TTC_192Bytes 0x00008000U /* threshold level of the MTL Transmit FIFO is 192 Bytes */
lypinator 0:bb348c97df44 15516 #define ETH_DMAOMR_TTC_256Bytes 0x0000C000U /* threshold level of the MTL Transmit FIFO is 256 Bytes */
lypinator 0:bb348c97df44 15517 #define ETH_DMAOMR_TTC_40Bytes 0x00010000U /* threshold level of the MTL Transmit FIFO is 40 Bytes */
lypinator 0:bb348c97df44 15518 #define ETH_DMAOMR_TTC_32Bytes 0x00014000U /* threshold level of the MTL Transmit FIFO is 32 Bytes */
lypinator 0:bb348c97df44 15519 #define ETH_DMAOMR_TTC_24Bytes 0x00018000U /* threshold level of the MTL Transmit FIFO is 24 Bytes */
lypinator 0:bb348c97df44 15520 #define ETH_DMAOMR_TTC_16Bytes 0x0001C000U /* threshold level of the MTL Transmit FIFO is 16 Bytes */
lypinator 0:bb348c97df44 15521 #define ETH_DMAOMR_ST_Pos (13U)
lypinator 0:bb348c97df44 15522 #define ETH_DMAOMR_ST_Msk (0x1U << ETH_DMAOMR_ST_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 15523 #define ETH_DMAOMR_ST ETH_DMAOMR_ST_Msk /* Start/stop transmission command */
lypinator 0:bb348c97df44 15524 #define ETH_DMAOMR_FEF_Pos (7U)
lypinator 0:bb348c97df44 15525 #define ETH_DMAOMR_FEF_Msk (0x1U << ETH_DMAOMR_FEF_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 15526 #define ETH_DMAOMR_FEF ETH_DMAOMR_FEF_Msk /* Forward error frames */
lypinator 0:bb348c97df44 15527 #define ETH_DMAOMR_FUGF_Pos (6U)
lypinator 0:bb348c97df44 15528 #define ETH_DMAOMR_FUGF_Msk (0x1U << ETH_DMAOMR_FUGF_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 15529 #define ETH_DMAOMR_FUGF ETH_DMAOMR_FUGF_Msk /* Forward undersized good frames */
lypinator 0:bb348c97df44 15530 #define ETH_DMAOMR_RTC_Pos (3U)
lypinator 0:bb348c97df44 15531 #define ETH_DMAOMR_RTC_Msk (0x3U << ETH_DMAOMR_RTC_Pos) /*!< 0x00000018 */
lypinator 0:bb348c97df44 15532 #define ETH_DMAOMR_RTC ETH_DMAOMR_RTC_Msk /* receive threshold control */
lypinator 0:bb348c97df44 15533 #define ETH_DMAOMR_RTC_64Bytes 0x00000000U /* threshold level of the MTL Receive FIFO is 64 Bytes */
lypinator 0:bb348c97df44 15534 #define ETH_DMAOMR_RTC_32Bytes 0x00000008U /* threshold level of the MTL Receive FIFO is 32 Bytes */
lypinator 0:bb348c97df44 15535 #define ETH_DMAOMR_RTC_96Bytes 0x00000010U /* threshold level of the MTL Receive FIFO is 96 Bytes */
lypinator 0:bb348c97df44 15536 #define ETH_DMAOMR_RTC_128Bytes 0x00000018U /* threshold level of the MTL Receive FIFO is 128 Bytes */
lypinator 0:bb348c97df44 15537 #define ETH_DMAOMR_OSF_Pos (2U)
lypinator 0:bb348c97df44 15538 #define ETH_DMAOMR_OSF_Msk (0x1U << ETH_DMAOMR_OSF_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 15539 #define ETH_DMAOMR_OSF ETH_DMAOMR_OSF_Msk /* operate on second frame */
lypinator 0:bb348c97df44 15540 #define ETH_DMAOMR_SR_Pos (1U)
lypinator 0:bb348c97df44 15541 #define ETH_DMAOMR_SR_Msk (0x1U << ETH_DMAOMR_SR_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 15542 #define ETH_DMAOMR_SR ETH_DMAOMR_SR_Msk /* Start/stop receive */
lypinator 0:bb348c97df44 15543
lypinator 0:bb348c97df44 15544 /* Bit definition for Ethernet DMA Interrupt Enable Register */
lypinator 0:bb348c97df44 15545 #define ETH_DMAIER_NISE_Pos (16U)
lypinator 0:bb348c97df44 15546 #define ETH_DMAIER_NISE_Msk (0x1U << ETH_DMAIER_NISE_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 15547 #define ETH_DMAIER_NISE ETH_DMAIER_NISE_Msk /* Normal interrupt summary enable */
lypinator 0:bb348c97df44 15548 #define ETH_DMAIER_AISE_Pos (15U)
lypinator 0:bb348c97df44 15549 #define ETH_DMAIER_AISE_Msk (0x1U << ETH_DMAIER_AISE_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 15550 #define ETH_DMAIER_AISE ETH_DMAIER_AISE_Msk /* Abnormal interrupt summary enable */
lypinator 0:bb348c97df44 15551 #define ETH_DMAIER_ERIE_Pos (14U)
lypinator 0:bb348c97df44 15552 #define ETH_DMAIER_ERIE_Msk (0x1U << ETH_DMAIER_ERIE_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 15553 #define ETH_DMAIER_ERIE ETH_DMAIER_ERIE_Msk /* Early receive interrupt enable */
lypinator 0:bb348c97df44 15554 #define ETH_DMAIER_FBEIE_Pos (13U)
lypinator 0:bb348c97df44 15555 #define ETH_DMAIER_FBEIE_Msk (0x1U << ETH_DMAIER_FBEIE_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 15556 #define ETH_DMAIER_FBEIE ETH_DMAIER_FBEIE_Msk /* Fatal bus error interrupt enable */
lypinator 0:bb348c97df44 15557 #define ETH_DMAIER_ETIE_Pos (10U)
lypinator 0:bb348c97df44 15558 #define ETH_DMAIER_ETIE_Msk (0x1U << ETH_DMAIER_ETIE_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 15559 #define ETH_DMAIER_ETIE ETH_DMAIER_ETIE_Msk /* Early transmit interrupt enable */
lypinator 0:bb348c97df44 15560 #define ETH_DMAIER_RWTIE_Pos (9U)
lypinator 0:bb348c97df44 15561 #define ETH_DMAIER_RWTIE_Msk (0x1U << ETH_DMAIER_RWTIE_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 15562 #define ETH_DMAIER_RWTIE ETH_DMAIER_RWTIE_Msk /* Receive watchdog timeout interrupt enable */
lypinator 0:bb348c97df44 15563 #define ETH_DMAIER_RPSIE_Pos (8U)
lypinator 0:bb348c97df44 15564 #define ETH_DMAIER_RPSIE_Msk (0x1U << ETH_DMAIER_RPSIE_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 15565 #define ETH_DMAIER_RPSIE ETH_DMAIER_RPSIE_Msk /* Receive process stopped interrupt enable */
lypinator 0:bb348c97df44 15566 #define ETH_DMAIER_RBUIE_Pos (7U)
lypinator 0:bb348c97df44 15567 #define ETH_DMAIER_RBUIE_Msk (0x1U << ETH_DMAIER_RBUIE_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 15568 #define ETH_DMAIER_RBUIE ETH_DMAIER_RBUIE_Msk /* Receive buffer unavailable interrupt enable */
lypinator 0:bb348c97df44 15569 #define ETH_DMAIER_RIE_Pos (6U)
lypinator 0:bb348c97df44 15570 #define ETH_DMAIER_RIE_Msk (0x1U << ETH_DMAIER_RIE_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 15571 #define ETH_DMAIER_RIE ETH_DMAIER_RIE_Msk /* Receive interrupt enable */
lypinator 0:bb348c97df44 15572 #define ETH_DMAIER_TUIE_Pos (5U)
lypinator 0:bb348c97df44 15573 #define ETH_DMAIER_TUIE_Msk (0x1U << ETH_DMAIER_TUIE_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 15574 #define ETH_DMAIER_TUIE ETH_DMAIER_TUIE_Msk /* Transmit Underflow interrupt enable */
lypinator 0:bb348c97df44 15575 #define ETH_DMAIER_ROIE_Pos (4U)
lypinator 0:bb348c97df44 15576 #define ETH_DMAIER_ROIE_Msk (0x1U << ETH_DMAIER_ROIE_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 15577 #define ETH_DMAIER_ROIE ETH_DMAIER_ROIE_Msk /* Receive Overflow interrupt enable */
lypinator 0:bb348c97df44 15578 #define ETH_DMAIER_TJTIE_Pos (3U)
lypinator 0:bb348c97df44 15579 #define ETH_DMAIER_TJTIE_Msk (0x1U << ETH_DMAIER_TJTIE_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 15580 #define ETH_DMAIER_TJTIE ETH_DMAIER_TJTIE_Msk /* Transmit jabber timeout interrupt enable */
lypinator 0:bb348c97df44 15581 #define ETH_DMAIER_TBUIE_Pos (2U)
lypinator 0:bb348c97df44 15582 #define ETH_DMAIER_TBUIE_Msk (0x1U << ETH_DMAIER_TBUIE_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 15583 #define ETH_DMAIER_TBUIE ETH_DMAIER_TBUIE_Msk /* Transmit buffer unavailable interrupt enable */
lypinator 0:bb348c97df44 15584 #define ETH_DMAIER_TPSIE_Pos (1U)
lypinator 0:bb348c97df44 15585 #define ETH_DMAIER_TPSIE_Msk (0x1U << ETH_DMAIER_TPSIE_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 15586 #define ETH_DMAIER_TPSIE ETH_DMAIER_TPSIE_Msk /* Transmit process stopped interrupt enable */
lypinator 0:bb348c97df44 15587 #define ETH_DMAIER_TIE_Pos (0U)
lypinator 0:bb348c97df44 15588 #define ETH_DMAIER_TIE_Msk (0x1U << ETH_DMAIER_TIE_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 15589 #define ETH_DMAIER_TIE ETH_DMAIER_TIE_Msk /* Transmit interrupt enable */
lypinator 0:bb348c97df44 15590
lypinator 0:bb348c97df44 15591 /* Bit definition for Ethernet DMA Missed Frame and Buffer Overflow Counter Register */
lypinator 0:bb348c97df44 15592 #define ETH_DMAMFBOCR_OFOC_Pos (28U)
lypinator 0:bb348c97df44 15593 #define ETH_DMAMFBOCR_OFOC_Msk (0x1U << ETH_DMAMFBOCR_OFOC_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 15594 #define ETH_DMAMFBOCR_OFOC ETH_DMAMFBOCR_OFOC_Msk /* Overflow bit for FIFO overflow counter */
lypinator 0:bb348c97df44 15595 #define ETH_DMAMFBOCR_MFA_Pos (17U)
lypinator 0:bb348c97df44 15596 #define ETH_DMAMFBOCR_MFA_Msk (0x7FFU << ETH_DMAMFBOCR_MFA_Pos) /*!< 0x0FFE0000 */
lypinator 0:bb348c97df44 15597 #define ETH_DMAMFBOCR_MFA ETH_DMAMFBOCR_MFA_Msk /* Number of frames missed by the application */
lypinator 0:bb348c97df44 15598 #define ETH_DMAMFBOCR_OMFC_Pos (16U)
lypinator 0:bb348c97df44 15599 #define ETH_DMAMFBOCR_OMFC_Msk (0x1U << ETH_DMAMFBOCR_OMFC_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 15600 #define ETH_DMAMFBOCR_OMFC ETH_DMAMFBOCR_OMFC_Msk /* Overflow bit for missed frame counter */
lypinator 0:bb348c97df44 15601 #define ETH_DMAMFBOCR_MFC_Pos (0U)
lypinator 0:bb348c97df44 15602 #define ETH_DMAMFBOCR_MFC_Msk (0xFFFFU << ETH_DMAMFBOCR_MFC_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 15603 #define ETH_DMAMFBOCR_MFC ETH_DMAMFBOCR_MFC_Msk /* Number of frames missed by the controller */
lypinator 0:bb348c97df44 15604
lypinator 0:bb348c97df44 15605 /* Bit definition for Ethernet DMA Current Host Transmit Descriptor Register */
lypinator 0:bb348c97df44 15606 #define ETH_DMACHTDR_HTDAP_Pos (0U)
lypinator 0:bb348c97df44 15607 #define ETH_DMACHTDR_HTDAP_Msk (0xFFFFFFFFU << ETH_DMACHTDR_HTDAP_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 15608 #define ETH_DMACHTDR_HTDAP ETH_DMACHTDR_HTDAP_Msk /* Host transmit descriptor address pointer */
lypinator 0:bb348c97df44 15609
lypinator 0:bb348c97df44 15610 /* Bit definition for Ethernet DMA Current Host Receive Descriptor Register */
lypinator 0:bb348c97df44 15611 #define ETH_DMACHRDR_HRDAP_Pos (0U)
lypinator 0:bb348c97df44 15612 #define ETH_DMACHRDR_HRDAP_Msk (0xFFFFFFFFU << ETH_DMACHRDR_HRDAP_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 15613 #define ETH_DMACHRDR_HRDAP ETH_DMACHRDR_HRDAP_Msk /* Host receive descriptor address pointer */
lypinator 0:bb348c97df44 15614
lypinator 0:bb348c97df44 15615 /* Bit definition for Ethernet DMA Current Host Transmit Buffer Address Register */
lypinator 0:bb348c97df44 15616 #define ETH_DMACHTBAR_HTBAP_Pos (0U)
lypinator 0:bb348c97df44 15617 #define ETH_DMACHTBAR_HTBAP_Msk (0xFFFFFFFFU << ETH_DMACHTBAR_HTBAP_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 15618 #define ETH_DMACHTBAR_HTBAP ETH_DMACHTBAR_HTBAP_Msk /* Host transmit buffer address pointer */
lypinator 0:bb348c97df44 15619
lypinator 0:bb348c97df44 15620 /* Bit definition for Ethernet DMA Current Host Receive Buffer Address Register */
lypinator 0:bb348c97df44 15621 #define ETH_DMACHRBAR_HRBAP_Pos (0U)
lypinator 0:bb348c97df44 15622 #define ETH_DMACHRBAR_HRBAP_Msk (0xFFFFFFFFU << ETH_DMACHRBAR_HRBAP_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 15623 #define ETH_DMACHRBAR_HRBAP ETH_DMACHRBAR_HRBAP_Msk /* Host receive buffer address pointer */
lypinator 0:bb348c97df44 15624
lypinator 0:bb348c97df44 15625 /******************************************************************************/
lypinator 0:bb348c97df44 15626 /* */
lypinator 0:bb348c97df44 15627 /* USB_OTG */
lypinator 0:bb348c97df44 15628 /* */
lypinator 0:bb348c97df44 15629 /******************************************************************************/
lypinator 0:bb348c97df44 15630 /******************** Bit definition for USB_OTG_GOTGCTL register ***********/
lypinator 0:bb348c97df44 15631 #define USB_OTG_GOTGCTL_SRQSCS_Pos (0U)
lypinator 0:bb348c97df44 15632 #define USB_OTG_GOTGCTL_SRQSCS_Msk (0x1U << USB_OTG_GOTGCTL_SRQSCS_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 15633 #define USB_OTG_GOTGCTL_SRQSCS USB_OTG_GOTGCTL_SRQSCS_Msk /*!< Session request success */
lypinator 0:bb348c97df44 15634 #define USB_OTG_GOTGCTL_SRQ_Pos (1U)
lypinator 0:bb348c97df44 15635 #define USB_OTG_GOTGCTL_SRQ_Msk (0x1U << USB_OTG_GOTGCTL_SRQ_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 15636 #define USB_OTG_GOTGCTL_SRQ USB_OTG_GOTGCTL_SRQ_Msk /*!< Session request */
lypinator 0:bb348c97df44 15637 #define USB_OTG_GOTGCTL_HNGSCS_Pos (8U)
lypinator 0:bb348c97df44 15638 #define USB_OTG_GOTGCTL_HNGSCS_Msk (0x1U << USB_OTG_GOTGCTL_HNGSCS_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 15639 #define USB_OTG_GOTGCTL_HNGSCS USB_OTG_GOTGCTL_HNGSCS_Msk /*!< Host set HNP enable */
lypinator 0:bb348c97df44 15640 #define USB_OTG_GOTGCTL_HNPRQ_Pos (9U)
lypinator 0:bb348c97df44 15641 #define USB_OTG_GOTGCTL_HNPRQ_Msk (0x1U << USB_OTG_GOTGCTL_HNPRQ_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 15642 #define USB_OTG_GOTGCTL_HNPRQ USB_OTG_GOTGCTL_HNPRQ_Msk /*!< HNP request */
lypinator 0:bb348c97df44 15643 #define USB_OTG_GOTGCTL_HSHNPEN_Pos (10U)
lypinator 0:bb348c97df44 15644 #define USB_OTG_GOTGCTL_HSHNPEN_Msk (0x1U << USB_OTG_GOTGCTL_HSHNPEN_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 15645 #define USB_OTG_GOTGCTL_HSHNPEN USB_OTG_GOTGCTL_HSHNPEN_Msk /*!< Host set HNP enable */
lypinator 0:bb348c97df44 15646 #define USB_OTG_GOTGCTL_DHNPEN_Pos (11U)
lypinator 0:bb348c97df44 15647 #define USB_OTG_GOTGCTL_DHNPEN_Msk (0x1U << USB_OTG_GOTGCTL_DHNPEN_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 15648 #define USB_OTG_GOTGCTL_DHNPEN USB_OTG_GOTGCTL_DHNPEN_Msk /*!< Device HNP enabled */
lypinator 0:bb348c97df44 15649 #define USB_OTG_GOTGCTL_CIDSTS_Pos (16U)
lypinator 0:bb348c97df44 15650 #define USB_OTG_GOTGCTL_CIDSTS_Msk (0x1U << USB_OTG_GOTGCTL_CIDSTS_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 15651 #define USB_OTG_GOTGCTL_CIDSTS USB_OTG_GOTGCTL_CIDSTS_Msk /*!< Connector ID status */
lypinator 0:bb348c97df44 15652 #define USB_OTG_GOTGCTL_DBCT_Pos (17U)
lypinator 0:bb348c97df44 15653 #define USB_OTG_GOTGCTL_DBCT_Msk (0x1U << USB_OTG_GOTGCTL_DBCT_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 15654 #define USB_OTG_GOTGCTL_DBCT USB_OTG_GOTGCTL_DBCT_Msk /*!< Long/short debounce time */
lypinator 0:bb348c97df44 15655 #define USB_OTG_GOTGCTL_ASVLD_Pos (18U)
lypinator 0:bb348c97df44 15656 #define USB_OTG_GOTGCTL_ASVLD_Msk (0x1U << USB_OTG_GOTGCTL_ASVLD_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 15657 #define USB_OTG_GOTGCTL_ASVLD USB_OTG_GOTGCTL_ASVLD_Msk /*!< A-session valid */
lypinator 0:bb348c97df44 15658 #define USB_OTG_GOTGCTL_BSVLD_Pos (19U)
lypinator 0:bb348c97df44 15659 #define USB_OTG_GOTGCTL_BSVLD_Msk (0x1U << USB_OTG_GOTGCTL_BSVLD_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 15660 #define USB_OTG_GOTGCTL_BSVLD USB_OTG_GOTGCTL_BSVLD_Msk /*!< B-session valid */
lypinator 0:bb348c97df44 15661
lypinator 0:bb348c97df44 15662 /******************** Bit definition forUSB_OTG_HCFG register ********************/
lypinator 0:bb348c97df44 15663
lypinator 0:bb348c97df44 15664 #define USB_OTG_HCFG_FSLSPCS_Pos (0U)
lypinator 0:bb348c97df44 15665 #define USB_OTG_HCFG_FSLSPCS_Msk (0x3U << USB_OTG_HCFG_FSLSPCS_Pos) /*!< 0x00000003 */
lypinator 0:bb348c97df44 15666 #define USB_OTG_HCFG_FSLSPCS USB_OTG_HCFG_FSLSPCS_Msk /*!< FS/LS PHY clock select */
lypinator 0:bb348c97df44 15667 #define USB_OTG_HCFG_FSLSPCS_0 (0x1U << USB_OTG_HCFG_FSLSPCS_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 15668 #define USB_OTG_HCFG_FSLSPCS_1 (0x2U << USB_OTG_HCFG_FSLSPCS_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 15669 #define USB_OTG_HCFG_FSLSS_Pos (2U)
lypinator 0:bb348c97df44 15670 #define USB_OTG_HCFG_FSLSS_Msk (0x1U << USB_OTG_HCFG_FSLSS_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 15671 #define USB_OTG_HCFG_FSLSS USB_OTG_HCFG_FSLSS_Msk /*!< FS- and LS-only support */
lypinator 0:bb348c97df44 15672
lypinator 0:bb348c97df44 15673 /******************** Bit definition for USB_OTG_DCFG register ********************/
lypinator 0:bb348c97df44 15674
lypinator 0:bb348c97df44 15675 #define USB_OTG_DCFG_DSPD_Pos (0U)
lypinator 0:bb348c97df44 15676 #define USB_OTG_DCFG_DSPD_Msk (0x3U << USB_OTG_DCFG_DSPD_Pos) /*!< 0x00000003 */
lypinator 0:bb348c97df44 15677 #define USB_OTG_DCFG_DSPD USB_OTG_DCFG_DSPD_Msk /*!< Device speed */
lypinator 0:bb348c97df44 15678 #define USB_OTG_DCFG_DSPD_0 (0x1U << USB_OTG_DCFG_DSPD_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 15679 #define USB_OTG_DCFG_DSPD_1 (0x2U << USB_OTG_DCFG_DSPD_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 15680 #define USB_OTG_DCFG_NZLSOHSK_Pos (2U)
lypinator 0:bb348c97df44 15681 #define USB_OTG_DCFG_NZLSOHSK_Msk (0x1U << USB_OTG_DCFG_NZLSOHSK_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 15682 #define USB_OTG_DCFG_NZLSOHSK USB_OTG_DCFG_NZLSOHSK_Msk /*!< Nonzero-length status OUT handshake */
lypinator 0:bb348c97df44 15683
lypinator 0:bb348c97df44 15684 #define USB_OTG_DCFG_DAD_Pos (4U)
lypinator 0:bb348c97df44 15685 #define USB_OTG_DCFG_DAD_Msk (0x7FU << USB_OTG_DCFG_DAD_Pos) /*!< 0x000007F0 */
lypinator 0:bb348c97df44 15686 #define USB_OTG_DCFG_DAD USB_OTG_DCFG_DAD_Msk /*!< Device address */
lypinator 0:bb348c97df44 15687 #define USB_OTG_DCFG_DAD_0 (0x01U << USB_OTG_DCFG_DAD_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 15688 #define USB_OTG_DCFG_DAD_1 (0x02U << USB_OTG_DCFG_DAD_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 15689 #define USB_OTG_DCFG_DAD_2 (0x04U << USB_OTG_DCFG_DAD_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 15690 #define USB_OTG_DCFG_DAD_3 (0x08U << USB_OTG_DCFG_DAD_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 15691 #define USB_OTG_DCFG_DAD_4 (0x10U << USB_OTG_DCFG_DAD_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 15692 #define USB_OTG_DCFG_DAD_5 (0x20U << USB_OTG_DCFG_DAD_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 15693 #define USB_OTG_DCFG_DAD_6 (0x40U << USB_OTG_DCFG_DAD_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 15694
lypinator 0:bb348c97df44 15695 #define USB_OTG_DCFG_PFIVL_Pos (11U)
lypinator 0:bb348c97df44 15696 #define USB_OTG_DCFG_PFIVL_Msk (0x3U << USB_OTG_DCFG_PFIVL_Pos) /*!< 0x00001800 */
lypinator 0:bb348c97df44 15697 #define USB_OTG_DCFG_PFIVL USB_OTG_DCFG_PFIVL_Msk /*!< Periodic (micro)frame interval */
lypinator 0:bb348c97df44 15698 #define USB_OTG_DCFG_PFIVL_0 (0x1U << USB_OTG_DCFG_PFIVL_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 15699 #define USB_OTG_DCFG_PFIVL_1 (0x2U << USB_OTG_DCFG_PFIVL_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 15700
lypinator 0:bb348c97df44 15701 #define USB_OTG_DCFG_PERSCHIVL_Pos (24U)
lypinator 0:bb348c97df44 15702 #define USB_OTG_DCFG_PERSCHIVL_Msk (0x3U << USB_OTG_DCFG_PERSCHIVL_Pos) /*!< 0x03000000 */
lypinator 0:bb348c97df44 15703 #define USB_OTG_DCFG_PERSCHIVL USB_OTG_DCFG_PERSCHIVL_Msk /*!< Periodic scheduling interval */
lypinator 0:bb348c97df44 15704 #define USB_OTG_DCFG_PERSCHIVL_0 (0x1U << USB_OTG_DCFG_PERSCHIVL_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 15705 #define USB_OTG_DCFG_PERSCHIVL_1 (0x2U << USB_OTG_DCFG_PERSCHIVL_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 15706
lypinator 0:bb348c97df44 15707 /******************** Bit definition for USB_OTG_PCGCR register ********************/
lypinator 0:bb348c97df44 15708 #define USB_OTG_PCGCR_STPPCLK_Pos (0U)
lypinator 0:bb348c97df44 15709 #define USB_OTG_PCGCR_STPPCLK_Msk (0x1U << USB_OTG_PCGCR_STPPCLK_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 15710 #define USB_OTG_PCGCR_STPPCLK USB_OTG_PCGCR_STPPCLK_Msk /*!< Stop PHY clock */
lypinator 0:bb348c97df44 15711 #define USB_OTG_PCGCR_GATEHCLK_Pos (1U)
lypinator 0:bb348c97df44 15712 #define USB_OTG_PCGCR_GATEHCLK_Msk (0x1U << USB_OTG_PCGCR_GATEHCLK_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 15713 #define USB_OTG_PCGCR_GATEHCLK USB_OTG_PCGCR_GATEHCLK_Msk /*!< Gate HCLK */
lypinator 0:bb348c97df44 15714 #define USB_OTG_PCGCR_PHYSUSP_Pos (4U)
lypinator 0:bb348c97df44 15715 #define USB_OTG_PCGCR_PHYSUSP_Msk (0x1U << USB_OTG_PCGCR_PHYSUSP_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 15716 #define USB_OTG_PCGCR_PHYSUSP USB_OTG_PCGCR_PHYSUSP_Msk /*!< PHY suspended */
lypinator 0:bb348c97df44 15717
lypinator 0:bb348c97df44 15718 /******************** Bit definition for USB_OTG_GOTGINT register ********************/
lypinator 0:bb348c97df44 15719 #define USB_OTG_GOTGINT_SEDET_Pos (2U)
lypinator 0:bb348c97df44 15720 #define USB_OTG_GOTGINT_SEDET_Msk (0x1U << USB_OTG_GOTGINT_SEDET_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 15721 #define USB_OTG_GOTGINT_SEDET USB_OTG_GOTGINT_SEDET_Msk /*!< Session end detected */
lypinator 0:bb348c97df44 15722 #define USB_OTG_GOTGINT_SRSSCHG_Pos (8U)
lypinator 0:bb348c97df44 15723 #define USB_OTG_GOTGINT_SRSSCHG_Msk (0x1U << USB_OTG_GOTGINT_SRSSCHG_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 15724 #define USB_OTG_GOTGINT_SRSSCHG USB_OTG_GOTGINT_SRSSCHG_Msk /*!< Session request success status change */
lypinator 0:bb348c97df44 15725 #define USB_OTG_GOTGINT_HNSSCHG_Pos (9U)
lypinator 0:bb348c97df44 15726 #define USB_OTG_GOTGINT_HNSSCHG_Msk (0x1U << USB_OTG_GOTGINT_HNSSCHG_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 15727 #define USB_OTG_GOTGINT_HNSSCHG USB_OTG_GOTGINT_HNSSCHG_Msk /*!< Host negotiation success status change */
lypinator 0:bb348c97df44 15728 #define USB_OTG_GOTGINT_HNGDET_Pos (17U)
lypinator 0:bb348c97df44 15729 #define USB_OTG_GOTGINT_HNGDET_Msk (0x1U << USB_OTG_GOTGINT_HNGDET_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 15730 #define USB_OTG_GOTGINT_HNGDET USB_OTG_GOTGINT_HNGDET_Msk /*!< Host negotiation detected */
lypinator 0:bb348c97df44 15731 #define USB_OTG_GOTGINT_ADTOCHG_Pos (18U)
lypinator 0:bb348c97df44 15732 #define USB_OTG_GOTGINT_ADTOCHG_Msk (0x1U << USB_OTG_GOTGINT_ADTOCHG_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 15733 #define USB_OTG_GOTGINT_ADTOCHG USB_OTG_GOTGINT_ADTOCHG_Msk /*!< A-device timeout change */
lypinator 0:bb348c97df44 15734 #define USB_OTG_GOTGINT_DBCDNE_Pos (19U)
lypinator 0:bb348c97df44 15735 #define USB_OTG_GOTGINT_DBCDNE_Msk (0x1U << USB_OTG_GOTGINT_DBCDNE_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 15736 #define USB_OTG_GOTGINT_DBCDNE USB_OTG_GOTGINT_DBCDNE_Msk /*!< Debounce done */
lypinator 0:bb348c97df44 15737
lypinator 0:bb348c97df44 15738 /******************** Bit definition for USB_OTG_DCTL register ********************/
lypinator 0:bb348c97df44 15739 #define USB_OTG_DCTL_RWUSIG_Pos (0U)
lypinator 0:bb348c97df44 15740 #define USB_OTG_DCTL_RWUSIG_Msk (0x1U << USB_OTG_DCTL_RWUSIG_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 15741 #define USB_OTG_DCTL_RWUSIG USB_OTG_DCTL_RWUSIG_Msk /*!< Remote wakeup signaling */
lypinator 0:bb348c97df44 15742 #define USB_OTG_DCTL_SDIS_Pos (1U)
lypinator 0:bb348c97df44 15743 #define USB_OTG_DCTL_SDIS_Msk (0x1U << USB_OTG_DCTL_SDIS_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 15744 #define USB_OTG_DCTL_SDIS USB_OTG_DCTL_SDIS_Msk /*!< Soft disconnect */
lypinator 0:bb348c97df44 15745 #define USB_OTG_DCTL_GINSTS_Pos (2U)
lypinator 0:bb348c97df44 15746 #define USB_OTG_DCTL_GINSTS_Msk (0x1U << USB_OTG_DCTL_GINSTS_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 15747 #define USB_OTG_DCTL_GINSTS USB_OTG_DCTL_GINSTS_Msk /*!< Global IN NAK status */
lypinator 0:bb348c97df44 15748 #define USB_OTG_DCTL_GONSTS_Pos (3U)
lypinator 0:bb348c97df44 15749 #define USB_OTG_DCTL_GONSTS_Msk (0x1U << USB_OTG_DCTL_GONSTS_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 15750 #define USB_OTG_DCTL_GONSTS USB_OTG_DCTL_GONSTS_Msk /*!< Global OUT NAK status */
lypinator 0:bb348c97df44 15751
lypinator 0:bb348c97df44 15752 #define USB_OTG_DCTL_TCTL_Pos (4U)
lypinator 0:bb348c97df44 15753 #define USB_OTG_DCTL_TCTL_Msk (0x7U << USB_OTG_DCTL_TCTL_Pos) /*!< 0x00000070 */
lypinator 0:bb348c97df44 15754 #define USB_OTG_DCTL_TCTL USB_OTG_DCTL_TCTL_Msk /*!< Test control */
lypinator 0:bb348c97df44 15755 #define USB_OTG_DCTL_TCTL_0 (0x1U << USB_OTG_DCTL_TCTL_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 15756 #define USB_OTG_DCTL_TCTL_1 (0x2U << USB_OTG_DCTL_TCTL_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 15757 #define USB_OTG_DCTL_TCTL_2 (0x4U << USB_OTG_DCTL_TCTL_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 15758 #define USB_OTG_DCTL_SGINAK_Pos (7U)
lypinator 0:bb348c97df44 15759 #define USB_OTG_DCTL_SGINAK_Msk (0x1U << USB_OTG_DCTL_SGINAK_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 15760 #define USB_OTG_DCTL_SGINAK USB_OTG_DCTL_SGINAK_Msk /*!< Set global IN NAK */
lypinator 0:bb348c97df44 15761 #define USB_OTG_DCTL_CGINAK_Pos (8U)
lypinator 0:bb348c97df44 15762 #define USB_OTG_DCTL_CGINAK_Msk (0x1U << USB_OTG_DCTL_CGINAK_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 15763 #define USB_OTG_DCTL_CGINAK USB_OTG_DCTL_CGINAK_Msk /*!< Clear global IN NAK */
lypinator 0:bb348c97df44 15764 #define USB_OTG_DCTL_SGONAK_Pos (9U)
lypinator 0:bb348c97df44 15765 #define USB_OTG_DCTL_SGONAK_Msk (0x1U << USB_OTG_DCTL_SGONAK_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 15766 #define USB_OTG_DCTL_SGONAK USB_OTG_DCTL_SGONAK_Msk /*!< Set global OUT NAK */
lypinator 0:bb348c97df44 15767 #define USB_OTG_DCTL_CGONAK_Pos (10U)
lypinator 0:bb348c97df44 15768 #define USB_OTG_DCTL_CGONAK_Msk (0x1U << USB_OTG_DCTL_CGONAK_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 15769 #define USB_OTG_DCTL_CGONAK USB_OTG_DCTL_CGONAK_Msk /*!< Clear global OUT NAK */
lypinator 0:bb348c97df44 15770 #define USB_OTG_DCTL_POPRGDNE_Pos (11U)
lypinator 0:bb348c97df44 15771 #define USB_OTG_DCTL_POPRGDNE_Msk (0x1U << USB_OTG_DCTL_POPRGDNE_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 15772 #define USB_OTG_DCTL_POPRGDNE USB_OTG_DCTL_POPRGDNE_Msk /*!< Power-on programming done */
lypinator 0:bb348c97df44 15773
lypinator 0:bb348c97df44 15774 /******************** Bit definition for USB_OTG_HFIR register ********************/
lypinator 0:bb348c97df44 15775 #define USB_OTG_HFIR_FRIVL_Pos (0U)
lypinator 0:bb348c97df44 15776 #define USB_OTG_HFIR_FRIVL_Msk (0xFFFFU << USB_OTG_HFIR_FRIVL_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 15777 #define USB_OTG_HFIR_FRIVL USB_OTG_HFIR_FRIVL_Msk /*!< Frame interval */
lypinator 0:bb348c97df44 15778
lypinator 0:bb348c97df44 15779 /******************** Bit definition for USB_OTG_HFNUM register ********************/
lypinator 0:bb348c97df44 15780 #define USB_OTG_HFNUM_FRNUM_Pos (0U)
lypinator 0:bb348c97df44 15781 #define USB_OTG_HFNUM_FRNUM_Msk (0xFFFFU << USB_OTG_HFNUM_FRNUM_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 15782 #define USB_OTG_HFNUM_FRNUM USB_OTG_HFNUM_FRNUM_Msk /*!< Frame number */
lypinator 0:bb348c97df44 15783 #define USB_OTG_HFNUM_FTREM_Pos (16U)
lypinator 0:bb348c97df44 15784 #define USB_OTG_HFNUM_FTREM_Msk (0xFFFFU << USB_OTG_HFNUM_FTREM_Pos) /*!< 0xFFFF0000 */
lypinator 0:bb348c97df44 15785 #define USB_OTG_HFNUM_FTREM USB_OTG_HFNUM_FTREM_Msk /*!< Frame time remaining */
lypinator 0:bb348c97df44 15786
lypinator 0:bb348c97df44 15787 /******************** Bit definition for USB_OTG_DSTS register ********************/
lypinator 0:bb348c97df44 15788 #define USB_OTG_DSTS_SUSPSTS_Pos (0U)
lypinator 0:bb348c97df44 15789 #define USB_OTG_DSTS_SUSPSTS_Msk (0x1U << USB_OTG_DSTS_SUSPSTS_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 15790 #define USB_OTG_DSTS_SUSPSTS USB_OTG_DSTS_SUSPSTS_Msk /*!< Suspend status */
lypinator 0:bb348c97df44 15791
lypinator 0:bb348c97df44 15792 #define USB_OTG_DSTS_ENUMSPD_Pos (1U)
lypinator 0:bb348c97df44 15793 #define USB_OTG_DSTS_ENUMSPD_Msk (0x3U << USB_OTG_DSTS_ENUMSPD_Pos) /*!< 0x00000006 */
lypinator 0:bb348c97df44 15794 #define USB_OTG_DSTS_ENUMSPD USB_OTG_DSTS_ENUMSPD_Msk /*!< Enumerated speed */
lypinator 0:bb348c97df44 15795 #define USB_OTG_DSTS_ENUMSPD_0 (0x1U << USB_OTG_DSTS_ENUMSPD_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 15796 #define USB_OTG_DSTS_ENUMSPD_1 (0x2U << USB_OTG_DSTS_ENUMSPD_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 15797 #define USB_OTG_DSTS_EERR_Pos (3U)
lypinator 0:bb348c97df44 15798 #define USB_OTG_DSTS_EERR_Msk (0x1U << USB_OTG_DSTS_EERR_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 15799 #define USB_OTG_DSTS_EERR USB_OTG_DSTS_EERR_Msk /*!< Erratic error */
lypinator 0:bb348c97df44 15800 #define USB_OTG_DSTS_FNSOF_Pos (8U)
lypinator 0:bb348c97df44 15801 #define USB_OTG_DSTS_FNSOF_Msk (0x3FFFU << USB_OTG_DSTS_FNSOF_Pos) /*!< 0x003FFF00 */
lypinator 0:bb348c97df44 15802 #define USB_OTG_DSTS_FNSOF USB_OTG_DSTS_FNSOF_Msk /*!< Frame number of the received SOF */
lypinator 0:bb348c97df44 15803
lypinator 0:bb348c97df44 15804 /******************** Bit definition for USB_OTG_GAHBCFG register ********************/
lypinator 0:bb348c97df44 15805 #define USB_OTG_GAHBCFG_GINT_Pos (0U)
lypinator 0:bb348c97df44 15806 #define USB_OTG_GAHBCFG_GINT_Msk (0x1U << USB_OTG_GAHBCFG_GINT_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 15807 #define USB_OTG_GAHBCFG_GINT USB_OTG_GAHBCFG_GINT_Msk /*!< Global interrupt mask */
lypinator 0:bb348c97df44 15808 #define USB_OTG_GAHBCFG_HBSTLEN_Pos (1U)
lypinator 0:bb348c97df44 15809 #define USB_OTG_GAHBCFG_HBSTLEN_Msk (0xFU << USB_OTG_GAHBCFG_HBSTLEN_Pos) /*!< 0x0000001E */
lypinator 0:bb348c97df44 15810 #define USB_OTG_GAHBCFG_HBSTLEN USB_OTG_GAHBCFG_HBSTLEN_Msk /*!< Burst length/type */
lypinator 0:bb348c97df44 15811 #define USB_OTG_GAHBCFG_HBSTLEN_0 (0x0U << USB_OTG_GAHBCFG_HBSTLEN_Pos) /*!< Single */
lypinator 0:bb348c97df44 15812 #define USB_OTG_GAHBCFG_HBSTLEN_1 (0x1U << USB_OTG_GAHBCFG_HBSTLEN_Pos) /*!< INCR */
lypinator 0:bb348c97df44 15813 #define USB_OTG_GAHBCFG_HBSTLEN_2 (0x3U << USB_OTG_GAHBCFG_HBSTLEN_Pos) /*!< INCR4 */
lypinator 0:bb348c97df44 15814 #define USB_OTG_GAHBCFG_HBSTLEN_3 (0x5U << USB_OTG_GAHBCFG_HBSTLEN_Pos) /*!< INCR8 */
lypinator 0:bb348c97df44 15815 #define USB_OTG_GAHBCFG_HBSTLEN_4 (0x7U << USB_OTG_GAHBCFG_HBSTLEN_Pos) /*!< INCR16 */
lypinator 0:bb348c97df44 15816 #define USB_OTG_GAHBCFG_DMAEN_Pos (5U)
lypinator 0:bb348c97df44 15817 #define USB_OTG_GAHBCFG_DMAEN_Msk (0x1U << USB_OTG_GAHBCFG_DMAEN_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 15818 #define USB_OTG_GAHBCFG_DMAEN USB_OTG_GAHBCFG_DMAEN_Msk /*!< DMA enable */
lypinator 0:bb348c97df44 15819 #define USB_OTG_GAHBCFG_TXFELVL_Pos (7U)
lypinator 0:bb348c97df44 15820 #define USB_OTG_GAHBCFG_TXFELVL_Msk (0x1U << USB_OTG_GAHBCFG_TXFELVL_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 15821 #define USB_OTG_GAHBCFG_TXFELVL USB_OTG_GAHBCFG_TXFELVL_Msk /*!< TxFIFO empty level */
lypinator 0:bb348c97df44 15822 #define USB_OTG_GAHBCFG_PTXFELVL_Pos (8U)
lypinator 0:bb348c97df44 15823 #define USB_OTG_GAHBCFG_PTXFELVL_Msk (0x1U << USB_OTG_GAHBCFG_PTXFELVL_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 15824 #define USB_OTG_GAHBCFG_PTXFELVL USB_OTG_GAHBCFG_PTXFELVL_Msk /*!< Periodic TxFIFO empty level */
lypinator 0:bb348c97df44 15825
lypinator 0:bb348c97df44 15826 /******************** Bit definition for USB_OTG_GUSBCFG register ********************/
lypinator 0:bb348c97df44 15827
lypinator 0:bb348c97df44 15828 #define USB_OTG_GUSBCFG_TOCAL_Pos (0U)
lypinator 0:bb348c97df44 15829 #define USB_OTG_GUSBCFG_TOCAL_Msk (0x7U << USB_OTG_GUSBCFG_TOCAL_Pos) /*!< 0x00000007 */
lypinator 0:bb348c97df44 15830 #define USB_OTG_GUSBCFG_TOCAL USB_OTG_GUSBCFG_TOCAL_Msk /*!< FS timeout calibration */
lypinator 0:bb348c97df44 15831 #define USB_OTG_GUSBCFG_TOCAL_0 (0x1U << USB_OTG_GUSBCFG_TOCAL_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 15832 #define USB_OTG_GUSBCFG_TOCAL_1 (0x2U << USB_OTG_GUSBCFG_TOCAL_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 15833 #define USB_OTG_GUSBCFG_TOCAL_2 (0x4U << USB_OTG_GUSBCFG_TOCAL_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 15834 #define USB_OTG_GUSBCFG_PHYSEL_Pos (6U)
lypinator 0:bb348c97df44 15835 #define USB_OTG_GUSBCFG_PHYSEL_Msk (0x1U << USB_OTG_GUSBCFG_PHYSEL_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 15836 #define USB_OTG_GUSBCFG_PHYSEL USB_OTG_GUSBCFG_PHYSEL_Msk /*!< USB 2.0 high-speed ULPI PHY or USB 1.1 full-speed serial transceiver select */
lypinator 0:bb348c97df44 15837 #define USB_OTG_GUSBCFG_SRPCAP_Pos (8U)
lypinator 0:bb348c97df44 15838 #define USB_OTG_GUSBCFG_SRPCAP_Msk (0x1U << USB_OTG_GUSBCFG_SRPCAP_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 15839 #define USB_OTG_GUSBCFG_SRPCAP USB_OTG_GUSBCFG_SRPCAP_Msk /*!< SRP-capable */
lypinator 0:bb348c97df44 15840 #define USB_OTG_GUSBCFG_HNPCAP_Pos (9U)
lypinator 0:bb348c97df44 15841 #define USB_OTG_GUSBCFG_HNPCAP_Msk (0x1U << USB_OTG_GUSBCFG_HNPCAP_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 15842 #define USB_OTG_GUSBCFG_HNPCAP USB_OTG_GUSBCFG_HNPCAP_Msk /*!< HNP-capable */
lypinator 0:bb348c97df44 15843 #define USB_OTG_GUSBCFG_TRDT_Pos (10U)
lypinator 0:bb348c97df44 15844 #define USB_OTG_GUSBCFG_TRDT_Msk (0xFU << USB_OTG_GUSBCFG_TRDT_Pos) /*!< 0x00003C00 */
lypinator 0:bb348c97df44 15845 #define USB_OTG_GUSBCFG_TRDT USB_OTG_GUSBCFG_TRDT_Msk /*!< USB turnaround time */
lypinator 0:bb348c97df44 15846 #define USB_OTG_GUSBCFG_TRDT_0 (0x1U << USB_OTG_GUSBCFG_TRDT_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 15847 #define USB_OTG_GUSBCFG_TRDT_1 (0x2U << USB_OTG_GUSBCFG_TRDT_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 15848 #define USB_OTG_GUSBCFG_TRDT_2 (0x4U << USB_OTG_GUSBCFG_TRDT_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 15849 #define USB_OTG_GUSBCFG_TRDT_3 (0x8U << USB_OTG_GUSBCFG_TRDT_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 15850 #define USB_OTG_GUSBCFG_PHYLPCS_Pos (15U)
lypinator 0:bb348c97df44 15851 #define USB_OTG_GUSBCFG_PHYLPCS_Msk (0x1U << USB_OTG_GUSBCFG_PHYLPCS_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 15852 #define USB_OTG_GUSBCFG_PHYLPCS USB_OTG_GUSBCFG_PHYLPCS_Msk /*!< PHY Low-power clock select */
lypinator 0:bb348c97df44 15853 #define USB_OTG_GUSBCFG_ULPIFSLS_Pos (17U)
lypinator 0:bb348c97df44 15854 #define USB_OTG_GUSBCFG_ULPIFSLS_Msk (0x1U << USB_OTG_GUSBCFG_ULPIFSLS_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 15855 #define USB_OTG_GUSBCFG_ULPIFSLS USB_OTG_GUSBCFG_ULPIFSLS_Msk /*!< ULPI FS/LS select */
lypinator 0:bb348c97df44 15856 #define USB_OTG_GUSBCFG_ULPIAR_Pos (18U)
lypinator 0:bb348c97df44 15857 #define USB_OTG_GUSBCFG_ULPIAR_Msk (0x1U << USB_OTG_GUSBCFG_ULPIAR_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 15858 #define USB_OTG_GUSBCFG_ULPIAR USB_OTG_GUSBCFG_ULPIAR_Msk /*!< ULPI Auto-resume */
lypinator 0:bb348c97df44 15859 #define USB_OTG_GUSBCFG_ULPICSM_Pos (19U)
lypinator 0:bb348c97df44 15860 #define USB_OTG_GUSBCFG_ULPICSM_Msk (0x1U << USB_OTG_GUSBCFG_ULPICSM_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 15861 #define USB_OTG_GUSBCFG_ULPICSM USB_OTG_GUSBCFG_ULPICSM_Msk /*!< ULPI Clock SuspendM */
lypinator 0:bb348c97df44 15862 #define USB_OTG_GUSBCFG_ULPIEVBUSD_Pos (20U)
lypinator 0:bb348c97df44 15863 #define USB_OTG_GUSBCFG_ULPIEVBUSD_Msk (0x1U << USB_OTG_GUSBCFG_ULPIEVBUSD_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 15864 #define USB_OTG_GUSBCFG_ULPIEVBUSD USB_OTG_GUSBCFG_ULPIEVBUSD_Msk /*!< ULPI External VBUS Drive */
lypinator 0:bb348c97df44 15865 #define USB_OTG_GUSBCFG_ULPIEVBUSI_Pos (21U)
lypinator 0:bb348c97df44 15866 #define USB_OTG_GUSBCFG_ULPIEVBUSI_Msk (0x1U << USB_OTG_GUSBCFG_ULPIEVBUSI_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 15867 #define USB_OTG_GUSBCFG_ULPIEVBUSI USB_OTG_GUSBCFG_ULPIEVBUSI_Msk /*!< ULPI external VBUS indicator */
lypinator 0:bb348c97df44 15868 #define USB_OTG_GUSBCFG_TSDPS_Pos (22U)
lypinator 0:bb348c97df44 15869 #define USB_OTG_GUSBCFG_TSDPS_Msk (0x1U << USB_OTG_GUSBCFG_TSDPS_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 15870 #define USB_OTG_GUSBCFG_TSDPS USB_OTG_GUSBCFG_TSDPS_Msk /*!< TermSel DLine pulsing selection */
lypinator 0:bb348c97df44 15871 #define USB_OTG_GUSBCFG_PCCI_Pos (23U)
lypinator 0:bb348c97df44 15872 #define USB_OTG_GUSBCFG_PCCI_Msk (0x1U << USB_OTG_GUSBCFG_PCCI_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 15873 #define USB_OTG_GUSBCFG_PCCI USB_OTG_GUSBCFG_PCCI_Msk /*!< Indicator complement */
lypinator 0:bb348c97df44 15874 #define USB_OTG_GUSBCFG_PTCI_Pos (24U)
lypinator 0:bb348c97df44 15875 #define USB_OTG_GUSBCFG_PTCI_Msk (0x1U << USB_OTG_GUSBCFG_PTCI_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 15876 #define USB_OTG_GUSBCFG_PTCI USB_OTG_GUSBCFG_PTCI_Msk /*!< Indicator pass through */
lypinator 0:bb348c97df44 15877 #define USB_OTG_GUSBCFG_ULPIIPD_Pos (25U)
lypinator 0:bb348c97df44 15878 #define USB_OTG_GUSBCFG_ULPIIPD_Msk (0x1U << USB_OTG_GUSBCFG_ULPIIPD_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 15879 #define USB_OTG_GUSBCFG_ULPIIPD USB_OTG_GUSBCFG_ULPIIPD_Msk /*!< ULPI interface protect disable */
lypinator 0:bb348c97df44 15880 #define USB_OTG_GUSBCFG_FHMOD_Pos (29U)
lypinator 0:bb348c97df44 15881 #define USB_OTG_GUSBCFG_FHMOD_Msk (0x1U << USB_OTG_GUSBCFG_FHMOD_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 15882 #define USB_OTG_GUSBCFG_FHMOD USB_OTG_GUSBCFG_FHMOD_Msk /*!< Forced host mode */
lypinator 0:bb348c97df44 15883 #define USB_OTG_GUSBCFG_FDMOD_Pos (30U)
lypinator 0:bb348c97df44 15884 #define USB_OTG_GUSBCFG_FDMOD_Msk (0x1U << USB_OTG_GUSBCFG_FDMOD_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 15885 #define USB_OTG_GUSBCFG_FDMOD USB_OTG_GUSBCFG_FDMOD_Msk /*!< Forced peripheral mode */
lypinator 0:bb348c97df44 15886 #define USB_OTG_GUSBCFG_CTXPKT_Pos (31U)
lypinator 0:bb348c97df44 15887 #define USB_OTG_GUSBCFG_CTXPKT_Msk (0x1U << USB_OTG_GUSBCFG_CTXPKT_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 15888 #define USB_OTG_GUSBCFG_CTXPKT USB_OTG_GUSBCFG_CTXPKT_Msk /*!< Corrupt Tx packet */
lypinator 0:bb348c97df44 15889
lypinator 0:bb348c97df44 15890 /******************** Bit definition for USB_OTG_GRSTCTL register ********************/
lypinator 0:bb348c97df44 15891 #define USB_OTG_GRSTCTL_CSRST_Pos (0U)
lypinator 0:bb348c97df44 15892 #define USB_OTG_GRSTCTL_CSRST_Msk (0x1U << USB_OTG_GRSTCTL_CSRST_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 15893 #define USB_OTG_GRSTCTL_CSRST USB_OTG_GRSTCTL_CSRST_Msk /*!< Core soft reset */
lypinator 0:bb348c97df44 15894 #define USB_OTG_GRSTCTL_HSRST_Pos (1U)
lypinator 0:bb348c97df44 15895 #define USB_OTG_GRSTCTL_HSRST_Msk (0x1U << USB_OTG_GRSTCTL_HSRST_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 15896 #define USB_OTG_GRSTCTL_HSRST USB_OTG_GRSTCTL_HSRST_Msk /*!< HCLK soft reset */
lypinator 0:bb348c97df44 15897 #define USB_OTG_GRSTCTL_FCRST_Pos (2U)
lypinator 0:bb348c97df44 15898 #define USB_OTG_GRSTCTL_FCRST_Msk (0x1U << USB_OTG_GRSTCTL_FCRST_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 15899 #define USB_OTG_GRSTCTL_FCRST USB_OTG_GRSTCTL_FCRST_Msk /*!< Host frame counter reset */
lypinator 0:bb348c97df44 15900 #define USB_OTG_GRSTCTL_RXFFLSH_Pos (4U)
lypinator 0:bb348c97df44 15901 #define USB_OTG_GRSTCTL_RXFFLSH_Msk (0x1U << USB_OTG_GRSTCTL_RXFFLSH_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 15902 #define USB_OTG_GRSTCTL_RXFFLSH USB_OTG_GRSTCTL_RXFFLSH_Msk /*!< RxFIFO flush */
lypinator 0:bb348c97df44 15903 #define USB_OTG_GRSTCTL_TXFFLSH_Pos (5U)
lypinator 0:bb348c97df44 15904 #define USB_OTG_GRSTCTL_TXFFLSH_Msk (0x1U << USB_OTG_GRSTCTL_TXFFLSH_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 15905 #define USB_OTG_GRSTCTL_TXFFLSH USB_OTG_GRSTCTL_TXFFLSH_Msk /*!< TxFIFO flush */
lypinator 0:bb348c97df44 15906
lypinator 0:bb348c97df44 15907
lypinator 0:bb348c97df44 15908 #define USB_OTG_GRSTCTL_TXFNUM_Pos (6U)
lypinator 0:bb348c97df44 15909 #define USB_OTG_GRSTCTL_TXFNUM_Msk (0x1FU << USB_OTG_GRSTCTL_TXFNUM_Pos) /*!< 0x000007C0 */
lypinator 0:bb348c97df44 15910 #define USB_OTG_GRSTCTL_TXFNUM USB_OTG_GRSTCTL_TXFNUM_Msk /*!< TxFIFO number */
lypinator 0:bb348c97df44 15911 #define USB_OTG_GRSTCTL_TXFNUM_0 (0x01U << USB_OTG_GRSTCTL_TXFNUM_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 15912 #define USB_OTG_GRSTCTL_TXFNUM_1 (0x02U << USB_OTG_GRSTCTL_TXFNUM_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 15913 #define USB_OTG_GRSTCTL_TXFNUM_2 (0x04U << USB_OTG_GRSTCTL_TXFNUM_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 15914 #define USB_OTG_GRSTCTL_TXFNUM_3 (0x08U << USB_OTG_GRSTCTL_TXFNUM_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 15915 #define USB_OTG_GRSTCTL_TXFNUM_4 (0x10U << USB_OTG_GRSTCTL_TXFNUM_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 15916 #define USB_OTG_GRSTCTL_DMAREQ_Pos (30U)
lypinator 0:bb348c97df44 15917 #define USB_OTG_GRSTCTL_DMAREQ_Msk (0x1U << USB_OTG_GRSTCTL_DMAREQ_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 15918 #define USB_OTG_GRSTCTL_DMAREQ USB_OTG_GRSTCTL_DMAREQ_Msk /*!< DMA request signal */
lypinator 0:bb348c97df44 15919 #define USB_OTG_GRSTCTL_AHBIDL_Pos (31U)
lypinator 0:bb348c97df44 15920 #define USB_OTG_GRSTCTL_AHBIDL_Msk (0x1U << USB_OTG_GRSTCTL_AHBIDL_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 15921 #define USB_OTG_GRSTCTL_AHBIDL USB_OTG_GRSTCTL_AHBIDL_Msk /*!< AHB master idle */
lypinator 0:bb348c97df44 15922
lypinator 0:bb348c97df44 15923 /******************** Bit definition for USB_OTG_DIEPMSK register ********************/
lypinator 0:bb348c97df44 15924 #define USB_OTG_DIEPMSK_XFRCM_Pos (0U)
lypinator 0:bb348c97df44 15925 #define USB_OTG_DIEPMSK_XFRCM_Msk (0x1U << USB_OTG_DIEPMSK_XFRCM_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 15926 #define USB_OTG_DIEPMSK_XFRCM USB_OTG_DIEPMSK_XFRCM_Msk /*!< Transfer completed interrupt mask */
lypinator 0:bb348c97df44 15927 #define USB_OTG_DIEPMSK_EPDM_Pos (1U)
lypinator 0:bb348c97df44 15928 #define USB_OTG_DIEPMSK_EPDM_Msk (0x1U << USB_OTG_DIEPMSK_EPDM_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 15929 #define USB_OTG_DIEPMSK_EPDM USB_OTG_DIEPMSK_EPDM_Msk /*!< Endpoint disabled interrupt mask */
lypinator 0:bb348c97df44 15930 #define USB_OTG_DIEPMSK_TOM_Pos (3U)
lypinator 0:bb348c97df44 15931 #define USB_OTG_DIEPMSK_TOM_Msk (0x1U << USB_OTG_DIEPMSK_TOM_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 15932 #define USB_OTG_DIEPMSK_TOM USB_OTG_DIEPMSK_TOM_Msk /*!< Timeout condition mask (nonisochronous endpoints) */
lypinator 0:bb348c97df44 15933 #define USB_OTG_DIEPMSK_ITTXFEMSK_Pos (4U)
lypinator 0:bb348c97df44 15934 #define USB_OTG_DIEPMSK_ITTXFEMSK_Msk (0x1U << USB_OTG_DIEPMSK_ITTXFEMSK_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 15935 #define USB_OTG_DIEPMSK_ITTXFEMSK USB_OTG_DIEPMSK_ITTXFEMSK_Msk /*!< IN token received when TxFIFO empty mask */
lypinator 0:bb348c97df44 15936 #define USB_OTG_DIEPMSK_INEPNMM_Pos (5U)
lypinator 0:bb348c97df44 15937 #define USB_OTG_DIEPMSK_INEPNMM_Msk (0x1U << USB_OTG_DIEPMSK_INEPNMM_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 15938 #define USB_OTG_DIEPMSK_INEPNMM USB_OTG_DIEPMSK_INEPNMM_Msk /*!< IN token received with EP mismatch mask */
lypinator 0:bb348c97df44 15939 #define USB_OTG_DIEPMSK_INEPNEM_Pos (6U)
lypinator 0:bb348c97df44 15940 #define USB_OTG_DIEPMSK_INEPNEM_Msk (0x1U << USB_OTG_DIEPMSK_INEPNEM_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 15941 #define USB_OTG_DIEPMSK_INEPNEM USB_OTG_DIEPMSK_INEPNEM_Msk /*!< IN endpoint NAK effective mask */
lypinator 0:bb348c97df44 15942 #define USB_OTG_DIEPMSK_TXFURM_Pos (8U)
lypinator 0:bb348c97df44 15943 #define USB_OTG_DIEPMSK_TXFURM_Msk (0x1U << USB_OTG_DIEPMSK_TXFURM_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 15944 #define USB_OTG_DIEPMSK_TXFURM USB_OTG_DIEPMSK_TXFURM_Msk /*!< FIFO underrun mask */
lypinator 0:bb348c97df44 15945 #define USB_OTG_DIEPMSK_BIM_Pos (9U)
lypinator 0:bb348c97df44 15946 #define USB_OTG_DIEPMSK_BIM_Msk (0x1U << USB_OTG_DIEPMSK_BIM_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 15947 #define USB_OTG_DIEPMSK_BIM USB_OTG_DIEPMSK_BIM_Msk /*!< BNA interrupt mask */
lypinator 0:bb348c97df44 15948
lypinator 0:bb348c97df44 15949 /******************** Bit definition for USB_OTG_HPTXSTS register ********************/
lypinator 0:bb348c97df44 15950 #define USB_OTG_HPTXSTS_PTXFSAVL_Pos (0U)
lypinator 0:bb348c97df44 15951 #define USB_OTG_HPTXSTS_PTXFSAVL_Msk (0xFFFFU << USB_OTG_HPTXSTS_PTXFSAVL_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 15952 #define USB_OTG_HPTXSTS_PTXFSAVL USB_OTG_HPTXSTS_PTXFSAVL_Msk /*!< Periodic transmit data FIFO space available */
lypinator 0:bb348c97df44 15953 #define USB_OTG_HPTXSTS_PTXQSAV_Pos (16U)
lypinator 0:bb348c97df44 15954 #define USB_OTG_HPTXSTS_PTXQSAV_Msk (0xFFU << USB_OTG_HPTXSTS_PTXQSAV_Pos) /*!< 0x00FF0000 */
lypinator 0:bb348c97df44 15955 #define USB_OTG_HPTXSTS_PTXQSAV USB_OTG_HPTXSTS_PTXQSAV_Msk /*!< Periodic transmit request queue space available */
lypinator 0:bb348c97df44 15956 #define USB_OTG_HPTXSTS_PTXQSAV_0 (0x01U << USB_OTG_HPTXSTS_PTXQSAV_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 15957 #define USB_OTG_HPTXSTS_PTXQSAV_1 (0x02U << USB_OTG_HPTXSTS_PTXQSAV_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 15958 #define USB_OTG_HPTXSTS_PTXQSAV_2 (0x04U << USB_OTG_HPTXSTS_PTXQSAV_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 15959 #define USB_OTG_HPTXSTS_PTXQSAV_3 (0x08U << USB_OTG_HPTXSTS_PTXQSAV_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 15960 #define USB_OTG_HPTXSTS_PTXQSAV_4 (0x10U << USB_OTG_HPTXSTS_PTXQSAV_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 15961 #define USB_OTG_HPTXSTS_PTXQSAV_5 (0x20U << USB_OTG_HPTXSTS_PTXQSAV_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 15962 #define USB_OTG_HPTXSTS_PTXQSAV_6 (0x40U << USB_OTG_HPTXSTS_PTXQSAV_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 15963 #define USB_OTG_HPTXSTS_PTXQSAV_7 (0x80U << USB_OTG_HPTXSTS_PTXQSAV_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 15964
lypinator 0:bb348c97df44 15965 #define USB_OTG_HPTXSTS_PTXQTOP_Pos (24U)
lypinator 0:bb348c97df44 15966 #define USB_OTG_HPTXSTS_PTXQTOP_Msk (0xFFU << USB_OTG_HPTXSTS_PTXQTOP_Pos) /*!< 0xFF000000 */
lypinator 0:bb348c97df44 15967 #define USB_OTG_HPTXSTS_PTXQTOP USB_OTG_HPTXSTS_PTXQTOP_Msk /*!< Top of the periodic transmit request queue */
lypinator 0:bb348c97df44 15968 #define USB_OTG_HPTXSTS_PTXQTOP_0 (0x01U << USB_OTG_HPTXSTS_PTXQTOP_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 15969 #define USB_OTG_HPTXSTS_PTXQTOP_1 (0x02U << USB_OTG_HPTXSTS_PTXQTOP_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 15970 #define USB_OTG_HPTXSTS_PTXQTOP_2 (0x04U << USB_OTG_HPTXSTS_PTXQTOP_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 15971 #define USB_OTG_HPTXSTS_PTXQTOP_3 (0x08U << USB_OTG_HPTXSTS_PTXQTOP_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 15972 #define USB_OTG_HPTXSTS_PTXQTOP_4 (0x10U << USB_OTG_HPTXSTS_PTXQTOP_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 15973 #define USB_OTG_HPTXSTS_PTXQTOP_5 (0x20U << USB_OTG_HPTXSTS_PTXQTOP_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 15974 #define USB_OTG_HPTXSTS_PTXQTOP_6 (0x40U << USB_OTG_HPTXSTS_PTXQTOP_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 15975 #define USB_OTG_HPTXSTS_PTXQTOP_7 (0x80U << USB_OTG_HPTXSTS_PTXQTOP_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 15976
lypinator 0:bb348c97df44 15977 /******************** Bit definition for USB_OTG_HAINT register ********************/
lypinator 0:bb348c97df44 15978 #define USB_OTG_HAINT_HAINT_Pos (0U)
lypinator 0:bb348c97df44 15979 #define USB_OTG_HAINT_HAINT_Msk (0xFFFFU << USB_OTG_HAINT_HAINT_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 15980 #define USB_OTG_HAINT_HAINT USB_OTG_HAINT_HAINT_Msk /*!< Channel interrupts */
lypinator 0:bb348c97df44 15981
lypinator 0:bb348c97df44 15982 /******************** Bit definition for USB_OTG_DOEPMSK register ********************/
lypinator 0:bb348c97df44 15983 #define USB_OTG_DOEPMSK_XFRCM_Pos (0U)
lypinator 0:bb348c97df44 15984 #define USB_OTG_DOEPMSK_XFRCM_Msk (0x1U << USB_OTG_DOEPMSK_XFRCM_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 15985 #define USB_OTG_DOEPMSK_XFRCM USB_OTG_DOEPMSK_XFRCM_Msk /*!< Transfer completed interrupt mask */
lypinator 0:bb348c97df44 15986 #define USB_OTG_DOEPMSK_EPDM_Pos (1U)
lypinator 0:bb348c97df44 15987 #define USB_OTG_DOEPMSK_EPDM_Msk (0x1U << USB_OTG_DOEPMSK_EPDM_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 15988 #define USB_OTG_DOEPMSK_EPDM USB_OTG_DOEPMSK_EPDM_Msk /*!< Endpoint disabled interrupt mask */
lypinator 0:bb348c97df44 15989 #define USB_OTG_DOEPMSK_STUPM_Pos (3U)
lypinator 0:bb348c97df44 15990 #define USB_OTG_DOEPMSK_STUPM_Msk (0x1U << USB_OTG_DOEPMSK_STUPM_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 15991 #define USB_OTG_DOEPMSK_STUPM USB_OTG_DOEPMSK_STUPM_Msk /*!< SETUP phase done mask */
lypinator 0:bb348c97df44 15992 #define USB_OTG_DOEPMSK_OTEPDM_Pos (4U)
lypinator 0:bb348c97df44 15993 #define USB_OTG_DOEPMSK_OTEPDM_Msk (0x1U << USB_OTG_DOEPMSK_OTEPDM_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 15994 #define USB_OTG_DOEPMSK_OTEPDM USB_OTG_DOEPMSK_OTEPDM_Msk /*!< OUT token received when endpoint disabled mask */
lypinator 0:bb348c97df44 15995 #define USB_OTG_DOEPMSK_B2BSTUP_Pos (6U)
lypinator 0:bb348c97df44 15996 #define USB_OTG_DOEPMSK_B2BSTUP_Msk (0x1U << USB_OTG_DOEPMSK_B2BSTUP_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 15997 #define USB_OTG_DOEPMSK_B2BSTUP USB_OTG_DOEPMSK_B2BSTUP_Msk /*!< Back-to-back SETUP packets received mask */
lypinator 0:bb348c97df44 15998 #define USB_OTG_DOEPMSK_OPEM_Pos (8U)
lypinator 0:bb348c97df44 15999 #define USB_OTG_DOEPMSK_OPEM_Msk (0x1U << USB_OTG_DOEPMSK_OPEM_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 16000 #define USB_OTG_DOEPMSK_OPEM USB_OTG_DOEPMSK_OPEM_Msk /*!< OUT packet error mask */
lypinator 0:bb348c97df44 16001 #define USB_OTG_DOEPMSK_BOIM_Pos (9U)
lypinator 0:bb348c97df44 16002 #define USB_OTG_DOEPMSK_BOIM_Msk (0x1U << USB_OTG_DOEPMSK_BOIM_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 16003 #define USB_OTG_DOEPMSK_BOIM USB_OTG_DOEPMSK_BOIM_Msk /*!< BNA interrupt mask */
lypinator 0:bb348c97df44 16004
lypinator 0:bb348c97df44 16005 /******************** Bit definition for USB_OTG_GINTSTS register ********************/
lypinator 0:bb348c97df44 16006 #define USB_OTG_GINTSTS_CMOD_Pos (0U)
lypinator 0:bb348c97df44 16007 #define USB_OTG_GINTSTS_CMOD_Msk (0x1U << USB_OTG_GINTSTS_CMOD_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 16008 #define USB_OTG_GINTSTS_CMOD USB_OTG_GINTSTS_CMOD_Msk /*!< Current mode of operation */
lypinator 0:bb348c97df44 16009 #define USB_OTG_GINTSTS_MMIS_Pos (1U)
lypinator 0:bb348c97df44 16010 #define USB_OTG_GINTSTS_MMIS_Msk (0x1U << USB_OTG_GINTSTS_MMIS_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 16011 #define USB_OTG_GINTSTS_MMIS USB_OTG_GINTSTS_MMIS_Msk /*!< Mode mismatch interrupt */
lypinator 0:bb348c97df44 16012 #define USB_OTG_GINTSTS_OTGINT_Pos (2U)
lypinator 0:bb348c97df44 16013 #define USB_OTG_GINTSTS_OTGINT_Msk (0x1U << USB_OTG_GINTSTS_OTGINT_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 16014 #define USB_OTG_GINTSTS_OTGINT USB_OTG_GINTSTS_OTGINT_Msk /*!< OTG interrupt */
lypinator 0:bb348c97df44 16015 #define USB_OTG_GINTSTS_SOF_Pos (3U)
lypinator 0:bb348c97df44 16016 #define USB_OTG_GINTSTS_SOF_Msk (0x1U << USB_OTG_GINTSTS_SOF_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 16017 #define USB_OTG_GINTSTS_SOF USB_OTG_GINTSTS_SOF_Msk /*!< Start of frame */
lypinator 0:bb348c97df44 16018 #define USB_OTG_GINTSTS_RXFLVL_Pos (4U)
lypinator 0:bb348c97df44 16019 #define USB_OTG_GINTSTS_RXFLVL_Msk (0x1U << USB_OTG_GINTSTS_RXFLVL_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 16020 #define USB_OTG_GINTSTS_RXFLVL USB_OTG_GINTSTS_RXFLVL_Msk /*!< RxFIFO nonempty */
lypinator 0:bb348c97df44 16021 #define USB_OTG_GINTSTS_NPTXFE_Pos (5U)
lypinator 0:bb348c97df44 16022 #define USB_OTG_GINTSTS_NPTXFE_Msk (0x1U << USB_OTG_GINTSTS_NPTXFE_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 16023 #define USB_OTG_GINTSTS_NPTXFE USB_OTG_GINTSTS_NPTXFE_Msk /*!< Nonperiodic TxFIFO empty */
lypinator 0:bb348c97df44 16024 #define USB_OTG_GINTSTS_GINAKEFF_Pos (6U)
lypinator 0:bb348c97df44 16025 #define USB_OTG_GINTSTS_GINAKEFF_Msk (0x1U << USB_OTG_GINTSTS_GINAKEFF_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 16026 #define USB_OTG_GINTSTS_GINAKEFF USB_OTG_GINTSTS_GINAKEFF_Msk /*!< Global IN nonperiodic NAK effective */
lypinator 0:bb348c97df44 16027 #define USB_OTG_GINTSTS_BOUTNAKEFF_Pos (7U)
lypinator 0:bb348c97df44 16028 #define USB_OTG_GINTSTS_BOUTNAKEFF_Msk (0x1U << USB_OTG_GINTSTS_BOUTNAKEFF_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 16029 #define USB_OTG_GINTSTS_BOUTNAKEFF USB_OTG_GINTSTS_BOUTNAKEFF_Msk /*!< Global OUT NAK effective */
lypinator 0:bb348c97df44 16030 #define USB_OTG_GINTSTS_ESUSP_Pos (10U)
lypinator 0:bb348c97df44 16031 #define USB_OTG_GINTSTS_ESUSP_Msk (0x1U << USB_OTG_GINTSTS_ESUSP_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 16032 #define USB_OTG_GINTSTS_ESUSP USB_OTG_GINTSTS_ESUSP_Msk /*!< Early suspend */
lypinator 0:bb348c97df44 16033 #define USB_OTG_GINTSTS_USBSUSP_Pos (11U)
lypinator 0:bb348c97df44 16034 #define USB_OTG_GINTSTS_USBSUSP_Msk (0x1U << USB_OTG_GINTSTS_USBSUSP_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 16035 #define USB_OTG_GINTSTS_USBSUSP USB_OTG_GINTSTS_USBSUSP_Msk /*!< USB suspend */
lypinator 0:bb348c97df44 16036 #define USB_OTG_GINTSTS_USBRST_Pos (12U)
lypinator 0:bb348c97df44 16037 #define USB_OTG_GINTSTS_USBRST_Msk (0x1U << USB_OTG_GINTSTS_USBRST_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 16038 #define USB_OTG_GINTSTS_USBRST USB_OTG_GINTSTS_USBRST_Msk /*!< USB reset */
lypinator 0:bb348c97df44 16039 #define USB_OTG_GINTSTS_ENUMDNE_Pos (13U)
lypinator 0:bb348c97df44 16040 #define USB_OTG_GINTSTS_ENUMDNE_Msk (0x1U << USB_OTG_GINTSTS_ENUMDNE_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 16041 #define USB_OTG_GINTSTS_ENUMDNE USB_OTG_GINTSTS_ENUMDNE_Msk /*!< Enumeration done */
lypinator 0:bb348c97df44 16042 #define USB_OTG_GINTSTS_ISOODRP_Pos (14U)
lypinator 0:bb348c97df44 16043 #define USB_OTG_GINTSTS_ISOODRP_Msk (0x1U << USB_OTG_GINTSTS_ISOODRP_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 16044 #define USB_OTG_GINTSTS_ISOODRP USB_OTG_GINTSTS_ISOODRP_Msk /*!< Isochronous OUT packet dropped interrupt */
lypinator 0:bb348c97df44 16045 #define USB_OTG_GINTSTS_EOPF_Pos (15U)
lypinator 0:bb348c97df44 16046 #define USB_OTG_GINTSTS_EOPF_Msk (0x1U << USB_OTG_GINTSTS_EOPF_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 16047 #define USB_OTG_GINTSTS_EOPF USB_OTG_GINTSTS_EOPF_Msk /*!< End of periodic frame interrupt */
lypinator 0:bb348c97df44 16048 #define USB_OTG_GINTSTS_IEPINT_Pos (18U)
lypinator 0:bb348c97df44 16049 #define USB_OTG_GINTSTS_IEPINT_Msk (0x1U << USB_OTG_GINTSTS_IEPINT_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 16050 #define USB_OTG_GINTSTS_IEPINT USB_OTG_GINTSTS_IEPINT_Msk /*!< IN endpoint interrupt */
lypinator 0:bb348c97df44 16051 #define USB_OTG_GINTSTS_OEPINT_Pos (19U)
lypinator 0:bb348c97df44 16052 #define USB_OTG_GINTSTS_OEPINT_Msk (0x1U << USB_OTG_GINTSTS_OEPINT_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 16053 #define USB_OTG_GINTSTS_OEPINT USB_OTG_GINTSTS_OEPINT_Msk /*!< OUT endpoint interrupt */
lypinator 0:bb348c97df44 16054 #define USB_OTG_GINTSTS_IISOIXFR_Pos (20U)
lypinator 0:bb348c97df44 16055 #define USB_OTG_GINTSTS_IISOIXFR_Msk (0x1U << USB_OTG_GINTSTS_IISOIXFR_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 16056 #define USB_OTG_GINTSTS_IISOIXFR USB_OTG_GINTSTS_IISOIXFR_Msk /*!< Incomplete isochronous IN transfer */
lypinator 0:bb348c97df44 16057 #define USB_OTG_GINTSTS_PXFR_INCOMPISOOUT_Pos (21U)
lypinator 0:bb348c97df44 16058 #define USB_OTG_GINTSTS_PXFR_INCOMPISOOUT_Msk (0x1U << USB_OTG_GINTSTS_PXFR_INCOMPISOOUT_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 16059 #define USB_OTG_GINTSTS_PXFR_INCOMPISOOUT USB_OTG_GINTSTS_PXFR_INCOMPISOOUT_Msk /*!< Incomplete periodic transfer */
lypinator 0:bb348c97df44 16060 #define USB_OTG_GINTSTS_DATAFSUSP_Pos (22U)
lypinator 0:bb348c97df44 16061 #define USB_OTG_GINTSTS_DATAFSUSP_Msk (0x1U << USB_OTG_GINTSTS_DATAFSUSP_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 16062 #define USB_OTG_GINTSTS_DATAFSUSP USB_OTG_GINTSTS_DATAFSUSP_Msk /*!< Data fetch suspended */
lypinator 0:bb348c97df44 16063 #define USB_OTG_GINTSTS_HPRTINT_Pos (24U)
lypinator 0:bb348c97df44 16064 #define USB_OTG_GINTSTS_HPRTINT_Msk (0x1U << USB_OTG_GINTSTS_HPRTINT_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 16065 #define USB_OTG_GINTSTS_HPRTINT USB_OTG_GINTSTS_HPRTINT_Msk /*!< Host port interrupt */
lypinator 0:bb348c97df44 16066 #define USB_OTG_GINTSTS_HCINT_Pos (25U)
lypinator 0:bb348c97df44 16067 #define USB_OTG_GINTSTS_HCINT_Msk (0x1U << USB_OTG_GINTSTS_HCINT_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 16068 #define USB_OTG_GINTSTS_HCINT USB_OTG_GINTSTS_HCINT_Msk /*!< Host channels interrupt */
lypinator 0:bb348c97df44 16069 #define USB_OTG_GINTSTS_PTXFE_Pos (26U)
lypinator 0:bb348c97df44 16070 #define USB_OTG_GINTSTS_PTXFE_Msk (0x1U << USB_OTG_GINTSTS_PTXFE_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 16071 #define USB_OTG_GINTSTS_PTXFE USB_OTG_GINTSTS_PTXFE_Msk /*!< Periodic TxFIFO empty */
lypinator 0:bb348c97df44 16072 #define USB_OTG_GINTSTS_CIDSCHG_Pos (28U)
lypinator 0:bb348c97df44 16073 #define USB_OTG_GINTSTS_CIDSCHG_Msk (0x1U << USB_OTG_GINTSTS_CIDSCHG_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 16074 #define USB_OTG_GINTSTS_CIDSCHG USB_OTG_GINTSTS_CIDSCHG_Msk /*!< Connector ID status change */
lypinator 0:bb348c97df44 16075 #define USB_OTG_GINTSTS_DISCINT_Pos (29U)
lypinator 0:bb348c97df44 16076 #define USB_OTG_GINTSTS_DISCINT_Msk (0x1U << USB_OTG_GINTSTS_DISCINT_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 16077 #define USB_OTG_GINTSTS_DISCINT USB_OTG_GINTSTS_DISCINT_Msk /*!< Disconnect detected interrupt */
lypinator 0:bb348c97df44 16078 #define USB_OTG_GINTSTS_SRQINT_Pos (30U)
lypinator 0:bb348c97df44 16079 #define USB_OTG_GINTSTS_SRQINT_Msk (0x1U << USB_OTG_GINTSTS_SRQINT_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 16080 #define USB_OTG_GINTSTS_SRQINT USB_OTG_GINTSTS_SRQINT_Msk /*!< Session request/new session detected interrupt */
lypinator 0:bb348c97df44 16081 #define USB_OTG_GINTSTS_WKUINT_Pos (31U)
lypinator 0:bb348c97df44 16082 #define USB_OTG_GINTSTS_WKUINT_Msk (0x1U << USB_OTG_GINTSTS_WKUINT_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 16083 #define USB_OTG_GINTSTS_WKUINT USB_OTG_GINTSTS_WKUINT_Msk /*!< Resume/remote wakeup detected interrupt */
lypinator 0:bb348c97df44 16084
lypinator 0:bb348c97df44 16085 /******************** Bit definition for USB_OTG_GINTMSK register ********************/
lypinator 0:bb348c97df44 16086 #define USB_OTG_GINTMSK_MMISM_Pos (1U)
lypinator 0:bb348c97df44 16087 #define USB_OTG_GINTMSK_MMISM_Msk (0x1U << USB_OTG_GINTMSK_MMISM_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 16088 #define USB_OTG_GINTMSK_MMISM USB_OTG_GINTMSK_MMISM_Msk /*!< Mode mismatch interrupt mask */
lypinator 0:bb348c97df44 16089 #define USB_OTG_GINTMSK_OTGINT_Pos (2U)
lypinator 0:bb348c97df44 16090 #define USB_OTG_GINTMSK_OTGINT_Msk (0x1U << USB_OTG_GINTMSK_OTGINT_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 16091 #define USB_OTG_GINTMSK_OTGINT USB_OTG_GINTMSK_OTGINT_Msk /*!< OTG interrupt mask */
lypinator 0:bb348c97df44 16092 #define USB_OTG_GINTMSK_SOFM_Pos (3U)
lypinator 0:bb348c97df44 16093 #define USB_OTG_GINTMSK_SOFM_Msk (0x1U << USB_OTG_GINTMSK_SOFM_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 16094 #define USB_OTG_GINTMSK_SOFM USB_OTG_GINTMSK_SOFM_Msk /*!< Start of frame mask */
lypinator 0:bb348c97df44 16095 #define USB_OTG_GINTMSK_RXFLVLM_Pos (4U)
lypinator 0:bb348c97df44 16096 #define USB_OTG_GINTMSK_RXFLVLM_Msk (0x1U << USB_OTG_GINTMSK_RXFLVLM_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 16097 #define USB_OTG_GINTMSK_RXFLVLM USB_OTG_GINTMSK_RXFLVLM_Msk /*!< Receive FIFO nonempty mask */
lypinator 0:bb348c97df44 16098 #define USB_OTG_GINTMSK_NPTXFEM_Pos (5U)
lypinator 0:bb348c97df44 16099 #define USB_OTG_GINTMSK_NPTXFEM_Msk (0x1U << USB_OTG_GINTMSK_NPTXFEM_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 16100 #define USB_OTG_GINTMSK_NPTXFEM USB_OTG_GINTMSK_NPTXFEM_Msk /*!< Nonperiodic TxFIFO empty mask */
lypinator 0:bb348c97df44 16101 #define USB_OTG_GINTMSK_GINAKEFFM_Pos (6U)
lypinator 0:bb348c97df44 16102 #define USB_OTG_GINTMSK_GINAKEFFM_Msk (0x1U << USB_OTG_GINTMSK_GINAKEFFM_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 16103 #define USB_OTG_GINTMSK_GINAKEFFM USB_OTG_GINTMSK_GINAKEFFM_Msk /*!< Global nonperiodic IN NAK effective mask */
lypinator 0:bb348c97df44 16104 #define USB_OTG_GINTMSK_GONAKEFFM_Pos (7U)
lypinator 0:bb348c97df44 16105 #define USB_OTG_GINTMSK_GONAKEFFM_Msk (0x1U << USB_OTG_GINTMSK_GONAKEFFM_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 16106 #define USB_OTG_GINTMSK_GONAKEFFM USB_OTG_GINTMSK_GONAKEFFM_Msk /*!< Global OUT NAK effective mask */
lypinator 0:bb348c97df44 16107 #define USB_OTG_GINTMSK_ESUSPM_Pos (10U)
lypinator 0:bb348c97df44 16108 #define USB_OTG_GINTMSK_ESUSPM_Msk (0x1U << USB_OTG_GINTMSK_ESUSPM_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 16109 #define USB_OTG_GINTMSK_ESUSPM USB_OTG_GINTMSK_ESUSPM_Msk /*!< Early suspend mask */
lypinator 0:bb348c97df44 16110 #define USB_OTG_GINTMSK_USBSUSPM_Pos (11U)
lypinator 0:bb348c97df44 16111 #define USB_OTG_GINTMSK_USBSUSPM_Msk (0x1U << USB_OTG_GINTMSK_USBSUSPM_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 16112 #define USB_OTG_GINTMSK_USBSUSPM USB_OTG_GINTMSK_USBSUSPM_Msk /*!< USB suspend mask */
lypinator 0:bb348c97df44 16113 #define USB_OTG_GINTMSK_USBRST_Pos (12U)
lypinator 0:bb348c97df44 16114 #define USB_OTG_GINTMSK_USBRST_Msk (0x1U << USB_OTG_GINTMSK_USBRST_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 16115 #define USB_OTG_GINTMSK_USBRST USB_OTG_GINTMSK_USBRST_Msk /*!< USB reset mask */
lypinator 0:bb348c97df44 16116 #define USB_OTG_GINTMSK_ENUMDNEM_Pos (13U)
lypinator 0:bb348c97df44 16117 #define USB_OTG_GINTMSK_ENUMDNEM_Msk (0x1U << USB_OTG_GINTMSK_ENUMDNEM_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 16118 #define USB_OTG_GINTMSK_ENUMDNEM USB_OTG_GINTMSK_ENUMDNEM_Msk /*!< Enumeration done mask */
lypinator 0:bb348c97df44 16119 #define USB_OTG_GINTMSK_ISOODRPM_Pos (14U)
lypinator 0:bb348c97df44 16120 #define USB_OTG_GINTMSK_ISOODRPM_Msk (0x1U << USB_OTG_GINTMSK_ISOODRPM_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 16121 #define USB_OTG_GINTMSK_ISOODRPM USB_OTG_GINTMSK_ISOODRPM_Msk /*!< Isochronous OUT packet dropped interrupt mask */
lypinator 0:bb348c97df44 16122 #define USB_OTG_GINTMSK_EOPFM_Pos (15U)
lypinator 0:bb348c97df44 16123 #define USB_OTG_GINTMSK_EOPFM_Msk (0x1U << USB_OTG_GINTMSK_EOPFM_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 16124 #define USB_OTG_GINTMSK_EOPFM USB_OTG_GINTMSK_EOPFM_Msk /*!< End of periodic frame interrupt mask */
lypinator 0:bb348c97df44 16125 #define USB_OTG_GINTMSK_EPMISM_Pos (17U)
lypinator 0:bb348c97df44 16126 #define USB_OTG_GINTMSK_EPMISM_Msk (0x1U << USB_OTG_GINTMSK_EPMISM_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 16127 #define USB_OTG_GINTMSK_EPMISM USB_OTG_GINTMSK_EPMISM_Msk /*!< Endpoint mismatch interrupt mask */
lypinator 0:bb348c97df44 16128 #define USB_OTG_GINTMSK_IEPINT_Pos (18U)
lypinator 0:bb348c97df44 16129 #define USB_OTG_GINTMSK_IEPINT_Msk (0x1U << USB_OTG_GINTMSK_IEPINT_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 16130 #define USB_OTG_GINTMSK_IEPINT USB_OTG_GINTMSK_IEPINT_Msk /*!< IN endpoints interrupt mask */
lypinator 0:bb348c97df44 16131 #define USB_OTG_GINTMSK_OEPINT_Pos (19U)
lypinator 0:bb348c97df44 16132 #define USB_OTG_GINTMSK_OEPINT_Msk (0x1U << USB_OTG_GINTMSK_OEPINT_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 16133 #define USB_OTG_GINTMSK_OEPINT USB_OTG_GINTMSK_OEPINT_Msk /*!< OUT endpoints interrupt mask */
lypinator 0:bb348c97df44 16134 #define USB_OTG_GINTMSK_IISOIXFRM_Pos (20U)
lypinator 0:bb348c97df44 16135 #define USB_OTG_GINTMSK_IISOIXFRM_Msk (0x1U << USB_OTG_GINTMSK_IISOIXFRM_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 16136 #define USB_OTG_GINTMSK_IISOIXFRM USB_OTG_GINTMSK_IISOIXFRM_Msk /*!< Incomplete isochronous IN transfer mask */
lypinator 0:bb348c97df44 16137 #define USB_OTG_GINTMSK_PXFRM_IISOOXFRM_Pos (21U)
lypinator 0:bb348c97df44 16138 #define USB_OTG_GINTMSK_PXFRM_IISOOXFRM_Msk (0x1U << USB_OTG_GINTMSK_PXFRM_IISOOXFRM_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 16139 #define USB_OTG_GINTMSK_PXFRM_IISOOXFRM USB_OTG_GINTMSK_PXFRM_IISOOXFRM_Msk /*!< Incomplete periodic transfer mask */
lypinator 0:bb348c97df44 16140 #define USB_OTG_GINTMSK_FSUSPM_Pos (22U)
lypinator 0:bb348c97df44 16141 #define USB_OTG_GINTMSK_FSUSPM_Msk (0x1U << USB_OTG_GINTMSK_FSUSPM_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 16142 #define USB_OTG_GINTMSK_FSUSPM USB_OTG_GINTMSK_FSUSPM_Msk /*!< Data fetch suspended mask */
lypinator 0:bb348c97df44 16143 #define USB_OTG_GINTMSK_PRTIM_Pos (24U)
lypinator 0:bb348c97df44 16144 #define USB_OTG_GINTMSK_PRTIM_Msk (0x1U << USB_OTG_GINTMSK_PRTIM_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 16145 #define USB_OTG_GINTMSK_PRTIM USB_OTG_GINTMSK_PRTIM_Msk /*!< Host port interrupt mask */
lypinator 0:bb348c97df44 16146 #define USB_OTG_GINTMSK_HCIM_Pos (25U)
lypinator 0:bb348c97df44 16147 #define USB_OTG_GINTMSK_HCIM_Msk (0x1U << USB_OTG_GINTMSK_HCIM_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 16148 #define USB_OTG_GINTMSK_HCIM USB_OTG_GINTMSK_HCIM_Msk /*!< Host channels interrupt mask */
lypinator 0:bb348c97df44 16149 #define USB_OTG_GINTMSK_PTXFEM_Pos (26U)
lypinator 0:bb348c97df44 16150 #define USB_OTG_GINTMSK_PTXFEM_Msk (0x1U << USB_OTG_GINTMSK_PTXFEM_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 16151 #define USB_OTG_GINTMSK_PTXFEM USB_OTG_GINTMSK_PTXFEM_Msk /*!< Periodic TxFIFO empty mask */
lypinator 0:bb348c97df44 16152 #define USB_OTG_GINTMSK_CIDSCHGM_Pos (28U)
lypinator 0:bb348c97df44 16153 #define USB_OTG_GINTMSK_CIDSCHGM_Msk (0x1U << USB_OTG_GINTMSK_CIDSCHGM_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 16154 #define USB_OTG_GINTMSK_CIDSCHGM USB_OTG_GINTMSK_CIDSCHGM_Msk /*!< Connector ID status change mask */
lypinator 0:bb348c97df44 16155 #define USB_OTG_GINTMSK_DISCINT_Pos (29U)
lypinator 0:bb348c97df44 16156 #define USB_OTG_GINTMSK_DISCINT_Msk (0x1U << USB_OTG_GINTMSK_DISCINT_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 16157 #define USB_OTG_GINTMSK_DISCINT USB_OTG_GINTMSK_DISCINT_Msk /*!< Disconnect detected interrupt mask */
lypinator 0:bb348c97df44 16158 #define USB_OTG_GINTMSK_SRQIM_Pos (30U)
lypinator 0:bb348c97df44 16159 #define USB_OTG_GINTMSK_SRQIM_Msk (0x1U << USB_OTG_GINTMSK_SRQIM_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 16160 #define USB_OTG_GINTMSK_SRQIM USB_OTG_GINTMSK_SRQIM_Msk /*!< Session request/new session detected interrupt mask */
lypinator 0:bb348c97df44 16161 #define USB_OTG_GINTMSK_WUIM_Pos (31U)
lypinator 0:bb348c97df44 16162 #define USB_OTG_GINTMSK_WUIM_Msk (0x1U << USB_OTG_GINTMSK_WUIM_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 16163 #define USB_OTG_GINTMSK_WUIM USB_OTG_GINTMSK_WUIM_Msk /*!< Resume/remote wakeup detected interrupt mask */
lypinator 0:bb348c97df44 16164
lypinator 0:bb348c97df44 16165 /******************** Bit definition for USB_OTG_DAINT register ********************/
lypinator 0:bb348c97df44 16166 #define USB_OTG_DAINT_IEPINT_Pos (0U)
lypinator 0:bb348c97df44 16167 #define USB_OTG_DAINT_IEPINT_Msk (0xFFFFU << USB_OTG_DAINT_IEPINT_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 16168 #define USB_OTG_DAINT_IEPINT USB_OTG_DAINT_IEPINT_Msk /*!< IN endpoint interrupt bits */
lypinator 0:bb348c97df44 16169 #define USB_OTG_DAINT_OEPINT_Pos (16U)
lypinator 0:bb348c97df44 16170 #define USB_OTG_DAINT_OEPINT_Msk (0xFFFFU << USB_OTG_DAINT_OEPINT_Pos) /*!< 0xFFFF0000 */
lypinator 0:bb348c97df44 16171 #define USB_OTG_DAINT_OEPINT USB_OTG_DAINT_OEPINT_Msk /*!< OUT endpoint interrupt bits */
lypinator 0:bb348c97df44 16172
lypinator 0:bb348c97df44 16173 /******************** Bit definition for USB_OTG_HAINTMSK register ********************/
lypinator 0:bb348c97df44 16174 #define USB_OTG_HAINTMSK_HAINTM_Pos (0U)
lypinator 0:bb348c97df44 16175 #define USB_OTG_HAINTMSK_HAINTM_Msk (0xFFFFU << USB_OTG_HAINTMSK_HAINTM_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 16176 #define USB_OTG_HAINTMSK_HAINTM USB_OTG_HAINTMSK_HAINTM_Msk /*!< Channel interrupt mask */
lypinator 0:bb348c97df44 16177
lypinator 0:bb348c97df44 16178 /******************** Bit definition for USB_OTG_GRXSTSP register ********************/
lypinator 0:bb348c97df44 16179 #define USB_OTG_GRXSTSP_EPNUM_Pos (0U)
lypinator 0:bb348c97df44 16180 #define USB_OTG_GRXSTSP_EPNUM_Msk (0xFU << USB_OTG_GRXSTSP_EPNUM_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 16181 #define USB_OTG_GRXSTSP_EPNUM USB_OTG_GRXSTSP_EPNUM_Msk /*!< IN EP interrupt mask bits */
lypinator 0:bb348c97df44 16182 #define USB_OTG_GRXSTSP_BCNT_Pos (4U)
lypinator 0:bb348c97df44 16183 #define USB_OTG_GRXSTSP_BCNT_Msk (0x7FFU << USB_OTG_GRXSTSP_BCNT_Pos) /*!< 0x00007FF0 */
lypinator 0:bb348c97df44 16184 #define USB_OTG_GRXSTSP_BCNT USB_OTG_GRXSTSP_BCNT_Msk /*!< OUT EP interrupt mask bits */
lypinator 0:bb348c97df44 16185 #define USB_OTG_GRXSTSP_DPID_Pos (15U)
lypinator 0:bb348c97df44 16186 #define USB_OTG_GRXSTSP_DPID_Msk (0x3U << USB_OTG_GRXSTSP_DPID_Pos) /*!< 0x00018000 */
lypinator 0:bb348c97df44 16187 #define USB_OTG_GRXSTSP_DPID USB_OTG_GRXSTSP_DPID_Msk /*!< OUT EP interrupt mask bits */
lypinator 0:bb348c97df44 16188 #define USB_OTG_GRXSTSP_PKTSTS_Pos (17U)
lypinator 0:bb348c97df44 16189 #define USB_OTG_GRXSTSP_PKTSTS_Msk (0xFU << USB_OTG_GRXSTSP_PKTSTS_Pos) /*!< 0x001E0000 */
lypinator 0:bb348c97df44 16190 #define USB_OTG_GRXSTSP_PKTSTS USB_OTG_GRXSTSP_PKTSTS_Msk /*!< OUT EP interrupt mask bits */
lypinator 0:bb348c97df44 16191
lypinator 0:bb348c97df44 16192 /******************** Bit definition for USB_OTG_DAINTMSK register ********************/
lypinator 0:bb348c97df44 16193 #define USB_OTG_DAINTMSK_IEPM_Pos (0U)
lypinator 0:bb348c97df44 16194 #define USB_OTG_DAINTMSK_IEPM_Msk (0xFFFFU << USB_OTG_DAINTMSK_IEPM_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 16195 #define USB_OTG_DAINTMSK_IEPM USB_OTG_DAINTMSK_IEPM_Msk /*!< IN EP interrupt mask bits */
lypinator 0:bb348c97df44 16196 #define USB_OTG_DAINTMSK_OEPM_Pos (16U)
lypinator 0:bb348c97df44 16197 #define USB_OTG_DAINTMSK_OEPM_Msk (0xFFFFU << USB_OTG_DAINTMSK_OEPM_Pos) /*!< 0xFFFF0000 */
lypinator 0:bb348c97df44 16198 #define USB_OTG_DAINTMSK_OEPM USB_OTG_DAINTMSK_OEPM_Msk /*!< OUT EP interrupt mask bits */
lypinator 0:bb348c97df44 16199
lypinator 0:bb348c97df44 16200 /******************** Bit definition for USB_OTG_GRXFSIZ register ********************/
lypinator 0:bb348c97df44 16201 #define USB_OTG_GRXFSIZ_RXFD_Pos (0U)
lypinator 0:bb348c97df44 16202 #define USB_OTG_GRXFSIZ_RXFD_Msk (0xFFFFU << USB_OTG_GRXFSIZ_RXFD_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 16203 #define USB_OTG_GRXFSIZ_RXFD USB_OTG_GRXFSIZ_RXFD_Msk /*!< RxFIFO depth */
lypinator 0:bb348c97df44 16204
lypinator 0:bb348c97df44 16205 /******************** Bit definition for USB_OTG_DVBUSDIS register ********************/
lypinator 0:bb348c97df44 16206 #define USB_OTG_DVBUSDIS_VBUSDT_Pos (0U)
lypinator 0:bb348c97df44 16207 #define USB_OTG_DVBUSDIS_VBUSDT_Msk (0xFFFFU << USB_OTG_DVBUSDIS_VBUSDT_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 16208 #define USB_OTG_DVBUSDIS_VBUSDT USB_OTG_DVBUSDIS_VBUSDT_Msk /*!< Device VBUS discharge time */
lypinator 0:bb348c97df44 16209
lypinator 0:bb348c97df44 16210 /******************** Bit definition for OTG register ********************/
lypinator 0:bb348c97df44 16211 #define USB_OTG_NPTXFSA_Pos (0U)
lypinator 0:bb348c97df44 16212 #define USB_OTG_NPTXFSA_Msk (0xFFFFU << USB_OTG_NPTXFSA_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 16213 #define USB_OTG_NPTXFSA USB_OTG_NPTXFSA_Msk /*!< Nonperiodic transmit RAM start address */
lypinator 0:bb348c97df44 16214 #define USB_OTG_NPTXFD_Pos (16U)
lypinator 0:bb348c97df44 16215 #define USB_OTG_NPTXFD_Msk (0xFFFFU << USB_OTG_NPTXFD_Pos) /*!< 0xFFFF0000 */
lypinator 0:bb348c97df44 16216 #define USB_OTG_NPTXFD USB_OTG_NPTXFD_Msk /*!< Nonperiodic TxFIFO depth */
lypinator 0:bb348c97df44 16217 #define USB_OTG_TX0FSA_Pos (0U)
lypinator 0:bb348c97df44 16218 #define USB_OTG_TX0FSA_Msk (0xFFFFU << USB_OTG_TX0FSA_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 16219 #define USB_OTG_TX0FSA USB_OTG_TX0FSA_Msk /*!< Endpoint 0 transmit RAM start address */
lypinator 0:bb348c97df44 16220 #define USB_OTG_TX0FD_Pos (16U)
lypinator 0:bb348c97df44 16221 #define USB_OTG_TX0FD_Msk (0xFFFFU << USB_OTG_TX0FD_Pos) /*!< 0xFFFF0000 */
lypinator 0:bb348c97df44 16222 #define USB_OTG_TX0FD USB_OTG_TX0FD_Msk /*!< Endpoint 0 TxFIFO depth */
lypinator 0:bb348c97df44 16223
lypinator 0:bb348c97df44 16224 /******************** Bit definition forUSB_OTG_DVBUSPULSE register ********************/
lypinator 0:bb348c97df44 16225 #define USB_OTG_DVBUSPULSE_DVBUSP_Pos (0U)
lypinator 0:bb348c97df44 16226 #define USB_OTG_DVBUSPULSE_DVBUSP_Msk (0xFFFU << USB_OTG_DVBUSPULSE_DVBUSP_Pos) /*!< 0x00000FFF */
lypinator 0:bb348c97df44 16227 #define USB_OTG_DVBUSPULSE_DVBUSP USB_OTG_DVBUSPULSE_DVBUSP_Msk /*!< Device VBUS pulsing time */
lypinator 0:bb348c97df44 16228
lypinator 0:bb348c97df44 16229 /******************** Bit definition for USB_OTG_GNPTXSTS register ********************/
lypinator 0:bb348c97df44 16230 #define USB_OTG_GNPTXSTS_NPTXFSAV_Pos (0U)
lypinator 0:bb348c97df44 16231 #define USB_OTG_GNPTXSTS_NPTXFSAV_Msk (0xFFFFU << USB_OTG_GNPTXSTS_NPTXFSAV_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 16232 #define USB_OTG_GNPTXSTS_NPTXFSAV USB_OTG_GNPTXSTS_NPTXFSAV_Msk /*!< Nonperiodic TxFIFO space available */
lypinator 0:bb348c97df44 16233
lypinator 0:bb348c97df44 16234 #define USB_OTG_GNPTXSTS_NPTQXSAV_Pos (16U)
lypinator 0:bb348c97df44 16235 #define USB_OTG_GNPTXSTS_NPTQXSAV_Msk (0xFFU << USB_OTG_GNPTXSTS_NPTQXSAV_Pos) /*!< 0x00FF0000 */
lypinator 0:bb348c97df44 16236 #define USB_OTG_GNPTXSTS_NPTQXSAV USB_OTG_GNPTXSTS_NPTQXSAV_Msk /*!< Nonperiodic transmit request queue space available */
lypinator 0:bb348c97df44 16237 #define USB_OTG_GNPTXSTS_NPTQXSAV_0 (0x01U << USB_OTG_GNPTXSTS_NPTQXSAV_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 16238 #define USB_OTG_GNPTXSTS_NPTQXSAV_1 (0x02U << USB_OTG_GNPTXSTS_NPTQXSAV_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 16239 #define USB_OTG_GNPTXSTS_NPTQXSAV_2 (0x04U << USB_OTG_GNPTXSTS_NPTQXSAV_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 16240 #define USB_OTG_GNPTXSTS_NPTQXSAV_3 (0x08U << USB_OTG_GNPTXSTS_NPTQXSAV_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 16241 #define USB_OTG_GNPTXSTS_NPTQXSAV_4 (0x10U << USB_OTG_GNPTXSTS_NPTQXSAV_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 16242 #define USB_OTG_GNPTXSTS_NPTQXSAV_5 (0x20U << USB_OTG_GNPTXSTS_NPTQXSAV_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 16243 #define USB_OTG_GNPTXSTS_NPTQXSAV_6 (0x40U << USB_OTG_GNPTXSTS_NPTQXSAV_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 16244 #define USB_OTG_GNPTXSTS_NPTQXSAV_7 (0x80U << USB_OTG_GNPTXSTS_NPTQXSAV_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 16245
lypinator 0:bb348c97df44 16246 #define USB_OTG_GNPTXSTS_NPTXQTOP_Pos (24U)
lypinator 0:bb348c97df44 16247 #define USB_OTG_GNPTXSTS_NPTXQTOP_Msk (0x7FU << USB_OTG_GNPTXSTS_NPTXQTOP_Pos) /*!< 0x7F000000 */
lypinator 0:bb348c97df44 16248 #define USB_OTG_GNPTXSTS_NPTXQTOP USB_OTG_GNPTXSTS_NPTXQTOP_Msk /*!< Top of the nonperiodic transmit request queue */
lypinator 0:bb348c97df44 16249 #define USB_OTG_GNPTXSTS_NPTXQTOP_0 (0x01U << USB_OTG_GNPTXSTS_NPTXQTOP_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 16250 #define USB_OTG_GNPTXSTS_NPTXQTOP_1 (0x02U << USB_OTG_GNPTXSTS_NPTXQTOP_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 16251 #define USB_OTG_GNPTXSTS_NPTXQTOP_2 (0x04U << USB_OTG_GNPTXSTS_NPTXQTOP_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 16252 #define USB_OTG_GNPTXSTS_NPTXQTOP_3 (0x08U << USB_OTG_GNPTXSTS_NPTXQTOP_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 16253 #define USB_OTG_GNPTXSTS_NPTXQTOP_4 (0x10U << USB_OTG_GNPTXSTS_NPTXQTOP_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 16254 #define USB_OTG_GNPTXSTS_NPTXQTOP_5 (0x20U << USB_OTG_GNPTXSTS_NPTXQTOP_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 16255 #define USB_OTG_GNPTXSTS_NPTXQTOP_6 (0x40U << USB_OTG_GNPTXSTS_NPTXQTOP_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 16256
lypinator 0:bb348c97df44 16257 /******************** Bit definition for USB_OTG_DTHRCTL register ********************/
lypinator 0:bb348c97df44 16258 #define USB_OTG_DTHRCTL_NONISOTHREN_Pos (0U)
lypinator 0:bb348c97df44 16259 #define USB_OTG_DTHRCTL_NONISOTHREN_Msk (0x1U << USB_OTG_DTHRCTL_NONISOTHREN_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 16260 #define USB_OTG_DTHRCTL_NONISOTHREN USB_OTG_DTHRCTL_NONISOTHREN_Msk /*!< Nonisochronous IN endpoints threshold enable */
lypinator 0:bb348c97df44 16261 #define USB_OTG_DTHRCTL_ISOTHREN_Pos (1U)
lypinator 0:bb348c97df44 16262 #define USB_OTG_DTHRCTL_ISOTHREN_Msk (0x1U << USB_OTG_DTHRCTL_ISOTHREN_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 16263 #define USB_OTG_DTHRCTL_ISOTHREN USB_OTG_DTHRCTL_ISOTHREN_Msk /*!< ISO IN endpoint threshold enable */
lypinator 0:bb348c97df44 16264
lypinator 0:bb348c97df44 16265 #define USB_OTG_DTHRCTL_TXTHRLEN_Pos (2U)
lypinator 0:bb348c97df44 16266 #define USB_OTG_DTHRCTL_TXTHRLEN_Msk (0x1FFU << USB_OTG_DTHRCTL_TXTHRLEN_Pos) /*!< 0x000007FC */
lypinator 0:bb348c97df44 16267 #define USB_OTG_DTHRCTL_TXTHRLEN USB_OTG_DTHRCTL_TXTHRLEN_Msk /*!< Transmit threshold length */
lypinator 0:bb348c97df44 16268 #define USB_OTG_DTHRCTL_TXTHRLEN_0 (0x001U << USB_OTG_DTHRCTL_TXTHRLEN_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 16269 #define USB_OTG_DTHRCTL_TXTHRLEN_1 (0x002U << USB_OTG_DTHRCTL_TXTHRLEN_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 16270 #define USB_OTG_DTHRCTL_TXTHRLEN_2 (0x004U << USB_OTG_DTHRCTL_TXTHRLEN_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 16271 #define USB_OTG_DTHRCTL_TXTHRLEN_3 (0x008U << USB_OTG_DTHRCTL_TXTHRLEN_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 16272 #define USB_OTG_DTHRCTL_TXTHRLEN_4 (0x010U << USB_OTG_DTHRCTL_TXTHRLEN_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 16273 #define USB_OTG_DTHRCTL_TXTHRLEN_5 (0x020U << USB_OTG_DTHRCTL_TXTHRLEN_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 16274 #define USB_OTG_DTHRCTL_TXTHRLEN_6 (0x040U << USB_OTG_DTHRCTL_TXTHRLEN_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 16275 #define USB_OTG_DTHRCTL_TXTHRLEN_7 (0x080U << USB_OTG_DTHRCTL_TXTHRLEN_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 16276 #define USB_OTG_DTHRCTL_TXTHRLEN_8 (0x100U << USB_OTG_DTHRCTL_TXTHRLEN_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 16277 #define USB_OTG_DTHRCTL_RXTHREN_Pos (16U)
lypinator 0:bb348c97df44 16278 #define USB_OTG_DTHRCTL_RXTHREN_Msk (0x1U << USB_OTG_DTHRCTL_RXTHREN_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 16279 #define USB_OTG_DTHRCTL_RXTHREN USB_OTG_DTHRCTL_RXTHREN_Msk /*!< Receive threshold enable */
lypinator 0:bb348c97df44 16280
lypinator 0:bb348c97df44 16281 #define USB_OTG_DTHRCTL_RXTHRLEN_Pos (17U)
lypinator 0:bb348c97df44 16282 #define USB_OTG_DTHRCTL_RXTHRLEN_Msk (0x1FFU << USB_OTG_DTHRCTL_RXTHRLEN_Pos) /*!< 0x03FE0000 */
lypinator 0:bb348c97df44 16283 #define USB_OTG_DTHRCTL_RXTHRLEN USB_OTG_DTHRCTL_RXTHRLEN_Msk /*!< Receive threshold length */
lypinator 0:bb348c97df44 16284 #define USB_OTG_DTHRCTL_RXTHRLEN_0 (0x001U << USB_OTG_DTHRCTL_RXTHRLEN_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 16285 #define USB_OTG_DTHRCTL_RXTHRLEN_1 (0x002U << USB_OTG_DTHRCTL_RXTHRLEN_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 16286 #define USB_OTG_DTHRCTL_RXTHRLEN_2 (0x004U << USB_OTG_DTHRCTL_RXTHRLEN_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 16287 #define USB_OTG_DTHRCTL_RXTHRLEN_3 (0x008U << USB_OTG_DTHRCTL_RXTHRLEN_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 16288 #define USB_OTG_DTHRCTL_RXTHRLEN_4 (0x010U << USB_OTG_DTHRCTL_RXTHRLEN_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 16289 #define USB_OTG_DTHRCTL_RXTHRLEN_5 (0x020U << USB_OTG_DTHRCTL_RXTHRLEN_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 16290 #define USB_OTG_DTHRCTL_RXTHRLEN_6 (0x040U << USB_OTG_DTHRCTL_RXTHRLEN_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 16291 #define USB_OTG_DTHRCTL_RXTHRLEN_7 (0x080U << USB_OTG_DTHRCTL_RXTHRLEN_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 16292 #define USB_OTG_DTHRCTL_RXTHRLEN_8 (0x100U << USB_OTG_DTHRCTL_RXTHRLEN_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 16293 #define USB_OTG_DTHRCTL_ARPEN_Pos (27U)
lypinator 0:bb348c97df44 16294 #define USB_OTG_DTHRCTL_ARPEN_Msk (0x1U << USB_OTG_DTHRCTL_ARPEN_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 16295 #define USB_OTG_DTHRCTL_ARPEN USB_OTG_DTHRCTL_ARPEN_Msk /*!< Arbiter parking enable */
lypinator 0:bb348c97df44 16296
lypinator 0:bb348c97df44 16297 /******************** Bit definition for USB_OTG_DIEPEMPMSK register ********************/
lypinator 0:bb348c97df44 16298 #define USB_OTG_DIEPEMPMSK_INEPTXFEM_Pos (0U)
lypinator 0:bb348c97df44 16299 #define USB_OTG_DIEPEMPMSK_INEPTXFEM_Msk (0xFFFFU << USB_OTG_DIEPEMPMSK_INEPTXFEM_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 16300 #define USB_OTG_DIEPEMPMSK_INEPTXFEM USB_OTG_DIEPEMPMSK_INEPTXFEM_Msk /*!< IN EP Tx FIFO empty interrupt mask bits */
lypinator 0:bb348c97df44 16301
lypinator 0:bb348c97df44 16302 /******************** Bit definition for USB_OTG_DEACHINT register ********************/
lypinator 0:bb348c97df44 16303 #define USB_OTG_DEACHINT_IEP1INT_Pos (1U)
lypinator 0:bb348c97df44 16304 #define USB_OTG_DEACHINT_IEP1INT_Msk (0x1U << USB_OTG_DEACHINT_IEP1INT_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 16305 #define USB_OTG_DEACHINT_IEP1INT USB_OTG_DEACHINT_IEP1INT_Msk /*!< IN endpoint 1interrupt bit */
lypinator 0:bb348c97df44 16306 #define USB_OTG_DEACHINT_OEP1INT_Pos (17U)
lypinator 0:bb348c97df44 16307 #define USB_OTG_DEACHINT_OEP1INT_Msk (0x1U << USB_OTG_DEACHINT_OEP1INT_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 16308 #define USB_OTG_DEACHINT_OEP1INT USB_OTG_DEACHINT_OEP1INT_Msk /*!< OUT endpoint 1 interrupt bit */
lypinator 0:bb348c97df44 16309
lypinator 0:bb348c97df44 16310 /******************** Bit definition for USB_OTG_GCCFG register ********************/
lypinator 0:bb348c97df44 16311 #define USB_OTG_GCCFG_PWRDWN_Pos (16U)
lypinator 0:bb348c97df44 16312 #define USB_OTG_GCCFG_PWRDWN_Msk (0x1U << USB_OTG_GCCFG_PWRDWN_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 16313 #define USB_OTG_GCCFG_PWRDWN USB_OTG_GCCFG_PWRDWN_Msk /*!< Power down */
lypinator 0:bb348c97df44 16314 #define USB_OTG_GCCFG_I2CPADEN_Pos (17U)
lypinator 0:bb348c97df44 16315 #define USB_OTG_GCCFG_I2CPADEN_Msk (0x1U << USB_OTG_GCCFG_I2CPADEN_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 16316 #define USB_OTG_GCCFG_I2CPADEN USB_OTG_GCCFG_I2CPADEN_Msk /*!< Enable I2C bus connection for the external I2C PHY interface*/
lypinator 0:bb348c97df44 16317 #define USB_OTG_GCCFG_VBUSASEN_Pos (18U)
lypinator 0:bb348c97df44 16318 #define USB_OTG_GCCFG_VBUSASEN_Msk (0x1U << USB_OTG_GCCFG_VBUSASEN_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 16319 #define USB_OTG_GCCFG_VBUSASEN USB_OTG_GCCFG_VBUSASEN_Msk /*!< Enable the VBUS sensing device */
lypinator 0:bb348c97df44 16320 #define USB_OTG_GCCFG_VBUSBSEN_Pos (19U)
lypinator 0:bb348c97df44 16321 #define USB_OTG_GCCFG_VBUSBSEN_Msk (0x1U << USB_OTG_GCCFG_VBUSBSEN_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 16322 #define USB_OTG_GCCFG_VBUSBSEN USB_OTG_GCCFG_VBUSBSEN_Msk /*!< Enable the VBUS sensing device */
lypinator 0:bb348c97df44 16323 #define USB_OTG_GCCFG_SOFOUTEN_Pos (20U)
lypinator 0:bb348c97df44 16324 #define USB_OTG_GCCFG_SOFOUTEN_Msk (0x1U << USB_OTG_GCCFG_SOFOUTEN_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 16325 #define USB_OTG_GCCFG_SOFOUTEN USB_OTG_GCCFG_SOFOUTEN_Msk /*!< SOF output enable */
lypinator 0:bb348c97df44 16326 #define USB_OTG_GCCFG_NOVBUSSENS_Pos (21U)
lypinator 0:bb348c97df44 16327 #define USB_OTG_GCCFG_NOVBUSSENS_Msk (0x1U << USB_OTG_GCCFG_NOVBUSSENS_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 16328 #define USB_OTG_GCCFG_NOVBUSSENS USB_OTG_GCCFG_NOVBUSSENS_Msk /*!< VBUS sensing disable option*/
lypinator 0:bb348c97df44 16329
lypinator 0:bb348c97df44 16330 /******************** Bit definition forUSB_OTG_DEACHINTMSK register ********************/
lypinator 0:bb348c97df44 16331 #define USB_OTG_DEACHINTMSK_IEP1INTM_Pos (1U)
lypinator 0:bb348c97df44 16332 #define USB_OTG_DEACHINTMSK_IEP1INTM_Msk (0x1U << USB_OTG_DEACHINTMSK_IEP1INTM_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 16333 #define USB_OTG_DEACHINTMSK_IEP1INTM USB_OTG_DEACHINTMSK_IEP1INTM_Msk /*!< IN Endpoint 1 interrupt mask bit */
lypinator 0:bb348c97df44 16334 #define USB_OTG_DEACHINTMSK_OEP1INTM_Pos (17U)
lypinator 0:bb348c97df44 16335 #define USB_OTG_DEACHINTMSK_OEP1INTM_Msk (0x1U << USB_OTG_DEACHINTMSK_OEP1INTM_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 16336 #define USB_OTG_DEACHINTMSK_OEP1INTM USB_OTG_DEACHINTMSK_OEP1INTM_Msk /*!< OUT Endpoint 1 interrupt mask bit */
lypinator 0:bb348c97df44 16337
lypinator 0:bb348c97df44 16338 /******************** Bit definition for USB_OTG_CID register ********************/
lypinator 0:bb348c97df44 16339 #define USB_OTG_CID_PRODUCT_ID_Pos (0U)
lypinator 0:bb348c97df44 16340 #define USB_OTG_CID_PRODUCT_ID_Msk (0xFFFFFFFFU << USB_OTG_CID_PRODUCT_ID_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 16341 #define USB_OTG_CID_PRODUCT_ID USB_OTG_CID_PRODUCT_ID_Msk /*!< Product ID field */
lypinator 0:bb348c97df44 16342
lypinator 0:bb348c97df44 16343 /******************** Bit definition for USB_OTG_DIEPEACHMSK1 register ********************/
lypinator 0:bb348c97df44 16344 #define USB_OTG_DIEPEACHMSK1_XFRCM_Pos (0U)
lypinator 0:bb348c97df44 16345 #define USB_OTG_DIEPEACHMSK1_XFRCM_Msk (0x1U << USB_OTG_DIEPEACHMSK1_XFRCM_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 16346 #define USB_OTG_DIEPEACHMSK1_XFRCM USB_OTG_DIEPEACHMSK1_XFRCM_Msk /*!< Transfer completed interrupt mask */
lypinator 0:bb348c97df44 16347 #define USB_OTG_DIEPEACHMSK1_EPDM_Pos (1U)
lypinator 0:bb348c97df44 16348 #define USB_OTG_DIEPEACHMSK1_EPDM_Msk (0x1U << USB_OTG_DIEPEACHMSK1_EPDM_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 16349 #define USB_OTG_DIEPEACHMSK1_EPDM USB_OTG_DIEPEACHMSK1_EPDM_Msk /*!< Endpoint disabled interrupt mask */
lypinator 0:bb348c97df44 16350 #define USB_OTG_DIEPEACHMSK1_TOM_Pos (3U)
lypinator 0:bb348c97df44 16351 #define USB_OTG_DIEPEACHMSK1_TOM_Msk (0x1U << USB_OTG_DIEPEACHMSK1_TOM_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 16352 #define USB_OTG_DIEPEACHMSK1_TOM USB_OTG_DIEPEACHMSK1_TOM_Msk /*!< Timeout condition mask (nonisochronous endpoints) */
lypinator 0:bb348c97df44 16353 #define USB_OTG_DIEPEACHMSK1_ITTXFEMSK_Pos (4U)
lypinator 0:bb348c97df44 16354 #define USB_OTG_DIEPEACHMSK1_ITTXFEMSK_Msk (0x1U << USB_OTG_DIEPEACHMSK1_ITTXFEMSK_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 16355 #define USB_OTG_DIEPEACHMSK1_ITTXFEMSK USB_OTG_DIEPEACHMSK1_ITTXFEMSK_Msk /*!< IN token received when TxFIFO empty mask */
lypinator 0:bb348c97df44 16356 #define USB_OTG_DIEPEACHMSK1_INEPNMM_Pos (5U)
lypinator 0:bb348c97df44 16357 #define USB_OTG_DIEPEACHMSK1_INEPNMM_Msk (0x1U << USB_OTG_DIEPEACHMSK1_INEPNMM_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 16358 #define USB_OTG_DIEPEACHMSK1_INEPNMM USB_OTG_DIEPEACHMSK1_INEPNMM_Msk /*!< IN token received with EP mismatch mask */
lypinator 0:bb348c97df44 16359 #define USB_OTG_DIEPEACHMSK1_INEPNEM_Pos (6U)
lypinator 0:bb348c97df44 16360 #define USB_OTG_DIEPEACHMSK1_INEPNEM_Msk (0x1U << USB_OTG_DIEPEACHMSK1_INEPNEM_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 16361 #define USB_OTG_DIEPEACHMSK1_INEPNEM USB_OTG_DIEPEACHMSK1_INEPNEM_Msk /*!< IN endpoint NAK effective mask */
lypinator 0:bb348c97df44 16362 #define USB_OTG_DIEPEACHMSK1_TXFURM_Pos (8U)
lypinator 0:bb348c97df44 16363 #define USB_OTG_DIEPEACHMSK1_TXFURM_Msk (0x1U << USB_OTG_DIEPEACHMSK1_TXFURM_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 16364 #define USB_OTG_DIEPEACHMSK1_TXFURM USB_OTG_DIEPEACHMSK1_TXFURM_Msk /*!< FIFO underrun mask */
lypinator 0:bb348c97df44 16365 #define USB_OTG_DIEPEACHMSK1_BIM_Pos (9U)
lypinator 0:bb348c97df44 16366 #define USB_OTG_DIEPEACHMSK1_BIM_Msk (0x1U << USB_OTG_DIEPEACHMSK1_BIM_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 16367 #define USB_OTG_DIEPEACHMSK1_BIM USB_OTG_DIEPEACHMSK1_BIM_Msk /*!< BNA interrupt mask */
lypinator 0:bb348c97df44 16368 #define USB_OTG_DIEPEACHMSK1_NAKM_Pos (13U)
lypinator 0:bb348c97df44 16369 #define USB_OTG_DIEPEACHMSK1_NAKM_Msk (0x1U << USB_OTG_DIEPEACHMSK1_NAKM_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 16370 #define USB_OTG_DIEPEACHMSK1_NAKM USB_OTG_DIEPEACHMSK1_NAKM_Msk /*!< NAK interrupt mask */
lypinator 0:bb348c97df44 16371
lypinator 0:bb348c97df44 16372 /******************** Bit definition for USB_OTG_HPRT register ********************/
lypinator 0:bb348c97df44 16373 #define USB_OTG_HPRT_PCSTS_Pos (0U)
lypinator 0:bb348c97df44 16374 #define USB_OTG_HPRT_PCSTS_Msk (0x1U << USB_OTG_HPRT_PCSTS_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 16375 #define USB_OTG_HPRT_PCSTS USB_OTG_HPRT_PCSTS_Msk /*!< Port connect status */
lypinator 0:bb348c97df44 16376 #define USB_OTG_HPRT_PCDET_Pos (1U)
lypinator 0:bb348c97df44 16377 #define USB_OTG_HPRT_PCDET_Msk (0x1U << USB_OTG_HPRT_PCDET_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 16378 #define USB_OTG_HPRT_PCDET USB_OTG_HPRT_PCDET_Msk /*!< Port connect detected */
lypinator 0:bb348c97df44 16379 #define USB_OTG_HPRT_PENA_Pos (2U)
lypinator 0:bb348c97df44 16380 #define USB_OTG_HPRT_PENA_Msk (0x1U << USB_OTG_HPRT_PENA_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 16381 #define USB_OTG_HPRT_PENA USB_OTG_HPRT_PENA_Msk /*!< Port enable */
lypinator 0:bb348c97df44 16382 #define USB_OTG_HPRT_PENCHNG_Pos (3U)
lypinator 0:bb348c97df44 16383 #define USB_OTG_HPRT_PENCHNG_Msk (0x1U << USB_OTG_HPRT_PENCHNG_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 16384 #define USB_OTG_HPRT_PENCHNG USB_OTG_HPRT_PENCHNG_Msk /*!< Port enable/disable change */
lypinator 0:bb348c97df44 16385 #define USB_OTG_HPRT_POCA_Pos (4U)
lypinator 0:bb348c97df44 16386 #define USB_OTG_HPRT_POCA_Msk (0x1U << USB_OTG_HPRT_POCA_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 16387 #define USB_OTG_HPRT_POCA USB_OTG_HPRT_POCA_Msk /*!< Port overcurrent active */
lypinator 0:bb348c97df44 16388 #define USB_OTG_HPRT_POCCHNG_Pos (5U)
lypinator 0:bb348c97df44 16389 #define USB_OTG_HPRT_POCCHNG_Msk (0x1U << USB_OTG_HPRT_POCCHNG_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 16390 #define USB_OTG_HPRT_POCCHNG USB_OTG_HPRT_POCCHNG_Msk /*!< Port overcurrent change */
lypinator 0:bb348c97df44 16391 #define USB_OTG_HPRT_PRES_Pos (6U)
lypinator 0:bb348c97df44 16392 #define USB_OTG_HPRT_PRES_Msk (0x1U << USB_OTG_HPRT_PRES_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 16393 #define USB_OTG_HPRT_PRES USB_OTG_HPRT_PRES_Msk /*!< Port resume */
lypinator 0:bb348c97df44 16394 #define USB_OTG_HPRT_PSUSP_Pos (7U)
lypinator 0:bb348c97df44 16395 #define USB_OTG_HPRT_PSUSP_Msk (0x1U << USB_OTG_HPRT_PSUSP_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 16396 #define USB_OTG_HPRT_PSUSP USB_OTG_HPRT_PSUSP_Msk /*!< Port suspend */
lypinator 0:bb348c97df44 16397 #define USB_OTG_HPRT_PRST_Pos (8U)
lypinator 0:bb348c97df44 16398 #define USB_OTG_HPRT_PRST_Msk (0x1U << USB_OTG_HPRT_PRST_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 16399 #define USB_OTG_HPRT_PRST USB_OTG_HPRT_PRST_Msk /*!< Port reset */
lypinator 0:bb348c97df44 16400
lypinator 0:bb348c97df44 16401 #define USB_OTG_HPRT_PLSTS_Pos (10U)
lypinator 0:bb348c97df44 16402 #define USB_OTG_HPRT_PLSTS_Msk (0x3U << USB_OTG_HPRT_PLSTS_Pos) /*!< 0x00000C00 */
lypinator 0:bb348c97df44 16403 #define USB_OTG_HPRT_PLSTS USB_OTG_HPRT_PLSTS_Msk /*!< Port line status */
lypinator 0:bb348c97df44 16404 #define USB_OTG_HPRT_PLSTS_0 (0x1U << USB_OTG_HPRT_PLSTS_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 16405 #define USB_OTG_HPRT_PLSTS_1 (0x2U << USB_OTG_HPRT_PLSTS_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 16406 #define USB_OTG_HPRT_PPWR_Pos (12U)
lypinator 0:bb348c97df44 16407 #define USB_OTG_HPRT_PPWR_Msk (0x1U << USB_OTG_HPRT_PPWR_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 16408 #define USB_OTG_HPRT_PPWR USB_OTG_HPRT_PPWR_Msk /*!< Port power */
lypinator 0:bb348c97df44 16409
lypinator 0:bb348c97df44 16410 #define USB_OTG_HPRT_PTCTL_Pos (13U)
lypinator 0:bb348c97df44 16411 #define USB_OTG_HPRT_PTCTL_Msk (0xFU << USB_OTG_HPRT_PTCTL_Pos) /*!< 0x0001E000 */
lypinator 0:bb348c97df44 16412 #define USB_OTG_HPRT_PTCTL USB_OTG_HPRT_PTCTL_Msk /*!< Port test control */
lypinator 0:bb348c97df44 16413 #define USB_OTG_HPRT_PTCTL_0 (0x1U << USB_OTG_HPRT_PTCTL_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 16414 #define USB_OTG_HPRT_PTCTL_1 (0x2U << USB_OTG_HPRT_PTCTL_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 16415 #define USB_OTG_HPRT_PTCTL_2 (0x4U << USB_OTG_HPRT_PTCTL_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 16416 #define USB_OTG_HPRT_PTCTL_3 (0x8U << USB_OTG_HPRT_PTCTL_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 16417
lypinator 0:bb348c97df44 16418 #define USB_OTG_HPRT_PSPD_Pos (17U)
lypinator 0:bb348c97df44 16419 #define USB_OTG_HPRT_PSPD_Msk (0x3U << USB_OTG_HPRT_PSPD_Pos) /*!< 0x00060000 */
lypinator 0:bb348c97df44 16420 #define USB_OTG_HPRT_PSPD USB_OTG_HPRT_PSPD_Msk /*!< Port speed */
lypinator 0:bb348c97df44 16421 #define USB_OTG_HPRT_PSPD_0 (0x1U << USB_OTG_HPRT_PSPD_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 16422 #define USB_OTG_HPRT_PSPD_1 (0x2U << USB_OTG_HPRT_PSPD_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 16423
lypinator 0:bb348c97df44 16424 /******************** Bit definition for USB_OTG_DOEPEACHMSK1 register ********************/
lypinator 0:bb348c97df44 16425 #define USB_OTG_DOEPEACHMSK1_XFRCM_Pos (0U)
lypinator 0:bb348c97df44 16426 #define USB_OTG_DOEPEACHMSK1_XFRCM_Msk (0x1U << USB_OTG_DOEPEACHMSK1_XFRCM_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 16427 #define USB_OTG_DOEPEACHMSK1_XFRCM USB_OTG_DOEPEACHMSK1_XFRCM_Msk /*!< Transfer completed interrupt mask */
lypinator 0:bb348c97df44 16428 #define USB_OTG_DOEPEACHMSK1_EPDM_Pos (1U)
lypinator 0:bb348c97df44 16429 #define USB_OTG_DOEPEACHMSK1_EPDM_Msk (0x1U << USB_OTG_DOEPEACHMSK1_EPDM_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 16430 #define USB_OTG_DOEPEACHMSK1_EPDM USB_OTG_DOEPEACHMSK1_EPDM_Msk /*!< Endpoint disabled interrupt mask */
lypinator 0:bb348c97df44 16431 #define USB_OTG_DOEPEACHMSK1_TOM_Pos (3U)
lypinator 0:bb348c97df44 16432 #define USB_OTG_DOEPEACHMSK1_TOM_Msk (0x1U << USB_OTG_DOEPEACHMSK1_TOM_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 16433 #define USB_OTG_DOEPEACHMSK1_TOM USB_OTG_DOEPEACHMSK1_TOM_Msk /*!< Timeout condition mask */
lypinator 0:bb348c97df44 16434 #define USB_OTG_DOEPEACHMSK1_ITTXFEMSK_Pos (4U)
lypinator 0:bb348c97df44 16435 #define USB_OTG_DOEPEACHMSK1_ITTXFEMSK_Msk (0x1U << USB_OTG_DOEPEACHMSK1_ITTXFEMSK_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 16436 #define USB_OTG_DOEPEACHMSK1_ITTXFEMSK USB_OTG_DOEPEACHMSK1_ITTXFEMSK_Msk /*!< IN token received when TxFIFO empty mask */
lypinator 0:bb348c97df44 16437 #define USB_OTG_DOEPEACHMSK1_INEPNMM_Pos (5U)
lypinator 0:bb348c97df44 16438 #define USB_OTG_DOEPEACHMSK1_INEPNMM_Msk (0x1U << USB_OTG_DOEPEACHMSK1_INEPNMM_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 16439 #define USB_OTG_DOEPEACHMSK1_INEPNMM USB_OTG_DOEPEACHMSK1_INEPNMM_Msk /*!< IN token received with EP mismatch mask */
lypinator 0:bb348c97df44 16440 #define USB_OTG_DOEPEACHMSK1_INEPNEM_Pos (6U)
lypinator 0:bb348c97df44 16441 #define USB_OTG_DOEPEACHMSK1_INEPNEM_Msk (0x1U << USB_OTG_DOEPEACHMSK1_INEPNEM_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 16442 #define USB_OTG_DOEPEACHMSK1_INEPNEM USB_OTG_DOEPEACHMSK1_INEPNEM_Msk /*!< IN endpoint NAK effective mask */
lypinator 0:bb348c97df44 16443 #define USB_OTG_DOEPEACHMSK1_TXFURM_Pos (8U)
lypinator 0:bb348c97df44 16444 #define USB_OTG_DOEPEACHMSK1_TXFURM_Msk (0x1U << USB_OTG_DOEPEACHMSK1_TXFURM_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 16445 #define USB_OTG_DOEPEACHMSK1_TXFURM USB_OTG_DOEPEACHMSK1_TXFURM_Msk /*!< OUT packet error mask */
lypinator 0:bb348c97df44 16446 #define USB_OTG_DOEPEACHMSK1_BIM_Pos (9U)
lypinator 0:bb348c97df44 16447 #define USB_OTG_DOEPEACHMSK1_BIM_Msk (0x1U << USB_OTG_DOEPEACHMSK1_BIM_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 16448 #define USB_OTG_DOEPEACHMSK1_BIM USB_OTG_DOEPEACHMSK1_BIM_Msk /*!< BNA interrupt mask */
lypinator 0:bb348c97df44 16449 #define USB_OTG_DOEPEACHMSK1_BERRM_Pos (12U)
lypinator 0:bb348c97df44 16450 #define USB_OTG_DOEPEACHMSK1_BERRM_Msk (0x1U << USB_OTG_DOEPEACHMSK1_BERRM_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 16451 #define USB_OTG_DOEPEACHMSK1_BERRM USB_OTG_DOEPEACHMSK1_BERRM_Msk /*!< Bubble error interrupt mask */
lypinator 0:bb348c97df44 16452 #define USB_OTG_DOEPEACHMSK1_NAKM_Pos (13U)
lypinator 0:bb348c97df44 16453 #define USB_OTG_DOEPEACHMSK1_NAKM_Msk (0x1U << USB_OTG_DOEPEACHMSK1_NAKM_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 16454 #define USB_OTG_DOEPEACHMSK1_NAKM USB_OTG_DOEPEACHMSK1_NAKM_Msk /*!< NAK interrupt mask */
lypinator 0:bb348c97df44 16455 #define USB_OTG_DOEPEACHMSK1_NYETM_Pos (14U)
lypinator 0:bb348c97df44 16456 #define USB_OTG_DOEPEACHMSK1_NYETM_Msk (0x1U << USB_OTG_DOEPEACHMSK1_NYETM_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 16457 #define USB_OTG_DOEPEACHMSK1_NYETM USB_OTG_DOEPEACHMSK1_NYETM_Msk /*!< NYET interrupt mask */
lypinator 0:bb348c97df44 16458
lypinator 0:bb348c97df44 16459 /******************** Bit definition for USB_OTG_HPTXFSIZ register ********************/
lypinator 0:bb348c97df44 16460 #define USB_OTG_HPTXFSIZ_PTXSA_Pos (0U)
lypinator 0:bb348c97df44 16461 #define USB_OTG_HPTXFSIZ_PTXSA_Msk (0xFFFFU << USB_OTG_HPTXFSIZ_PTXSA_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 16462 #define USB_OTG_HPTXFSIZ_PTXSA USB_OTG_HPTXFSIZ_PTXSA_Msk /*!< Host periodic TxFIFO start address */
lypinator 0:bb348c97df44 16463 #define USB_OTG_HPTXFSIZ_PTXFD_Pos (16U)
lypinator 0:bb348c97df44 16464 #define USB_OTG_HPTXFSIZ_PTXFD_Msk (0xFFFFU << USB_OTG_HPTXFSIZ_PTXFD_Pos) /*!< 0xFFFF0000 */
lypinator 0:bb348c97df44 16465 #define USB_OTG_HPTXFSIZ_PTXFD USB_OTG_HPTXFSIZ_PTXFD_Msk /*!< Host periodic TxFIFO depth */
lypinator 0:bb348c97df44 16466
lypinator 0:bb348c97df44 16467 /******************** Bit definition for USB_OTG_DIEPCTL register ********************/
lypinator 0:bb348c97df44 16468 #define USB_OTG_DIEPCTL_MPSIZ_Pos (0U)
lypinator 0:bb348c97df44 16469 #define USB_OTG_DIEPCTL_MPSIZ_Msk (0x7FFU << USB_OTG_DIEPCTL_MPSIZ_Pos) /*!< 0x000007FF */
lypinator 0:bb348c97df44 16470 #define USB_OTG_DIEPCTL_MPSIZ USB_OTG_DIEPCTL_MPSIZ_Msk /*!< Maximum packet size */
lypinator 0:bb348c97df44 16471 #define USB_OTG_DIEPCTL_USBAEP_Pos (15U)
lypinator 0:bb348c97df44 16472 #define USB_OTG_DIEPCTL_USBAEP_Msk (0x1U << USB_OTG_DIEPCTL_USBAEP_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 16473 #define USB_OTG_DIEPCTL_USBAEP USB_OTG_DIEPCTL_USBAEP_Msk /*!< USB active endpoint */
lypinator 0:bb348c97df44 16474 #define USB_OTG_DIEPCTL_EONUM_DPID_Pos (16U)
lypinator 0:bb348c97df44 16475 #define USB_OTG_DIEPCTL_EONUM_DPID_Msk (0x1U << USB_OTG_DIEPCTL_EONUM_DPID_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 16476 #define USB_OTG_DIEPCTL_EONUM_DPID USB_OTG_DIEPCTL_EONUM_DPID_Msk /*!< Even/odd frame */
lypinator 0:bb348c97df44 16477 #define USB_OTG_DIEPCTL_NAKSTS_Pos (17U)
lypinator 0:bb348c97df44 16478 #define USB_OTG_DIEPCTL_NAKSTS_Msk (0x1U << USB_OTG_DIEPCTL_NAKSTS_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 16479 #define USB_OTG_DIEPCTL_NAKSTS USB_OTG_DIEPCTL_NAKSTS_Msk /*!< NAK status */
lypinator 0:bb348c97df44 16480
lypinator 0:bb348c97df44 16481 #define USB_OTG_DIEPCTL_EPTYP_Pos (18U)
lypinator 0:bb348c97df44 16482 #define USB_OTG_DIEPCTL_EPTYP_Msk (0x3U << USB_OTG_DIEPCTL_EPTYP_Pos) /*!< 0x000C0000 */
lypinator 0:bb348c97df44 16483 #define USB_OTG_DIEPCTL_EPTYP USB_OTG_DIEPCTL_EPTYP_Msk /*!< Endpoint type */
lypinator 0:bb348c97df44 16484 #define USB_OTG_DIEPCTL_EPTYP_0 (0x1U << USB_OTG_DIEPCTL_EPTYP_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 16485 #define USB_OTG_DIEPCTL_EPTYP_1 (0x2U << USB_OTG_DIEPCTL_EPTYP_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 16486 #define USB_OTG_DIEPCTL_STALL_Pos (21U)
lypinator 0:bb348c97df44 16487 #define USB_OTG_DIEPCTL_STALL_Msk (0x1U << USB_OTG_DIEPCTL_STALL_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 16488 #define USB_OTG_DIEPCTL_STALL USB_OTG_DIEPCTL_STALL_Msk /*!< STALL handshake */
lypinator 0:bb348c97df44 16489
lypinator 0:bb348c97df44 16490 #define USB_OTG_DIEPCTL_TXFNUM_Pos (22U)
lypinator 0:bb348c97df44 16491 #define USB_OTG_DIEPCTL_TXFNUM_Msk (0xFU << USB_OTG_DIEPCTL_TXFNUM_Pos) /*!< 0x03C00000 */
lypinator 0:bb348c97df44 16492 #define USB_OTG_DIEPCTL_TXFNUM USB_OTG_DIEPCTL_TXFNUM_Msk /*!< TxFIFO number */
lypinator 0:bb348c97df44 16493 #define USB_OTG_DIEPCTL_TXFNUM_0 (0x1U << USB_OTG_DIEPCTL_TXFNUM_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 16494 #define USB_OTG_DIEPCTL_TXFNUM_1 (0x2U << USB_OTG_DIEPCTL_TXFNUM_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 16495 #define USB_OTG_DIEPCTL_TXFNUM_2 (0x4U << USB_OTG_DIEPCTL_TXFNUM_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 16496 #define USB_OTG_DIEPCTL_TXFNUM_3 (0x8U << USB_OTG_DIEPCTL_TXFNUM_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 16497 #define USB_OTG_DIEPCTL_CNAK_Pos (26U)
lypinator 0:bb348c97df44 16498 #define USB_OTG_DIEPCTL_CNAK_Msk (0x1U << USB_OTG_DIEPCTL_CNAK_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 16499 #define USB_OTG_DIEPCTL_CNAK USB_OTG_DIEPCTL_CNAK_Msk /*!< Clear NAK */
lypinator 0:bb348c97df44 16500 #define USB_OTG_DIEPCTL_SNAK_Pos (27U)
lypinator 0:bb348c97df44 16501 #define USB_OTG_DIEPCTL_SNAK_Msk (0x1U << USB_OTG_DIEPCTL_SNAK_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 16502 #define USB_OTG_DIEPCTL_SNAK USB_OTG_DIEPCTL_SNAK_Msk /*!< Set NAK */
lypinator 0:bb348c97df44 16503 #define USB_OTG_DIEPCTL_SD0PID_SEVNFRM_Pos (28U)
lypinator 0:bb348c97df44 16504 #define USB_OTG_DIEPCTL_SD0PID_SEVNFRM_Msk (0x1U << USB_OTG_DIEPCTL_SD0PID_SEVNFRM_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 16505 #define USB_OTG_DIEPCTL_SD0PID_SEVNFRM USB_OTG_DIEPCTL_SD0PID_SEVNFRM_Msk /*!< Set DATA0 PID */
lypinator 0:bb348c97df44 16506 #define USB_OTG_DIEPCTL_SODDFRM_Pos (29U)
lypinator 0:bb348c97df44 16507 #define USB_OTG_DIEPCTL_SODDFRM_Msk (0x1U << USB_OTG_DIEPCTL_SODDFRM_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 16508 #define USB_OTG_DIEPCTL_SODDFRM USB_OTG_DIEPCTL_SODDFRM_Msk /*!< Set odd frame */
lypinator 0:bb348c97df44 16509 #define USB_OTG_DIEPCTL_EPDIS_Pos (30U)
lypinator 0:bb348c97df44 16510 #define USB_OTG_DIEPCTL_EPDIS_Msk (0x1U << USB_OTG_DIEPCTL_EPDIS_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 16511 #define USB_OTG_DIEPCTL_EPDIS USB_OTG_DIEPCTL_EPDIS_Msk /*!< Endpoint disable */
lypinator 0:bb348c97df44 16512 #define USB_OTG_DIEPCTL_EPENA_Pos (31U)
lypinator 0:bb348c97df44 16513 #define USB_OTG_DIEPCTL_EPENA_Msk (0x1U << USB_OTG_DIEPCTL_EPENA_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 16514 #define USB_OTG_DIEPCTL_EPENA USB_OTG_DIEPCTL_EPENA_Msk /*!< Endpoint enable */
lypinator 0:bb348c97df44 16515
lypinator 0:bb348c97df44 16516 /******************** Bit definition for USB_OTG_HCCHAR register ********************/
lypinator 0:bb348c97df44 16517 #define USB_OTG_HCCHAR_MPSIZ_Pos (0U)
lypinator 0:bb348c97df44 16518 #define USB_OTG_HCCHAR_MPSIZ_Msk (0x7FFU << USB_OTG_HCCHAR_MPSIZ_Pos) /*!< 0x000007FF */
lypinator 0:bb348c97df44 16519 #define USB_OTG_HCCHAR_MPSIZ USB_OTG_HCCHAR_MPSIZ_Msk /*!< Maximum packet size */
lypinator 0:bb348c97df44 16520
lypinator 0:bb348c97df44 16521 #define USB_OTG_HCCHAR_EPNUM_Pos (11U)
lypinator 0:bb348c97df44 16522 #define USB_OTG_HCCHAR_EPNUM_Msk (0xFU << USB_OTG_HCCHAR_EPNUM_Pos) /*!< 0x00007800 */
lypinator 0:bb348c97df44 16523 #define USB_OTG_HCCHAR_EPNUM USB_OTG_HCCHAR_EPNUM_Msk /*!< Endpoint number */
lypinator 0:bb348c97df44 16524 #define USB_OTG_HCCHAR_EPNUM_0 (0x1U << USB_OTG_HCCHAR_EPNUM_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 16525 #define USB_OTG_HCCHAR_EPNUM_1 (0x2U << USB_OTG_HCCHAR_EPNUM_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 16526 #define USB_OTG_HCCHAR_EPNUM_2 (0x4U << USB_OTG_HCCHAR_EPNUM_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 16527 #define USB_OTG_HCCHAR_EPNUM_3 (0x8U << USB_OTG_HCCHAR_EPNUM_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 16528 #define USB_OTG_HCCHAR_EPDIR_Pos (15U)
lypinator 0:bb348c97df44 16529 #define USB_OTG_HCCHAR_EPDIR_Msk (0x1U << USB_OTG_HCCHAR_EPDIR_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 16530 #define USB_OTG_HCCHAR_EPDIR USB_OTG_HCCHAR_EPDIR_Msk /*!< Endpoint direction */
lypinator 0:bb348c97df44 16531 #define USB_OTG_HCCHAR_LSDEV_Pos (17U)
lypinator 0:bb348c97df44 16532 #define USB_OTG_HCCHAR_LSDEV_Msk (0x1U << USB_OTG_HCCHAR_LSDEV_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 16533 #define USB_OTG_HCCHAR_LSDEV USB_OTG_HCCHAR_LSDEV_Msk /*!< Low-speed device */
lypinator 0:bb348c97df44 16534
lypinator 0:bb348c97df44 16535 #define USB_OTG_HCCHAR_EPTYP_Pos (18U)
lypinator 0:bb348c97df44 16536 #define USB_OTG_HCCHAR_EPTYP_Msk (0x3U << USB_OTG_HCCHAR_EPTYP_Pos) /*!< 0x000C0000 */
lypinator 0:bb348c97df44 16537 #define USB_OTG_HCCHAR_EPTYP USB_OTG_HCCHAR_EPTYP_Msk /*!< Endpoint type */
lypinator 0:bb348c97df44 16538 #define USB_OTG_HCCHAR_EPTYP_0 (0x1U << USB_OTG_HCCHAR_EPTYP_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 16539 #define USB_OTG_HCCHAR_EPTYP_1 (0x2U << USB_OTG_HCCHAR_EPTYP_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 16540
lypinator 0:bb348c97df44 16541 #define USB_OTG_HCCHAR_MC_Pos (20U)
lypinator 0:bb348c97df44 16542 #define USB_OTG_HCCHAR_MC_Msk (0x3U << USB_OTG_HCCHAR_MC_Pos) /*!< 0x00300000 */
lypinator 0:bb348c97df44 16543 #define USB_OTG_HCCHAR_MC USB_OTG_HCCHAR_MC_Msk /*!< Multi Count (MC) / Error Count (EC) */
lypinator 0:bb348c97df44 16544 #define USB_OTG_HCCHAR_MC_0 (0x1U << USB_OTG_HCCHAR_MC_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 16545 #define USB_OTG_HCCHAR_MC_1 (0x2U << USB_OTG_HCCHAR_MC_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 16546
lypinator 0:bb348c97df44 16547 #define USB_OTG_HCCHAR_DAD_Pos (22U)
lypinator 0:bb348c97df44 16548 #define USB_OTG_HCCHAR_DAD_Msk (0x7FU << USB_OTG_HCCHAR_DAD_Pos) /*!< 0x1FC00000 */
lypinator 0:bb348c97df44 16549 #define USB_OTG_HCCHAR_DAD USB_OTG_HCCHAR_DAD_Msk /*!< Device address */
lypinator 0:bb348c97df44 16550 #define USB_OTG_HCCHAR_DAD_0 (0x01U << USB_OTG_HCCHAR_DAD_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 16551 #define USB_OTG_HCCHAR_DAD_1 (0x02U << USB_OTG_HCCHAR_DAD_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 16552 #define USB_OTG_HCCHAR_DAD_2 (0x04U << USB_OTG_HCCHAR_DAD_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 16553 #define USB_OTG_HCCHAR_DAD_3 (0x08U << USB_OTG_HCCHAR_DAD_Pos) /*!< 0x02000000 */
lypinator 0:bb348c97df44 16554 #define USB_OTG_HCCHAR_DAD_4 (0x10U << USB_OTG_HCCHAR_DAD_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 16555 #define USB_OTG_HCCHAR_DAD_5 (0x20U << USB_OTG_HCCHAR_DAD_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 16556 #define USB_OTG_HCCHAR_DAD_6 (0x40U << USB_OTG_HCCHAR_DAD_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 16557 #define USB_OTG_HCCHAR_ODDFRM_Pos (29U)
lypinator 0:bb348c97df44 16558 #define USB_OTG_HCCHAR_ODDFRM_Msk (0x1U << USB_OTG_HCCHAR_ODDFRM_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 16559 #define USB_OTG_HCCHAR_ODDFRM USB_OTG_HCCHAR_ODDFRM_Msk /*!< Odd frame */
lypinator 0:bb348c97df44 16560 #define USB_OTG_HCCHAR_CHDIS_Pos (30U)
lypinator 0:bb348c97df44 16561 #define USB_OTG_HCCHAR_CHDIS_Msk (0x1U << USB_OTG_HCCHAR_CHDIS_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 16562 #define USB_OTG_HCCHAR_CHDIS USB_OTG_HCCHAR_CHDIS_Msk /*!< Channel disable */
lypinator 0:bb348c97df44 16563 #define USB_OTG_HCCHAR_CHENA_Pos (31U)
lypinator 0:bb348c97df44 16564 #define USB_OTG_HCCHAR_CHENA_Msk (0x1U << USB_OTG_HCCHAR_CHENA_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 16565 #define USB_OTG_HCCHAR_CHENA USB_OTG_HCCHAR_CHENA_Msk /*!< Channel enable */
lypinator 0:bb348c97df44 16566
lypinator 0:bb348c97df44 16567 /******************** Bit definition for USB_OTG_HCSPLT register ********************/
lypinator 0:bb348c97df44 16568
lypinator 0:bb348c97df44 16569 #define USB_OTG_HCSPLT_PRTADDR_Pos (0U)
lypinator 0:bb348c97df44 16570 #define USB_OTG_HCSPLT_PRTADDR_Msk (0x7FU << USB_OTG_HCSPLT_PRTADDR_Pos) /*!< 0x0000007F */
lypinator 0:bb348c97df44 16571 #define USB_OTG_HCSPLT_PRTADDR USB_OTG_HCSPLT_PRTADDR_Msk /*!< Port address */
lypinator 0:bb348c97df44 16572 #define USB_OTG_HCSPLT_PRTADDR_0 (0x01U << USB_OTG_HCSPLT_PRTADDR_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 16573 #define USB_OTG_HCSPLT_PRTADDR_1 (0x02U << USB_OTG_HCSPLT_PRTADDR_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 16574 #define USB_OTG_HCSPLT_PRTADDR_2 (0x04U << USB_OTG_HCSPLT_PRTADDR_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 16575 #define USB_OTG_HCSPLT_PRTADDR_3 (0x08U << USB_OTG_HCSPLT_PRTADDR_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 16576 #define USB_OTG_HCSPLT_PRTADDR_4 (0x10U << USB_OTG_HCSPLT_PRTADDR_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 16577 #define USB_OTG_HCSPLT_PRTADDR_5 (0x20U << USB_OTG_HCSPLT_PRTADDR_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 16578 #define USB_OTG_HCSPLT_PRTADDR_6 (0x40U << USB_OTG_HCSPLT_PRTADDR_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 16579
lypinator 0:bb348c97df44 16580 #define USB_OTG_HCSPLT_HUBADDR_Pos (7U)
lypinator 0:bb348c97df44 16581 #define USB_OTG_HCSPLT_HUBADDR_Msk (0x7FU << USB_OTG_HCSPLT_HUBADDR_Pos) /*!< 0x00003F80 */
lypinator 0:bb348c97df44 16582 #define USB_OTG_HCSPLT_HUBADDR USB_OTG_HCSPLT_HUBADDR_Msk /*!< Hub address */
lypinator 0:bb348c97df44 16583 #define USB_OTG_HCSPLT_HUBADDR_0 (0x01U << USB_OTG_HCSPLT_HUBADDR_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 16584 #define USB_OTG_HCSPLT_HUBADDR_1 (0x02U << USB_OTG_HCSPLT_HUBADDR_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 16585 #define USB_OTG_HCSPLT_HUBADDR_2 (0x04U << USB_OTG_HCSPLT_HUBADDR_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 16586 #define USB_OTG_HCSPLT_HUBADDR_3 (0x08U << USB_OTG_HCSPLT_HUBADDR_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 16587 #define USB_OTG_HCSPLT_HUBADDR_4 (0x10U << USB_OTG_HCSPLT_HUBADDR_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 16588 #define USB_OTG_HCSPLT_HUBADDR_5 (0x20U << USB_OTG_HCSPLT_HUBADDR_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 16589 #define USB_OTG_HCSPLT_HUBADDR_6 (0x40U << USB_OTG_HCSPLT_HUBADDR_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 16590
lypinator 0:bb348c97df44 16591 #define USB_OTG_HCSPLT_XACTPOS_Pos (14U)
lypinator 0:bb348c97df44 16592 #define USB_OTG_HCSPLT_XACTPOS_Msk (0x3U << USB_OTG_HCSPLT_XACTPOS_Pos) /*!< 0x0000C000 */
lypinator 0:bb348c97df44 16593 #define USB_OTG_HCSPLT_XACTPOS USB_OTG_HCSPLT_XACTPOS_Msk /*!< XACTPOS */
lypinator 0:bb348c97df44 16594 #define USB_OTG_HCSPLT_XACTPOS_0 (0x1U << USB_OTG_HCSPLT_XACTPOS_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 16595 #define USB_OTG_HCSPLT_XACTPOS_1 (0x2U << USB_OTG_HCSPLT_XACTPOS_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 16596 #define USB_OTG_HCSPLT_COMPLSPLT_Pos (16U)
lypinator 0:bb348c97df44 16597 #define USB_OTG_HCSPLT_COMPLSPLT_Msk (0x1U << USB_OTG_HCSPLT_COMPLSPLT_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 16598 #define USB_OTG_HCSPLT_COMPLSPLT USB_OTG_HCSPLT_COMPLSPLT_Msk /*!< Do complete split */
lypinator 0:bb348c97df44 16599 #define USB_OTG_HCSPLT_SPLITEN_Pos (31U)
lypinator 0:bb348c97df44 16600 #define USB_OTG_HCSPLT_SPLITEN_Msk (0x1U << USB_OTG_HCSPLT_SPLITEN_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 16601 #define USB_OTG_HCSPLT_SPLITEN USB_OTG_HCSPLT_SPLITEN_Msk /*!< Split enable */
lypinator 0:bb348c97df44 16602
lypinator 0:bb348c97df44 16603 /******************** Bit definition for USB_OTG_HCINT register ********************/
lypinator 0:bb348c97df44 16604 #define USB_OTG_HCINT_XFRC_Pos (0U)
lypinator 0:bb348c97df44 16605 #define USB_OTG_HCINT_XFRC_Msk (0x1U << USB_OTG_HCINT_XFRC_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 16606 #define USB_OTG_HCINT_XFRC USB_OTG_HCINT_XFRC_Msk /*!< Transfer completed */
lypinator 0:bb348c97df44 16607 #define USB_OTG_HCINT_CHH_Pos (1U)
lypinator 0:bb348c97df44 16608 #define USB_OTG_HCINT_CHH_Msk (0x1U << USB_OTG_HCINT_CHH_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 16609 #define USB_OTG_HCINT_CHH USB_OTG_HCINT_CHH_Msk /*!< Channel halted */
lypinator 0:bb348c97df44 16610 #define USB_OTG_HCINT_AHBERR_Pos (2U)
lypinator 0:bb348c97df44 16611 #define USB_OTG_HCINT_AHBERR_Msk (0x1U << USB_OTG_HCINT_AHBERR_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 16612 #define USB_OTG_HCINT_AHBERR USB_OTG_HCINT_AHBERR_Msk /*!< AHB error */
lypinator 0:bb348c97df44 16613 #define USB_OTG_HCINT_STALL_Pos (3U)
lypinator 0:bb348c97df44 16614 #define USB_OTG_HCINT_STALL_Msk (0x1U << USB_OTG_HCINT_STALL_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 16615 #define USB_OTG_HCINT_STALL USB_OTG_HCINT_STALL_Msk /*!< STALL response received interrupt */
lypinator 0:bb348c97df44 16616 #define USB_OTG_HCINT_NAK_Pos (4U)
lypinator 0:bb348c97df44 16617 #define USB_OTG_HCINT_NAK_Msk (0x1U << USB_OTG_HCINT_NAK_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 16618 #define USB_OTG_HCINT_NAK USB_OTG_HCINT_NAK_Msk /*!< NAK response received interrupt */
lypinator 0:bb348c97df44 16619 #define USB_OTG_HCINT_ACK_Pos (5U)
lypinator 0:bb348c97df44 16620 #define USB_OTG_HCINT_ACK_Msk (0x1U << USB_OTG_HCINT_ACK_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 16621 #define USB_OTG_HCINT_ACK USB_OTG_HCINT_ACK_Msk /*!< ACK response received/transmitted interrupt */
lypinator 0:bb348c97df44 16622 #define USB_OTG_HCINT_NYET_Pos (6U)
lypinator 0:bb348c97df44 16623 #define USB_OTG_HCINT_NYET_Msk (0x1U << USB_OTG_HCINT_NYET_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 16624 #define USB_OTG_HCINT_NYET USB_OTG_HCINT_NYET_Msk /*!< Response received interrupt */
lypinator 0:bb348c97df44 16625 #define USB_OTG_HCINT_TXERR_Pos (7U)
lypinator 0:bb348c97df44 16626 #define USB_OTG_HCINT_TXERR_Msk (0x1U << USB_OTG_HCINT_TXERR_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 16627 #define USB_OTG_HCINT_TXERR USB_OTG_HCINT_TXERR_Msk /*!< Transaction error */
lypinator 0:bb348c97df44 16628 #define USB_OTG_HCINT_BBERR_Pos (8U)
lypinator 0:bb348c97df44 16629 #define USB_OTG_HCINT_BBERR_Msk (0x1U << USB_OTG_HCINT_BBERR_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 16630 #define USB_OTG_HCINT_BBERR USB_OTG_HCINT_BBERR_Msk /*!< Babble error */
lypinator 0:bb348c97df44 16631 #define USB_OTG_HCINT_FRMOR_Pos (9U)
lypinator 0:bb348c97df44 16632 #define USB_OTG_HCINT_FRMOR_Msk (0x1U << USB_OTG_HCINT_FRMOR_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 16633 #define USB_OTG_HCINT_FRMOR USB_OTG_HCINT_FRMOR_Msk /*!< Frame overrun */
lypinator 0:bb348c97df44 16634 #define USB_OTG_HCINT_DTERR_Pos (10U)
lypinator 0:bb348c97df44 16635 #define USB_OTG_HCINT_DTERR_Msk (0x1U << USB_OTG_HCINT_DTERR_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 16636 #define USB_OTG_HCINT_DTERR USB_OTG_HCINT_DTERR_Msk /*!< Data toggle error */
lypinator 0:bb348c97df44 16637
lypinator 0:bb348c97df44 16638 /******************** Bit definition for USB_OTG_DIEPINT register ********************/
lypinator 0:bb348c97df44 16639 #define USB_OTG_DIEPINT_XFRC_Pos (0U)
lypinator 0:bb348c97df44 16640 #define USB_OTG_DIEPINT_XFRC_Msk (0x1U << USB_OTG_DIEPINT_XFRC_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 16641 #define USB_OTG_DIEPINT_XFRC USB_OTG_DIEPINT_XFRC_Msk /*!< Transfer completed interrupt */
lypinator 0:bb348c97df44 16642 #define USB_OTG_DIEPINT_EPDISD_Pos (1U)
lypinator 0:bb348c97df44 16643 #define USB_OTG_DIEPINT_EPDISD_Msk (0x1U << USB_OTG_DIEPINT_EPDISD_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 16644 #define USB_OTG_DIEPINT_EPDISD USB_OTG_DIEPINT_EPDISD_Msk /*!< Endpoint disabled interrupt */
lypinator 0:bb348c97df44 16645 #define USB_OTG_DIEPINT_TOC_Pos (3U)
lypinator 0:bb348c97df44 16646 #define USB_OTG_DIEPINT_TOC_Msk (0x1U << USB_OTG_DIEPINT_TOC_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 16647 #define USB_OTG_DIEPINT_TOC USB_OTG_DIEPINT_TOC_Msk /*!< Timeout condition */
lypinator 0:bb348c97df44 16648 #define USB_OTG_DIEPINT_ITTXFE_Pos (4U)
lypinator 0:bb348c97df44 16649 #define USB_OTG_DIEPINT_ITTXFE_Msk (0x1U << USB_OTG_DIEPINT_ITTXFE_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 16650 #define USB_OTG_DIEPINT_ITTXFE USB_OTG_DIEPINT_ITTXFE_Msk /*!< IN token received when TxFIFO is empty */
lypinator 0:bb348c97df44 16651 #define USB_OTG_DIEPINT_INEPNE_Pos (6U)
lypinator 0:bb348c97df44 16652 #define USB_OTG_DIEPINT_INEPNE_Msk (0x1U << USB_OTG_DIEPINT_INEPNE_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 16653 #define USB_OTG_DIEPINT_INEPNE USB_OTG_DIEPINT_INEPNE_Msk /*!< IN endpoint NAK effective */
lypinator 0:bb348c97df44 16654 #define USB_OTG_DIEPINT_TXFE_Pos (7U)
lypinator 0:bb348c97df44 16655 #define USB_OTG_DIEPINT_TXFE_Msk (0x1U << USB_OTG_DIEPINT_TXFE_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 16656 #define USB_OTG_DIEPINT_TXFE USB_OTG_DIEPINT_TXFE_Msk /*!< Transmit FIFO empty */
lypinator 0:bb348c97df44 16657 #define USB_OTG_DIEPINT_TXFIFOUDRN_Pos (8U)
lypinator 0:bb348c97df44 16658 #define USB_OTG_DIEPINT_TXFIFOUDRN_Msk (0x1U << USB_OTG_DIEPINT_TXFIFOUDRN_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 16659 #define USB_OTG_DIEPINT_TXFIFOUDRN USB_OTG_DIEPINT_TXFIFOUDRN_Msk /*!< Transmit Fifo Underrun */
lypinator 0:bb348c97df44 16660 #define USB_OTG_DIEPINT_BNA_Pos (9U)
lypinator 0:bb348c97df44 16661 #define USB_OTG_DIEPINT_BNA_Msk (0x1U << USB_OTG_DIEPINT_BNA_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 16662 #define USB_OTG_DIEPINT_BNA USB_OTG_DIEPINT_BNA_Msk /*!< Buffer not available interrupt */
lypinator 0:bb348c97df44 16663 #define USB_OTG_DIEPINT_PKTDRPSTS_Pos (11U)
lypinator 0:bb348c97df44 16664 #define USB_OTG_DIEPINT_PKTDRPSTS_Msk (0x1U << USB_OTG_DIEPINT_PKTDRPSTS_Pos) /*!< 0x00000800 */
lypinator 0:bb348c97df44 16665 #define USB_OTG_DIEPINT_PKTDRPSTS USB_OTG_DIEPINT_PKTDRPSTS_Msk /*!< Packet dropped status */
lypinator 0:bb348c97df44 16666 #define USB_OTG_DIEPINT_BERR_Pos (12U)
lypinator 0:bb348c97df44 16667 #define USB_OTG_DIEPINT_BERR_Msk (0x1U << USB_OTG_DIEPINT_BERR_Pos) /*!< 0x00001000 */
lypinator 0:bb348c97df44 16668 #define USB_OTG_DIEPINT_BERR USB_OTG_DIEPINT_BERR_Msk /*!< Babble error interrupt */
lypinator 0:bb348c97df44 16669 #define USB_OTG_DIEPINT_NAK_Pos (13U)
lypinator 0:bb348c97df44 16670 #define USB_OTG_DIEPINT_NAK_Msk (0x1U << USB_OTG_DIEPINT_NAK_Pos) /*!< 0x00002000 */
lypinator 0:bb348c97df44 16671 #define USB_OTG_DIEPINT_NAK USB_OTG_DIEPINT_NAK_Msk /*!< NAK interrupt */
lypinator 0:bb348c97df44 16672
lypinator 0:bb348c97df44 16673 /******************** Bit definition forUSB_OTG_HCINTMSK register ********************/
lypinator 0:bb348c97df44 16674 #define USB_OTG_HCINTMSK_XFRCM_Pos (0U)
lypinator 0:bb348c97df44 16675 #define USB_OTG_HCINTMSK_XFRCM_Msk (0x1U << USB_OTG_HCINTMSK_XFRCM_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 16676 #define USB_OTG_HCINTMSK_XFRCM USB_OTG_HCINTMSK_XFRCM_Msk /*!< Transfer completed mask */
lypinator 0:bb348c97df44 16677 #define USB_OTG_HCINTMSK_CHHM_Pos (1U)
lypinator 0:bb348c97df44 16678 #define USB_OTG_HCINTMSK_CHHM_Msk (0x1U << USB_OTG_HCINTMSK_CHHM_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 16679 #define USB_OTG_HCINTMSK_CHHM USB_OTG_HCINTMSK_CHHM_Msk /*!< Channel halted mask */
lypinator 0:bb348c97df44 16680 #define USB_OTG_HCINTMSK_AHBERR_Pos (2U)
lypinator 0:bb348c97df44 16681 #define USB_OTG_HCINTMSK_AHBERR_Msk (0x1U << USB_OTG_HCINTMSK_AHBERR_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 16682 #define USB_OTG_HCINTMSK_AHBERR USB_OTG_HCINTMSK_AHBERR_Msk /*!< AHB error */
lypinator 0:bb348c97df44 16683 #define USB_OTG_HCINTMSK_STALLM_Pos (3U)
lypinator 0:bb348c97df44 16684 #define USB_OTG_HCINTMSK_STALLM_Msk (0x1U << USB_OTG_HCINTMSK_STALLM_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 16685 #define USB_OTG_HCINTMSK_STALLM USB_OTG_HCINTMSK_STALLM_Msk /*!< STALL response received interrupt mask */
lypinator 0:bb348c97df44 16686 #define USB_OTG_HCINTMSK_NAKM_Pos (4U)
lypinator 0:bb348c97df44 16687 #define USB_OTG_HCINTMSK_NAKM_Msk (0x1U << USB_OTG_HCINTMSK_NAKM_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 16688 #define USB_OTG_HCINTMSK_NAKM USB_OTG_HCINTMSK_NAKM_Msk /*!< NAK response received interrupt mask */
lypinator 0:bb348c97df44 16689 #define USB_OTG_HCINTMSK_ACKM_Pos (5U)
lypinator 0:bb348c97df44 16690 #define USB_OTG_HCINTMSK_ACKM_Msk (0x1U << USB_OTG_HCINTMSK_ACKM_Pos) /*!< 0x00000020 */
lypinator 0:bb348c97df44 16691 #define USB_OTG_HCINTMSK_ACKM USB_OTG_HCINTMSK_ACKM_Msk /*!< ACK response received/transmitted interrupt mask */
lypinator 0:bb348c97df44 16692 #define USB_OTG_HCINTMSK_NYET_Pos (6U)
lypinator 0:bb348c97df44 16693 #define USB_OTG_HCINTMSK_NYET_Msk (0x1U << USB_OTG_HCINTMSK_NYET_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 16694 #define USB_OTG_HCINTMSK_NYET USB_OTG_HCINTMSK_NYET_Msk /*!< response received interrupt mask */
lypinator 0:bb348c97df44 16695 #define USB_OTG_HCINTMSK_TXERRM_Pos (7U)
lypinator 0:bb348c97df44 16696 #define USB_OTG_HCINTMSK_TXERRM_Msk (0x1U << USB_OTG_HCINTMSK_TXERRM_Pos) /*!< 0x00000080 */
lypinator 0:bb348c97df44 16697 #define USB_OTG_HCINTMSK_TXERRM USB_OTG_HCINTMSK_TXERRM_Msk /*!< Transaction error mask */
lypinator 0:bb348c97df44 16698 #define USB_OTG_HCINTMSK_BBERRM_Pos (8U)
lypinator 0:bb348c97df44 16699 #define USB_OTG_HCINTMSK_BBERRM_Msk (0x1U << USB_OTG_HCINTMSK_BBERRM_Pos) /*!< 0x00000100 */
lypinator 0:bb348c97df44 16700 #define USB_OTG_HCINTMSK_BBERRM USB_OTG_HCINTMSK_BBERRM_Msk /*!< Babble error mask */
lypinator 0:bb348c97df44 16701 #define USB_OTG_HCINTMSK_FRMORM_Pos (9U)
lypinator 0:bb348c97df44 16702 #define USB_OTG_HCINTMSK_FRMORM_Msk (0x1U << USB_OTG_HCINTMSK_FRMORM_Pos) /*!< 0x00000200 */
lypinator 0:bb348c97df44 16703 #define USB_OTG_HCINTMSK_FRMORM USB_OTG_HCINTMSK_FRMORM_Msk /*!< Frame overrun mask */
lypinator 0:bb348c97df44 16704 #define USB_OTG_HCINTMSK_DTERRM_Pos (10U)
lypinator 0:bb348c97df44 16705 #define USB_OTG_HCINTMSK_DTERRM_Msk (0x1U << USB_OTG_HCINTMSK_DTERRM_Pos) /*!< 0x00000400 */
lypinator 0:bb348c97df44 16706 #define USB_OTG_HCINTMSK_DTERRM USB_OTG_HCINTMSK_DTERRM_Msk /*!< Data toggle error mask */
lypinator 0:bb348c97df44 16707
lypinator 0:bb348c97df44 16708 /******************** Bit definition for USB_OTG_DIEPTSIZ register ********************/
lypinator 0:bb348c97df44 16709
lypinator 0:bb348c97df44 16710 #define USB_OTG_DIEPTSIZ_XFRSIZ_Pos (0U)
lypinator 0:bb348c97df44 16711 #define USB_OTG_DIEPTSIZ_XFRSIZ_Msk (0x7FFFFU << USB_OTG_DIEPTSIZ_XFRSIZ_Pos) /*!< 0x0007FFFF */
lypinator 0:bb348c97df44 16712 #define USB_OTG_DIEPTSIZ_XFRSIZ USB_OTG_DIEPTSIZ_XFRSIZ_Msk /*!< Transfer size */
lypinator 0:bb348c97df44 16713 #define USB_OTG_DIEPTSIZ_PKTCNT_Pos (19U)
lypinator 0:bb348c97df44 16714 #define USB_OTG_DIEPTSIZ_PKTCNT_Msk (0x3FFU << USB_OTG_DIEPTSIZ_PKTCNT_Pos) /*!< 0x1FF80000 */
lypinator 0:bb348c97df44 16715 #define USB_OTG_DIEPTSIZ_PKTCNT USB_OTG_DIEPTSIZ_PKTCNT_Msk /*!< Packet count */
lypinator 0:bb348c97df44 16716 #define USB_OTG_DIEPTSIZ_MULCNT_Pos (29U)
lypinator 0:bb348c97df44 16717 #define USB_OTG_DIEPTSIZ_MULCNT_Msk (0x3U << USB_OTG_DIEPTSIZ_MULCNT_Pos) /*!< 0x60000000 */
lypinator 0:bb348c97df44 16718 #define USB_OTG_DIEPTSIZ_MULCNT USB_OTG_DIEPTSIZ_MULCNT_Msk /*!< Packet count */
lypinator 0:bb348c97df44 16719 /******************** Bit definition for USB_OTG_HCTSIZ register ********************/
lypinator 0:bb348c97df44 16720 #define USB_OTG_HCTSIZ_XFRSIZ_Pos (0U)
lypinator 0:bb348c97df44 16721 #define USB_OTG_HCTSIZ_XFRSIZ_Msk (0x7FFFFU << USB_OTG_HCTSIZ_XFRSIZ_Pos) /*!< 0x0007FFFF */
lypinator 0:bb348c97df44 16722 #define USB_OTG_HCTSIZ_XFRSIZ USB_OTG_HCTSIZ_XFRSIZ_Msk /*!< Transfer size */
lypinator 0:bb348c97df44 16723 #define USB_OTG_HCTSIZ_PKTCNT_Pos (19U)
lypinator 0:bb348c97df44 16724 #define USB_OTG_HCTSIZ_PKTCNT_Msk (0x3FFU << USB_OTG_HCTSIZ_PKTCNT_Pos) /*!< 0x1FF80000 */
lypinator 0:bb348c97df44 16725 #define USB_OTG_HCTSIZ_PKTCNT USB_OTG_HCTSIZ_PKTCNT_Msk /*!< Packet count */
lypinator 0:bb348c97df44 16726 #define USB_OTG_HCTSIZ_DOPING_Pos (31U)
lypinator 0:bb348c97df44 16727 #define USB_OTG_HCTSIZ_DOPING_Msk (0x1U << USB_OTG_HCTSIZ_DOPING_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 16728 #define USB_OTG_HCTSIZ_DOPING USB_OTG_HCTSIZ_DOPING_Msk /*!< Do PING */
lypinator 0:bb348c97df44 16729 #define USB_OTG_HCTSIZ_DPID_Pos (29U)
lypinator 0:bb348c97df44 16730 #define USB_OTG_HCTSIZ_DPID_Msk (0x3U << USB_OTG_HCTSIZ_DPID_Pos) /*!< 0x60000000 */
lypinator 0:bb348c97df44 16731 #define USB_OTG_HCTSIZ_DPID USB_OTG_HCTSIZ_DPID_Msk /*!< Data PID */
lypinator 0:bb348c97df44 16732 #define USB_OTG_HCTSIZ_DPID_0 (0x1U << USB_OTG_HCTSIZ_DPID_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 16733 #define USB_OTG_HCTSIZ_DPID_1 (0x2U << USB_OTG_HCTSIZ_DPID_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 16734
lypinator 0:bb348c97df44 16735 /******************** Bit definition for USB_OTG_DIEPDMA register ********************/
lypinator 0:bb348c97df44 16736 #define USB_OTG_DIEPDMA_DMAADDR_Pos (0U)
lypinator 0:bb348c97df44 16737 #define USB_OTG_DIEPDMA_DMAADDR_Msk (0xFFFFFFFFU << USB_OTG_DIEPDMA_DMAADDR_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 16738 #define USB_OTG_DIEPDMA_DMAADDR USB_OTG_DIEPDMA_DMAADDR_Msk /*!< DMA address */
lypinator 0:bb348c97df44 16739
lypinator 0:bb348c97df44 16740 /******************** Bit definition for USB_OTG_HCDMA register ********************/
lypinator 0:bb348c97df44 16741 #define USB_OTG_HCDMA_DMAADDR_Pos (0U)
lypinator 0:bb348c97df44 16742 #define USB_OTG_HCDMA_DMAADDR_Msk (0xFFFFFFFFU << USB_OTG_HCDMA_DMAADDR_Pos) /*!< 0xFFFFFFFF */
lypinator 0:bb348c97df44 16743 #define USB_OTG_HCDMA_DMAADDR USB_OTG_HCDMA_DMAADDR_Msk /*!< DMA address */
lypinator 0:bb348c97df44 16744
lypinator 0:bb348c97df44 16745 /******************** Bit definition for USB_OTG_DTXFSTS register ********************/
lypinator 0:bb348c97df44 16746 #define USB_OTG_DTXFSTS_INEPTFSAV_Pos (0U)
lypinator 0:bb348c97df44 16747 #define USB_OTG_DTXFSTS_INEPTFSAV_Msk (0xFFFFU << USB_OTG_DTXFSTS_INEPTFSAV_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 16748 #define USB_OTG_DTXFSTS_INEPTFSAV USB_OTG_DTXFSTS_INEPTFSAV_Msk /*!< IN endpoint TxFIFO space available */
lypinator 0:bb348c97df44 16749
lypinator 0:bb348c97df44 16750 /******************** Bit definition for USB_OTG_DIEPTXF register ********************/
lypinator 0:bb348c97df44 16751 #define USB_OTG_DIEPTXF_INEPTXSA_Pos (0U)
lypinator 0:bb348c97df44 16752 #define USB_OTG_DIEPTXF_INEPTXSA_Msk (0xFFFFU << USB_OTG_DIEPTXF_INEPTXSA_Pos) /*!< 0x0000FFFF */
lypinator 0:bb348c97df44 16753 #define USB_OTG_DIEPTXF_INEPTXSA USB_OTG_DIEPTXF_INEPTXSA_Msk /*!< IN endpoint FIFOx transmit RAM start address */
lypinator 0:bb348c97df44 16754 #define USB_OTG_DIEPTXF_INEPTXFD_Pos (16U)
lypinator 0:bb348c97df44 16755 #define USB_OTG_DIEPTXF_INEPTXFD_Msk (0xFFFFU << USB_OTG_DIEPTXF_INEPTXFD_Pos) /*!< 0xFFFF0000 */
lypinator 0:bb348c97df44 16756 #define USB_OTG_DIEPTXF_INEPTXFD USB_OTG_DIEPTXF_INEPTXFD_Msk /*!< IN endpoint TxFIFO depth */
lypinator 0:bb348c97df44 16757
lypinator 0:bb348c97df44 16758 /******************** Bit definition for USB_OTG_DOEPCTL register ********************/
lypinator 0:bb348c97df44 16759
lypinator 0:bb348c97df44 16760 #define USB_OTG_DOEPCTL_MPSIZ_Pos (0U)
lypinator 0:bb348c97df44 16761 #define USB_OTG_DOEPCTL_MPSIZ_Msk (0x7FFU << USB_OTG_DOEPCTL_MPSIZ_Pos) /*!< 0x000007FF */
lypinator 0:bb348c97df44 16762 #define USB_OTG_DOEPCTL_MPSIZ USB_OTG_DOEPCTL_MPSIZ_Msk /*!< Maximum packet size */ /*!<Bit 1 */
lypinator 0:bb348c97df44 16763 #define USB_OTG_DOEPCTL_USBAEP_Pos (15U)
lypinator 0:bb348c97df44 16764 #define USB_OTG_DOEPCTL_USBAEP_Msk (0x1U << USB_OTG_DOEPCTL_USBAEP_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 16765 #define USB_OTG_DOEPCTL_USBAEP USB_OTG_DOEPCTL_USBAEP_Msk /*!< USB active endpoint */
lypinator 0:bb348c97df44 16766 #define USB_OTG_DOEPCTL_NAKSTS_Pos (17U)
lypinator 0:bb348c97df44 16767 #define USB_OTG_DOEPCTL_NAKSTS_Msk (0x1U << USB_OTG_DOEPCTL_NAKSTS_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 16768 #define USB_OTG_DOEPCTL_NAKSTS USB_OTG_DOEPCTL_NAKSTS_Msk /*!< NAK status */
lypinator 0:bb348c97df44 16769 #define USB_OTG_DOEPCTL_SD0PID_SEVNFRM_Pos (28U)
lypinator 0:bb348c97df44 16770 #define USB_OTG_DOEPCTL_SD0PID_SEVNFRM_Msk (0x1U << USB_OTG_DOEPCTL_SD0PID_SEVNFRM_Pos) /*!< 0x10000000 */
lypinator 0:bb348c97df44 16771 #define USB_OTG_DOEPCTL_SD0PID_SEVNFRM USB_OTG_DOEPCTL_SD0PID_SEVNFRM_Msk /*!< Set DATA0 PID */
lypinator 0:bb348c97df44 16772 #define USB_OTG_DOEPCTL_SODDFRM_Pos (29U)
lypinator 0:bb348c97df44 16773 #define USB_OTG_DOEPCTL_SODDFRM_Msk (0x1U << USB_OTG_DOEPCTL_SODDFRM_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 16774 #define USB_OTG_DOEPCTL_SODDFRM USB_OTG_DOEPCTL_SODDFRM_Msk /*!< Set odd frame */
lypinator 0:bb348c97df44 16775 #define USB_OTG_DOEPCTL_EPTYP_Pos (18U)
lypinator 0:bb348c97df44 16776 #define USB_OTG_DOEPCTL_EPTYP_Msk (0x3U << USB_OTG_DOEPCTL_EPTYP_Pos) /*!< 0x000C0000 */
lypinator 0:bb348c97df44 16777 #define USB_OTG_DOEPCTL_EPTYP USB_OTG_DOEPCTL_EPTYP_Msk /*!< Endpoint type */
lypinator 0:bb348c97df44 16778 #define USB_OTG_DOEPCTL_EPTYP_0 (0x1U << USB_OTG_DOEPCTL_EPTYP_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 16779 #define USB_OTG_DOEPCTL_EPTYP_1 (0x2U << USB_OTG_DOEPCTL_EPTYP_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 16780 #define USB_OTG_DOEPCTL_SNPM_Pos (20U)
lypinator 0:bb348c97df44 16781 #define USB_OTG_DOEPCTL_SNPM_Msk (0x1U << USB_OTG_DOEPCTL_SNPM_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 16782 #define USB_OTG_DOEPCTL_SNPM USB_OTG_DOEPCTL_SNPM_Msk /*!< Snoop mode */
lypinator 0:bb348c97df44 16783 #define USB_OTG_DOEPCTL_STALL_Pos (21U)
lypinator 0:bb348c97df44 16784 #define USB_OTG_DOEPCTL_STALL_Msk (0x1U << USB_OTG_DOEPCTL_STALL_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 16785 #define USB_OTG_DOEPCTL_STALL USB_OTG_DOEPCTL_STALL_Msk /*!< STALL handshake */
lypinator 0:bb348c97df44 16786 #define USB_OTG_DOEPCTL_CNAK_Pos (26U)
lypinator 0:bb348c97df44 16787 #define USB_OTG_DOEPCTL_CNAK_Msk (0x1U << USB_OTG_DOEPCTL_CNAK_Pos) /*!< 0x04000000 */
lypinator 0:bb348c97df44 16788 #define USB_OTG_DOEPCTL_CNAK USB_OTG_DOEPCTL_CNAK_Msk /*!< Clear NAK */
lypinator 0:bb348c97df44 16789 #define USB_OTG_DOEPCTL_SNAK_Pos (27U)
lypinator 0:bb348c97df44 16790 #define USB_OTG_DOEPCTL_SNAK_Msk (0x1U << USB_OTG_DOEPCTL_SNAK_Pos) /*!< 0x08000000 */
lypinator 0:bb348c97df44 16791 #define USB_OTG_DOEPCTL_SNAK USB_OTG_DOEPCTL_SNAK_Msk /*!< Set NAK */
lypinator 0:bb348c97df44 16792 #define USB_OTG_DOEPCTL_EPDIS_Pos (30U)
lypinator 0:bb348c97df44 16793 #define USB_OTG_DOEPCTL_EPDIS_Msk (0x1U << USB_OTG_DOEPCTL_EPDIS_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 16794 #define USB_OTG_DOEPCTL_EPDIS USB_OTG_DOEPCTL_EPDIS_Msk /*!< Endpoint disable */
lypinator 0:bb348c97df44 16795 #define USB_OTG_DOEPCTL_EPENA_Pos (31U)
lypinator 0:bb348c97df44 16796 #define USB_OTG_DOEPCTL_EPENA_Msk (0x1U << USB_OTG_DOEPCTL_EPENA_Pos) /*!< 0x80000000 */
lypinator 0:bb348c97df44 16797 #define USB_OTG_DOEPCTL_EPENA USB_OTG_DOEPCTL_EPENA_Msk /*!< Endpoint enable */
lypinator 0:bb348c97df44 16798
lypinator 0:bb348c97df44 16799 /******************** Bit definition for USB_OTG_DOEPINT register ********************/
lypinator 0:bb348c97df44 16800 #define USB_OTG_DOEPINT_XFRC_Pos (0U)
lypinator 0:bb348c97df44 16801 #define USB_OTG_DOEPINT_XFRC_Msk (0x1U << USB_OTG_DOEPINT_XFRC_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 16802 #define USB_OTG_DOEPINT_XFRC USB_OTG_DOEPINT_XFRC_Msk /*!< Transfer completed interrupt */
lypinator 0:bb348c97df44 16803 #define USB_OTG_DOEPINT_EPDISD_Pos (1U)
lypinator 0:bb348c97df44 16804 #define USB_OTG_DOEPINT_EPDISD_Msk (0x1U << USB_OTG_DOEPINT_EPDISD_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 16805 #define USB_OTG_DOEPINT_EPDISD USB_OTG_DOEPINT_EPDISD_Msk /*!< Endpoint disabled interrupt */
lypinator 0:bb348c97df44 16806 #define USB_OTG_DOEPINT_STUP_Pos (3U)
lypinator 0:bb348c97df44 16807 #define USB_OTG_DOEPINT_STUP_Msk (0x1U << USB_OTG_DOEPINT_STUP_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 16808 #define USB_OTG_DOEPINT_STUP USB_OTG_DOEPINT_STUP_Msk /*!< SETUP phase done */
lypinator 0:bb348c97df44 16809 #define USB_OTG_DOEPINT_OTEPDIS_Pos (4U)
lypinator 0:bb348c97df44 16810 #define USB_OTG_DOEPINT_OTEPDIS_Msk (0x1U << USB_OTG_DOEPINT_OTEPDIS_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 16811 #define USB_OTG_DOEPINT_OTEPDIS USB_OTG_DOEPINT_OTEPDIS_Msk /*!< OUT token received when endpoint disabled */
lypinator 0:bb348c97df44 16812 #define USB_OTG_DOEPINT_B2BSTUP_Pos (6U)
lypinator 0:bb348c97df44 16813 #define USB_OTG_DOEPINT_B2BSTUP_Msk (0x1U << USB_OTG_DOEPINT_B2BSTUP_Pos) /*!< 0x00000040 */
lypinator 0:bb348c97df44 16814 #define USB_OTG_DOEPINT_B2BSTUP USB_OTG_DOEPINT_B2BSTUP_Msk /*!< Back-to-back SETUP packets received */
lypinator 0:bb348c97df44 16815 #define USB_OTG_DOEPINT_NYET_Pos (14U)
lypinator 0:bb348c97df44 16816 #define USB_OTG_DOEPINT_NYET_Msk (0x1U << USB_OTG_DOEPINT_NYET_Pos) /*!< 0x00004000 */
lypinator 0:bb348c97df44 16817 #define USB_OTG_DOEPINT_NYET USB_OTG_DOEPINT_NYET_Msk /*!< NYET interrupt */
lypinator 0:bb348c97df44 16818
lypinator 0:bb348c97df44 16819 /******************** Bit definition for USB_OTG_DOEPTSIZ register ********************/
lypinator 0:bb348c97df44 16820
lypinator 0:bb348c97df44 16821 #define USB_OTG_DOEPTSIZ_XFRSIZ_Pos (0U)
lypinator 0:bb348c97df44 16822 #define USB_OTG_DOEPTSIZ_XFRSIZ_Msk (0x7FFFFU << USB_OTG_DOEPTSIZ_XFRSIZ_Pos) /*!< 0x0007FFFF */
lypinator 0:bb348c97df44 16823 #define USB_OTG_DOEPTSIZ_XFRSIZ USB_OTG_DOEPTSIZ_XFRSIZ_Msk /*!< Transfer size */
lypinator 0:bb348c97df44 16824 #define USB_OTG_DOEPTSIZ_PKTCNT_Pos (19U)
lypinator 0:bb348c97df44 16825 #define USB_OTG_DOEPTSIZ_PKTCNT_Msk (0x3FFU << USB_OTG_DOEPTSIZ_PKTCNT_Pos) /*!< 0x1FF80000 */
lypinator 0:bb348c97df44 16826 #define USB_OTG_DOEPTSIZ_PKTCNT USB_OTG_DOEPTSIZ_PKTCNT_Msk /*!< Packet count */
lypinator 0:bb348c97df44 16827
lypinator 0:bb348c97df44 16828 #define USB_OTG_DOEPTSIZ_STUPCNT_Pos (29U)
lypinator 0:bb348c97df44 16829 #define USB_OTG_DOEPTSIZ_STUPCNT_Msk (0x3U << USB_OTG_DOEPTSIZ_STUPCNT_Pos) /*!< 0x60000000 */
lypinator 0:bb348c97df44 16830 #define USB_OTG_DOEPTSIZ_STUPCNT USB_OTG_DOEPTSIZ_STUPCNT_Msk /*!< SETUP packet count */
lypinator 0:bb348c97df44 16831 #define USB_OTG_DOEPTSIZ_STUPCNT_0 (0x1U << USB_OTG_DOEPTSIZ_STUPCNT_Pos) /*!< 0x20000000 */
lypinator 0:bb348c97df44 16832 #define USB_OTG_DOEPTSIZ_STUPCNT_1 (0x2U << USB_OTG_DOEPTSIZ_STUPCNT_Pos) /*!< 0x40000000 */
lypinator 0:bb348c97df44 16833
lypinator 0:bb348c97df44 16834 /******************** Bit definition for PCGCCTL register ********************/
lypinator 0:bb348c97df44 16835 #define USB_OTG_PCGCCTL_STOPCLK_Pos (0U)
lypinator 0:bb348c97df44 16836 #define USB_OTG_PCGCCTL_STOPCLK_Msk (0x1U << USB_OTG_PCGCCTL_STOPCLK_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 16837 #define USB_OTG_PCGCCTL_STOPCLK USB_OTG_PCGCCTL_STOPCLK_Msk /*!< SETUP packet count */
lypinator 0:bb348c97df44 16838 #define USB_OTG_PCGCCTL_GATECLK_Pos (1U)
lypinator 0:bb348c97df44 16839 #define USB_OTG_PCGCCTL_GATECLK_Msk (0x1U << USB_OTG_PCGCCTL_GATECLK_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 16840 #define USB_OTG_PCGCCTL_GATECLK USB_OTG_PCGCCTL_GATECLK_Msk /*!<Bit 0 */
lypinator 0:bb348c97df44 16841 #define USB_OTG_PCGCCTL_PHYSUSP_Pos (4U)
lypinator 0:bb348c97df44 16842 #define USB_OTG_PCGCCTL_PHYSUSP_Msk (0x1U << USB_OTG_PCGCCTL_PHYSUSP_Pos) /*!< 0x00000010 */
lypinator 0:bb348c97df44 16843 #define USB_OTG_PCGCCTL_PHYSUSP USB_OTG_PCGCCTL_PHYSUSP_Msk /*!<Bit 1 */
lypinator 0:bb348c97df44 16844
lypinator 0:bb348c97df44 16845 /* Legacy define */
lypinator 0:bb348c97df44 16846 /******************** Bit definition for OTG register ********************/
lypinator 0:bb348c97df44 16847 #define USB_OTG_CHNUM_Pos (0U)
lypinator 0:bb348c97df44 16848 #define USB_OTG_CHNUM_Msk (0xFU << USB_OTG_CHNUM_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 16849 #define USB_OTG_CHNUM USB_OTG_CHNUM_Msk /*!< Channel number */
lypinator 0:bb348c97df44 16850 #define USB_OTG_CHNUM_0 (0x1U << USB_OTG_CHNUM_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 16851 #define USB_OTG_CHNUM_1 (0x2U << USB_OTG_CHNUM_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 16852 #define USB_OTG_CHNUM_2 (0x4U << USB_OTG_CHNUM_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 16853 #define USB_OTG_CHNUM_3 (0x8U << USB_OTG_CHNUM_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 16854 #define USB_OTG_BCNT_Pos (4U)
lypinator 0:bb348c97df44 16855 #define USB_OTG_BCNT_Msk (0x7FFU << USB_OTG_BCNT_Pos) /*!< 0x00007FF0 */
lypinator 0:bb348c97df44 16856 #define USB_OTG_BCNT USB_OTG_BCNT_Msk /*!< Byte count */
lypinator 0:bb348c97df44 16857
lypinator 0:bb348c97df44 16858 #define USB_OTG_DPID_Pos (15U)
lypinator 0:bb348c97df44 16859 #define USB_OTG_DPID_Msk (0x3U << USB_OTG_DPID_Pos) /*!< 0x00018000 */
lypinator 0:bb348c97df44 16860 #define USB_OTG_DPID USB_OTG_DPID_Msk /*!< Data PID */
lypinator 0:bb348c97df44 16861 #define USB_OTG_DPID_0 (0x1U << USB_OTG_DPID_Pos) /*!< 0x00008000 */
lypinator 0:bb348c97df44 16862 #define USB_OTG_DPID_1 (0x2U << USB_OTG_DPID_Pos) /*!< 0x00010000 */
lypinator 0:bb348c97df44 16863
lypinator 0:bb348c97df44 16864 #define USB_OTG_PKTSTS_Pos (17U)
lypinator 0:bb348c97df44 16865 #define USB_OTG_PKTSTS_Msk (0xFU << USB_OTG_PKTSTS_Pos) /*!< 0x001E0000 */
lypinator 0:bb348c97df44 16866 #define USB_OTG_PKTSTS USB_OTG_PKTSTS_Msk /*!< Packet status */
lypinator 0:bb348c97df44 16867 #define USB_OTG_PKTSTS_0 (0x1U << USB_OTG_PKTSTS_Pos) /*!< 0x00020000 */
lypinator 0:bb348c97df44 16868 #define USB_OTG_PKTSTS_1 (0x2U << USB_OTG_PKTSTS_Pos) /*!< 0x00040000 */
lypinator 0:bb348c97df44 16869 #define USB_OTG_PKTSTS_2 (0x4U << USB_OTG_PKTSTS_Pos) /*!< 0x00080000 */
lypinator 0:bb348c97df44 16870 #define USB_OTG_PKTSTS_3 (0x8U << USB_OTG_PKTSTS_Pos) /*!< 0x00100000 */
lypinator 0:bb348c97df44 16871
lypinator 0:bb348c97df44 16872 #define USB_OTG_EPNUM_Pos (0U)
lypinator 0:bb348c97df44 16873 #define USB_OTG_EPNUM_Msk (0xFU << USB_OTG_EPNUM_Pos) /*!< 0x0000000F */
lypinator 0:bb348c97df44 16874 #define USB_OTG_EPNUM USB_OTG_EPNUM_Msk /*!< Endpoint number */
lypinator 0:bb348c97df44 16875 #define USB_OTG_EPNUM_0 (0x1U << USB_OTG_EPNUM_Pos) /*!< 0x00000001 */
lypinator 0:bb348c97df44 16876 #define USB_OTG_EPNUM_1 (0x2U << USB_OTG_EPNUM_Pos) /*!< 0x00000002 */
lypinator 0:bb348c97df44 16877 #define USB_OTG_EPNUM_2 (0x4U << USB_OTG_EPNUM_Pos) /*!< 0x00000004 */
lypinator 0:bb348c97df44 16878 #define USB_OTG_EPNUM_3 (0x8U << USB_OTG_EPNUM_Pos) /*!< 0x00000008 */
lypinator 0:bb348c97df44 16879
lypinator 0:bb348c97df44 16880 #define USB_OTG_FRMNUM_Pos (21U)
lypinator 0:bb348c97df44 16881 #define USB_OTG_FRMNUM_Msk (0xFU << USB_OTG_FRMNUM_Pos) /*!< 0x01E00000 */
lypinator 0:bb348c97df44 16882 #define USB_OTG_FRMNUM USB_OTG_FRMNUM_Msk /*!< Frame number */
lypinator 0:bb348c97df44 16883 #define USB_OTG_FRMNUM_0 (0x1U << USB_OTG_FRMNUM_Pos) /*!< 0x00200000 */
lypinator 0:bb348c97df44 16884 #define USB_OTG_FRMNUM_1 (0x2U << USB_OTG_FRMNUM_Pos) /*!< 0x00400000 */
lypinator 0:bb348c97df44 16885 #define USB_OTG_FRMNUM_2 (0x4U << USB_OTG_FRMNUM_Pos) /*!< 0x00800000 */
lypinator 0:bb348c97df44 16886 #define USB_OTG_FRMNUM_3 (0x8U << USB_OTG_FRMNUM_Pos) /*!< 0x01000000 */
lypinator 0:bb348c97df44 16887 /**
lypinator 0:bb348c97df44 16888 * @}
lypinator 0:bb348c97df44 16889 */
lypinator 0:bb348c97df44 16890
lypinator 0:bb348c97df44 16891 /**
lypinator 0:bb348c97df44 16892 * @}
lypinator 0:bb348c97df44 16893 */
lypinator 0:bb348c97df44 16894
lypinator 0:bb348c97df44 16895 /** @addtogroup Exported_macros
lypinator 0:bb348c97df44 16896 * @{
lypinator 0:bb348c97df44 16897 */
lypinator 0:bb348c97df44 16898
lypinator 0:bb348c97df44 16899 /******************************* ADC Instances ********************************/
lypinator 0:bb348c97df44 16900 #define IS_ADC_ALL_INSTANCE(INSTANCE) (((INSTANCE) == ADC1) || \
lypinator 0:bb348c97df44 16901 ((INSTANCE) == ADC2) || \
lypinator 0:bb348c97df44 16902 ((INSTANCE) == ADC3))
lypinator 0:bb348c97df44 16903
lypinator 0:bb348c97df44 16904 #define IS_ADC_MULTIMODE_MASTER_INSTANCE(INSTANCE) ((INSTANCE) == ADC1)
lypinator 0:bb348c97df44 16905
lypinator 0:bb348c97df44 16906 #define IS_ADC_COMMON_INSTANCE(INSTANCE) ((INSTANCE) == ADC123_COMMON)
lypinator 0:bb348c97df44 16907
lypinator 0:bb348c97df44 16908 /******************************* CAN Instances ********************************/
lypinator 0:bb348c97df44 16909 #define IS_CAN_ALL_INSTANCE(INSTANCE) (((INSTANCE) == CAN1) || \
lypinator 0:bb348c97df44 16910 ((INSTANCE) == CAN2))
lypinator 0:bb348c97df44 16911 /******************************* CRC Instances ********************************/
lypinator 0:bb348c97df44 16912 #define IS_CRC_ALL_INSTANCE(INSTANCE) ((INSTANCE) == CRC)
lypinator 0:bb348c97df44 16913
lypinator 0:bb348c97df44 16914 /******************************* DAC Instances ********************************/
lypinator 0:bb348c97df44 16915 #define IS_DAC_ALL_INSTANCE(INSTANCE) ((INSTANCE) == DAC1)
lypinator 0:bb348c97df44 16916
lypinator 0:bb348c97df44 16917 /******************************* DCMI Instances *******************************/
lypinator 0:bb348c97df44 16918 #define IS_DCMI_ALL_INSTANCE(INSTANCE) ((INSTANCE) == DCMI)
lypinator 0:bb348c97df44 16919
lypinator 0:bb348c97df44 16920 /******************************* DMA2D Instances *******************************/
lypinator 0:bb348c97df44 16921 #define IS_DMA2D_ALL_INSTANCE(INSTANCE) ((INSTANCE) == DMA2D)
lypinator 0:bb348c97df44 16922
lypinator 0:bb348c97df44 16923 /******************************** DMA Instances *******************************/
lypinator 0:bb348c97df44 16924 #define IS_DMA_STREAM_ALL_INSTANCE(INSTANCE) (((INSTANCE) == DMA1_Stream0) || \
lypinator 0:bb348c97df44 16925 ((INSTANCE) == DMA1_Stream1) || \
lypinator 0:bb348c97df44 16926 ((INSTANCE) == DMA1_Stream2) || \
lypinator 0:bb348c97df44 16927 ((INSTANCE) == DMA1_Stream3) || \
lypinator 0:bb348c97df44 16928 ((INSTANCE) == DMA1_Stream4) || \
lypinator 0:bb348c97df44 16929 ((INSTANCE) == DMA1_Stream5) || \
lypinator 0:bb348c97df44 16930 ((INSTANCE) == DMA1_Stream6) || \
lypinator 0:bb348c97df44 16931 ((INSTANCE) == DMA1_Stream7) || \
lypinator 0:bb348c97df44 16932 ((INSTANCE) == DMA2_Stream0) || \
lypinator 0:bb348c97df44 16933 ((INSTANCE) == DMA2_Stream1) || \
lypinator 0:bb348c97df44 16934 ((INSTANCE) == DMA2_Stream2) || \
lypinator 0:bb348c97df44 16935 ((INSTANCE) == DMA2_Stream3) || \
lypinator 0:bb348c97df44 16936 ((INSTANCE) == DMA2_Stream4) || \
lypinator 0:bb348c97df44 16937 ((INSTANCE) == DMA2_Stream5) || \
lypinator 0:bb348c97df44 16938 ((INSTANCE) == DMA2_Stream6) || \
lypinator 0:bb348c97df44 16939 ((INSTANCE) == DMA2_Stream7))
lypinator 0:bb348c97df44 16940
lypinator 0:bb348c97df44 16941 /******************************* GPIO Instances *******************************/
lypinator 0:bb348c97df44 16942 #define IS_GPIO_ALL_INSTANCE(INSTANCE) (((INSTANCE) == GPIOA) || \
lypinator 0:bb348c97df44 16943 ((INSTANCE) == GPIOB) || \
lypinator 0:bb348c97df44 16944 ((INSTANCE) == GPIOC) || \
lypinator 0:bb348c97df44 16945 ((INSTANCE) == GPIOD) || \
lypinator 0:bb348c97df44 16946 ((INSTANCE) == GPIOE) || \
lypinator 0:bb348c97df44 16947 ((INSTANCE) == GPIOF) || \
lypinator 0:bb348c97df44 16948 ((INSTANCE) == GPIOG) || \
lypinator 0:bb348c97df44 16949 ((INSTANCE) == GPIOH) || \
lypinator 0:bb348c97df44 16950 ((INSTANCE) == GPIOI) || \
lypinator 0:bb348c97df44 16951 ((INSTANCE) == GPIOJ) || \
lypinator 0:bb348c97df44 16952 ((INSTANCE) == GPIOK))
lypinator 0:bb348c97df44 16953
lypinator 0:bb348c97df44 16954 /******************************** I2C Instances *******************************/
lypinator 0:bb348c97df44 16955 #define IS_I2C_ALL_INSTANCE(INSTANCE) (((INSTANCE) == I2C1) || \
lypinator 0:bb348c97df44 16956 ((INSTANCE) == I2C2) || \
lypinator 0:bb348c97df44 16957 ((INSTANCE) == I2C3))
lypinator 0:bb348c97df44 16958
lypinator 0:bb348c97df44 16959 /******************************* SMBUS Instances ******************************/
lypinator 0:bb348c97df44 16960 #define IS_SMBUS_ALL_INSTANCE IS_I2C_ALL_INSTANCE
lypinator 0:bb348c97df44 16961
lypinator 0:bb348c97df44 16962 /******************************** I2S Instances *******************************/
lypinator 0:bb348c97df44 16963
lypinator 0:bb348c97df44 16964 #define IS_I2S_ALL_INSTANCE(INSTANCE) (((INSTANCE) == SPI2) || \
lypinator 0:bb348c97df44 16965 ((INSTANCE) == SPI3))
lypinator 0:bb348c97df44 16966
lypinator 0:bb348c97df44 16967 /*************************** I2S Extended Instances ***************************/
lypinator 0:bb348c97df44 16968 #define IS_I2S_EXT_ALL_INSTANCE(INSTANCE) (((INSTANCE) == I2S2ext)|| \
lypinator 0:bb348c97df44 16969 ((INSTANCE) == I2S3ext))
lypinator 0:bb348c97df44 16970 /* Legacy Defines */
lypinator 0:bb348c97df44 16971 #define IS_I2S_ALL_INSTANCE_EXT IS_I2S_EXT_ALL_INSTANCE
lypinator 0:bb348c97df44 16972
lypinator 0:bb348c97df44 16973 /****************************** LTDC Instances ********************************/
lypinator 0:bb348c97df44 16974 #define IS_LTDC_ALL_INSTANCE(INSTANCE) ((INSTANCE) == LTDC)
lypinator 0:bb348c97df44 16975 /******************************* RNG Instances ********************************/
lypinator 0:bb348c97df44 16976 #define IS_RNG_ALL_INSTANCE(INSTANCE) ((INSTANCE) == RNG)
lypinator 0:bb348c97df44 16977
lypinator 0:bb348c97df44 16978 /****************************** RTC Instances *********************************/
lypinator 0:bb348c97df44 16979 #define IS_RTC_ALL_INSTANCE(INSTANCE) ((INSTANCE) == RTC)
lypinator 0:bb348c97df44 16980
lypinator 0:bb348c97df44 16981 /******************************* SAI Instances ********************************/
lypinator 0:bb348c97df44 16982 #define IS_SAI_ALL_INSTANCE(PERIPH) (((PERIPH) == SAI1_Block_A) || \
lypinator 0:bb348c97df44 16983 ((PERIPH) == SAI1_Block_B))
lypinator 0:bb348c97df44 16984 /* Legacy define */
lypinator 0:bb348c97df44 16985
lypinator 0:bb348c97df44 16986 #define IS_SAI_BLOCK_PERIPH IS_SAI_ALL_INSTANCE
lypinator 0:bb348c97df44 16987
lypinator 0:bb348c97df44 16988 /******************************** SPI Instances *******************************/
lypinator 0:bb348c97df44 16989 #define IS_SPI_ALL_INSTANCE(INSTANCE) (((INSTANCE) == SPI1) || \
lypinator 0:bb348c97df44 16990 ((INSTANCE) == SPI2) || \
lypinator 0:bb348c97df44 16991 ((INSTANCE) == SPI3) || \
lypinator 0:bb348c97df44 16992 ((INSTANCE) == SPI4) || \
lypinator 0:bb348c97df44 16993 ((INSTANCE) == SPI5) || \
lypinator 0:bb348c97df44 16994 ((INSTANCE) == SPI6))
lypinator 0:bb348c97df44 16995
lypinator 0:bb348c97df44 16996
lypinator 0:bb348c97df44 16997 /****************** TIM Instances : All supported instances *******************/
lypinator 0:bb348c97df44 16998 #define IS_TIM_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
lypinator 0:bb348c97df44 16999 ((INSTANCE) == TIM2) || \
lypinator 0:bb348c97df44 17000 ((INSTANCE) == TIM3) || \
lypinator 0:bb348c97df44 17001 ((INSTANCE) == TIM4) || \
lypinator 0:bb348c97df44 17002 ((INSTANCE) == TIM5) || \
lypinator 0:bb348c97df44 17003 ((INSTANCE) == TIM6) || \
lypinator 0:bb348c97df44 17004 ((INSTANCE) == TIM7) || \
lypinator 0:bb348c97df44 17005 ((INSTANCE) == TIM8) || \
lypinator 0:bb348c97df44 17006 ((INSTANCE) == TIM9) || \
lypinator 0:bb348c97df44 17007 ((INSTANCE) == TIM10)|| \
lypinator 0:bb348c97df44 17008 ((INSTANCE) == TIM11)|| \
lypinator 0:bb348c97df44 17009 ((INSTANCE) == TIM12)|| \
lypinator 0:bb348c97df44 17010 ((INSTANCE) == TIM13)|| \
lypinator 0:bb348c97df44 17011 ((INSTANCE) == TIM14))
lypinator 0:bb348c97df44 17012
lypinator 0:bb348c97df44 17013 /************* TIM Instances : at least 1 capture/compare channel *************/
lypinator 0:bb348c97df44 17014 #define IS_TIM_CC1_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
lypinator 0:bb348c97df44 17015 ((INSTANCE) == TIM2) || \
lypinator 0:bb348c97df44 17016 ((INSTANCE) == TIM3) || \
lypinator 0:bb348c97df44 17017 ((INSTANCE) == TIM4) || \
lypinator 0:bb348c97df44 17018 ((INSTANCE) == TIM5) || \
lypinator 0:bb348c97df44 17019 ((INSTANCE) == TIM8) || \
lypinator 0:bb348c97df44 17020 ((INSTANCE) == TIM9) || \
lypinator 0:bb348c97df44 17021 ((INSTANCE) == TIM10) || \
lypinator 0:bb348c97df44 17022 ((INSTANCE) == TIM11) || \
lypinator 0:bb348c97df44 17023 ((INSTANCE) == TIM12) || \
lypinator 0:bb348c97df44 17024 ((INSTANCE) == TIM13) || \
lypinator 0:bb348c97df44 17025 ((INSTANCE) == TIM14))
lypinator 0:bb348c97df44 17026
lypinator 0:bb348c97df44 17027 /************ TIM Instances : at least 2 capture/compare channels *************/
lypinator 0:bb348c97df44 17028 #define IS_TIM_CC2_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
lypinator 0:bb348c97df44 17029 ((INSTANCE) == TIM2) || \
lypinator 0:bb348c97df44 17030 ((INSTANCE) == TIM3) || \
lypinator 0:bb348c97df44 17031 ((INSTANCE) == TIM4) || \
lypinator 0:bb348c97df44 17032 ((INSTANCE) == TIM5) || \
lypinator 0:bb348c97df44 17033 ((INSTANCE) == TIM8) || \
lypinator 0:bb348c97df44 17034 ((INSTANCE) == TIM9) || \
lypinator 0:bb348c97df44 17035 ((INSTANCE) == TIM12))
lypinator 0:bb348c97df44 17036
lypinator 0:bb348c97df44 17037 /************ TIM Instances : at least 3 capture/compare channels *************/
lypinator 0:bb348c97df44 17038 #define IS_TIM_CC3_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
lypinator 0:bb348c97df44 17039 ((INSTANCE) == TIM2) || \
lypinator 0:bb348c97df44 17040 ((INSTANCE) == TIM3) || \
lypinator 0:bb348c97df44 17041 ((INSTANCE) == TIM4) || \
lypinator 0:bb348c97df44 17042 ((INSTANCE) == TIM5) || \
lypinator 0:bb348c97df44 17043 ((INSTANCE) == TIM8))
lypinator 0:bb348c97df44 17044
lypinator 0:bb348c97df44 17045 /************ TIM Instances : at least 4 capture/compare channels *************/
lypinator 0:bb348c97df44 17046 #define IS_TIM_CC4_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
lypinator 0:bb348c97df44 17047 ((INSTANCE) == TIM2) || \
lypinator 0:bb348c97df44 17048 ((INSTANCE) == TIM3) || \
lypinator 0:bb348c97df44 17049 ((INSTANCE) == TIM4) || \
lypinator 0:bb348c97df44 17050 ((INSTANCE) == TIM5) || \
lypinator 0:bb348c97df44 17051 ((INSTANCE) == TIM8))
lypinator 0:bb348c97df44 17052
lypinator 0:bb348c97df44 17053 /******************** TIM Instances : Advanced-control timers *****************/
lypinator 0:bb348c97df44 17054 #define IS_TIM_ADVANCED_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
lypinator 0:bb348c97df44 17055 ((INSTANCE) == TIM8))
lypinator 0:bb348c97df44 17056
lypinator 0:bb348c97df44 17057 /******************* TIM Instances : Timer input XOR function *****************/
lypinator 0:bb348c97df44 17058 #define IS_TIM_XOR_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
lypinator 0:bb348c97df44 17059 ((INSTANCE) == TIM2) || \
lypinator 0:bb348c97df44 17060 ((INSTANCE) == TIM3) || \
lypinator 0:bb348c97df44 17061 ((INSTANCE) == TIM4) || \
lypinator 0:bb348c97df44 17062 ((INSTANCE) == TIM5) || \
lypinator 0:bb348c97df44 17063 ((INSTANCE) == TIM8))
lypinator 0:bb348c97df44 17064
lypinator 0:bb348c97df44 17065 /****************** TIM Instances : DMA requests generation (UDE) *************/
lypinator 0:bb348c97df44 17066 #define IS_TIM_DMA_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
lypinator 0:bb348c97df44 17067 ((INSTANCE) == TIM2) || \
lypinator 0:bb348c97df44 17068 ((INSTANCE) == TIM3) || \
lypinator 0:bb348c97df44 17069 ((INSTANCE) == TIM4) || \
lypinator 0:bb348c97df44 17070 ((INSTANCE) == TIM5) || \
lypinator 0:bb348c97df44 17071 ((INSTANCE) == TIM6) || \
lypinator 0:bb348c97df44 17072 ((INSTANCE) == TIM7) || \
lypinator 0:bb348c97df44 17073 ((INSTANCE) == TIM8))
lypinator 0:bb348c97df44 17074
lypinator 0:bb348c97df44 17075 /************ TIM Instances : DMA requests generation (CCxDE) *****************/
lypinator 0:bb348c97df44 17076 #define IS_TIM_DMA_CC_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
lypinator 0:bb348c97df44 17077 ((INSTANCE) == TIM2) || \
lypinator 0:bb348c97df44 17078 ((INSTANCE) == TIM3) || \
lypinator 0:bb348c97df44 17079 ((INSTANCE) == TIM4) || \
lypinator 0:bb348c97df44 17080 ((INSTANCE) == TIM5) || \
lypinator 0:bb348c97df44 17081 ((INSTANCE) == TIM8))
lypinator 0:bb348c97df44 17082
lypinator 0:bb348c97df44 17083 /************ TIM Instances : DMA requests generation (COMDE) *****************/
lypinator 0:bb348c97df44 17084 #define IS_TIM_CCDMA_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
lypinator 0:bb348c97df44 17085 ((INSTANCE) == TIM2) || \
lypinator 0:bb348c97df44 17086 ((INSTANCE) == TIM3) || \
lypinator 0:bb348c97df44 17087 ((INSTANCE) == TIM4) || \
lypinator 0:bb348c97df44 17088 ((INSTANCE) == TIM5) || \
lypinator 0:bb348c97df44 17089 ((INSTANCE) == TIM8))
lypinator 0:bb348c97df44 17090
lypinator 0:bb348c97df44 17091 /******************** TIM Instances : DMA burst feature ***********************/
lypinator 0:bb348c97df44 17092 #define IS_TIM_DMABURST_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
lypinator 0:bb348c97df44 17093 ((INSTANCE) == TIM2) || \
lypinator 0:bb348c97df44 17094 ((INSTANCE) == TIM3) || \
lypinator 0:bb348c97df44 17095 ((INSTANCE) == TIM4) || \
lypinator 0:bb348c97df44 17096 ((INSTANCE) == TIM5) || \
lypinator 0:bb348c97df44 17097 ((INSTANCE) == TIM8))
lypinator 0:bb348c97df44 17098
lypinator 0:bb348c97df44 17099 /****** TIM Instances : master mode available (TIMx_CR2.MMS available )********/
lypinator 0:bb348c97df44 17100 #define IS_TIM_MASTER_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
lypinator 0:bb348c97df44 17101 ((INSTANCE) == TIM2) || \
lypinator 0:bb348c97df44 17102 ((INSTANCE) == TIM3) || \
lypinator 0:bb348c97df44 17103 ((INSTANCE) == TIM4) || \
lypinator 0:bb348c97df44 17104 ((INSTANCE) == TIM5) || \
lypinator 0:bb348c97df44 17105 ((INSTANCE) == TIM6) || \
lypinator 0:bb348c97df44 17106 ((INSTANCE) == TIM7) || \
lypinator 0:bb348c97df44 17107 ((INSTANCE) == TIM8))
lypinator 0:bb348c97df44 17108
lypinator 0:bb348c97df44 17109 /*********** TIM Instances : Slave mode available (TIMx_SMCR available )*******/
lypinator 0:bb348c97df44 17110 #define IS_TIM_SLAVE_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
lypinator 0:bb348c97df44 17111 ((INSTANCE) == TIM2) || \
lypinator 0:bb348c97df44 17112 ((INSTANCE) == TIM3) || \
lypinator 0:bb348c97df44 17113 ((INSTANCE) == TIM4) || \
lypinator 0:bb348c97df44 17114 ((INSTANCE) == TIM5) || \
lypinator 0:bb348c97df44 17115 ((INSTANCE) == TIM8) || \
lypinator 0:bb348c97df44 17116 ((INSTANCE) == TIM9) || \
lypinator 0:bb348c97df44 17117 ((INSTANCE) == TIM12))
lypinator 0:bb348c97df44 17118
lypinator 0:bb348c97df44 17119 /********************** TIM Instances : 32 bit Counter ************************/
lypinator 0:bb348c97df44 17120 #define IS_TIM_32B_COUNTER_INSTANCE(INSTANCE)(((INSTANCE) == TIM2) || \
lypinator 0:bb348c97df44 17121 ((INSTANCE) == TIM5))
lypinator 0:bb348c97df44 17122
lypinator 0:bb348c97df44 17123 /***************** TIM Instances : external trigger input availabe ************/
lypinator 0:bb348c97df44 17124 #define IS_TIM_ETR_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
lypinator 0:bb348c97df44 17125 ((INSTANCE) == TIM2) || \
lypinator 0:bb348c97df44 17126 ((INSTANCE) == TIM3) || \
lypinator 0:bb348c97df44 17127 ((INSTANCE) == TIM4) || \
lypinator 0:bb348c97df44 17128 ((INSTANCE) == TIM5) || \
lypinator 0:bb348c97df44 17129 ((INSTANCE) == TIM8))
lypinator 0:bb348c97df44 17130
lypinator 0:bb348c97df44 17131 /****************** TIM Instances : remapping capability **********************/
lypinator 0:bb348c97df44 17132 #define IS_TIM_REMAP_INSTANCE(INSTANCE) (((INSTANCE) == TIM2) || \
lypinator 0:bb348c97df44 17133 ((INSTANCE) == TIM5) || \
lypinator 0:bb348c97df44 17134 ((INSTANCE) == TIM11))
lypinator 0:bb348c97df44 17135
lypinator 0:bb348c97df44 17136 /******************* TIM Instances : output(s) available **********************/
lypinator 0:bb348c97df44 17137 #define IS_TIM_CCX_INSTANCE(INSTANCE, CHANNEL) \
lypinator 0:bb348c97df44 17138 ((((INSTANCE) == TIM1) && \
lypinator 0:bb348c97df44 17139 (((CHANNEL) == TIM_CHANNEL_1) || \
lypinator 0:bb348c97df44 17140 ((CHANNEL) == TIM_CHANNEL_2) || \
lypinator 0:bb348c97df44 17141 ((CHANNEL) == TIM_CHANNEL_3) || \
lypinator 0:bb348c97df44 17142 ((CHANNEL) == TIM_CHANNEL_4))) \
lypinator 0:bb348c97df44 17143 || \
lypinator 0:bb348c97df44 17144 (((INSTANCE) == TIM2) && \
lypinator 0:bb348c97df44 17145 (((CHANNEL) == TIM_CHANNEL_1) || \
lypinator 0:bb348c97df44 17146 ((CHANNEL) == TIM_CHANNEL_2) || \
lypinator 0:bb348c97df44 17147 ((CHANNEL) == TIM_CHANNEL_3) || \
lypinator 0:bb348c97df44 17148 ((CHANNEL) == TIM_CHANNEL_4))) \
lypinator 0:bb348c97df44 17149 || \
lypinator 0:bb348c97df44 17150 (((INSTANCE) == TIM3) && \
lypinator 0:bb348c97df44 17151 (((CHANNEL) == TIM_CHANNEL_1) || \
lypinator 0:bb348c97df44 17152 ((CHANNEL) == TIM_CHANNEL_2) || \
lypinator 0:bb348c97df44 17153 ((CHANNEL) == TIM_CHANNEL_3) || \
lypinator 0:bb348c97df44 17154 ((CHANNEL) == TIM_CHANNEL_4))) \
lypinator 0:bb348c97df44 17155 || \
lypinator 0:bb348c97df44 17156 (((INSTANCE) == TIM4) && \
lypinator 0:bb348c97df44 17157 (((CHANNEL) == TIM_CHANNEL_1) || \
lypinator 0:bb348c97df44 17158 ((CHANNEL) == TIM_CHANNEL_2) || \
lypinator 0:bb348c97df44 17159 ((CHANNEL) == TIM_CHANNEL_3) || \
lypinator 0:bb348c97df44 17160 ((CHANNEL) == TIM_CHANNEL_4))) \
lypinator 0:bb348c97df44 17161 || \
lypinator 0:bb348c97df44 17162 (((INSTANCE) == TIM5) && \
lypinator 0:bb348c97df44 17163 (((CHANNEL) == TIM_CHANNEL_1) || \
lypinator 0:bb348c97df44 17164 ((CHANNEL) == TIM_CHANNEL_2) || \
lypinator 0:bb348c97df44 17165 ((CHANNEL) == TIM_CHANNEL_3) || \
lypinator 0:bb348c97df44 17166 ((CHANNEL) == TIM_CHANNEL_4))) \
lypinator 0:bb348c97df44 17167 || \
lypinator 0:bb348c97df44 17168 (((INSTANCE) == TIM8) && \
lypinator 0:bb348c97df44 17169 (((CHANNEL) == TIM_CHANNEL_1) || \
lypinator 0:bb348c97df44 17170 ((CHANNEL) == TIM_CHANNEL_2) || \
lypinator 0:bb348c97df44 17171 ((CHANNEL) == TIM_CHANNEL_3) || \
lypinator 0:bb348c97df44 17172 ((CHANNEL) == TIM_CHANNEL_4))) \
lypinator 0:bb348c97df44 17173 || \
lypinator 0:bb348c97df44 17174 (((INSTANCE) == TIM9) && \
lypinator 0:bb348c97df44 17175 (((CHANNEL) == TIM_CHANNEL_1) || \
lypinator 0:bb348c97df44 17176 ((CHANNEL) == TIM_CHANNEL_2))) \
lypinator 0:bb348c97df44 17177 || \
lypinator 0:bb348c97df44 17178 (((INSTANCE) == TIM10) && \
lypinator 0:bb348c97df44 17179 (((CHANNEL) == TIM_CHANNEL_1))) \
lypinator 0:bb348c97df44 17180 || \
lypinator 0:bb348c97df44 17181 (((INSTANCE) == TIM11) && \
lypinator 0:bb348c97df44 17182 (((CHANNEL) == TIM_CHANNEL_1))) \
lypinator 0:bb348c97df44 17183 || \
lypinator 0:bb348c97df44 17184 (((INSTANCE) == TIM12) && \
lypinator 0:bb348c97df44 17185 (((CHANNEL) == TIM_CHANNEL_1) || \
lypinator 0:bb348c97df44 17186 ((CHANNEL) == TIM_CHANNEL_2))) \
lypinator 0:bb348c97df44 17187 || \
lypinator 0:bb348c97df44 17188 (((INSTANCE) == TIM13) && \
lypinator 0:bb348c97df44 17189 (((CHANNEL) == TIM_CHANNEL_1))) \
lypinator 0:bb348c97df44 17190 || \
lypinator 0:bb348c97df44 17191 (((INSTANCE) == TIM14) && \
lypinator 0:bb348c97df44 17192 (((CHANNEL) == TIM_CHANNEL_1))))
lypinator 0:bb348c97df44 17193
lypinator 0:bb348c97df44 17194 /************ TIM Instances : complementary output(s) available ***************/
lypinator 0:bb348c97df44 17195 #define IS_TIM_CCXN_INSTANCE(INSTANCE, CHANNEL) \
lypinator 0:bb348c97df44 17196 ((((INSTANCE) == TIM1) && \
lypinator 0:bb348c97df44 17197 (((CHANNEL) == TIM_CHANNEL_1) || \
lypinator 0:bb348c97df44 17198 ((CHANNEL) == TIM_CHANNEL_2) || \
lypinator 0:bb348c97df44 17199 ((CHANNEL) == TIM_CHANNEL_3))) \
lypinator 0:bb348c97df44 17200 || \
lypinator 0:bb348c97df44 17201 (((INSTANCE) == TIM8) && \
lypinator 0:bb348c97df44 17202 (((CHANNEL) == TIM_CHANNEL_1) || \
lypinator 0:bb348c97df44 17203 ((CHANNEL) == TIM_CHANNEL_2) || \
lypinator 0:bb348c97df44 17204 ((CHANNEL) == TIM_CHANNEL_3))))
lypinator 0:bb348c97df44 17205
lypinator 0:bb348c97df44 17206 /****************** TIM Instances : supporting counting mode selection ********/
lypinator 0:bb348c97df44 17207 #define IS_TIM_COUNTER_MODE_SELECT_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
lypinator 0:bb348c97df44 17208 ((INSTANCE) == TIM2) || \
lypinator 0:bb348c97df44 17209 ((INSTANCE) == TIM3) || \
lypinator 0:bb348c97df44 17210 ((INSTANCE) == TIM4) || \
lypinator 0:bb348c97df44 17211 ((INSTANCE) == TIM5) || \
lypinator 0:bb348c97df44 17212 ((INSTANCE) == TIM8))
lypinator 0:bb348c97df44 17213
lypinator 0:bb348c97df44 17214 /****************** TIM Instances : supporting clock division *****************/
lypinator 0:bb348c97df44 17215 #define IS_TIM_CLOCK_DIVISION_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
lypinator 0:bb348c97df44 17216 ((INSTANCE) == TIM2) || \
lypinator 0:bb348c97df44 17217 ((INSTANCE) == TIM3) || \
lypinator 0:bb348c97df44 17218 ((INSTANCE) == TIM4) || \
lypinator 0:bb348c97df44 17219 ((INSTANCE) == TIM5) || \
lypinator 0:bb348c97df44 17220 ((INSTANCE) == TIM8) || \
lypinator 0:bb348c97df44 17221 ((INSTANCE) == TIM9) || \
lypinator 0:bb348c97df44 17222 ((INSTANCE) == TIM10)|| \
lypinator 0:bb348c97df44 17223 ((INSTANCE) == TIM11)|| \
lypinator 0:bb348c97df44 17224 ((INSTANCE) == TIM12)|| \
lypinator 0:bb348c97df44 17225 ((INSTANCE) == TIM13)|| \
lypinator 0:bb348c97df44 17226 ((INSTANCE) == TIM14))
lypinator 0:bb348c97df44 17227
lypinator 0:bb348c97df44 17228 /****************** TIM Instances : supporting commutation event generation ***/
lypinator 0:bb348c97df44 17229 #define IS_TIM_COMMUTATION_EVENT_INSTANCE(INSTANCE) (((INSTANCE) == TIM1)|| \
lypinator 0:bb348c97df44 17230 ((INSTANCE) == TIM8))
lypinator 0:bb348c97df44 17231
lypinator 0:bb348c97df44 17232
lypinator 0:bb348c97df44 17233 /****************** TIM Instances : supporting OCxREF clear *******************/
lypinator 0:bb348c97df44 17234 #define IS_TIM_OCXREF_CLEAR_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
lypinator 0:bb348c97df44 17235 ((INSTANCE) == TIM2) || \
lypinator 0:bb348c97df44 17236 ((INSTANCE) == TIM3) || \
lypinator 0:bb348c97df44 17237 ((INSTANCE) == TIM4) || \
lypinator 0:bb348c97df44 17238 ((INSTANCE) == TIM5) || \
lypinator 0:bb348c97df44 17239 ((INSTANCE) == TIM8))
lypinator 0:bb348c97df44 17240
lypinator 0:bb348c97df44 17241 /****** TIM Instances : supporting external clock mode 1 for ETRF input *******/
lypinator 0:bb348c97df44 17242 #define IS_TIM_CLOCKSOURCE_ETRMODE1_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
lypinator 0:bb348c97df44 17243 ((INSTANCE) == TIM2) || \
lypinator 0:bb348c97df44 17244 ((INSTANCE) == TIM3) || \
lypinator 0:bb348c97df44 17245 ((INSTANCE) == TIM4) || \
lypinator 0:bb348c97df44 17246 ((INSTANCE) == TIM5) || \
lypinator 0:bb348c97df44 17247 ((INSTANCE) == TIM8) || \
lypinator 0:bb348c97df44 17248 ((INSTANCE) == TIM9) || \
lypinator 0:bb348c97df44 17249 ((INSTANCE) == TIM12))
lypinator 0:bb348c97df44 17250
lypinator 0:bb348c97df44 17251 /****** TIM Instances : supporting external clock mode 2 for ETRF input *******/
lypinator 0:bb348c97df44 17252 #define IS_TIM_CLOCKSOURCE_ETRMODE2_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
lypinator 0:bb348c97df44 17253 ((INSTANCE) == TIM2) || \
lypinator 0:bb348c97df44 17254 ((INSTANCE) == TIM3) || \
lypinator 0:bb348c97df44 17255 ((INSTANCE) == TIM4) || \
lypinator 0:bb348c97df44 17256 ((INSTANCE) == TIM5) || \
lypinator 0:bb348c97df44 17257 ((INSTANCE) == TIM8))
lypinator 0:bb348c97df44 17258
lypinator 0:bb348c97df44 17259 /****************** TIM Instances : supporting repetition counter *************/
lypinator 0:bb348c97df44 17260 #define IS_TIM_REPETITION_COUNTER_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
lypinator 0:bb348c97df44 17261 ((INSTANCE) == TIM8))
lypinator 0:bb348c97df44 17262
lypinator 0:bb348c97df44 17263 /****************** TIM Instances : supporting encoder interface **************/
lypinator 0:bb348c97df44 17264 #define IS_TIM_ENCODER_INTERFACE_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
lypinator 0:bb348c97df44 17265 ((INSTANCE) == TIM2) || \
lypinator 0:bb348c97df44 17266 ((INSTANCE) == TIM3) || \
lypinator 0:bb348c97df44 17267 ((INSTANCE) == TIM4) || \
lypinator 0:bb348c97df44 17268 ((INSTANCE) == TIM5) || \
lypinator 0:bb348c97df44 17269 ((INSTANCE) == TIM8) || \
lypinator 0:bb348c97df44 17270 ((INSTANCE) == TIM9) || \
lypinator 0:bb348c97df44 17271 ((INSTANCE) == TIM12))
lypinator 0:bb348c97df44 17272 /****************** TIM Instances : supporting Hall sensor interface **********/
lypinator 0:bb348c97df44 17273 #define IS_TIM_HALL_SENSOR_INTERFACE_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
lypinator 0:bb348c97df44 17274 ((INSTANCE) == TIM2) || \
lypinator 0:bb348c97df44 17275 ((INSTANCE) == TIM3) || \
lypinator 0:bb348c97df44 17276 ((INSTANCE) == TIM4) || \
lypinator 0:bb348c97df44 17277 ((INSTANCE) == TIM5) || \
lypinator 0:bb348c97df44 17278 ((INSTANCE) == TIM8))
lypinator 0:bb348c97df44 17279 /****************** TIM Instances : supporting the break function *************/
lypinator 0:bb348c97df44 17280 #define IS_TIM_BREAK_INSTANCE(INSTANCE) (((INSTANCE) == TIM1) || \
lypinator 0:bb348c97df44 17281 ((INSTANCE) == TIM8))
lypinator 0:bb348c97df44 17282
lypinator 0:bb348c97df44 17283 /******************** USART Instances : Synchronous mode **********************/
lypinator 0:bb348c97df44 17284 #define IS_USART_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
lypinator 0:bb348c97df44 17285 ((INSTANCE) == USART2) || \
lypinator 0:bb348c97df44 17286 ((INSTANCE) == USART3) || \
lypinator 0:bb348c97df44 17287 ((INSTANCE) == USART6))
lypinator 0:bb348c97df44 17288
lypinator 0:bb348c97df44 17289 /******************** UART Instances : Half-Duplex mode **********************/
lypinator 0:bb348c97df44 17290 #define IS_UART_HALFDUPLEX_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
lypinator 0:bb348c97df44 17291 ((INSTANCE) == USART2) || \
lypinator 0:bb348c97df44 17292 ((INSTANCE) == USART3) || \
lypinator 0:bb348c97df44 17293 ((INSTANCE) == UART4) || \
lypinator 0:bb348c97df44 17294 ((INSTANCE) == UART5) || \
lypinator 0:bb348c97df44 17295 ((INSTANCE) == USART6) || \
lypinator 0:bb348c97df44 17296 ((INSTANCE) == UART7) || \
lypinator 0:bb348c97df44 17297 ((INSTANCE) == UART8))
lypinator 0:bb348c97df44 17298
lypinator 0:bb348c97df44 17299 /* Legacy defines */
lypinator 0:bb348c97df44 17300 #define IS_UART_INSTANCE IS_UART_HALFDUPLEX_INSTANCE
lypinator 0:bb348c97df44 17301
lypinator 0:bb348c97df44 17302 /****************** UART Instances : Hardware Flow control ********************/
lypinator 0:bb348c97df44 17303 #define IS_UART_HWFLOW_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
lypinator 0:bb348c97df44 17304 ((INSTANCE) == USART2) || \
lypinator 0:bb348c97df44 17305 ((INSTANCE) == USART3) || \
lypinator 0:bb348c97df44 17306 ((INSTANCE) == USART6))
lypinator 0:bb348c97df44 17307 /******************** UART Instances : LIN mode **********************/
lypinator 0:bb348c97df44 17308 #define IS_UART_LIN_INSTANCE IS_UART_HALFDUPLEX_INSTANCE
lypinator 0:bb348c97df44 17309
lypinator 0:bb348c97df44 17310 /********************* UART Instances : Smart card mode ***********************/
lypinator 0:bb348c97df44 17311 #define IS_SMARTCARD_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
lypinator 0:bb348c97df44 17312 ((INSTANCE) == USART2) || \
lypinator 0:bb348c97df44 17313 ((INSTANCE) == USART3) || \
lypinator 0:bb348c97df44 17314 ((INSTANCE) == USART6))
lypinator 0:bb348c97df44 17315
lypinator 0:bb348c97df44 17316 /*********************** UART Instances : IRDA mode ***************************/
lypinator 0:bb348c97df44 17317 #define IS_IRDA_INSTANCE(INSTANCE) (((INSTANCE) == USART1) || \
lypinator 0:bb348c97df44 17318 ((INSTANCE) == USART2) || \
lypinator 0:bb348c97df44 17319 ((INSTANCE) == USART3) || \
lypinator 0:bb348c97df44 17320 ((INSTANCE) == UART4) || \
lypinator 0:bb348c97df44 17321 ((INSTANCE) == UART5) || \
lypinator 0:bb348c97df44 17322 ((INSTANCE) == USART6) || \
lypinator 0:bb348c97df44 17323 ((INSTANCE) == UART7) || \
lypinator 0:bb348c97df44 17324 ((INSTANCE) == UART8))
lypinator 0:bb348c97df44 17325
lypinator 0:bb348c97df44 17326 /*********************** PCD Instances ****************************************/
lypinator 0:bb348c97df44 17327 #define IS_PCD_ALL_INSTANCE(INSTANCE) (((INSTANCE) == USB_OTG_FS) || \
lypinator 0:bb348c97df44 17328 ((INSTANCE) == USB_OTG_HS))
lypinator 0:bb348c97df44 17329
lypinator 0:bb348c97df44 17330 /*********************** HCD Instances ****************************************/
lypinator 0:bb348c97df44 17331 #define IS_HCD_ALL_INSTANCE(INSTANCE) (((INSTANCE) == USB_OTG_FS) || \
lypinator 0:bb348c97df44 17332 ((INSTANCE) == USB_OTG_HS))
lypinator 0:bb348c97df44 17333
lypinator 0:bb348c97df44 17334 /****************************** SDIO Instances ********************************/
lypinator 0:bb348c97df44 17335 #define IS_SDIO_ALL_INSTANCE(INSTANCE) ((INSTANCE) == SDIO)
lypinator 0:bb348c97df44 17336
lypinator 0:bb348c97df44 17337 /****************************** IWDG Instances ********************************/
lypinator 0:bb348c97df44 17338 #define IS_IWDG_ALL_INSTANCE(INSTANCE) ((INSTANCE) == IWDG)
lypinator 0:bb348c97df44 17339
lypinator 0:bb348c97df44 17340 /****************************** WWDG Instances ********************************/
lypinator 0:bb348c97df44 17341 #define IS_WWDG_ALL_INSTANCE(INSTANCE) ((INSTANCE) == WWDG)
lypinator 0:bb348c97df44 17342
lypinator 0:bb348c97df44 17343 /****************************** USB Exported Constants ************************/
lypinator 0:bb348c97df44 17344 #define USB_OTG_FS_HOST_MAX_CHANNEL_NBR 8U
lypinator 0:bb348c97df44 17345 #define USB_OTG_FS_MAX_IN_ENDPOINTS 4U /* Including EP0 */
lypinator 0:bb348c97df44 17346 #define USB_OTG_FS_MAX_OUT_ENDPOINTS 4U /* Including EP0 */
lypinator 0:bb348c97df44 17347 #define USB_OTG_FS_TOTAL_FIFO_SIZE 1280U /* in Bytes */
lypinator 0:bb348c97df44 17348
lypinator 0:bb348c97df44 17349 /*
lypinator 0:bb348c97df44 17350 * @brief Specific devices reset values definitions
lypinator 0:bb348c97df44 17351 */
lypinator 0:bb348c97df44 17352 #define RCC_PLLCFGR_RST_VALUE 0x24003010U
lypinator 0:bb348c97df44 17353 #define RCC_PLLI2SCFGR_RST_VALUE 0x24003000U
lypinator 0:bb348c97df44 17354 #define RCC_PLLSAICFGR_RST_VALUE 0x24003000U
lypinator 0:bb348c97df44 17355
lypinator 0:bb348c97df44 17356 #define RCC_MAX_FREQUENCY 180000000U /*!< Max frequency of family in Hz*/
lypinator 0:bb348c97df44 17357 #define RCC_MAX_FREQUENCY_SCALE1 RCC_MAX_FREQUENCY /*!< Maximum frequency for system clock at power scale1, in Hz */
lypinator 0:bb348c97df44 17358 #define RCC_MAX_FREQUENCY_SCALE2 168000000U /*!< Maximum frequency for system clock at power scale2, in Hz */
lypinator 0:bb348c97df44 17359 #define RCC_MAX_FREQUENCY_SCALE3 120000000U /*!< Maximum frequency for system clock at power scale3, in Hz */
lypinator 0:bb348c97df44 17360 #define RCC_PLLVCO_OUTPUT_MIN 100000000U /*!< Frequency min for PLLVCO output, in Hz */
lypinator 0:bb348c97df44 17361 #define RCC_PLLVCO_INPUT_MIN 950000U /*!< Frequency min for PLLVCO input, in Hz */
lypinator 0:bb348c97df44 17362 #define RCC_PLLVCO_INPUT_MAX 2100000U /*!< Frequency max for PLLVCO input, in Hz */
lypinator 0:bb348c97df44 17363 #define RCC_PLLVCO_OUTPUT_MAX 432000000U /*!< Frequency max for PLLVCO output, in Hz */
lypinator 0:bb348c97df44 17364
lypinator 0:bb348c97df44 17365 #define RCC_PLLN_MIN_VALUE 50U
lypinator 0:bb348c97df44 17366 #define RCC_PLLN_MAX_VALUE 432U
lypinator 0:bb348c97df44 17367
lypinator 0:bb348c97df44 17368 #define FLASH_SCALE1_LATENCY1_FREQ 30000000U /*!< HCLK frequency to set FLASH latency 1 in power scale 1 */
lypinator 0:bb348c97df44 17369 #define FLASH_SCALE1_LATENCY2_FREQ 60000000U /*!< HCLK frequency to set FLASH latency 2 in power scale 1 */
lypinator 0:bb348c97df44 17370 #define FLASH_SCALE1_LATENCY3_FREQ 90000000U /*!< HCLK frequency to set FLASH latency 3 in power scale 1 */
lypinator 0:bb348c97df44 17371 #define FLASH_SCALE1_LATENCY4_FREQ 120000000U /*!< HCLK frequency to set FLASH latency 4 in power scale 1 */
lypinator 0:bb348c97df44 17372 #define FLASH_SCALE1_LATENCY5_FREQ 150000000U /*!< HCLK frequency to set FLASH latency 5 in power scale 1 */
lypinator 0:bb348c97df44 17373
lypinator 0:bb348c97df44 17374 #define FLASH_SCALE2_LATENCY1_FREQ 30000000U /*!< HCLK frequency to set FLASH latency 1 in power scale 2 */
lypinator 0:bb348c97df44 17375 #define FLASH_SCALE2_LATENCY2_FREQ 60000000U /*!< HCLK frequency to set FLASH latency 2 in power scale 2 */
lypinator 0:bb348c97df44 17376 #define FLASH_SCALE2_LATENCY3_FREQ 90000000U /*!< HCLK frequency to set FLASH latency 3 in power scale 2 */
lypinator 0:bb348c97df44 17377 #define FLASH_SCALE2_LATENCY4_FREQ 12000000U /*!< HCLK frequency to set FLASH latency 4 in power scale 2 */
lypinator 0:bb348c97df44 17378 #define FLASH_SCALE2_LATENCY5_FREQ 150000000U /*!< HCLK frequency to set FLASH latency 5 in power scale 2 */
lypinator 0:bb348c97df44 17379
lypinator 0:bb348c97df44 17380 #define FLASH_SCALE3_LATENCY1_FREQ 30000000U /*!< HCLK frequency to set FLASH latency 1 in power scale 3 */
lypinator 0:bb348c97df44 17381 #define FLASH_SCALE3_LATENCY2_FREQ 60000000U /*!< HCLK frequency to set FLASH latency 2 in power scale 3 */
lypinator 0:bb348c97df44 17382 #define FLASH_SCALE3_LATENCY3_FREQ 90000000U /*!< HCLK frequency to set FLASH latency 3 in power scale 3 */
lypinator 0:bb348c97df44 17383
lypinator 0:bb348c97df44 17384 #define USB_OTG_HS_HOST_MAX_CHANNEL_NBR 12U
lypinator 0:bb348c97df44 17385 #define USB_OTG_HS_MAX_IN_ENDPOINTS 6U /* Including EP0 */
lypinator 0:bb348c97df44 17386 #define USB_OTG_HS_MAX_OUT_ENDPOINTS 6U /* Including EP0 */
lypinator 0:bb348c97df44 17387 #define USB_OTG_HS_TOTAL_FIFO_SIZE 4096U /* in Bytes */
lypinator 0:bb348c97df44 17388 /******************************************************************************/
lypinator 0:bb348c97df44 17389 /* For a painless codes migration between the STM32F4xx device product */
lypinator 0:bb348c97df44 17390 /* lines, the aliases defined below are put in place to overcome the */
lypinator 0:bb348c97df44 17391 /* differences in the interrupt handlers and IRQn definitions. */
lypinator 0:bb348c97df44 17392 /* No need to update developed interrupt code when moving across */
lypinator 0:bb348c97df44 17393 /* product lines within the same STM32F4 Family */
lypinator 0:bb348c97df44 17394 /******************************************************************************/
lypinator 0:bb348c97df44 17395 /* Aliases for __IRQn */
lypinator 0:bb348c97df44 17396 #define FSMC_IRQn FMC_IRQn
lypinator 0:bb348c97df44 17397
lypinator 0:bb348c97df44 17398 /* Aliases for __IRQHandler */
lypinator 0:bb348c97df44 17399 #define FSMC_IRQHandler FMC_IRQHandler
lypinator 0:bb348c97df44 17400
lypinator 0:bb348c97df44 17401 /**
lypinator 0:bb348c97df44 17402 * @}
lypinator 0:bb348c97df44 17403 */
lypinator 0:bb348c97df44 17404
lypinator 0:bb348c97df44 17405 /**
lypinator 0:bb348c97df44 17406 * @}
lypinator 0:bb348c97df44 17407 */
lypinator 0:bb348c97df44 17408
lypinator 0:bb348c97df44 17409 /**
lypinator 0:bb348c97df44 17410 * @}
lypinator 0:bb348c97df44 17411 */
lypinator 0:bb348c97df44 17412
lypinator 0:bb348c97df44 17413 #ifdef __cplusplus
lypinator 0:bb348c97df44 17414 }
lypinator 0:bb348c97df44 17415 #endif /* __cplusplus */
lypinator 0:bb348c97df44 17416
lypinator 0:bb348c97df44 17417 #endif /* __STM32F439xx_H */
lypinator 0:bb348c97df44 17418
lypinator 0:bb348c97df44 17419
lypinator 0:bb348c97df44 17420
lypinator 0:bb348c97df44 17421 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/