Very Simple Library for the STM32F3-Discovery.

Dependents:   accelerometer_test neopixel_square accelerometer_test_minimal Colour_Video_Demo

Committer:
MartinJohnson
Date:
Wed May 02 02:01:13 2018 +0000
Revision:
0:c65854d98061
Initial Version

Who changed what in which revision?

UserRevisionLine numberNew contents of line
MartinJohnson 0:c65854d98061 1 /**
MartinJohnson 0:c65854d98061 2 ******************************************************************************
MartinJohnson 0:c65854d98061 3 * @file stm32f30x.h
MartinJohnson 0:c65854d98061 4 * @author MCD Application Team
MartinJohnson 0:c65854d98061 5 * @version V1.2.2
MartinJohnson 0:c65854d98061 6 * @date 27-February-2015
MartinJohnson 0:c65854d98061 7 * @brief CMSIS Cortex-M4 Device Peripheral Access Layer Header File.
MartinJohnson 0:c65854d98061 8 * This file contains all the peripheral registers definitions, bits
MartinJohnson 0:c65854d98061 9 * definitions and memory mapping for STM32F30x devices.
MartinJohnson 0:c65854d98061 10 *
MartinJohnson 0:c65854d98061 11 * The file is the unique include file that the application programmer
MartinJohnson 0:c65854d98061 12 * is using in the C source code, usually in main.c. This file contains:
MartinJohnson 0:c65854d98061 13 * - Configuration section that allows to select:
MartinJohnson 0:c65854d98061 14 * - The device used in the target application
MartinJohnson 0:c65854d98061 15 * - To use or not the peripheral�s drivers in application code(i.e.
MartinJohnson 0:c65854d98061 16 * code will be based on direct access to peripheral�s registers
MartinJohnson 0:c65854d98061 17 * rather than drivers API), this option is controlled by
MartinJohnson 0:c65854d98061 18 * "#define USE_STDPERIPH_DRIVER"
MartinJohnson 0:c65854d98061 19 * - To change few application-specific parameters such as the HSE
MartinJohnson 0:c65854d98061 20 * crystal frequency
MartinJohnson 0:c65854d98061 21 * - Data structures and the address mapping for all peripherals
MartinJohnson 0:c65854d98061 22 * - Peripheral registers declarations and bits definition
MartinJohnson 0:c65854d98061 23 * - Macros to access peripheral registers hardware
MartinJohnson 0:c65854d98061 24 *
MartinJohnson 0:c65854d98061 25 ******************************************************************************
MartinJohnson 0:c65854d98061 26 * @attention
MartinJohnson 0:c65854d98061 27 *
MartinJohnson 0:c65854d98061 28 * <h2><center>&copy; COPYRIGHT 2015 STMicroelectronics</center></h2>
MartinJohnson 0:c65854d98061 29 *
MartinJohnson 0:c65854d98061 30 * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License");
MartinJohnson 0:c65854d98061 31 * You may not use this file except in compliance with the License.
MartinJohnson 0:c65854d98061 32 * You may obtain a copy of the License at:
MartinJohnson 0:c65854d98061 33 *
MartinJohnson 0:c65854d98061 34 * http://www.st.com/software_license_agreement_liberty_v2
MartinJohnson 0:c65854d98061 35 *
MartinJohnson 0:c65854d98061 36 * Unless required by applicable law or agreed to in writing, software
MartinJohnson 0:c65854d98061 37 * distributed under the License is distributed on an "AS IS" BASIS,
MartinJohnson 0:c65854d98061 38 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
MartinJohnson 0:c65854d98061 39 * See the License for the specific language governing permissions and
MartinJohnson 0:c65854d98061 40 * limitations under the License.
MartinJohnson 0:c65854d98061 41 *
MartinJohnson 0:c65854d98061 42 ******************************************************************************
MartinJohnson 0:c65854d98061 43 */
MartinJohnson 0:c65854d98061 44
MartinJohnson 0:c65854d98061 45 /** @addtogroup CMSIS
MartinJohnson 0:c65854d98061 46 * @{
MartinJohnson 0:c65854d98061 47 */
MartinJohnson 0:c65854d98061 48
MartinJohnson 0:c65854d98061 49 /** @addtogroup stm32f30x
MartinJohnson 0:c65854d98061 50 * @{
MartinJohnson 0:c65854d98061 51 */
MartinJohnson 0:c65854d98061 52
MartinJohnson 0:c65854d98061 53 #ifndef __STM32F30x_H
MartinJohnson 0:c65854d98061 54 #define __STM32F30x_H
MartinJohnson 0:c65854d98061 55
MartinJohnson 0:c65854d98061 56 #ifdef __cplusplus
MartinJohnson 0:c65854d98061 57 extern "C" {
MartinJohnson 0:c65854d98061 58 #endif /* __cplusplus */
MartinJohnson 0:c65854d98061 59
MartinJohnson 0:c65854d98061 60 /** @addtogroup Library_configuration_section
MartinJohnson 0:c65854d98061 61 * @{
MartinJohnson 0:c65854d98061 62 */
MartinJohnson 0:c65854d98061 63
MartinJohnson 0:c65854d98061 64 /* Uncomment the line below according to the target STM32 device used in your
MartinJohnson 0:c65854d98061 65 application
MartinJohnson 0:c65854d98061 66 */
MartinJohnson 0:c65854d98061 67
MartinJohnson 0:c65854d98061 68 /* Old STM32F30X definition, maintained for legacy purpose */
MartinJohnson 0:c65854d98061 69 #if defined(STM32F30X)
MartinJohnson 0:c65854d98061 70 #define STM32F303xC
MartinJohnson 0:c65854d98061 71 #endif /* STM32F30X */
MartinJohnson 0:c65854d98061 72
MartinJohnson 0:c65854d98061 73 #if !defined (STM32F303xC) && !defined (STM32F334x8) && !defined (STM32F302x8) && !defined (STM32F303xE)
MartinJohnson 0:c65854d98061 74 #define STM32F303xC /*!< STM32F303CB, STM32F303CC, STM32F303RB, STM32F303RC, STM32F303VB, STM32F303VC
MartinJohnson 0:c65854d98061 75 STM32F302CB, STM32F302CC, STM32F302RC, STM32F302RB, STM32F302VC, STM32F302VB,
MartinJohnson 0:c65854d98061 76 STM32F358CC, STM32F358RC and STM32F358VC Devices */
MartinJohnson 0:c65854d98061 77 /* #define STM32F334x8 */ /*!< STM32F334C4, STM32F334K4, STM32F334C6, STM32F334R6, STM32F334K6, STM32F334C8, STM32F334R8, STM32F334K8,
MartinJohnson 0:c65854d98061 78 STM32F303K8, STM32F303K6, STM32F303C8, STM32F303C6, STM32F303R8, STM32F303R6 and STM32F328C8 Devices */
MartinJohnson 0:c65854d98061 79 /* #define STM32F302x8 */ /*!< STM32F302K6, STM32F302K8, STM32F302C6, STM32F302C8, STM32F302R6, STM32F302R8,
MartinJohnson 0:c65854d98061 80 STM32F301K8, STM32F301C8, STM32F301R8, STM32F301K6, STM32F301C6, STM32F301R6, STM32F313K8 and STM32F318C8 Devices */
MartinJohnson 0:c65854d98061 81 /* #define STM32F303xE */ /*!< STM32F303CE, STM32F303CD, STM32F303RE, STM32F303RD, STM32F303VE, STM32F303VD, STM32F303ZE,
MartinJohnson 0:c65854d98061 82 STM32F303ZD, STM32F302CE, STM32F302CD, STM32F302RE, STM32F302RD, STM32F302VE, STM32F302ZE,
MartinJohnson 0:c65854d98061 83 STM32F302ZD and STM32F398VE Devices */
MartinJohnson 0:c65854d98061 84 #endif /* STM32F303xC || STM32F334x8 || STM32F302x8 || STM32F303xE */
MartinJohnson 0:c65854d98061 85
MartinJohnson 0:c65854d98061 86
MartinJohnson 0:c65854d98061 87 /* Tip: To avoid modifying this file each time you need to switch between these
MartinJohnson 0:c65854d98061 88 devices, you can define the device in your toolchain compiler preprocessor.
MartinJohnson 0:c65854d98061 89 */
MartinJohnson 0:c65854d98061 90
MartinJohnson 0:c65854d98061 91 #if !defined (STM32F303xC) && !defined (STM32F334x8) && !defined (STM32F302x8) && !defined (STM32F303xE)
MartinJohnson 0:c65854d98061 92 #error "Please select first the target STM32F30X device used in your application (in stm32f30x.h file)"
MartinJohnson 0:c65854d98061 93 #endif
MartinJohnson 0:c65854d98061 94
MartinJohnson 0:c65854d98061 95 #if !defined (USE_STDPERIPH_DRIVER)
MartinJohnson 0:c65854d98061 96 /**
MartinJohnson 0:c65854d98061 97 * @brief Comment the line below if you will not use the peripherals drivers.
MartinJohnson 0:c65854d98061 98 In this case, these drivers will not be included and the application code will
MartinJohnson 0:c65854d98061 99 be based on direct access to peripherals registers
MartinJohnson 0:c65854d98061 100 */
MartinJohnson 0:c65854d98061 101 //#define USE_STDPERIPH_DRIVER
MartinJohnson 0:c65854d98061 102 #endif /* USE_STDPERIPH_DRIVER */
MartinJohnson 0:c65854d98061 103
MartinJohnson 0:c65854d98061 104 /**
MartinJohnson 0:c65854d98061 105 * @brief In the following line adjust the value of External High Speed oscillator (HSE)
MartinJohnson 0:c65854d98061 106 used in your application
MartinJohnson 0:c65854d98061 107
MartinJohnson 0:c65854d98061 108 Tip: To avoid modifying this file each time you need to use different HSE, you
MartinJohnson 0:c65854d98061 109 can define the HSE value in your toolchain compiler preprocessor.
MartinJohnson 0:c65854d98061 110 */
MartinJohnson 0:c65854d98061 111 #if !defined (HSE_VALUE)
MartinJohnson 0:c65854d98061 112 #define HSE_VALUE ((uint32_t)8000000) /*!< Value of the External oscillator in Hz */
MartinJohnson 0:c65854d98061 113 #endif /* HSE_VALUE */
MartinJohnson 0:c65854d98061 114
MartinJohnson 0:c65854d98061 115 /**
MartinJohnson 0:c65854d98061 116 * @brief In the following line adjust the External High Speed oscillator (HSE) Startup
MartinJohnson 0:c65854d98061 117 Timeout value
MartinJohnson 0:c65854d98061 118 */
MartinJohnson 0:c65854d98061 119 #if !defined (HSE_STARTUP_TIMEOUT)
MartinJohnson 0:c65854d98061 120 #define HSE_STARTUP_TIMEOUT ((uint16_t)0x5000) /*!< Time out for HSE start up */
MartinJohnson 0:c65854d98061 121 #endif /* HSE_STARTUP_TIMEOUT */
MartinJohnson 0:c65854d98061 122
MartinJohnson 0:c65854d98061 123 /**
MartinJohnson 0:c65854d98061 124 * @brief In the following line adjust the Internal High Speed oscillator (HSI) Startup
MartinJohnson 0:c65854d98061 125 Timeout value
MartinJohnson 0:c65854d98061 126 */
MartinJohnson 0:c65854d98061 127 #if !defined (HSI_STARTUP_TIMEOUT)
MartinJohnson 0:c65854d98061 128 #define HSI_STARTUP_TIMEOUT ((uint16_t)0x5000) /*!< Time out for HSI start up */
MartinJohnson 0:c65854d98061 129 #endif /* HSI_STARTUP_TIMEOUT */
MartinJohnson 0:c65854d98061 130
MartinJohnson 0:c65854d98061 131 #if !defined (HSI_VALUE)
MartinJohnson 0:c65854d98061 132 #define HSI_VALUE ((uint32_t)8000000)
MartinJohnson 0:c65854d98061 133 #endif /* HSI_VALUE */ /*!< Value of the Internal High Speed oscillator in Hz.
MartinJohnson 0:c65854d98061 134 The real value may vary depending on the variations
MartinJohnson 0:c65854d98061 135 in voltage and temperature. */
MartinJohnson 0:c65854d98061 136 #if !defined (LSI_VALUE)
MartinJohnson 0:c65854d98061 137 #define LSI_VALUE ((uint32_t)40000)
MartinJohnson 0:c65854d98061 138 #endif /* LSI_VALUE */ /*!< Value of the Internal Low Speed oscillator in Hz
MartinJohnson 0:c65854d98061 139 The real value may vary depending on the variations
MartinJohnson 0:c65854d98061 140 in voltage and temperature. */
MartinJohnson 0:c65854d98061 141 #if !defined (LSE_VALUE)
MartinJohnson 0:c65854d98061 142 #define LSE_VALUE ((uint32_t)32768) /*!< Value of the External Low Speed oscillator in Hz */
MartinJohnson 0:c65854d98061 143 #endif /* LSE_VALUE */
MartinJohnson 0:c65854d98061 144
MartinJohnson 0:c65854d98061 145
MartinJohnson 0:c65854d98061 146 /**
MartinJohnson 0:c65854d98061 147 * @brief STM32F30x Standard Peripherals Library version number V1.2.2
MartinJohnson 0:c65854d98061 148 */
MartinJohnson 0:c65854d98061 149 #define __STM32F30X_STDPERIPH_VERSION_MAIN (0x01) /*!< [31:24] main version */
MartinJohnson 0:c65854d98061 150 #define __STM32F30X_STDPERIPH_VERSION_SUB1 (0x02) /*!< [23:16] sub1 version */
MartinJohnson 0:c65854d98061 151 #define __STM32F30X_STDPERIPH_VERSION_SUB2 (0x02) /*!< [15:8] sub2 version */
MartinJohnson 0:c65854d98061 152 #define __STM32F30X_STDPERIPH_VERSION_RC (0x00) /*!< [7:0] release candidate */
MartinJohnson 0:c65854d98061 153 #define __STM32F30X_STDPERIPH_VERSION ( (__STM32F30X_STDPERIPH_VERSION_MAIN << 24)\
MartinJohnson 0:c65854d98061 154 |(__STM32F30X_STDPERIPH_VERSION_SUB1 << 16)\
MartinJohnson 0:c65854d98061 155 |(__STM32F30X_STDPERIPH_VERSION_SUB2 << 8)\
MartinJohnson 0:c65854d98061 156 |(__STM32F30X_STDPERIPH_VERSION_RC))
MartinJohnson 0:c65854d98061 157
MartinJohnson 0:c65854d98061 158 /**
MartinJohnson 0:c65854d98061 159 * @}
MartinJohnson 0:c65854d98061 160 */
MartinJohnson 0:c65854d98061 161
MartinJohnson 0:c65854d98061 162 /** @addtogroup Configuration_section_for_CMSIS
MartinJohnson 0:c65854d98061 163 * @{
MartinJohnson 0:c65854d98061 164 */
MartinJohnson 0:c65854d98061 165
MartinJohnson 0:c65854d98061 166 /**
MartinJohnson 0:c65854d98061 167 * @brief Configuration of the Cortex-M4 Processor and Core Peripherals
MartinJohnson 0:c65854d98061 168 */
MartinJohnson 0:c65854d98061 169 #define __CM4_REV 0x0001 /*!< Core revision r0p1 */
MartinJohnson 0:c65854d98061 170 #define __MPU_PRESENT 1 /*!< STM32F30X provide an MPU */
MartinJohnson 0:c65854d98061 171 #define __NVIC_PRIO_BITS 4 /*!< STM32F30X uses 4 Bits for the Priority Levels */
MartinJohnson 0:c65854d98061 172 #define __Vendor_SysTickConfig 0 /*!< Set to 1 if different SysTick Config is used */
MartinJohnson 0:c65854d98061 173 #define __FPU_PRESENT 1 /*!< STM32F30X provide an FPU */
MartinJohnson 0:c65854d98061 174
MartinJohnson 0:c65854d98061 175
MartinJohnson 0:c65854d98061 176 /**
MartinJohnson 0:c65854d98061 177 * @brief STM32F30X Interrupt Number Definition, according to the selected device
MartinJohnson 0:c65854d98061 178 * in @ref Library_configuration_section
MartinJohnson 0:c65854d98061 179 */
MartinJohnson 0:c65854d98061 180 typedef enum IRQn
MartinJohnson 0:c65854d98061 181 {
MartinJohnson 0:c65854d98061 182 /****** Cortex-M4 Processor Exceptions Numbers ****************************************************************/
MartinJohnson 0:c65854d98061 183 NonMaskableInt_IRQn = -14, /*!< 2 Non Maskable Interrupt */
MartinJohnson 0:c65854d98061 184 MemoryManagement_IRQn = -12, /*!< 4 Cortex-M4 Memory Management Interrupt */
MartinJohnson 0:c65854d98061 185 BusFault_IRQn = -11, /*!< 5 Cortex-M4 Bus Fault Interrupt */
MartinJohnson 0:c65854d98061 186 UsageFault_IRQn = -10, /*!< 6 Cortex-M4 Usage Fault Interrupt */
MartinJohnson 0:c65854d98061 187 SVCall_IRQn = -5, /*!< 11 Cortex-M4 SV Call Interrupt */
MartinJohnson 0:c65854d98061 188 DebugMonitor_IRQn = -4, /*!< 12 Cortex-M4 Debug Monitor Interrupt */
MartinJohnson 0:c65854d98061 189 PendSV_IRQn = -2, /*!< 14 Cortex-M4 Pend SV Interrupt */
MartinJohnson 0:c65854d98061 190 SysTick_IRQn = -1, /*!< 15 Cortex-M4 System Tick Interrupt */
MartinJohnson 0:c65854d98061 191 /****** STM32 specific Interrupt Numbers **********************************************************************/
MartinJohnson 0:c65854d98061 192 #ifdef STM32F303xC
MartinJohnson 0:c65854d98061 193 WWDG_IRQn = 0, /*!< Window WatchDog Interrupt */
MartinJohnson 0:c65854d98061 194 PVD_IRQn = 1, /*!< PVD through EXTI Line detection Interrupt */
MartinJohnson 0:c65854d98061 195 TAMPER_STAMP_IRQn = 2, /*!< Tamper and TimeStamp interrupts */
MartinJohnson 0:c65854d98061 196 RTC_WKUP_IRQn = 3, /*!< RTC Wakeup interrupt through the EXTI lines 17, 19 & 20 */
MartinJohnson 0:c65854d98061 197 FLASH_IRQn = 4, /*!< FLASH global Interrupt */
MartinJohnson 0:c65854d98061 198 RCC_IRQn = 5, /*!< RCC global Interrupt */
MartinJohnson 0:c65854d98061 199 EXTI0_IRQn = 6, /*!< EXTI Line0 Interrupt */
MartinJohnson 0:c65854d98061 200 EXTI1_IRQn = 7, /*!< EXTI Line1 Interrupt */
MartinJohnson 0:c65854d98061 201 EXTI2_TS_IRQn = 8, /*!< EXTI Line2 Interrupt and Touch Sense Interrupt */
MartinJohnson 0:c65854d98061 202 EXTI3_IRQn = 9, /*!< EXTI Line3 Interrupt */
MartinJohnson 0:c65854d98061 203 EXTI4_IRQn = 10, /*!< EXTI Line4 Interrupt */
MartinJohnson 0:c65854d98061 204 DMA1_Channel1_IRQn = 11, /*!< DMA1 Channel 1 Interrupt */
MartinJohnson 0:c65854d98061 205 DMA1_Channel2_IRQn = 12, /*!< DMA1 Channel 2 Interrupt */
MartinJohnson 0:c65854d98061 206 DMA1_Channel3_IRQn = 13, /*!< DMA1 Channel 3 Interrupt */
MartinJohnson 0:c65854d98061 207 DMA1_Channel4_IRQn = 14, /*!< DMA1 Channel 4 Interrupt */
MartinJohnson 0:c65854d98061 208 DMA1_Channel5_IRQn = 15, /*!< DMA1 Channel 5 Interrupt */
MartinJohnson 0:c65854d98061 209 DMA1_Channel6_IRQn = 16, /*!< DMA1 Channel 6 Interrupt */
MartinJohnson 0:c65854d98061 210 DMA1_Channel7_IRQn = 17, /*!< DMA1 Channel 7 Interrupt */
MartinJohnson 0:c65854d98061 211 ADC1_2_IRQn = 18, /*!< ADC1 & ADC2 Interrupts */
MartinJohnson 0:c65854d98061 212 USB_HP_CAN1_TX_IRQn = 19, /*!< USB Device High Priority or CAN1 TX Interrupts */
MartinJohnson 0:c65854d98061 213 USB_LP_CAN1_RX0_IRQn = 20, /*!< USB Device Low Priority or CAN1 RX0 Interrupts */
MartinJohnson 0:c65854d98061 214 CAN1_RX1_IRQn = 21, /*!< CAN1 RX1 Interrupt */
MartinJohnson 0:c65854d98061 215 CAN1_SCE_IRQn = 22, /*!< CAN1 SCE Interrupt */
MartinJohnson 0:c65854d98061 216 EXTI9_5_IRQn = 23, /*!< External Line[9:5] Interrupts */
MartinJohnson 0:c65854d98061 217 TIM1_BRK_TIM15_IRQn = 24, /*!< TIM1 Break and TIM15 Interrupts */
MartinJohnson 0:c65854d98061 218 TIM1_UP_TIM16_IRQn = 25, /*!< TIM1 Update and TIM16 Interrupts */
MartinJohnson 0:c65854d98061 219 TIM1_TRG_COM_TIM17_IRQn = 26, /*!< TIM1 Trigger and Commutation and TIM17 Interrupt */
MartinJohnson 0:c65854d98061 220 TIM1_CC_IRQn = 27, /*!< TIM1 Capture Compare Interrupt */
MartinJohnson 0:c65854d98061 221 TIM2_IRQn = 28, /*!< TIM2 global Interrupt */
MartinJohnson 0:c65854d98061 222 TIM3_IRQn = 29, /*!< TIM3 global Interrupt */
MartinJohnson 0:c65854d98061 223 TIM4_IRQn = 30, /*!< TIM4 global Interrupt */
MartinJohnson 0:c65854d98061 224 I2C1_EV_IRQn = 31, /*!< I2C1 Event Interrupt */
MartinJohnson 0:c65854d98061 225 I2C1_ER_IRQn = 32, /*!< I2C1 Error Interrupt */
MartinJohnson 0:c65854d98061 226 I2C2_EV_IRQn = 33, /*!< I2C2 Event Interrupt */
MartinJohnson 0:c65854d98061 227 I2C2_ER_IRQn = 34, /*!< I2C2 Error Interrupt */
MartinJohnson 0:c65854d98061 228 SPI1_IRQn = 35, /*!< SPI1 global Interrupt */
MartinJohnson 0:c65854d98061 229 SPI2_IRQn = 36, /*!< SPI2 global Interrupt */
MartinJohnson 0:c65854d98061 230 USART1_IRQn = 37, /*!< USART1 global Interrupt */
MartinJohnson 0:c65854d98061 231 USART2_IRQn = 38, /*!< USART2 global Interrupt */
MartinJohnson 0:c65854d98061 232 USART3_IRQn = 39, /*!< USART3 global Interrupt */
MartinJohnson 0:c65854d98061 233 EXTI15_10_IRQn = 40, /*!< External Line[15:10] Interrupts */
MartinJohnson 0:c65854d98061 234 RTC_Alarm_IRQn = 41, /*!< RTC Alarm (A and B) through EXTI Line Interrupt */
MartinJohnson 0:c65854d98061 235 USBWakeUp_IRQn = 42, /*!< USB Wakeup Interrupt */
MartinJohnson 0:c65854d98061 236 TIM8_BRK_IRQn = 43, /*!< TIM8 Break Interrupt */
MartinJohnson 0:c65854d98061 237 TIM8_UP_IRQn = 44, /*!< TIM8 Update Interrupt */
MartinJohnson 0:c65854d98061 238 TIM8_TRG_COM_IRQn = 45, /*!< TIM8 Trigger and Commutation Interrupt */
MartinJohnson 0:c65854d98061 239 TIM8_CC_IRQn = 46, /*!< TIM8 Capture Compare Interrupt */
MartinJohnson 0:c65854d98061 240 ADC3_IRQn = 47, /*!< ADC3 global Interrupt */
MartinJohnson 0:c65854d98061 241 SPI3_IRQn = 51, /*!< SPI3 global Interrupt */
MartinJohnson 0:c65854d98061 242 UART4_IRQn = 52, /*!< UART4 global Interrupt */
MartinJohnson 0:c65854d98061 243 UART5_IRQn = 53, /*!< UART5 global Interrupt */
MartinJohnson 0:c65854d98061 244 TIM6_DAC_IRQn = 54, /*!< TIM6 global and DAC1&2 underrun error interrupts */
MartinJohnson 0:c65854d98061 245 TIM7_IRQn = 55, /*!< TIM7 global Interrupt */
MartinJohnson 0:c65854d98061 246 DMA2_Channel1_IRQn = 56, /*!< DMA2 Channel 1 global Interrupt */
MartinJohnson 0:c65854d98061 247 DMA2_Channel2_IRQn = 57, /*!< DMA2 Channel 2 global Interrupt */
MartinJohnson 0:c65854d98061 248 DMA2_Channel3_IRQn = 58, /*!< DMA2 Channel 3 global Interrupt */
MartinJohnson 0:c65854d98061 249 DMA2_Channel4_IRQn = 59, /*!< DMA2 Channel 4 global Interrupt */
MartinJohnson 0:c65854d98061 250 DMA2_Channel5_IRQn = 60, /*!< DMA2 Channel 5 global Interrupt */
MartinJohnson 0:c65854d98061 251 ADC4_IRQn = 61, /*!< ADC4 global Interrupt */
MartinJohnson 0:c65854d98061 252 COMP1_2_3_IRQn = 64, /*!< COMP1, COMP2 and COMP3 global Interrupt */
MartinJohnson 0:c65854d98061 253 COMP4_5_6_IRQn = 65, /*!< COMP5, COMP6 and COMP4 global Interrupt */
MartinJohnson 0:c65854d98061 254 COMP7_IRQn = 66, /*!< COMP7 global Interrupt */
MartinJohnson 0:c65854d98061 255 USB_HP_IRQn = 74, /*!< USB High Priority global Interrupt remap */
MartinJohnson 0:c65854d98061 256 USB_LP_IRQn = 75, /*!< USB Low Priority global Interrupt remap */
MartinJohnson 0:c65854d98061 257 USBWakeUp_RMP_IRQn = 76, /*!< USB Wakeup Interrupt remap */
MartinJohnson 0:c65854d98061 258 FPU_IRQn = 81 /*!< Floating point Interrupt */
MartinJohnson 0:c65854d98061 259 #endif /* STM32F303xC */
MartinJohnson 0:c65854d98061 260 #ifdef STM32F334x8
MartinJohnson 0:c65854d98061 261 WWDG_IRQn = 0, /*!< Window WatchDog Interrupt */
MartinJohnson 0:c65854d98061 262 PVD_IRQn = 1, /*!< PVD through EXTI Line detection Interrupt */
MartinJohnson 0:c65854d98061 263 TAMPER_STAMP_IRQn = 2, /*!< Tamper and TimeStamp interrupts */
MartinJohnson 0:c65854d98061 264 RTC_WKUP_IRQn = 3, /*!< RTC Wakeup interrupt through the EXTI lines 17, 19 & 20 */
MartinJohnson 0:c65854d98061 265 FLASH_IRQn = 4, /*!< FLASH global Interrupt */
MartinJohnson 0:c65854d98061 266 RCC_IRQn = 5, /*!< RCC global Interrupt */
MartinJohnson 0:c65854d98061 267 EXTI0_IRQn = 6, /*!< EXTI Line0 Interrupt */
MartinJohnson 0:c65854d98061 268 EXTI1_IRQn = 7, /*!< EXTI Line1 Interrupt */
MartinJohnson 0:c65854d98061 269 EXTI2_TS_IRQn = 8, /*!< EXTI Line2 Interrupt and Touch Sense Interrupt */
MartinJohnson 0:c65854d98061 270 EXTI3_IRQn = 9, /*!< EXTI Line3 Interrupt */
MartinJohnson 0:c65854d98061 271 EXTI4_IRQn = 10, /*!< EXTI Line4 Interrupt */
MartinJohnson 0:c65854d98061 272 DMA1_Channel1_IRQn = 11, /*!< DMA1 Channel 1 Interrupt */
MartinJohnson 0:c65854d98061 273 DMA1_Channel2_IRQn = 12, /*!< DMA1 Channel 2 Interrupt */
MartinJohnson 0:c65854d98061 274 DMA1_Channel3_IRQn = 13, /*!< DMA1 Channel 3 Interrupt */
MartinJohnson 0:c65854d98061 275 DMA1_Channel4_IRQn = 14, /*!< DMA1 Channel 4 Interrupt */
MartinJohnson 0:c65854d98061 276 DMA1_Channel5_IRQn = 15, /*!< DMA1 Channel 5 Interrupt */
MartinJohnson 0:c65854d98061 277 DMA1_Channel6_IRQn = 16, /*!< DMA1 Channel 6 Interrupt */
MartinJohnson 0:c65854d98061 278 DMA1_Channel7_IRQn = 17, /*!< DMA1 Channel 7 Interrupt */
MartinJohnson 0:c65854d98061 279 ADC1_2_IRQn = 18, /*!< ADC1 & ADC2 Interrupts */
MartinJohnson 0:c65854d98061 280 CAN1_TX_IRQn = 19, /*!< CAN1 TX Interrupts */
MartinJohnson 0:c65854d98061 281 CAN1_RX0_IRQn = 20, /*!< CAN1 RX0 Interrupts */
MartinJohnson 0:c65854d98061 282 CAN1_RX1_IRQn = 21, /*!< CAN1 RX1 Interrupt */
MartinJohnson 0:c65854d98061 283 CAN1_SCE_IRQn = 22, /*!< CAN1 SCE Interrupt */
MartinJohnson 0:c65854d98061 284 EXTI9_5_IRQn = 23, /*!< External Line[9:5] Interrupts */
MartinJohnson 0:c65854d98061 285 TIM1_BRK_TIM15_IRQn = 24, /*!< TIM1 Break and TIM15 Interrupts */
MartinJohnson 0:c65854d98061 286 TIM1_UP_TIM16_IRQn = 25, /*!< TIM1 Update and TIM16 Interrupts */
MartinJohnson 0:c65854d98061 287 TIM1_TRG_COM_TIM17_IRQn = 26, /*!< TIM1 Trigger and Commutation and TIM17 Interrupt */
MartinJohnson 0:c65854d98061 288 TIM1_CC_IRQn = 27, /*!< TIM1 Capture Compare Interrupt */
MartinJohnson 0:c65854d98061 289 TIM2_IRQn = 28, /*!< TIM2 global Interrupt */
MartinJohnson 0:c65854d98061 290 TIM3_IRQn = 29, /*!< TIM3 global Interrupt */
MartinJohnson 0:c65854d98061 291 I2C1_EV_IRQn = 31, /*!< I2C1 Event Interrupt */
MartinJohnson 0:c65854d98061 292 I2C1_ER_IRQn = 32, /*!< I2C1 Error Interrupt */
MartinJohnson 0:c65854d98061 293 SPI1_IRQn = 35, /*!< SPI1 global Interrupt */
MartinJohnson 0:c65854d98061 294 USART1_IRQn = 37, /*!< USART1 global Interrupt */
MartinJohnson 0:c65854d98061 295 USART2_IRQn = 38, /*!< USART2 global Interrupt */
MartinJohnson 0:c65854d98061 296 USART3_IRQn = 39, /*!< USART3 global Interrupt */
MartinJohnson 0:c65854d98061 297 EXTI15_10_IRQn = 40, /*!< External Line[15:10] Interrupts */
MartinJohnson 0:c65854d98061 298 RTC_Alarm_IRQn = 41, /*!< RTC Alarm (A and B) through EXTI Line Interrupt */
MartinJohnson 0:c65854d98061 299 TIM6_DAC1_IRQn = 54, /*!< TIM6 global and DAC1 underrun error interrupts */
MartinJohnson 0:c65854d98061 300 TIM7_DAC2_IRQn = 55, /*!< TIM7 global and DAC2 underrun error Interrupt */
MartinJohnson 0:c65854d98061 301 COMP2_IRQn = 64, /*!< COMP2 global Interrupt */
MartinJohnson 0:c65854d98061 302 COMP4_6_IRQn = 65, /*!< COMP6 and COMP4 global Interrupt */
MartinJohnson 0:c65854d98061 303 HRTIM1_Master_IRQn = 67, /*!< HRTIM Master Timer global Interrupts */
MartinJohnson 0:c65854d98061 304 HRTIM1_TIMA_IRQn = 68, /*!< HRTIM Timer A global Interrupt */
MartinJohnson 0:c65854d98061 305 HRTIM1_TIMB_IRQn = 69, /*!< HRTIM Timer B global Interrupt */
MartinJohnson 0:c65854d98061 306 HRTIM1_TIMC_IRQn = 70, /*!< HRTIM Timer C global Interrupt */
MartinJohnson 0:c65854d98061 307 HRTIM1_TIMD_IRQn = 71, /*!< HRTIM Timer D global Interrupt */
MartinJohnson 0:c65854d98061 308 HRTIM1_TIME_IRQn = 72, /*!< HRTIM Timer E global Interrupt */
MartinJohnson 0:c65854d98061 309 HRTIM1_FLT_IRQn = 73, /*!< HRTIM Fault global Interrupt */
MartinJohnson 0:c65854d98061 310 FPU_IRQn = 81 /*!< Floating point Interrupt */
MartinJohnson 0:c65854d98061 311 #endif /* STM32F334x8 */
MartinJohnson 0:c65854d98061 312 #ifdef STM32F302x8
MartinJohnson 0:c65854d98061 313 WWDG_IRQn = 0, /*!< Window WatchDog Interrupt */
MartinJohnson 0:c65854d98061 314 PVD_IRQn = 1, /*!< PVD through EXTI Line detection Interrupt */
MartinJohnson 0:c65854d98061 315 TAMPER_STAMP_IRQn = 2, /*!< Tamper and TimeStamp interrupts */
MartinJohnson 0:c65854d98061 316 RTC_WKUP_IRQn = 3, /*!< RTC Wakeup interrupt through the EXTI lines 20 */
MartinJohnson 0:c65854d98061 317 FLASH_IRQn = 4, /*!< FLASH global Interrupt */
MartinJohnson 0:c65854d98061 318 RCC_IRQn = 5, /*!< RCC global Interrupt */
MartinJohnson 0:c65854d98061 319 EXTI0_IRQn = 6, /*!< EXTI Line0 Interrupt */
MartinJohnson 0:c65854d98061 320 EXTI1_IRQn = 7, /*!< EXTI Line1 Interrupt */
MartinJohnson 0:c65854d98061 321 EXTI2_TS_IRQn = 8, /*!< EXTI Line2 Interrupt and Touch Sense Interrupt */
MartinJohnson 0:c65854d98061 322 EXTI3_IRQn = 9, /*!< EXTI Line3 Interrupt */
MartinJohnson 0:c65854d98061 323 EXTI4_IRQn = 10, /*!< EXTI Line4 Interrupt */
MartinJohnson 0:c65854d98061 324 DMA1_Channel1_IRQn = 11, /*!< DMA1 Channel 1 Interrupt */
MartinJohnson 0:c65854d98061 325 DMA1_Channel2_IRQn = 12, /*!< DMA1 Channel 2 Interrupt */
MartinJohnson 0:c65854d98061 326 DMA1_Channel3_IRQn = 13, /*!< DMA1 Channel 3 Interrupt */
MartinJohnson 0:c65854d98061 327 DMA1_Channel4_IRQn = 14, /*!< DMA1 Channel 4 Interrupt */
MartinJohnson 0:c65854d98061 328 DMA1_Channel5_IRQn = 15, /*!< DMA1 Channel 5 Interrupt */
MartinJohnson 0:c65854d98061 329 DMA1_Channel6_IRQn = 16, /*!< DMA1 Channel 6 Interrupt */
MartinJohnson 0:c65854d98061 330 DMA1_Channel7_IRQn = 17, /*!< DMA1 Channel 7 Interrupt */
MartinJohnson 0:c65854d98061 331 ADC1_IRQn = 18, /*!< ADC1 Interrupts */
MartinJohnson 0:c65854d98061 332 USB_HP_CAN1_TX_IRQn = 19, /*!< USB Device High Priority or CAN1 TX Interrupts */
MartinJohnson 0:c65854d98061 333 USB_LP_CAN1_RX0_IRQn = 20, /*!< USB Device Low Priority or CAN1 RX0 Interrupts */
MartinJohnson 0:c65854d98061 334 CAN1_RX1_IRQn = 21, /*!< CAN1 RX1 Interrupt */
MartinJohnson 0:c65854d98061 335 CAN1_SCE_IRQn = 22, /*!< CAN1 SCE Interrupt */
MartinJohnson 0:c65854d98061 336 EXTI9_5_IRQn = 23, /*!< External Line[9:5] Interrupts */
MartinJohnson 0:c65854d98061 337 TIM1_BRK_TIM15_IRQn = 24, /*!< TIM1 Break and TIM15 Interrupts */
MartinJohnson 0:c65854d98061 338 TIM1_UP_TIM16_IRQn = 25, /*!< TIM1 Update and TIM16 Interrupts */
MartinJohnson 0:c65854d98061 339 TIM1_TRG_COM_TIM17_IRQn = 26, /*!< TIM1 Trigger and Commutation and TIM17 Interrupt */
MartinJohnson 0:c65854d98061 340 TIM1_CC_IRQn = 27, /*!< TIM1 Capture Compare Interrupt */
MartinJohnson 0:c65854d98061 341 TIM2_IRQn = 28, /*!< TIM2 global Interrupt */
MartinJohnson 0:c65854d98061 342 I2C1_EV_IRQn = 31, /*!< I2C1 Event Interrupt */
MartinJohnson 0:c65854d98061 343 I2C1_ER_IRQn = 32, /*!< I2C1 Error Interrupt */
MartinJohnson 0:c65854d98061 344 I2C2_EV_IRQn = 33, /*!< I2C2 Event Interrupt */
MartinJohnson 0:c65854d98061 345 I2C2_ER_IRQn = 34, /*!< I2C2 Error Interrupt */
MartinJohnson 0:c65854d98061 346 SPI2_IRQn = 36, /*!< SPI2 global Interrupt */
MartinJohnson 0:c65854d98061 347 USART1_IRQn = 37, /*!< USART1 global Interrupt */
MartinJohnson 0:c65854d98061 348 USART2_IRQn = 38, /*!< USART2 global Interrupt */
MartinJohnson 0:c65854d98061 349 USART3_IRQn = 39, /*!< USART3 global Interrupt */
MartinJohnson 0:c65854d98061 350 EXTI15_10_IRQn = 40, /*!< External Line[15:10] Interrupts */
MartinJohnson 0:c65854d98061 351 RTC_Alarm_IRQn = 41, /*!< RTC Alarm (A and B) through EXTI Line Interrupt */
MartinJohnson 0:c65854d98061 352 USBWakeUp_IRQn = 42, /*!< USB Wakeup Interrupt */
MartinJohnson 0:c65854d98061 353 SPI3_IRQn = 51, /*!< SPI3 global Interrupt */
MartinJohnson 0:c65854d98061 354 TIM6_DAC_IRQn = 54, /*!< TIM6 global and DAC1&2 underrun error interrupts */
MartinJohnson 0:c65854d98061 355 COMP2_IRQn = 64, /*!< COMP2 global Interrupt */
MartinJohnson 0:c65854d98061 356 COMP4_6_IRQn = 65, /*!< COMP5, COMP6 and COMP4 global Interrupt */
MartinJohnson 0:c65854d98061 357 COMP7_IRQn = 66, /*!< COMP7 global Interrupt */
MartinJohnson 0:c65854d98061 358 I2C3_EV_IRQn = 72, /*!< I2C3 Event Interrupt */
MartinJohnson 0:c65854d98061 359 I2C3_ER_IRQn = 73, /*!< I2C3 Error Interrupt */
MartinJohnson 0:c65854d98061 360 USB_HP_IRQn = 74, /*!< USB High Priority global Interrupt remap */
MartinJohnson 0:c65854d98061 361 USB_LP_IRQn = 75, /*!< USB Low Priority global Interrupt remap */
MartinJohnson 0:c65854d98061 362 USBWakeUp_RMP_IRQn = 76, /*!< USB Wakeup Interrupt remap */
MartinJohnson 0:c65854d98061 363 FPU_IRQn = 81 /*!< Floating point Interrupt */
MartinJohnson 0:c65854d98061 364 #endif /* STM32F302x8 */
MartinJohnson 0:c65854d98061 365 #ifdef STM32F303xE
MartinJohnson 0:c65854d98061 366 WWDG_IRQn = 0, /*!< Window WatchDog Interrupt */
MartinJohnson 0:c65854d98061 367 PVD_IRQn = 1, /*!< PVD through EXTI Line detection Interrupt */
MartinJohnson 0:c65854d98061 368 TAMPER_STAMP_IRQn = 2, /*!< Tamper and TimeStamp interrupts */
MartinJohnson 0:c65854d98061 369 RTC_WKUP_IRQn = 3, /*!< RTC Wakeup interrupt through the EXTI lines 17, 19 & 20 */
MartinJohnson 0:c65854d98061 370 FLASH_IRQn = 4, /*!< FLASH global Interrupt */
MartinJohnson 0:c65854d98061 371 RCC_IRQn = 5, /*!< RCC global Interrupt */
MartinJohnson 0:c65854d98061 372 EXTI0_IRQn = 6, /*!< EXTI Line0 Interrupt */
MartinJohnson 0:c65854d98061 373 EXTI1_IRQn = 7, /*!< EXTI Line1 Interrupt */
MartinJohnson 0:c65854d98061 374 EXTI2_TS_IRQn = 8, /*!< EXTI Line2 Interrupt and Touch Sense Interrupt */
MartinJohnson 0:c65854d98061 375 EXTI3_IRQn = 9, /*!< EXTI Line3 Interrupt */
MartinJohnson 0:c65854d98061 376 EXTI4_IRQn = 10, /*!< EXTI Line4 Interrupt */
MartinJohnson 0:c65854d98061 377 DMA1_Channel1_IRQn = 11, /*!< DMA1 Channel 1 Interrupt */
MartinJohnson 0:c65854d98061 378 DMA1_Channel2_IRQn = 12, /*!< DMA1 Channel 2 Interrupt */
MartinJohnson 0:c65854d98061 379 DMA1_Channel3_IRQn = 13, /*!< DMA1 Channel 3 Interrupt */
MartinJohnson 0:c65854d98061 380 DMA1_Channel4_IRQn = 14, /*!< DMA1 Channel 4 Interrupt */
MartinJohnson 0:c65854d98061 381 DMA1_Channel5_IRQn = 15, /*!< DMA1 Channel 5 Interrupt */
MartinJohnson 0:c65854d98061 382 DMA1_Channel6_IRQn = 16, /*!< DMA1 Channel 6 Interrupt */
MartinJohnson 0:c65854d98061 383 DMA1_Channel7_IRQn = 17, /*!< DMA1 Channel 7 Interrupt */
MartinJohnson 0:c65854d98061 384 ADC1_2_IRQn = 18, /*!< ADC1 & ADC2 Interrupts */
MartinJohnson 0:c65854d98061 385 USB_HP_CAN1_TX_IRQn = 19, /*!< USB Device High Priority or CAN1 TX Interrupts */
MartinJohnson 0:c65854d98061 386 USB_LP_CAN1_RX0_IRQn = 20, /*!< USB Device Low Priority or CAN1 RX0 Interrupts */
MartinJohnson 0:c65854d98061 387 CAN1_RX1_IRQn = 21, /*!< CAN1 RX1 Interrupt */
MartinJohnson 0:c65854d98061 388 CAN1_SCE_IRQn = 22, /*!< CAN1 SCE Interrupt */
MartinJohnson 0:c65854d98061 389 EXTI9_5_IRQn = 23, /*!< External Line[9:5] Interrupts */
MartinJohnson 0:c65854d98061 390 TIM1_BRK_TIM15_IRQn = 24, /*!< TIM1 Break and TIM15 Interrupts */
MartinJohnson 0:c65854d98061 391 TIM1_UP_TIM16_IRQn = 25, /*!< TIM1 Update and TIM16 Interrupts */
MartinJohnson 0:c65854d98061 392 TIM1_TRG_COM_TIM17_IRQn = 26, /*!< TIM1 Trigger and Commutation and TIM17 Interrupt */
MartinJohnson 0:c65854d98061 393 TIM1_CC_IRQn = 27, /*!< TIM1 Capture Compare Interrupt */
MartinJohnson 0:c65854d98061 394 TIM2_IRQn = 28, /*!< TIM2 global Interrupt */
MartinJohnson 0:c65854d98061 395 TIM3_IRQn = 29, /*!< TIM3 global Interrupt */
MartinJohnson 0:c65854d98061 396 TIM4_IRQn = 30, /*!< TIM4 global Interrupt */
MartinJohnson 0:c65854d98061 397 I2C1_EV_IRQn = 31, /*!< I2C1 Event Interrupt */
MartinJohnson 0:c65854d98061 398 I2C1_ER_IRQn = 32, /*!< I2C1 Error Interrupt */
MartinJohnson 0:c65854d98061 399 I2C2_EV_IRQn = 33, /*!< I2C2 Event Interrupt */
MartinJohnson 0:c65854d98061 400 I2C2_ER_IRQn = 34, /*!< I2C2 Error Interrupt */
MartinJohnson 0:c65854d98061 401 SPI1_IRQn = 35, /*!< SPI1 global Interrupt */
MartinJohnson 0:c65854d98061 402 SPI2_IRQn = 36, /*!< SPI2 global Interrupt */
MartinJohnson 0:c65854d98061 403 USART1_IRQn = 37, /*!< USART1 global Interrupt */
MartinJohnson 0:c65854d98061 404 USART2_IRQn = 38, /*!< USART2 global Interrupt */
MartinJohnson 0:c65854d98061 405 USART3_IRQn = 39, /*!< USART3 global Interrupt */
MartinJohnson 0:c65854d98061 406 EXTI15_10_IRQn = 40, /*!< External Line[15:10] Interrupts */
MartinJohnson 0:c65854d98061 407 RTC_Alarm_IRQn = 41, /*!< RTC Alarm (A and B) through EXTI Line Interrupt */
MartinJohnson 0:c65854d98061 408 USBWakeUp_IRQn = 42, /*!< USB Wakeup Interrupt */
MartinJohnson 0:c65854d98061 409 TIM8_BRK_IRQn = 43, /*!< TIM8 Break Interrupt */
MartinJohnson 0:c65854d98061 410 TIM8_UP_IRQn = 44, /*!< TIM8 Update Interrupt */
MartinJohnson 0:c65854d98061 411 TIM8_TRG_COM_IRQn = 45, /*!< TIM8 Trigger and Commutation Interrupt */
MartinJohnson 0:c65854d98061 412 TIM8_CC_IRQn = 46, /*!< TIM8 Capture Compare Interrupt */
MartinJohnson 0:c65854d98061 413 ADC3_IRQn = 47, /*!< ADC3 global Interrupt */
MartinJohnson 0:c65854d98061 414 FMC_IRQn = 48, /*!< FMC global Interrupt */
MartinJohnson 0:c65854d98061 415 SPI3_IRQn = 51, /*!< SPI3 global Interrupt */
MartinJohnson 0:c65854d98061 416 UART4_IRQn = 52, /*!< UART4 global Interrupt */
MartinJohnson 0:c65854d98061 417 UART5_IRQn = 53, /*!< UART5 global Interrupt */
MartinJohnson 0:c65854d98061 418 TIM6_DAC_IRQn = 54, /*!< TIM6 global and DAC1&2 underrun error interrupts */
MartinJohnson 0:c65854d98061 419 TIM7_IRQn = 55, /*!< TIM7 global Interrupt */
MartinJohnson 0:c65854d98061 420 DMA2_Channel1_IRQn = 56, /*!< DMA2 Channel 1 global Interrupt */
MartinJohnson 0:c65854d98061 421 DMA2_Channel2_IRQn = 57, /*!< DMA2 Channel 2 global Interrupt */
MartinJohnson 0:c65854d98061 422 DMA2_Channel3_IRQn = 58, /*!< DMA2 Channel 3 global Interrupt */
MartinJohnson 0:c65854d98061 423 DMA2_Channel4_IRQn = 59, /*!< DMA2 Channel 4 global Interrupt */
MartinJohnson 0:c65854d98061 424 DMA2_Channel5_IRQn = 60, /*!< DMA2 Channel 5 global Interrupt */
MartinJohnson 0:c65854d98061 425 ADC4_IRQn = 61, /*!< ADC4 global Interrupt */
MartinJohnson 0:c65854d98061 426 COMP1_2_3_IRQn = 64, /*!< COMP1, COMP2 and COMP3 global Interrupt */
MartinJohnson 0:c65854d98061 427 COMP4_5_6_IRQn = 65, /*!< COMP5, COMP6 and COMP4 global Interrupt */
MartinJohnson 0:c65854d98061 428 COMP7_IRQn = 66, /*!< COMP7 global Interrupt */
MartinJohnson 0:c65854d98061 429 I2C3_EV_IRQn = 72, /*!< I2C3 event interrupt */
MartinJohnson 0:c65854d98061 430 I2C3_ER_IRQn = 73, /*!< I2C3 error interrupt */
MartinJohnson 0:c65854d98061 431 USB_HP_IRQn = 74, /*!< USB High Priority global Interrupt remap */
MartinJohnson 0:c65854d98061 432 USB_LP_IRQn = 75, /*!< USB Low Priority global Interrupt remap */
MartinJohnson 0:c65854d98061 433 USBWakeUp_RMP_IRQn = 76, /*!< USB Wakeup Interrupt remap */
MartinJohnson 0:c65854d98061 434 TIM20_BRK_IRQn = 77, /*!< TIM20 Break Interrupt */
MartinJohnson 0:c65854d98061 435 TIM20_UP_IRQn = 78, /*!< TIM20 Update Interrupt */
MartinJohnson 0:c65854d98061 436 TIM20_TRG_COM_IRQn = 79, /*!< TIM20 Trigger and Commutation Interrupt */
MartinJohnson 0:c65854d98061 437 TIM20_CC_IRQn = 80, /*!< TIM20 Capture Compare Interrupt */
MartinJohnson 0:c65854d98061 438 FPU_IRQn = 81, /*!< Floating point Interrupt */
MartinJohnson 0:c65854d98061 439 SPI4_IRQn = 84 /*!< SPI4 global Interrupt */
MartinJohnson 0:c65854d98061 440 #endif /* STM32F303xE */
MartinJohnson 0:c65854d98061 441 } IRQn_Type;
MartinJohnson 0:c65854d98061 442
MartinJohnson 0:c65854d98061 443 /**
MartinJohnson 0:c65854d98061 444 * @}
MartinJohnson 0:c65854d98061 445 */
MartinJohnson 0:c65854d98061 446
MartinJohnson 0:c65854d98061 447 #include "core_cm4.h" /* Cortex-M4 processor and core peripherals */
MartinJohnson 0:c65854d98061 448 #include "system_stm32f30x.h" /* STM32F30x System Header */
MartinJohnson 0:c65854d98061 449 #include <stdint.h>
MartinJohnson 0:c65854d98061 450
MartinJohnson 0:c65854d98061 451 /** @addtogroup Exported_types
MartinJohnson 0:c65854d98061 452 * @{
MartinJohnson 0:c65854d98061 453 */
MartinJohnson 0:c65854d98061 454 /*!< STM32F10x Standard Peripheral Library old types (maintained for legacy purpose) */
MartinJohnson 0:c65854d98061 455 typedef int32_t s32;
MartinJohnson 0:c65854d98061 456 typedef int16_t s16;
MartinJohnson 0:c65854d98061 457 typedef int8_t s8;
MartinJohnson 0:c65854d98061 458
MartinJohnson 0:c65854d98061 459 typedef const int32_t sc32; /*!< Read Only */
MartinJohnson 0:c65854d98061 460 typedef const int16_t sc16; /*!< Read Only */
MartinJohnson 0:c65854d98061 461 typedef const int8_t sc8; /*!< Read Only */
MartinJohnson 0:c65854d98061 462
MartinJohnson 0:c65854d98061 463 typedef __IO int32_t vs32;
MartinJohnson 0:c65854d98061 464 typedef __IO int16_t vs16;
MartinJohnson 0:c65854d98061 465 typedef __IO int8_t vs8;
MartinJohnson 0:c65854d98061 466
MartinJohnson 0:c65854d98061 467 typedef __I int32_t vsc32; /*!< Read Only */
MartinJohnson 0:c65854d98061 468 typedef __I int16_t vsc16; /*!< Read Only */
MartinJohnson 0:c65854d98061 469 typedef __I int8_t vsc8; /*!< Read Only */
MartinJohnson 0:c65854d98061 470
MartinJohnson 0:c65854d98061 471 //typedef uint32_t u32;
MartinJohnson 0:c65854d98061 472 typedef uint16_t u16;
MartinJohnson 0:c65854d98061 473 typedef uint8_t u8;
MartinJohnson 0:c65854d98061 474
MartinJohnson 0:c65854d98061 475 typedef const uint32_t uc32; /*!< Read Only */
MartinJohnson 0:c65854d98061 476 typedef const uint16_t uc16; /*!< Read Only */
MartinJohnson 0:c65854d98061 477 typedef const uint8_t uc8; /*!< Read Only */
MartinJohnson 0:c65854d98061 478
MartinJohnson 0:c65854d98061 479 typedef __IO uint32_t vu32;
MartinJohnson 0:c65854d98061 480 typedef __IO uint16_t vu16;
MartinJohnson 0:c65854d98061 481 typedef __IO uint8_t vu8;
MartinJohnson 0:c65854d98061 482
MartinJohnson 0:c65854d98061 483 typedef __I uint32_t vuc32; /*!< Read Only */
MartinJohnson 0:c65854d98061 484 typedef __I uint16_t vuc16; /*!< Read Only */
MartinJohnson 0:c65854d98061 485 typedef __I uint8_t vuc8; /*!< Read Only */
MartinJohnson 0:c65854d98061 486
MartinJohnson 0:c65854d98061 487 typedef enum {RESET = 0, SET = !RESET} FlagStatus, ITStatus;
MartinJohnson 0:c65854d98061 488
MartinJohnson 0:c65854d98061 489 typedef enum {DISABLE = 0, ENABLE = !DISABLE} FunctionalState;
MartinJohnson 0:c65854d98061 490 #define IS_FUNCTIONAL_STATE(STATE) (((STATE) == DISABLE) || ((STATE) == ENABLE))
MartinJohnson 0:c65854d98061 491
MartinJohnson 0:c65854d98061 492 typedef enum {ERROR = 0, SUCCESS = !ERROR} ErrorStatus;
MartinJohnson 0:c65854d98061 493
MartinJohnson 0:c65854d98061 494 /**
MartinJohnson 0:c65854d98061 495 * @}
MartinJohnson 0:c65854d98061 496 */
MartinJohnson 0:c65854d98061 497
MartinJohnson 0:c65854d98061 498 /** @addtogroup Peripheral_registers_structures
MartinJohnson 0:c65854d98061 499 * @{
MartinJohnson 0:c65854d98061 500 */
MartinJohnson 0:c65854d98061 501
MartinJohnson 0:c65854d98061 502 /**
MartinJohnson 0:c65854d98061 503 * @brief Analog to Digital Converter
MartinJohnson 0:c65854d98061 504 */
MartinJohnson 0:c65854d98061 505
MartinJohnson 0:c65854d98061 506 typedef struct
MartinJohnson 0:c65854d98061 507 {
MartinJohnson 0:c65854d98061 508 __IO uint32_t ISR; /*!< ADC Interrupt and Status Register, Address offset: 0x00 */
MartinJohnson 0:c65854d98061 509 __IO uint32_t IER; /*!< ADC Interrupt Enable Register, Address offset: 0x04 */
MartinJohnson 0:c65854d98061 510 __IO uint32_t CR; /*!< ADC control register, Address offset: 0x08 */
MartinJohnson 0:c65854d98061 511 __IO uint32_t CFGR; /*!< ADC Configuration register, Address offset: 0x0C */
MartinJohnson 0:c65854d98061 512 uint32_t RESERVED0; /*!< Reserved, 0x010 */
MartinJohnson 0:c65854d98061 513 __IO uint32_t SMPR1; /*!< ADC sample time register 1, Address offset: 0x14 */
MartinJohnson 0:c65854d98061 514 __IO uint32_t SMPR2; /*!< ADC sample time register 2, Address offset: 0x18 */
MartinJohnson 0:c65854d98061 515 uint32_t RESERVED1; /*!< Reserved, 0x01C */
MartinJohnson 0:c65854d98061 516 __IO uint32_t TR1; /*!< ADC watchdog threshold register 1, Address offset: 0x20 */
MartinJohnson 0:c65854d98061 517 __IO uint32_t TR2; /*!< ADC watchdog threshold register 2, Address offset: 0x24 */
MartinJohnson 0:c65854d98061 518 __IO uint32_t TR3; /*!< ADC watchdog threshold register 3, Address offset: 0x28 */
MartinJohnson 0:c65854d98061 519 uint32_t RESERVED2; /*!< Reserved, 0x02C */
MartinJohnson 0:c65854d98061 520 __IO uint32_t SQR1; /*!< ADC regular sequence register 1, Address offset: 0x30 */
MartinJohnson 0:c65854d98061 521 __IO uint32_t SQR2; /*!< ADC regular sequence register 2, Address offset: 0x34 */
MartinJohnson 0:c65854d98061 522 __IO uint32_t SQR3; /*!< ADC regular sequence register 3, Address offset: 0x38 */
MartinJohnson 0:c65854d98061 523 __IO uint32_t SQR4; /*!< ADC regular sequence register 4, Address offset: 0x3C */
MartinJohnson 0:c65854d98061 524 __IO uint32_t DR; /*!< ADC regular data register, Address offset: 0x40 */
MartinJohnson 0:c65854d98061 525 uint32_t RESERVED3; /*!< Reserved, 0x044 */
MartinJohnson 0:c65854d98061 526 uint32_t RESERVED4; /*!< Reserved, 0x048 */
MartinJohnson 0:c65854d98061 527 __IO uint32_t JSQR; /*!< ADC injected sequence register, Address offset: 0x4C */
MartinJohnson 0:c65854d98061 528 uint32_t RESERVED5[4]; /*!< Reserved, 0x050 - 0x05C */
MartinJohnson 0:c65854d98061 529 __IO uint32_t OFR1; /*!< ADC offset register 1, Address offset: 0x60 */
MartinJohnson 0:c65854d98061 530 __IO uint32_t OFR2; /*!< ADC offset register 2, Address offset: 0x64 */
MartinJohnson 0:c65854d98061 531 __IO uint32_t OFR3; /*!< ADC offset register 3, Address offset: 0x68 */
MartinJohnson 0:c65854d98061 532 __IO uint32_t OFR4; /*!< ADC offset register 4, Address offset: 0x6C */
MartinJohnson 0:c65854d98061 533 uint32_t RESERVED6[4]; /*!< Reserved, 0x070 - 0x07C */
MartinJohnson 0:c65854d98061 534 __IO uint32_t JDR1; /*!< ADC injected data register 1, Address offset: 0x80 */
MartinJohnson 0:c65854d98061 535 __IO uint32_t JDR2; /*!< ADC injected data register 2, Address offset: 0x84 */
MartinJohnson 0:c65854d98061 536 __IO uint32_t JDR3; /*!< ADC injected data register 3, Address offset: 0x88 */
MartinJohnson 0:c65854d98061 537 __IO uint32_t JDR4; /*!< ADC injected data register 4, Address offset: 0x8C */
MartinJohnson 0:c65854d98061 538 uint32_t RESERVED7[4]; /*!< Reserved, 0x090 - 0x09C */
MartinJohnson 0:c65854d98061 539 __IO uint32_t AWD2CR; /*!< ADC Analog Watchdog 2 Configuration Register, Address offset: 0xA0 */
MartinJohnson 0:c65854d98061 540 __IO uint32_t AWD3CR; /*!< ADC Analog Watchdog 3 Configuration Register, Address offset: 0xA4 */
MartinJohnson 0:c65854d98061 541 uint32_t RESERVED8; /*!< Reserved, 0x0A8 */
MartinJohnson 0:c65854d98061 542 uint32_t RESERVED9; /*!< Reserved, 0x0AC */
MartinJohnson 0:c65854d98061 543 __IO uint32_t DIFSEL; /*!< ADC Differential Mode Selection Register, Address offset: 0xB0 */
MartinJohnson 0:c65854d98061 544 __IO uint32_t CALFACT; /*!< ADC Calibration Factors, Address offset: 0xB4 */
MartinJohnson 0:c65854d98061 545
MartinJohnson 0:c65854d98061 546 } ADC_TypeDef;
MartinJohnson 0:c65854d98061 547
MartinJohnson 0:c65854d98061 548 typedef struct
MartinJohnson 0:c65854d98061 549 {
MartinJohnson 0:c65854d98061 550 __IO uint32_t CSR; /*!< ADC Common status register, Address offset: ADC1/3 base address + 0x300 */
MartinJohnson 0:c65854d98061 551 uint32_t RESERVED; /*!< Reserved, ADC1/3 base address + 0x304 */
MartinJohnson 0:c65854d98061 552 __IO uint32_t CCR; /*!< ADC common control register, Address offset: ADC1/3 base address + 0x308 */
MartinJohnson 0:c65854d98061 553 __IO uint32_t CDR; /*!< ADC common regular data register for dual
MartinJohnson 0:c65854d98061 554 modes, Address offset: ADC1/3 base address + 0x30A */
MartinJohnson 0:c65854d98061 555 } ADC_Common_TypeDef;
MartinJohnson 0:c65854d98061 556
MartinJohnson 0:c65854d98061 557
MartinJohnson 0:c65854d98061 558 /**
MartinJohnson 0:c65854d98061 559 * @brief Controller Area Network TxMailBox
MartinJohnson 0:c65854d98061 560 */
MartinJohnson 0:c65854d98061 561 typedef struct
MartinJohnson 0:c65854d98061 562 {
MartinJohnson 0:c65854d98061 563 __IO uint32_t TIR; /*!< CAN TX mailbox identifier register */
MartinJohnson 0:c65854d98061 564 __IO uint32_t TDTR; /*!< CAN mailbox data length control and time stamp register */
MartinJohnson 0:c65854d98061 565 __IO uint32_t TDLR; /*!< CAN mailbox data low register */
MartinJohnson 0:c65854d98061 566 __IO uint32_t TDHR; /*!< CAN mailbox data high register */
MartinJohnson 0:c65854d98061 567 } CAN_TxMailBox_TypeDef;
MartinJohnson 0:c65854d98061 568
MartinJohnson 0:c65854d98061 569 /**
MartinJohnson 0:c65854d98061 570 * @brief Controller Area Network FIFOMailBox
MartinJohnson 0:c65854d98061 571 */
MartinJohnson 0:c65854d98061 572 typedef struct
MartinJohnson 0:c65854d98061 573 {
MartinJohnson 0:c65854d98061 574 __IO uint32_t RIR; /*!< CAN receive FIFO mailbox identifier register */
MartinJohnson 0:c65854d98061 575 __IO uint32_t RDTR; /*!< CAN receive FIFO mailbox data length control and time stamp register */
MartinJohnson 0:c65854d98061 576 __IO uint32_t RDLR; /*!< CAN receive FIFO mailbox data low register */
MartinJohnson 0:c65854d98061 577 __IO uint32_t RDHR; /*!< CAN receive FIFO mailbox data high register */
MartinJohnson 0:c65854d98061 578 } CAN_FIFOMailBox_TypeDef;
MartinJohnson 0:c65854d98061 579
MartinJohnson 0:c65854d98061 580 /**
MartinJohnson 0:c65854d98061 581 * @brief Controller Area Network FilterRegister
MartinJohnson 0:c65854d98061 582 */
MartinJohnson 0:c65854d98061 583 typedef struct
MartinJohnson 0:c65854d98061 584 {
MartinJohnson 0:c65854d98061 585 __IO uint32_t FR1; /*!< CAN Filter bank register 1 */
MartinJohnson 0:c65854d98061 586 __IO uint32_t FR2; /*!< CAN Filter bank register 1 */
MartinJohnson 0:c65854d98061 587 } CAN_FilterRegister_TypeDef;
MartinJohnson 0:c65854d98061 588
MartinJohnson 0:c65854d98061 589 /**
MartinJohnson 0:c65854d98061 590 * @brief Controller Area Network
MartinJohnson 0:c65854d98061 591 */
MartinJohnson 0:c65854d98061 592 typedef struct
MartinJohnson 0:c65854d98061 593 {
MartinJohnson 0:c65854d98061 594 __IO uint32_t MCR; /*!< CAN master control register, Address offset: 0x00 */
MartinJohnson 0:c65854d98061 595 __IO uint32_t MSR; /*!< CAN master status register, Address offset: 0x04 */
MartinJohnson 0:c65854d98061 596 __IO uint32_t TSR; /*!< CAN transmit status register, Address offset: 0x08 */
MartinJohnson 0:c65854d98061 597 __IO uint32_t RF0R; /*!< CAN receive FIFO 0 register, Address offset: 0x0C */
MartinJohnson 0:c65854d98061 598 __IO uint32_t RF1R; /*!< CAN receive FIFO 1 register, Address offset: 0x10 */
MartinJohnson 0:c65854d98061 599 __IO uint32_t IER; /*!< CAN interrupt enable register, Address offset: 0x14 */
MartinJohnson 0:c65854d98061 600 __IO uint32_t ESR; /*!< CAN error status register, Address offset: 0x18 */
MartinJohnson 0:c65854d98061 601 __IO uint32_t BTR; /*!< CAN bit timing register, Address offset: 0x1C */
MartinJohnson 0:c65854d98061 602 uint32_t RESERVED0[88]; /*!< Reserved, 0x020 - 0x17F */
MartinJohnson 0:c65854d98061 603 CAN_TxMailBox_TypeDef sTxMailBox[3]; /*!< CAN Tx MailBox, Address offset: 0x180 - 0x1AC */
MartinJohnson 0:c65854d98061 604 CAN_FIFOMailBox_TypeDef sFIFOMailBox[2]; /*!< CAN FIFO MailBox, Address offset: 0x1B0 - 0x1CC */
MartinJohnson 0:c65854d98061 605 uint32_t RESERVED1[12]; /*!< Reserved, 0x1D0 - 0x1FF */
MartinJohnson 0:c65854d98061 606 __IO uint32_t FMR; /*!< CAN filter master register, Address offset: 0x200 */
MartinJohnson 0:c65854d98061 607 __IO uint32_t FM1R; /*!< CAN filter mode register, Address offset: 0x204 */
MartinJohnson 0:c65854d98061 608 uint32_t RESERVED2; /*!< Reserved, 0x208 */
MartinJohnson 0:c65854d98061 609 __IO uint32_t FS1R; /*!< CAN filter scale register, Address offset: 0x20C */
MartinJohnson 0:c65854d98061 610 uint32_t RESERVED3; /*!< Reserved, 0x210 */
MartinJohnson 0:c65854d98061 611 __IO uint32_t FFA1R; /*!< CAN filter FIFO assignment register, Address offset: 0x214 */
MartinJohnson 0:c65854d98061 612 uint32_t RESERVED4; /*!< Reserved, 0x218 */
MartinJohnson 0:c65854d98061 613 __IO uint32_t FA1R; /*!< CAN filter activation register, Address offset: 0x21C */
MartinJohnson 0:c65854d98061 614 uint32_t RESERVED5[8]; /*!< Reserved, 0x220-0x23F */
MartinJohnson 0:c65854d98061 615 CAN_FilterRegister_TypeDef sFilterRegister[28]; /*!< CAN Filter Register, Address offset: 0x240-0x31C */
MartinJohnson 0:c65854d98061 616 } CAN_TypeDef;
MartinJohnson 0:c65854d98061 617
MartinJohnson 0:c65854d98061 618
MartinJohnson 0:c65854d98061 619 /**
MartinJohnson 0:c65854d98061 620 * @brief Analog Comparators
MartinJohnson 0:c65854d98061 621 */
MartinJohnson 0:c65854d98061 622
MartinJohnson 0:c65854d98061 623 typedef struct
MartinJohnson 0:c65854d98061 624 {
MartinJohnson 0:c65854d98061 625 __IO uint32_t CSR; /*!< Comparator control Status register, Address offset: 0x00 */
MartinJohnson 0:c65854d98061 626 } COMP_TypeDef;
MartinJohnson 0:c65854d98061 627
MartinJohnson 0:c65854d98061 628 /**
MartinJohnson 0:c65854d98061 629 * @brief CRC calculation unit
MartinJohnson 0:c65854d98061 630 */
MartinJohnson 0:c65854d98061 631
MartinJohnson 0:c65854d98061 632 typedef struct
MartinJohnson 0:c65854d98061 633 {
MartinJohnson 0:c65854d98061 634 __IO uint32_t DR; /*!< CRC Data register, Address offset: 0x00 */
MartinJohnson 0:c65854d98061 635 __IO uint8_t IDR; /*!< CRC Independent data register, Address offset: 0x04 */
MartinJohnson 0:c65854d98061 636 uint8_t RESERVED0; /*!< Reserved, 0x05 */
MartinJohnson 0:c65854d98061 637 uint16_t RESERVED1; /*!< Reserved, 0x06 */
MartinJohnson 0:c65854d98061 638 __IO uint32_t CR; /*!< CRC Control register, Address offset: 0x08 */
MartinJohnson 0:c65854d98061 639 uint32_t RESERVED2; /*!< Reserved, 0x0C */
MartinJohnson 0:c65854d98061 640 __IO uint32_t INIT; /*!< Initial CRC value register, Address offset: 0x10 */
MartinJohnson 0:c65854d98061 641 __IO uint32_t POL; /*!< CRC polynomial register, Address offset: 0x14 */
MartinJohnson 0:c65854d98061 642 } CRC_TypeDef;
MartinJohnson 0:c65854d98061 643
MartinJohnson 0:c65854d98061 644 /**
MartinJohnson 0:c65854d98061 645 * @brief Digital to Analog Converter
MartinJohnson 0:c65854d98061 646 */
MartinJohnson 0:c65854d98061 647
MartinJohnson 0:c65854d98061 648 typedef struct
MartinJohnson 0:c65854d98061 649 {
MartinJohnson 0:c65854d98061 650 __IO uint32_t CR; /*!< DAC control register, Address offset: 0x00 */
MartinJohnson 0:c65854d98061 651 __IO uint32_t SWTRIGR; /*!< DAC software trigger register, Address offset: 0x04 */
MartinJohnson 0:c65854d98061 652 __IO uint32_t DHR12R1; /*!< DAC channel1 12-bit right-aligned data holding register, Address offset: 0x08 */
MartinJohnson 0:c65854d98061 653 __IO uint32_t DHR12L1; /*!< DAC channel1 12-bit left aligned data holding register, Address offset: 0x0C */
MartinJohnson 0:c65854d98061 654 __IO uint32_t DHR8R1; /*!< DAC channel1 8-bit right aligned data holding register, Address offset: 0x10 */
MartinJohnson 0:c65854d98061 655 __IO uint32_t DHR12R2; /*!< DAC channel2 12-bit right aligned data holding register, Address offset: 0x14 */
MartinJohnson 0:c65854d98061 656 __IO uint32_t DHR12L2; /*!< DAC channel2 12-bit left aligned data holding register, Address offset: 0x18 */
MartinJohnson 0:c65854d98061 657 __IO uint32_t DHR8R2; /*!< DAC channel2 8-bit right-aligned data holding register, Address offset: 0x1C */
MartinJohnson 0:c65854d98061 658 __IO uint32_t DHR12RD; /*!< Dual DAC 12-bit right-aligned data holding register, Address offset: 0x20 */
MartinJohnson 0:c65854d98061 659 __IO uint32_t DHR12LD; /*!< DUAL DAC 12-bit left aligned data holding register, Address offset: 0x24 */
MartinJohnson 0:c65854d98061 660 __IO uint32_t DHR8RD; /*!< DUAL DAC 8-bit right aligned data holding register, Address offset: 0x28 */
MartinJohnson 0:c65854d98061 661 __IO uint32_t DOR1; /*!< DAC channel1 data output register, Address offset: 0x2C */
MartinJohnson 0:c65854d98061 662 __IO uint32_t DOR2; /*!< DAC channel2 data output register, Address offset: 0x30 */
MartinJohnson 0:c65854d98061 663 __IO uint32_t SR; /*!< DAC status register, Address offset: 0x34 */
MartinJohnson 0:c65854d98061 664 } DAC_TypeDef;
MartinJohnson 0:c65854d98061 665
MartinJohnson 0:c65854d98061 666 /**
MartinJohnson 0:c65854d98061 667 * @brief Debug MCU
MartinJohnson 0:c65854d98061 668 */
MartinJohnson 0:c65854d98061 669
MartinJohnson 0:c65854d98061 670 typedef struct
MartinJohnson 0:c65854d98061 671 {
MartinJohnson 0:c65854d98061 672 __IO uint32_t IDCODE; /*!< MCU device ID code, Address offset: 0x00 */
MartinJohnson 0:c65854d98061 673 __IO uint32_t CR; /*!< Debug MCU configuration register, Address offset: 0x04 */
MartinJohnson 0:c65854d98061 674 __IO uint32_t APB1FZ; /*!< Debug MCU APB1 freeze register, Address offset: 0x08 */
MartinJohnson 0:c65854d98061 675 __IO uint32_t APB2FZ; /*!< Debug MCU APB2 freeze register, Address offset: 0x0C */
MartinJohnson 0:c65854d98061 676 }DBGMCU_TypeDef;
MartinJohnson 0:c65854d98061 677
MartinJohnson 0:c65854d98061 678 /**
MartinJohnson 0:c65854d98061 679 * @brief DMA Controller
MartinJohnson 0:c65854d98061 680 */
MartinJohnson 0:c65854d98061 681
MartinJohnson 0:c65854d98061 682 typedef struct
MartinJohnson 0:c65854d98061 683 {
MartinJohnson 0:c65854d98061 684 __IO uint32_t CCR; /*!< DMA channel x configuration register */
MartinJohnson 0:c65854d98061 685 __IO uint32_t CNDTR; /*!< DMA channel x number of data register */
MartinJohnson 0:c65854d98061 686 __IO uint32_t CPAR; /*!< DMA channel x peripheral address register */
MartinJohnson 0:c65854d98061 687 __IO uint32_t CMAR; /*!< DMA channel x memory address register */
MartinJohnson 0:c65854d98061 688 } DMA_Channel_TypeDef;
MartinJohnson 0:c65854d98061 689
MartinJohnson 0:c65854d98061 690 typedef struct
MartinJohnson 0:c65854d98061 691 {
MartinJohnson 0:c65854d98061 692 __IO uint32_t ISR; /*!< DMA interrupt status register, Address offset: 0x00 */
MartinJohnson 0:c65854d98061 693 __IO uint32_t IFCR; /*!< DMA interrupt clear flag register, Address offset: 0x04 */
MartinJohnson 0:c65854d98061 694 } DMA_TypeDef;
MartinJohnson 0:c65854d98061 695
MartinJohnson 0:c65854d98061 696 /**
MartinJohnson 0:c65854d98061 697 * @brief External Interrupt/Event Controller
MartinJohnson 0:c65854d98061 698 */
MartinJohnson 0:c65854d98061 699
MartinJohnson 0:c65854d98061 700 typedef struct
MartinJohnson 0:c65854d98061 701 {
MartinJohnson 0:c65854d98061 702 __IO uint32_t IMR; /*!< EXTI Interrupt mask register, Address offset: 0x00 */
MartinJohnson 0:c65854d98061 703 __IO uint32_t EMR; /*!< EXTI Event mask register, Address offset: 0x04 */
MartinJohnson 0:c65854d98061 704 __IO uint32_t RTSR; /*!< EXTI Rising trigger selection register, Address offset: 0x08 */
MartinJohnson 0:c65854d98061 705 __IO uint32_t FTSR; /*!< EXTI Falling trigger selection register, Address offset: 0x0C */
MartinJohnson 0:c65854d98061 706 __IO uint32_t SWIER; /*!< EXTI Software interrupt event register, Address offset: 0x10 */
MartinJohnson 0:c65854d98061 707 __IO uint32_t PR; /*!< EXTI Pending register, Address offset: 0x14 */
MartinJohnson 0:c65854d98061 708 uint32_t RESERVED1; /*!< Reserved, 0x18 */
MartinJohnson 0:c65854d98061 709 uint32_t RESERVED2; /*!< Reserved, 0x1C */
MartinJohnson 0:c65854d98061 710 __IO uint32_t IMR2; /*!< EXTI Interrupt mask register, Address offset: 0x20 */
MartinJohnson 0:c65854d98061 711 __IO uint32_t EMR2; /*!< EXTI Event mask register, Address offset: 0x24 */
MartinJohnson 0:c65854d98061 712 __IO uint32_t RTSR2; /*!< EXTI Rising trigger selection register, Address offset: 0x28 */
MartinJohnson 0:c65854d98061 713 __IO uint32_t FTSR2; /*!< EXTI Falling trigger selection register, Address offset: 0x2C */
MartinJohnson 0:c65854d98061 714 __IO uint32_t SWIER2; /*!< EXTI Software interrupt event register, Address offset: 0x30 */
MartinJohnson 0:c65854d98061 715 __IO uint32_t PR2; /*!< EXTI Pending register, Address offset: 0x34 */
MartinJohnson 0:c65854d98061 716 }EXTI_TypeDef;
MartinJohnson 0:c65854d98061 717
MartinJohnson 0:c65854d98061 718 /**
MartinJohnson 0:c65854d98061 719 * @brief FLASH Registers
MartinJohnson 0:c65854d98061 720 */
MartinJohnson 0:c65854d98061 721
MartinJohnson 0:c65854d98061 722 typedef struct
MartinJohnson 0:c65854d98061 723 {
MartinJohnson 0:c65854d98061 724 __IO uint32_t ACR; /*!< FLASH access control register, Address offset: 0x00 */
MartinJohnson 0:c65854d98061 725 __IO uint32_t KEYR; /*!< FLASH key register, Address offset: 0x04 */
MartinJohnson 0:c65854d98061 726 __IO uint32_t OPTKEYR; /*!< FLASH option key register, Address offset: 0x08 */
MartinJohnson 0:c65854d98061 727 __IO uint32_t SR; /*!< FLASH status register, Address offset: 0x0C */
MartinJohnson 0:c65854d98061 728 __IO uint32_t CR; /*!< FLASH control register, Address offset: 0x10 */
MartinJohnson 0:c65854d98061 729 __IO uint32_t AR; /*!< FLASH address register, Address offset: 0x14 */
MartinJohnson 0:c65854d98061 730 uint32_t RESERVED; /*!< Reserved, 0x18 */
MartinJohnson 0:c65854d98061 731 __IO uint32_t OBR; /*!< FLASH Option byte register, Address offset: 0x1C */
MartinJohnson 0:c65854d98061 732 __IO uint32_t WRPR; /*!< FLASH Write register, Address offset: 0x20 */
MartinJohnson 0:c65854d98061 733
MartinJohnson 0:c65854d98061 734 } FLASH_TypeDef;
MartinJohnson 0:c65854d98061 735
MartinJohnson 0:c65854d98061 736 /**
MartinJohnson 0:c65854d98061 737 * @brief Flexible Memory Controller
MartinJohnson 0:c65854d98061 738 */
MartinJohnson 0:c65854d98061 739
MartinJohnson 0:c65854d98061 740 typedef struct
MartinJohnson 0:c65854d98061 741 {
MartinJohnson 0:c65854d98061 742 __IO uint32_t BTCR[8]; /*!< NOR/PSRAM chip-select control register(BCR) and chip-select timing register(BTR), Address offset: 0x00-1C */
MartinJohnson 0:c65854d98061 743 } FMC_Bank1_TypeDef;
MartinJohnson 0:c65854d98061 744
MartinJohnson 0:c65854d98061 745 /**
MartinJohnson 0:c65854d98061 746 * @brief Flexible Memory Controller Bank1E
MartinJohnson 0:c65854d98061 747 */
MartinJohnson 0:c65854d98061 748
MartinJohnson 0:c65854d98061 749 typedef struct
MartinJohnson 0:c65854d98061 750 {
MartinJohnson 0:c65854d98061 751 __IO uint32_t BWTR[7]; /*!< NOR/PSRAM write timing registers, Address offset: 0x104-0x11C */
MartinJohnson 0:c65854d98061 752 } FMC_Bank1E_TypeDef;
MartinJohnson 0:c65854d98061 753
MartinJohnson 0:c65854d98061 754 /**
MartinJohnson 0:c65854d98061 755 * @brief Flexible Memory Controller Bank2
MartinJohnson 0:c65854d98061 756 */
MartinJohnson 0:c65854d98061 757
MartinJohnson 0:c65854d98061 758 typedef struct
MartinJohnson 0:c65854d98061 759 {
MartinJohnson 0:c65854d98061 760 __IO uint32_t PCR2; /*!< NAND Flash control register 2, Address offset: 0x60 */
MartinJohnson 0:c65854d98061 761 __IO uint32_t SR2; /*!< NAND Flash FIFO status and interrupt register 2, Address offset: 0x64 */
MartinJohnson 0:c65854d98061 762 __IO uint32_t PMEM2; /*!< NAND Flash Common memory space timing register 2, Address offset: 0x68 */
MartinJohnson 0:c65854d98061 763 __IO uint32_t PATT2; /*!< NAND Flash Attribute memory space timing register 2, Address offset: 0x6C */
MartinJohnson 0:c65854d98061 764 uint32_t RESERVED0; /*!< Reserved, 0x70 */
MartinJohnson 0:c65854d98061 765 __IO uint32_t ECCR2; /*!< NAND Flash ECC result registers 2, Address offset: 0x74 */
MartinJohnson 0:c65854d98061 766 } FMC_Bank2_TypeDef;
MartinJohnson 0:c65854d98061 767
MartinJohnson 0:c65854d98061 768 /**
MartinJohnson 0:c65854d98061 769 * @brief Flexible Memory Controller Bank3
MartinJohnson 0:c65854d98061 770 */
MartinJohnson 0:c65854d98061 771
MartinJohnson 0:c65854d98061 772 typedef struct
MartinJohnson 0:c65854d98061 773 {
MartinJohnson 0:c65854d98061 774 __IO uint32_t PCR3; /*!< NAND Flash control register 3, Address offset: 0x80 */
MartinJohnson 0:c65854d98061 775 __IO uint32_t SR3; /*!< NAND Flash FIFO status and interrupt register 3, Address offset: 0x84 */
MartinJohnson 0:c65854d98061 776 __IO uint32_t PMEM3; /*!< NAND Flash Common memory space timing register 3, Address offset: 0x88 */
MartinJohnson 0:c65854d98061 777 __IO uint32_t PATT3; /*!< NAND Flash Attribute memory space timing register 3, Address offset: 0x8C */
MartinJohnson 0:c65854d98061 778 uint32_t RESERVED0; /*!< Reserved, 0x90 */
MartinJohnson 0:c65854d98061 779 __IO uint32_t ECCR3; /*!< NAND Flash ECC result registers 3, Address offset: 0x94 */
MartinJohnson 0:c65854d98061 780 } FMC_Bank3_TypeDef;
MartinJohnson 0:c65854d98061 781
MartinJohnson 0:c65854d98061 782 /**
MartinJohnson 0:c65854d98061 783 * @brief Flexible Memory Controller Bank4
MartinJohnson 0:c65854d98061 784 */
MartinJohnson 0:c65854d98061 785
MartinJohnson 0:c65854d98061 786 typedef struct
MartinJohnson 0:c65854d98061 787 {
MartinJohnson 0:c65854d98061 788 __IO uint32_t PCR4; /*!< PC Card control register 4, Address offset: 0xA0 */
MartinJohnson 0:c65854d98061 789 __IO uint32_t SR4; /*!< PC Card FIFO status and interrupt register 4, Address offset: 0xA4 */
MartinJohnson 0:c65854d98061 790 __IO uint32_t PMEM4; /*!< PC Card Common memory space timing register 4, Address offset: 0xA8 */
MartinJohnson 0:c65854d98061 791 __IO uint32_t PATT4; /*!< PC Card Attribute memory space timing register 4, Address offset: 0xAC */
MartinJohnson 0:c65854d98061 792 __IO uint32_t PIO4; /*!< PC Card I/O space timing register 4, Address offset: 0xB0 */
MartinJohnson 0:c65854d98061 793 } FMC_Bank4_TypeDef;
MartinJohnson 0:c65854d98061 794
MartinJohnson 0:c65854d98061 795 /**
MartinJohnson 0:c65854d98061 796 * @brief Option Bytes Registers
MartinJohnson 0:c65854d98061 797 */
MartinJohnson 0:c65854d98061 798 typedef struct
MartinJohnson 0:c65854d98061 799 {
MartinJohnson 0:c65854d98061 800 __IO uint16_t RDP; /*!<FLASH option byte Read protection, Address offset: 0x00 */
MartinJohnson 0:c65854d98061 801 __IO uint16_t USER; /*!<FLASH option byte user options, Address offset: 0x02 */
MartinJohnson 0:c65854d98061 802 uint16_t RESERVED0; /*!< Reserved, 0x04 */
MartinJohnson 0:c65854d98061 803 uint16_t RESERVED1; /*!< Reserved, 0x06 */
MartinJohnson 0:c65854d98061 804 __IO uint16_t WRP0; /*!<FLASH option byte write protection 0, Address offset: 0x08 */
MartinJohnson 0:c65854d98061 805 __IO uint16_t WRP1; /*!<FLASH option byte write protection 1, Address offset: 0x0C */
MartinJohnson 0:c65854d98061 806 __IO uint16_t WRP2; /*!<FLASH option byte write protection 2, Address offset: 0x10 */
MartinJohnson 0:c65854d98061 807 __IO uint16_t WRP3; /*!<FLASH option byte write protection 3, Address offset: 0x12 */
MartinJohnson 0:c65854d98061 808 } OB_TypeDef;
MartinJohnson 0:c65854d98061 809
MartinJohnson 0:c65854d98061 810 /**
MartinJohnson 0:c65854d98061 811 * @brief General Purpose I/O
MartinJohnson 0:c65854d98061 812 */
MartinJohnson 0:c65854d98061 813
MartinJohnson 0:c65854d98061 814 typedef struct
MartinJohnson 0:c65854d98061 815 {
MartinJohnson 0:c65854d98061 816 __IO uint32_t MODER; /*!< GPIO port mode register, Address offset: 0x00 */
MartinJohnson 0:c65854d98061 817 __IO uint16_t OTYPER; /*!< GPIO port output type register, Address offset: 0x04 */
MartinJohnson 0:c65854d98061 818 uint16_t RESERVED0; /*!< Reserved, 0x06 */
MartinJohnson 0:c65854d98061 819 __IO uint32_t OSPEEDR; /*!< GPIO port output speed register, Address offset: 0x08 */
MartinJohnson 0:c65854d98061 820 __IO uint32_t PUPDR; /*!< GPIO port pull-up/pull-down register, Address offset: 0x0C */
MartinJohnson 0:c65854d98061 821 __IO uint16_t IDR; /*!< GPIO port input data register, Address offset: 0x10 */
MartinJohnson 0:c65854d98061 822 uint16_t RESERVED1; /*!< Reserved, 0x12 */
MartinJohnson 0:c65854d98061 823 __IO uint16_t ODR; /*!< GPIO port output data register, Address offset: 0x14 */
MartinJohnson 0:c65854d98061 824 uint16_t RESERVED2; /*!< Reserved, 0x16 */
MartinJohnson 0:c65854d98061 825 __IO uint32_t BSRR; /*!< GPIO port bit set/reset registerBSRR, Address offset: 0x18 */
MartinJohnson 0:c65854d98061 826 __IO uint32_t LCKR; /*!< GPIO port configuration lock register, Address offset: 0x1C */
MartinJohnson 0:c65854d98061 827 __IO uint32_t AFR[2]; /*!< GPIO alternate function low register, Address offset: 0x20-0x24 */
MartinJohnson 0:c65854d98061 828 __IO uint16_t BRR; /*!< GPIO bit reset register, Address offset: 0x28 */
MartinJohnson 0:c65854d98061 829 uint16_t RESERVED3; /*!< Reserved, 0x2A */
MartinJohnson 0:c65854d98061 830 }GPIO_TypeDef;
MartinJohnson 0:c65854d98061 831
MartinJohnson 0:c65854d98061 832 /**
MartinJohnson 0:c65854d98061 833 * @brief High resolution Timer (HRTIM)
MartinJohnson 0:c65854d98061 834 */
MartinJohnson 0:c65854d98061 835 /* HRTIM master definition */
MartinJohnson 0:c65854d98061 836 typedef struct
MartinJohnson 0:c65854d98061 837 {
MartinJohnson 0:c65854d98061 838 __IO uint32_t MCR; /*!< HRTIM Master Timer control register, Address offset: 0x00 */
MartinJohnson 0:c65854d98061 839 __IO uint32_t MISR; /*!< HRTIM Master Timer interrupt status register, Address offset: 0x04 */
MartinJohnson 0:c65854d98061 840 __IO uint32_t MICR; /*!< HRTIM Master Timer interrupt clear register, Address offset: 0x08 */
MartinJohnson 0:c65854d98061 841 __IO uint32_t MDIER; /*!< HRTIM Master Timer DMA/interrupt enable register Address offset: 0x0C */
MartinJohnson 0:c65854d98061 842 __IO uint32_t MCNTR; /*!< HRTIM Master Timer counter register, Address offset: 0x10 */
MartinJohnson 0:c65854d98061 843 __IO uint32_t MPER; /*!< HRTIM Master Timer period register, Address offset: 0x14 */
MartinJohnson 0:c65854d98061 844 __IO uint32_t MREP; /*!< HRTIM Master Timer repetition register, Address offset: 0x18 */
MartinJohnson 0:c65854d98061 845 __IO uint32_t MCMP1R; /*!< HRTIM Master Timer compare 1 register, Address offset: 0x1C */
MartinJohnson 0:c65854d98061 846 uint32_t RESERVED0; /*!< Reserved, 0x20 */
MartinJohnson 0:c65854d98061 847 __IO uint32_t MCMP2R; /*!< HRTIM Master Timer compare 2 register, Address offset: 0x24 */
MartinJohnson 0:c65854d98061 848 __IO uint32_t MCMP3R; /*!< HRTIM Master Timer compare 3 register, Address offset: 0x28 */
MartinJohnson 0:c65854d98061 849 __IO uint32_t MCMP4R; /*!< HRTIM Master Timer compare 4 register, Address offset: 0x2C */
MartinJohnson 0:c65854d98061 850 }HRTIM_Master_TypeDef;
MartinJohnson 0:c65854d98061 851
MartinJohnson 0:c65854d98061 852 /* HRTIM slave definition */
MartinJohnson 0:c65854d98061 853 typedef struct
MartinJohnson 0:c65854d98061 854 {
MartinJohnson 0:c65854d98061 855 __IO uint32_t TIMxCR; /*!< HRTIM Timerx control register, Address offset: 0x00 */
MartinJohnson 0:c65854d98061 856 __IO uint32_t TIMxISR; /*!< HRTIM Timerx interrupt status register, Address offset: 0x04 */
MartinJohnson 0:c65854d98061 857 __IO uint32_t TIMxICR; /*!< HRTIM Timerx interrupt clear register, Address offset: 0x08 */
MartinJohnson 0:c65854d98061 858 __IO uint32_t TIMxDIER; /*!< HRTIM Timerx DMA/interrupt enable register, Address offset: 0x0C */
MartinJohnson 0:c65854d98061 859 __IO uint32_t CNTxR; /*!< HRTIM Timerx counter register, Address offset: 0x10 */
MartinJohnson 0:c65854d98061 860 __IO uint32_t PERxR; /*!< HRTIM Timerx period register, Address offset: 0x14 */
MartinJohnson 0:c65854d98061 861 __IO uint32_t REPxR; /*!< HRTIM Timerx repetition register, Address offset: 0x18 */
MartinJohnson 0:c65854d98061 862 __IO uint32_t CMP1xR; /*!< HRTIM Timerx compare 1 register, Address offset: 0x1C */
MartinJohnson 0:c65854d98061 863 __IO uint32_t CMP1CxR; /*!< HRTIM Timerx compare 1 compound register, Address offset: 0x20 */
MartinJohnson 0:c65854d98061 864 __IO uint32_t CMP2xR; /*!< HRTIM Timerx compare 2 register, Address offset: 0x24 */
MartinJohnson 0:c65854d98061 865 __IO uint32_t CMP3xR; /*!< HRTIM Timerx compare 3 register, Address offset: 0x28 */
MartinJohnson 0:c65854d98061 866 __IO uint32_t CMP4xR; /*!< HRTIM Timerx compare 4 register, Address offset: 0x2C */
MartinJohnson 0:c65854d98061 867 __IO uint32_t CPT1xR; /*!< HRTIM Timerx capture 1 register, Address offset: 0x30 */
MartinJohnson 0:c65854d98061 868 __IO uint32_t CPT2xR; /*!< HRTIM Timerx capture 2 register, Address offset: 0x34 */
MartinJohnson 0:c65854d98061 869 __IO uint32_t DTxR; /*!< HRTIM Timerx dead time register, Address offset: 0x38 */
MartinJohnson 0:c65854d98061 870 __IO uint32_t SETx1R; /*!< HRTIM Timerx output 1 set register, Address offset: 0x3C */
MartinJohnson 0:c65854d98061 871 __IO uint32_t RSTx1R; /*!< HRTIM Timerx output 1 reset register, Address offset: 0x40 */
MartinJohnson 0:c65854d98061 872 __IO uint32_t SETx2R; /*!< HRTIM Timerx output 2 set register, Address offset: 0x44 */
MartinJohnson 0:c65854d98061 873 __IO uint32_t RSTx2R; /*!< HRTIM Timerx output 2 reset register, Address offset: 0x48 */
MartinJohnson 0:c65854d98061 874 __IO uint32_t EEFxR1; /*!< HRTIM Timerx external event filtering 1 register, Address offset: 0x4C */
MartinJohnson 0:c65854d98061 875 __IO uint32_t EEFxR2; /*!< HRTIM Timerx external event filtering 2 register, Address offset: 0x50 */
MartinJohnson 0:c65854d98061 876 __IO uint32_t RSTxR; /*!< HRTIM Timerx Reset register, Address offset: 0x54 */
MartinJohnson 0:c65854d98061 877 __IO uint32_t CHPxR; /*!< HRTIM Timerx Chopper register, Address offset: 0x58 */
MartinJohnson 0:c65854d98061 878 __IO uint32_t CPT1xCR; /*!< HRTIM Timerx Capture 1 register, Address offset: 0x5C */
MartinJohnson 0:c65854d98061 879 __IO uint32_t CPT2xCR; /*!< HRTIM Timerx Capture 2 register, Address offset: 0x60 */
MartinJohnson 0:c65854d98061 880 __IO uint32_t OUTxR; /*!< HRTIM Timerx Output register, Address offset: 0x64 */
MartinJohnson 0:c65854d98061 881 __IO uint32_t FLTxR; /*!< HRTIM Timerx Fault register, Address offset: 0x68 */
MartinJohnson 0:c65854d98061 882 uint32_t RESERVED0[5];/*!< Reserved, */
MartinJohnson 0:c65854d98061 883 }HRTIM_Timerx_TypeDef;
MartinJohnson 0:c65854d98061 884
MartinJohnson 0:c65854d98061 885 /* HRTIM common register definition */
MartinJohnson 0:c65854d98061 886 typedef struct
MartinJohnson 0:c65854d98061 887 {
MartinJohnson 0:c65854d98061 888 __IO uint32_t CR1; /*!< HRTIM control register1, Address offset: 0x00 */
MartinJohnson 0:c65854d98061 889 __IO uint32_t CR2; /*!< HRTIM control register2, Address offset: 0x04 */
MartinJohnson 0:c65854d98061 890 __IO uint32_t ISR; /*!< HRTIM interrupt status register, Address offset: 0x08 */
MartinJohnson 0:c65854d98061 891 __IO uint32_t ICR; /*!< HRTIM interrupt clear register, Address offset: 0x0C */
MartinJohnson 0:c65854d98061 892 __IO uint32_t IER; /*!< HRTIM interrupt enable register, Address offset: 0x10 */
MartinJohnson 0:c65854d98061 893 __IO uint32_t OENR; /*!< HRTIM Output enable register, Address offset: 0x14 */
MartinJohnson 0:c65854d98061 894 __IO uint32_t DISR; /*!< HRTIM Output disable register, Address offset: 0x18 */
MartinJohnson 0:c65854d98061 895 __IO uint32_t ODSR; /*!< HRTIM Output disable status register, Address offset: 0x1C */
MartinJohnson 0:c65854d98061 896 __IO uint32_t BMCR; /*!< HRTIM Burst mode control register, Address offset: 0x20 */
MartinJohnson 0:c65854d98061 897 __IO uint32_t BMTRGR; /*!< HRTIM Busrt mode trigger register, Address offset: 0x24 */
MartinJohnson 0:c65854d98061 898 __IO uint32_t BMCMPR; /*!< HRTIM Burst mode compare register, Address offset: 0x28 */
MartinJohnson 0:c65854d98061 899 __IO uint32_t BMPER; /*!< HRTIM Burst mode period register, Address offset: 0x2C */
MartinJohnson 0:c65854d98061 900 __IO uint32_t EECR1; /*!< HRTIM Timer external event control register1, Address offset: 0x30 */
MartinJohnson 0:c65854d98061 901 __IO uint32_t EECR2; /*!< HRTIM Timer external event control register2, Address offset: 0x34 */
MartinJohnson 0:c65854d98061 902 __IO uint32_t EECR3; /*!< HRTIM Timer external event control register3, Address offset: 0x38 */
MartinJohnson 0:c65854d98061 903 __IO uint32_t ADC1R; /*!< HRTIM ADC Trigger 1 register, Address offset: 0x3C */
MartinJohnson 0:c65854d98061 904 __IO uint32_t ADC2R; /*!< HRTIM ADC Trigger 2 register, Address offset: 0x40 */
MartinJohnson 0:c65854d98061 905 __IO uint32_t ADC3R; /*!< HRTIM ADC Trigger 3 register, Address offset: 0x44 */
MartinJohnson 0:c65854d98061 906 __IO uint32_t ADC4R; /*!< HRTIM ADC Trigger 4 register, Address offset: 0x48 */
MartinJohnson 0:c65854d98061 907 __IO uint32_t DLLCR; /*!< HRTIM DLL control register, Address offset: 0x4C */
MartinJohnson 0:c65854d98061 908 __IO uint32_t FLTINxR1; /*!< HRTIM Fault input register1, Address offset: 0x50 */
MartinJohnson 0:c65854d98061 909 __IO uint32_t FLTINxR2; /*!< HRTIM Fault input register2, Address offset: 0x54 */
MartinJohnson 0:c65854d98061 910 __IO uint32_t BDMUPDR; /*!< HRTIM Burst DMA Master Timer update register, Address offset: 0x58 */
MartinJohnson 0:c65854d98061 911 __IO uint32_t BDTAUPR; /*!< HRTIM Burst DMA Timerx update register, Address offset: 0x5C */
MartinJohnson 0:c65854d98061 912 __IO uint32_t BDTBUPR; /*!< HRTIM Burst DMA Timerx update register, Address offset: 0x60 */
MartinJohnson 0:c65854d98061 913 __IO uint32_t BDTCUPR; /*!< HRTIM Burst DMA Timerx update register, Address offset: 0x64 */
MartinJohnson 0:c65854d98061 914 __IO uint32_t BDTDUPR; /*!< HRTIM Burst DMA Timerx update register, Address offset: 0x68 */
MartinJohnson 0:c65854d98061 915 __IO uint32_t BDTEUPR; /*!< HRTIM Burst DMA Timerx update register, Address offset: 0x6C */
MartinJohnson 0:c65854d98061 916 __IO uint32_t BDMADR; /*!< HRTIM Burst DMA Master Data register, Address offset: 0x70 */
MartinJohnson 0:c65854d98061 917 }HRTIM_Common_TypeDef;
MartinJohnson 0:c65854d98061 918
MartinJohnson 0:c65854d98061 919 /* HRTIM register definition */
MartinJohnson 0:c65854d98061 920 typedef struct {
MartinJohnson 0:c65854d98061 921 HRTIM_Master_TypeDef HRTIM_MASTER;
MartinJohnson 0:c65854d98061 922 uint32_t RESERVED0[20];
MartinJohnson 0:c65854d98061 923 HRTIM_Timerx_TypeDef HRTIM_TIMERx[5];
MartinJohnson 0:c65854d98061 924 uint32_t RESERVED1[32];
MartinJohnson 0:c65854d98061 925 HRTIM_Common_TypeDef HRTIM_COMMON;
MartinJohnson 0:c65854d98061 926 }HRTIM_TypeDef;
MartinJohnson 0:c65854d98061 927
MartinJohnson 0:c65854d98061 928 /**
MartinJohnson 0:c65854d98061 929 * @brief Operational Amplifier (OPAMP)
MartinJohnson 0:c65854d98061 930 */
MartinJohnson 0:c65854d98061 931
MartinJohnson 0:c65854d98061 932 typedef struct
MartinJohnson 0:c65854d98061 933 {
MartinJohnson 0:c65854d98061 934 __IO uint32_t CSR; /*!< OPAMP control and status register, Address offset: 0x00 */
MartinJohnson 0:c65854d98061 935 } OPAMP_TypeDef;
MartinJohnson 0:c65854d98061 936
MartinJohnson 0:c65854d98061 937
MartinJohnson 0:c65854d98061 938 /**
MartinJohnson 0:c65854d98061 939 * @brief System configuration controller
MartinJohnson 0:c65854d98061 940 */
MartinJohnson 0:c65854d98061 941
MartinJohnson 0:c65854d98061 942 typedef struct
MartinJohnson 0:c65854d98061 943 {
MartinJohnson 0:c65854d98061 944 __IO uint32_t CFGR1; /*!< SYSCFG configuration register 1, Address offset: 0x00 */
MartinJohnson 0:c65854d98061 945 __IO uint32_t RCR; /*!< SYSCFG CCM SRAM protection register, Address offset: 0x04 */
MartinJohnson 0:c65854d98061 946 __IO uint32_t EXTICR[4]; /*!< SYSCFG external interrupt configuration registers, Address offset: 0x14-0x08 */
MartinJohnson 0:c65854d98061 947 __IO uint32_t CFGR2; /*!< SYSCFG configuration register 2, Address offset: 0x18 */
MartinJohnson 0:c65854d98061 948 __IO uint32_t RESERVED0; /*!< Reserved, 0x1C */
MartinJohnson 0:c65854d98061 949 __IO uint32_t RESERVED1; /*!< Reserved, 0x20 */
MartinJohnson 0:c65854d98061 950 __IO uint32_t RESERVED2; /*!< Reserved, 0x24 */
MartinJohnson 0:c65854d98061 951 __IO uint32_t RESERVED4; /*!< Reserved, 0x28 */
MartinJohnson 0:c65854d98061 952 __IO uint32_t RESERVED5; /*!< Reserved, 0x2C */
MartinJohnson 0:c65854d98061 953 __IO uint32_t RESERVED6; /*!< Reserved, 0x30 */
MartinJohnson 0:c65854d98061 954 __IO uint32_t RESERVED7; /*!< Reserved, 0x34 */
MartinJohnson 0:c65854d98061 955 __IO uint32_t RESERVED8; /*!< Reserved, 0x38 */
MartinJohnson 0:c65854d98061 956 __IO uint32_t RESERVED9; /*!< Reserved, 0x3C */
MartinJohnson 0:c65854d98061 957 __IO uint32_t RESERVED10; /*!< Reserved, 0x40 */
MartinJohnson 0:c65854d98061 958 __IO uint32_t RESERVED11; /*!< Reserved, 0x44 */
MartinJohnson 0:c65854d98061 959 __IO uint32_t CFGR4; /*!< SYSCFG configuration register 4, Address offset: 0x48 */
MartinJohnson 0:c65854d98061 960 __IO uint32_t RESERVED13; /*!< Reserved, 0x4C */
MartinJohnson 0:c65854d98061 961 __IO uint32_t CFGR3; /*!< SYSCFG configuration register 3, Address offset: 0x50 */
MartinJohnson 0:c65854d98061 962 } SYSCFG_TypeDef;
MartinJohnson 0:c65854d98061 963
MartinJohnson 0:c65854d98061 964 /**
MartinJohnson 0:c65854d98061 965 * @brief Inter-integrated Circuit Interface
MartinJohnson 0:c65854d98061 966 */
MartinJohnson 0:c65854d98061 967
MartinJohnson 0:c65854d98061 968 typedef struct
MartinJohnson 0:c65854d98061 969 {
MartinJohnson 0:c65854d98061 970 __IO uint32_t CR1; /*!< I2C Control register 1, Address offset: 0x00 */
MartinJohnson 0:c65854d98061 971 __IO uint32_t CR2; /*!< I2C Control register 2, Address offset: 0x04 */
MartinJohnson 0:c65854d98061 972 __IO uint32_t OAR1; /*!< I2C Own address 1 register, Address offset: 0x08 */
MartinJohnson 0:c65854d98061 973 __IO uint32_t OAR2; /*!< I2C Own address 2 register, Address offset: 0x0C */
MartinJohnson 0:c65854d98061 974 __IO uint32_t TIMINGR; /*!< I2C Timing register, Address offset: 0x10 */
MartinJohnson 0:c65854d98061 975 __IO uint32_t TIMEOUTR; /*!< I2C Timeout register, Address offset: 0x14 */
MartinJohnson 0:c65854d98061 976 __IO uint32_t ISR; /*!< I2C Interrupt and status register, Address offset: 0x18 */
MartinJohnson 0:c65854d98061 977 __IO uint32_t ICR; /*!< I2C Interrupt clear register, Address offset: 0x1C */
MartinJohnson 0:c65854d98061 978 __IO uint32_t PECR; /*!< I2C PEC register, Address offset: 0x20 */
MartinJohnson 0:c65854d98061 979 __IO uint32_t RXDR; /*!< I2C Receive data register, Address offset: 0x24 */
MartinJohnson 0:c65854d98061 980 __IO uint32_t TXDR; /*!< I2C Transmit data register, Address offset: 0x28 */
MartinJohnson 0:c65854d98061 981 }I2C_TypeDef;
MartinJohnson 0:c65854d98061 982
MartinJohnson 0:c65854d98061 983 /**
MartinJohnson 0:c65854d98061 984 * @brief Independent WATCHDOG
MartinJohnson 0:c65854d98061 985 */
MartinJohnson 0:c65854d98061 986
MartinJohnson 0:c65854d98061 987 typedef struct
MartinJohnson 0:c65854d98061 988 {
MartinJohnson 0:c65854d98061 989 __IO uint32_t KR; /*!< IWDG Key register, Address offset: 0x00 */
MartinJohnson 0:c65854d98061 990 __IO uint32_t PR; /*!< IWDG Prescaler register, Address offset: 0x04 */
MartinJohnson 0:c65854d98061 991 __IO uint32_t RLR; /*!< IWDG Reload register, Address offset: 0x08 */
MartinJohnson 0:c65854d98061 992 __IO uint32_t SR; /*!< IWDG Status register, Address offset: 0x0C */
MartinJohnson 0:c65854d98061 993 __IO uint32_t WINR; /*!< IWDG Window register, Address offset: 0x10 */
MartinJohnson 0:c65854d98061 994 } IWDG_TypeDef;
MartinJohnson 0:c65854d98061 995
MartinJohnson 0:c65854d98061 996 /**
MartinJohnson 0:c65854d98061 997 * @brief Power Control
MartinJohnson 0:c65854d98061 998 */
MartinJohnson 0:c65854d98061 999
MartinJohnson 0:c65854d98061 1000 typedef struct
MartinJohnson 0:c65854d98061 1001 {
MartinJohnson 0:c65854d98061 1002 __IO uint32_t CR; /*!< PWR power control register, Address offset: 0x00 */
MartinJohnson 0:c65854d98061 1003 __IO uint32_t CSR; /*!< PWR power control/status register, Address offset: 0x04 */
MartinJohnson 0:c65854d98061 1004 } PWR_TypeDef;
MartinJohnson 0:c65854d98061 1005
MartinJohnson 0:c65854d98061 1006 /**
MartinJohnson 0:c65854d98061 1007 * @brief Reset and Clock Control
MartinJohnson 0:c65854d98061 1008 */
MartinJohnson 0:c65854d98061 1009 typedef struct
MartinJohnson 0:c65854d98061 1010 {
MartinJohnson 0:c65854d98061 1011 __IO uint32_t CR; /*!< RCC clock control register, Address offset: 0x00 */
MartinJohnson 0:c65854d98061 1012 __IO uint32_t CFGR; /*!< RCC clock configuration register, Address offset: 0x04 */
MartinJohnson 0:c65854d98061 1013 __IO uint32_t CIR; /*!< RCC clock interrupt register, Address offset: 0x08 */
MartinJohnson 0:c65854d98061 1014 __IO uint32_t APB2RSTR; /*!< RCC APB2 peripheral reset register, Address offset: 0x0C */
MartinJohnson 0:c65854d98061 1015 __IO uint32_t APB1RSTR; /*!< RCC APB1 peripheral reset register, Address offset: 0x10 */
MartinJohnson 0:c65854d98061 1016 __IO uint32_t AHBENR; /*!< RCC AHB peripheral clock register, Address offset: 0x14 */
MartinJohnson 0:c65854d98061 1017 __IO uint32_t APB2ENR; /*!< RCC APB2 peripheral clock enable register, Address offset: 0x18 */
MartinJohnson 0:c65854d98061 1018 __IO uint32_t APB1ENR; /*!< RCC APB1 peripheral clock enable register, Address offset: 0x1C */
MartinJohnson 0:c65854d98061 1019 __IO uint32_t BDCR; /*!< RCC Backup domain control register, Address offset: 0x20 */
MartinJohnson 0:c65854d98061 1020 __IO uint32_t CSR; /*!< RCC clock control & status register, Address offset: 0x24 */
MartinJohnson 0:c65854d98061 1021 __IO uint32_t AHBRSTR; /*!< RCC AHB peripheral reset register, Address offset: 0x28 */
MartinJohnson 0:c65854d98061 1022 __IO uint32_t CFGR2; /*!< RCC clock configuration register 2, Address offset: 0x2C */
MartinJohnson 0:c65854d98061 1023 __IO uint32_t CFGR3; /*!< RCC clock configuration register 3, Address offset: 0x30 */
MartinJohnson 0:c65854d98061 1024 } RCC_TypeDef;
MartinJohnson 0:c65854d98061 1025
MartinJohnson 0:c65854d98061 1026 /**
MartinJohnson 0:c65854d98061 1027 * @brief Real-Time Clock
MartinJohnson 0:c65854d98061 1028 */
MartinJohnson 0:c65854d98061 1029
MartinJohnson 0:c65854d98061 1030 typedef struct
MartinJohnson 0:c65854d98061 1031 {
MartinJohnson 0:c65854d98061 1032 __IO uint32_t TR; /*!< RTC time register, Address offset: 0x00 */
MartinJohnson 0:c65854d98061 1033 __IO uint32_t DR; /*!< RTC date register, Address offset: 0x04 */
MartinJohnson 0:c65854d98061 1034 __IO uint32_t CR; /*!< RTC control register, Address offset: 0x08 */
MartinJohnson 0:c65854d98061 1035 __IO uint32_t ISR; /*!< RTC initialization and status register, Address offset: 0x0C */
MartinJohnson 0:c65854d98061 1036 __IO uint32_t PRER; /*!< RTC prescaler register, Address offset: 0x10 */
MartinJohnson 0:c65854d98061 1037 __IO uint32_t WUTR; /*!< RTC wakeup timer register, Address offset: 0x14 */
MartinJohnson 0:c65854d98061 1038 uint32_t RESERVED0; /*!< Reserved, 0x18 */
MartinJohnson 0:c65854d98061 1039 __IO uint32_t ALRMAR; /*!< RTC alarm A register, Address offset: 0x1C */
MartinJohnson 0:c65854d98061 1040 __IO uint32_t ALRMBR; /*!< RTC alarm B register, Address offset: 0x20 */
MartinJohnson 0:c65854d98061 1041 __IO uint32_t WPR; /*!< RTC write protection register, Address offset: 0x24 */
MartinJohnson 0:c65854d98061 1042 __IO uint32_t SSR; /*!< RTC sub second register, Address offset: 0x28 */
MartinJohnson 0:c65854d98061 1043 __IO uint32_t SHIFTR; /*!< RTC shift control register, Address offset: 0x2C */
MartinJohnson 0:c65854d98061 1044 __IO uint32_t TSTR; /*!< RTC time stamp time register, Address offset: 0x30 */
MartinJohnson 0:c65854d98061 1045 __IO uint32_t TSDR; /*!< RTC time stamp date register, Address offset: 0x34 */
MartinJohnson 0:c65854d98061 1046 __IO uint32_t TSSSR; /*!< RTC time-stamp sub second register, Address offset: 0x38 */
MartinJohnson 0:c65854d98061 1047 __IO uint32_t CALR; /*!< RTC calibration register, Address offset: 0x3C */
MartinJohnson 0:c65854d98061 1048 __IO uint32_t TAFCR; /*!< RTC tamper and alternate function configuration register, Address offset: 0x40 */
MartinJohnson 0:c65854d98061 1049 __IO uint32_t ALRMASSR; /*!< RTC alarm A sub second register, Address offset: 0x44 */
MartinJohnson 0:c65854d98061 1050 __IO uint32_t ALRMBSSR; /*!< RTC alarm B sub second register, Address offset: 0x48 */
MartinJohnson 0:c65854d98061 1051 uint32_t RESERVED7; /*!< Reserved, 0x4C */
MartinJohnson 0:c65854d98061 1052 __IO uint32_t BKP0R; /*!< RTC backup register 0, Address offset: 0x50 */
MartinJohnson 0:c65854d98061 1053 __IO uint32_t BKP1R; /*!< RTC backup register 1, Address offset: 0x54 */
MartinJohnson 0:c65854d98061 1054 __IO uint32_t BKP2R; /*!< RTC backup register 2, Address offset: 0x58 */
MartinJohnson 0:c65854d98061 1055 __IO uint32_t BKP3R; /*!< RTC backup register 3, Address offset: 0x5C */
MartinJohnson 0:c65854d98061 1056 __IO uint32_t BKP4R; /*!< RTC backup register 4, Address offset: 0x60 */
MartinJohnson 0:c65854d98061 1057 __IO uint32_t BKP5R; /*!< RTC backup register 5, Address offset: 0x64 */
MartinJohnson 0:c65854d98061 1058 __IO uint32_t BKP6R; /*!< RTC backup register 6, Address offset: 0x68 */
MartinJohnson 0:c65854d98061 1059 __IO uint32_t BKP7R; /*!< RTC backup register 7, Address offset: 0x6C */
MartinJohnson 0:c65854d98061 1060 __IO uint32_t BKP8R; /*!< RTC backup register 8, Address offset: 0x70 */
MartinJohnson 0:c65854d98061 1061 __IO uint32_t BKP9R; /*!< RTC backup register 9, Address offset: 0x74 */
MartinJohnson 0:c65854d98061 1062 __IO uint32_t BKP10R; /*!< RTC backup register 10, Address offset: 0x78 */
MartinJohnson 0:c65854d98061 1063 __IO uint32_t BKP11R; /*!< RTC backup register 11, Address offset: 0x7C */
MartinJohnson 0:c65854d98061 1064 __IO uint32_t BKP12R; /*!< RTC backup register 12, Address offset: 0x80 */
MartinJohnson 0:c65854d98061 1065 __IO uint32_t BKP13R; /*!< RTC backup register 13, Address offset: 0x84 */
MartinJohnson 0:c65854d98061 1066 __IO uint32_t BKP14R; /*!< RTC backup register 14, Address offset: 0x88 */
MartinJohnson 0:c65854d98061 1067 __IO uint32_t BKP15R; /*!< RTC backup register 15, Address offset: 0x8C */
MartinJohnson 0:c65854d98061 1068 } RTC_TypeDef;
MartinJohnson 0:c65854d98061 1069
MartinJohnson 0:c65854d98061 1070
MartinJohnson 0:c65854d98061 1071 /**
MartinJohnson 0:c65854d98061 1072 * @brief Serial Peripheral Interface
MartinJohnson 0:c65854d98061 1073 */
MartinJohnson 0:c65854d98061 1074
MartinJohnson 0:c65854d98061 1075 typedef struct
MartinJohnson 0:c65854d98061 1076 {
MartinJohnson 0:c65854d98061 1077 __IO uint16_t CR1; /*!< SPI Control register 1 (not used in I2S mode), Address offset: 0x00 */
MartinJohnson 0:c65854d98061 1078 uint16_t RESERVED0; /*!< Reserved, 0x02 */
MartinJohnson 0:c65854d98061 1079 __IO uint16_t CR2; /*!< SPI Control register 2, Address offset: 0x04 */
MartinJohnson 0:c65854d98061 1080 uint16_t RESERVED1; /*!< Reserved, 0x06 */
MartinJohnson 0:c65854d98061 1081 __IO uint16_t SR; /*!< SPI Status register, Address offset: 0x08 */
MartinJohnson 0:c65854d98061 1082 uint16_t RESERVED2; /*!< Reserved, 0x0A */
MartinJohnson 0:c65854d98061 1083 __IO uint16_t DR; /*!< SPI data register, Address offset: 0x0C */
MartinJohnson 0:c65854d98061 1084 uint16_t RESERVED3; /*!< Reserved, 0x0E */
MartinJohnson 0:c65854d98061 1085 __IO uint16_t CRCPR; /*!< SPI CRC polynomial register (not used in I2S mode), Address offset: 0x10 */
MartinJohnson 0:c65854d98061 1086 uint16_t RESERVED4; /*!< Reserved, 0x12 */
MartinJohnson 0:c65854d98061 1087 __IO uint16_t RXCRCR; /*!< SPI Rx CRC register (not used in I2S mode), Address offset: 0x14 */
MartinJohnson 0:c65854d98061 1088 uint16_t RESERVED5; /*!< Reserved, 0x16 */
MartinJohnson 0:c65854d98061 1089 __IO uint16_t TXCRCR; /*!< SPI Tx CRC register (not used in I2S mode), Address offset: 0x18 */
MartinJohnson 0:c65854d98061 1090 uint16_t RESERVED6; /*!< Reserved, 0x1A */
MartinJohnson 0:c65854d98061 1091 __IO uint16_t I2SCFGR; /*!< SPI_I2S configuration register, Address offset: 0x1C */
MartinJohnson 0:c65854d98061 1092 uint16_t RESERVED7; /*!< Reserved, 0x1E */
MartinJohnson 0:c65854d98061 1093 __IO uint16_t I2SPR; /*!< SPI_I2S prescaler register, Address offset: 0x20 */
MartinJohnson 0:c65854d98061 1094 uint16_t RESERVED8; /*!< Reserved, 0x22 */
MartinJohnson 0:c65854d98061 1095 } SPI_TypeDef;
MartinJohnson 0:c65854d98061 1096
MartinJohnson 0:c65854d98061 1097 /**
MartinJohnson 0:c65854d98061 1098 * @brief TIM
MartinJohnson 0:c65854d98061 1099 */
MartinJohnson 0:c65854d98061 1100 typedef struct
MartinJohnson 0:c65854d98061 1101 {
MartinJohnson 0:c65854d98061 1102 __IO uint16_t CR1; /*!< TIM control register 1, Address offset: 0x00 */
MartinJohnson 0:c65854d98061 1103 uint16_t RESERVED0; /*!< Reserved, 0x02 */
MartinJohnson 0:c65854d98061 1104 __IO uint32_t CR2; /*!< TIM control register 2, Address offset: 0x04 */
MartinJohnson 0:c65854d98061 1105 __IO uint32_t SMCR; /*!< TIM slave mode control register, Address offset: 0x08 */
MartinJohnson 0:c65854d98061 1106 __IO uint32_t DIER; /*!< TIM DMA/interrupt enable register, Address offset: 0x0C */
MartinJohnson 0:c65854d98061 1107 __IO uint32_t SR; /*!< TIM status register, Address offset: 0x10 */
MartinJohnson 0:c65854d98061 1108 __IO uint32_t EGR; /*!< TIM event generation register, Address offset: 0x14 */
MartinJohnson 0:c65854d98061 1109 __IO uint32_t CCMR1; /*!< TIM capture/compare mode register 1, Address offset: 0x18 */
MartinJohnson 0:c65854d98061 1110 __IO uint32_t CCMR2; /*!< TIM capture/compare mode register 2, Address offset: 0x1C */
MartinJohnson 0:c65854d98061 1111 __IO uint32_t CCER; /*!< TIM capture/compare enable register, Address offset: 0x20 */
MartinJohnson 0:c65854d98061 1112 __IO uint32_t CNT; /*!< TIM counter register, Address offset: 0x24 */
MartinJohnson 0:c65854d98061 1113 __IO uint16_t PSC; /*!< TIM prescaler, Address offset: 0x28 */
MartinJohnson 0:c65854d98061 1114 uint16_t RESERVED9; /*!< Reserved, 0x2A */
MartinJohnson 0:c65854d98061 1115 __IO uint32_t ARR; /*!< TIM auto-reload register, Address offset: 0x2C */
MartinJohnson 0:c65854d98061 1116 __IO uint16_t RCR; /*!< TIM repetition counter register, Address offset: 0x30 */
MartinJohnson 0:c65854d98061 1117 uint16_t RESERVED10; /*!< Reserved, 0x32 */
MartinJohnson 0:c65854d98061 1118 __IO uint32_t CCR1; /*!< TIM capture/compare register 1, Address offset: 0x34 */
MartinJohnson 0:c65854d98061 1119 __IO uint32_t CCR2; /*!< TIM capture/compare register 2, Address offset: 0x38 */
MartinJohnson 0:c65854d98061 1120 __IO uint32_t CCR3; /*!< TIM capture/compare register 3, Address offset: 0x3C */
MartinJohnson 0:c65854d98061 1121 __IO uint32_t CCR4; /*!< TIM capture/compare register 4, Address offset: 0x40 */
MartinJohnson 0:c65854d98061 1122 __IO uint32_t BDTR; /*!< TIM break and dead-time register, Address offset: 0x44 */
MartinJohnson 0:c65854d98061 1123 __IO uint16_t DCR; /*!< TIM DMA control register, Address offset: 0x48 */
MartinJohnson 0:c65854d98061 1124 uint16_t RESERVED12; /*!< Reserved, 0x4A */
MartinJohnson 0:c65854d98061 1125 __IO uint16_t DMAR; /*!< TIM DMA address for full transfer, Address offset: 0x4C */
MartinJohnson 0:c65854d98061 1126 uint16_t RESERVED13; /*!< Reserved, 0x4E */
MartinJohnson 0:c65854d98061 1127 __IO uint16_t OR; /*!< TIM option register, Address offset: 0x50 */
MartinJohnson 0:c65854d98061 1128 __IO uint32_t CCMR3; /*!< TIM capture/compare mode register 3, Address offset: 0x54 */
MartinJohnson 0:c65854d98061 1129 __IO uint32_t CCR5; /*!< TIM capture/compare register5, Address offset: 0x58 */
MartinJohnson 0:c65854d98061 1130 __IO uint32_t CCR6; /*!< TIM capture/compare register 4, Address offset: 0x5C */
MartinJohnson 0:c65854d98061 1131 } TIM_TypeDef;
MartinJohnson 0:c65854d98061 1132
MartinJohnson 0:c65854d98061 1133
MartinJohnson 0:c65854d98061 1134 /**
MartinJohnson 0:c65854d98061 1135 * @brief Touch Sensing Controller (TSC)
MartinJohnson 0:c65854d98061 1136 */
MartinJohnson 0:c65854d98061 1137 typedef struct
MartinJohnson 0:c65854d98061 1138 {
MartinJohnson 0:c65854d98061 1139 __IO uint32_t CR; /*!< TSC control register, Address offset: 0x00 */
MartinJohnson 0:c65854d98061 1140 __IO uint32_t IER; /*!< TSC interrupt enable register, Address offset: 0x04 */
MartinJohnson 0:c65854d98061 1141 __IO uint32_t ICR; /*!< TSC interrupt clear register, Address offset: 0x08 */
MartinJohnson 0:c65854d98061 1142 __IO uint32_t ISR; /*!< TSC interrupt status register, Address offset: 0x0C */
MartinJohnson 0:c65854d98061 1143 __IO uint32_t IOHCR; /*!< TSC I/O hysteresis control register, Address offset: 0x10 */
MartinJohnson 0:c65854d98061 1144 uint32_t RESERVED1; /*!< Reserved, Address offset: 0x14 */
MartinJohnson 0:c65854d98061 1145 __IO uint32_t IOASCR; /*!< TSC I/O analog switch control register, Address offset: 0x18 */
MartinJohnson 0:c65854d98061 1146 uint32_t RESERVED2; /*!< Reserved, Address offset: 0x1C */
MartinJohnson 0:c65854d98061 1147 __IO uint32_t IOSCR; /*!< TSC I/O sampling control register, Address offset: 0x20 */
MartinJohnson 0:c65854d98061 1148 uint32_t RESERVED3; /*!< Reserved, Address offset: 0x24 */
MartinJohnson 0:c65854d98061 1149 __IO uint32_t IOCCR; /*!< TSC I/O channel control register, Address offset: 0x28 */
MartinJohnson 0:c65854d98061 1150 uint32_t RESERVED4; /*!< Reserved, Address offset: 0x2C */
MartinJohnson 0:c65854d98061 1151 __IO uint32_t IOGCSR; /*!< TSC I/O group control status register, Address offset: 0x30 */
MartinJohnson 0:c65854d98061 1152 __IO uint32_t IOGXCR[8]; /*!< TSC I/O group x counter register, Address offset: 0x34-50 */
MartinJohnson 0:c65854d98061 1153 } TSC_TypeDef;
MartinJohnson 0:c65854d98061 1154
MartinJohnson 0:c65854d98061 1155 /**
MartinJohnson 0:c65854d98061 1156 * @brief Universal Synchronous Asynchronous Receiver Transmitter
MartinJohnson 0:c65854d98061 1157 */
MartinJohnson 0:c65854d98061 1158
MartinJohnson 0:c65854d98061 1159 typedef struct
MartinJohnson 0:c65854d98061 1160 {
MartinJohnson 0:c65854d98061 1161 __IO uint32_t CR1; /*!< USART Control register 1, Address offset: 0x00 */
MartinJohnson 0:c65854d98061 1162 __IO uint32_t CR2; /*!< USART Control register 2, Address offset: 0x04 */
MartinJohnson 0:c65854d98061 1163 __IO uint32_t CR3; /*!< USART Control register 3, Address offset: 0x08 */
MartinJohnson 0:c65854d98061 1164 __IO uint16_t BRR; /*!< USART Baud rate register, Address offset: 0x0C */
MartinJohnson 0:c65854d98061 1165 uint16_t RESERVED1; /*!< Reserved, 0x0E */
MartinJohnson 0:c65854d98061 1166 __IO uint16_t GTPR; /*!< USART Guard time and prescaler register, Address offset: 0x10 */
MartinJohnson 0:c65854d98061 1167 uint16_t RESERVED2; /*!< Reserved, 0x12 */
MartinJohnson 0:c65854d98061 1168 __IO uint32_t RTOR; /*!< USART Receiver Time Out register, Address offset: 0x14 */
MartinJohnson 0:c65854d98061 1169 __IO uint16_t RQR; /*!< USART Request register, Address offset: 0x18 */
MartinJohnson 0:c65854d98061 1170 uint16_t RESERVED3; /*!< Reserved, 0x1A */
MartinJohnson 0:c65854d98061 1171 __IO uint32_t ISR; /*!< USART Interrupt and status register, Address offset: 0x1C */
MartinJohnson 0:c65854d98061 1172 __IO uint32_t ICR; /*!< USART Interrupt flag Clear register, Address offset: 0x20 */
MartinJohnson 0:c65854d98061 1173 __IO uint16_t RDR; /*!< USART Receive Data register, Address offset: 0x24 */
MartinJohnson 0:c65854d98061 1174 uint16_t RESERVED4; /*!< Reserved, 0x26 */
MartinJohnson 0:c65854d98061 1175 __IO uint16_t TDR; /*!< USART Transmit Data register, Address offset: 0x28 */
MartinJohnson 0:c65854d98061 1176 uint16_t RESERVED5; /*!< Reserved, 0x2A */
MartinJohnson 0:c65854d98061 1177 } USART_TypeDef;
MartinJohnson 0:c65854d98061 1178
MartinJohnson 0:c65854d98061 1179 /**
MartinJohnson 0:c65854d98061 1180 * @brief Window WATCHDOG
MartinJohnson 0:c65854d98061 1181 */
MartinJohnson 0:c65854d98061 1182 typedef struct
MartinJohnson 0:c65854d98061 1183 {
MartinJohnson 0:c65854d98061 1184 __IO uint32_t CR; /*!< WWDG Control register, Address offset: 0x00 */
MartinJohnson 0:c65854d98061 1185 __IO uint32_t CFR; /*!< WWDG Configuration register, Address offset: 0x04 */
MartinJohnson 0:c65854d98061 1186 __IO uint32_t SR; /*!< WWDG Status register, Address offset: 0x08 */
MartinJohnson 0:c65854d98061 1187 } WWDG_TypeDef;
MartinJohnson 0:c65854d98061 1188
MartinJohnson 0:c65854d98061 1189
MartinJohnson 0:c65854d98061 1190 /** @addtogroup Peripheral_memory_map
MartinJohnson 0:c65854d98061 1191 * @{
MartinJohnson 0:c65854d98061 1192 */
MartinJohnson 0:c65854d98061 1193 #define FLASH_BASE ((uint32_t)0x08000000) /*!< FLASH base address in the alias region */
MartinJohnson 0:c65854d98061 1194 #define CCMDATARAM_BASE ((uint32_t)0x10000000) /*!< CCM(core coupled memory) data RAM(16 KB) base address in the alias region */
MartinJohnson 0:c65854d98061 1195 #define SRAM_BASE ((uint32_t)0x20000000) /*!< SRAM base address in the alias region */
MartinJohnson 0:c65854d98061 1196 #define PERIPH_BASE ((uint32_t)0x40000000) /*!< Peripheral base address in the alias region */
MartinJohnson 0:c65854d98061 1197 #define FMC_R_BASE ((uint32_t)0xA0000000) /*!< FMC registers base address */
MartinJohnson 0:c65854d98061 1198
MartinJohnson 0:c65854d98061 1199 #define CCMDATARAM_BB_BASE ((uint32_t)0x12000000) /*!< CCM(core coupled memory) data RAM base address in the bit-band region */
MartinJohnson 0:c65854d98061 1200 #define SRAM_BB_BASE ((uint32_t)0x22000000) /*!< SRAM base address in the bit-band region */
MartinJohnson 0:c65854d98061 1201 #define PERIPH_BB_BASE ((uint32_t)0x42000000) /*!< Peripheral base address in the bit-band region */
MartinJohnson 0:c65854d98061 1202
MartinJohnson 0:c65854d98061 1203 /*!< Peripheral memory map */
MartinJohnson 0:c65854d98061 1204 #define APB1PERIPH_BASE PERIPH_BASE
MartinJohnson 0:c65854d98061 1205 #define APB2PERIPH_BASE (PERIPH_BASE + 0x00010000)
MartinJohnson 0:c65854d98061 1206 #define AHB1PERIPH_BASE (PERIPH_BASE + 0x00020000)
MartinJohnson 0:c65854d98061 1207 #define AHB2PERIPH_BASE (PERIPH_BASE + 0x08000000)
MartinJohnson 0:c65854d98061 1208 #define AHB3PERIPH_BASE (PERIPH_BASE + 0x10000000)
MartinJohnson 0:c65854d98061 1209
MartinJohnson 0:c65854d98061 1210 /*!< APB1 peripherals */
MartinJohnson 0:c65854d98061 1211 #define TIM2_BASE (APB1PERIPH_BASE + 0x00000000)
MartinJohnson 0:c65854d98061 1212 #define TIM3_BASE (APB1PERIPH_BASE + 0x00000400)
MartinJohnson 0:c65854d98061 1213 #define TIM4_BASE (APB1PERIPH_BASE + 0x00000800)
MartinJohnson 0:c65854d98061 1214 #define TIM6_BASE (APB1PERIPH_BASE + 0x00001000)
MartinJohnson 0:c65854d98061 1215 #define TIM7_BASE (APB1PERIPH_BASE + 0x00001400)
MartinJohnson 0:c65854d98061 1216 #define RTC_BASE (APB1PERIPH_BASE + 0x00002800)
MartinJohnson 0:c65854d98061 1217 #define WWDG_BASE (APB1PERIPH_BASE + 0x00002C00)
MartinJohnson 0:c65854d98061 1218 #define IWDG_BASE (APB1PERIPH_BASE + 0x00003000)
MartinJohnson 0:c65854d98061 1219 #define I2S2ext_BASE (APB1PERIPH_BASE + 0x00003400)
MartinJohnson 0:c65854d98061 1220 #define SPI2_BASE (APB1PERIPH_BASE + 0x00003800)
MartinJohnson 0:c65854d98061 1221 #define SPI3_BASE (APB1PERIPH_BASE + 0x00003C00)
MartinJohnson 0:c65854d98061 1222 #define I2S3ext_BASE (APB1PERIPH_BASE + 0x00004000)
MartinJohnson 0:c65854d98061 1223 #define USART2_BASE (APB1PERIPH_BASE + 0x00004400)
MartinJohnson 0:c65854d98061 1224 #define USART3_BASE (APB1PERIPH_BASE + 0x00004800)
MartinJohnson 0:c65854d98061 1225 #define UART4_BASE (APB1PERIPH_BASE + 0x00004C00)
MartinJohnson 0:c65854d98061 1226 #define UART5_BASE (APB1PERIPH_BASE + 0x00005000)
MartinJohnson 0:c65854d98061 1227 #define I2C1_BASE (APB1PERIPH_BASE + 0x00005400)
MartinJohnson 0:c65854d98061 1228 #define I2C2_BASE (APB1PERIPH_BASE + 0x00005800)
MartinJohnson 0:c65854d98061 1229 #define CAN1_BASE (APB1PERIPH_BASE + 0x00006400)
MartinJohnson 0:c65854d98061 1230 #define PWR_BASE (APB1PERIPH_BASE + 0x00007000)
MartinJohnson 0:c65854d98061 1231 #define DAC1_BASE (APB1PERIPH_BASE + 0x00007400)
MartinJohnson 0:c65854d98061 1232 #define I2C3_BASE (APB1PERIPH_BASE + 0x00007800)
MartinJohnson 0:c65854d98061 1233 #define DAC2_BASE (APB1PERIPH_BASE + 0x00009800)
MartinJohnson 0:c65854d98061 1234 #define DAC_BASE DAC1_BASE
MartinJohnson 0:c65854d98061 1235
MartinJohnson 0:c65854d98061 1236 /*!< APB2 peripherals */
MartinJohnson 0:c65854d98061 1237 #define SYSCFG_BASE (APB2PERIPH_BASE + 0x00000000)
MartinJohnson 0:c65854d98061 1238 #define COMP_BASE (APB2PERIPH_BASE + 0x0000001C)
MartinJohnson 0:c65854d98061 1239 #define COMP1_BASE (APB2PERIPH_BASE + 0x0000001C)
MartinJohnson 0:c65854d98061 1240 #define COMP2_BASE (APB2PERIPH_BASE + 0x00000020)
MartinJohnson 0:c65854d98061 1241 #define COMP3_BASE (APB2PERIPH_BASE + 0x00000024)
MartinJohnson 0:c65854d98061 1242 #define COMP4_BASE (APB2PERIPH_BASE + 0x00000028)
MartinJohnson 0:c65854d98061 1243 #define COMP5_BASE (APB2PERIPH_BASE + 0x0000002C)
MartinJohnson 0:c65854d98061 1244 #define COMP6_BASE (APB2PERIPH_BASE + 0x00000030)
MartinJohnson 0:c65854d98061 1245 #define COMP7_BASE (APB2PERIPH_BASE + 0x00000034)
MartinJohnson 0:c65854d98061 1246 #define OPAMP_BASE (APB2PERIPH_BASE + 0x00000038)
MartinJohnson 0:c65854d98061 1247 #define OPAMP1_BASE (APB2PERIPH_BASE + 0x00000038)
MartinJohnson 0:c65854d98061 1248 #define OPAMP2_BASE (APB2PERIPH_BASE + 0x0000003C)
MartinJohnson 0:c65854d98061 1249 #define OPAMP3_BASE (APB2PERIPH_BASE + 0x00000040)
MartinJohnson 0:c65854d98061 1250 #define OPAMP4_BASE (APB2PERIPH_BASE + 0x00000044)
MartinJohnson 0:c65854d98061 1251 #define EXTI_BASE (APB2PERIPH_BASE + 0x00000400)
MartinJohnson 0:c65854d98061 1252 #define TIM1_BASE (APB2PERIPH_BASE + 0x00002C00)
MartinJohnson 0:c65854d98061 1253 #define SPI1_BASE (APB2PERIPH_BASE + 0x00003000)
MartinJohnson 0:c65854d98061 1254 #define TIM8_BASE (APB2PERIPH_BASE + 0x00003400)
MartinJohnson 0:c65854d98061 1255 #define USART1_BASE (APB2PERIPH_BASE + 0x00003800)
MartinJohnson 0:c65854d98061 1256 #define SPI4_BASE (APB2PERIPH_BASE + 0x00003C00)
MartinJohnson 0:c65854d98061 1257 #define TIM15_BASE (APB2PERIPH_BASE + 0x00004000)
MartinJohnson 0:c65854d98061 1258 #define TIM16_BASE (APB2PERIPH_BASE + 0x00004400)
MartinJohnson 0:c65854d98061 1259 #define TIM17_BASE (APB2PERIPH_BASE + 0x00004800)
MartinJohnson 0:c65854d98061 1260 #define TIM20_BASE (APB2PERIPH_BASE + 0x00005000)
MartinJohnson 0:c65854d98061 1261 #define HRTIM1_BASE (APB2PERIPH_BASE + 0x00007400)
MartinJohnson 0:c65854d98061 1262 #define HRTIM1_TIMA_BASE (HRTIM1_BASE + 0x00000080)
MartinJohnson 0:c65854d98061 1263 #define HRTIM1_TIMB_BASE (HRTIM1_BASE + 0x00000100)
MartinJohnson 0:c65854d98061 1264 #define HRTIM1_TIMC_BASE (HRTIM1_BASE + 0x00000180)
MartinJohnson 0:c65854d98061 1265 #define HRTIM1_TIMD_BASE (HRTIM1_BASE + 0x00000200)
MartinJohnson 0:c65854d98061 1266 #define HRTIM1_TIME_BASE (HRTIM1_BASE + 0x00000280)
MartinJohnson 0:c65854d98061 1267 #define HRTIM1_COMMON_BASE (HRTIM1_BASE + 0x00000380)
MartinJohnson 0:c65854d98061 1268
MartinJohnson 0:c65854d98061 1269 /*!< AHB1 peripherals */
MartinJohnson 0:c65854d98061 1270 #define DMA1_BASE (AHB1PERIPH_BASE + 0x00000000)
MartinJohnson 0:c65854d98061 1271 #define DMA1_Channel1_BASE (AHB1PERIPH_BASE + 0x00000008)
MartinJohnson 0:c65854d98061 1272 #define DMA1_Channel2_BASE (AHB1PERIPH_BASE + 0x0000001C)
MartinJohnson 0:c65854d98061 1273 #define DMA1_Channel3_BASE (AHB1PERIPH_BASE + 0x00000030)
MartinJohnson 0:c65854d98061 1274 #define DMA1_Channel4_BASE (AHB1PERIPH_BASE + 0x00000044)
MartinJohnson 0:c65854d98061 1275 #define DMA1_Channel5_BASE (AHB1PERIPH_BASE + 0x00000058)
MartinJohnson 0:c65854d98061 1276 #define DMA1_Channel6_BASE (AHB1PERIPH_BASE + 0x0000006C)
MartinJohnson 0:c65854d98061 1277 #define DMA1_Channel7_BASE (AHB1PERIPH_BASE + 0x00000080)
MartinJohnson 0:c65854d98061 1278 #define DMA2_BASE (AHB1PERIPH_BASE + 0x00000400)
MartinJohnson 0:c65854d98061 1279 #define DMA2_Channel1_BASE (AHB1PERIPH_BASE + 0x00000408)
MartinJohnson 0:c65854d98061 1280 #define DMA2_Channel2_BASE (AHB1PERIPH_BASE + 0x0000041C)
MartinJohnson 0:c65854d98061 1281 #define DMA2_Channel3_BASE (AHB1PERIPH_BASE + 0x00000430)
MartinJohnson 0:c65854d98061 1282 #define DMA2_Channel4_BASE (AHB1PERIPH_BASE + 0x00000444)
MartinJohnson 0:c65854d98061 1283 #define DMA2_Channel5_BASE (AHB1PERIPH_BASE + 0x00000458)
MartinJohnson 0:c65854d98061 1284 #define RCC_BASE (AHB1PERIPH_BASE + 0x00001000)
MartinJohnson 0:c65854d98061 1285 #define FLASH_R_BASE (AHB1PERIPH_BASE + 0x00002000) /*!< Flash registers base address */
MartinJohnson 0:c65854d98061 1286 #define OB_BASE ((uint32_t)0x1FFFF800) /*!< Flash Option Bytes base address */
MartinJohnson 0:c65854d98061 1287 #define CRC_BASE (AHB1PERIPH_BASE + 0x00003000)
MartinJohnson 0:c65854d98061 1288 #define TSC_BASE (AHB1PERIPH_BASE + 0x00004000)
MartinJohnson 0:c65854d98061 1289
MartinJohnson 0:c65854d98061 1290 /*!< AHB2 peripherals */
MartinJohnson 0:c65854d98061 1291 #define GPIOA_BASE (AHB2PERIPH_BASE + 0x0000)
MartinJohnson 0:c65854d98061 1292 #define GPIOB_BASE (AHB2PERIPH_BASE + 0x0400)
MartinJohnson 0:c65854d98061 1293 #define GPIOC_BASE (AHB2PERIPH_BASE + 0x0800)
MartinJohnson 0:c65854d98061 1294 #define GPIOD_BASE (AHB2PERIPH_BASE + 0x0C00)
MartinJohnson 0:c65854d98061 1295 #define GPIOE_BASE (AHB2PERIPH_BASE + 0x1000)
MartinJohnson 0:c65854d98061 1296 #define GPIOF_BASE (AHB2PERIPH_BASE + 0x1400)
MartinJohnson 0:c65854d98061 1297 #define GPIOG_BASE (AHB2PERIPH_BASE + 0x00001800)
MartinJohnson 0:c65854d98061 1298 #define GPIOH_BASE (AHB2PERIPH_BASE + 0x00001C00)
MartinJohnson 0:c65854d98061 1299
MartinJohnson 0:c65854d98061 1300 /*!< AHB3 peripherals */
MartinJohnson 0:c65854d98061 1301 #define ADC1_BASE (AHB3PERIPH_BASE + 0x0000)
MartinJohnson 0:c65854d98061 1302 #define ADC2_BASE (AHB3PERIPH_BASE + 0x0100)
MartinJohnson 0:c65854d98061 1303 #define ADC1_2_BASE (AHB3PERIPH_BASE + 0x0300)
MartinJohnson 0:c65854d98061 1304 #define ADC3_BASE (AHB3PERIPH_BASE + 0x0400)
MartinJohnson 0:c65854d98061 1305 #define ADC4_BASE (AHB3PERIPH_BASE + 0x0500)
MartinJohnson 0:c65854d98061 1306 #define ADC3_4_BASE (AHB3PERIPH_BASE + 0x0700)
MartinJohnson 0:c65854d98061 1307
MartinJohnson 0:c65854d98061 1308 /*!< FMC Banks registers base address */
MartinJohnson 0:c65854d98061 1309 #define FMC_Bank1_R_BASE (FMC_R_BASE + 0x0000)
MartinJohnson 0:c65854d98061 1310 #define FMC_Bank1E_R_BASE (FMC_R_BASE + 0x0104)
MartinJohnson 0:c65854d98061 1311 #define FMC_Bank2_R_BASE (FMC_R_BASE + 0x0060)
MartinJohnson 0:c65854d98061 1312 #define FMC_Bank3_R_BASE (FMC_R_BASE + 0x0080)
MartinJohnson 0:c65854d98061 1313 #define FMC_Bank4_R_BASE (FMC_R_BASE + 0x00A0)
MartinJohnson 0:c65854d98061 1314
MartinJohnson 0:c65854d98061 1315 #define DBGMCU_BASE ((uint32_t)0xE0042000) /*!< Debug MCU registers base address */
MartinJohnson 0:c65854d98061 1316 /**
MartinJohnson 0:c65854d98061 1317 * @}
MartinJohnson 0:c65854d98061 1318 */
MartinJohnson 0:c65854d98061 1319
MartinJohnson 0:c65854d98061 1320 /** @addtogroup Peripheral_declaration
MartinJohnson 0:c65854d98061 1321 * @{
MartinJohnson 0:c65854d98061 1322 */
MartinJohnson 0:c65854d98061 1323 #define TIM2 ((TIM_TypeDef *) TIM2_BASE)
MartinJohnson 0:c65854d98061 1324 #define TIM3 ((TIM_TypeDef *) TIM3_BASE)
MartinJohnson 0:c65854d98061 1325 #define TIM4 ((TIM_TypeDef *) TIM4_BASE)
MartinJohnson 0:c65854d98061 1326 #define TIM6 ((TIM_TypeDef *) TIM6_BASE)
MartinJohnson 0:c65854d98061 1327 #define TIM7 ((TIM_TypeDef *) TIM7_BASE)
MartinJohnson 0:c65854d98061 1328 #define RTC ((RTC_TypeDef *) RTC_BASE)
MartinJohnson 0:c65854d98061 1329 #define WWDG ((WWDG_TypeDef *) WWDG_BASE)
MartinJohnson 0:c65854d98061 1330 #define IWDG ((IWDG_TypeDef *) IWDG_BASE)
MartinJohnson 0:c65854d98061 1331 #define I2S2ext ((SPI_TypeDef *) I2S2ext_BASE)
MartinJohnson 0:c65854d98061 1332 #define SPI2 ((SPI_TypeDef *) SPI2_BASE)
MartinJohnson 0:c65854d98061 1333 #define SPI3 ((SPI_TypeDef *) SPI3_BASE)
MartinJohnson 0:c65854d98061 1334 #define I2S3ext ((SPI_TypeDef *) I2S3ext_BASE)
MartinJohnson 0:c65854d98061 1335 #define USART2 ((USART_TypeDef *) USART2_BASE)
MartinJohnson 0:c65854d98061 1336 #define USART3 ((USART_TypeDef *) USART3_BASE)
MartinJohnson 0:c65854d98061 1337 #define UART4 ((USART_TypeDef *) UART4_BASE)
MartinJohnson 0:c65854d98061 1338 #define UART5 ((USART_TypeDef *) UART5_BASE)
MartinJohnson 0:c65854d98061 1339 #define I2C1 ((I2C_TypeDef *) I2C1_BASE)
MartinJohnson 0:c65854d98061 1340 #define I2C2 ((I2C_TypeDef *) I2C2_BASE)
MartinJohnson 0:c65854d98061 1341 #define I2C3 ((I2C_TypeDef *) I2C3_BASE)
MartinJohnson 0:c65854d98061 1342 #define CAN1 ((CAN_TypeDef *) CAN1_BASE)
MartinJohnson 0:c65854d98061 1343 #define PWR ((PWR_TypeDef *) PWR_BASE)
MartinJohnson 0:c65854d98061 1344 #define DAC1 ((DAC_TypeDef *) DAC1_BASE)
MartinJohnson 0:c65854d98061 1345 #define DAC2 ((DAC_TypeDef *) DAC2_BASE)
MartinJohnson 0:c65854d98061 1346 #define DAC DAC1
MartinJohnson 0:c65854d98061 1347 #define SYSCFG ((SYSCFG_TypeDef *) SYSCFG_BASE)
MartinJohnson 0:c65854d98061 1348 #define COMP ((COMP_TypeDef *) COMP_BASE)
MartinJohnson 0:c65854d98061 1349 #define COMP1 ((COMP_TypeDef *) COMP1_BASE)
MartinJohnson 0:c65854d98061 1350 #define COMP2 ((COMP_TypeDef *) COMP2_BASE)
MartinJohnson 0:c65854d98061 1351 #define COMP3 ((COMP_TypeDef *) COMP3_BASE)
MartinJohnson 0:c65854d98061 1352 #define COMP4 ((COMP_TypeDef *) COMP4_BASE)
MartinJohnson 0:c65854d98061 1353 #define COMP5 ((COMP_TypeDef *) COMP5_BASE)
MartinJohnson 0:c65854d98061 1354 #define COMP6 ((COMP_TypeDef *) COMP6_BASE)
MartinJohnson 0:c65854d98061 1355 #define COMP7 ((COMP_TypeDef *) COMP7_BASE)
MartinJohnson 0:c65854d98061 1356 #define OPAMP ((OPAMP_TypeDef *) OPAMP_BASE)
MartinJohnson 0:c65854d98061 1357 #define OPAMP1 ((OPAMP_TypeDef *) OPAMP1_BASE)
MartinJohnson 0:c65854d98061 1358 #define OPAMP2 ((OPAMP_TypeDef *) OPAMP2_BASE)
MartinJohnson 0:c65854d98061 1359 #define OPAMP3 ((OPAMP_TypeDef *) OPAMP3_BASE)
MartinJohnson 0:c65854d98061 1360 #define OPAMP4 ((OPAMP_TypeDef *) OPAMP4_BASE)
MartinJohnson 0:c65854d98061 1361 #define EXTI ((EXTI_TypeDef *) EXTI_BASE)
MartinJohnson 0:c65854d98061 1362 #define TIM1 ((TIM_TypeDef *) TIM1_BASE)
MartinJohnson 0:c65854d98061 1363 #define SPI1 ((SPI_TypeDef *) SPI1_BASE)
MartinJohnson 0:c65854d98061 1364 #define TIM8 ((TIM_TypeDef *) TIM8_BASE)
MartinJohnson 0:c65854d98061 1365 #define USART1 ((USART_TypeDef *) USART1_BASE)
MartinJohnson 0:c65854d98061 1366 #define SPI4 ((SPI_TypeDef *) SPI4_BASE)
MartinJohnson 0:c65854d98061 1367 #define TIM15 ((TIM_TypeDef *) TIM15_BASE)
MartinJohnson 0:c65854d98061 1368 #define TIM16 ((TIM_TypeDef *) TIM16_BASE)
MartinJohnson 0:c65854d98061 1369 #define TIM17 ((TIM_TypeDef *) TIM17_BASE)
MartinJohnson 0:c65854d98061 1370 #define TIM20 ((TIM_TypeDef *) TIM20_BASE)
MartinJohnson 0:c65854d98061 1371 #define HRTIM1 ((HRTIM_TypeDef *) HRTIM1_BASE)
MartinJohnson 0:c65854d98061 1372 #define HRTIM1_TIMA ((HRTIM_TIM_TypeDef *) HRTIM1_TIMA_BASE)
MartinJohnson 0:c65854d98061 1373 #define HRTIM1_TIMB ((HRTIM_TIM_TypeDef *) HRTIM1_TIMB_BASE)
MartinJohnson 0:c65854d98061 1374 #define HRTIM1_TIMC ((HRTIM_TIM_TypeDef *) HRTIM1_TIMC_BASE)
MartinJohnson 0:c65854d98061 1375 #define HRTIM1_TIMD ((HRTIM_TIM_TypeDef *) HRTIM1_TIMD_BASE)
MartinJohnson 0:c65854d98061 1376 #define HRTIM1_TIME ((HRTIM_TIM_TypeDef *) HRTIM1_TIME_BASE)
MartinJohnson 0:c65854d98061 1377 #define HRTIM1_COMMON ((HRTIM_Common_TypeDef *) HRTIM1_COMMON_BASE)
MartinJohnson 0:c65854d98061 1378 #define DBGMCU ((DBGMCU_TypeDef *) DBGMCU_BASE)
MartinJohnson 0:c65854d98061 1379 #define DMA1 ((DMA_TypeDef *) DMA1_BASE)
MartinJohnson 0:c65854d98061 1380 #define DMA1_Channel1 ((DMA_Channel_TypeDef *) DMA1_Channel1_BASE)
MartinJohnson 0:c65854d98061 1381 #define DMA1_Channel2 ((DMA_Channel_TypeDef *) DMA1_Channel2_BASE)
MartinJohnson 0:c65854d98061 1382 #define DMA1_Channel3 ((DMA_Channel_TypeDef *) DMA1_Channel3_BASE)
MartinJohnson 0:c65854d98061 1383 #define DMA1_Channel4 ((DMA_Channel_TypeDef *) DMA1_Channel4_BASE)
MartinJohnson 0:c65854d98061 1384 #define DMA1_Channel5 ((DMA_Channel_TypeDef *) DMA1_Channel5_BASE)
MartinJohnson 0:c65854d98061 1385 #define DMA1_Channel6 ((DMA_Channel_TypeDef *) DMA1_Channel6_BASE)
MartinJohnson 0:c65854d98061 1386 #define DMA1_Channel7 ((DMA_Channel_TypeDef *) DMA1_Channel7_BASE)
MartinJohnson 0:c65854d98061 1387 #define DMA2 ((DMA_TypeDef *) DMA2_BASE)
MartinJohnson 0:c65854d98061 1388 #define DMA2_Channel1 ((DMA_Channel_TypeDef *) DMA2_Channel1_BASE)
MartinJohnson 0:c65854d98061 1389 #define DMA2_Channel2 ((DMA_Channel_TypeDef *) DMA2_Channel2_BASE)
MartinJohnson 0:c65854d98061 1390 #define DMA2_Channel3 ((DMA_Channel_TypeDef *) DMA2_Channel3_BASE)
MartinJohnson 0:c65854d98061 1391 #define DMA2_Channel4 ((DMA_Channel_TypeDef *) DMA2_Channel4_BASE)
MartinJohnson 0:c65854d98061 1392 #define DMA2_Channel5 ((DMA_Channel_TypeDef *) DMA2_Channel5_BASE)
MartinJohnson 0:c65854d98061 1393 #define RCC ((RCC_TypeDef *) RCC_BASE)
MartinJohnson 0:c65854d98061 1394 #define FLASH ((FLASH_TypeDef *) FLASH_R_BASE)
MartinJohnson 0:c65854d98061 1395 #define OB ((OB_TypeDef *) OB_BASE)
MartinJohnson 0:c65854d98061 1396 #define CRC ((CRC_TypeDef *) CRC_BASE)
MartinJohnson 0:c65854d98061 1397 #define TSC ((TSC_TypeDef *) TSC_BASE)
MartinJohnson 0:c65854d98061 1398 #define GPIOA ((GPIO_TypeDef *) GPIOA_BASE)
MartinJohnson 0:c65854d98061 1399 #define GPIOB ((GPIO_TypeDef *) GPIOB_BASE)
MartinJohnson 0:c65854d98061 1400 #define GPIOC ((GPIO_TypeDef *) GPIOC_BASE)
MartinJohnson 0:c65854d98061 1401 #define GPIOD ((GPIO_TypeDef *) GPIOD_BASE)
MartinJohnson 0:c65854d98061 1402 #define GPIOE ((GPIO_TypeDef *) GPIOE_BASE)
MartinJohnson 0:c65854d98061 1403 #define GPIOF ((GPIO_TypeDef *) GPIOF_BASE)
MartinJohnson 0:c65854d98061 1404 #define GPIOG ((GPIO_TypeDef *) GPIOG_BASE)
MartinJohnson 0:c65854d98061 1405 #define GPIOH ((GPIO_TypeDef *) GPIOH_BASE)
MartinJohnson 0:c65854d98061 1406 #define ADC1 ((ADC_TypeDef *) ADC1_BASE)
MartinJohnson 0:c65854d98061 1407 #define ADC2 ((ADC_TypeDef *) ADC2_BASE)
MartinJohnson 0:c65854d98061 1408 #define ADC3 ((ADC_TypeDef *) ADC3_BASE)
MartinJohnson 0:c65854d98061 1409 #define ADC4 ((ADC_TypeDef *) ADC4_BASE)
MartinJohnson 0:c65854d98061 1410 #define ADC1_2 ((ADC_Common_TypeDef *) ADC1_2_BASE)
MartinJohnson 0:c65854d98061 1411 #define ADC3_4 ((ADC_Common_TypeDef *) ADC3_4_BASE)
MartinJohnson 0:c65854d98061 1412 #define FMC_Bank1 ((FMC_Bank1_TypeDef *) FMC_Bank1_R_BASE)
MartinJohnson 0:c65854d98061 1413 #define FMC_Bank1E ((FMC_Bank1E_TypeDef *) FMC_Bank1E_R_BASE)
MartinJohnson 0:c65854d98061 1414 #define FMC_Bank2 ((FMC_Bank2_TypeDef *) FMC_Bank2_R_BASE)
MartinJohnson 0:c65854d98061 1415 #define FMC_Bank3 ((FMC_Bank3_TypeDef *) FMC_Bank3_R_BASE)
MartinJohnson 0:c65854d98061 1416 #define FMC_Bank4 ((FMC_Bank4_TypeDef *) FMC_Bank4_R_BASE)
MartinJohnson 0:c65854d98061 1417 /**
MartinJohnson 0:c65854d98061 1418 * @}
MartinJohnson 0:c65854d98061 1419 */
MartinJohnson 0:c65854d98061 1420
MartinJohnson 0:c65854d98061 1421 /** @addtogroup Exported_constants
MartinJohnson 0:c65854d98061 1422 * @{
MartinJohnson 0:c65854d98061 1423 */
MartinJohnson 0:c65854d98061 1424
MartinJohnson 0:c65854d98061 1425 /** @addtogroup Peripheral_Registers_Bits_Definition
MartinJohnson 0:c65854d98061 1426 * @{
MartinJohnson 0:c65854d98061 1427 */
MartinJohnson 0:c65854d98061 1428
MartinJohnson 0:c65854d98061 1429 /******************************************************************************/
MartinJohnson 0:c65854d98061 1430 /* Peripheral Registers_Bits_Definition */
MartinJohnson 0:c65854d98061 1431 /******************************************************************************/
MartinJohnson 0:c65854d98061 1432 /******************************************************************************/
MartinJohnson 0:c65854d98061 1433 /* */
MartinJohnson 0:c65854d98061 1434 /* High Resolution Timer (HRTIM) */
MartinJohnson 0:c65854d98061 1435 /* */
MartinJohnson 0:c65854d98061 1436 /******************************************************************************/
MartinJohnson 0:c65854d98061 1437 /******************** Master Timer control register ***************************/
MartinJohnson 0:c65854d98061 1438 #define HRTIM_MCR_CK_PSC ((uint32_t)0x00000007) /*!< Prescaler mask */
MartinJohnson 0:c65854d98061 1439 #define HRTIM_MCR_CK_PSC_0 ((uint32_t)0x00000001) /*!< Prescaler bit 0 */
MartinJohnson 0:c65854d98061 1440 #define HRTIM_MCR_CK_PSC_1 ((uint32_t)0x00000002) /*!< Prescaler bit 1 */
MartinJohnson 0:c65854d98061 1441 #define HRTIM_MCR_CK_PSC_2 ((uint32_t)0x00000004) /*!< Prescaler bit 2 */
MartinJohnson 0:c65854d98061 1442
MartinJohnson 0:c65854d98061 1443 #define HRTIM_MCR_CONT ((uint32_t)0x00000008) /*!< Continuous mode */
MartinJohnson 0:c65854d98061 1444 #define HRTIM_MCR_RETRIG ((uint32_t)0x00000010) /*!< Rettrigreable mode */
MartinJohnson 0:c65854d98061 1445 #define HRTIM_MCR_HALF ((uint32_t)0x00000020) /*!< Half mode */
MartinJohnson 0:c65854d98061 1446
MartinJohnson 0:c65854d98061 1447 #define HRTIM_MCR_SYNC_IN ((uint32_t)0x00000300) /*!< Synchronization input master */
MartinJohnson 0:c65854d98061 1448 #define HRTIM_MCR_SYNC_IN_0 ((uint32_t)0x00000100) /*!< Synchronization input bit 0 */
MartinJohnson 0:c65854d98061 1449 #define HRTIM_MCR_SYNC_IN_1 ((uint32_t)0x00000200) /*!< Synchronization input bit 1 */
MartinJohnson 0:c65854d98061 1450 #define HRTIM_MCR_SYNCRSTM ((uint32_t)0x00000400) /*!< Synchronization reset master */
MartinJohnson 0:c65854d98061 1451 #define HRTIM_MCR_SYNCSTRTM ((uint32_t)0x00000800) /*!< Synchronization start master */
MartinJohnson 0:c65854d98061 1452 #define HRTIM_MCR_SYNC_OUT ((uint32_t)0x00003000) /*!< Synchronization output master */
MartinJohnson 0:c65854d98061 1453 #define HRTIM_MCR_SYNC_OUT_0 ((uint32_t)0x00001000) /*!< Synchronization output bit 0 */
MartinJohnson 0:c65854d98061 1454 #define HRTIM_MCR_SYNC_OUT_1 ((uint32_t)0x00002000) /*!< Synchronization output bit 1 */
MartinJohnson 0:c65854d98061 1455 #define HRTIM_MCR_SYNC_SRC ((uint32_t)0x0000C000) /*!< Synchronization source */
MartinJohnson 0:c65854d98061 1456 #define HRTIM_MCR_SYNC_SRC_0 ((uint32_t)0x00004000) /*!< Synchronization source bit 0 */
MartinJohnson 0:c65854d98061 1457 #define HRTIM_MCR_SYNC_SRC_1 ((uint32_t)0x00008000) /*!< Synchronization source bit 1 */
MartinJohnson 0:c65854d98061 1458
MartinJohnson 0:c65854d98061 1459 #define HRTIM_MCR_MCEN ((uint32_t)0x00010000) /*!< Master counter enable */
MartinJohnson 0:c65854d98061 1460 #define HRTIM_MCR_TACEN ((uint32_t)0x00020000) /*!< Timer A counter enable */
MartinJohnson 0:c65854d98061 1461 #define HRTIM_MCR_TBCEN ((uint32_t)0x00040000) /*!< Timer B counter enable */
MartinJohnson 0:c65854d98061 1462 #define HRTIM_MCR_TCCEN ((uint32_t)0x00080000) /*!< Timer C counter enable */
MartinJohnson 0:c65854d98061 1463 #define HRTIM_MCR_TDCEN ((uint32_t)0x00100000) /*!< Timer D counter enable */
MartinJohnson 0:c65854d98061 1464 #define HRTIM_MCR_TECEN ((uint32_t)0x00200000) /*!< Timer E counter enable */
MartinJohnson 0:c65854d98061 1465
MartinJohnson 0:c65854d98061 1466 #define HRTIM_MCR_DACSYNC ((uint32_t)0x06000000) /*!< DAC synchronization mask */
MartinJohnson 0:c65854d98061 1467 #define HRTIM_MCR_DACSYNC_0 ((uint32_t)0x02000000) /*!< DAC synchronization bit 0 */
MartinJohnson 0:c65854d98061 1468 #define HRTIM_MCR_DACSYNC_1 ((uint32_t)0x04000000) /*!< DAC synchronization bit 1 */
MartinJohnson 0:c65854d98061 1469
MartinJohnson 0:c65854d98061 1470 #define HRTIM_MCR_PREEN ((uint32_t)0x08000000) /*!< Master preload enable */
MartinJohnson 0:c65854d98061 1471 #define HRTIM_MCR_MREPU ((uint32_t)0x20000000) /*!< Master repetition update */
MartinJohnson 0:c65854d98061 1472
MartinJohnson 0:c65854d98061 1473 #define HRTIM_MCR_BRSTDMA ((uint32_t)0xC0000000) /*!< Burst DMA update */
MartinJohnson 0:c65854d98061 1474 #define HRTIM_MCR_BRSTDMA_0 ((uint32_t)0x40000000) /*!< Burst DMA update bit 0*/
MartinJohnson 0:c65854d98061 1475 #define HRTIM_MCR_BRSTDMA_1 ((uint32_t)0x80000000) /*!< Burst DMA update bit 1 */
MartinJohnson 0:c65854d98061 1476
MartinJohnson 0:c65854d98061 1477 /******************** Master Timer Interrupt status register ******************/
MartinJohnson 0:c65854d98061 1478 #define HRTIM_MISR_MCMP1 ((uint32_t)0x00000001) /*!< Master compare 1 interrupt flag */
MartinJohnson 0:c65854d98061 1479 #define HRTIM_MISR_MCMP2 ((uint32_t)0x00000002) /*!< Master compare 2 interrupt flag */
MartinJohnson 0:c65854d98061 1480 #define HRTIM_MISR_MCMP3 ((uint32_t)0x00000004) /*!< Master compare 3 interrupt flag */
MartinJohnson 0:c65854d98061 1481 #define HRTIM_MISR_MCMP4 ((uint32_t)0x00000008) /*!< Master compare 4 interrupt flag */
MartinJohnson 0:c65854d98061 1482 #define HRTIM_MISR_MREP ((uint32_t)0x00000010) /*!< Master Repetition interrupt flag */
MartinJohnson 0:c65854d98061 1483 #define HRTIM_MISR_SYNC ((uint32_t)0x00000020) /*!< Synchronization input interrupt flag */
MartinJohnson 0:c65854d98061 1484 #define HRTIM_MISR_MUPD ((uint32_t)0x00000040) /*!< Master update interrupt flag */
MartinJohnson 0:c65854d98061 1485
MartinJohnson 0:c65854d98061 1486 /******************** Master Timer Interrupt clear register *******************/
MartinJohnson 0:c65854d98061 1487 #define HRTIM_MICR_MCMP1 ((uint32_t)0x00000001) /*!< Master compare 1 interrupt flag clear */
MartinJohnson 0:c65854d98061 1488 #define HRTIM_MICR_MCMP2 ((uint32_t)0x00000002) /*!< Master compare 2 interrupt flag clear */
MartinJohnson 0:c65854d98061 1489 #define HRTIM_MICR_MCMP3 ((uint32_t)0x00000004) /*!< Master compare 3 interrupt flag clear */
MartinJohnson 0:c65854d98061 1490 #define HRTIM_MICR_MCMP4 ((uint32_t)0x00000008) /*!< Master compare 4 interrupt flag clear */
MartinJohnson 0:c65854d98061 1491 #define HRTIM_MICR_MREP ((uint32_t)0x00000010) /*!< Master Repetition interrupt flag clear */
MartinJohnson 0:c65854d98061 1492 #define HRTIM_MICR_SYNC ((uint32_t)0x00000020) /*!< Synchronization input interrupt flag clear */
MartinJohnson 0:c65854d98061 1493 #define HRTIM_MICR_MUPD ((uint32_t)0x00000040) /*!< Master update interrupt flag clear */
MartinJohnson 0:c65854d98061 1494
MartinJohnson 0:c65854d98061 1495 /******************** Master Timer DMA/Interrupt enable register **************/
MartinJohnson 0:c65854d98061 1496 #define HRTIM_MDIER_MCMP1IE ((uint32_t)0x00000001) /*!< Master compare 1 interrupt enable */
MartinJohnson 0:c65854d98061 1497 #define HRTIM_MDIER_MCMP2IE ((uint32_t)0x00000002) /*!< Master compare 2 interrupt enable */
MartinJohnson 0:c65854d98061 1498 #define HRTIM_MDIER_MCMP3IE ((uint32_t)0x00000004) /*!< Master compare 3 interrupt enable */
MartinJohnson 0:c65854d98061 1499 #define HRTIM_MDIER_MCMP4IE ((uint32_t)0x00000008) /*!< Master compare 4 interrupt enable */
MartinJohnson 0:c65854d98061 1500 #define HRTIM_MDIER_MREPIE ((uint32_t)0x00000010) /*!< Master Repetition interrupt enable */
MartinJohnson 0:c65854d98061 1501 #define HRTIM_MDIER_SYNCIE ((uint32_t)0x00000020) /*!< Synchronization input interrupt enable */
MartinJohnson 0:c65854d98061 1502 #define HRTIM_MDIER_MUPDIE ((uint32_t)0x00000040) /*!< Master update interrupt enable */
MartinJohnson 0:c65854d98061 1503
MartinJohnson 0:c65854d98061 1504 #define HRTIM_MDIER_MCMP1DE ((uint32_t)0x00010000) /*!< Master compare 1 DMA enable */
MartinJohnson 0:c65854d98061 1505 #define HRTIM_MDIER_MCMP2DE ((uint32_t)0x00020000) /*!< Master compare 2 DMA enable */
MartinJohnson 0:c65854d98061 1506 #define HRTIM_MDIER_MCMP3DE ((uint32_t)0x00040000) /*!< Master compare 3 DMA enable */
MartinJohnson 0:c65854d98061 1507 #define HRTIM_MDIER_MCMP4DE ((uint32_t)0x00080000) /*!< Master compare 4 DMA enable */
MartinJohnson 0:c65854d98061 1508 #define HRTIM_MDIER_MREPDE ((uint32_t)0x00100000) /*!< Master Repetition DMA enable */
MartinJohnson 0:c65854d98061 1509 #define HRTIM_MDIER_SYNCDE ((uint32_t)0x00200000) /*!< Synchronization input DMA enable */
MartinJohnson 0:c65854d98061 1510 #define HRTIM_MDIER_MUPDDE ((uint32_t)0x00400000) /*!< Master update DMA enable */
MartinJohnson 0:c65854d98061 1511
MartinJohnson 0:c65854d98061 1512 /******************* Bit definition for HRTIM_MCNTR register ****************/
MartinJohnson 0:c65854d98061 1513 #define HRTIM_MCNTR_MCNTR ((uint32_t)0xFFFFFFFF) /*!<Counter Value */
MartinJohnson 0:c65854d98061 1514
MartinJohnson 0:c65854d98061 1515 /******************* Bit definition for HRTIM_MPER register *****************/
MartinJohnson 0:c65854d98061 1516 #define HRTIM_MPER_MPER ((uint32_t)0xFFFFFFFF) /*!< Period Value */
MartinJohnson 0:c65854d98061 1517
MartinJohnson 0:c65854d98061 1518 /******************* Bit definition for HRTIM_MREP register *****************/
MartinJohnson 0:c65854d98061 1519 #define HRTIM_MREP_MREP ((uint32_t)0xFFFFFFFF) /*!<Repetition Value */
MartinJohnson 0:c65854d98061 1520
MartinJohnson 0:c65854d98061 1521 /******************* Bit definition for HRTIM_MCMP1R register *****************/
MartinJohnson 0:c65854d98061 1522 #define HRTIM_MCMP1R_MCMP1R ((uint32_t)0xFFFFFFFF) /*!<Compare Value */
MartinJohnson 0:c65854d98061 1523
MartinJohnson 0:c65854d98061 1524 /******************* Bit definition for HRTIM_MCMP2R register *****************/
MartinJohnson 0:c65854d98061 1525 #define HRTIM_MCMP1R_MCMP2R ((uint32_t)0xFFFFFFFF) /*!<Compare Value */
MartinJohnson 0:c65854d98061 1526
MartinJohnson 0:c65854d98061 1527 /******************* Bit definition for HRTIM_MCMP3R register *****************/
MartinJohnson 0:c65854d98061 1528 #define HRTIM_MCMP1R_MCMP3R ((uint32_t)0xFFFFFFFF) /*!<Compare Value */
MartinJohnson 0:c65854d98061 1529
MartinJohnson 0:c65854d98061 1530 /******************* Bit definition for HRTIM_MCMP4R register *****************/
MartinJohnson 0:c65854d98061 1531 #define HRTIM_MCMP1R_MCMP4R ((uint32_t)0xFFFFFFFF) /*!<Compare Value */
MartinJohnson 0:c65854d98061 1532
MartinJohnson 0:c65854d98061 1533 /******************** Slave control register **********************************/
MartinJohnson 0:c65854d98061 1534 #define HRTIM_TIMCR_CK_PSC ((uint32_t)0x00000007) /*!< Slave prescaler mask*/
MartinJohnson 0:c65854d98061 1535 #define HRTIM_TIMCR_CK_PSC_0 ((uint32_t)0x00000001) /*!< prescaler bit 0 */
MartinJohnson 0:c65854d98061 1536 #define HRTIM_TIMCR_CK_PSC_1 ((uint32_t)0x00000002) /*!< prescaler bit 1 */
MartinJohnson 0:c65854d98061 1537 #define HRTIM_TIMCR_CK_PSC_2 ((uint32_t)0x00000004) /*!< prescaler bit 2 */
MartinJohnson 0:c65854d98061 1538
MartinJohnson 0:c65854d98061 1539 #define HRTIM_TIMCR_CONT ((uint32_t)0x00000008) /*!< Slave continuous mode */
MartinJohnson 0:c65854d98061 1540 #define HRTIM_TIMCR_RETRIG ((uint32_t)0x00000010) /*!< Slave Retrigreable mode */
MartinJohnson 0:c65854d98061 1541 #define HRTIM_TIMCR_HALF ((uint32_t)0x00000020) /*!< Slave Half mode */
MartinJohnson 0:c65854d98061 1542 #define HRTIM_TIMCR_PSHPLL ((uint32_t)0x00000040) /*!< Slave push-pull mode */
MartinJohnson 0:c65854d98061 1543
MartinJohnson 0:c65854d98061 1544 #define HRTIM_TIMCR_SYNCRST ((uint32_t)0x00000400) /*!< Slave synchronization resets */
MartinJohnson 0:c65854d98061 1545 #define HRTIM_TIMCR_SYNCSTRT ((uint32_t)0x00000800) /*!< Slave synchronization starts */
MartinJohnson 0:c65854d98061 1546
MartinJohnson 0:c65854d98061 1547 #define HRTIM_TIMCR_DELCMP2 ((uint32_t)0x00003000) /*!< Slave delayed comparator 2 mode mask */
MartinJohnson 0:c65854d98061 1548 #define HRTIM_TIMCR_DELCMP2_0 ((uint32_t)0x00001000) /*!< Slave delayed comparator 2 bit 0 */
MartinJohnson 0:c65854d98061 1549 #define HRTIM_TIMCR_DELCMP2_1 ((uint32_t)0x00002000) /*!< Slave delayed comparator 2 bit 1 */
MartinJohnson 0:c65854d98061 1550 #define HRTIM_TIMCR_DELCMP4 ((uint32_t)0x0000C000) /*!< Slave delayed comparator 4 mode mask */
MartinJohnson 0:c65854d98061 1551 #define HRTIM_TIMCR_DELCMP4_0 ((uint32_t)0x00004000) /*!< Slave delayed comparator 4 bit 0 */
MartinJohnson 0:c65854d98061 1552 #define HRTIM_TIMCR_DELCMP4_1 ((uint32_t)0x00008000) /*!< Slave delayed comparator 4 bit 1 */
MartinJohnson 0:c65854d98061 1553
MartinJohnson 0:c65854d98061 1554 #define HRTIM_TIMCR_TREPU ((uint32_t)0x00020000) /*!< Slave repetition update */
MartinJohnson 0:c65854d98061 1555 #define HRTIM_TIMCR_TRSTU ((uint32_t)0x00040000) /*!< Slave reset update */
MartinJohnson 0:c65854d98061 1556 #define HRTIM_TIMCR_TAU ((uint32_t)0x00080000) /*!< Slave Timer A update reserved for TIM A */
MartinJohnson 0:c65854d98061 1557 #define HRTIM_TIMCR_TBU ((uint32_t)0x00100000) /*!< Slave Timer B update reserved for TIM B */
MartinJohnson 0:c65854d98061 1558 #define HRTIM_TIMCR_TCU ((uint32_t)0x00200000) /*!< Slave Timer C update reserved for TIM C */
MartinJohnson 0:c65854d98061 1559 #define HRTIM_TIMCR_TDU ((uint32_t)0x00400000) /*!< Slave Timer D update reserved for TIM D */
MartinJohnson 0:c65854d98061 1560 #define HRTIM_TIMCR_TEU ((uint32_t)0x00800000) /*!< Slave Timer E update reserved for TIM E */
MartinJohnson 0:c65854d98061 1561 #define HRTIM_TIMCR_MSTU ((uint32_t)0x01000000) /*!< Master Update */
MartinJohnson 0:c65854d98061 1562
MartinJohnson 0:c65854d98061 1563 #define HRTIM_TIMCR_DACSYNC ((uint32_t)0x06000000) /*!< DAC synchronization mask */
MartinJohnson 0:c65854d98061 1564 #define HRTIM_TIMCR_DACSYNC_0 ((uint32_t)0x02000000) /*!< DAC synchronization bit 0 */
MartinJohnson 0:c65854d98061 1565 #define HRTIM_TIMCR_DACSYNC_1 ((uint32_t)0x04000000) /*!< DAC synchronization bit 1 */
MartinJohnson 0:c65854d98061 1566 #define HRTIM_TIMCR_PREEN ((uint32_t)0x08000000) /*!< Slave preload enable */
MartinJohnson 0:c65854d98061 1567
MartinJohnson 0:c65854d98061 1568 #define HRTIM_TIMCR_UPDGAT ((uint32_t)0xF0000000) /*!< Slave update gating mask */
MartinJohnson 0:c65854d98061 1569 #define HRTIM_TIMCR_UPDGAT_0 ((uint32_t)0x10000000) /*!< Update gating bit 0 */
MartinJohnson 0:c65854d98061 1570 #define HRTIM_TIMCR_UPDGAT_1 ((uint32_t)0x20000000) /*!< Update gating bit 1 */
MartinJohnson 0:c65854d98061 1571 #define HRTIM_TIMCR_UPDGAT_2 ((uint32_t)0x40000000) /*!< Update gating bit 2 */
MartinJohnson 0:c65854d98061 1572 #define HRTIM_TIMCR_UPDGAT_3 ((uint32_t)0x80000000) /*!< Update gating bit 3 */
MartinJohnson 0:c65854d98061 1573
MartinJohnson 0:c65854d98061 1574 /******************** Slave Interrupt status register **************************/
MartinJohnson 0:c65854d98061 1575 #define HRTIM_TIMISR_CMP1 ((uint32_t)0x00000001) /*!< Slave compare 1 interrupt flag */
MartinJohnson 0:c65854d98061 1576 #define HRTIM_TIMISR_CMP2 ((uint32_t)0x00000002) /*!< Slave compare 2 interrupt flag */
MartinJohnson 0:c65854d98061 1577 #define HRTIM_TIMISR_CMP3 ((uint32_t)0x00000004) /*!< Slave compare 3 interrupt flag */
MartinJohnson 0:c65854d98061 1578 #define HRTIM_TIMISR_CMP4 ((uint32_t)0x00000008) /*!< Slave compare 4 interrupt flag */
MartinJohnson 0:c65854d98061 1579 #define HRTIM_TIMISR_REP ((uint32_t)0x00000010) /*!< Slave repetition interrupt flag */
MartinJohnson 0:c65854d98061 1580 #define HRTIM_TIMISR_UPD ((uint32_t)0x00000040) /*!< Slave update interrupt flag */
MartinJohnson 0:c65854d98061 1581 #define HRTIM_TIMISR_CPT1 ((uint32_t)0x00000080) /*!< Slave capture 1 interrupt flag */
MartinJohnson 0:c65854d98061 1582 #define HRTIM_TIMISR_CPT2 ((uint32_t)0x00000100) /*!< Slave capture 2 interrupt flag */
MartinJohnson 0:c65854d98061 1583 #define HRTIM_TIMISR_SET1 ((uint32_t)0x00000200) /*!< Slave output 1 set interrupt flag */
MartinJohnson 0:c65854d98061 1584 #define HRTIM_TIMISR_RST1 ((uint32_t)0x00000400) /*!< Slave output 1 reset interrupt flag */
MartinJohnson 0:c65854d98061 1585 #define HRTIM_TIMISR_SET2 ((uint32_t)0x00000800) /*!< Slave output 2 set interrupt flag */
MartinJohnson 0:c65854d98061 1586 #define HRTIM_TIMISR_RST2 ((uint32_t)0x00001000) /*!< Slave output 2 reset interrupt flag */
MartinJohnson 0:c65854d98061 1587 #define HRTIM_TIMISR_RST ((uint32_t)0x00002000) /*!< Slave reset interrupt flag */
MartinJohnson 0:c65854d98061 1588 #define HRTIM_TIMISR_DLYPRT ((uint32_t)0x00004000) /*!< Slave output 1 delay protection interrupt flag */
MartinJohnson 0:c65854d98061 1589 #define HRTIM_TIMISR_CPPSTAT ((uint32_t)0x00010000) /*!< Slave current push-pull flag */
MartinJohnson 0:c65854d98061 1590 #define HRTIM_TIMISR_IPPSTAT ((uint32_t)0x00020000) /*!< Slave idle push-pull flag */
MartinJohnson 0:c65854d98061 1591 #define HRTIM_TIMISR_O1STAT ((uint32_t)0x00040000) /*!< Slave output 1 state flag */
MartinJohnson 0:c65854d98061 1592 #define HRTIM_TIMISR_O2STAT ((uint32_t)0x00080000) /*!< Slave output 2 state flag */
MartinJohnson 0:c65854d98061 1593 #define HRTIM_TIMISR_O1CPY ((uint32_t)0x00100000) /*!< Slave output 1 copy flag */
MartinJohnson 0:c65854d98061 1594 #define HRTIM_TIMISR_O2CPY ((uint32_t)0x00200000) /*!< Slave output 2 copy flag */
MartinJohnson 0:c65854d98061 1595
MartinJohnson 0:c65854d98061 1596 /******************** Slave Interrupt clear register **************************/
MartinJohnson 0:c65854d98061 1597 #define HRTIM_TIMICR_CMP1C ((uint32_t)0x00000001) /*!< Slave compare 1 clear flag */
MartinJohnson 0:c65854d98061 1598 #define HRTIM_TIMICR_CMP2C ((uint32_t)0x00000002) /*!< Slave compare 2 clear flag */
MartinJohnson 0:c65854d98061 1599 #define HRTIM_TIMICR_CMP3C ((uint32_t)0x00000004) /*!< Slave compare 3 clear flag */
MartinJohnson 0:c65854d98061 1600 #define HRTIM_TIMICR_CMP4C ((uint32_t)0x00000008) /*!< Slave compare 4 clear flag */
MartinJohnson 0:c65854d98061 1601 #define HRTIM_TIMICR_REPC ((uint32_t)0x00000010) /*!< Slave repetition clear flag */
MartinJohnson 0:c65854d98061 1602 #define HRTIM_TIMICR_UPDC ((uint32_t)0x00000040) /*!< Slave update clear flag */
MartinJohnson 0:c65854d98061 1603 #define HRTIM_TIMICR_CPT1C ((uint32_t)0x00000080) /*!< Slave capture 1 clear flag */
MartinJohnson 0:c65854d98061 1604 #define HRTIM_TIMICR_CPT2C ((uint32_t)0x00000100) /*!< Slave capture 2 clear flag */
MartinJohnson 0:c65854d98061 1605 #define HRTIM_TIMICR_SET1C ((uint32_t)0x00000200) /*!< Slave output 1 set clear flag */
MartinJohnson 0:c65854d98061 1606 #define HRTIM_TIMICR_RST1C ((uint32_t)0x00000400) /*!< Slave output 1 reset clear flag */
MartinJohnson 0:c65854d98061 1607 #define HRTIM_TIMICR_SET2C ((uint32_t)0x00000800) /*!< Slave output 2 set clear flag */
MartinJohnson 0:c65854d98061 1608 #define HRTIM_TIMICR_RST2C ((uint32_t)0x00001000) /*!< Slave output 2 reset clear flag */
MartinJohnson 0:c65854d98061 1609 #define HRTIM_TIMICR_RSTC ((uint32_t)0x00002000) /*!< Slave reset clear flag */
MartinJohnson 0:c65854d98061 1610 #define HRTIM_TIMICR_DLYPRT1C ((uint32_t)0x00004000) /*!< Slave output 1 delay protection clear flag */
MartinJohnson 0:c65854d98061 1611 #define HRTIM_TIMICR_DLYPRT2C ((uint32_t)0x00008000) /*!< Slave output 2 delay protection clear flag */
MartinJohnson 0:c65854d98061 1612
MartinJohnson 0:c65854d98061 1613 /******************** Slave DMA/Interrupt enable register *********************/
MartinJohnson 0:c65854d98061 1614 #define HRTIM_TIMDIER_CMP1IE ((uint32_t)0x00000001) /*!< Slave compare 1 interrupt enable */
MartinJohnson 0:c65854d98061 1615 #define HRTIM_TIMDIER_CMP2IE ((uint32_t)0x00000002) /*!< Slave compare 2 interrupt enable */
MartinJohnson 0:c65854d98061 1616 #define HRTIM_TIMDIER_CMP3IE ((uint32_t)0x00000004) /*!< Slave compare 3 interrupt enable */
MartinJohnson 0:c65854d98061 1617 #define HRTIM_TIMDIER_CMP4IE ((uint32_t)0x00000008) /*!< Slave compare 4 interrupt enable */
MartinJohnson 0:c65854d98061 1618 #define HRTIM_TIMDIER_REPIE ((uint32_t)0x00000010) /*!< Slave repetition interrupt enable */
MartinJohnson 0:c65854d98061 1619 #define HRTIM_TIMDIER_UPDIE ((uint32_t)0x00000040) /*!< Slave update interrupt enable */
MartinJohnson 0:c65854d98061 1620 #define HRTIM_TIMDIER_CPT1IE ((uint32_t)0x00000080) /*!< Slave capture 1 interrupt enable */
MartinJohnson 0:c65854d98061 1621 #define HRTIM_TIMDIER_CPT2IE ((uint32_t)0x00000100) /*!< Slave capture 2 interrupt enable */
MartinJohnson 0:c65854d98061 1622 #define HRTIM_TIMDIER_SET1IE ((uint32_t)0x00000200) /*!< Slave output 1 set interrupt enable */
MartinJohnson 0:c65854d98061 1623 #define HRTIM_TIMDIER_RST1IE ((uint32_t)0x00000400) /*!< Slave output 1 reset interrupt enable */
MartinJohnson 0:c65854d98061 1624 #define HRTIM_TIMDIER_SET2IE ((uint32_t)0x00000800) /*!< Slave output 2 set interrupt enable */
MartinJohnson 0:c65854d98061 1625 #define HRTIM_TIMDIER_RST2IE ((uint32_t)0x00001000) /*!< Slave output 2 reset interrupt enable */
MartinJohnson 0:c65854d98061 1626 #define HRTIM_TIMDIER_RSTIE ((uint32_t)0x00002000) /*!< Slave reset interrupt enable */
MartinJohnson 0:c65854d98061 1627 #define HRTIM_TIMDIER_DLYPRTIE ((uint32_t)0x00004000) /*!< Slave delay protection interrupt enable */
MartinJohnson 0:c65854d98061 1628
MartinJohnson 0:c65854d98061 1629 #define HRTIM_TIMDIER_CMP1DE ((uint32_t)0x00010000) /*!< Slave compare 1 request enable */
MartinJohnson 0:c65854d98061 1630 #define HRTIM_TIMDIER_CMP2DE ((uint32_t)0x00020000) /*!< Slave compare 2 request enable */
MartinJohnson 0:c65854d98061 1631 #define HRTIM_TIMDIER_CMP3DE ((uint32_t)0x00040000) /*!< Slave compare 3 request enable */
MartinJohnson 0:c65854d98061 1632 #define HRTIM_TIMDIER_CMP4DE ((uint32_t)0x00080000) /*!< Slave compare 4 request enable */
MartinJohnson 0:c65854d98061 1633 #define HRTIM_TIMDIER_REPDE ((uint32_t)0x00100000) /*!< Slave repetition request enable */
MartinJohnson 0:c65854d98061 1634 #define HRTIM_TIMDIER_UPDDE ((uint32_t)0x00400000) /*!< Slave update request enable */
MartinJohnson 0:c65854d98061 1635 #define HRTIM_TIMDIER_CPT1DE ((uint32_t)0x00800000) /*!< Slave capture 1 request enable */
MartinJohnson 0:c65854d98061 1636 #define HRTIM_TIMDIER_CPT2DE ((uint32_t)0x01000000) /*!< Slave capture 2 request enable */
MartinJohnson 0:c65854d98061 1637 #define HRTIM_TIMDIER_SET1DE ((uint32_t)0x02000000) /*!< Slave output 1 set request enable */
MartinJohnson 0:c65854d98061 1638 #define HRTIM_TIMDIER_RST1DE ((uint32_t)0x04000000) /*!< Slave output 1 reset request enable */
MartinJohnson 0:c65854d98061 1639 #define HRTIM_TIMDIER_SET2DE ((uint32_t)0x08000000) /*!< Slave output 2 set request enable */
MartinJohnson 0:c65854d98061 1640 #define HRTIM_TIMDIER_RST2DE ((uint32_t)0x10000000) /*!< Slave output 2 reset request enable */
MartinJohnson 0:c65854d98061 1641 #define HRTIM_TIMDIER_RSTDE ((uint32_t)0x20000000) /*!< Slave reset request enable */
MartinJohnson 0:c65854d98061 1642 #define HRTIM_TIMDIER_DLYPRTDE ((uint32_t)0x40000000) /*!< Slave delay protection request enable */
MartinJohnson 0:c65854d98061 1643
MartinJohnson 0:c65854d98061 1644 /****************** Bit definition for HRTIM_CNTR register ****************/
MartinJohnson 0:c65854d98061 1645 #define HRTIM_CNTR_CNTR ((uint32_t)0xFFFFFFFF) /*!< Counter Value */
MartinJohnson 0:c65854d98061 1646
MartinJohnson 0:c65854d98061 1647 /******************* Bit definition for HRTIM_PER register *****************/
MartinJohnson 0:c65854d98061 1648 #define HRTIM_PER_PER ((uint32_t)0xFFFFFFFF) /*!< Period Value */
MartinJohnson 0:c65854d98061 1649
MartinJohnson 0:c65854d98061 1650 /******************* Bit definition for HRTIM_REP register *****************/
MartinJohnson 0:c65854d98061 1651 #define HRTIM_REP_REP ((uint32_t)0xFFFFFFFF) /*!< Repetition Value */
MartinJohnson 0:c65854d98061 1652
MartinJohnson 0:c65854d98061 1653 /******************* Bit definition for HRTIM_CMP1R register *****************/
MartinJohnson 0:c65854d98061 1654 #define HRTIM_CMP1R_CMP1R ((uint32_t)0xFFFFFFFF) /*!< Compare Value */
MartinJohnson 0:c65854d98061 1655
MartinJohnson 0:c65854d98061 1656 /******************* Bit definition for HRTIM_CMP1CR register *****************/
MartinJohnson 0:c65854d98061 1657 #define HRTIM_CMP1CR_CMP1CR ((uint32_t)0xFFFFFFFF) /*!< Compare Value */
MartinJohnson 0:c65854d98061 1658
MartinJohnson 0:c65854d98061 1659 /******************* Bit definition for HRTIM_CMP2R register *****************/
MartinJohnson 0:c65854d98061 1660 #define HRTIM_CMP2R_CMP2R ((uint32_t)0xFFFFFFFF) /*!< Compare Value */
MartinJohnson 0:c65854d98061 1661
MartinJohnson 0:c65854d98061 1662 /******************* Bit definition for HRTIM_CMP3R register *****************/
MartinJohnson 0:c65854d98061 1663 #define HRTIM_CMP3R_CMP3R ((uint32_t)0xFFFFFFFF) /*!< Compare Value */
MartinJohnson 0:c65854d98061 1664
MartinJohnson 0:c65854d98061 1665 /******************* Bit definition for HRTIM_CMP4R register *****************/
MartinJohnson 0:c65854d98061 1666 #define HRTIM_CMP4R_CMP4R ((uint32_t)0xFFFFFFFF) /*!< Compare Value */
MartinJohnson 0:c65854d98061 1667
MartinJohnson 0:c65854d98061 1668 /******************* Bit definition for HRTIM_CPT1R register ****************/
MartinJohnson 0:c65854d98061 1669 #define HRTIM_CPT1R_CPT1R ((uint32_t)0xFFFFFFFF) /*!< Capture Value */
MartinJohnson 0:c65854d98061 1670
MartinJohnson 0:c65854d98061 1671 /******************* Bit definition for HRTIM_CPT2R register ****************/
MartinJohnson 0:c65854d98061 1672 #define HRTIM_CPT2R_CPT2R ((uint32_t)0xFFFFFFFF) /*!< Capture Value */
MartinJohnson 0:c65854d98061 1673
MartinJohnson 0:c65854d98061 1674 /******************** Bit definition for Slave Deadtime register **************/
MartinJohnson 0:c65854d98061 1675 #define HRTIM_DTR_DTR ((uint32_t)0x000001FF) /*!< Dead time rising value */
MartinJohnson 0:c65854d98061 1676 #define HRTIM_DTR_DTR_0 ((uint32_t)0x00000001) /*!< Dead time rising bit 0 */
MartinJohnson 0:c65854d98061 1677 #define HRTIM_DTR_DTR_1 ((uint32_t)0x00000002) /*!< Dead time rising bit 1 */
MartinJohnson 0:c65854d98061 1678 #define HRTIM_DTR_DTR_2 ((uint32_t)0x00000004) /*!< Dead time rising bit 2 */
MartinJohnson 0:c65854d98061 1679 #define HRTIM_DTR_DTR_3 ((uint32_t)0x00000008) /*!< Dead time rising bit 3 */
MartinJohnson 0:c65854d98061 1680 #define HRTIM_DTR_DTR_4 ((uint32_t)0x00000010) /*!< Dead time rising bit 4 */
MartinJohnson 0:c65854d98061 1681 #define HRTIM_DTR_DTR_5 ((uint32_t)0x00000020) /*!< Dead time rising bit 5 */
MartinJohnson 0:c65854d98061 1682 #define HRTIM_DTR_DTR_6 ((uint32_t)0x00000040) /*!< Dead time rising bit 6 */
MartinJohnson 0:c65854d98061 1683 #define HRTIM_DTR_DTR_7 ((uint32_t)0x00000080) /*!< Dead time rising bit 7 */
MartinJohnson 0:c65854d98061 1684 #define HRTIM_DTR_DTR_8 ((uint32_t)0x00000100) /*!< Dead time rising bit 8 */
MartinJohnson 0:c65854d98061 1685 #define HRTIM_DTR_SDTR ((uint32_t)0x00000200) /*!< Sign dead time rising value */
MartinJohnson 0:c65854d98061 1686 #define HRTIM_DTR_DTPRSC ((uint32_t)0x00001C00) /*!< Dead time prescaler */
MartinJohnson 0:c65854d98061 1687 #define HRTIM_DTR_DTPRSC_0 ((uint32_t)0x00000400) /*!< Dead time prescaler bit 0 */
MartinJohnson 0:c65854d98061 1688 #define HRTIM_DTR_DTPRSC_1 ((uint32_t)0x00000800) /*!< Dead time prescaler bit 1 */
MartinJohnson 0:c65854d98061 1689 #define HRTIM_DTR_DTPRSC_2 ((uint32_t)0x00001000) /*!< Dead time prescaler bit 2 */
MartinJohnson 0:c65854d98061 1690 #define HRTIM_DTR_DTRSLK ((uint32_t)0x00004000) /*!< Dead time rising sign lock */
MartinJohnson 0:c65854d98061 1691 #define HRTIM_DTR_DTRLK ((uint32_t)0x00008000) /*!< Dead time rising lock */
MartinJohnson 0:c65854d98061 1692 #define HRTIM_DTR_DTF ((uint32_t)0x01FF0000) /*!< Dead time falling value */
MartinJohnson 0:c65854d98061 1693 #define HRTIM_DTR_DTF_0 ((uint32_t)0x00010000) /*!< Dead time falling bit 0 */
MartinJohnson 0:c65854d98061 1694 #define HRTIM_DTR_DTF_1 ((uint32_t)0x00020000) /*!< Dead time falling bit 1 */
MartinJohnson 0:c65854d98061 1695 #define HRTIM_DTR_DTF_2 ((uint32_t)0x00040000) /*!< Dead time falling bit 2 */
MartinJohnson 0:c65854d98061 1696 #define HRTIM_DTR_DTF_3 ((uint32_t)0x00080000) /*!< Dead time falling bit 3 */
MartinJohnson 0:c65854d98061 1697 #define HRTIM_DTR_DTF_4 ((uint32_t)0x00100000) /*!< Dead time falling bit 4 */
MartinJohnson 0:c65854d98061 1698 #define HRTIM_DTR_DTF_5 ((uint32_t)0x00200000) /*!< Dead time falling bit 5 */
MartinJohnson 0:c65854d98061 1699 #define HRTIM_DTR_DTF_6 ((uint32_t)0x00400000) /*!< Dead time falling bit 6 */
MartinJohnson 0:c65854d98061 1700 #define HRTIM_DTR_DTF_7 ((uint32_t)0x00800000) /*!< Dead time falling bit 7 */
MartinJohnson 0:c65854d98061 1701 #define HRTIM_DTR_DTF_8 ((uint32_t)0x01000000) /*!< Dead time falling bit 8 */
MartinJohnson 0:c65854d98061 1702 #define HRTIM_DTR_SDTF ((uint32_t)0x02000000) /*!< Sign dead time falling value */
MartinJohnson 0:c65854d98061 1703 #define HRTIM_DTR_DTFSLK ((uint32_t)0x40000000) /*!< Dead time falling sign lock */
MartinJohnson 0:c65854d98061 1704 #define HRTIM_DTR_DTFLK ((uint32_t)0x80000000) /*!< Dead time falling lock */
MartinJohnson 0:c65854d98061 1705
MartinJohnson 0:c65854d98061 1706 /**** Bit definition for Slave Output 1 set register **************************/
MartinJohnson 0:c65854d98061 1707 #define HRTIM_SET1R_SST ((uint32_t)0x00000001) /*!< software set trigger */
MartinJohnson 0:c65854d98061 1708 #define HRTIM_SET1R_RESYNC ((uint32_t)0x00000002) /*!< Timer A resynchronization */
MartinJohnson 0:c65854d98061 1709 #define HRTIM_SET1R_PER ((uint32_t)0x00000004) /*!< Timer A period */
MartinJohnson 0:c65854d98061 1710 #define HRTIM_SET1R_CMP1 ((uint32_t)0x00000008) /*!< Timer A compare 1 */
MartinJohnson 0:c65854d98061 1711 #define HRTIM_SET1R_CMP2 ((uint32_t)0x00000010) /*!< Timer A compare 2 */
MartinJohnson 0:c65854d98061 1712 #define HRTIM_SET1R_CMP3 ((uint32_t)0x00000020) /*!< Timer A compare 3 */
MartinJohnson 0:c65854d98061 1713 #define HRTIM_SET1R_CMP4 ((uint32_t)0x00000040) /*!< Timer A compare 4 */
MartinJohnson 0:c65854d98061 1714
MartinJohnson 0:c65854d98061 1715 #define HRTIM_SET1R_MSTPER ((uint32_t)0x00000080) /*!< Master period */
MartinJohnson 0:c65854d98061 1716 #define HRTIM_SET1R_MSTCMP1 ((uint32_t)0x00000100) /*!< Master compare 1 */
MartinJohnson 0:c65854d98061 1717 #define HRTIM_SET1R_MSTCMP2 ((uint32_t)0x00000200) /*!< Master compare 2 */
MartinJohnson 0:c65854d98061 1718 #define HRTIM_SET1R_MSTCMP3 ((uint32_t)0x00000400) /*!< Master compare 3 */
MartinJohnson 0:c65854d98061 1719 #define HRTIM_SET1R_MSTCMP4 ((uint32_t)0x00000800) /*!< Master compare 4 */
MartinJohnson 0:c65854d98061 1720
MartinJohnson 0:c65854d98061 1721 #define HRTIM_SET1R_TIMEVNT1 ((uint32_t)0x00001000) /*!< Timer event 1 */
MartinJohnson 0:c65854d98061 1722 #define HRTIM_SET1R_TIMEVNT2 ((uint32_t)0x00002000) /*!< Timer event 2 */
MartinJohnson 0:c65854d98061 1723 #define HRTIM_SET1R_TIMEVNT3 ((uint32_t)0x00004000) /*!< Timer event 3 */
MartinJohnson 0:c65854d98061 1724 #define HRTIM_SET1R_TIMEVNT4 ((uint32_t)0x00008000) /*!< Timer event 4 */
MartinJohnson 0:c65854d98061 1725 #define HRTIM_SET1R_TIMEVNT5 ((uint32_t)0x00010000) /*!< Timer event 5 */
MartinJohnson 0:c65854d98061 1726 #define HRTIM_SET1R_TIMEVNT6 ((uint32_t)0x00020000) /*!< Timer event 6 */
MartinJohnson 0:c65854d98061 1727 #define HRTIM_SET1R_TIMEVNT7 ((uint32_t)0x00040000) /*!< Timer event 7 */
MartinJohnson 0:c65854d98061 1728 #define HRTIM_SET1R_TIMEVNT8 ((uint32_t)0x00080000) /*!< Timer event 8 */
MartinJohnson 0:c65854d98061 1729 #define HRTIM_SET1R_TIMEVNT9 ((uint32_t)0x00100000) /*!< Timer event 9 */
MartinJohnson 0:c65854d98061 1730
MartinJohnson 0:c65854d98061 1731 #define HRTIM_SET1R_EXTVNT1 ((uint32_t)0x00200000) /*!< External event 1 */
MartinJohnson 0:c65854d98061 1732 #define HRTIM_SET1R_EXTVNT2 ((uint32_t)0x00400000) /*!< External event 2 */
MartinJohnson 0:c65854d98061 1733 #define HRTIM_SET1R_EXTVNT3 ((uint32_t)0x00800000) /*!< External event 3 */
MartinJohnson 0:c65854d98061 1734 #define HRTIM_SET1R_EXTVNT4 ((uint32_t)0x01000000) /*!< External event 4 */
MartinJohnson 0:c65854d98061 1735 #define HRTIM_SET1R_EXTVNT5 ((uint32_t)0x02000000) /*!< External event 5 */
MartinJohnson 0:c65854d98061 1736 #define HRTIM_SET1R_EXTVNT6 ((uint32_t)0x04000000) /*!< External event 6 */
MartinJohnson 0:c65854d98061 1737 #define HRTIM_SET1R_EXTVNT7 ((uint32_t)0x08000000) /*!< External event 7 */
MartinJohnson 0:c65854d98061 1738 #define HRTIM_SET1R_EXTVNT8 ((uint32_t)0x10000000) /*!< External event 8 */
MartinJohnson 0:c65854d98061 1739 #define HRTIM_SET1R_EXTVNT9 ((uint32_t)0x20000000) /*!< External event 9 */
MartinJohnson 0:c65854d98061 1740 #define HRTIM_SET1R_EXTVNT10 ((uint32_t)0x40000000) /*!< External event 10 */
MartinJohnson 0:c65854d98061 1741
MartinJohnson 0:c65854d98061 1742 #define HRTIM_SET1R_UPDATE ((uint32_t)0x80000000) /*!< Register update (transfer preload to active) */
MartinJohnson 0:c65854d98061 1743
MartinJohnson 0:c65854d98061 1744 /**** Bit definition for Slave Output 1 reset register ************************/
MartinJohnson 0:c65854d98061 1745 #define HRTIM_RST1R_SRT ((uint32_t)0x00000001) /*!< software reset trigger */
MartinJohnson 0:c65854d98061 1746 #define HRTIM_RST1R_RESYNC ((uint32_t)0x00000002) /*!< Timer A resynchronization */
MartinJohnson 0:c65854d98061 1747 #define HRTIM_RST1R_PER ((uint32_t)0x00000004) /*!< Timer A period */
MartinJohnson 0:c65854d98061 1748 #define HRTIM_RST1R_CMP1 ((uint32_t)0x00000008) /*!< Timer A compare 1 */
MartinJohnson 0:c65854d98061 1749 #define HRTIM_RST1R_CMP2 ((uint32_t)0x00000010) /*!< Timer A compare 2 */
MartinJohnson 0:c65854d98061 1750 #define HRTIM_RST1R_CMP3 ((uint32_t)0x00000020) /*!< Timer A compare 3 */
MartinJohnson 0:c65854d98061 1751 #define HRTIM_RST1R_CMP4 ((uint32_t)0x00000040) /*!< Timer A compare 4 */
MartinJohnson 0:c65854d98061 1752
MartinJohnson 0:c65854d98061 1753 #define HRTIM_RST1R_MSTPER ((uint32_t)0x00000080) /*!< Master period */
MartinJohnson 0:c65854d98061 1754 #define HRTIM_RST1R_MSTCMP1 ((uint32_t)0x00000100) /*!< Master compare 1 */
MartinJohnson 0:c65854d98061 1755 #define HRTIM_RST1R_MSTCMP2 ((uint32_t)0x00000200) /*!< Master compare 2 */
MartinJohnson 0:c65854d98061 1756 #define HRTIM_RST1R_MSTCMP3 ((uint32_t)0x00000400) /*!< Master compare 3 */
MartinJohnson 0:c65854d98061 1757 #define HRTIM_RST1R_MSTCMP4 ((uint32_t)0x00000800) /*!< Master compare 4 */
MartinJohnson 0:c65854d98061 1758
MartinJohnson 0:c65854d98061 1759 #define HRTIM_RST1R_TIMEVNT1 ((uint32_t)0x00001000) /*!< Timer event 1 */
MartinJohnson 0:c65854d98061 1760 #define HRTIM_RST1R_TIMEVNT2 ((uint32_t)0x00002000) /*!< Timer event 2 */
MartinJohnson 0:c65854d98061 1761 #define HRTIM_RST1R_TIMEVNT3 ((uint32_t)0x00004000) /*!< Timer event 3 */
MartinJohnson 0:c65854d98061 1762 #define HRTIM_RST1R_TIMEVNT4 ((uint32_t)0x00008000) /*!< Timer event 4 */
MartinJohnson 0:c65854d98061 1763 #define HRTIM_RST1R_TIMEVNT5 ((uint32_t)0x00010000) /*!< Timer event 5 */
MartinJohnson 0:c65854d98061 1764 #define HRTIM_RST1R_TIMEVNT6 ((uint32_t)0x00020000) /*!< Timer event 6 */
MartinJohnson 0:c65854d98061 1765 #define HRTIM_RST1R_TIMEVNT7 ((uint32_t)0x00040000) /*!< Timer event 7 */
MartinJohnson 0:c65854d98061 1766 #define HRTIM_RST1R_TIMEVNT8 ((uint32_t)0x00080000) /*!< Timer event 8 */
MartinJohnson 0:c65854d98061 1767 #define HRTIM_RST1R_TIMEVNT9 ((uint32_t)0x00100000) /*!< Timer event 9 */
MartinJohnson 0:c65854d98061 1768
MartinJohnson 0:c65854d98061 1769 #define HRTIM_RST1R_EXTVNT1 ((uint32_t)0x00200000) /*!< External event 1 */
MartinJohnson 0:c65854d98061 1770 #define HRTIM_RST1R_EXTVNT2 ((uint32_t)0x00400000) /*!< External event 2 */
MartinJohnson 0:c65854d98061 1771 #define HRTIM_RST1R_EXTVNT3 ((uint32_t)0x00800000) /*!< External event 3 */
MartinJohnson 0:c65854d98061 1772 #define HRTIM_RST1R_EXTVNT4 ((uint32_t)0x01000000) /*!< External event 4 */
MartinJohnson 0:c65854d98061 1773 #define HRTIM_RST1R_EXTVNT5 ((uint32_t)0x02000000) /*!< External event 5 */
MartinJohnson 0:c65854d98061 1774 #define HRTIM_RST1R_EXTVNT6 ((uint32_t)0x04000000) /*!< External event 6 */
MartinJohnson 0:c65854d98061 1775 #define HRTIM_RST1R_EXTVNT7 ((uint32_t)0x08000000) /*!< External event 7 */
MartinJohnson 0:c65854d98061 1776 #define HRTIM_RST1R_EXTVNT8 ((uint32_t)0x10000000) /*!< External event 8 */
MartinJohnson 0:c65854d98061 1777 #define HRTIM_RST1R_EXTVNT9 ((uint32_t)0x20000000) /*!< External event 9 */
MartinJohnson 0:c65854d98061 1778 #define HRTIM_RST1R_EXTVNT10 ((uint32_t)0x40000000) /*!< External event 10 */
MartinJohnson 0:c65854d98061 1779
MartinJohnson 0:c65854d98061 1780 #define HRTIM_RST1R_UPDATE ((uint32_t)0x80000000) /*!< Register update (transfer preload to active) */
MartinJohnson 0:c65854d98061 1781
MartinJohnson 0:c65854d98061 1782
MartinJohnson 0:c65854d98061 1783 /**** Bit definition for Slave Output 2 set register **************************/
MartinJohnson 0:c65854d98061 1784 #define HRTIM_SET2R_SST ((uint32_t)0x00000001) /*!< software set trigger */
MartinJohnson 0:c65854d98061 1785 #define HRTIM_SET2R_RESYNC ((uint32_t)0x00000002) /*!< Timer A resynchronization */
MartinJohnson 0:c65854d98061 1786 #define HRTIM_SET2R_PER ((uint32_t)0x00000004) /*!< Timer A period */
MartinJohnson 0:c65854d98061 1787 #define HRTIM_SET2R_CMP1 ((uint32_t)0x00000008) /*!< Timer A compare 1 */
MartinJohnson 0:c65854d98061 1788 #define HRTIM_SET2R_CMP2 ((uint32_t)0x00000010) /*!< Timer A compare 2 */
MartinJohnson 0:c65854d98061 1789 #define HRTIM_SET2R_CMP3 ((uint32_t)0x00000020) /*!< Timer A compare 3 */
MartinJohnson 0:c65854d98061 1790 #define HRTIM_SET2R_CMP4 ((uint32_t)0x00000040) /*!< Timer A compare 4 */
MartinJohnson 0:c65854d98061 1791
MartinJohnson 0:c65854d98061 1792 #define HRTIM_SET2R_MSTPER ((uint32_t)0x00000080) /*!< Master period */
MartinJohnson 0:c65854d98061 1793 #define HRTIM_SET2R_MSTCMP1 ((uint32_t)0x00000100) /*!< Master compare 1 */
MartinJohnson 0:c65854d98061 1794 #define HRTIM_SET2R_MSTCMP2 ((uint32_t)0x00000200) /*!< Master compare 2 */
MartinJohnson 0:c65854d98061 1795 #define HRTIM_SET2R_MSTCMP3 ((uint32_t)0x00000400) /*!< Master compare 3 */
MartinJohnson 0:c65854d98061 1796 #define HRTIM_SET2R_MSTCMP4 ((uint32_t)0x00000800) /*!< Master compare 4 */
MartinJohnson 0:c65854d98061 1797
MartinJohnson 0:c65854d98061 1798 #define HRTIM_SET2R_TIMEVNT1 ((uint32_t)0x00001000) /*!< Timer event 1 */
MartinJohnson 0:c65854d98061 1799 #define HRTIM_SET2R_TIMEVNT2 ((uint32_t)0x00002000) /*!< Timer event 2 */
MartinJohnson 0:c65854d98061 1800 #define HRTIM_SET2R_TIMEVNT3 ((uint32_t)0x00004000) /*!< Timer event 3 */
MartinJohnson 0:c65854d98061 1801 #define HRTIM_SET2R_TIMEVNT4 ((uint32_t)0x00008000) /*!< Timer event 4 */
MartinJohnson 0:c65854d98061 1802 #define HRTIM_SET2R_TIMEVNT5 ((uint32_t)0x00010000) /*!< Timer event 5 */
MartinJohnson 0:c65854d98061 1803 #define HRTIM_SET2R_TIMEVNT6 ((uint32_t)0x00020000) /*!< Timer event 6 */
MartinJohnson 0:c65854d98061 1804 #define HRTIM_SET2R_TIMEVNT7 ((uint32_t)0x00040000) /*!< Timer event 7 */
MartinJohnson 0:c65854d98061 1805 #define HRTIM_SET2R_TIMEVNT8 ((uint32_t)0x00080000) /*!< Timer event 8 */
MartinJohnson 0:c65854d98061 1806 #define HRTIM_SET2R_TIMEVNT9 ((uint32_t)0x00100000) /*!< Timer event 9 */
MartinJohnson 0:c65854d98061 1807
MartinJohnson 0:c65854d98061 1808 #define HRTIM_SET2R_EXTVNT1 ((uint32_t)0x00200000) /*!< External event 1 */
MartinJohnson 0:c65854d98061 1809 #define HRTIM_SET2R_EXTVNT2 ((uint32_t)0x00400000) /*!< External event 2 */
MartinJohnson 0:c65854d98061 1810 #define HRTIM_SET2R_EXTVNT3 ((uint32_t)0x00800000) /*!< External event 3 */
MartinJohnson 0:c65854d98061 1811 #define HRTIM_SET2R_EXTVNT4 ((uint32_t)0x01000000) /*!< External event 4 */
MartinJohnson 0:c65854d98061 1812 #define HRTIM_SET2R_EXTVNT5 ((uint32_t)0x02000000) /*!< External event 5 */
MartinJohnson 0:c65854d98061 1813 #define HRTIM_SET2R_EXTVNT6 ((uint32_t)0x04000000) /*!< External event 6 */
MartinJohnson 0:c65854d98061 1814 #define HRTIM_SET2R_EXTVNT7 ((uint32_t)0x08000000) /*!< External event 7 */
MartinJohnson 0:c65854d98061 1815 #define HRTIM_SET2R_EXTVNT8 ((uint32_t)0x10000000) /*!< External event 8 */
MartinJohnson 0:c65854d98061 1816 #define HRTIM_SET2R_EXTVNT9 ((uint32_t)0x20000000) /*!< External event 9 */
MartinJohnson 0:c65854d98061 1817 #define HRTIM_SET2R_EXTVNT10 ((uint32_t)0x40000000) /*!< External event 10 */
MartinJohnson 0:c65854d98061 1818
MartinJohnson 0:c65854d98061 1819 #define HRTIM_SET2R_UPDATE ((uint32_t)0x80000000) /*!< Register update (transfer preload to active) */
MartinJohnson 0:c65854d98061 1820
MartinJohnson 0:c65854d98061 1821 /**** Bit definition for Slave Output 2 reset register ************************/
MartinJohnson 0:c65854d98061 1822 #define HRTIM_RST2R_SRT ((uint32_t)0x00000001) /*!< software reset trigger */
MartinJohnson 0:c65854d98061 1823 #define HRTIM_RST2R_RESYNC ((uint32_t)0x00000002) /*!< Timer A resynchronization */
MartinJohnson 0:c65854d98061 1824 #define HRTIM_RST2R_PER ((uint32_t)0x00000004) /*!< Timer A period */
MartinJohnson 0:c65854d98061 1825 #define HRTIM_RST2R_CMP1 ((uint32_t)0x00000008) /*!< Timer A compare 1 */
MartinJohnson 0:c65854d98061 1826 #define HRTIM_RST2R_CMP2 ((uint32_t)0x00000010) /*!< Timer A compare 2 */
MartinJohnson 0:c65854d98061 1827 #define HRTIM_RST2R_CMP3 ((uint32_t)0x00000020) /*!< Timer A compare 3 */
MartinJohnson 0:c65854d98061 1828 #define HRTIM_RST2R_CMP4 ((uint32_t)0x00000040) /*!< Timer A compare 4 */
MartinJohnson 0:c65854d98061 1829
MartinJohnson 0:c65854d98061 1830 #define HRTIM_RST2R_MSTPER ((uint32_t)0x00000080) /*!< Master period */
MartinJohnson 0:c65854d98061 1831 #define HRTIM_RST2R_MSTCMP1 ((uint32_t)0x00000100) /*!< Master compare 1 */
MartinJohnson 0:c65854d98061 1832 #define HRTIM_RST2R_MSTCMP2 ((uint32_t)0x00000200) /*!< Master compare 2 */
MartinJohnson 0:c65854d98061 1833 #define HRTIM_RST2R_MSTCMP3 ((uint32_t)0x00000400) /*!< Master compare 3 */
MartinJohnson 0:c65854d98061 1834 #define HRTIM_RST2R_MSTCMP4 ((uint32_t)0x00000800) /*!< Master compare 4 */
MartinJohnson 0:c65854d98061 1835
MartinJohnson 0:c65854d98061 1836 #define HRTIM_RST2R_TIMEVNT1 ((uint32_t)0x00001000) /*!< Timer event 1 */
MartinJohnson 0:c65854d98061 1837 #define HRTIM_RST2R_TIMEVNT2 ((uint32_t)0x00002000) /*!< Timer event 2 */
MartinJohnson 0:c65854d98061 1838 #define HRTIM_RST2R_TIMEVNT3 ((uint32_t)0x00004000) /*!< Timer event 3 */
MartinJohnson 0:c65854d98061 1839 #define HRTIM_RST2R_TIMEVNT4 ((uint32_t)0x00008000) /*!< Timer event 4 */
MartinJohnson 0:c65854d98061 1840 #define HRTIM_RST2R_TIMEVNT5 ((uint32_t)0x00010000) /*!< Timer event 5 */
MartinJohnson 0:c65854d98061 1841 #define HRTIM_RST2R_TIMEVNT6 ((uint32_t)0x00020000) /*!< Timer event 6 */
MartinJohnson 0:c65854d98061 1842 #define HRTIM_RST2R_TIMEVNT7 ((uint32_t)0x00040000) /*!< Timer event 7 */
MartinJohnson 0:c65854d98061 1843 #define HRTIM_RST2R_TIMEVNT8 ((uint32_t)0x00080000) /*!< Timer event 8 */
MartinJohnson 0:c65854d98061 1844 #define HRTIM_RST2R_TIMEVNT9 ((uint32_t)0x00100000) /*!< Timer event 9 */
MartinJohnson 0:c65854d98061 1845
MartinJohnson 0:c65854d98061 1846 #define HRTIM_RST2R_EXTVNT1 ((uint32_t)0x00200000) /*!< External event 1 */
MartinJohnson 0:c65854d98061 1847 #define HRTIM_RST2R_EXTVNT2 ((uint32_t)0x00400000) /*!< External event 2 */
MartinJohnson 0:c65854d98061 1848 #define HRTIM_RST2R_EXTVNT3 ((uint32_t)0x00800000) /*!< External event 3 */
MartinJohnson 0:c65854d98061 1849 #define HRTIM_RST2R_EXTVNT4 ((uint32_t)0x01000000) /*!< External event 4 */
MartinJohnson 0:c65854d98061 1850 #define HRTIM_RST2R_EXTVNT5 ((uint32_t)0x02000000) /*!< External event 5 */
MartinJohnson 0:c65854d98061 1851 #define HRTIM_RST2R_EXTVNT6 ((uint32_t)0x04000000) /*!< External event 6 */
MartinJohnson 0:c65854d98061 1852 #define HRTIM_RST2R_EXTVNT7 ((uint32_t)0x08000000) /*!< External event 7 */
MartinJohnson 0:c65854d98061 1853 #define HRTIM_RST2R_EXTVNT8 ((uint32_t)0x10000000) /*!< External event 8 */
MartinJohnson 0:c65854d98061 1854 #define HRTIM_RST2R_EXTVNT9 ((uint32_t)0x20000000) /*!< External event 9 */
MartinJohnson 0:c65854d98061 1855 #define HRTIM_RST2R_EXTVNT10 ((uint32_t)0x40000000) /*!< External event 10 */
MartinJohnson 0:c65854d98061 1856
MartinJohnson 0:c65854d98061 1857 #define HRTIM_RST2R_UPDATE ((uint32_t)0x80000000) /*!< Register update (transfer preload to active) */
MartinJohnson 0:c65854d98061 1858
MartinJohnson 0:c65854d98061 1859 /**** Bit definition for Slave external event filtering register 1 ***********/
MartinJohnson 0:c65854d98061 1860 #define HRTIM_EEFR1_EE1LTCH ((uint32_t)0x00000001) /*!< External Event 1 latch */
MartinJohnson 0:c65854d98061 1861 #define HRTIM_EEFR1_EE1FLTR ((uint32_t)0x0000001E) /*!< External Event 1 filter mask */
MartinJohnson 0:c65854d98061 1862 #define HRTIM_EEFR1_EE1FLTR_0 ((uint32_t)0x00000002) /*!< External Event 1 bit 0 */
MartinJohnson 0:c65854d98061 1863 #define HRTIM_EEFR1_EE1FLTR_1 ((uint32_t)0x00000004) /*!< External Event 1 bit 1*/
MartinJohnson 0:c65854d98061 1864 #define HRTIM_EEFR1_EE1FLTR_2 ((uint32_t)0x00000008) /*!< External Event 1 bit 2 */
MartinJohnson 0:c65854d98061 1865 #define HRTIM_EEFR1_EE1FLTR_3 ((uint32_t)0x00000010) /*!< External Event 1 bit 3 */
MartinJohnson 0:c65854d98061 1866
MartinJohnson 0:c65854d98061 1867 #define HRTIM_EEFR1_EE2LTCH ((uint32_t)0x00000040) /*!< External Event 2 latch */
MartinJohnson 0:c65854d98061 1868 #define HRTIM_EEFR1_EE2FLTR ((uint32_t)0x00000780) /*!< External Event 2 filter mask */
MartinJohnson 0:c65854d98061 1869 #define HRTIM_EEFR1_EE2FLTR_0 ((uint32_t)0x00000080) /*!< External Event 2 bit 0 */
MartinJohnson 0:c65854d98061 1870 #define HRTIM_EEFR1_EE2FLTR_1 ((uint32_t)0x00000100) /*!< External Event 2 bit 1*/
MartinJohnson 0:c65854d98061 1871 #define HRTIM_EEFR1_EE2FLTR_2 ((uint32_t)0x00000200) /*!< External Event 2 bit 2 */
MartinJohnson 0:c65854d98061 1872 #define HRTIM_EEFR1_EE2FLTR_3 ((uint32_t)0x00000400) /*!< External Event 2 bit 3 */
MartinJohnson 0:c65854d98061 1873
MartinJohnson 0:c65854d98061 1874 #define HRTIM_EEFR1_EE3LTCH ((uint32_t)0x00001000) /*!< External Event 3 latch */
MartinJohnson 0:c65854d98061 1875 #define HRTIM_EEFR1_EE3FLTR ((uint32_t)0x0001E000) /*!< External Event 3 filter mask */
MartinJohnson 0:c65854d98061 1876 #define HRTIM_EEFR1_EE3FLTR_0 ((uint32_t)0x00002000) /*!< External Event 3 bit 0 */
MartinJohnson 0:c65854d98061 1877 #define HRTIM_EEFR1_EE3FLTR_1 ((uint32_t)0x00004000) /*!< External Event 3 bit 1*/
MartinJohnson 0:c65854d98061 1878 #define HRTIM_EEFR1_EE3FLTR_2 ((uint32_t)0x00008000) /*!< External Event 3 bit 2 */
MartinJohnson 0:c65854d98061 1879 #define HRTIM_EEFR1_EE3FLTR_3 ((uint32_t)0x00010000) /*!< External Event 3 bit 3 */
MartinJohnson 0:c65854d98061 1880
MartinJohnson 0:c65854d98061 1881 #define HRTIM_EEFR1_EE4LTCH ((uint32_t)0x00040000) /*!< External Event 4 latch */
MartinJohnson 0:c65854d98061 1882 #define HRTIM_EEFR1_EE4FLTR ((uint32_t)0x00780000) /*!< External Event 4 filter mask */
MartinJohnson 0:c65854d98061 1883 #define HRTIM_EEFR1_EE4FLTR_0 ((uint32_t)0x00080000) /*!< External Event 4 bit 0 */
MartinJohnson 0:c65854d98061 1884 #define HRTIM_EEFR1_EE4FLTR_1 ((uint32_t)0x00100000) /*!< External Event 4 bit 1*/
MartinJohnson 0:c65854d98061 1885 #define HRTIM_EEFR1_EE4FLTR_2 ((uint32_t)0x00200000) /*!< External Event 4 bit 2 */
MartinJohnson 0:c65854d98061 1886 #define HRTIM_EEFR1_EE4FLTR_3 ((uint32_t)0x00400000) /*!< External Event 4 bit 3 */
MartinJohnson 0:c65854d98061 1887
MartinJohnson 0:c65854d98061 1888 #define HRTIM_EEFR1_EE5LTCH ((uint32_t)0x01000000) /*!< External Event 5 latch */
MartinJohnson 0:c65854d98061 1889 #define HRTIM_EEFR1_EE5FLTR ((uint32_t)0x1E000000) /*!< External Event 5 filter mask */
MartinJohnson 0:c65854d98061 1890 #define HRTIM_EEFR1_EE5FLTR_0 ((uint32_t)0x02000000) /*!< External Event 5 bit 0 */
MartinJohnson 0:c65854d98061 1891 #define HRTIM_EEFR1_EE5FLTR_1 ((uint32_t)0x04000000) /*!< External Event 5 bit 1*/
MartinJohnson 0:c65854d98061 1892 #define HRTIM_EEFR1_EE5FLTR_2 ((uint32_t)0x08000000) /*!< External Event 5 bit 2 */
MartinJohnson 0:c65854d98061 1893 #define HRTIM_EEFR1_EE5FLTR_3 ((uint32_t)0x10000000) /*!< External Event 5 bit 3 */
MartinJohnson 0:c65854d98061 1894
MartinJohnson 0:c65854d98061 1895 /**** Bit definition for Slave external event filtering register 2 ***********/
MartinJohnson 0:c65854d98061 1896 #define HRTIM_EEFR2_EE6LTCH ((uint32_t)0x00000001) /*!< External Event 6 latch */
MartinJohnson 0:c65854d98061 1897 #define HRTIM_EEFR2_EE6FLTR ((uint32_t)0x0000001E) /*!< External Event 6 filter mask */
MartinJohnson 0:c65854d98061 1898 #define HRTIM_EEFR2_EE6FLTR_0 ((uint32_t)0x00000002) /*!< External Event 6 bit 0 */
MartinJohnson 0:c65854d98061 1899 #define HRTIM_EEFR2_EE6FLTR_1 ((uint32_t)0x00000004) /*!< External Event 6 bit 1*/
MartinJohnson 0:c65854d98061 1900 #define HRTIM_EEFR2_EE6FLTR_2 ((uint32_t)0x00000008) /*!< External Event 6 bit 2 */
MartinJohnson 0:c65854d98061 1901 #define HRTIM_EEFR2_EE6FLTR_3 ((uint32_t)0x00000010) /*!< External Event 6 bit 3 */
MartinJohnson 0:c65854d98061 1902
MartinJohnson 0:c65854d98061 1903 #define HRTIM_EEFR2_EE7LTCH ((uint32_t)0x00000040) /*!< External Event 7 latch */
MartinJohnson 0:c65854d98061 1904 #define HRTIM_EEFR2_EE7FLTR ((uint32_t)0x00000780) /*!< External Event 7 filter mask */
MartinJohnson 0:c65854d98061 1905 #define HRTIM_EEFR2_EE7FLTR_0 ((uint32_t)0x00000080) /*!< External Event 7 bit 0 */
MartinJohnson 0:c65854d98061 1906 #define HRTIM_EEFR2_EE7FLTR_1 ((uint32_t)0x00000100) /*!< External Event 7 bit 1*/
MartinJohnson 0:c65854d98061 1907 #define HRTIM_EEFR2_EE7FLTR_2 ((uint32_t)0x00000200) /*!< External Event 7 bit 2 */
MartinJohnson 0:c65854d98061 1908 #define HRTIM_EEFR2_EE7FLTR_3 ((uint32_t)0x00000400) /*!< External Event 7 bit 3 */
MartinJohnson 0:c65854d98061 1909
MartinJohnson 0:c65854d98061 1910 #define HRTIM_EEFR2_EE8LTCH ((uint32_t)0x00001000) /*!< External Event 8 latch */
MartinJohnson 0:c65854d98061 1911 #define HRTIM_EEFR2_EE8FLTR ((uint32_t)0x0001E000) /*!< External Event 8 filter mask */
MartinJohnson 0:c65854d98061 1912 #define HRTIM_EEFR2_EE8FLTR_0 ((uint32_t)0x00002000) /*!< External Event 8 bit 0 */
MartinJohnson 0:c65854d98061 1913 #define HRTIM_EEFR2_EE8FLTR_1 ((uint32_t)0x00004000) /*!< External Event 8 bit 1*/
MartinJohnson 0:c65854d98061 1914 #define HRTIM_EEFR2_EE8FLTR_2 ((uint32_t)0x00008000) /*!< External Event 8 bit 2 */
MartinJohnson 0:c65854d98061 1915 #define HRTIM_EEFR2_EE8FLTR_3 ((uint32_t)0x00010000) /*!< External Event 8 bit 3 */
MartinJohnson 0:c65854d98061 1916
MartinJohnson 0:c65854d98061 1917 #define HRTIM_EEFR2_EE9LTCH ((uint32_t)0x00040000) /*!< External Event 9 latch */
MartinJohnson 0:c65854d98061 1918 #define HRTIM_EEFR2_EE9FLTR ((uint32_t)0x00780000) /*!< External Event 9 filter mask */
MartinJohnson 0:c65854d98061 1919 #define HRTIM_EEFR2_EE9FLTR_0 ((uint32_t)0x00080000) /*!< External Event 9 bit 0 */
MartinJohnson 0:c65854d98061 1920 #define HRTIM_EEFR2_EE9FLTR_1 ((uint32_t)0x00100000) /*!< External Event 9 bit 1*/
MartinJohnson 0:c65854d98061 1921 #define HRTIM_EEFR2_EE9FLTR_2 ((uint32_t)0x00200000) /*!< External Event 9 bit 2 */
MartinJohnson 0:c65854d98061 1922 #define HRTIM_EEFR2_EE9FLTR_3 ((uint32_t)0x00400000) /*!< External Event 9 bit 3 */
MartinJohnson 0:c65854d98061 1923
MartinJohnson 0:c65854d98061 1924 #define HRTIM_EEFR2_EE10LTCH ((uint32_t)0x01000000) /*!< External Event 10 latch */
MartinJohnson 0:c65854d98061 1925 #define HRTIM_EEFR2_EE10FLTR ((uint32_t)0x1E000000) /*!< External Event 10 filter mask */
MartinJohnson 0:c65854d98061 1926 #define HRTIM_EEFR2_EE10FLTR_0 ((uint32_t)0x02000000) /*!< External Event 10 bit 0 */
MartinJohnson 0:c65854d98061 1927 #define HRTIM_EEFR2_EE10FLTR_1 ((uint32_t)0x04000000) /*!< External Event 10 bit 1*/
MartinJohnson 0:c65854d98061 1928 #define HRTIM_EEFR2_EE10FLTR_2 ((uint32_t)0x08000000) /*!< External Event 10 bit 2 */
MartinJohnson 0:c65854d98061 1929 #define HRTIM_EEFR2_EE10FLTR_3 ((uint32_t)0x10000000) /*!< External Event 10 bit 3 */
MartinJohnson 0:c65854d98061 1930
MartinJohnson 0:c65854d98061 1931 /**** Bit definition for Slave Timer reset register ***************************/
MartinJohnson 0:c65854d98061 1932 #define HRTIM_RSTR_UPDATE ((uint32_t)0x00000002) /*!< Timer update */
MartinJohnson 0:c65854d98061 1933 #define HRTIM_RSTR_CMP2 ((uint32_t)0x00000004) /*!< Timer compare2 */
MartinJohnson 0:c65854d98061 1934 #define HRTIM_RSTR_CMP4 ((uint32_t)0x00000008) /*!< Timer compare4 */
MartinJohnson 0:c65854d98061 1935
MartinJohnson 0:c65854d98061 1936 #define HRTIM_RSTR_MSTPER ((uint32_t)0x00000010) /*!< Master period */
MartinJohnson 0:c65854d98061 1937 #define HRTIM_RSTR_MSTCMP1 ((uint32_t)0x00000020) /*!< Master compare1 */
MartinJohnson 0:c65854d98061 1938 #define HRTIM_RSTR_MSTCMP2 ((uint32_t)0x00000040) /*!< Master compare2 */
MartinJohnson 0:c65854d98061 1939 #define HRTIM_RSTR_MSTCMP3 ((uint32_t)0x00000080) /*!< Master compare3 */
MartinJohnson 0:c65854d98061 1940 #define HRTIM_RSTR_MSTCMP4 ((uint32_t)0x00000100) /*!< Master compare4 */
MartinJohnson 0:c65854d98061 1941
MartinJohnson 0:c65854d98061 1942 #define HRTIM_RSTR_EXTEVNT1 ((uint32_t)0x00000200) /*!< External event 1 */
MartinJohnson 0:c65854d98061 1943 #define HRTIM_RSTR_EXTEVNT2 ((uint32_t)0x00000400) /*!< External event 2 */
MartinJohnson 0:c65854d98061 1944 #define HRTIM_RSTR_EXTEVNT3 ((uint32_t)0x00000800) /*!< External event 3 */
MartinJohnson 0:c65854d98061 1945 #define HRTIM_RSTR_EXTEVNT4 ((uint32_t)0x00001000) /*!< External event 4 */
MartinJohnson 0:c65854d98061 1946 #define HRTIM_RSTR_EXTEVNT5 ((uint32_t)0x00002000) /*!< External event 5 */
MartinJohnson 0:c65854d98061 1947 #define HRTIM_RSTR_EXTEVNT6 ((uint32_t)0x00004000) /*!< External event 6 */
MartinJohnson 0:c65854d98061 1948 #define HRTIM_RSTR_EXTEVNT7 ((uint32_t)0x00008000) /*!< External event 7 */
MartinJohnson 0:c65854d98061 1949 #define HRTIM_RSTR_EXTEVNT8 ((uint32_t)0x00010000) /*!< External event 8 */
MartinJohnson 0:c65854d98061 1950 #define HRTIM_RSTR_EXTEVNT9 ((uint32_t)0x00020000) /*!< External event 9 */
MartinJohnson 0:c65854d98061 1951 #define HRTIM_RSTR_EXTEVNT10 ((uint32_t)0x00040000) /*!< External event 10 */
MartinJohnson 0:c65854d98061 1952
MartinJohnson 0:c65854d98061 1953 #define HRTIM_RSTR_TIMBCMP1 ((uint32_t)0x00080000) /*!< Timer B compare 1 */
MartinJohnson 0:c65854d98061 1954 #define HRTIM_RSTR_TIMBCMP2 ((uint32_t)0x00100000) /*!< Timer B compare 2 */
MartinJohnson 0:c65854d98061 1955 #define HRTIM_RSTR_TIMBCMP4 ((uint32_t)0x00200000) /*!< Timer B compare 4 */
MartinJohnson 0:c65854d98061 1956
MartinJohnson 0:c65854d98061 1957 #define HRTIM_RSTR_TIMCCMP1 ((uint32_t)0x00400000) /*!< Timer C compare 1 */
MartinJohnson 0:c65854d98061 1958 #define HRTIM_RSTR_TIMCCMP2 ((uint32_t)0x00800000) /*!< Timer C compare 2 */
MartinJohnson 0:c65854d98061 1959 #define HRTIM_RSTR_TIMCCMP4 ((uint32_t)0x01000000) /*!< Timer C compare 4 */
MartinJohnson 0:c65854d98061 1960
MartinJohnson 0:c65854d98061 1961 #define HRTIM_RSTR_TIMDCMP1 ((uint32_t)0x02000000) /*!< Timer D compare 1 */
MartinJohnson 0:c65854d98061 1962 #define HRTIM_RSTR_TIMDCMP2 ((uint32_t)0x04000000) /*!< Timer D compare 2 */
MartinJohnson 0:c65854d98061 1963 #define HRTIM_RSTR_TIMDCMP4 ((uint32_t)0x08000000) /*!< Timer D compare 4 */
MartinJohnson 0:c65854d98061 1964
MartinJohnson 0:c65854d98061 1965 #define HRTIM_RSTR_TIMECMP1 ((uint32_t)0x10000000) /*!< Timer E compare 1 */
MartinJohnson 0:c65854d98061 1966 #define HRTIM_RSTR_TIMECMP2 ((uint32_t)0x20000000) /*!< Timer E compare 2 */
MartinJohnson 0:c65854d98061 1967 #define HRTIM_RSTR_TIMECMP4 ((uint32_t)0x40000000) /*!< Timer E compare 4 */
MartinJohnson 0:c65854d98061 1968
MartinJohnson 0:c65854d98061 1969 /**** Bit definition for Slave Timer Chopper register *************************/
MartinJohnson 0:c65854d98061 1970 #define HRTIM_CHPR_CARFRQ ((uint32_t)0x0000000F) /*!< Timer carrier frequency value */
MartinJohnson 0:c65854d98061 1971 #define HRTIM_CHPR_CARFRQ_0 ((uint32_t)0x00000001) /*!< Timer carrier frequency value bit 0 */
MartinJohnson 0:c65854d98061 1972 #define HRTIM_CHPR_CARFRQ_1 ((uint32_t)0x00000002) /*!< Timer carrier frequency value bit 1 */
MartinJohnson 0:c65854d98061 1973 #define HRTIM_CHPR_CARFRQ_2 ((uint32_t)0x00000004) /*!< Timer carrier frequency value bit 2 */
MartinJohnson 0:c65854d98061 1974 #define HRTIM_CHPR_CARFRQ_3 ((uint32_t)0x00000008) /*!< Timer carrier frequency value bit 3 */
MartinJohnson 0:c65854d98061 1975
MartinJohnson 0:c65854d98061 1976 #define HRTIM_CHPR_CARDTY ((uint32_t)0x00000070) /*!< Timer chopper duty cycle value */
MartinJohnson 0:c65854d98061 1977 #define HRTIM_CHPR_CARDTY_0 ((uint32_t)0x00000010) /*!< Timer chopper duty cycle value bit 0 */
MartinJohnson 0:c65854d98061 1978 #define HRTIM_CHPR_CARDTY_1 ((uint32_t)0x00000020) /*!< Timer chopper duty cycle value bit 1 */
MartinJohnson 0:c65854d98061 1979 #define HRTIM_CHPR_CARDTY_2 ((uint32_t)0x00000040) /*!< Timer chopper duty cycle value bit 2 */
MartinJohnson 0:c65854d98061 1980
MartinJohnson 0:c65854d98061 1981 #define HRTIM_CHPR_STRPW ((uint32_t)0x00000780) /*!< Timer start pulse width value */
MartinJohnson 0:c65854d98061 1982 #define HRTIM_CHPR_STRPW_0 ((uint32_t)0x00000080) /*!< Timer start pulse width value bit 0 */
MartinJohnson 0:c65854d98061 1983 #define HRTIM_CHPR_STRPW_1 ((uint32_t)0x00000100) /*!< Timer start pulse width value bit 1 */
MartinJohnson 0:c65854d98061 1984 #define HRTIM_CHPR_STRPW_2 ((uint32_t)0x00000200) /*!< Timer start pulse width value bit 2 */
MartinJohnson 0:c65854d98061 1985 #define HRTIM_CHPR_STRPW_3 ((uint32_t)0x00000400) /*!< Timer start pulse width value bit 3 */
MartinJohnson 0:c65854d98061 1986
MartinJohnson 0:c65854d98061 1987 /**** Bit definition for Slave Timer Capture 1 control register ***************/
MartinJohnson 0:c65854d98061 1988 #define HRTIM_CPT1CR_SWCPT ((uint32_t)0x00000001) /*!< Software capture */
MartinJohnson 0:c65854d98061 1989 #define HRTIM_CPT1CR_UPDCPT ((uint32_t)0x00000002) /*!< Update capture */
MartinJohnson 0:c65854d98061 1990 #define HRTIM_CPT1CR_EXEV1CPT ((uint32_t)0x00000004) /*!< External event 1 capture */
MartinJohnson 0:c65854d98061 1991 #define HRTIM_CPT1CR_EXEV2CPT ((uint32_t)0x00000008) /*!< External event 2 capture */
MartinJohnson 0:c65854d98061 1992 #define HRTIM_CPT1CR_EXEV3CPT ((uint32_t)0x00000010) /*!< External event 3 capture */
MartinJohnson 0:c65854d98061 1993 #define HRTIM_CPT1CR_EXEV4CPT ((uint32_t)0x00000020) /*!< External event 4 capture */
MartinJohnson 0:c65854d98061 1994 #define HRTIM_CPT1CR_EXEV5CPT ((uint32_t)0x00000040) /*!< External event 5 capture */
MartinJohnson 0:c65854d98061 1995 #define HRTIM_CPT1CR_EXEV6CPT ((uint32_t)0x00000080) /*!< External event 6 capture */
MartinJohnson 0:c65854d98061 1996 #define HRTIM_CPT1CR_EXEV7CPT ((uint32_t)0x00000100) /*!< External event 7 capture */
MartinJohnson 0:c65854d98061 1997 #define HRTIM_CPT1CR_EXEV8CPT ((uint32_t)0x00000200) /*!< External event 8 capture */
MartinJohnson 0:c65854d98061 1998 #define HRTIM_CPT1CR_EXEV9CPT ((uint32_t)0x00000400) /*!< External event 9 capture */
MartinJohnson 0:c65854d98061 1999 #define HRTIM_CPT1CR_EXEV10CPT ((uint32_t)0x00000800) /*!< External event 10 capture */
MartinJohnson 0:c65854d98061 2000
MartinJohnson 0:c65854d98061 2001 #define HRTIM_CPT1CR_TA1SET ((uint32_t)0x00001000) /*!< Timer A output 1 set */
MartinJohnson 0:c65854d98061 2002 #define HRTIM_CPT1CR_TA1RST ((uint32_t)0x00002000) /*!< Timer A output 1 reset */
MartinJohnson 0:c65854d98061 2003 #define HRTIM_CPT1CR_TA1CMP1 ((uint32_t)0x00004000) /*!< Timer A compare 1 */
MartinJohnson 0:c65854d98061 2004 #define HRTIM_CPT1CR_TA1CMP2 ((uint32_t)0x00008000) /*!< Timer A compare 2 */
MartinJohnson 0:c65854d98061 2005
MartinJohnson 0:c65854d98061 2006 #define HRTIM_CPT1CR_TB1SET ((uint32_t)0x00010000) /*!< Timer B output 1 set */
MartinJohnson 0:c65854d98061 2007 #define HRTIM_CPT1CR_TB1RST ((uint32_t)0x00020000) /*!< Timer B output 1 reset */
MartinJohnson 0:c65854d98061 2008 #define HRTIM_CPT1CR_TB1CMP1 ((uint32_t)0x00040000) /*!< Timer B compare 1 */
MartinJohnson 0:c65854d98061 2009 #define HRTIM_CPT1CR_TB1CMP2 ((uint32_t)0x00080000) /*!< Timer B compare 2 */
MartinJohnson 0:c65854d98061 2010
MartinJohnson 0:c65854d98061 2011 #define HRTIM_CPT1CR_TC1SET ((uint32_t)0x00100000) /*!< Timer C output 1 set */
MartinJohnson 0:c65854d98061 2012 #define HRTIM_CPT1CR_TC1RST ((uint32_t)0x00200000) /*!< Timer C output 1 reset */
MartinJohnson 0:c65854d98061 2013 #define HRTIM_CPT1CR_TC1CMP1 ((uint32_t)0x00400000) /*!< Timer C compare 1 */
MartinJohnson 0:c65854d98061 2014 #define HRTIM_CPT1CR_TC1CMP2 ((uint32_t)0x00800000) /*!< Timer C compare 2 */
MartinJohnson 0:c65854d98061 2015
MartinJohnson 0:c65854d98061 2016 #define HRTIM_CPT1CR_TD1SET ((uint32_t)0x01000000) /*!< Timer D output 1 set */
MartinJohnson 0:c65854d98061 2017 #define HRTIM_CPT1CR_TD1RST ((uint32_t)0x02000000) /*!< Timer D output 1 reset */
MartinJohnson 0:c65854d98061 2018 #define HRTIM_CPT1CR_TD1CMP1 ((uint32_t)0x04000000) /*!< Timer D compare 1 */
MartinJohnson 0:c65854d98061 2019 #define HRTIM_CPT1CR_TD1CMP2 ((uint32_t)0x08000000) /*!< Timer D compare 2 */
MartinJohnson 0:c65854d98061 2020
MartinJohnson 0:c65854d98061 2021 #define HRTIM_CPT1CR_TE1SET ((uint32_t)0x10000000) /*!< Timer E output 1 set */
MartinJohnson 0:c65854d98061 2022 #define HRTIM_CPT1CR_TE1RST ((uint32_t)0x20000000) /*!< Timer E output 1 reset */
MartinJohnson 0:c65854d98061 2023 #define HRTIM_CPT1CR_TE1CMP1 ((uint32_t)0x40000000) /*!< Timer E compare 1 */
MartinJohnson 0:c65854d98061 2024 #define HRTIM_CPT1CR_TE1CMP2 ((uint32_t)0x80000000) /*!< Timer E compare 2 */
MartinJohnson 0:c65854d98061 2025
MartinJohnson 0:c65854d98061 2026 /**** Bit definition for Slave Timer Capture 2 control register ***************/
MartinJohnson 0:c65854d98061 2027 #define HRTIM_CPT2CR_SWCPT ((uint32_t)0x00000001) /*!< Software capture */
MartinJohnson 0:c65854d98061 2028 #define HRTIM_CPT2CR_UPDCPT ((uint32_t)0x00000002) /*!< Update capture */
MartinJohnson 0:c65854d98061 2029 #define HRTIM_CPT2CR_EXEV1CPT ((uint32_t)0x00000004) /*!< External event 1 capture */
MartinJohnson 0:c65854d98061 2030 #define HRTIM_CPT2CR_EXEV2CPT ((uint32_t)0x00000008) /*!< External event 2 capture */
MartinJohnson 0:c65854d98061 2031 #define HRTIM_CPT2CR_EXEV3CPT ((uint32_t)0x00000010) /*!< External event 3 capture */
MartinJohnson 0:c65854d98061 2032 #define HRTIM_CPT2CR_EXEV4CPT ((uint32_t)0x00000020) /*!< External event 4 capture */
MartinJohnson 0:c65854d98061 2033 #define HRTIM_CPT2CR_EXEV5CPT ((uint32_t)0x00000040) /*!< External event 5 capture */
MartinJohnson 0:c65854d98061 2034 #define HRTIM_CPT2CR_EXEV6CPT ((uint32_t)0x00000080) /*!< External event 6 capture */
MartinJohnson 0:c65854d98061 2035 #define HRTIM_CPT2CR_EXEV7CPT ((uint32_t)0x00000100) /*!< External event 7 capture */
MartinJohnson 0:c65854d98061 2036 #define HRTIM_CPT2CR_EXEV8CPT ((uint32_t)0x00000200) /*!< External event 8 capture */
MartinJohnson 0:c65854d98061 2037 #define HRTIM_CPT2CR_EXEV9CPT ((uint32_t)0x00000400) /*!< External event 9 capture */
MartinJohnson 0:c65854d98061 2038 #define HRTIM_CPT2CR_EXEV10CPT ((uint32_t)0x00000800) /*!< External event 10 capture */
MartinJohnson 0:c65854d98061 2039
MartinJohnson 0:c65854d98061 2040 #define HRTIM_CPT2CR_TA1SET ((uint32_t)0x00001000) /*!< Timer A output 1 set */
MartinJohnson 0:c65854d98061 2041 #define HRTIM_CPT2CR_TA1RST ((uint32_t)0x00002000) /*!< Timer A output 1 reset */
MartinJohnson 0:c65854d98061 2042 #define HRTIM_CPT2CR_TA1CMP1 ((uint32_t)0x00004000) /*!< Timer A compare 1 */
MartinJohnson 0:c65854d98061 2043 #define HRTIM_CPT2CR_TA1CMP2 ((uint32_t)0x00008000) /*!< Timer A compare 2 */
MartinJohnson 0:c65854d98061 2044
MartinJohnson 0:c65854d98061 2045 #define HRTIM_CPT2CR_TB1SET ((uint32_t)0x00010000) /*!< Timer B output 1 set */
MartinJohnson 0:c65854d98061 2046 #define HRTIM_CPT2CR_TB1RST ((uint32_t)0x00020000) /*!< Timer B output 1 reset */
MartinJohnson 0:c65854d98061 2047 #define HRTIM_CPT2CR_TB1CMP1 ((uint32_t)0x00040000) /*!< Timer B compare 1 */
MartinJohnson 0:c65854d98061 2048 #define HRTIM_CPT2CR_TB1CMP2 ((uint32_t)0x00080000) /*!< Timer B compare 2 */
MartinJohnson 0:c65854d98061 2049
MartinJohnson 0:c65854d98061 2050 #define HRTIM_CPT2CR_TC1SET ((uint32_t)0x00100000) /*!< Timer C output 1 set */
MartinJohnson 0:c65854d98061 2051 #define HRTIM_CPT2CR_TC1RST ((uint32_t)0x00200000) /*!< Timer C output 1 reset */
MartinJohnson 0:c65854d98061 2052 #define HRTIM_CPT2CR_TC1CMP1 ((uint32_t)0x00400000) /*!< Timer C compare 1 */
MartinJohnson 0:c65854d98061 2053 #define HRTIM_CPT2CR_TC1CMP2 ((uint32_t)0x00800000) /*!< Timer C compare 2 */
MartinJohnson 0:c65854d98061 2054
MartinJohnson 0:c65854d98061 2055 #define HRTIM_CPT2CR_TD1SET ((uint32_t)0x01000000) /*!< Timer D output 1 set */
MartinJohnson 0:c65854d98061 2056 #define HRTIM_CPT2CR_TD1RST ((uint32_t)0x02000000) /*!< Timer D output 1 reset */
MartinJohnson 0:c65854d98061 2057 #define HRTIM_CPT2CR_TD1CMP1 ((uint32_t)0x04000000) /*!< Timer D compare 1 */
MartinJohnson 0:c65854d98061 2058 #define HRTIM_CPT2CR_TD1CMP2 ((uint32_t)0x08000000) /*!< Timer D compare 2 */
MartinJohnson 0:c65854d98061 2059
MartinJohnson 0:c65854d98061 2060 #define HRTIM_CPT2CR_TE1SET ((uint32_t)0x10000000) /*!< Timer E output 1 set */
MartinJohnson 0:c65854d98061 2061 #define HRTIM_CPT2CR_TE1RST ((uint32_t)0x20000000) /*!< Timer E output 1 reset */
MartinJohnson 0:c65854d98061 2062 #define HRTIM_CPT2CR_TE1CMP1 ((uint32_t)0x40000000) /*!< Timer E compare 1 */
MartinJohnson 0:c65854d98061 2063 #define HRTIM_CPT2CR_TE1CMP2 ((uint32_t)0x80000000) /*!< Timer E compare 2 */
MartinJohnson 0:c65854d98061 2064
MartinJohnson 0:c65854d98061 2065 /**** Bit definition for Slave Timer Output register **************************/
MartinJohnson 0:c65854d98061 2066 #define HRTIM_OUTR_POL1 ((uint32_t)0x00000002) /*!< Slave output 1 polarity */
MartinJohnson 0:c65854d98061 2067 #define HRTIM_OUTR_IDLM1 ((uint32_t)0x00000004) /*!< Slave output 1 idle mode */
MartinJohnson 0:c65854d98061 2068 #define HRTIM_OUTR_IDLES1 ((uint32_t)0x00000008) /*!< Slave output 1 idle state */
MartinJohnson 0:c65854d98061 2069 #define HRTIM_OUTR_FAULT1 ((uint32_t)0x00000030) /*!< Slave output 1 fault state */
MartinJohnson 0:c65854d98061 2070 #define HRTIM_OUTR_FAULT1_0 ((uint32_t)0x00000010) /*!< Slave output 1 fault state bit 0 */
MartinJohnson 0:c65854d98061 2071 #define HRTIM_OUTR_FAULT1_1 ((uint32_t)0x00000020) /*!< Slave output 1 fault state bit 1 */
MartinJohnson 0:c65854d98061 2072 #define HRTIM_OUTR_CHP1 ((uint32_t)0x00000040) /*!< Slave output 1 chopper enable */
MartinJohnson 0:c65854d98061 2073 #define HRTIM_OUTR_DIDL1 ((uint32_t)0x00000080) /*!< Slave output 1 dead time idle */
MartinJohnson 0:c65854d98061 2074
MartinJohnson 0:c65854d98061 2075 #define HRTIM_OUTR_DTEN ((uint32_t)0x00000100) /*!< Slave output deadtime enable */
MartinJohnson 0:c65854d98061 2076 #define HRTIM_OUTR_DLYPRTEN ((uint32_t)0x00000200) /*!< Slave output delay protection enable */
MartinJohnson 0:c65854d98061 2077 #define HRTIM_OUTR_DLYPRT ((uint32_t)0x00001C00) /*!< Slave output delay protection */
MartinJohnson 0:c65854d98061 2078 #define HRTIM_OUTR_DLYPRT_0 ((uint32_t)0x00000400) /*!< Slave output delay protection bit 0 */
MartinJohnson 0:c65854d98061 2079 #define HRTIM_OUTR_DLYPRT_1 ((uint32_t)0x00000800) /*!< Slave output delay protection bit 1 */
MartinJohnson 0:c65854d98061 2080 #define HRTIM_OUTR_DLYPRT_2 ((uint32_t)0x00001000) /*!< Slave output delay protection bit 2 */
MartinJohnson 0:c65854d98061 2081
MartinJohnson 0:c65854d98061 2082 #define HRTIM_OUTR_POL2 ((uint32_t)0x00020000) /*!< Slave output 2 polarity */
MartinJohnson 0:c65854d98061 2083 #define HRTIM_OUTR_IDLM2 ((uint32_t)0x00040000) /*!< Slave output 2 idle mode */
MartinJohnson 0:c65854d98061 2084 #define HRTIM_OUTR_IDLES2 ((uint32_t)0x00080000) /*!< Slave output 2 idle state */
MartinJohnson 0:c65854d98061 2085 #define HRTIM_OUTR_FAULT2 ((uint32_t)0x00300000) /*!< Slave output 2 fault state */
MartinJohnson 0:c65854d98061 2086 #define HRTIM_OUTR_FAULT2_0 ((uint32_t)0x00100000) /*!< Slave output 2 fault state bit 0 */
MartinJohnson 0:c65854d98061 2087 #define HRTIM_OUTR_FAULT2_1 ((uint32_t)0x00200000) /*!< Slave output 2 fault state bit 1 */
MartinJohnson 0:c65854d98061 2088 #define HRTIM_OUTR_CHP2 ((uint32_t)0x00400000) /*!< Slave output 2 chopper enable */
MartinJohnson 0:c65854d98061 2089 #define HRTIM_OUTR_DIDL2 ((uint32_t)0x00800000) /*!< Slave output 2 dead time idle */
MartinJohnson 0:c65854d98061 2090
MartinJohnson 0:c65854d98061 2091 /**** Bit definition for Slave Timer Fault register ***************************/
MartinJohnson 0:c65854d98061 2092 #define HRTIM_FLTR_FLT1EN ((uint32_t)0x00000001) /*!< Fault 1 enable */
MartinJohnson 0:c65854d98061 2093 #define HRTIM_FLTR_FLT2EN ((uint32_t)0x00000002) /*!< Fault 2 enable */
MartinJohnson 0:c65854d98061 2094 #define HRTIM_FLTR_FLT3EN ((uint32_t)0x00000004) /*!< Fault 3 enable */
MartinJohnson 0:c65854d98061 2095 #define HRTIM_FLTR_FLT4EN ((uint32_t)0x00000008) /*!< Fault 4 enable */
MartinJohnson 0:c65854d98061 2096 #define HRTIM_FLTR_FLT5EN ((uint32_t)0x00000010) /*!< Fault 5 enable */
MartinJohnson 0:c65854d98061 2097 #define HRTIM_FLTR_FLTCLK ((uint32_t)0x80000000) /*!< Fault sources lock */
MartinJohnson 0:c65854d98061 2098
MartinJohnson 0:c65854d98061 2099 /**** Bit definition for Common HRTIM Timer control register 1 ****************/
MartinJohnson 0:c65854d98061 2100 #define HRTIM_CR1_MUDIS ((uint32_t)0x00000001) /*!< Master update disable*/
MartinJohnson 0:c65854d98061 2101 #define HRTIM_CR1_TAUDIS ((uint32_t)0x00000002) /*!< Timer A update disable*/
MartinJohnson 0:c65854d98061 2102 #define HRTIM_CR1_TBUDIS ((uint32_t)0x00000004) /*!< Timer B update disable*/
MartinJohnson 0:c65854d98061 2103 #define HRTIM_CR1_TCUDIS ((uint32_t)0x00000008) /*!< Timer C update disable*/
MartinJohnson 0:c65854d98061 2104 #define HRTIM_CR1_TDUDIS ((uint32_t)0x00000010) /*!< Timer D update disable*/
MartinJohnson 0:c65854d98061 2105 #define HRTIM_CR1_TEUDIS ((uint32_t)0x00000020) /*!< Timer E update disable*/
MartinJohnson 0:c65854d98061 2106 #define HRTIM_CR1_ADC1USRC ((uint32_t)0x00070000) /*!< ADC Trigger 1 update source */
MartinJohnson 0:c65854d98061 2107 #define HRTIM_CR1_ADC1USRC_0 ((uint32_t)0x00010000) /*!< ADC Trigger 1 update source bit 0 */
MartinJohnson 0:c65854d98061 2108 #define HRTIM_CR1_ADC1USRC_1 ((uint32_t)0x00020000) /*!< ADC Trigger 1 update source bit 1 */
MartinJohnson 0:c65854d98061 2109 #define HRTIM_CR1_ADC1USRC_2 ((uint32_t)0x00040000) /*!< ADC Trigger 1 update source bit 2 */
MartinJohnson 0:c65854d98061 2110 #define HRTIM_CR1_ADC2USRC ((uint32_t)0x00380000) /*!< ADC Trigger 2 update source */
MartinJohnson 0:c65854d98061 2111 #define HRTIM_CR1_ADC2USRC_0 ((uint32_t)0x00080000) /*!< ADC Trigger 2 update source bit 0 */
MartinJohnson 0:c65854d98061 2112 #define HRTIM_CR1_ADC2USRC_1 ((uint32_t)0x00100000) /*!< ADC Trigger 2 update source bit 1 */
MartinJohnson 0:c65854d98061 2113 #define HRTIM_CR1_ADC2USRC_2 ((uint32_t)0x00200000) /*!< ADC Trigger 2 update source bit 2 */
MartinJohnson 0:c65854d98061 2114 #define HRTIM_CR1_ADC3USRC ((uint32_t)0x01C00000) /*!< ADC Trigger 3 update source */
MartinJohnson 0:c65854d98061 2115 #define HRTIM_CR1_ADC3USRC_0 ((uint32_t)0x00400000) /*!< ADC Trigger 3 update source bit 0 */
MartinJohnson 0:c65854d98061 2116 #define HRTIM_CR1_ADC3USRC_1 ((uint32_t)0x00800000) /*!< ADC Trigger 3 update source bit 1 */
MartinJohnson 0:c65854d98061 2117 #define HRTIM_CR1_ADC3USRC_2 ((uint32_t)0x01000000) /*!< ADC Trigger 3 update source bit 2 */
MartinJohnson 0:c65854d98061 2118 #define HRTIM_CR1_ADC4USRC ((uint32_t)0x0E000000) /*!< ADC Trigger 4 update source */
MartinJohnson 0:c65854d98061 2119 #define HRTIM_CR1_ADC4USRC_0 ((uint32_t)0x02000000) /*!< ADC Trigger 4 update source bit 0 */
MartinJohnson 0:c65854d98061 2120 #define HRTIM_CR1_ADC4USRC_1 ((uint32_t)0x04000000) /*!< ADC Trigger 4 update source bit 1 */
MartinJohnson 0:c65854d98061 2121 #define HRTIM_CR1_ADC4USRC_2 ((uint32_t)0x0800000) /*!< ADC Trigger 4 update source bit 2 */
MartinJohnson 0:c65854d98061 2122
MartinJohnson 0:c65854d98061 2123 /**** Bit definition for Common HRTIM Timer control register 2 ****************/
MartinJohnson 0:c65854d98061 2124 #define HRTIM_CR2_MSWU ((uint32_t)0x00000001) /*!< Master software update */
MartinJohnson 0:c65854d98061 2125 #define HRTIM_CR2_TASWU ((uint32_t)0x00000002) /*!< Timer A software update */
MartinJohnson 0:c65854d98061 2126 #define HRTIM_CR2_TBSWU ((uint32_t)0x00000004) /*!< Timer B software update */
MartinJohnson 0:c65854d98061 2127 #define HRTIM_CR2_TCSWU ((uint32_t)0x00000008) /*!< Timer C software update */
MartinJohnson 0:c65854d98061 2128 #define HRTIM_CR2_TDSWU ((uint32_t)0x00000010) /*!< Timer D software update */
MartinJohnson 0:c65854d98061 2129 #define HRTIM_CR2_TESWU ((uint32_t)0x00000020) /*!< Timer E software update */
MartinJohnson 0:c65854d98061 2130 #define HRTIM_CR2_MRST ((uint32_t)0x00000100) /*!< Master count software reset */
MartinJohnson 0:c65854d98061 2131 #define HRTIM_CR2_TARST ((uint32_t)0x00000200) /*!< Timer A count software reset */
MartinJohnson 0:c65854d98061 2132 #define HRTIM_CR2_TBRST ((uint32_t)0x00000400) /*!< Timer B count software reset */
MartinJohnson 0:c65854d98061 2133 #define HRTIM_CR2_TCRST ((uint32_t)0x00000800) /*!< Timer C count software reset */
MartinJohnson 0:c65854d98061 2134 #define HRTIM_CR2_TDRST ((uint32_t)0x00001000) /*!< Timer D count software reset */
MartinJohnson 0:c65854d98061 2135 #define HRTIM_CR2_TERST ((uint32_t)0x00002000) /*!< Timer E count software reset */
MartinJohnson 0:c65854d98061 2136
MartinJohnson 0:c65854d98061 2137 /**** Bit definition for Common HRTIM Timer interrupt status register *********/
MartinJohnson 0:c65854d98061 2138 #define HRTIM_ISR_FLT1 ((uint32_t)0x00000001) /*!< Fault 1 interrupt flag */
MartinJohnson 0:c65854d98061 2139 #define HRTIM_ISR_FLT2 ((uint32_t)0x00000002) /*!< Fault 2 interrupt flag */
MartinJohnson 0:c65854d98061 2140 #define HRTIM_ISR_FLT3 ((uint32_t)0x00000004) /*!< Fault 3 interrupt flag */
MartinJohnson 0:c65854d98061 2141 #define HRTIM_ISR_FLT4 ((uint32_t)0x00000008) /*!< Fault 4 interrupt flag */
MartinJohnson 0:c65854d98061 2142 #define HRTIM_ISR_FLT5 ((uint32_t)0x00000010) /*!< Fault 5 interrupt flag */
MartinJohnson 0:c65854d98061 2143 #define HRTIM_ISR_SYSFLT ((uint32_t)0x00000020) /*!< System Fault interrupt flag */
MartinJohnson 0:c65854d98061 2144 #define HRTIM_ISR_DLLRDY ((uint32_t)0x00010000) /*!< DLL ready interrupt flag */
MartinJohnson 0:c65854d98061 2145 #define HRTIM_ISR_BMPER ((uint32_t)0x00020000) /*!< Burst mode period interrupt flag */
MartinJohnson 0:c65854d98061 2146
MartinJohnson 0:c65854d98061 2147 /**** Bit definition for Common HRTIM Timer interrupt clear register **********/
MartinJohnson 0:c65854d98061 2148 #define HRTIM_ICR_FLT1C ((uint32_t)0x00000001) /*!< Fault 1 interrupt flag clear */
MartinJohnson 0:c65854d98061 2149 #define HRTIM_ICR_FLT2C ((uint32_t)0x00000002) /*!< Fault 2 interrupt flag clear */
MartinJohnson 0:c65854d98061 2150 #define HRTIM_ICR_FLT3C ((uint32_t)0x00000004) /*!< Fault 3 interrupt flag clear */
MartinJohnson 0:c65854d98061 2151 #define HRTIM_ICR_FLT4C ((uint32_t)0x00000008) /*!< Fault 4 interrupt flag clear */
MartinJohnson 0:c65854d98061 2152 #define HRTIM_ICR_FLT5C ((uint32_t)0x00000010) /*!< Fault 5 interrupt flag clear */
MartinJohnson 0:c65854d98061 2153 #define HRTIM_ICR_SYSFLTC ((uint32_t)0x00000020) /*!< System Fault interrupt flag clear */
MartinJohnson 0:c65854d98061 2154 #define HRTIM_ICR_DLLRDYC ((uint32_t)0x00010000) /*!< DLL ready interrupt flag clear */
MartinJohnson 0:c65854d98061 2155 #define HRTIM_ICR_BMPERC ((uint32_t)0x00020000) /*!< Burst mode period interrupt flag clear */
MartinJohnson 0:c65854d98061 2156
MartinJohnson 0:c65854d98061 2157 /**** Bit definition for Common HRTIM Timer interrupt enable register *********/
MartinJohnson 0:c65854d98061 2158 #define HRTIM_IER_FLT1 ((uint32_t)0x00000001) /*!< Fault 1 interrupt enable */
MartinJohnson 0:c65854d98061 2159 #define HRTIM_IER_FLT2 ((uint32_t)0x00000002) /*!< Fault 2 interrupt enable */
MartinJohnson 0:c65854d98061 2160 #define HRTIM_IER_FLT3 ((uint32_t)0x00000004) /*!< Fault 3 interrupt enable */
MartinJohnson 0:c65854d98061 2161 #define HRTIM_IER_FLT4 ((uint32_t)0x00000008) /*!< Fault 4 interrupt enable */
MartinJohnson 0:c65854d98061 2162 #define HRTIM_IER_FLT5 ((uint32_t)0x00000010) /*!< Fault 5 interrupt enable */
MartinJohnson 0:c65854d98061 2163 #define HRTIM_IER_SYSFLT ((uint32_t)0x00000020) /*!< System Fault interrupt enable */
MartinJohnson 0:c65854d98061 2164 #define HRTIM_IER_DLLRDY ((uint32_t)0x00010000) /*!< DLL ready interrupt enable */
MartinJohnson 0:c65854d98061 2165 #define HRTIM_IER_BMPER ((uint32_t)0x00020000) /*!< Burst mode period interrupt enable */
MartinJohnson 0:c65854d98061 2166
MartinJohnson 0:c65854d98061 2167 /**** Bit definition for Common HRTIM Timer output enable register ************/
MartinJohnson 0:c65854d98061 2168 #define HRTIM_OENR_TA1OEN ((uint32_t)0x00000001) /*!< Timer A Output 1 enable */
MartinJohnson 0:c65854d98061 2169 #define HRTIM_OENR_TA2OEN ((uint32_t)0x00000002) /*!< Timer A Output 2 enable */
MartinJohnson 0:c65854d98061 2170 #define HRTIM_OENR_TB1OEN ((uint32_t)0x00000004) /*!< Timer B Output 1 enable */
MartinJohnson 0:c65854d98061 2171 #define HRTIM_OENR_TB2OEN ((uint32_t)0x00000008) /*!< Timer B Output 2 enable */
MartinJohnson 0:c65854d98061 2172 #define HRTIM_OENR_TC1OEN ((uint32_t)0x00000010) /*!< Timer C Output 1 enable */
MartinJohnson 0:c65854d98061 2173 #define HRTIM_OENR_TC2OEN ((uint32_t)0x00000020) /*!< Timer C Output 2 enable */
MartinJohnson 0:c65854d98061 2174 #define HRTIM_OENR_TD1OEN ((uint32_t)0x00000040) /*!< Timer D Output 1 enable */
MartinJohnson 0:c65854d98061 2175 #define HRTIM_OENR_TD2OEN ((uint32_t)0x00000080) /*!< Timer D Output 2 enable */
MartinJohnson 0:c65854d98061 2176 #define HRTIM_OENR_TE1OEN ((uint32_t)0x00000100) /*!< Timer E Output 1 enable */
MartinJohnson 0:c65854d98061 2177 #define HRTIM_OENR_TE2OEN ((uint32_t)0x00000200) /*!< Timer E Output 2 enable */
MartinJohnson 0:c65854d98061 2178
MartinJohnson 0:c65854d98061 2179 /**** Bit definition for Common HRTIM Timer output disable register ***********/
MartinJohnson 0:c65854d98061 2180 #define HRTIM_ODISR_TA1ODIS ((uint32_t)0x00000001) /*!< Timer A Output 1 disable */
MartinJohnson 0:c65854d98061 2181 #define HRTIM_ODISR_TA2ODIS ((uint32_t)0x00000002) /*!< Timer A Output 2 disable */
MartinJohnson 0:c65854d98061 2182 #define HRTIM_ODISR_TB1ODIS ((uint32_t)0x00000004) /*!< Timer B Output 1 disable */
MartinJohnson 0:c65854d98061 2183 #define HRTIM_ODISR_TB2ODIS ((uint32_t)0x00000008) /*!< Timer B Output 2 disable */
MartinJohnson 0:c65854d98061 2184 #define HRTIM_ODISR_TC1ODIS ((uint32_t)0x00000010) /*!< Timer C Output 1 disable */
MartinJohnson 0:c65854d98061 2185 #define HRTIM_ODISR_TC2ODIS ((uint32_t)0x00000020) /*!< Timer C Output 2 disable */
MartinJohnson 0:c65854d98061 2186 #define HRTIM_ODISR_TD1ODIS ((uint32_t)0x00000040) /*!< Timer D Output 1 disable */
MartinJohnson 0:c65854d98061 2187 #define HRTIM_ODISR_TD2ODIS ((uint32_t)0x00000080) /*!< Timer D Output 2 disable */
MartinJohnson 0:c65854d98061 2188 #define HRTIM_ODISR_TE1ODIS ((uint32_t)0x00000100) /*!< Timer E Output 1 disable */
MartinJohnson 0:c65854d98061 2189 #define HRTIM_ODISR_TE2ODIS ((uint32_t)0x00000200) /*!< Timer E Output 2 disable */
MartinJohnson 0:c65854d98061 2190
MartinJohnson 0:c65854d98061 2191 /**** Bit definition for Common HRTIM Timer output disable status register *****/
MartinJohnson 0:c65854d98061 2192 #define HRTIM_ODSR_TA1ODS ((uint32_t)0x00000001) /*!< Timer A Output 1 disable status */
MartinJohnson 0:c65854d98061 2193 #define HRTIM_ODSR_TA2ODS ((uint32_t)0x00000002) /*!< Timer A Output 2 disable status */
MartinJohnson 0:c65854d98061 2194 #define HRTIM_ODSR_TB1ODS ((uint32_t)0x00000004) /*!< Timer B Output 1 disable status */
MartinJohnson 0:c65854d98061 2195 #define HRTIM_ODSR_TB2ODS ((uint32_t)0x00000008) /*!< Timer B Output 2 disable status */
MartinJohnson 0:c65854d98061 2196 #define HRTIM_ODSR_TC1ODS ((uint32_t)0x00000010) /*!< Timer C Output 1 disable status */
MartinJohnson 0:c65854d98061 2197 #define HRTIM_ODSR_TC2ODS ((uint32_t)0x00000020) /*!< Timer C Output 2 disable status */
MartinJohnson 0:c65854d98061 2198 #define HRTIM_ODSR_TD1ODS ((uint32_t)0x00000040) /*!< Timer D Output 1 disable status */
MartinJohnson 0:c65854d98061 2199 #define HRTIM_ODSR_TD2ODS ((uint32_t)0x00000080) /*!< Timer D Output 2 disable status */
MartinJohnson 0:c65854d98061 2200 #define HRTIM_ODSR_TE1ODS ((uint32_t)0x00000100) /*!< Timer E Output 1 disable status */
MartinJohnson 0:c65854d98061 2201 #define HRTIM_ODSR_TE2ODS ((uint32_t)0x00000200) /*!< Timer E Output 2 disable status */
MartinJohnson 0:c65854d98061 2202
MartinJohnson 0:c65854d98061 2203 /**** Bit definition for Common HRTIM Timer Burst mode control register ********/
MartinJohnson 0:c65854d98061 2204 #define HRTIM_BMCR_BME ((uint32_t)0x00000001) /*!< Burst mode enable */
MartinJohnson 0:c65854d98061 2205 #define HRTIM_BMCR_BMOM ((uint32_t)0x00000002) /*!< Burst mode operating mode */
MartinJohnson 0:c65854d98061 2206 #define HRTIM_BMCR_BMCLK ((uint32_t)0x0000003C) /*!< Burst mode clock source */
MartinJohnson 0:c65854d98061 2207 #define HRTIM_BMCR_BMCLK_0 ((uint32_t)0x00000004) /*!< Burst mode clock source bit 0 */
MartinJohnson 0:c65854d98061 2208 #define HRTIM_BMCR_BMCLK_1 ((uint32_t)0x00000008) /*!< Burst mode clock source bit 1 */
MartinJohnson 0:c65854d98061 2209 #define HRTIM_BMCR_BMCLK_2 ((uint32_t)0x00000010) /*!< Burst mode clock source bit 2 */
MartinJohnson 0:c65854d98061 2210 #define HRTIM_BMCR_BMCLK_3 ((uint32_t)0x00000020) /*!< Burst mode clock source bit 3 */
MartinJohnson 0:c65854d98061 2211 #define HRTIM_BMCR_BMPSC ((uint32_t)0x000003C0) /*!< Burst mode prescaler */
MartinJohnson 0:c65854d98061 2212 #define HRTIM_BMCR_BMPSC_0 ((uint32_t)0x00000040) /*!< Burst mode prescaler bit 0 */
MartinJohnson 0:c65854d98061 2213 #define HRTIM_BMCR_BMPSC_1 ((uint32_t)0x00000080) /*!< Burst mode prescaler bit 1 */
MartinJohnson 0:c65854d98061 2214 #define HRTIM_BMCR_BMPSC_2 ((uint32_t)0x00000100) /*!< Burst mode prescaler bit 2 */
MartinJohnson 0:c65854d98061 2215 #define HRTIM_BMCR_BMPSC_3 ((uint32_t)0x00000200) /*!< Burst mode prescaler bit 3 */
MartinJohnson 0:c65854d98061 2216 #define HRTIM_BMCR_BMPREN ((uint32_t)0x00000400) /*!< Burst mode Preload bit */
MartinJohnson 0:c65854d98061 2217 #define HRTIM_BMCR_MTBM ((uint32_t)0x00010000) /*!< Master Timer Burst mode */
MartinJohnson 0:c65854d98061 2218 #define HRTIM_BMCR_TABM ((uint32_t)0x00020000) /*!< Timer A Burst mode */
MartinJohnson 0:c65854d98061 2219 #define HRTIM_BMCR_TBBM ((uint32_t)0x00040000) /*!< Timer B Burst mode */
MartinJohnson 0:c65854d98061 2220 #define HRTIM_BMCR_TCBM ((uint32_t)0x00080000) /*!< Timer C Burst mode */
MartinJohnson 0:c65854d98061 2221 #define HRTIM_BMCR_TDBM ((uint32_t)0x00100000) /*!< Timer D Burst mode */
MartinJohnson 0:c65854d98061 2222 #define HRTIM_BMCR_TEBM ((uint32_t)0x00200000) /*!< Timer E Burst mode */
MartinJohnson 0:c65854d98061 2223 #define HRTIM_BMCR_BMSTAT ((uint32_t)0x80000000) /*!< Burst mode status */
MartinJohnson 0:c65854d98061 2224
MartinJohnson 0:c65854d98061 2225 /**** Bit definition for Common HRTIM Timer Burst mode Trigger register *******/
MartinJohnson 0:c65854d98061 2226 #define HRTIM_BMTRGR_SW ((uint32_t)0x00000001) /*!< Software start */
MartinJohnson 0:c65854d98061 2227 #define HRTIM_BMTRGR_MSTRST ((uint32_t)0x00000002) /*!< Master reset */
MartinJohnson 0:c65854d98061 2228 #define HRTIM_BMTRGR_MSTREP ((uint32_t)0x00000004) /*!< Master repetition */
MartinJohnson 0:c65854d98061 2229 #define HRTIM_BMTRGR_MSTCMP1 ((uint32_t)0x00000008) /*!< Master compare 1 */
MartinJohnson 0:c65854d98061 2230 #define HRTIM_BMTRGR_MSTCMP2 ((uint32_t)0x00000010) /*!< Master compare 2 */
MartinJohnson 0:c65854d98061 2231 #define HRTIM_BMTRGR_MSTCMP3 ((uint32_t)0x00000020) /*!< Master compare 3 */
MartinJohnson 0:c65854d98061 2232 #define HRTIM_BMTRGR_MSTCMP4 ((uint32_t)0x00000040) /*!< Master compare 4 */
MartinJohnson 0:c65854d98061 2233 #define HRTIM_BMTRGR_TARST ((uint32_t)0x00000080) /*!< Timer A reset */
MartinJohnson 0:c65854d98061 2234 #define HRTIM_BMTRGR_TAREP ((uint32_t)0x00000100) /*!< Timer A repetition */
MartinJohnson 0:c65854d98061 2235 #define HRTIM_BMTRGR_TACMP1 ((uint32_t)0x00000200) /*!< Timer A compare 1 */
MartinJohnson 0:c65854d98061 2236 #define HRTIM_BMTRGR_TACMP2 ((uint32_t)0x00000400) /*!< Timer A compare 2 */
MartinJohnson 0:c65854d98061 2237 #define HRTIM_BMTRGR_TBRST ((uint32_t)0x00000800) /*!< Timer B reset */
MartinJohnson 0:c65854d98061 2238 #define HRTIM_BMTRGR_TBREP ((uint32_t)0x00001000) /*!< Timer B repetition */
MartinJohnson 0:c65854d98061 2239 #define HRTIM_BMTRGR_TBCMP1 ((uint32_t)0x00002000) /*!< Timer B compare 1 */
MartinJohnson 0:c65854d98061 2240 #define HRTIM_BMTRGR_TBCMP2 ((uint32_t)0x00004000) /*!< Timer B compare 2 */
MartinJohnson 0:c65854d98061 2241 #define HRTIM_BMTRGR_TCRST ((uint32_t)0x00008000) /*!< Timer C reset */
MartinJohnson 0:c65854d98061 2242 #define HRTIM_BMTRGR_TCREP ((uint32_t)0x00010000) /*!< Timer C repetition */
MartinJohnson 0:c65854d98061 2243 #define HRTIM_BMTRGR_TCCMP1 ((uint32_t)0x00020000) /*!< Timer C compare 1 */
MartinJohnson 0:c65854d98061 2244 #define HRTIM_BMTRGR_TCCMP2 ((uint32_t)0x00040000) /*!< Timer C compare 2 */
MartinJohnson 0:c65854d98061 2245 #define HRTIM_BMTRGR_TDRST ((uint32_t)0x00080000) /*!< Timer D reset */
MartinJohnson 0:c65854d98061 2246 #define HRTIM_BMTRGR_TDREP ((uint32_t)0x00100000) /*!< Timer D repetition */
MartinJohnson 0:c65854d98061 2247 #define HRTIM_BMTRGR_TDCMP1 ((uint32_t)0x00200000) /*!< Timer D compare 1 */
MartinJohnson 0:c65854d98061 2248 #define HRTIM_BMTRGR_TDCMP2 ((uint32_t)0x00400000) /*!< Timer D compare 2 */
MartinJohnson 0:c65854d98061 2249 #define HRTIM_BMTRGR_TERST ((uint32_t)0x00800000) /*!< Timer E reset */
MartinJohnson 0:c65854d98061 2250 #define HRTIM_BMTRGR_TEREP ((uint32_t)0x01000000) /*!< Timer E repetition */
MartinJohnson 0:c65854d98061 2251 #define HRTIM_BMTRGR_TECMP1 ((uint32_t)0x02000000) /*!< Timer E compare 1 */
MartinJohnson 0:c65854d98061 2252 #define HRTIM_BMTRGR_TECMP2 ((uint32_t)0x04000000) /*!< Timer E compare 2 */
MartinJohnson 0:c65854d98061 2253 #define HRTIM_BMTRGR_TAEEV7 ((uint32_t)0x08000000) /*!< Timer A period following External Event7 */
MartinJohnson 0:c65854d98061 2254 #define HRTIM_BMTRGR_TDEEV8 ((uint32_t)0x10000000) /*!< Timer D period following External Event8 */
MartinJohnson 0:c65854d98061 2255 #define HRTIM_BMTRGR_EEV7 ((uint32_t)0x20000000) /*!< External Event 7 */
MartinJohnson 0:c65854d98061 2256 #define HRTIM_BMTRGR_EEV8 ((uint32_t)0x40000000) /*!< External Event 8 */
MartinJohnson 0:c65854d98061 2257 #define HRTIM_BMTRGR_OCHPEV ((uint32_t)0x80000000) /*!< on-chip Event */
MartinJohnson 0:c65854d98061 2258
MartinJohnson 0:c65854d98061 2259 /******************* Bit definition for HRTIM_BMCMPR register ***************/
MartinJohnson 0:c65854d98061 2260 #define HRTIM_BMCMPR_BMCMPR ((uint32_t)0x0000FFFF) /*!<!<Burst Compare Value */
MartinJohnson 0:c65854d98061 2261
MartinJohnson 0:c65854d98061 2262 /******************* Bit definition for HRTIM_BMPER register ****************/
MartinJohnson 0:c65854d98061 2263 #define HRTIM_BMPER_BMPER ((uint32_t)0x0000FFFF) /*!<!<Burst period Value */
MartinJohnson 0:c65854d98061 2264
MartinJohnson 0:c65854d98061 2265 /******************* Bit definition for HRTIM_EECR1 register ****************/
MartinJohnson 0:c65854d98061 2266 #define HRTIM_EECR1_EE1SRC ((uint32_t)0x00000003) /*!< External event 1 source */
MartinJohnson 0:c65854d98061 2267 #define HRTIM_EECR1_EE1SRC_0 ((uint32_t)0x00000001) /*!< External event 1 source bit 0 */
MartinJohnson 0:c65854d98061 2268 #define HRTIM_EECR1_EE1SRC_1 ((uint32_t)0x00000002) /*!< External event 1 source bit 1 */
MartinJohnson 0:c65854d98061 2269 #define HRTIM_EECR1_EE1POL ((uint32_t)0x00000004) /*!< External event 1 Polarity */
MartinJohnson 0:c65854d98061 2270 #define HRTIM_EECR1_EE1SNS ((uint32_t)0x00000018) /*!< External event 1 sensitivity */
MartinJohnson 0:c65854d98061 2271 #define HRTIM_EECR1_EE1SNS_0 ((uint32_t)0x00000008) /*!< External event 1 sensitivity bit 0 */
MartinJohnson 0:c65854d98061 2272 #define HRTIM_EECR1_EE1SNS_1 ((uint32_t)0x00000010) /*!< External event 1 sensitivity bit 1 */
MartinJohnson 0:c65854d98061 2273 #define HRTIM_EECR1_EE1FAST ((uint32_t)0x00000020) /*!< External event 1 Fast mode */
MartinJohnson 0:c65854d98061 2274
MartinJohnson 0:c65854d98061 2275 #define HRTIM_EECR1_EE2SRC ((uint32_t)0x000000C0) /*!< External event 2 source */
MartinJohnson 0:c65854d98061 2276 #define HRTIM_EECR1_EE2SRC_0 ((uint32_t)0x00000040) /*!< External event 2 source bit 0 */
MartinJohnson 0:c65854d98061 2277 #define HRTIM_EECR1_EE2SRC_1 ((uint32_t)0x00000080) /*!< External event 2 source bit 1 */
MartinJohnson 0:c65854d98061 2278 #define HRTIM_EECR1_EE2POL ((uint32_t)0x00000100) /*!< External event 2 Polarity */
MartinJohnson 0:c65854d98061 2279 #define HRTIM_EECR1_EE2SNS ((uint32_t)0x00000600) /*!< External event 2 sensitivity */
MartinJohnson 0:c65854d98061 2280 #define HRTIM_EECR1_EE2SNS_0 ((uint32_t)0x00000200) /*!< External event 2 sensitivity bit 0 */
MartinJohnson 0:c65854d98061 2281 #define HRTIM_EECR1_EE2SNS_1 ((uint32_t)0x00000400) /*!< External event 2 sensitivity bit 1 */
MartinJohnson 0:c65854d98061 2282 #define HRTIM_EECR1_EE2FAST ((uint32_t)0x00000800) /*!< External event 2 Fast mode */
MartinJohnson 0:c65854d98061 2283
MartinJohnson 0:c65854d98061 2284 #define HRTIM_EECR1_EE3SRC ((uint32_t)0x00003000) /*!< External event 3 source */
MartinJohnson 0:c65854d98061 2285 #define HRTIM_EECR1_EE3SRC_0 ((uint32_t)0x00001000) /*!< External event 3 source bit 0 */
MartinJohnson 0:c65854d98061 2286 #define HRTIM_EECR1_EE3SRC_1 ((uint32_t)0x00002000) /*!< External event 3 source bit 1 */
MartinJohnson 0:c65854d98061 2287 #define HRTIM_EECR1_EE3POL ((uint32_t)0x00004000) /*!< External event 3 Polarity */
MartinJohnson 0:c65854d98061 2288 #define HRTIM_EECR1_EE3SNS ((uint32_t)0x00018000) /*!< External event 3 sensitivity */
MartinJohnson 0:c65854d98061 2289 #define HRTIM_EECR1_EE3SNS_0 ((uint32_t)0x00008000) /*!< External event 3 sensitivity bit 0 */
MartinJohnson 0:c65854d98061 2290 #define HRTIM_EECR1_EE3SNS_1 ((uint32_t)0x00010000) /*!< External event 3 sensitivity bit 1 */
MartinJohnson 0:c65854d98061 2291 #define HRTIM_EECR1_EE3FAST ((uint32_t)0x00020000) /*!< External event 3 Fast mode */
MartinJohnson 0:c65854d98061 2292
MartinJohnson 0:c65854d98061 2293 #define HRTIM_EECR1_EE4SRC ((uint32_t)0x000C0000) /*!< External event 4 source */
MartinJohnson 0:c65854d98061 2294 #define HRTIM_EECR1_EE4SRC_0 ((uint32_t)0x00040000) /*!< External event 4 source bit 0 */
MartinJohnson 0:c65854d98061 2295 #define HRTIM_EECR1_EE4SRC_1 ((uint32_t)0x00080000) /*!< External event 4 source bit 1 */
MartinJohnson 0:c65854d98061 2296 #define HRTIM_EECR1_EE4POL ((uint32_t)0x00100000) /*!< External event 4 Polarity */
MartinJohnson 0:c65854d98061 2297 #define HRTIM_EECR1_EE4SNS ((uint32_t)0x00600000) /*!< External event 4 sensitivity */
MartinJohnson 0:c65854d98061 2298 #define HRTIM_EECR1_EE4SNS_0 ((uint32_t)0x00200000) /*!< External event 4 sensitivity bit 0 */
MartinJohnson 0:c65854d98061 2299 #define HRTIM_EECR1_EE4SNS_1 ((uint32_t)0x00400000) /*!< External event 4 sensitivity bit 1 */
MartinJohnson 0:c65854d98061 2300 #define HRTIM_EECR1_EE4FAST ((uint32_t)0x00800000) /*!< External event 4 Fast mode */
MartinJohnson 0:c65854d98061 2301
MartinJohnson 0:c65854d98061 2302 #define HRTIM_EECR1_EE5SRC ((uint32_t)0x03000000) /*!< External event 5 source */
MartinJohnson 0:c65854d98061 2303 #define HRTIM_EECR1_EE5SRC_0 ((uint32_t)0x01000000) /*!< External event 5 source bit 0 */
MartinJohnson 0:c65854d98061 2304 #define HRTIM_EECR1_EE5SRC_1 ((uint32_t)0x02000000) /*!< External event 5 source bit 1 */
MartinJohnson 0:c65854d98061 2305 #define HRTIM_EECR1_EE5POL ((uint32_t)0x04000000) /*!< External event 5 Polarity */
MartinJohnson 0:c65854d98061 2306 #define HRTIM_EECR1_EE5SNS ((uint32_t)0x18000000) /*!< External event 5 sensitivity */
MartinJohnson 0:c65854d98061 2307 #define HRTIM_EECR1_EE5SNS_0 ((uint32_t)0x08000000) /*!< External event 5 sensitivity bit 0 */
MartinJohnson 0:c65854d98061 2308 #define HRTIM_EECR1_EE5SNS_1 ((uint32_t)0x10000000) /*!< External event 5 sensitivity bit 1 */
MartinJohnson 0:c65854d98061 2309 #define HRTIM_EECR1_EE5FAST ((uint32_t)0x20000000) /*!< External event 5 Fast mode */
MartinJohnson 0:c65854d98061 2310
MartinJohnson 0:c65854d98061 2311 /******************* Bit definition for HRTIM_EECR2 register ****************/
MartinJohnson 0:c65854d98061 2312 #define HRTIM_EECR2_EE6SRC ((uint32_t)0x00000003) /*!< External event 6 source */
MartinJohnson 0:c65854d98061 2313 #define HRTIM_EECR2_EE6SRC_0 ((uint32_t)0x00000001) /*!< External event 6 source bit 0 */
MartinJohnson 0:c65854d98061 2314 #define HRTIM_EECR2_EE6SRC_1 ((uint32_t)0x00000002) /*!< External event 6 source bit 1 */
MartinJohnson 0:c65854d98061 2315 #define HRTIM_EECR2_EE6POL ((uint32_t)0x00000004) /*!< External event 6 Polarity */
MartinJohnson 0:c65854d98061 2316 #define HRTIM_EECR2_EE6SNS ((uint32_t)0x00000018) /*!< External event 6 sensitivity */
MartinJohnson 0:c65854d98061 2317 #define HRTIM_EECR2_EE6SNS_0 ((uint32_t)0x00000008) /*!< External event 6 sensitivity bit 0 */
MartinJohnson 0:c65854d98061 2318 #define HRTIM_EECR2_EE6SNS_1 ((uint32_t)0x00000010) /*!< External event 6 sensitivity bit 1 */
MartinJohnson 0:c65854d98061 2319
MartinJohnson 0:c65854d98061 2320 #define HRTIM_EECR2_EE7SRC ((uint32_t)0x000000C0) /*!< External event 7 source */
MartinJohnson 0:c65854d98061 2321 #define HRTIM_EECR2_EE7SRC_0 ((uint32_t)0x00000040) /*!< External event 7 source bit 0 */
MartinJohnson 0:c65854d98061 2322 #define HRTIM_EECR2_EE7SRC_1 ((uint32_t)0x00000080) /*!< External event 7 source bit 1 */
MartinJohnson 0:c65854d98061 2323 #define HRTIM_EECR2_EE7POL ((uint32_t)0x00000100) /*!< External event 7 Polarity */
MartinJohnson 0:c65854d98061 2324 #define HRTIM_EECR2_EE7SNS ((uint32_t)0x00000600) /*!< External event 7 sensitivity */
MartinJohnson 0:c65854d98061 2325 #define HRTIM_EECR2_EE7SNS_0 ((uint32_t)0x00000200) /*!< External event 7 sensitivity bit 0 */
MartinJohnson 0:c65854d98061 2326 #define HRTIM_EECR2_EE7SNS_1 ((uint32_t)0x00000400) /*!< External event 7 sensitivity bit 1 */
MartinJohnson 0:c65854d98061 2327
MartinJohnson 0:c65854d98061 2328 #define HRTIM_EECR2_EE8SRC ((uint32_t)0x00003000) /*!< External event 8 source */
MartinJohnson 0:c65854d98061 2329 #define HRTIM_EECR2_EE8SRC_0 ((uint32_t)0x00001000) /*!< External event 8 source bit 0 */
MartinJohnson 0:c65854d98061 2330 #define HRTIM_EECR2_EE8SRC_1 ((uint32_t)0x00002000) /*!< External event 8 source bit 1 */
MartinJohnson 0:c65854d98061 2331 #define HRTIM_EECR2_EE8POL ((uint32_t)0x00004000) /*!< External event 8 Polarity */
MartinJohnson 0:c65854d98061 2332 #define HRTIM_EECR2_EE8SNS ((uint32_t)0x00018000) /*!< External event 8 sensitivity */
MartinJohnson 0:c65854d98061 2333 #define HRTIM_EECR2_EE8SNS_0 ((uint32_t)0x00008000) /*!< External event 8 sensitivity bit 0 */
MartinJohnson 0:c65854d98061 2334 #define HRTIM_EECR2_EE8SNS_1 ((uint32_t)0x00010000) /*!< External event 8 sensitivity bit 1 */
MartinJohnson 0:c65854d98061 2335
MartinJohnson 0:c65854d98061 2336 #define HRTIM_EECR2_EE9SRC ((uint32_t)0x000C0000) /*!< External event 9 source */
MartinJohnson 0:c65854d98061 2337 #define HRTIM_EECR2_EE9SRC_0 ((uint32_t)0x00040000) /*!< External event 9 source bit 0 */
MartinJohnson 0:c65854d98061 2338 #define HRTIM_EECR2_EE9SRC_1 ((uint32_t)0x00080000) /*!< External event 9 source bit 1 */
MartinJohnson 0:c65854d98061 2339 #define HRTIM_EECR2_EE9POL ((uint32_t)0x00100000) /*!< External event 9 Polarity */
MartinJohnson 0:c65854d98061 2340 #define HRTIM_EECR2_EE9SNS ((uint32_t)0x00600000) /*!< External event 9 sensitivity */
MartinJohnson 0:c65854d98061 2341 #define HRTIM_EECR2_EE9SNS_0 ((uint32_t)0x00200000) /*!< External event 9 sensitivity bit 0 */
MartinJohnson 0:c65854d98061 2342 #define HRTIM_EECR2_EE9SNS_1 ((uint32_t)0x00400000) /*!< External event 9 sensitivity bit 1 */
MartinJohnson 0:c65854d98061 2343
MartinJohnson 0:c65854d98061 2344 #define HRTIM_EECR2_EE10SRC ((uint32_t)0x03000000) /*!< External event 10 source */
MartinJohnson 0:c65854d98061 2345 #define HRTIM_EECR2_EE10SRC_0 ((uint32_t)0x01000000) /*!< External event 10 source bit 0 */
MartinJohnson 0:c65854d98061 2346 #define HRTIM_EECR2_EE10SRC_1 ((uint32_t)0x02000000) /*!< External event 10 source bit 1 */
MartinJohnson 0:c65854d98061 2347 #define HRTIM_EECR2_EE10POL ((uint32_t)0x04000000) /*!< External event 10 Polarity */
MartinJohnson 0:c65854d98061 2348 #define HRTIM_EECR2_EE10SNS ((uint32_t)0x18000000) /*!< External event 10 sensitivity */
MartinJohnson 0:c65854d98061 2349 #define HRTIM_EECR2_EE10SNS_0 ((uint32_t)0x08000000) /*!< External event 10 sensitivity bit 0 */
MartinJohnson 0:c65854d98061 2350 #define HRTIM_EECR2_EE10SNS_1 ((uint32_t)0x10000000) /*!< External event 10 sensitivity bit 1 */
MartinJohnson 0:c65854d98061 2351
MartinJohnson 0:c65854d98061 2352 /******************* Bit definition for HRTIM_EECR3 register ****************/
MartinJohnson 0:c65854d98061 2353 #define HRTIM_EECR3_EE6F ((uint32_t)0x0000000F) /*!< External event 6 filter */
MartinJohnson 0:c65854d98061 2354 #define HRTIM_EECR3_EE6F_0 ((uint32_t)0x00000001) /*!< External event 6 filter bit 0 */
MartinJohnson 0:c65854d98061 2355 #define HRTIM_EECR3_EE6F_1 ((uint32_t)0x00000002) /*!< External event 6 filter bit 1 */
MartinJohnson 0:c65854d98061 2356 #define HRTIM_EECR3_EE6F_2 ((uint32_t)0x00000004) /*!< External event 6 filter bit 2 */
MartinJohnson 0:c65854d98061 2357 #define HRTIM_EECR3_EE6F_3 ((uint32_t)0x00000008) /*!< External event 6 filter bit 3 */
MartinJohnson 0:c65854d98061 2358 #define HRTIM_EECR3_EE7F ((uint32_t)0x000003C0) /*!< External event 7 filter */
MartinJohnson 0:c65854d98061 2359 #define HRTIM_EECR3_EE7F_0 ((uint32_t)0x00000040) /*!< External event 7 filter bit 0 */
MartinJohnson 0:c65854d98061 2360 #define HRTIM_EECR3_EE7F_1 ((uint32_t)0x00000080) /*!< External event 7 filter bit 1 */
MartinJohnson 0:c65854d98061 2361 #define HRTIM_EECR3_EE7F_2 ((uint32_t)0x00000100) /*!< External event 7 filter bit 2 */
MartinJohnson 0:c65854d98061 2362 #define HRTIM_EECR3_EE7F_3 ((uint32_t)0x00000200) /*!< External event 7 filter bit 3 */
MartinJohnson 0:c65854d98061 2363 #define HRTIM_EECR3_EE8F ((uint32_t)0x0000F000) /*!< External event 8 filter */
MartinJohnson 0:c65854d98061 2364 #define HRTIM_EECR3_EE8F_0 ((uint32_t)0x00001000) /*!< External event 8 filter bit 0 */
MartinJohnson 0:c65854d98061 2365 #define HRTIM_EECR3_EE8F_1 ((uint32_t)0x00002000) /*!< External event 8 filter bit 1 */
MartinJohnson 0:c65854d98061 2366 #define HRTIM_EECR3_EE8F_2 ((uint32_t)0x00004000) /*!< External event 8 filter bit 2 */
MartinJohnson 0:c65854d98061 2367 #define HRTIM_EECR3_EE8F_3 ((uint32_t)0x00008000) /*!< External event 8 filter bit 3 */
MartinJohnson 0:c65854d98061 2368 #define HRTIM_EECR3_EE9F ((uint32_t)0x003C0000) /*!< External event 9 filter */
MartinJohnson 0:c65854d98061 2369 #define HRTIM_EECR3_EE9F_0 ((uint32_t)0x00040000) /*!< External event 9 filter bit 0 */
MartinJohnson 0:c65854d98061 2370 #define HRTIM_EECR3_EE9F_1 ((uint32_t)0x00080000) /*!< External event 9 filter bit 1 */
MartinJohnson 0:c65854d98061 2371 #define HRTIM_EECR3_EE9F_2 ((uint32_t)0x00100000) /*!< External event 9 filter bit 2 */
MartinJohnson 0:c65854d98061 2372 #define HRTIM_EECR3_EE9F_3 ((uint32_t)0x00200000) /*!< External event 9 filter bit 3 */
MartinJohnson 0:c65854d98061 2373 #define HRTIM_EECR3_EE10F ((uint32_t)0x0F000000) /*!< External event 10 filter */
MartinJohnson 0:c65854d98061 2374 #define HRTIM_EECR3_EE10F_0 ((uint32_t)0x01000000) /*!< External event 10 filter bit 0 */
MartinJohnson 0:c65854d98061 2375 #define HRTIM_EECR3_EE10F_1 ((uint32_t)0x02000000) /*!< External event 10 filter bit 1 */
MartinJohnson 0:c65854d98061 2376 #define HRTIM_EECR3_EE10F_2 ((uint32_t)0x04000000) /*!< External event 10 filter bit 2 */
MartinJohnson 0:c65854d98061 2377 #define HRTIM_EECR3_EE10F_3 ((uint32_t)0x08000000) /*!< External event 10 filter bit 3 */
MartinJohnson 0:c65854d98061 2378 #define HRTIM_EECR3_EEVSD ((uint32_t)0xC0000000) /*!< External event sampling clock division */
MartinJohnson 0:c65854d98061 2379 #define HRTIM_EECR3_EEVSD_0 ((uint32_t)0x40000000) /*!< External event sampling clock division bit 0 */
MartinJohnson 0:c65854d98061 2380 #define HRTIM_EECR3_EEVSD_1 ((uint32_t)0x80000000) /*!< External event sampling clock division bit 1 */
MartinJohnson 0:c65854d98061 2381
MartinJohnson 0:c65854d98061 2382 /******************* Bit definition for HRTIM_ADC1R register ****************/
MartinJohnson 0:c65854d98061 2383 #define HRTIM_ADC1R_AD1MC1 ((uint32_t)0x00000001) /*!< ADC Trigger 1 on master compare 1 */
MartinJohnson 0:c65854d98061 2384 #define HRTIM_ADC1R_AD1MC2 ((uint32_t)0x00000002) /*!< ADC Trigger 1 on master compare 2 */
MartinJohnson 0:c65854d98061 2385 #define HRTIM_ADC1R_AD1MC3 ((uint32_t)0x00000004) /*!< ADC Trigger 1 on master compare 3 */
MartinJohnson 0:c65854d98061 2386 #define HRTIM_ADC1R_AD1MC4 ((uint32_t)0x00000008) /*!< ADC Trigger 1 on master compare 4 */
MartinJohnson 0:c65854d98061 2387 #define HRTIM_ADC1R_AD1MPER ((uint32_t)0x00000010) /*!< ADC Trigger 1 on master period */
MartinJohnson 0:c65854d98061 2388 #define HRTIM_ADC1R_AD1EEV1 ((uint32_t)0x00000020) /*!< ADC Trigger 1 on external event 1 */
MartinJohnson 0:c65854d98061 2389 #define HRTIM_ADC1R_AD1EEV2 ((uint32_t)0x00000040) /*!< ADC Trigger 1 on external event 2 */
MartinJohnson 0:c65854d98061 2390 #define HRTIM_ADC1R_AD1EEV3 ((uint32_t)0x00000080) /*!< ADC Trigger 1 on external event 3 */
MartinJohnson 0:c65854d98061 2391 #define HRTIM_ADC1R_AD1EEV4 ((uint32_t)0x00000100) /*!< ADC Trigger 1 on external event 4 */
MartinJohnson 0:c65854d98061 2392 #define HRTIM_ADC1R_AD1EEV5 ((uint32_t)0x00000200) /*!< ADC Trigger 1 on external event 5 */
MartinJohnson 0:c65854d98061 2393 #define HRTIM_ADC1R_AD1TAC2 ((uint32_t)0x00000400) /*!< ADC Trigger 1 on Timer A compare 2 */
MartinJohnson 0:c65854d98061 2394 #define HRTIM_ADC1R_AD1TAC3 ((uint32_t)0x00000800) /*!< ADC Trigger 1 on Timer A compare 3 */
MartinJohnson 0:c65854d98061 2395 #define HRTIM_ADC1R_AD1TAC4 ((uint32_t)0x00001000) /*!< ADC Trigger 1 on Timer A compare 4 */
MartinJohnson 0:c65854d98061 2396 #define HRTIM_ADC1R_AD1TAPER ((uint32_t)0x00002000) /*!< ADC Trigger 1 on Timer A period */
MartinJohnson 0:c65854d98061 2397 #define HRTIM_ADC1R_AD1TARST ((uint32_t)0x00004000) /*!< ADC Trigger 1 on Timer A reset */
MartinJohnson 0:c65854d98061 2398 #define HRTIM_ADC1R_AD1TBC2 ((uint32_t)0x00008000) /*!< ADC Trigger 1 on Timer B compare 2 */
MartinJohnson 0:c65854d98061 2399 #define HRTIM_ADC1R_AD1TBC3 ((uint32_t)0x00010000) /*!< ADC Trigger 1 on Timer B compare 3 */
MartinJohnson 0:c65854d98061 2400 #define HRTIM_ADC1R_AD1TBC4 ((uint32_t)0x00020000) /*!< ADC Trigger 1 on Timer B compare 4 */
MartinJohnson 0:c65854d98061 2401 #define HRTIM_ADC1R_AD1TBPER ((uint32_t)0x00040000) /*!< ADC Trigger 1 on Timer B period */
MartinJohnson 0:c65854d98061 2402 #define HRTIM_ADC1R_AD1TBRST ((uint32_t)0x00080000) /*!< ADC Trigger 1 on Timer B reset */
MartinJohnson 0:c65854d98061 2403 #define HRTIM_ADC1R_AD1TCC2 ((uint32_t)0x00100000) /*!< ADC Trigger 1 on Timer C compare 2 */
MartinJohnson 0:c65854d98061 2404 #define HRTIM_ADC1R_AD1TCC3 ((uint32_t)0x00200000) /*!< ADC Trigger 1 on Timer C compare 3 */
MartinJohnson 0:c65854d98061 2405 #define HRTIM_ADC1R_AD1TCC4 ((uint32_t)0x00400000) /*!< ADC Trigger 1 on Timer C compare 4 */
MartinJohnson 0:c65854d98061 2406 #define HRTIM_ADC1R_AD1TCPER ((uint32_t)0x00800000) /*!< ADC Trigger 1 on Timer C period */
MartinJohnson 0:c65854d98061 2407 #define HRTIM_ADC1R_AD1TDC2 ((uint32_t)0x01000000) /*!< ADC Trigger 1 on Timer D compare 2 */
MartinJohnson 0:c65854d98061 2408 #define HRTIM_ADC1R_AD1TDC3 ((uint32_t)0x02000000) /*!< ADC Trigger 1 on Timer D compare 3 */
MartinJohnson 0:c65854d98061 2409 #define HRTIM_ADC1R_AD1TDC4 ((uint32_t)0x04000000) /*!< ADC Trigger 1 on Timer D compare 4 */
MartinJohnson 0:c65854d98061 2410 #define HRTIM_ADC1R_AD1TDPER ((uint32_t)0x08000000) /*!< ADC Trigger 1 on Timer D period */
MartinJohnson 0:c65854d98061 2411 #define HRTIM_ADC1R_AD1TEC2 ((uint32_t)0x10000000) /*!< ADC Trigger 1 on Timer E compare 2 */
MartinJohnson 0:c65854d98061 2412 #define HRTIM_ADC1R_AD1TEC3 ((uint32_t)0x20000000) /*!< ADC Trigger 1 on Timer E compare 3 */
MartinJohnson 0:c65854d98061 2413 #define HRTIM_ADC1R_AD1TEC4 ((uint32_t)0x40000000) /*!< ADC Trigger 1 on Timer E compare 4 */
MartinJohnson 0:c65854d98061 2414 #define HRTIM_ADC1R_AD1TEPER ((uint32_t)0x80000000) /*!< ADC Trigger 1 on Timer E period */
MartinJohnson 0:c65854d98061 2415
MartinJohnson 0:c65854d98061 2416 /******************* Bit definition for HRTIM_ADC2R register ****************/
MartinJohnson 0:c65854d98061 2417 #define HRTIM_ADC2R_AD2MC1 ((uint32_t)0x00000001) /*!< ADC Trigger 2 on master compare 1 */
MartinJohnson 0:c65854d98061 2418 #define HRTIM_ADC2R_AD2MC2 ((uint32_t)0x00000002) /*!< ADC Trigger 2 on master compare 2 */
MartinJohnson 0:c65854d98061 2419 #define HRTIM_ADC2R_AD2MC3 ((uint32_t)0x00000004) /*!< ADC Trigger 2 on master compare 3 */
MartinJohnson 0:c65854d98061 2420 #define HRTIM_ADC2R_AD2MC4 ((uint32_t)0x00000008) /*!< ADC Trigger 2 on master compare 4 */
MartinJohnson 0:c65854d98061 2421 #define HRTIM_ADC2R_AD2MPER ((uint32_t)0x00000010) /*!< ADC Trigger 2 on master period */
MartinJohnson 0:c65854d98061 2422 #define HRTIM_ADC2R_AD2EEV6 ((uint32_t)0x00000020) /*!< ADC Trigger 2 on external event 6 */
MartinJohnson 0:c65854d98061 2423 #define HRTIM_ADC2R_AD2EEV7 ((uint32_t)0x00000040) /*!< ADC Trigger 2 on external event 7 */
MartinJohnson 0:c65854d98061 2424 #define HRTIM_ADC2R_AD2EEV8 ((uint32_t)0x00000080) /*!< ADC Trigger 2 on external event 8 */
MartinJohnson 0:c65854d98061 2425 #define HRTIM_ADC2R_AD2EEV9 ((uint32_t)0x00000100) /*!< ADC Trigger 2 on external event 9 */
MartinJohnson 0:c65854d98061 2426 #define HRTIM_ADC2R_AD2EEV10 ((uint32_t)0x00000200) /*!< ADC Trigger 2 on external event 10 */
MartinJohnson 0:c65854d98061 2427 #define HRTIM_ADC2R_AD2TAC2 ((uint32_t)0x00000400) /*!< ADC Trigger 2 on Timer A compare 2 */
MartinJohnson 0:c65854d98061 2428 #define HRTIM_ADC2R_AD2TAC3 ((uint32_t)0x00000800) /*!< ADC Trigger 2 on Timer A compare 3 */
MartinJohnson 0:c65854d98061 2429 #define HRTIM_ADC2R_AD2TAC4 ((uint32_t)0x00001000) /*!< ADC Trigger 2 on Timer A compare 4*/
MartinJohnson 0:c65854d98061 2430 #define HRTIM_ADC2R_AD2TAPER ((uint32_t)0x00002000) /*!< ADC Trigger 2 on Timer A period */
MartinJohnson 0:c65854d98061 2431 #define HRTIM_ADC2R_AD2TBC2 ((uint32_t)0x00004000) /*!< ADC Trigger 2 on Timer B compare 2 */
MartinJohnson 0:c65854d98061 2432 #define HRTIM_ADC2R_AD2TBC3 ((uint32_t)0x00008000) /*!< ADC Trigger 2 on Timer B compare 3 */
MartinJohnson 0:c65854d98061 2433 #define HRTIM_ADC2R_AD2TBC4 ((uint32_t)0x00010000) /*!< ADC Trigger 2 on Timer B compare 4 */
MartinJohnson 0:c65854d98061 2434 #define HRTIM_ADC2R_AD2TBPER ((uint32_t)0x00020000) /*!< ADC Trigger 2 on Timer B period */
MartinJohnson 0:c65854d98061 2435 #define HRTIM_ADC2R_AD2TCC2 ((uint32_t)0x00040000) /*!< ADC Trigger 2 on Timer C compare 2 */
MartinJohnson 0:c65854d98061 2436 #define HRTIM_ADC2R_AD2TCC3 ((uint32_t)0x00080000) /*!< ADC Trigger 2 on Timer C compare 3 */
MartinJohnson 0:c65854d98061 2437 #define HRTIM_ADC2R_AD2TCC4 ((uint32_t)0x00100000) /*!< ADC Trigger 2 on Timer C compare 4 */
MartinJohnson 0:c65854d98061 2438 #define HRTIM_ADC2R_AD2TCPER ((uint32_t)0x00200000) /*!< ADC Trigger 2 on Timer C period */
MartinJohnson 0:c65854d98061 2439 #define HRTIM_ADC2R_AD2TCRST ((uint32_t)0x00400000) /*!< ADC Trigger 2 on Timer C reset */
MartinJohnson 0:c65854d98061 2440 #define HRTIM_ADC2R_AD2TDC2 ((uint32_t)0x00800000) /*!< ADC Trigger 2 on Timer D compare 2 */
MartinJohnson 0:c65854d98061 2441 #define HRTIM_ADC2R_AD2TDC3 ((uint32_t)0x01000000) /*!< ADC Trigger 2 on Timer D compare 3 */
MartinJohnson 0:c65854d98061 2442 #define HRTIM_ADC2R_AD2TDC4 ((uint32_t)0x02000000) /*!< ADC Trigger 2 on Timer D compare 4*/
MartinJohnson 0:c65854d98061 2443 #define HRTIM_ADC2R_AD2TDPER ((uint32_t)0x04000000) /*!< ADC Trigger 2 on Timer D period */
MartinJohnson 0:c65854d98061 2444 #define HRTIM_ADC2R_AD2TDRST ((uint32_t)0x08000000) /*!< ADC Trigger 2 on Timer D reset */
MartinJohnson 0:c65854d98061 2445 #define HRTIM_ADC2R_AD2TEC2 ((uint32_t)0x10000000) /*!< ADC Trigger 2 on Timer E compare 2 */
MartinJohnson 0:c65854d98061 2446 #define HRTIM_ADC2R_AD2TEC3 ((uint32_t)0x20000000) /*!< ADC Trigger 2 on Timer E compare 3 */
MartinJohnson 0:c65854d98061 2447 #define HRTIM_ADC2R_AD2TEC4 ((uint32_t)0x40000000) /*!< ADC Trigger 2 on Timer E compare 4 */
MartinJohnson 0:c65854d98061 2448 #define HRTIM_ADC2R_AD2TERST ((uint32_t)0x80000000) /*!< ADC Trigger 2 on Timer E reset */
MartinJohnson 0:c65854d98061 2449
MartinJohnson 0:c65854d98061 2450 /******************* Bit definition for HRTIM_ADC3R register ****************/
MartinJohnson 0:c65854d98061 2451 #define HRTIM_ADC3R_AD3MC1 ((uint32_t)0x00000001) /*!< ADC Trigger 3 on master compare 1 */
MartinJohnson 0:c65854d98061 2452 #define HRTIM_ADC3R_AD3MC2 ((uint32_t)0x00000002) /*!< ADC Trigger 3 on master compare 2 */
MartinJohnson 0:c65854d98061 2453 #define HRTIM_ADC3R_AD3MC3 ((uint32_t)0x00000004) /*!< ADC Trigger 3 on master compare 3 */
MartinJohnson 0:c65854d98061 2454 #define HRTIM_ADC3R_AD3MC4 ((uint32_t)0x00000008) /*!< ADC Trigger 3 on master compare 4 */
MartinJohnson 0:c65854d98061 2455 #define HRTIM_ADC3R_AD3MPER ((uint32_t)0x00000010) /*!< ADC Trigger 3 on master period */
MartinJohnson 0:c65854d98061 2456 #define HRTIM_ADC3R_AD3EEV1 ((uint32_t)0x00000020) /*!< ADC Trigger 3 on external event 1 */
MartinJohnson 0:c65854d98061 2457 #define HRTIM_ADC3R_AD3EEV2 ((uint32_t)0x00000040) /*!< ADC Trigger 3 on external event 2 */
MartinJohnson 0:c65854d98061 2458 #define HRTIM_ADC3R_AD3EEV3 ((uint32_t)0x00000080) /*!< ADC Trigger 3 on external event 3 */
MartinJohnson 0:c65854d98061 2459 #define HRTIM_ADC3R_AD3EEV4 ((uint32_t)0x00000100) /*!< ADC Trigger 3 on external event 4 */
MartinJohnson 0:c65854d98061 2460 #define HRTIM_ADC3R_AD3EEV5 ((uint32_t)0x00000200) /*!< ADC Trigger 3 on external event 5 */
MartinJohnson 0:c65854d98061 2461 #define HRTIM_ADC3R_AD3TAC2 ((uint32_t)0x00000400) /*!< ADC Trigger 3 on Timer A compare 2 */
MartinJohnson 0:c65854d98061 2462 #define HRTIM_ADC3R_AD3TAC3 ((uint32_t)0x00000800) /*!< ADC Trigger 3 on Timer A compare 3 */
MartinJohnson 0:c65854d98061 2463 #define HRTIM_ADC3R_AD3TAC4 ((uint32_t)0x00001000) /*!< ADC Trigger 3 on Timer A compare 4 */
MartinJohnson 0:c65854d98061 2464 #define HRTIM_ADC3R_AD3TAPER ((uint32_t)0x00002000) /*!< ADC Trigger 3 on Timer A period */
MartinJohnson 0:c65854d98061 2465 #define HRTIM_ADC3R_AD3TARST ((uint32_t)0x00004000) /*!< ADC Trigger 3 on Timer A reset */
MartinJohnson 0:c65854d98061 2466 #define HRTIM_ADC3R_AD3TBC2 ((uint32_t)0x00008000) /*!< ADC Trigger 3 on Timer B compare 2 */
MartinJohnson 0:c65854d98061 2467 #define HRTIM_ADC3R_AD3TBC3 ((uint32_t)0x00010000) /*!< ADC Trigger 3 on Timer B compare 3 */
MartinJohnson 0:c65854d98061 2468 #define HRTIM_ADC3R_AD3TBC4 ((uint32_t)0x00020000) /*!< ADC Trigger 3 on Timer B compare 4 */
MartinJohnson 0:c65854d98061 2469 #define HRTIM_ADC3R_AD3TBPER ((uint32_t)0x00040000) /*!< ADC Trigger 3 on Timer B period */
MartinJohnson 0:c65854d98061 2470 #define HRTIM_ADC3R_AD3TBRST ((uint32_t)0x00080000) /*!< ADC Trigger 3 on Timer B reset */
MartinJohnson 0:c65854d98061 2471 #define HRTIM_ADC3R_AD3TCC2 ((uint32_t)0x00100000) /*!< ADC Trigger 3 on Timer C compare 2 */
MartinJohnson 0:c65854d98061 2472 #define HRTIM_ADC3R_AD3TCC3 ((uint32_t)0x00200000) /*!< ADC Trigger 3 on Timer C compare 3 */
MartinJohnson 0:c65854d98061 2473 #define HRTIM_ADC3R_AD3TCC4 ((uint32_t)0x00400000) /*!< ADC Trigger 3 on Timer C compare 4 */
MartinJohnson 0:c65854d98061 2474 #define HRTIM_ADC3R_AD3TCPER ((uint32_t)0x00800000) /*!< ADC Trigger 3 on Timer C period */
MartinJohnson 0:c65854d98061 2475 #define HRTIM_ADC3R_AD3TDC2 ((uint32_t)0x01000000) /*!< ADC Trigger 3 on Timer D compare 2 */
MartinJohnson 0:c65854d98061 2476 #define HRTIM_ADC3R_AD3TDC3 ((uint32_t)0x02000000) /*!< ADC Trigger 3 on Timer D compare 3 */
MartinJohnson 0:c65854d98061 2477 #define HRTIM_ADC3R_AD3TDC4 ((uint32_t)0x04000000) /*!< ADC Trigger 3 on Timer D compare 4 */
MartinJohnson 0:c65854d98061 2478 #define HRTIM_ADC3R_AD3TDPER ((uint32_t)0x08000000) /*!< ADC Trigger 3 on Timer D period */
MartinJohnson 0:c65854d98061 2479 #define HRTIM_ADC3R_AD3TEC2 ((uint32_t)0x10000000) /*!< ADC Trigger 3 on Timer E compare 2 */
MartinJohnson 0:c65854d98061 2480 #define HRTIM_ADC3R_AD3TEC3 ((uint32_t)0x20000000) /*!< ADC Trigger 3 on Timer E compare 3 */
MartinJohnson 0:c65854d98061 2481 #define HRTIM_ADC3R_AD3TEC4 ((uint32_t)0x40000000) /*!< ADC Trigger 3 on Timer E compare 4 */
MartinJohnson 0:c65854d98061 2482 #define HRTIM_ADC3R_AD3TEPER ((uint32_t)0x80000000) /*!< ADC Trigger 3 on Timer E period */
MartinJohnson 0:c65854d98061 2483
MartinJohnson 0:c65854d98061 2484 /******************* Bit definition for HRTIM_ADC4R register ****************/
MartinJohnson 0:c65854d98061 2485 #define HRTIM_ADC4R_AD4MC1 ((uint32_t)0x00000001) /*!< ADC Trigger 4 on master compare 1 */
MartinJohnson 0:c65854d98061 2486 #define HRTIM_ADC4R_AD4MC2 ((uint32_t)0x00000002) /*!< ADC Trigger 4 on master compare 2 */
MartinJohnson 0:c65854d98061 2487 #define HRTIM_ADC4R_AD4MC3 ((uint32_t)0x00000004) /*!< ADC Trigger 4 on master compare 3 */
MartinJohnson 0:c65854d98061 2488 #define HRTIM_ADC4R_AD4MC4 ((uint32_t)0x00000008) /*!< ADC Trigger 4 on master compare 4 */
MartinJohnson 0:c65854d98061 2489 #define HRTIM_ADC4R_AD4MPER ((uint32_t)0x00000010) /*!< ADC Trigger 4 on master period */
MartinJohnson 0:c65854d98061 2490 #define HRTIM_ADC4R_AD4EEV6 ((uint32_t)0x00000020) /*!< ADC Trigger 4 on external event 6 */
MartinJohnson 0:c65854d98061 2491 #define HRTIM_ADC4R_AD4EEV7 ((uint32_t)0x00000040) /*!< ADC Trigger 4 on external event 7 */
MartinJohnson 0:c65854d98061 2492 #define HRTIM_ADC4R_AD4EEV8 ((uint32_t)0x00000080) /*!< ADC Trigger 4 on external event 8 */
MartinJohnson 0:c65854d98061 2493 #define HRTIM_ADC4R_AD4EEV9 ((uint32_t)0x00000100) /*!< ADC Trigger 4 on external event 9 */
MartinJohnson 0:c65854d98061 2494 #define HRTIM_ADC4R_AD4EEV10 ((uint32_t)0x00000200) /*!< ADC Trigger 4 on external event 10 */
MartinJohnson 0:c65854d98061 2495 #define HRTIM_ADC4R_AD4TAC2 ((uint32_t)0x00000400) /*!< ADC Trigger 4 on Timer A compare 2 */
MartinJohnson 0:c65854d98061 2496 #define HRTIM_ADC4R_AD4TAC3 ((uint32_t)0x00000800) /*!< ADC Trigger 4 on Timer A compare 3 */
MartinJohnson 0:c65854d98061 2497 #define HRTIM_ADC4R_AD4TAC4 ((uint32_t)0x00001000) /*!< ADC Trigger 4 on Timer A compare 4*/
MartinJohnson 0:c65854d98061 2498 #define HRTIM_ADC4R_AD4TAPER ((uint32_t)0x00002000) /*!< ADC Trigger 4 on Timer A period */
MartinJohnson 0:c65854d98061 2499 #define HRTIM_ADC4R_AD4TBC2 ((uint32_t)0x00004000) /*!< ADC Trigger 4 on Timer B compare 2 */
MartinJohnson 0:c65854d98061 2500 #define HRTIM_ADC4R_AD4TBC3 ((uint32_t)0x00008000) /*!< ADC Trigger 4 on Timer B compare 3 */
MartinJohnson 0:c65854d98061 2501 #define HRTIM_ADC4R_AD4TBC4 ((uint32_t)0x00010000) /*!< ADC Trigger 4 on Timer B compare 4 */
MartinJohnson 0:c65854d98061 2502 #define HRTIM_ADC4R_AD4TBPER ((uint32_t)0x00020000) /*!< ADC Trigger 4 on Timer B period */
MartinJohnson 0:c65854d98061 2503 #define HRTIM_ADC4R_AD4TCC2 ((uint32_t)0x00040000) /*!< ADC Trigger 4 on Timer C compare 2 */
MartinJohnson 0:c65854d98061 2504 #define HRTIM_ADC4R_AD4TCC3 ((uint32_t)0x00080000) /*!< ADC Trigger 4 on Timer C compare 3 */
MartinJohnson 0:c65854d98061 2505 #define HRTIM_ADC4R_AD4TCC4 ((uint32_t)0x00100000) /*!< ADC Trigger 4 on Timer C compare 4 */
MartinJohnson 0:c65854d98061 2506 #define HRTIM_ADC4R_AD4TCPER ((uint32_t)0x00200000) /*!< ADC Trigger 4 on Timer C period */
MartinJohnson 0:c65854d98061 2507 #define HRTIM_ADC4R_AD4TCRST ((uint32_t)0x00400000) /*!< ADC Trigger 4 on Timer C reset */
MartinJohnson 0:c65854d98061 2508 #define HRTIM_ADC4R_AD4TDC2 ((uint32_t)0x00800000) /*!< ADC Trigger 4 on Timer D compare 2 */
MartinJohnson 0:c65854d98061 2509 #define HRTIM_ADC4R_AD4TDC3 ((uint32_t)0x01000000) /*!< ADC Trigger 4 on Timer D compare 3 */
MartinJohnson 0:c65854d98061 2510 #define HRTIM_ADC4R_AD4TDC4 ((uint32_t)0x02000000) /*!< ADC Trigger 4 on Timer D compare 4*/
MartinJohnson 0:c65854d98061 2511 #define HRTIM_ADC4R_AD4TDPER ((uint32_t)0x04000000) /*!< ADC Trigger 4 on Timer D period */
MartinJohnson 0:c65854d98061 2512 #define HRTIM_ADC4R_AD4TDRST ((uint32_t)0x08000000) /*!< ADC Trigger 4 on Timer D reset */
MartinJohnson 0:c65854d98061 2513 #define HRTIM_ADC4R_AD4TEC2 ((uint32_t)0x10000000) /*!< ADC Trigger 4 on Timer E compare 2 */
MartinJohnson 0:c65854d98061 2514 #define HRTIM_ADC4R_AD4TEC3 ((uint32_t)0x20000000) /*!< ADC Trigger 4 on Timer E compare 3 */
MartinJohnson 0:c65854d98061 2515 #define HRTIM_ADC4R_AD4TEC4 ((uint32_t)0x40000000) /*!< ADC Trigger 4 on Timer E compare 4 */
MartinJohnson 0:c65854d98061 2516 #define HRTIM_ADC4R_AD4TERST ((uint32_t)0x80000000) /*!< ADC Trigger 4 on Timer E reset */
MartinJohnson 0:c65854d98061 2517
MartinJohnson 0:c65854d98061 2518 /******************* Bit definition for HRTIM_DLLCR register ****************/
MartinJohnson 0:c65854d98061 2519 #define HRTIM_DLLCR_CAL ((uint32_t)0x00000001) /*!< DLL calibration start */
MartinJohnson 0:c65854d98061 2520 #define HRTIM_DLLCR_CALEN ((uint32_t)0x00000002) /*!< DLL calibration enable */
MartinJohnson 0:c65854d98061 2521 #define HRTIM_DLLCR_CALRTE ((uint32_t)0x0000000C) /*!< DLL calibration rate */
MartinJohnson 0:c65854d98061 2522 #define HRTIM_DLLCR_CALRTE_0 ((uint32_t)0x00000004) /*!< DLL calibration rate bit 0 */
MartinJohnson 0:c65854d98061 2523 #define HRTIM_DLLCR_CALRTE_1 ((uint32_t)0x00000008) /*!< DLL calibration rate bit 1 */
MartinJohnson 0:c65854d98061 2524
MartinJohnson 0:c65854d98061 2525 /******************* Bit definition for HRTIM_FLTINR1 register ***************/
MartinJohnson 0:c65854d98061 2526 #define HRTIM_FLTINR1_FLT1E ((uint32_t)0x00000001) /*!< Fault 1 enable */
MartinJohnson 0:c65854d98061 2527 #define HRTIM_FLTINR1_FLT1P ((uint32_t)0x00000002) /*!< Fault 1 polarity */
MartinJohnson 0:c65854d98061 2528 #define HRTIM_FLTINR1_FLT1SRC ((uint32_t)0x00000004) /*!< Fault 1 source */
MartinJohnson 0:c65854d98061 2529 #define HRTIM_FLTINR1_FLT1F ((uint32_t)0x00000078) /*!< Fault 1 filter */
MartinJohnson 0:c65854d98061 2530 #define HRTIM_FLTINR1_FLT1F_0 ((uint32_t)0x00000008) /*!< Fault 1 filter bit 0 */
MartinJohnson 0:c65854d98061 2531 #define HRTIM_FLTINR1_FLT1F_1 ((uint32_t)0x00000010) /*!< Fault 1 filter bit 1 */
MartinJohnson 0:c65854d98061 2532 #define HRTIM_FLTINR1_FLT1F_2 ((uint32_t)0x00000020) /*!< Fault 1 filter bit 2 */
MartinJohnson 0:c65854d98061 2533 #define HRTIM_FLTINR1_FLT1F_3 ((uint32_t)0x00000040) /*!< Fault 1 filter bit 3 */
MartinJohnson 0:c65854d98061 2534 #define HRTIM_FLTINR1_FLT1LCK ((uint32_t)0x00000080) /*!< Fault 1 lock */
MartinJohnson 0:c65854d98061 2535
MartinJohnson 0:c65854d98061 2536 #define HRTIM_FLTINR1_FLT2E ((uint32_t)0x00000100) /*!< Fault 2 enable */
MartinJohnson 0:c65854d98061 2537 #define HRTIM_FLTINR1_FLT2P ((uint32_t)0x00000200) /*!< Fault 2 polarity */
MartinJohnson 0:c65854d98061 2538 #define HRTIM_FLTINR1_FLT2SRC ((uint32_t)0x00000400) /*!< Fault 2 source */
MartinJohnson 0:c65854d98061 2539 #define HRTIM_FLTINR1_FLT2F ((uint32_t)0x00007800) /*!< Fault 2 filter */
MartinJohnson 0:c65854d98061 2540 #define HRTIM_FLTINR1_FLT2F_0 ((uint32_t)0x00000800) /*!< Fault 2 filter bit 0 */
MartinJohnson 0:c65854d98061 2541 #define HRTIM_FLTINR1_FLT2F_1 ((uint32_t)0x00001000) /*!< Fault 2 filter bit 1 */
MartinJohnson 0:c65854d98061 2542 #define HRTIM_FLTINR1_FLT2F_2 ((uint32_t)0x00002000) /*!< Fault 2 filter bit 2 */
MartinJohnson 0:c65854d98061 2543 #define HRTIM_FLTINR1_FLT2F_3 ((uint32_t)0x00004000) /*!< Fault 2 filter bit 3 */
MartinJohnson 0:c65854d98061 2544 #define HRTIM_FLTINR1_FLT2LCK ((uint32_t)0x00008000) /*!< Fault 2 lock */
MartinJohnson 0:c65854d98061 2545
MartinJohnson 0:c65854d98061 2546 #define HRTIM_FLTINR1_FLT3E ((uint32_t)0x00010000) /*!< Fault 3 enable */
MartinJohnson 0:c65854d98061 2547 #define HRTIM_FLTINR1_FLT3P ((uint32_t)0x00020000) /*!< Fault 3 polarity */
MartinJohnson 0:c65854d98061 2548 #define HRTIM_FLTINR1_FLT3SRC ((uint32_t)0x00040000) /*!< Fault 3 source */
MartinJohnson 0:c65854d98061 2549 #define HRTIM_FLTINR1_FLT3F ((uint32_t)0x00780000) /*!< Fault 3 filter */
MartinJohnson 0:c65854d98061 2550 #define HRTIM_FLTINR1_FLT3F_0 ((uint32_t)0x00080000) /*!< Fault 3 filter bit 0 */
MartinJohnson 0:c65854d98061 2551 #define HRTIM_FLTINR1_FLT3F_1 ((uint32_t)0x00100000) /*!< Fault 3 filter bit 1 */
MartinJohnson 0:c65854d98061 2552 #define HRTIM_FLTINR1_FLT3F_2 ((uint32_t)0x00200000) /*!< Fault 3 filter bit 2 */
MartinJohnson 0:c65854d98061 2553 #define HRTIM_FLTINR1_FLT3F_3 ((uint32_t)0x00400000) /*!< Fault 3 filter bit 3 */
MartinJohnson 0:c65854d98061 2554 #define HRTIM_FLTINR1_FLT3LCK ((uint32_t)0x00800000) /*!< Fault 3 lock */
MartinJohnson 0:c65854d98061 2555
MartinJohnson 0:c65854d98061 2556 #define HRTIM_FLTINR1_FLT4E ((uint32_t)0x01000000) /*!< Fault 4 enable */
MartinJohnson 0:c65854d98061 2557 #define HRTIM_FLTINR1_FLT4P ((uint32_t)0x02000000) /*!< Fault 4 polarity */
MartinJohnson 0:c65854d98061 2558 #define HRTIM_FLTINR1_FLT4SRC ((uint32_t)0x04000000) /*!< Fault 4 source */
MartinJohnson 0:c65854d98061 2559 #define HRTIM_FLTINR1_FLT4F ((uint32_t)0x78000000) /*!< Fault 4 filter */
MartinJohnson 0:c65854d98061 2560 #define HRTIM_FLTINR1_FLT4F_0 ((uint32_t)0x08000000) /*!< Fault 4 filter bit 0 */
MartinJohnson 0:c65854d98061 2561 #define HRTIM_FLTINR1_FLT4F_1 ((uint32_t)0x10000000) /*!< Fault 4 filter bit 1 */
MartinJohnson 0:c65854d98061 2562 #define HRTIM_FLTINR1_FLT4F_2 ((uint32_t)0x20000000) /*!< Fault 4 filter bit 2 */
MartinJohnson 0:c65854d98061 2563 #define HRTIM_FLTINR1_FLT4F_3 ((uint32_t)0x40000000) /*!< Fault 4 filter bit 3 */
MartinJohnson 0:c65854d98061 2564 #define HRTIM_FLTINR1_FLT4LCK ((uint32_t)0x80000000) /*!< Fault 4 lock */
MartinJohnson 0:c65854d98061 2565
MartinJohnson 0:c65854d98061 2566 /******************* Bit definition for HRTIM_FLTINR2 register ***************/
MartinJohnson 0:c65854d98061 2567 #define HRTIM_FLTINR2_FLT5E ((uint32_t)0x00000001) /*!< Fault 5 enable */
MartinJohnson 0:c65854d98061 2568 #define HRTIM_FLTINR2_FLT5P ((uint32_t)0x00000002) /*!< Fault 5 polarity */
MartinJohnson 0:c65854d98061 2569 #define HRTIM_FLTINR2_FLT5SRC ((uint32_t)0x00000004) /*!< Fault 5 source */
MartinJohnson 0:c65854d98061 2570 #define HRTIM_FLTINR2_FLT5F ((uint32_t)0x00000078) /*!< Fault 5 filter */
MartinJohnson 0:c65854d98061 2571 #define HRTIM_FLTINR2_FLT5F_0 ((uint32_t)0x00000008) /*!< Fault 5 filter bit 0 */
MartinJohnson 0:c65854d98061 2572 #define HRTIM_FLTINR2_FLT5F_1 ((uint32_t)0x00000010) /*!< Fault 5 filter bit 1 */
MartinJohnson 0:c65854d98061 2573 #define HRTIM_FLTINR2_FLT5F_2 ((uint32_t)0x00000020) /*!< Fault 5 filter bit 2 */
MartinJohnson 0:c65854d98061 2574 #define HRTIM_FLTINR2_FLT5F_3 ((uint32_t)0x00000040) /*!< Fault 5 filter bit 3 */
MartinJohnson 0:c65854d98061 2575 #define HRTIM_FLTINR2_FLT5LCK ((uint32_t)0x00000080) /*!< Fault 5 lock */
MartinJohnson 0:c65854d98061 2576 #define HRTIM_FLTINR2_FLTSD ((uint32_t)0x03000000) /*!< Fault sampling clock division */
MartinJohnson 0:c65854d98061 2577 #define HRTIM_FLTINR2_FLTSD_0 ((uint32_t)0x01000000) /*!< Fault sampling clock division bit 0 */
MartinJohnson 0:c65854d98061 2578 #define HRTIM_FLTINR2_FLTSD_1 ((uint32_t)0x02000000) /*!< Fault sampling clock division bit 1 */
MartinJohnson 0:c65854d98061 2579
MartinJohnson 0:c65854d98061 2580 /******************* Bit definition for HRTIM_BDMUPR register ***************/
MartinJohnson 0:c65854d98061 2581 #define HRTIM_BDMUPR_MCR ((uint32_t)0x00000001) /*!< MCR register update enable */
MartinJohnson 0:c65854d98061 2582 #define HRTIM_BDMUPR_MICR ((uint32_t)0x00000002) /*!< MICR register update enable */
MartinJohnson 0:c65854d98061 2583 #define HRTIM_BDMUPR_MDIER ((uint32_t)0x00000004) /*!< MDIER register update enable */
MartinJohnson 0:c65854d98061 2584 #define HRTIM_BDMUPR_MCNT ((uint32_t)0x00000008) /*!< MCNT register update enable */
MartinJohnson 0:c65854d98061 2585 #define HRTIM_BDMUPR_MPER ((uint32_t)0x00000010) /*!< MPER register update enable */
MartinJohnson 0:c65854d98061 2586 #define HRTIM_BDMUPR_MREP ((uint32_t)0x00000020) /*!< MREP register update enable */
MartinJohnson 0:c65854d98061 2587 #define HRTIM_BDMUPR_MCMP1 ((uint32_t)0x00000040) /*!< MCMP1 register update enable */
MartinJohnson 0:c65854d98061 2588 #define HRTIM_BDMUPR_MCMP2 ((uint32_t)0x00000080) /*!< MCMP2 register update enable */
MartinJohnson 0:c65854d98061 2589 #define HRTIM_BDMUPR_MCMP3 ((uint32_t)0x00000100) /*!< MCMP3 register update enable */
MartinJohnson 0:c65854d98061 2590 #define HRTIM_BDMUPR_MCMP4 ((uint32_t)0x00000200) /*!< MPCMP4 register update enable */
MartinJohnson 0:c65854d98061 2591
MartinJohnson 0:c65854d98061 2592 /******************* Bit definition for HRTIM_BDTUPR register ***************/
MartinJohnson 0:c65854d98061 2593 #define HRTIM_BDTUPR_TIMCR ((uint32_t)0x00000001) /*!< TIMCR register update enable */
MartinJohnson 0:c65854d98061 2594 #define HRTIM_BDTUPR_TIMICR ((uint32_t)0x00000002) /*!< TIMICR register update enable */
MartinJohnson 0:c65854d98061 2595 #define HRTIM_BDTUPR_TIMDIER ((uint32_t)0x00000004) /*!< TIMDIER register update enable */
MartinJohnson 0:c65854d98061 2596 #define HRTIM_BDTUPR_TIMCNT ((uint32_t)0x00000008) /*!< TIMCNT register update enable */
MartinJohnson 0:c65854d98061 2597 #define HRTIM_BDTUPR_TIMPER ((uint32_t)0x00000010) /*!< TIMPER register update enable */
MartinJohnson 0:c65854d98061 2598 #define HRTIM_BDTUPR_TIMREP ((uint32_t)0x00000020) /*!< TIMREP register update enable */
MartinJohnson 0:c65854d98061 2599 #define HRTIM_BDTUPR_TIMCMP1 ((uint32_t)0x00000040) /*!< TIMCMP1 register update enable */
MartinJohnson 0:c65854d98061 2600 #define HRTIM_BDTUPR_TIMCMP2 ((uint32_t)0x00000080) /*!< TIMCMP2 register update enable */
MartinJohnson 0:c65854d98061 2601 #define HRTIM_BDTUPR_TIMCMP3 ((uint32_t)0x00000100) /*!< TIMCMP3 register update enable */
MartinJohnson 0:c65854d98061 2602 #define HRTIM_BDTUPR_TIMCMP4 ((uint32_t)0x00000200) /*!< TIMCMP4 register update enable */
MartinJohnson 0:c65854d98061 2603 #define HRTIM_BDTUPR_TIMDTR ((uint32_t)0x00000400) /*!< TIMDTR register update enable */
MartinJohnson 0:c65854d98061 2604 #define HRTIM_BDTUPR_TIMSET1R ((uint32_t)0x00000800) /*!< TIMSET1R register update enable */
MartinJohnson 0:c65854d98061 2605 #define HRTIM_BDTUPR_TIMRST1R ((uint32_t)0x00001000) /*!< TIMRST1R register update enable */
MartinJohnson 0:c65854d98061 2606 #define HRTIM_BDTUPR_TIMSET2R ((uint32_t)0x00002000) /*!< TIMSET2R register update enable */
MartinJohnson 0:c65854d98061 2607 #define HRTIM_BDTUPR_TIMRST2R ((uint32_t)0x00004000) /*!< TIMRST2R register update enable */
MartinJohnson 0:c65854d98061 2608 #define HRTIM_BDTUPR_TIMEEFR1 ((uint32_t)0x00008000) /*!< TIMEEFR1 register update enable */
MartinJohnson 0:c65854d98061 2609 #define HRTIM_BDTUPR_TIMEEFR2 ((uint32_t)0x00010000) /*!< TIMEEFR2 register update enable */
MartinJohnson 0:c65854d98061 2610 #define HRTIM_BDTUPR_TIMRSTR ((uint32_t)0x00020000) /*!< TIMRSTR register update enable */
MartinJohnson 0:c65854d98061 2611 #define HRTIM_BDTUPR_TIMCHPR ((uint32_t)0x00040000) /*!< TIMCHPR register update enable */
MartinJohnson 0:c65854d98061 2612 #define HRTIM_BDTUPR_TIMOUTR ((uint32_t)0x00080000) /*!< TIMOUTR register update enable */
MartinJohnson 0:c65854d98061 2613 #define HRTIM_BDTUPR_TIMFLTR ((uint32_t)0x00100000) /*!< TIMFLTR register update enable */
MartinJohnson 0:c65854d98061 2614
MartinJohnson 0:c65854d98061 2615 /******************* Bit definition for HRTIM_BDMADR register ***************/
MartinJohnson 0:c65854d98061 2616 #define HRTIM_BDMADR_BDMADR ((uint32_t)0xFFFFFFFF) /*!< Burst DMA Data register */
MartinJohnson 0:c65854d98061 2617
MartinJohnson 0:c65854d98061 2618 /******************************************************************************/
MartinJohnson 0:c65854d98061 2619 /* */
MartinJohnson 0:c65854d98061 2620 /* Analog to Digital Converter SAR (ADC) */
MartinJohnson 0:c65854d98061 2621 /* */
MartinJohnson 0:c65854d98061 2622 /******************************************************************************/
MartinJohnson 0:c65854d98061 2623 /******************** Bit definition for ADC_ISR register ********************/
MartinJohnson 0:c65854d98061 2624 #define ADC_ISR_ADRD ((uint32_t)0x00000001) /*!< ADC Ready (ADRDY) flag */
MartinJohnson 0:c65854d98061 2625 #define ADC_ISR_EOSMP ((uint32_t)0x00000002) /*!< ADC End of Sampling flag */
MartinJohnson 0:c65854d98061 2626 #define ADC_ISR_EOC ((uint32_t)0x00000004) /*!< ADC End of Regular Conversion flag */
MartinJohnson 0:c65854d98061 2627 #define ADC_ISR_EOS ((uint32_t)0x00000008) /*!< ADC End of Regular sequence of Conversions flag */
MartinJohnson 0:c65854d98061 2628 #define ADC_ISR_OVR ((uint32_t)0x00000010) /*!< ADC overrun flag */
MartinJohnson 0:c65854d98061 2629 #define ADC_ISR_JEOC ((uint32_t)0x00000020) /*!< ADC End of Injected Conversion flag */
MartinJohnson 0:c65854d98061 2630 #define ADC_ISR_JEOS ((uint32_t)0x00000040) /*!< ADC End of Injected sequence of Conversions flag */
MartinJohnson 0:c65854d98061 2631 #define ADC_ISR_AWD1 ((uint32_t)0x00000080) /*!< ADC Analog watchdog 1 flag */
MartinJohnson 0:c65854d98061 2632 #define ADC_ISR_AWD2 ((uint32_t)0x00000100) /*!< ADC Analog watchdog 2 flag */
MartinJohnson 0:c65854d98061 2633 #define ADC_ISR_AWD3 ((uint32_t)0x00000200) /*!< ADC Analog watchdog 3 flag */
MartinJohnson 0:c65854d98061 2634 #define ADC_ISR_JQOVF ((uint32_t)0x00000400) /*!< ADC Injected Context Queue Overflow flag */
MartinJohnson 0:c65854d98061 2635
MartinJohnson 0:c65854d98061 2636 /******************** Bit definition for ADC_IER register ********************/
MartinJohnson 0:c65854d98061 2637 #define ADC_IER_RDY ((uint32_t)0x00000001) /*!< ADC Ready (ADRDY) interrupt source */
MartinJohnson 0:c65854d98061 2638 #define ADC_IER_EOSMP ((uint32_t)0x00000002) /*!< ADC End of Sampling interrupt source */
MartinJohnson 0:c65854d98061 2639 #define ADC_IER_EOC ((uint32_t)0x00000004) /*!< ADC End of Regular Conversion interrupt source */
MartinJohnson 0:c65854d98061 2640 #define ADC_IER_EOS ((uint32_t)0x00000008) /*!< ADC End of Regular sequence of Conversions interrupt source */
MartinJohnson 0:c65854d98061 2641 #define ADC_IER_OVR ((uint32_t)0x00000010) /*!< ADC overrun interrupt source */
MartinJohnson 0:c65854d98061 2642 #define ADC_IER_JEOC ((uint32_t)0x00000020) /*!< ADC End of Injected Conversion interrupt source */
MartinJohnson 0:c65854d98061 2643 #define ADC_IER_JEOS ((uint32_t)0x00000040) /*!< ADC End of Injected sequence of Conversions interrupt source */
MartinJohnson 0:c65854d98061 2644 #define ADC_IER_AWD1 ((uint32_t)0x00000080) /*!< ADC Analog watchdog 1 interrupt source */
MartinJohnson 0:c65854d98061 2645 #define ADC_IER_AWD2 ((uint32_t)0x00000100) /*!< ADC Analog watchdog 2 interrupt source */
MartinJohnson 0:c65854d98061 2646 #define ADC_IER_AWD3 ((uint32_t)0x00000200) /*!< ADC Analog watchdog 3 interrupt source */
MartinJohnson 0:c65854d98061 2647 #define ADC_IER_JQOVF ((uint32_t)0x00000400) /*!< ADC Injected Context Queue Overflow interrupt source */
MartinJohnson 0:c65854d98061 2648
MartinJohnson 0:c65854d98061 2649 /******************** Bit definition for ADC_CR register ********************/
MartinJohnson 0:c65854d98061 2650 #define ADC_CR_ADEN ((uint32_t)0x00000001) /*!< ADC Enable control */
MartinJohnson 0:c65854d98061 2651 #define ADC_CR_ADDIS ((uint32_t)0x00000002) /*!< ADC Disable command */
MartinJohnson 0:c65854d98061 2652 #define ADC_CR_ADSTART ((uint32_t)0x00000004) /*!< ADC Start of Regular conversion */
MartinJohnson 0:c65854d98061 2653 #define ADC_CR_JADSTART ((uint32_t)0x00000008) /*!< ADC Start of injected conversion */
MartinJohnson 0:c65854d98061 2654 #define ADC_CR_ADSTP ((uint32_t)0x00000010) /*!< ADC Stop of Regular conversion */
MartinJohnson 0:c65854d98061 2655 #define ADC_CR_JADSTP ((uint32_t)0x00000020) /*!< ADC Stop of injected conversion */
MartinJohnson 0:c65854d98061 2656 #define ADC_CR_ADVREGEN ((uint32_t)0x30000000) /*!< ADC Voltage regulator Enable */
MartinJohnson 0:c65854d98061 2657 #define ADC_CR_ADVREGEN_0 ((uint32_t)0x10000000) /*!< ADC ADVREGEN bit 0 */
MartinJohnson 0:c65854d98061 2658 #define ADC_CR_ADVREGEN_1 ((uint32_t)0x20000000) /*!< ADC ADVREGEN bit 1 */
MartinJohnson 0:c65854d98061 2659 #define ADC_CR_ADCALDIF ((uint32_t)0x40000000) /*!< ADC Differential Mode for calibration */
MartinJohnson 0:c65854d98061 2660 #define ADC_CR_ADCAL ((uint32_t)0x80000000) /*!< ADC Calibration */
MartinJohnson 0:c65854d98061 2661
MartinJohnson 0:c65854d98061 2662 /******************** Bit definition for ADC_CFGR register ********************/
MartinJohnson 0:c65854d98061 2663 #define ADC_CFGR_DMAEN ((uint32_t)0x00000001) /*!< ADC DMA Enable */
MartinJohnson 0:c65854d98061 2664 #define ADC_CFGR_DMACFG ((uint32_t)0x00000002) /*!< ADC DMA configuration */
MartinJohnson 0:c65854d98061 2665
MartinJohnson 0:c65854d98061 2666 #define ADC_CFGR_RES ((uint32_t)0x00000018) /*!< ADC Data resolution */
MartinJohnson 0:c65854d98061 2667 #define ADC_CFGR_RES_0 ((uint32_t)0x00000008) /*!< ADC RES bit 0 */
MartinJohnson 0:c65854d98061 2668 #define ADC_CFGR_RES_1 ((uint32_t)0x00000010) /*!< ADC RES bit 1 */
MartinJohnson 0:c65854d98061 2669
MartinJohnson 0:c65854d98061 2670 #define ADC_CFGR_ALIGN ((uint32_t)0x00000020) /*!< ADC Data Alignment */
MartinJohnson 0:c65854d98061 2671
MartinJohnson 0:c65854d98061 2672 #define ADC_CFGR_EXTSEL ((uint32_t)0x000003C0) /*!< ADC External trigger selection for regular group */
MartinJohnson 0:c65854d98061 2673 #define ADC_CFGR_EXTSEL_0 ((uint32_t)0x00000040) /*!< ADC EXTSEL bit 0 */
MartinJohnson 0:c65854d98061 2674 #define ADC_CFGR_EXTSEL_1 ((uint32_t)0x00000080) /*!< ADC EXTSEL bit 1 */
MartinJohnson 0:c65854d98061 2675 #define ADC_CFGR_EXTSEL_2 ((uint32_t)0x00000100) /*!< ADC EXTSEL bit 2 */
MartinJohnson 0:c65854d98061 2676 #define ADC_CFGR_EXTSEL_3 ((uint32_t)0x00000200) /*!< ADC EXTSEL bit 3 */
MartinJohnson 0:c65854d98061 2677
MartinJohnson 0:c65854d98061 2678 #define ADC_CFGR_EXTEN ((uint32_t)0x00000C00) /*!< ADC External trigger enable and polarity selection for regular channels */
MartinJohnson 0:c65854d98061 2679 #define ADC_CFGR_EXTEN_0 ((uint32_t)0x00000400) /*!< ADC EXTEN bit 0 */
MartinJohnson 0:c65854d98061 2680 #define ADC_CFGR_EXTEN_1 ((uint32_t)0x00000800) /*!< ADC EXTEN bit 1 */
MartinJohnson 0:c65854d98061 2681
MartinJohnson 0:c65854d98061 2682 #define ADC_CFGR_OVRMOD ((uint32_t)0x00001000) /*!< ADC overrun mode */
MartinJohnson 0:c65854d98061 2683 #define ADC_CFGR_CONT ((uint32_t)0x00002000) /*!< ADC Single/continuous conversion mode for regular conversion */
MartinJohnson 0:c65854d98061 2684 #define ADC_CFGR_AUTDLY ((uint32_t)0x00004000) /*!< ADC Delayed conversion mode */
MartinJohnson 0:c65854d98061 2685 #define ADC_CFGR_DISCEN ((uint32_t)0x00010000) /*!< ADC Discontinuous mode for regular channels */
MartinJohnson 0:c65854d98061 2686
MartinJohnson 0:c65854d98061 2687 #define ADC_CFGR_DISCNUM ((uint32_t)0x000E0000) /*!< ADC Discontinuous mode channel count */
MartinJohnson 0:c65854d98061 2688 #define ADC_CFGR_DISCNUM_0 ((uint32_t)0x00020000) /*!< ADC DISCNUM bit 0 */
MartinJohnson 0:c65854d98061 2689 #define ADC_CFGR_DISCNUM_1 ((uint32_t)0x00040000) /*!< ADC DISCNUM bit 1 */
MartinJohnson 0:c65854d98061 2690 #define ADC_CFGR_DISCNUM_2 ((uint32_t)0x00080000) /*!< ADC DISCNUM bit 2 */
MartinJohnson 0:c65854d98061 2691
MartinJohnson 0:c65854d98061 2692 #define ADC_CFGR_JDISCEN ((uint32_t)0x00100000) /*!< ADC Discontinuous mode on injected channels */
MartinJohnson 0:c65854d98061 2693 #define ADC_CFGR_JQM ((uint32_t)0x00200000) /*!< ADC JSQR Queue mode */
MartinJohnson 0:c65854d98061 2694 #define ADC_CFGR_AWD1SGL ((uint32_t)0x00400000) /*!< Enable the watchdog 1 on a single channel or on all channels */
MartinJohnson 0:c65854d98061 2695 #define ADC_CFGR_AWD1EN ((uint32_t)0x00800000) /*!< ADC Analog watchdog 1 enable on regular Channels */
MartinJohnson 0:c65854d98061 2696 #define ADC_CFGR_JAWD1EN ((uint32_t)0x01000000) /*!< ADC Analog watchdog 1 enable on injected Channels */
MartinJohnson 0:c65854d98061 2697 #define ADC_CFGR_JAUTO ((uint32_t)0x02000000) /*!< ADC Automatic injected group conversion */
MartinJohnson 0:c65854d98061 2698
MartinJohnson 0:c65854d98061 2699 #define ADC_CFGR_AWD1CH ((uint32_t)0x7C000000) /*!< ADC Analog watchdog 1 Channel selection */
MartinJohnson 0:c65854d98061 2700 #define ADC_CFGR_AWD1CH_0 ((uint32_t)0x04000000) /*!< ADC AWD1CH bit 0 */
MartinJohnson 0:c65854d98061 2701 #define ADC_CFGR_AWD1CH_1 ((uint32_t)0x08000000) /*!< ADC AWD1CH bit 1 */
MartinJohnson 0:c65854d98061 2702 #define ADC_CFGR_AWD1CH_2 ((uint32_t)0x10000000) /*!< ADC AWD1CH bit 2 */
MartinJohnson 0:c65854d98061 2703 #define ADC_CFGR_AWD1CH_3 ((uint32_t)0x20000000) /*!< ADC AWD1CH bit 3 */
MartinJohnson 0:c65854d98061 2704 #define ADC_CFGR_AWD1CH_4 ((uint32_t)0x40000000) /*!< ADC AWD1CH bit 4 */
MartinJohnson 0:c65854d98061 2705
MartinJohnson 0:c65854d98061 2706 /******************** Bit definition for ADC_SMPR1 register ********************/
MartinJohnson 0:c65854d98061 2707 #define ADC_SMPR1_SMP0 ((uint32_t)0x00000007) /*!< ADC Channel 0 Sampling time selection */
MartinJohnson 0:c65854d98061 2708 #define ADC_SMPR1_SMP0_0 ((uint32_t)0x00000001) /*!< ADC SMP0 bit 0 */
MartinJohnson 0:c65854d98061 2709 #define ADC_SMPR1_SMP0_1 ((uint32_t)0x00000002) /*!< ADC SMP0 bit 1 */
MartinJohnson 0:c65854d98061 2710 #define ADC_SMPR1_SMP0_2 ((uint32_t)0x00000004) /*!< ADC SMP0 bit 2 */
MartinJohnson 0:c65854d98061 2711
MartinJohnson 0:c65854d98061 2712 #define ADC_SMPR1_SMP1 ((uint32_t)0x00000038) /*!< ADC Channel 1 Sampling time selection */
MartinJohnson 0:c65854d98061 2713 #define ADC_SMPR1_SMP1_0 ((uint32_t)0x00000008) /*!< ADC SMP1 bit 0 */
MartinJohnson 0:c65854d98061 2714 #define ADC_SMPR1_SMP1_1 ((uint32_t)0x00000010) /*!< ADC SMP1 bit 1 */
MartinJohnson 0:c65854d98061 2715 #define ADC_SMPR1_SMP1_2 ((uint32_t)0x00000020) /*!< ADC SMP1 bit 2 */
MartinJohnson 0:c65854d98061 2716
MartinJohnson 0:c65854d98061 2717 #define ADC_SMPR1_SMP2 ((uint32_t)0x000001C0) /*!< ADC Channel 2 Sampling time selection */
MartinJohnson 0:c65854d98061 2718 #define ADC_SMPR1_SMP2_0 ((uint32_t)0x00000040) /*!< ADC SMP2 bit 0 */
MartinJohnson 0:c65854d98061 2719 #define ADC_SMPR1_SMP2_1 ((uint32_t)0x00000080) /*!< ADC SMP2 bit 1 */
MartinJohnson 0:c65854d98061 2720 #define ADC_SMPR1_SMP2_2 ((uint32_t)0x00000100) /*!< ADC SMP2 bit 2 */
MartinJohnson 0:c65854d98061 2721
MartinJohnson 0:c65854d98061 2722 #define ADC_SMPR1_SMP3 ((uint32_t)0x00000E00) /*!< ADC Channel 3 Sampling time selection */
MartinJohnson 0:c65854d98061 2723 #define ADC_SMPR1_SMP3_0 ((uint32_t)0x00000200) /*!< ADC SMP3 bit 0 */
MartinJohnson 0:c65854d98061 2724 #define ADC_SMPR1_SMP3_1 ((uint32_t)0x00000400) /*!< ADC SMP3 bit 1 */
MartinJohnson 0:c65854d98061 2725 #define ADC_SMPR1_SMP3_2 ((uint32_t)0x00000800) /*!< ADC SMP3 bit 2 */
MartinJohnson 0:c65854d98061 2726
MartinJohnson 0:c65854d98061 2727 #define ADC_SMPR1_SMP4 ((uint32_t)0x00007000) /*!< ADC Channel 4 Sampling time selection */
MartinJohnson 0:c65854d98061 2728 #define ADC_SMPR1_SMP4_0 ((uint32_t)0x00001000) /*!< ADC SMP4 bit 0 */
MartinJohnson 0:c65854d98061 2729 #define ADC_SMPR1_SMP4_1 ((uint32_t)0x00002000) /*!< ADC SMP4 bit 1 */
MartinJohnson 0:c65854d98061 2730 #define ADC_SMPR1_SMP4_2 ((uint32_t)0x00004000) /*!< ADC SMP4 bit 2 */
MartinJohnson 0:c65854d98061 2731
MartinJohnson 0:c65854d98061 2732 #define ADC_SMPR1_SMP5 ((uint32_t)0x00038000) /*!< ADC Channel 5 Sampling time selection */
MartinJohnson 0:c65854d98061 2733 #define ADC_SMPR1_SMP5_0 ((uint32_t)0x00008000) /*!< ADC SMP5 bit 0 */
MartinJohnson 0:c65854d98061 2734 #define ADC_SMPR1_SMP5_1 ((uint32_t)0x00010000) /*!< ADC SMP5 bit 1 */
MartinJohnson 0:c65854d98061 2735 #define ADC_SMPR1_SMP5_2 ((uint32_t)0x00020000) /*!< ADC SMP5 bit 2 */
MartinJohnson 0:c65854d98061 2736
MartinJohnson 0:c65854d98061 2737 #define ADC_SMPR1_SMP6 ((uint32_t)0x001C0000) /*!< ADC Channel 6 Sampling time selection */
MartinJohnson 0:c65854d98061 2738 #define ADC_SMPR1_SMP6_0 ((uint32_t)0x00040000) /*!< ADC SMP6 bit 0 */
MartinJohnson 0:c65854d98061 2739 #define ADC_SMPR1_SMP6_1 ((uint32_t)0x00080000) /*!< ADC SMP6 bit 1 */
MartinJohnson 0:c65854d98061 2740 #define ADC_SMPR1_SMP6_2 ((uint32_t)0x00100000) /*!< ADC SMP6 bit 2 */
MartinJohnson 0:c65854d98061 2741
MartinJohnson 0:c65854d98061 2742 #define ADC_SMPR1_SMP7 ((uint32_t)0x00E00000) /*!< ADC Channel 7 Sampling time selection */
MartinJohnson 0:c65854d98061 2743 #define ADC_SMPR1_SMP7_0 ((uint32_t)0x00200000) /*!< ADC SMP7 bit 0 */
MartinJohnson 0:c65854d98061 2744 #define ADC_SMPR1_SMP7_1 ((uint32_t)0x00400000) /*!< ADC SMP7 bit 1 */
MartinJohnson 0:c65854d98061 2745 #define ADC_SMPR1_SMP7_2 ((uint32_t)0x00800000) /*!< ADC SMP7 bit 2 */
MartinJohnson 0:c65854d98061 2746
MartinJohnson 0:c65854d98061 2747 #define ADC_SMPR1_SMP8 ((uint32_t)0x07000000) /*!< ADC Channel 8 Sampling time selection */
MartinJohnson 0:c65854d98061 2748 #define ADC_SMPR1_SMP8_0 ((uint32_t)0x01000000) /*!< ADC SMP8 bit 0 */
MartinJohnson 0:c65854d98061 2749 #define ADC_SMPR1_SMP8_1 ((uint32_t)0x02000000) /*!< ADC SMP8 bit 1 */
MartinJohnson 0:c65854d98061 2750 #define ADC_SMPR1_SMP8_2 ((uint32_t)0x04000000) /*!< ADC SMP8 bit 2 */
MartinJohnson 0:c65854d98061 2751
MartinJohnson 0:c65854d98061 2752 #define ADC_SMPR1_SMP9 ((uint32_t)0x38000000) /*!< ADC Channel 9 Sampling time selection */
MartinJohnson 0:c65854d98061 2753 #define ADC_SMPR1_SMP9_0 ((uint32_t)0x08000000) /*!< ADC SMP9 bit 0 */
MartinJohnson 0:c65854d98061 2754 #define ADC_SMPR1_SMP9_1 ((uint32_t)0x10000000) /*!< ADC SMP9 bit 1 */
MartinJohnson 0:c65854d98061 2755 #define ADC_SMPR1_SMP9_2 ((uint32_t)0x20000000) /*!< ADC SMP9 bit 2 */
MartinJohnson 0:c65854d98061 2756
MartinJohnson 0:c65854d98061 2757 /******************** Bit definition for ADC_SMPR2 register ********************/
MartinJohnson 0:c65854d98061 2758 #define ADC_SMPR2_SMP10 ((uint32_t)0x00000007) /*!< ADC Channel 10 Sampling time selection */
MartinJohnson 0:c65854d98061 2759 #define ADC_SMPR2_SMP10_0 ((uint32_t)0x00000001) /*!< ADC SMP10 bit 0 */
MartinJohnson 0:c65854d98061 2760 #define ADC_SMPR2_SMP10_1 ((uint32_t)0x00000002) /*!< ADC SMP10 bit 1 */
MartinJohnson 0:c65854d98061 2761 #define ADC_SMPR2_SMP10_2 ((uint32_t)0x00000004) /*!< ADC SMP10 bit 2 */
MartinJohnson 0:c65854d98061 2762
MartinJohnson 0:c65854d98061 2763 #define ADC_SMPR2_SMP11 ((uint32_t)0x00000038) /*!< ADC Channel 11 Sampling time selection */
MartinJohnson 0:c65854d98061 2764 #define ADC_SMPR2_SMP11_0 ((uint32_t)0x00000008) /*!< ADC SMP11 bit 0 */
MartinJohnson 0:c65854d98061 2765 #define ADC_SMPR2_SMP11_1 ((uint32_t)0x00000010) /*!< ADC SMP11 bit 1 */
MartinJohnson 0:c65854d98061 2766 #define ADC_SMPR2_SMP11_2 ((uint32_t)0x00000020) /*!< ADC SMP11 bit 2 */
MartinJohnson 0:c65854d98061 2767
MartinJohnson 0:c65854d98061 2768 #define ADC_SMPR2_SMP12 ((uint32_t)0x000001C0) /*!< ADC Channel 12 Sampling time selection */
MartinJohnson 0:c65854d98061 2769 #define ADC_SMPR2_SMP12_0 ((uint32_t)0x00000040) /*!< ADC SMP12 bit 0 */
MartinJohnson 0:c65854d98061 2770 #define ADC_SMPR2_SMP12_1 ((uint32_t)0x00000080) /*!< ADC SMP12 bit 1 */
MartinJohnson 0:c65854d98061 2771 #define ADC_SMPR2_SMP12_2 ((uint32_t)0x00000100) /*!< ADC SMP12 bit 2 */
MartinJohnson 0:c65854d98061 2772
MartinJohnson 0:c65854d98061 2773 #define ADC_SMPR2_SMP13 ((uint32_t)0x00000E00) /*!< ADC Channel 13 Sampling time selection */
MartinJohnson 0:c65854d98061 2774 #define ADC_SMPR2_SMP13_0 ((uint32_t)0x00000200) /*!< ADC SMP13 bit 0 */
MartinJohnson 0:c65854d98061 2775 #define ADC_SMPR2_SMP13_1 ((uint32_t)0x00000400) /*!< ADC SMP13 bit 1 */
MartinJohnson 0:c65854d98061 2776 #define ADC_SMPR2_SMP13_2 ((uint32_t)0x00000800) /*!< ADC SMP13 bit 2 */
MartinJohnson 0:c65854d98061 2777
MartinJohnson 0:c65854d98061 2778 #define ADC_SMPR2_SMP14 ((uint32_t)0x00007000) /*!< ADC Channel 14 Sampling time selection */
MartinJohnson 0:c65854d98061 2779 #define ADC_SMPR2_SMP14_0 ((uint32_t)0x00001000) /*!< ADC SMP14 bit 0 */
MartinJohnson 0:c65854d98061 2780 #define ADC_SMPR2_SMP14_1 ((uint32_t)0x00002000) /*!< ADC SMP14 bit 1 */
MartinJohnson 0:c65854d98061 2781 #define ADC_SMPR2_SMP14_2 ((uint32_t)0x00004000) /*!< ADC SMP14 bit 2 */
MartinJohnson 0:c65854d98061 2782
MartinJohnson 0:c65854d98061 2783 #define ADC_SMPR2_SMP15 ((uint32_t)0x00038000) /*!< ADC Channel 15 Sampling time selection */
MartinJohnson 0:c65854d98061 2784 #define ADC_SMPR2_SMP15_0 ((uint32_t)0x00008000) /*!< ADC SMP15 bit 0 */
MartinJohnson 0:c65854d98061 2785 #define ADC_SMPR2_SMP15_1 ((uint32_t)0x00010000) /*!< ADC SMP15 bit 1 */
MartinJohnson 0:c65854d98061 2786 #define ADC_SMPR2_SMP15_2 ((uint32_t)0x00020000) /*!< ADC SMP15 bit 2 */
MartinJohnson 0:c65854d98061 2787
MartinJohnson 0:c65854d98061 2788 #define ADC_SMPR2_SMP16 ((uint32_t)0x001C0000) /*!< ADC Channel 16 Sampling time selection */
MartinJohnson 0:c65854d98061 2789 #define ADC_SMPR2_SMP16_0 ((uint32_t)0x00040000) /*!< ADC SMP16 bit 0 */
MartinJohnson 0:c65854d98061 2790 #define ADC_SMPR2_SMP16_1 ((uint32_t)0x00080000) /*!< ADC SMP16 bit 1 */
MartinJohnson 0:c65854d98061 2791 #define ADC_SMPR2_SMP16_2 ((uint32_t)0x00100000) /*!< ADC SMP16 bit 2 */
MartinJohnson 0:c65854d98061 2792
MartinJohnson 0:c65854d98061 2793 #define ADC_SMPR2_SMP17 ((uint32_t)0x00E00000) /*!< ADC Channel 17 Sampling time selection */
MartinJohnson 0:c65854d98061 2794 #define ADC_SMPR2_SMP17_0 ((uint32_t)0x00200000) /*!< ADC SMP17 bit 0 */
MartinJohnson 0:c65854d98061 2795 #define ADC_SMPR2_SMP17_1 ((uint32_t)0x00400000) /*!< ADC SMP17 bit 1 */
MartinJohnson 0:c65854d98061 2796 #define ADC_SMPR2_SMP17_2 ((uint32_t)0x00800000) /*!< ADC SMP17 bit 2 */
MartinJohnson 0:c65854d98061 2797
MartinJohnson 0:c65854d98061 2798 #define ADC_SMPR2_SMP18 ((uint32_t)0x07000000) /*!< ADC Channel 18 Sampling time selection */
MartinJohnson 0:c65854d98061 2799 #define ADC_SMPR2_SMP18_0 ((uint32_t)0x01000000) /*!< ADC SMP18 bit 0 */
MartinJohnson 0:c65854d98061 2800 #define ADC_SMPR2_SMP18_1 ((uint32_t)0x02000000) /*!< ADC SMP18 bit 1 */
MartinJohnson 0:c65854d98061 2801 #define ADC_SMPR2_SMP18_2 ((uint32_t)0x04000000) /*!< ADC SMP18 bit 2 */
MartinJohnson 0:c65854d98061 2802
MartinJohnson 0:c65854d98061 2803 /******************** Bit definition for ADC_TR1 register ********************/
MartinJohnson 0:c65854d98061 2804 #define ADC_TR1_LT1 ((uint32_t)0x00000FFF) /*!< ADC Analog watchdog 1 lower threshold */
MartinJohnson 0:c65854d98061 2805 #define ADC_TR1_LT1_0 ((uint32_t)0x00000001) /*!< ADC LT1 bit 0 */
MartinJohnson 0:c65854d98061 2806 #define ADC_TR1_LT1_1 ((uint32_t)0x00000002) /*!< ADC LT1 bit 1 */
MartinJohnson 0:c65854d98061 2807 #define ADC_TR1_LT1_2 ((uint32_t)0x00000004) /*!< ADC LT1 bit 2 */
MartinJohnson 0:c65854d98061 2808 #define ADC_TR1_LT1_3 ((uint32_t)0x00000008) /*!< ADC LT1 bit 3 */
MartinJohnson 0:c65854d98061 2809 #define ADC_TR1_LT1_4 ((uint32_t)0x00000010) /*!< ADC LT1 bit 4 */
MartinJohnson 0:c65854d98061 2810 #define ADC_TR1_LT1_5 ((uint32_t)0x00000020) /*!< ADC LT1 bit 5 */
MartinJohnson 0:c65854d98061 2811 #define ADC_TR1_LT1_6 ((uint32_t)0x00000040) /*!< ADC LT1 bit 6 */
MartinJohnson 0:c65854d98061 2812 #define ADC_TR1_LT1_7 ((uint32_t)0x00000080) /*!< ADC LT1 bit 7 */
MartinJohnson 0:c65854d98061 2813 #define ADC_TR1_LT1_8 ((uint32_t)0x00000100) /*!< ADC LT1 bit 8 */
MartinJohnson 0:c65854d98061 2814 #define ADC_TR1_LT1_9 ((uint32_t)0x00000200) /*!< ADC LT1 bit 9 */
MartinJohnson 0:c65854d98061 2815 #define ADC_TR1_LT1_10 ((uint32_t)0x00000400) /*!< ADC LT1 bit 10 */
MartinJohnson 0:c65854d98061 2816 #define ADC_TR1_LT1_11 ((uint32_t)0x00000800) /*!< ADC LT1 bit 11 */
MartinJohnson 0:c65854d98061 2817
MartinJohnson 0:c65854d98061 2818 #define ADC_TR1_HT1 ((uint32_t)0x0FFF0000) /*!< ADC Analog watchdog 1 higher threshold */
MartinJohnson 0:c65854d98061 2819 #define ADC_TR1_HT1_0 ((uint32_t)0x00010000) /*!< ADC HT1 bit 0 */
MartinJohnson 0:c65854d98061 2820 #define ADC_TR1_HT1_1 ((uint32_t)0x00020000) /*!< ADC HT1 bit 1 */
MartinJohnson 0:c65854d98061 2821 #define ADC_TR1_HT1_2 ((uint32_t)0x00040000) /*!< ADC HT1 bit 2 */
MartinJohnson 0:c65854d98061 2822 #define ADC_TR1_HT1_3 ((uint32_t)0x00080000) /*!< ADC HT1 bit 3 */
MartinJohnson 0:c65854d98061 2823 #define ADC_TR1_HT1_4 ((uint32_t)0x00100000) /*!< ADC HT1 bit 4 */
MartinJohnson 0:c65854d98061 2824 #define ADC_TR1_HT1_5 ((uint32_t)0x00200000) /*!< ADC HT1 bit 5 */
MartinJohnson 0:c65854d98061 2825 #define ADC_TR1_HT1_6 ((uint32_t)0x00400000) /*!< ADC HT1 bit 6 */
MartinJohnson 0:c65854d98061 2826 #define ADC_TR1_HT1_7 ((uint32_t)0x00800000) /*!< ADC HT1 bit 7 */
MartinJohnson 0:c65854d98061 2827 #define ADC_TR1_HT1_8 ((uint32_t)0x01000000) /*!< ADC HT1 bit 8 */
MartinJohnson 0:c65854d98061 2828 #define ADC_TR1_HT1_9 ((uint32_t)0x02000000) /*!< ADC HT1 bit 9 */
MartinJohnson 0:c65854d98061 2829 #define ADC_TR1_HT1_10 ((uint32_t)0x04000000) /*!< ADC HT1 bit 10 */
MartinJohnson 0:c65854d98061 2830 #define ADC_TR1_HT1_11 ((uint32_t)0x08000000) /*!< ADC HT1 bit 11 */
MartinJohnson 0:c65854d98061 2831
MartinJohnson 0:c65854d98061 2832 /******************** Bit definition for ADC_TR2 register ********************/
MartinJohnson 0:c65854d98061 2833 #define ADC_TR2_LT2 ((uint32_t)0x000000FF) /*!< ADC Analog watchdog 2 lower threshold */
MartinJohnson 0:c65854d98061 2834 #define ADC_TR2_LT2_0 ((uint32_t)0x00000001) /*!< ADC LT2 bit 0 */
MartinJohnson 0:c65854d98061 2835 #define ADC_TR2_LT2_1 ((uint32_t)0x00000002) /*!< ADC LT2 bit 1 */
MartinJohnson 0:c65854d98061 2836 #define ADC_TR2_LT2_2 ((uint32_t)0x00000004) /*!< ADC LT2 bit 2 */
MartinJohnson 0:c65854d98061 2837 #define ADC_TR2_LT2_3 ((uint32_t)0x00000008) /*!< ADC LT2 bit 3 */
MartinJohnson 0:c65854d98061 2838 #define ADC_TR2_LT2_4 ((uint32_t)0x00000010) /*!< ADC LT2 bit 4 */
MartinJohnson 0:c65854d98061 2839 #define ADC_TR2_LT2_5 ((uint32_t)0x00000020) /*!< ADC LT2 bit 5 */
MartinJohnson 0:c65854d98061 2840 #define ADC_TR2_LT2_6 ((uint32_t)0x00000040) /*!< ADC LT2 bit 6 */
MartinJohnson 0:c65854d98061 2841 #define ADC_TR2_LT2_7 ((uint32_t)0x00000080) /*!< ADC LT2 bit 7 */
MartinJohnson 0:c65854d98061 2842
MartinJohnson 0:c65854d98061 2843 #define ADC_TR2_HT2 ((uint32_t)0x00FF0000) /*!< ADC Analog watchdog 2 higher threshold */
MartinJohnson 0:c65854d98061 2844 #define ADC_TR2_HT2_0 ((uint32_t)0x00010000) /*!< ADC HT2 bit 0 */
MartinJohnson 0:c65854d98061 2845 #define ADC_TR2_HT2_1 ((uint32_t)0x00020000) /*!< ADC HT2 bit 1 */
MartinJohnson 0:c65854d98061 2846 #define ADC_TR2_HT2_2 ((uint32_t)0x00040000) /*!< ADC HT2 bit 2 */
MartinJohnson 0:c65854d98061 2847 #define ADC_TR2_HT2_3 ((uint32_t)0x00080000) /*!< ADC HT2 bit 3 */
MartinJohnson 0:c65854d98061 2848 #define ADC_TR2_HT2_4 ((uint32_t)0x00100000) /*!< ADC HT2 bit 4 */
MartinJohnson 0:c65854d98061 2849 #define ADC_TR2_HT2_5 ((uint32_t)0x00200000) /*!< ADC HT2 bit 5 */
MartinJohnson 0:c65854d98061 2850 #define ADC_TR2_HT2_6 ((uint32_t)0x00400000) /*!< ADC HT2 bit 6 */
MartinJohnson 0:c65854d98061 2851 #define ADC_TR2_HT2_7 ((uint32_t)0x00800000) /*!< ADC HT2 bit 7 */
MartinJohnson 0:c65854d98061 2852
MartinJohnson 0:c65854d98061 2853 /******************** Bit definition for ADC_TR3 register ********************/
MartinJohnson 0:c65854d98061 2854 #define ADC_TR3_LT3 ((uint32_t)0x000000FF) /*!< ADC Analog watchdog 3 lower threshold */
MartinJohnson 0:c65854d98061 2855 #define ADC_TR3_LT3_0 ((uint32_t)0x00000001) /*!< ADC LT3 bit 0 */
MartinJohnson 0:c65854d98061 2856 #define ADC_TR3_LT3_1 ((uint32_t)0x00000002) /*!< ADC LT3 bit 1 */
MartinJohnson 0:c65854d98061 2857 #define ADC_TR3_LT3_2 ((uint32_t)0x00000004) /*!< ADC LT3 bit 2 */
MartinJohnson 0:c65854d98061 2858 #define ADC_TR3_LT3_3 ((uint32_t)0x00000008) /*!< ADC LT3 bit 3 */
MartinJohnson 0:c65854d98061 2859 #define ADC_TR3_LT3_4 ((uint32_t)0x00000010) /*!< ADC LT3 bit 4 */
MartinJohnson 0:c65854d98061 2860 #define ADC_TR3_LT3_5 ((uint32_t)0x00000020) /*!< ADC LT3 bit 5 */
MartinJohnson 0:c65854d98061 2861 #define ADC_TR3_LT3_6 ((uint32_t)0x00000040) /*!< ADC LT3 bit 6 */
MartinJohnson 0:c65854d98061 2862 #define ADC_TR3_LT3_7 ((uint32_t)0x00000080) /*!< ADC LT3 bit 7 */
MartinJohnson 0:c65854d98061 2863
MartinJohnson 0:c65854d98061 2864 #define ADC_TR3_HT3 ((uint32_t)0x00FF0000) /*!< ADC Analog watchdog 3 higher threshold */
MartinJohnson 0:c65854d98061 2865 #define ADC_TR3_HT3_0 ((uint32_t)0x00010000) /*!< ADC HT3 bit 0 */
MartinJohnson 0:c65854d98061 2866 #define ADC_TR3_HT3_1 ((uint32_t)0x00020000) /*!< ADC HT3 bit 1 */
MartinJohnson 0:c65854d98061 2867 #define ADC_TR3_HT3_2 ((uint32_t)0x00040000) /*!< ADC HT3 bit 2 */
MartinJohnson 0:c65854d98061 2868 #define ADC_TR3_HT3_3 ((uint32_t)0x00080000) /*!< ADC HT3 bit 3 */
MartinJohnson 0:c65854d98061 2869 #define ADC_TR3_HT3_4 ((uint32_t)0x00100000) /*!< ADC HT3 bit 4 */
MartinJohnson 0:c65854d98061 2870 #define ADC_TR3_HT3_5 ((uint32_t)0x00200000) /*!< ADC HT3 bit 5 */
MartinJohnson 0:c65854d98061 2871 #define ADC_TR3_HT3_6 ((uint32_t)0x00400000) /*!< ADC HT3 bit 6 */
MartinJohnson 0:c65854d98061 2872 #define ADC_TR3_HT3_7 ((uint32_t)0x00800000) /*!< ADC HT3 bit 7 */
MartinJohnson 0:c65854d98061 2873
MartinJohnson 0:c65854d98061 2874 /******************** Bit definition for ADC_SQR1 register ********************/
MartinJohnson 0:c65854d98061 2875 #define ADC_SQR1_L ((uint32_t)0x0000000F) /*!< ADC regular channel sequence length */
MartinJohnson 0:c65854d98061 2876 #define ADC_SQR1_L_0 ((uint32_t)0x00000001) /*!< ADC L bit 0 */
MartinJohnson 0:c65854d98061 2877 #define ADC_SQR1_L_1 ((uint32_t)0x00000002) /*!< ADC L bit 1 */
MartinJohnson 0:c65854d98061 2878 #define ADC_SQR1_L_2 ((uint32_t)0x00000004) /*!< ADC L bit 2 */
MartinJohnson 0:c65854d98061 2879 #define ADC_SQR1_L_3 ((uint32_t)0x00000008) /*!< ADC L bit 3 */
MartinJohnson 0:c65854d98061 2880
MartinJohnson 0:c65854d98061 2881 #define ADC_SQR1_SQ1 ((uint32_t)0x000007C0) /*!< ADC 1st conversion in regular sequence */
MartinJohnson 0:c65854d98061 2882 #define ADC_SQR1_SQ1_0 ((uint32_t)0x00000040) /*!< ADC SQ1 bit 0 */
MartinJohnson 0:c65854d98061 2883 #define ADC_SQR1_SQ1_1 ((uint32_t)0x00000080) /*!< ADC SQ1 bit 1 */
MartinJohnson 0:c65854d98061 2884 #define ADC_SQR1_SQ1_2 ((uint32_t)0x00000100) /*!< ADC SQ1 bit 2 */
MartinJohnson 0:c65854d98061 2885 #define ADC_SQR1_SQ1_3 ((uint32_t)0x00000200) /*!< ADC SQ1 bit 3 */
MartinJohnson 0:c65854d98061 2886 #define ADC_SQR1_SQ1_4 ((uint32_t)0x00000400) /*!< ADC SQ1 bit 4 */
MartinJohnson 0:c65854d98061 2887
MartinJohnson 0:c65854d98061 2888 #define ADC_SQR1_SQ2 ((uint32_t)0x0001F000) /*!< ADC 2nd conversion in regular sequence */
MartinJohnson 0:c65854d98061 2889 #define ADC_SQR1_SQ2_0 ((uint32_t)0x00001000) /*!< ADC SQ2 bit 0 */
MartinJohnson 0:c65854d98061 2890 #define ADC_SQR1_SQ2_1 ((uint32_t)0x00002000) /*!< ADC SQ2 bit 1 */
MartinJohnson 0:c65854d98061 2891 #define ADC_SQR1_SQ2_2 ((uint32_t)0x00004000) /*!< ADC SQ2 bit 2 */
MartinJohnson 0:c65854d98061 2892 #define ADC_SQR1_SQ2_3 ((uint32_t)0x00008000) /*!< ADC SQ2 bit 3 */
MartinJohnson 0:c65854d98061 2893 #define ADC_SQR1_SQ2_4 ((uint32_t)0x00010000) /*!< ADC SQ2 bit 4 */
MartinJohnson 0:c65854d98061 2894
MartinJohnson 0:c65854d98061 2895 #define ADC_SQR1_SQ3 ((uint32_t)0x007C0000) /*!< ADC 3rd conversion in regular sequence */
MartinJohnson 0:c65854d98061 2896 #define ADC_SQR1_SQ3_0 ((uint32_t)0x00040000) /*!< ADC SQ3 bit 0 */
MartinJohnson 0:c65854d98061 2897 #define ADC_SQR1_SQ3_1 ((uint32_t)0x00080000) /*!< ADC SQ3 bit 1 */
MartinJohnson 0:c65854d98061 2898 #define ADC_SQR1_SQ3_2 ((uint32_t)0x00100000) /*!< ADC SQ3 bit 2 */
MartinJohnson 0:c65854d98061 2899 #define ADC_SQR1_SQ3_3 ((uint32_t)0x00200000) /*!< ADC SQ3 bit 3 */
MartinJohnson 0:c65854d98061 2900 #define ADC_SQR1_SQ3_4 ((uint32_t)0x00400000) /*!< ADC SQ3 bit 4 */
MartinJohnson 0:c65854d98061 2901
MartinJohnson 0:c65854d98061 2902 #define ADC_SQR1_SQ4 ((uint32_t)0x1F000000) /*!< ADC 4th conversion in regular sequence */
MartinJohnson 0:c65854d98061 2903 #define ADC_SQR1_SQ4_0 ((uint32_t)0x01000000) /*!< ADC SQ4 bit 0 */
MartinJohnson 0:c65854d98061 2904 #define ADC_SQR1_SQ4_1 ((uint32_t)0x02000000) /*!< ADC SQ4 bit 1 */
MartinJohnson 0:c65854d98061 2905 #define ADC_SQR1_SQ4_2 ((uint32_t)0x04000000) /*!< ADC SQ4 bit 2 */
MartinJohnson 0:c65854d98061 2906 #define ADC_SQR1_SQ4_3 ((uint32_t)0x08000000) /*!< ADC SQ4 bit 3 */
MartinJohnson 0:c65854d98061 2907 #define ADC_SQR1_SQ4_4 ((uint32_t)0x10000000) /*!< ADC SQ4 bit 4 */
MartinJohnson 0:c65854d98061 2908
MartinJohnson 0:c65854d98061 2909 /******************** Bit definition for ADC_SQR2 register ********************/
MartinJohnson 0:c65854d98061 2910 #define ADC_SQR2_SQ5 ((uint32_t)0x0000001F) /*!< ADC 5th conversion in regular sequence */
MartinJohnson 0:c65854d98061 2911 #define ADC_SQR2_SQ5_0 ((uint32_t)0x00000001) /*!< ADC SQ5 bit 0 */
MartinJohnson 0:c65854d98061 2912 #define ADC_SQR2_SQ5_1 ((uint32_t)0x00000002) /*!< ADC SQ5 bit 1 */
MartinJohnson 0:c65854d98061 2913 #define ADC_SQR2_SQ5_2 ((uint32_t)0x00000004) /*!< ADC SQ5 bit 2 */
MartinJohnson 0:c65854d98061 2914 #define ADC_SQR2_SQ5_3 ((uint32_t)0x00000008) /*!< ADC SQ5 bit 3 */
MartinJohnson 0:c65854d98061 2915 #define ADC_SQR2_SQ5_4 ((uint32_t)0x00000010) /*!< ADC SQ5 bit 4 */
MartinJohnson 0:c65854d98061 2916
MartinJohnson 0:c65854d98061 2917 #define ADC_SQR2_SQ6 ((uint32_t)0x000007C0) /*!< ADC 6th conversion in regular sequence */
MartinJohnson 0:c65854d98061 2918 #define ADC_SQR2_SQ6_0 ((uint32_t)0x00000040) /*!< ADC SQ6 bit 0 */
MartinJohnson 0:c65854d98061 2919 #define ADC_SQR2_SQ6_1 ((uint32_t)0x00000080) /*!< ADC SQ6 bit 1 */
MartinJohnson 0:c65854d98061 2920 #define ADC_SQR2_SQ6_2 ((uint32_t)0x00000100) /*!< ADC SQ6 bit 2 */
MartinJohnson 0:c65854d98061 2921 #define ADC_SQR2_SQ6_3 ((uint32_t)0x00000200) /*!< ADC SQ6 bit 3 */
MartinJohnson 0:c65854d98061 2922 #define ADC_SQR2_SQ6_4 ((uint32_t)0x00000400) /*!< ADC SQ6 bit 4 */
MartinJohnson 0:c65854d98061 2923
MartinJohnson 0:c65854d98061 2924 #define ADC_SQR2_SQ7 ((uint32_t)0x0001F000) /*!< ADC 7th conversion in regular sequence */
MartinJohnson 0:c65854d98061 2925 #define ADC_SQR2_SQ7_0 ((uint32_t)0x00001000) /*!< ADC SQ7 bit 0 */
MartinJohnson 0:c65854d98061 2926 #define ADC_SQR2_SQ7_1 ((uint32_t)0x00002000) /*!< ADC SQ7 bit 1 */
MartinJohnson 0:c65854d98061 2927 #define ADC_SQR2_SQ7_2 ((uint32_t)0x00004000) /*!< ADC SQ7 bit 2 */
MartinJohnson 0:c65854d98061 2928 #define ADC_SQR2_SQ7_3 ((uint32_t)0x00008000) /*!< ADC SQ7 bit 3 */
MartinJohnson 0:c65854d98061 2929 #define ADC_SQR2_SQ7_4 ((uint32_t)0x00010000) /*!< ADC SQ7 bit 4 */
MartinJohnson 0:c65854d98061 2930
MartinJohnson 0:c65854d98061 2931 #define ADC_SQR2_SQ8 ((uint32_t)0x007C0000) /*!< ADC 8th conversion in regular sequence */
MartinJohnson 0:c65854d98061 2932 #define ADC_SQR2_SQ8_0 ((uint32_t)0x00040000) /*!< ADC SQ8 bit 0 */
MartinJohnson 0:c65854d98061 2933 #define ADC_SQR2_SQ8_1 ((uint32_t)0x00080000) /*!< ADC SQ8 bit 1 */
MartinJohnson 0:c65854d98061 2934 #define ADC_SQR2_SQ8_2 ((uint32_t)0x00100000) /*!< ADC SQ8 bit 2 */
MartinJohnson 0:c65854d98061 2935 #define ADC_SQR2_SQ8_3 ((uint32_t)0x00200000) /*!< ADC SQ8 bit 3 */
MartinJohnson 0:c65854d98061 2936 #define ADC_SQR2_SQ8_4 ((uint32_t)0x00400000) /*!< ADC SQ8 bit 4 */
MartinJohnson 0:c65854d98061 2937
MartinJohnson 0:c65854d98061 2938 #define ADC_SQR2_SQ9 ((uint32_t)0x1F000000) /*!< ADC 9th conversion in regular sequence */
MartinJohnson 0:c65854d98061 2939 #define ADC_SQR2_SQ9_0 ((uint32_t)0x01000000) /*!< ADC SQ9 bit 0 */
MartinJohnson 0:c65854d98061 2940 #define ADC_SQR2_SQ9_1 ((uint32_t)0x02000000) /*!< ADC SQ9 bit 1 */
MartinJohnson 0:c65854d98061 2941 #define ADC_SQR2_SQ9_2 ((uint32_t)0x04000000) /*!< ADC SQ9 bit 2 */
MartinJohnson 0:c65854d98061 2942 #define ADC_SQR2_SQ9_3 ((uint32_t)0x08000000) /*!< ADC SQ9 bit 3 */
MartinJohnson 0:c65854d98061 2943 #define ADC_SQR2_SQ9_4 ((uint32_t)0x10000000) /*!< ADC SQ9 bit 4 */
MartinJohnson 0:c65854d98061 2944
MartinJohnson 0:c65854d98061 2945 /******************** Bit definition for ADC_SQR3 register ********************/
MartinJohnson 0:c65854d98061 2946 #define ADC_SQR3_SQ10 ((uint32_t)0x0000001F) /*!< ADC 10th conversion in regular sequence */
MartinJohnson 0:c65854d98061 2947 #define ADC_SQR3_SQ10_0 ((uint32_t)0x00000001) /*!< ADC SQ10 bit 0 */
MartinJohnson 0:c65854d98061 2948 #define ADC_SQR3_SQ10_1 ((uint32_t)0x00000002) /*!< ADC SQ10 bit 1 */
MartinJohnson 0:c65854d98061 2949 #define ADC_SQR3_SQ10_2 ((uint32_t)0x00000004) /*!< ADC SQ10 bit 2 */
MartinJohnson 0:c65854d98061 2950 #define ADC_SQR3_SQ10_3 ((uint32_t)0x00000008) /*!< ADC SQ10 bit 3 */
MartinJohnson 0:c65854d98061 2951 #define ADC_SQR3_SQ10_4 ((uint32_t)0x00000010) /*!< ADC SQ10 bit 4 */
MartinJohnson 0:c65854d98061 2952
MartinJohnson 0:c65854d98061 2953 #define ADC_SQR3_SQ11 ((uint32_t)0x000007C0) /*!< ADC 11th conversion in regular sequence */
MartinJohnson 0:c65854d98061 2954 #define ADC_SQR3_SQ11_0 ((uint32_t)0x00000040) /*!< ADC SQ11 bit 0 */
MartinJohnson 0:c65854d98061 2955 #define ADC_SQR3_SQ11_1 ((uint32_t)0x00000080) /*!< ADC SQ11 bit 1 */
MartinJohnson 0:c65854d98061 2956 #define ADC_SQR3_SQ11_2 ((uint32_t)0x00000100) /*!< ADC SQ11 bit 2 */
MartinJohnson 0:c65854d98061 2957 #define ADC_SQR3_SQ11_3 ((uint32_t)0x00000200) /*!< ADC SQ11 bit 3 */
MartinJohnson 0:c65854d98061 2958 #define ADC_SQR3_SQ11_4 ((uint32_t)0x00000400) /*!< ADC SQ11 bit 4 */
MartinJohnson 0:c65854d98061 2959
MartinJohnson 0:c65854d98061 2960 #define ADC_SQR3_SQ12 ((uint32_t)0x0001F000) /*!< ADC 12th conversion in regular sequence */
MartinJohnson 0:c65854d98061 2961 #define ADC_SQR3_SQ12_0 ((uint32_t)0x00001000) /*!< ADC SQ12 bit 0 */
MartinJohnson 0:c65854d98061 2962 #define ADC_SQR3_SQ12_1 ((uint32_t)0x00002000) /*!< ADC SQ12 bit 1 */
MartinJohnson 0:c65854d98061 2963 #define ADC_SQR3_SQ12_2 ((uint32_t)0x00004000) /*!< ADC SQ12 bit 2 */
MartinJohnson 0:c65854d98061 2964 #define ADC_SQR3_SQ12_3 ((uint32_t)0x00008000) /*!< ADC SQ12 bit 3 */
MartinJohnson 0:c65854d98061 2965 #define ADC_SQR3_SQ12_4 ((uint32_t)0x00010000) /*!< ADC SQ12 bit 4 */
MartinJohnson 0:c65854d98061 2966
MartinJohnson 0:c65854d98061 2967 #define ADC_SQR3_SQ13 ((uint32_t)0x007C0000) /*!< ADC 13th conversion in regular sequence */
MartinJohnson 0:c65854d98061 2968 #define ADC_SQR3_SQ13_0 ((uint32_t)0x00040000) /*!< ADC SQ13 bit 0 */
MartinJohnson 0:c65854d98061 2969 #define ADC_SQR3_SQ13_1 ((uint32_t)0x00080000) /*!< ADC SQ13 bit 1 */
MartinJohnson 0:c65854d98061 2970 #define ADC_SQR3_SQ13_2 ((uint32_t)0x00100000) /*!< ADC SQ13 bit 2 */
MartinJohnson 0:c65854d98061 2971 #define ADC_SQR3_SQ13_3 ((uint32_t)0x00200000) /*!< ADC SQ13 bit 3 */
MartinJohnson 0:c65854d98061 2972 #define ADC_SQR3_SQ13_4 ((uint32_t)0x00400000) /*!< ADC SQ13 bit 4 */
MartinJohnson 0:c65854d98061 2973
MartinJohnson 0:c65854d98061 2974 #define ADC_SQR3_SQ14 ((uint32_t)0x1F000000) /*!< ADC 14th conversion in regular sequence */
MartinJohnson 0:c65854d98061 2975 #define ADC_SQR3_SQ14_0 ((uint32_t)0x01000000) /*!< ADC SQ14 bit 0 */
MartinJohnson 0:c65854d98061 2976 #define ADC_SQR3_SQ14_1 ((uint32_t)0x02000000) /*!< ADC SQ14 bit 1 */
MartinJohnson 0:c65854d98061 2977 #define ADC_SQR3_SQ14_2 ((uint32_t)0x04000000) /*!< ADC SQ14 bit 2 */
MartinJohnson 0:c65854d98061 2978 #define ADC_SQR3_SQ14_3 ((uint32_t)0x08000000) /*!< ADC SQ14 bit 3 */
MartinJohnson 0:c65854d98061 2979 #define ADC_SQR3_SQ14_4 ((uint32_t)0x10000000) /*!< ADC SQ14 bit 4 */
MartinJohnson 0:c65854d98061 2980
MartinJohnson 0:c65854d98061 2981 /******************** Bit definition for ADC_SQR4 register ********************/
MartinJohnson 0:c65854d98061 2982 #define ADC_SQR4_SQ15 ((uint32_t)0x0000001F) /*!< ADC 15th conversion in regular sequence */
MartinJohnson 0:c65854d98061 2983 #define ADC_SQR4_SQ15_0 ((uint32_t)0x00000001) /*!< ADC SQ15 bit 0 */
MartinJohnson 0:c65854d98061 2984 #define ADC_SQR4_SQ15_1 ((uint32_t)0x00000002) /*!< ADC SQ15 bit 1 */
MartinJohnson 0:c65854d98061 2985 #define ADC_SQR4_SQ15_2 ((uint32_t)0x00000004) /*!< ADC SQ15 bit 2 */
MartinJohnson 0:c65854d98061 2986 #define ADC_SQR4_SQ15_3 ((uint32_t)0x00000008) /*!< ADC SQ15 bit 3 */
MartinJohnson 0:c65854d98061 2987 #define ADC_SQR4_SQ15_4 ((uint32_t)0x00000010) /*!< ADC SQ105 bit 4 */
MartinJohnson 0:c65854d98061 2988
MartinJohnson 0:c65854d98061 2989 #define ADC_SQR4_SQ16 ((uint32_t)0x000007C0) /*!< ADC 16th conversion in regular sequence */
MartinJohnson 0:c65854d98061 2990 #define ADC_SQR4_SQ16_0 ((uint32_t)0x00000040) /*!< ADC SQ16 bit 0 */
MartinJohnson 0:c65854d98061 2991 #define ADC_SQR4_SQ16_1 ((uint32_t)0x00000080) /*!< ADC SQ16 bit 1 */
MartinJohnson 0:c65854d98061 2992 #define ADC_SQR4_SQ16_2 ((uint32_t)0x00000100) /*!< ADC SQ16 bit 2 */
MartinJohnson 0:c65854d98061 2993 #define ADC_SQR4_SQ16_3 ((uint32_t)0x00000200) /*!< ADC SQ16 bit 3 */
MartinJohnson 0:c65854d98061 2994 #define ADC_SQR4_SQ16_4 ((uint32_t)0x00000400) /*!< ADC SQ16 bit 4 */
MartinJohnson 0:c65854d98061 2995
MartinJohnson 0:c65854d98061 2996 /* these defines are maintained for legacy purpose */
MartinJohnson 0:c65854d98061 2997 #define ADC_SQR3_SQ15 ADC_SQR4_SQ15 /*!< ADC 15th conversion in regular sequence */
MartinJohnson 0:c65854d98061 2998 #define ADC_SQR3_SQ15_0 ADC_SQR4_SQ15_0 /*!< ADC SQ15 bit 0 */
MartinJohnson 0:c65854d98061 2999 #define ADC_SQR3_SQ15_1 ADC_SQR4_SQ15_1 /*!< ADC SQ15 bit 1 */
MartinJohnson 0:c65854d98061 3000 #define ADC_SQR3_SQ15_2 ADC_SQR4_SQ15_2 /*!< ADC SQ15 bit 2 */
MartinJohnson 0:c65854d98061 3001 #define ADC_SQR3_SQ15_3 ADC_SQR4_SQ15_3 /*!< ADC SQ15 bit 3 */
MartinJohnson 0:c65854d98061 3002 #define ADC_SQR3_SQ15_4 ADC_SQR4_SQ15_4 /*!< ADC SQ105 bit 4 */
MartinJohnson 0:c65854d98061 3003
MartinJohnson 0:c65854d98061 3004 #define ADC_SQR3_SQ16 ADC_SQR4_SQ16 /*!< ADC 16th conversion in regular sequence */
MartinJohnson 0:c65854d98061 3005 #define ADC_SQR3_SQ16_0 ADC_SQR4_SQ16_0 /*!< ADC SQ16 bit 0 */
MartinJohnson 0:c65854d98061 3006 #define ADC_SQR3_SQ16_1 ADC_SQR4_SQ16_1 /*!< ADC SQ16 bit 1 */
MartinJohnson 0:c65854d98061 3007 #define ADC_SQR3_SQ16_2 ADC_SQR4_SQ16_2 /*!< ADC SQ16 bit 2 */
MartinJohnson 0:c65854d98061 3008 #define ADC_SQR3_SQ16_3 ADC_SQR4_SQ16_3 /*!< ADC SQ16 bit 3 */
MartinJohnson 0:c65854d98061 3009 #define ADC_SQR3_SQ16_4 ADC_SQR4_SQ16_4 /*!< ADC SQ16 bit 4 */
MartinJohnson 0:c65854d98061 3010 /******************** Bit definition for ADC_DR register ********************/
MartinJohnson 0:c65854d98061 3011 #define ADC_DR_RDATA ((uint32_t)0x0000FFFF) /*!< ADC regular Data converted */
MartinJohnson 0:c65854d98061 3012 #define ADC_DR_RDATA_0 ((uint32_t)0x00000001) /*!< ADC RDATA bit 0 */
MartinJohnson 0:c65854d98061 3013 #define ADC_DR_RDATA_1 ((uint32_t)0x00000002) /*!< ADC RDATA bit 1 */
MartinJohnson 0:c65854d98061 3014 #define ADC_DR_RDATA_2 ((uint32_t)0x00000004) /*!< ADC RDATA bit 2 */
MartinJohnson 0:c65854d98061 3015 #define ADC_DR_RDATA_3 ((uint32_t)0x00000008) /*!< ADC RDATA bit 3 */
MartinJohnson 0:c65854d98061 3016 #define ADC_DR_RDATA_4 ((uint32_t)0x00000010) /*!< ADC RDATA bit 4 */
MartinJohnson 0:c65854d98061 3017 #define ADC_DR_RDATA_5 ((uint32_t)0x00000020) /*!< ADC RDATA bit 5 */
MartinJohnson 0:c65854d98061 3018 #define ADC_DR_RDATA_6 ((uint32_t)0x00000040) /*!< ADC RDATA bit 6 */
MartinJohnson 0:c65854d98061 3019 #define ADC_DR_RDATA_7 ((uint32_t)0x00000080) /*!< ADC RDATA bit 7 */
MartinJohnson 0:c65854d98061 3020 #define ADC_DR_RDATA_8 ((uint32_t)0x00000100) /*!< ADC RDATA bit 8 */
MartinJohnson 0:c65854d98061 3021 #define ADC_DR_RDATA_9 ((uint32_t)0x00000200) /*!< ADC RDATA bit 9 */
MartinJohnson 0:c65854d98061 3022 #define ADC_DR_RDATA_10 ((uint32_t)0x00000400) /*!< ADC RDATA bit 10 */
MartinJohnson 0:c65854d98061 3023 #define ADC_DR_RDATA_11 ((uint32_t)0x00000800) /*!< ADC RDATA bit 11 */
MartinJohnson 0:c65854d98061 3024 #define ADC_DR_RDATA_12 ((uint32_t)0x00001000) /*!< ADC RDATA bit 12 */
MartinJohnson 0:c65854d98061 3025 #define ADC_DR_RDATA_13 ((uint32_t)0x00002000) /*!< ADC RDATA bit 13 */
MartinJohnson 0:c65854d98061 3026 #define ADC_DR_RDATA_14 ((uint32_t)0x00004000) /*!< ADC RDATA bit 14 */
MartinJohnson 0:c65854d98061 3027 #define ADC_DR_RDATA_15 ((uint32_t)0x00008000) /*!< ADC RDATA bit 15 */
MartinJohnson 0:c65854d98061 3028
MartinJohnson 0:c65854d98061 3029 /******************** Bit definition for ADC_JSQR register ********************/
MartinJohnson 0:c65854d98061 3030 #define ADC_JSQR_JL ((uint32_t)0x00000003) /*!< ADC injected channel sequence length */
MartinJohnson 0:c65854d98061 3031 #define ADC_JSQR_JL_0 ((uint32_t)0x00000001) /*!< ADC JL bit 0 */
MartinJohnson 0:c65854d98061 3032 #define ADC_JSQR_JL_1 ((uint32_t)0x00000002) /*!< ADC JL bit 1 */
MartinJohnson 0:c65854d98061 3033
MartinJohnson 0:c65854d98061 3034 #define ADC_JSQR_JEXTSEL ((uint32_t)0x0000003C) /*!< ADC external trigger selection for injected group */
MartinJohnson 0:c65854d98061 3035 #define ADC_JSQR_JEXTSEL_0 ((uint32_t)0x00000004) /*!< ADC JEXTSEL bit 0 */
MartinJohnson 0:c65854d98061 3036 #define ADC_JSQR_JEXTSEL_1 ((uint32_t)0x00000008) /*!< ADC JEXTSEL bit 1 */
MartinJohnson 0:c65854d98061 3037 #define ADC_JSQR_JEXTSEL_2 ((uint32_t)0x00000010) /*!< ADC JEXTSEL bit 2 */
MartinJohnson 0:c65854d98061 3038 #define ADC_JSQR_JEXTSEL_3 ((uint32_t)0x00000020) /*!< ADC JEXTSEL bit 3 */
MartinJohnson 0:c65854d98061 3039
MartinJohnson 0:c65854d98061 3040 #define ADC_JSQR_JEXTEN ((uint32_t)0x000000C0) /*!< ADC external trigger enable and polarity selection for injected channels */
MartinJohnson 0:c65854d98061 3041 #define ADC_JSQR_JEXTEN_0 ((uint32_t)0x00000040) /*!< ADC JEXTEN bit 0 */
MartinJohnson 0:c65854d98061 3042 #define ADC_JSQR_JEXTEN_1 ((uint32_t)0x00000080) /*!< ADC JEXTEN bit 1 */
MartinJohnson 0:c65854d98061 3043
MartinJohnson 0:c65854d98061 3044 #define ADC_JSQR_JSQ1 ((uint32_t)0x00001F00) /*!< ADC 1st conversion in injected sequence */
MartinJohnson 0:c65854d98061 3045 #define ADC_JSQR_JSQ1_0 ((uint32_t)0x00000100) /*!< ADC JSQ1 bit 0 */
MartinJohnson 0:c65854d98061 3046 #define ADC_JSQR_JSQ1_1 ((uint32_t)0x00000200) /*!< ADC JSQ1 bit 1 */
MartinJohnson 0:c65854d98061 3047 #define ADC_JSQR_JSQ1_2 ((uint32_t)0x00000400) /*!< ADC JSQ1 bit 2 */
MartinJohnson 0:c65854d98061 3048 #define ADC_JSQR_JSQ1_3 ((uint32_t)0x00000800) /*!< ADC JSQ1 bit 3 */
MartinJohnson 0:c65854d98061 3049 #define ADC_JSQR_JSQ1_4 ((uint32_t)0x00001000) /*!< ADC JSQ1 bit 4 */
MartinJohnson 0:c65854d98061 3050
MartinJohnson 0:c65854d98061 3051 #define ADC_JSQR_JSQ2 ((uint32_t)0x0007C000) /*!< ADC 2nd conversion in injected sequence */
MartinJohnson 0:c65854d98061 3052 #define ADC_JSQR_JSQ2_0 ((uint32_t)0x00004000) /*!< ADC JSQ2 bit 0 */
MartinJohnson 0:c65854d98061 3053 #define ADC_JSQR_JSQ2_1 ((uint32_t)0x00008000) /*!< ADC JSQ2 bit 1 */
MartinJohnson 0:c65854d98061 3054 #define ADC_JSQR_JSQ2_2 ((uint32_t)0x00010000) /*!< ADC JSQ2 bit 2 */
MartinJohnson 0:c65854d98061 3055 #define ADC_JSQR_JSQ2_3 ((uint32_t)0x00020000) /*!< ADC JSQ2 bit 3 */
MartinJohnson 0:c65854d98061 3056 #define ADC_JSQR_JSQ2_4 ((uint32_t)0x00040000) /*!< ADC JSQ2 bit 4 */
MartinJohnson 0:c65854d98061 3057
MartinJohnson 0:c65854d98061 3058 #define ADC_JSQR_JSQ3 ((uint32_t)0x01F00000) /*!< ADC 3rd conversion in injected sequence */
MartinJohnson 0:c65854d98061 3059 #define ADC_JSQR_JSQ3_0 ((uint32_t)0x00100000) /*!< ADC JSQ3 bit 0 */
MartinJohnson 0:c65854d98061 3060 #define ADC_JSQR_JSQ3_1 ((uint32_t)0x00200000) /*!< ADC JSQ3 bit 1 */
MartinJohnson 0:c65854d98061 3061 #define ADC_JSQR_JSQ3_2 ((uint32_t)0x00400000) /*!< ADC JSQ3 bit 2 */
MartinJohnson 0:c65854d98061 3062 #define ADC_JSQR_JSQ3_3 ((uint32_t)0x00800000) /*!< ADC JSQ3 bit 3 */
MartinJohnson 0:c65854d98061 3063 #define ADC_JSQR_JSQ3_4 ((uint32_t)0x01000000) /*!< ADC JSQ3 bit 4 */
MartinJohnson 0:c65854d98061 3064
MartinJohnson 0:c65854d98061 3065 #define ADC_JSQR_JSQ4 ((uint32_t)0x7C000000) /*!< ADC 4th conversion in injected sequence */
MartinJohnson 0:c65854d98061 3066 #define ADC_JSQR_JSQ4_0 ((uint32_t)0x04000000) /*!< ADC JSQ4 bit 0 */
MartinJohnson 0:c65854d98061 3067 #define ADC_JSQR_JSQ4_1 ((uint32_t)0x08000000) /*!< ADC JSQ4 bit 1 */
MartinJohnson 0:c65854d98061 3068 #define ADC_JSQR_JSQ4_2 ((uint32_t)0x10000000) /*!< ADC JSQ4 bit 2 */
MartinJohnson 0:c65854d98061 3069 #define ADC_JSQR_JSQ4_3 ((uint32_t)0x20000000) /*!< ADC JSQ4 bit 3 */
MartinJohnson 0:c65854d98061 3070 #define ADC_JSQR_JSQ4_4 ((uint32_t)0x40000000) /*!< ADC JSQ4 bit 4 */
MartinJohnson 0:c65854d98061 3071
MartinJohnson 0:c65854d98061 3072 /******************** Bit definition for ADC_OFR1 register ********************/
MartinJohnson 0:c65854d98061 3073 #define ADC_OFR1_OFFSET1 ((uint32_t)0x00000FFF) /*!< ADC data offset 1 for channel programmed into bits OFFSET1_CH[4:0] */
MartinJohnson 0:c65854d98061 3074 #define ADC_OFR1_OFFSET1_0 ((uint32_t)0x00000001) /*!< ADC OFFSET1 bit 0 */
MartinJohnson 0:c65854d98061 3075 #define ADC_OFR1_OFFSET1_1 ((uint32_t)0x00000002) /*!< ADC OFFSET1 bit 1 */
MartinJohnson 0:c65854d98061 3076 #define ADC_OFR1_OFFSET1_2 ((uint32_t)0x00000004) /*!< ADC OFFSET1 bit 2 */
MartinJohnson 0:c65854d98061 3077 #define ADC_OFR1_OFFSET1_3 ((uint32_t)0x00000008) /*!< ADC OFFSET1 bit 3 */
MartinJohnson 0:c65854d98061 3078 #define ADC_OFR1_OFFSET1_4 ((uint32_t)0x00000010) /*!< ADC OFFSET1 bit 4 */
MartinJohnson 0:c65854d98061 3079 #define ADC_OFR1_OFFSET1_5 ((uint32_t)0x00000020) /*!< ADC OFFSET1 bit 5 */
MartinJohnson 0:c65854d98061 3080 #define ADC_OFR1_OFFSET1_6 ((uint32_t)0x00000040) /*!< ADC OFFSET1 bit 6 */
MartinJohnson 0:c65854d98061 3081 #define ADC_OFR1_OFFSET1_7 ((uint32_t)0x00000080) /*!< ADC OFFSET1 bit 7 */
MartinJohnson 0:c65854d98061 3082 #define ADC_OFR1_OFFSET1_8 ((uint32_t)0x00000100) /*!< ADC OFFSET1 bit 8 */
MartinJohnson 0:c65854d98061 3083 #define ADC_OFR1_OFFSET1_9 ((uint32_t)0x00000200) /*!< ADC OFFSET1 bit 9 */
MartinJohnson 0:c65854d98061 3084 #define ADC_OFR1_OFFSET1_10 ((uint32_t)0x00000400) /*!< ADC OFFSET1 bit 10 */
MartinJohnson 0:c65854d98061 3085 #define ADC_OFR1_OFFSET1_11 ((uint32_t)0x00000800) /*!< ADC OFFSET1 bit 11 */
MartinJohnson 0:c65854d98061 3086
MartinJohnson 0:c65854d98061 3087 #define ADC_OFR1_OFFSET1_CH ((uint32_t)0x7C000000) /*!< ADC Channel selection for the data offset 1 */
MartinJohnson 0:c65854d98061 3088 #define ADC_OFR1_OFFSET1_CH_0 ((uint32_t)0x04000000) /*!< ADC OFFSET1_CH bit 0 */
MartinJohnson 0:c65854d98061 3089 #define ADC_OFR1_OFFSET1_CH_1 ((uint32_t)0x08000000) /*!< ADC OFFSET1_CH bit 1 */
MartinJohnson 0:c65854d98061 3090 #define ADC_OFR1_OFFSET1_CH_2 ((uint32_t)0x10000000) /*!< ADC OFFSET1_CH bit 2 */
MartinJohnson 0:c65854d98061 3091 #define ADC_OFR1_OFFSET1_CH_3 ((uint32_t)0x20000000) /*!< ADC OFFSET1_CH bit 3 */
MartinJohnson 0:c65854d98061 3092 #define ADC_OFR1_OFFSET1_CH_4 ((uint32_t)0x40000000) /*!< ADC OFFSET1_CH bit 4 */
MartinJohnson 0:c65854d98061 3093
MartinJohnson 0:c65854d98061 3094 #define ADC_OFR1_OFFSET1_EN ((uint32_t)0x80000000) /*!< ADC offset 1 enable */
MartinJohnson 0:c65854d98061 3095
MartinJohnson 0:c65854d98061 3096 /******************** Bit definition for ADC_OFR2 register ********************/
MartinJohnson 0:c65854d98061 3097 #define ADC_OFR2_OFFSET2 ((uint32_t)0x00000FFF) /*!< ADC data offset 2 for channel programmed into bits OFFSET2_CH[4:0] */
MartinJohnson 0:c65854d98061 3098 #define ADC_OFR2_OFFSET2_0 ((uint32_t)0x00000001) /*!< ADC OFFSET2 bit 0 */
MartinJohnson 0:c65854d98061 3099 #define ADC_OFR2_OFFSET2_1 ((uint32_t)0x00000002) /*!< ADC OFFSET2 bit 1 */
MartinJohnson 0:c65854d98061 3100 #define ADC_OFR2_OFFSET2_2 ((uint32_t)0x00000004) /*!< ADC OFFSET2 bit 2 */
MartinJohnson 0:c65854d98061 3101 #define ADC_OFR2_OFFSET2_3 ((uint32_t)0x00000008) /*!< ADC OFFSET2 bit 3 */
MartinJohnson 0:c65854d98061 3102 #define ADC_OFR2_OFFSET2_4 ((uint32_t)0x00000010) /*!< ADC OFFSET2 bit 4 */
MartinJohnson 0:c65854d98061 3103 #define ADC_OFR2_OFFSET2_5 ((uint32_t)0x00000020) /*!< ADC OFFSET2 bit 5 */
MartinJohnson 0:c65854d98061 3104 #define ADC_OFR2_OFFSET2_6 ((uint32_t)0x00000040) /*!< ADC OFFSET2 bit 6 */
MartinJohnson 0:c65854d98061 3105 #define ADC_OFR2_OFFSET2_7 ((uint32_t)0x00000080) /*!< ADC OFFSET2 bit 7 */
MartinJohnson 0:c65854d98061 3106 #define ADC_OFR2_OFFSET2_8 ((uint32_t)0x00000100) /*!< ADC OFFSET2 bit 8 */
MartinJohnson 0:c65854d98061 3107 #define ADC_OFR2_OFFSET2_9 ((uint32_t)0x00000200) /*!< ADC OFFSET2 bit 9 */
MartinJohnson 0:c65854d98061 3108 #define ADC_OFR2_OFFSET2_10 ((uint32_t)0x00000400) /*!< ADC OFFSET2 bit 10 */
MartinJohnson 0:c65854d98061 3109 #define ADC_OFR2_OFFSET2_11 ((uint32_t)0x00000800) /*!< ADC OFFSET2 bit 11 */
MartinJohnson 0:c65854d98061 3110
MartinJohnson 0:c65854d98061 3111 #define ADC_OFR2_OFFSET2_CH ((uint32_t)0x7C000000) /*!< ADC Channel selection for the data offset 2 */
MartinJohnson 0:c65854d98061 3112 #define ADC_OFR2_OFFSET2_CH_0 ((uint32_t)0x04000000) /*!< ADC OFFSET2_CH bit 0 */
MartinJohnson 0:c65854d98061 3113 #define ADC_OFR2_OFFSET2_CH_1 ((uint32_t)0x08000000) /*!< ADC OFFSET2_CH bit 1 */
MartinJohnson 0:c65854d98061 3114 #define ADC_OFR2_OFFSET2_CH_2 ((uint32_t)0x10000000) /*!< ADC OFFSET2_CH bit 2 */
MartinJohnson 0:c65854d98061 3115 #define ADC_OFR2_OFFSET2_CH_3 ((uint32_t)0x20000000) /*!< ADC OFFSET2_CH bit 3 */
MartinJohnson 0:c65854d98061 3116 #define ADC_OFR2_OFFSET2_CH_4 ((uint32_t)0x40000000) /*!< ADC OFFSET2_CH bit 4 */
MartinJohnson 0:c65854d98061 3117
MartinJohnson 0:c65854d98061 3118 #define ADC_OFR2_OFFSET2_EN ((uint32_t)0x80000000) /*!< ADC offset 2 enable */
MartinJohnson 0:c65854d98061 3119
MartinJohnson 0:c65854d98061 3120 /******************** Bit definition for ADC_OFR3 register ********************/
MartinJohnson 0:c65854d98061 3121 #define ADC_OFR3_OFFSET3 ((uint32_t)0x00000FFF) /*!< ADC data offset 3 for channel programmed into bits OFFSET3_CH[4:0] */
MartinJohnson 0:c65854d98061 3122 #define ADC_OFR3_OFFSET3_0 ((uint32_t)0x00000001) /*!< ADC OFFSET3 bit 0 */
MartinJohnson 0:c65854d98061 3123 #define ADC_OFR3_OFFSET3_1 ((uint32_t)0x00000002) /*!< ADC OFFSET3 bit 1 */
MartinJohnson 0:c65854d98061 3124 #define ADC_OFR3_OFFSET3_2 ((uint32_t)0x00000004) /*!< ADC OFFSET3 bit 2 */
MartinJohnson 0:c65854d98061 3125 #define ADC_OFR3_OFFSET3_3 ((uint32_t)0x00000008) /*!< ADC OFFSET3 bit 3 */
MartinJohnson 0:c65854d98061 3126 #define ADC_OFR3_OFFSET3_4 ((uint32_t)0x00000010) /*!< ADC OFFSET3 bit 4 */
MartinJohnson 0:c65854d98061 3127 #define ADC_OFR3_OFFSET3_5 ((uint32_t)0x00000020) /*!< ADC OFFSET3 bit 5 */
MartinJohnson 0:c65854d98061 3128 #define ADC_OFR3_OFFSET3_6 ((uint32_t)0x00000040) /*!< ADC OFFSET3 bit 6 */
MartinJohnson 0:c65854d98061 3129 #define ADC_OFR3_OFFSET3_7 ((uint32_t)0x00000080) /*!< ADC OFFSET3 bit 7 */
MartinJohnson 0:c65854d98061 3130 #define ADC_OFR3_OFFSET3_8 ((uint32_t)0x00000100) /*!< ADC OFFSET3 bit 8 */
MartinJohnson 0:c65854d98061 3131 #define ADC_OFR3_OFFSET3_9 ((uint32_t)0x00000200) /*!< ADC OFFSET3 bit 9 */
MartinJohnson 0:c65854d98061 3132 #define ADC_OFR3_OFFSET3_10 ((uint32_t)0x00000400) /*!< ADC OFFSET3 bit 10 */
MartinJohnson 0:c65854d98061 3133 #define ADC_OFR3_OFFSET3_11 ((uint32_t)0x00000800) /*!< ADC OFFSET3 bit 11 */
MartinJohnson 0:c65854d98061 3134
MartinJohnson 0:c65854d98061 3135 #define ADC_OFR3_OFFSET3_CH ((uint32_t)0x7C000000) /*!< ADC Channel selection for the data offset 3 */
MartinJohnson 0:c65854d98061 3136 #define ADC_OFR3_OFFSET3_CH_0 ((uint32_t)0x04000000) /*!< ADC OFFSET3_CH bit 0 */
MartinJohnson 0:c65854d98061 3137 #define ADC_OFR3_OFFSET3_CH_1 ((uint32_t)0x08000000) /*!< ADC OFFSET3_CH bit 1 */
MartinJohnson 0:c65854d98061 3138 #define ADC_OFR3_OFFSET3_CH_2 ((uint32_t)0x10000000) /*!< ADC OFFSET3_CH bit 2 */
MartinJohnson 0:c65854d98061 3139 #define ADC_OFR3_OFFSET3_CH_3 ((uint32_t)0x20000000) /*!< ADC OFFSET3_CH bit 3 */
MartinJohnson 0:c65854d98061 3140 #define ADC_OFR3_OFFSET3_CH_4 ((uint32_t)0x40000000) /*!< ADC OFFSET3_CH bit 4 */
MartinJohnson 0:c65854d98061 3141
MartinJohnson 0:c65854d98061 3142 #define ADC_OFR3_OFFSET3_EN ((uint32_t)0x80000000) /*!< ADC offset 3 enable */
MartinJohnson 0:c65854d98061 3143
MartinJohnson 0:c65854d98061 3144 /******************** Bit definition for ADC_OFR4 register ********************/
MartinJohnson 0:c65854d98061 3145 #define ADC_OFR4_OFFSET4 ((uint32_t)0x00000FFF) /*!< ADC data offset 4 for channel programmed into bits OFFSET4_CH[4:0] */
MartinJohnson 0:c65854d98061 3146 #define ADC_OFR4_OFFSET4_0 ((uint32_t)0x00000001) /*!< ADC OFFSET4 bit 0 */
MartinJohnson 0:c65854d98061 3147 #define ADC_OFR4_OFFSET4_1 ((uint32_t)0x00000002) /*!< ADC OFFSET4 bit 1 */
MartinJohnson 0:c65854d98061 3148 #define ADC_OFR4_OFFSET4_2 ((uint32_t)0x00000004) /*!< ADC OFFSET4 bit 2 */
MartinJohnson 0:c65854d98061 3149 #define ADC_OFR4_OFFSET4_3 ((uint32_t)0x00000008) /*!< ADC OFFSET4 bit 3 */
MartinJohnson 0:c65854d98061 3150 #define ADC_OFR4_OFFSET4_4 ((uint32_t)0x00000010) /*!< ADC OFFSET4 bit 4 */
MartinJohnson 0:c65854d98061 3151 #define ADC_OFR4_OFFSET4_5 ((uint32_t)0x00000020) /*!< ADC OFFSET4 bit 5 */
MartinJohnson 0:c65854d98061 3152 #define ADC_OFR4_OFFSET4_6 ((uint32_t)0x00000040) /*!< ADC OFFSET4 bit 6 */
MartinJohnson 0:c65854d98061 3153 #define ADC_OFR4_OFFSET4_7 ((uint32_t)0x00000080) /*!< ADC OFFSET4 bit 7 */
MartinJohnson 0:c65854d98061 3154 #define ADC_OFR4_OFFSET4_8 ((uint32_t)0x00000100) /*!< ADC OFFSET4 bit 8 */
MartinJohnson 0:c65854d98061 3155 #define ADC_OFR4_OFFSET4_9 ((uint32_t)0x00000200) /*!< ADC OFFSET4 bit 9 */
MartinJohnson 0:c65854d98061 3156 #define ADC_OFR4_OFFSET4_10 ((uint32_t)0x00000400) /*!< ADC OFFSET4 bit 10 */
MartinJohnson 0:c65854d98061 3157 #define ADC_OFR4_OFFSET4_11 ((uint32_t)0x00000800) /*!< ADC OFFSET4 bit 11 */
MartinJohnson 0:c65854d98061 3158
MartinJohnson 0:c65854d98061 3159 #define ADC_OFR4_OFFSET4_CH ((uint32_t)0x7C000000) /*!< ADC Channel selection for the data offset 4 */
MartinJohnson 0:c65854d98061 3160 #define ADC_OFR4_OFFSET4_CH_0 ((uint32_t)0x04000000) /*!< ADC OFFSET4_CH bit 0 */
MartinJohnson 0:c65854d98061 3161 #define ADC_OFR4_OFFSET4_CH_1 ((uint32_t)0x08000000) /*!< ADC OFFSET4_CH bit 1 */
MartinJohnson 0:c65854d98061 3162 #define ADC_OFR4_OFFSET4_CH_2 ((uint32_t)0x10000000) /*!< ADC OFFSET4_CH bit 2 */
MartinJohnson 0:c65854d98061 3163 #define ADC_OFR4_OFFSET4_CH_3 ((uint32_t)0x20000000) /*!< ADC OFFSET4_CH bit 3 */
MartinJohnson 0:c65854d98061 3164 #define ADC_OFR4_OFFSET4_CH_4 ((uint32_t)0x40000000) /*!< ADC OFFSET4_CH bit 4 */
MartinJohnson 0:c65854d98061 3165
MartinJohnson 0:c65854d98061 3166 #define ADC_OFR4_OFFSET4_EN ((uint32_t)0x80000000) /*!< ADC offset 4 enable */
MartinJohnson 0:c65854d98061 3167
MartinJohnson 0:c65854d98061 3168 /******************** Bit definition for ADC_JDR1 register ********************/
MartinJohnson 0:c65854d98061 3169 #define ADC_JDR1_JDATA ((uint32_t)0x0000FFFF) /*!< ADC Injected DATA */
MartinJohnson 0:c65854d98061 3170 #define ADC_JDR1_JDATA_0 ((uint32_t)0x00000001) /*!< ADC JDATA bit 0 */
MartinJohnson 0:c65854d98061 3171 #define ADC_JDR1_JDATA_1 ((uint32_t)0x00000002) /*!< ADC JDATA bit 1 */
MartinJohnson 0:c65854d98061 3172 #define ADC_JDR1_JDATA_2 ((uint32_t)0x00000004) /*!< ADC JDATA bit 2 */
MartinJohnson 0:c65854d98061 3173 #define ADC_JDR1_JDATA_3 ((uint32_t)0x00000008) /*!< ADC JDATA bit 3 */
MartinJohnson 0:c65854d98061 3174 #define ADC_JDR1_JDATA_4 ((uint32_t)0x00000010) /*!< ADC JDATA bit 4 */
MartinJohnson 0:c65854d98061 3175 #define ADC_JDR1_JDATA_5 ((uint32_t)0x00000020) /*!< ADC JDATA bit 5 */
MartinJohnson 0:c65854d98061 3176 #define ADC_JDR1_JDATA_6 ((uint32_t)0x00000040) /*!< ADC JDATA bit 6 */
MartinJohnson 0:c65854d98061 3177 #define ADC_JDR1_JDATA_7 ((uint32_t)0x00000080) /*!< ADC JDATA bit 7 */
MartinJohnson 0:c65854d98061 3178 #define ADC_JDR1_JDATA_8 ((uint32_t)0x00000100) /*!< ADC JDATA bit 8 */
MartinJohnson 0:c65854d98061 3179 #define ADC_JDR1_JDATA_9 ((uint32_t)0x00000200) /*!< ADC JDATA bit 9 */
MartinJohnson 0:c65854d98061 3180 #define ADC_JDR1_JDATA_10 ((uint32_t)0x00000400) /*!< ADC JDATA bit 10 */
MartinJohnson 0:c65854d98061 3181 #define ADC_JDR1_JDATA_11 ((uint32_t)0x00000800) /*!< ADC JDATA bit 11 */
MartinJohnson 0:c65854d98061 3182 #define ADC_JDR1_JDATA_12 ((uint32_t)0x00001000) /*!< ADC JDATA bit 12 */
MartinJohnson 0:c65854d98061 3183 #define ADC_JDR1_JDATA_13 ((uint32_t)0x00002000) /*!< ADC JDATA bit 13 */
MartinJohnson 0:c65854d98061 3184 #define ADC_JDR1_JDATA_14 ((uint32_t)0x00004000) /*!< ADC JDATA bit 14 */
MartinJohnson 0:c65854d98061 3185 #define ADC_JDR1_JDATA_15 ((uint32_t)0x00008000) /*!< ADC JDATA bit 15 */
MartinJohnson 0:c65854d98061 3186
MartinJohnson 0:c65854d98061 3187 /******************** Bit definition for ADC_JDR2 register ********************/
MartinJohnson 0:c65854d98061 3188 #define ADC_JDR2_JDATA ((uint32_t)0x0000FFFF) /*!< ADC Injected DATA */
MartinJohnson 0:c65854d98061 3189 #define ADC_JDR2_JDATA_0 ((uint32_t)0x00000001) /*!< ADC JDATA bit 0 */
MartinJohnson 0:c65854d98061 3190 #define ADC_JDR2_JDATA_1 ((uint32_t)0x00000002) /*!< ADC JDATA bit 1 */
MartinJohnson 0:c65854d98061 3191 #define ADC_JDR2_JDATA_2 ((uint32_t)0x00000004) /*!< ADC JDATA bit 2 */
MartinJohnson 0:c65854d98061 3192 #define ADC_JDR2_JDATA_3 ((uint32_t)0x00000008) /*!< ADC JDATA bit 3 */
MartinJohnson 0:c65854d98061 3193 #define ADC_JDR2_JDATA_4 ((uint32_t)0x00000010) /*!< ADC JDATA bit 4 */
MartinJohnson 0:c65854d98061 3194 #define ADC_JDR2_JDATA_5 ((uint32_t)0x00000020) /*!< ADC JDATA bit 5 */
MartinJohnson 0:c65854d98061 3195 #define ADC_JDR2_JDATA_6 ((uint32_t)0x00000040) /*!< ADC JDATA bit 6 */
MartinJohnson 0:c65854d98061 3196 #define ADC_JDR2_JDATA_7 ((uint32_t)0x00000080) /*!< ADC JDATA bit 7 */
MartinJohnson 0:c65854d98061 3197 #define ADC_JDR2_JDATA_8 ((uint32_t)0x00000100) /*!< ADC JDATA bit 8 */
MartinJohnson 0:c65854d98061 3198 #define ADC_JDR2_JDATA_9 ((uint32_t)0x00000200) /*!< ADC JDATA bit 9 */
MartinJohnson 0:c65854d98061 3199 #define ADC_JDR2_JDATA_10 ((uint32_t)0x00000400) /*!< ADC JDATA bit 10 */
MartinJohnson 0:c65854d98061 3200 #define ADC_JDR2_JDATA_11 ((uint32_t)0x00000800) /*!< ADC JDATA bit 11 */
MartinJohnson 0:c65854d98061 3201 #define ADC_JDR2_JDATA_12 ((uint32_t)0x00001000) /*!< ADC JDATA bit 12 */
MartinJohnson 0:c65854d98061 3202 #define ADC_JDR2_JDATA_13 ((uint32_t)0x00002000) /*!< ADC JDATA bit 13 */
MartinJohnson 0:c65854d98061 3203 #define ADC_JDR2_JDATA_14 ((uint32_t)0x00004000) /*!< ADC JDATA bit 14 */
MartinJohnson 0:c65854d98061 3204 #define ADC_JDR2_JDATA_15 ((uint32_t)0x00008000) /*!< ADC JDATA bit 15 */
MartinJohnson 0:c65854d98061 3205
MartinJohnson 0:c65854d98061 3206 /******************** Bit definition for ADC_JDR3 register ********************/
MartinJohnson 0:c65854d98061 3207 #define ADC_JDR3_JDATA ((uint32_t)0x0000FFFF) /*!< ADC Injected DATA */
MartinJohnson 0:c65854d98061 3208 #define ADC_JDR3_JDATA_0 ((uint32_t)0x00000001) /*!< ADC JDATA bit 0 */
MartinJohnson 0:c65854d98061 3209 #define ADC_JDR3_JDATA_1 ((uint32_t)0x00000002) /*!< ADC JDATA bit 1 */
MartinJohnson 0:c65854d98061 3210 #define ADC_JDR3_JDATA_2 ((uint32_t)0x00000004) /*!< ADC JDATA bit 2 */
MartinJohnson 0:c65854d98061 3211 #define ADC_JDR3_JDATA_3 ((uint32_t)0x00000008) /*!< ADC JDATA bit 3 */
MartinJohnson 0:c65854d98061 3212 #define ADC_JDR3_JDATA_4 ((uint32_t)0x00000010) /*!< ADC JDATA bit 4 */
MartinJohnson 0:c65854d98061 3213 #define ADC_JDR3_JDATA_5 ((uint32_t)0x00000020) /*!< ADC JDATA bit 5 */
MartinJohnson 0:c65854d98061 3214 #define ADC_JDR3_JDATA_6 ((uint32_t)0x00000040) /*!< ADC JDATA bit 6 */
MartinJohnson 0:c65854d98061 3215 #define ADC_JDR3_JDATA_7 ((uint32_t)0x00000080) /*!< ADC JDATA bit 7 */
MartinJohnson 0:c65854d98061 3216 #define ADC_JDR3_JDATA_8 ((uint32_t)0x00000100) /*!< ADC JDATA bit 8 */
MartinJohnson 0:c65854d98061 3217 #define ADC_JDR3_JDATA_9 ((uint32_t)0x00000200) /*!< ADC JDATA bit 9 */
MartinJohnson 0:c65854d98061 3218 #define ADC_JDR3_JDATA_10 ((uint32_t)0x00000400) /*!< ADC JDATA bit 10 */
MartinJohnson 0:c65854d98061 3219 #define ADC_JDR3_JDATA_11 ((uint32_t)0x00000800) /*!< ADC JDATA bit 11 */
MartinJohnson 0:c65854d98061 3220 #define ADC_JDR3_JDATA_12 ((uint32_t)0x00001000) /*!< ADC JDATA bit 12 */
MartinJohnson 0:c65854d98061 3221 #define ADC_JDR3_JDATA_13 ((uint32_t)0x00002000) /*!< ADC JDATA bit 13 */
MartinJohnson 0:c65854d98061 3222 #define ADC_JDR3_JDATA_14 ((uint32_t)0x00004000) /*!< ADC JDATA bit 14 */
MartinJohnson 0:c65854d98061 3223 #define ADC_JDR3_JDATA_15 ((uint32_t)0x00008000) /*!< ADC JDATA bit 15 */
MartinJohnson 0:c65854d98061 3224
MartinJohnson 0:c65854d98061 3225 /******************** Bit definition for ADC_JDR4 register ********************/
MartinJohnson 0:c65854d98061 3226 #define ADC_JDR4_JDATA ((uint32_t)0x0000FFFF) /*!< ADC Injected DATA */
MartinJohnson 0:c65854d98061 3227 #define ADC_JDR4_JDATA_0 ((uint32_t)0x00000001) /*!< ADC JDATA bit 0 */
MartinJohnson 0:c65854d98061 3228 #define ADC_JDR4_JDATA_1 ((uint32_t)0x00000002) /*!< ADC JDATA bit 1 */
MartinJohnson 0:c65854d98061 3229 #define ADC_JDR4_JDATA_2 ((uint32_t)0x00000004) /*!< ADC JDATA bit 2 */
MartinJohnson 0:c65854d98061 3230 #define ADC_JDR4_JDATA_3 ((uint32_t)0x00000008) /*!< ADC JDATA bit 3 */
MartinJohnson 0:c65854d98061 3231 #define ADC_JDR4_JDATA_4 ((uint32_t)0x00000010) /*!< ADC JDATA bit 4 */
MartinJohnson 0:c65854d98061 3232 #define ADC_JDR4_JDATA_5 ((uint32_t)0x00000020) /*!< ADC JDATA bit 5 */
MartinJohnson 0:c65854d98061 3233 #define ADC_JDR4_JDATA_6 ((uint32_t)0x00000040) /*!< ADC JDATA bit 6 */
MartinJohnson 0:c65854d98061 3234 #define ADC_JDR4_JDATA_7 ((uint32_t)0x00000080) /*!< ADC JDATA bit 7 */
MartinJohnson 0:c65854d98061 3235 #define ADC_JDR4_JDATA_8 ((uint32_t)0x00000100) /*!< ADC JDATA bit 8 */
MartinJohnson 0:c65854d98061 3236 #define ADC_JDR4_JDATA_9 ((uint32_t)0x00000200) /*!< ADC JDATA bit 9 */
MartinJohnson 0:c65854d98061 3237 #define ADC_JDR4_JDATA_10 ((uint32_t)0x00000400) /*!< ADC JDATA bit 10 */
MartinJohnson 0:c65854d98061 3238 #define ADC_JDR4_JDATA_11 ((uint32_t)0x00000800) /*!< ADC JDATA bit 11 */
MartinJohnson 0:c65854d98061 3239 #define ADC_JDR4_JDATA_12 ((uint32_t)0x00001000) /*!< ADC JDATA bit 12 */
MartinJohnson 0:c65854d98061 3240 #define ADC_JDR4_JDATA_13 ((uint32_t)0x00002000) /*!< ADC JDATA bit 13 */
MartinJohnson 0:c65854d98061 3241 #define ADC_JDR4_JDATA_14 ((uint32_t)0x00004000) /*!< ADC JDATA bit 14 */
MartinJohnson 0:c65854d98061 3242 #define ADC_JDR4_JDATA_15 ((uint32_t)0x00008000) /*!< ADC JDATA bit 15 */
MartinJohnson 0:c65854d98061 3243
MartinJohnson 0:c65854d98061 3244 /******************** Bit definition for ADC_AWD2CR register ********************/
MartinJohnson 0:c65854d98061 3245 #define ADC_AWD2CR_AWD2CH ((uint32_t)0x0007FFFE) /*!< ADC Analog watchdog 2 channel selection */
MartinJohnson 0:c65854d98061 3246 #define ADC_AWD2CR_AWD2CH_0 ((uint32_t)0x00000002) /*!< ADC AWD2CH bit 0 */
MartinJohnson 0:c65854d98061 3247 #define ADC_AWD2CR_AWD2CH_1 ((uint32_t)0x00000004) /*!< ADC AWD2CH bit 1 */
MartinJohnson 0:c65854d98061 3248 #define ADC_AWD2CR_AWD2CH_2 ((uint32_t)0x00000008) /*!< ADC AWD2CH bit 2 */
MartinJohnson 0:c65854d98061 3249 #define ADC_AWD2CR_AWD2CH_3 ((uint32_t)0x00000010) /*!< ADC AWD2CH bit 3 */
MartinJohnson 0:c65854d98061 3250 #define ADC_AWD2CR_AWD2CH_4 ((uint32_t)0x00000020) /*!< ADC AWD2CH bit 4 */
MartinJohnson 0:c65854d98061 3251 #define ADC_AWD2CR_AWD2CH_5 ((uint32_t)0x00000040) /*!< ADC AWD2CH bit 5 */
MartinJohnson 0:c65854d98061 3252 #define ADC_AWD2CR_AWD2CH_6 ((uint32_t)0x00000080) /*!< ADC AWD2CH bit 6 */
MartinJohnson 0:c65854d98061 3253 #define ADC_AWD2CR_AWD2CH_7 ((uint32_t)0x00000100) /*!< ADC AWD2CH bit 7 */
MartinJohnson 0:c65854d98061 3254 #define ADC_AWD2CR_AWD2CH_8 ((uint32_t)0x00000200) /*!< ADC AWD2CH bit 8 */
MartinJohnson 0:c65854d98061 3255 #define ADC_AWD2CR_AWD2CH_9 ((uint32_t)0x00000400) /*!< ADC AWD2CH bit 9 */
MartinJohnson 0:c65854d98061 3256 #define ADC_AWD2CR_AWD2CH_10 ((uint32_t)0x00000800) /*!< ADC AWD2CH bit 10 */
MartinJohnson 0:c65854d98061 3257 #define ADC_AWD2CR_AWD2CH_11 ((uint32_t)0x00001000) /*!< ADC AWD2CH bit 11 */
MartinJohnson 0:c65854d98061 3258 #define ADC_AWD2CR_AWD2CH_12 ((uint32_t)0x00002000) /*!< ADC AWD2CH bit 12 */
MartinJohnson 0:c65854d98061 3259 #define ADC_AWD2CR_AWD2CH_13 ((uint32_t)0x00004000) /*!< ADC AWD2CH bit 13 */
MartinJohnson 0:c65854d98061 3260 #define ADC_AWD2CR_AWD2CH_14 ((uint32_t)0x00008000) /*!< ADC AWD2CH bit 14 */
MartinJohnson 0:c65854d98061 3261 #define ADC_AWD2CR_AWD2CH_15 ((uint32_t)0x00010000) /*!< ADC AWD2CH bit 15 */
MartinJohnson 0:c65854d98061 3262 #define ADC_AWD2CR_AWD2CH_16 ((uint32_t)0x00020000) /*!< ADC AWD2CH bit 16 */
MartinJohnson 0:c65854d98061 3263 #define ADC_AWD2CR_AWD2CH_17 ((uint32_t)0x00030000) /*!< ADC AWD2CH bit 17 */
MartinJohnson 0:c65854d98061 3264
MartinJohnson 0:c65854d98061 3265 /******************** Bit definition for ADC_AWD3CR register ********************/
MartinJohnson 0:c65854d98061 3266 #define ADC_AWD3CR_AWD3CH ((uint32_t)0x0007FFFE) /*!< ADC Analog watchdog 2 channel selection */
MartinJohnson 0:c65854d98061 3267 #define ADC_AWD3CR_AWD3CH_0 ((uint32_t)0x00000002) /*!< ADC AWD3CH bit 0 */
MartinJohnson 0:c65854d98061 3268 #define ADC_AWD3CR_AWD3CH_1 ((uint32_t)0x00000004) /*!< ADC AWD3CH bit 1 */
MartinJohnson 0:c65854d98061 3269 #define ADC_AWD3CR_AWD3CH_2 ((uint32_t)0x00000008) /*!< ADC AWD3CH bit 2 */
MartinJohnson 0:c65854d98061 3270 #define ADC_AWD3CR_AWD3CH_3 ((uint32_t)0x00000010) /*!< ADC AWD3CH bit 3 */
MartinJohnson 0:c65854d98061 3271 #define ADC_AWD3CR_AWD3CH_4 ((uint32_t)0x00000020) /*!< ADC AWD3CH bit 4 */
MartinJohnson 0:c65854d98061 3272 #define ADC_AWD3CR_AWD3CH_5 ((uint32_t)0x00000040) /*!< ADC AWD3CH bit 5 */
MartinJohnson 0:c65854d98061 3273 #define ADC_AWD3CR_AWD3CH_6 ((uint32_t)0x00000080) /*!< ADC AWD3CH bit 6 */
MartinJohnson 0:c65854d98061 3274 #define ADC_AWD3CR_AWD3CH_7 ((uint32_t)0x00000100) /*!< ADC AWD3CH bit 7 */
MartinJohnson 0:c65854d98061 3275 #define ADC_AWD3CR_AWD3CH_8 ((uint32_t)0x00000200) /*!< ADC AWD3CH bit 8 */
MartinJohnson 0:c65854d98061 3276 #define ADC_AWD3CR_AWD3CH_9 ((uint32_t)0x00000400) /*!< ADC AWD3CH bit 9 */
MartinJohnson 0:c65854d98061 3277 #define ADC_AWD3CR_AWD3CH_10 ((uint32_t)0x00000800) /*!< ADC AWD3CH bit 10 */
MartinJohnson 0:c65854d98061 3278 #define ADC_AWD3CR_AWD3CH_11 ((uint32_t)0x00001000) /*!< ADC AWD3CH bit 11 */
MartinJohnson 0:c65854d98061 3279 #define ADC_AWD3CR_AWD3CH_12 ((uint32_t)0x00002000) /*!< ADC AWD3CH bit 12 */
MartinJohnson 0:c65854d98061 3280 #define ADC_AWD3CR_AWD3CH_13 ((uint32_t)0x00004000) /*!< ADC AWD3CH bit 13 */
MartinJohnson 0:c65854d98061 3281 #define ADC_AWD3CR_AWD3CH_14 ((uint32_t)0x00008000) /*!< ADC AWD3CH bit 14 */
MartinJohnson 0:c65854d98061 3282 #define ADC_AWD3CR_AWD3CH_15 ((uint32_t)0x00010000) /*!< ADC AWD3CH bit 15 */
MartinJohnson 0:c65854d98061 3283 #define ADC_AWD3CR_AWD3CH_16 ((uint32_t)0x00020000) /*!< ADC AWD3CH bit 16 */
MartinJohnson 0:c65854d98061 3284 #define ADC_AWD3CR_AWD3CH_17 ((uint32_t)0x00030000) /*!< ADC AWD3CH bit 17 */
MartinJohnson 0:c65854d98061 3285
MartinJohnson 0:c65854d98061 3286 /******************** Bit definition for ADC_DIFSEL register ********************/
MartinJohnson 0:c65854d98061 3287 #define ADC_DIFSEL_DIFSEL ((uint32_t)0x0007FFFE) /*!< ADC differential modes for channels 1 to 18 */
MartinJohnson 0:c65854d98061 3288 #define ADC_DIFSEL_DIFSEL_0 ((uint32_t)0x00000002) /*!< ADC DIFSEL bit 0 */
MartinJohnson 0:c65854d98061 3289 #define ADC_DIFSEL_DIFSEL_1 ((uint32_t)0x00000004) /*!< ADC DIFSEL bit 1 */
MartinJohnson 0:c65854d98061 3290 #define ADC_DIFSEL_DIFSEL_2 ((uint32_t)0x00000008) /*!< ADC DIFSEL bit 2 */
MartinJohnson 0:c65854d98061 3291 #define ADC_DIFSEL_DIFSEL_3 ((uint32_t)0x00000010) /*!< ADC DIFSEL bit 3 */
MartinJohnson 0:c65854d98061 3292 #define ADC_DIFSEL_DIFSEL_4 ((uint32_t)0x00000020) /*!< ADC DIFSEL bit 4 */
MartinJohnson 0:c65854d98061 3293 #define ADC_DIFSEL_DIFSEL_5 ((uint32_t)0x00000040) /*!< ADC DIFSEL bit 5 */
MartinJohnson 0:c65854d98061 3294 #define ADC_DIFSEL_DIFSEL_6 ((uint32_t)0x00000080) /*!< ADC DIFSEL bit 6 */
MartinJohnson 0:c65854d98061 3295 #define ADC_DIFSEL_DIFSEL_7 ((uint32_t)0x00000100) /*!< ADC DIFSEL bit 7 */
MartinJohnson 0:c65854d98061 3296 #define ADC_DIFSEL_DIFSEL_8 ((uint32_t)0x00000200) /*!< ADC DIFSEL bit 8 */
MartinJohnson 0:c65854d98061 3297 #define ADC_DIFSEL_DIFSEL_9 ((uint32_t)0x00000400) /*!< ADC DIFSEL bit 9 */
MartinJohnson 0:c65854d98061 3298 #define ADC_DIFSEL_DIFSEL_10 ((uint32_t)0x00000800) /*!< ADC DIFSEL bit 10 */
MartinJohnson 0:c65854d98061 3299 #define ADC_DIFSEL_DIFSEL_11 ((uint32_t)0x00001000) /*!< ADC DIFSEL bit 11 */
MartinJohnson 0:c65854d98061 3300 #define ADC_DIFSEL_DIFSEL_12 ((uint32_t)0x00002000) /*!< ADC DIFSEL bit 12 */
MartinJohnson 0:c65854d98061 3301 #define ADC_DIFSEL_DIFSEL_13 ((uint32_t)0x00004000) /*!< ADC DIFSEL bit 13 */
MartinJohnson 0:c65854d98061 3302 #define ADC_DIFSEL_DIFSEL_14 ((uint32_t)0x00008000) /*!< ADC DIFSEL bit 14 */
MartinJohnson 0:c65854d98061 3303 #define ADC_DIFSEL_DIFSEL_15 ((uint32_t)0x00010000) /*!< ADC DIFSEL bit 15 */
MartinJohnson 0:c65854d98061 3304 #define ADC_DIFSEL_DIFSEL_16 ((uint32_t)0x00020000) /*!< ADC DIFSEL bit 16 */
MartinJohnson 0:c65854d98061 3305 #define ADC_DIFSEL_DIFSEL_17 ((uint32_t)0x00030000) /*!< ADC DIFSEL bit 17 */
MartinJohnson 0:c65854d98061 3306
MartinJohnson 0:c65854d98061 3307 /******************** Bit definition for ADC_CALFACT register ********************/
MartinJohnson 0:c65854d98061 3308 #define ADC_CALFACT_CALFACT_S ((uint32_t)0x0000007F) /*!< ADC calibration factors in single-ended mode */
MartinJohnson 0:c65854d98061 3309 #define ADC_CALFACT_CALFACT_S_0 ((uint32_t)0x00000001) /*!< ADC CALFACT_S bit 0 */
MartinJohnson 0:c65854d98061 3310 #define ADC_CALFACT_CALFACT_S_1 ((uint32_t)0x00000002) /*!< ADC CALFACT_S bit 1 */
MartinJohnson 0:c65854d98061 3311 #define ADC_CALFACT_CALFACT_S_2 ((uint32_t)0x00000004) /*!< ADC CALFACT_S bit 2 */
MartinJohnson 0:c65854d98061 3312 #define ADC_CALFACT_CALFACT_S_3 ((uint32_t)0x00000008) /*!< ADC CALFACT_S bit 3 */
MartinJohnson 0:c65854d98061 3313 #define ADC_CALFACT_CALFACT_S_4 ((uint32_t)0x00000010) /*!< ADC CALFACT_S bit 4 */
MartinJohnson 0:c65854d98061 3314 #define ADC_CALFACT_CALFACT_S_5 ((uint32_t)0x00000020) /*!< ADC CALFACT_S bit 5 */
MartinJohnson 0:c65854d98061 3315 #define ADC_CALFACT_CALFACT_S_6 ((uint32_t)0x00000040) /*!< ADC CALFACT_S bit 6 */
MartinJohnson 0:c65854d98061 3316 #define ADC_CALFACT_CALFACT_D ((uint32_t)0x007F0000) /*!< ADC calibration factors in differential mode */
MartinJohnson 0:c65854d98061 3317 #define ADC_CALFACT_CALFACT_D_0 ((uint32_t)0x00010000) /*!< ADC CALFACT_D bit 0 */
MartinJohnson 0:c65854d98061 3318 #define ADC_CALFACT_CALFACT_D_1 ((uint32_t)0x00020000) /*!< ADC CALFACT_D bit 1 */
MartinJohnson 0:c65854d98061 3319 #define ADC_CALFACT_CALFACT_D_2 ((uint32_t)0x00040000) /*!< ADC CALFACT_D bit 2 */
MartinJohnson 0:c65854d98061 3320 #define ADC_CALFACT_CALFACT_D_3 ((uint32_t)0x00080000) /*!< ADC CALFACT_D bit 3 */
MartinJohnson 0:c65854d98061 3321 #define ADC_CALFACT_CALFACT_D_4 ((uint32_t)0x00100000) /*!< ADC CALFACT_D bit 4 */
MartinJohnson 0:c65854d98061 3322 #define ADC_CALFACT_CALFACT_D_5 ((uint32_t)0x00200000) /*!< ADC CALFACT_D bit 5 */
MartinJohnson 0:c65854d98061 3323 #define ADC_CALFACT_CALFACT_D_6 ((uint32_t)0x00400000) /*!< ADC CALFACT_D bit 6 */
MartinJohnson 0:c65854d98061 3324
MartinJohnson 0:c65854d98061 3325 /************************* ADC Common registers *****************************/
MartinJohnson 0:c65854d98061 3326 /******************** Bit definition for ADC12_CSR register ********************/
MartinJohnson 0:c65854d98061 3327 #define ADC12_CSR_ADRDY_MST ((uint32_t)0x00000001) /*!< Master ADC ready */
MartinJohnson 0:c65854d98061 3328 #define ADC12_CSR_ADRDY_EOSMP_MST ((uint32_t)0x00000002) /*!< End of sampling phase flag of the master ADC */
MartinJohnson 0:c65854d98061 3329 #define ADC12_CSR_ADRDY_EOC_MST ((uint32_t)0x00000004) /*!< End of regular conversion of the master ADC */
MartinJohnson 0:c65854d98061 3330 #define ADC12_CSR_ADRDY_EOS_MST ((uint32_t)0x00000008) /*!< End of regular sequence flag of the master ADC */
MartinJohnson 0:c65854d98061 3331 #define ADC12_CSR_ADRDY_OVR_MST ((uint32_t)0x00000010) /*!< Overrun flag of the master ADC */
MartinJohnson 0:c65854d98061 3332 #define ADC12_CSR_ADRDY_JEOC_MST ((uint32_t)0x00000020) /*!< End of injected conversion of the master ADC */
MartinJohnson 0:c65854d98061 3333 #define ADC12_CSR_ADRDY_JEOS_MST ((uint32_t)0x00000040) /*!< End of injected sequence flag of the master ADC */
MartinJohnson 0:c65854d98061 3334 #define ADC12_CSR_AWD1_MST ((uint32_t)0x00000080) /*!< Analog watchdog 1 flag of the master ADC */
MartinJohnson 0:c65854d98061 3335 #define ADC12_CSR_AWD2_MST ((uint32_t)0x00000100) /*!< Analog watchdog 2 flag of the master ADC */
MartinJohnson 0:c65854d98061 3336 #define ADC12_CSR_AWD3_MST ((uint32_t)0x00000200) /*!< Analog watchdog 3 flag of the master ADC */
MartinJohnson 0:c65854d98061 3337 #define ADC12_CSR_JQOVF_MST ((uint32_t)0x00000400) /*!< Injected context queue overflow flag of the master ADC */
MartinJohnson 0:c65854d98061 3338 #define ADC12_CSR_ADRDY_SLV ((uint32_t)0x00010000) /*!< Slave ADC ready */
MartinJohnson 0:c65854d98061 3339 #define ADC12_CSR_ADRDY_EOSMP_SLV ((uint32_t)0x00020000) /*!< End of sampling phase flag of the slave ADC */
MartinJohnson 0:c65854d98061 3340 #define ADC12_CSR_ADRDY_EOC_SLV ((uint32_t)0x00040000) /*!< End of regular conversion of the slave ADC */
MartinJohnson 0:c65854d98061 3341 #define ADC12_CSR_ADRDY_EOS_SLV ((uint32_t)0x00080000) /*!< End of regular sequence flag of the slave ADC */
MartinJohnson 0:c65854d98061 3342 #define ADC12_CSR_ADRDY_OVR_SLV ((uint32_t)0x00100000) /*!< Overrun flag of the slave ADC */
MartinJohnson 0:c65854d98061 3343 #define ADC12_CSR_ADRDY_JEOC_SLV ((uint32_t)0x00200000) /*!< End of injected conversion of the slave ADC */
MartinJohnson 0:c65854d98061 3344 #define ADC12_CSR_ADRDY_JEOS_SLV ((uint32_t)0x00400000) /*!< End of injected sequence flag of the slave ADC */
MartinJohnson 0:c65854d98061 3345 #define ADC12_CSR_AWD1_SLV ((uint32_t)0x00800000) /*!< Analog watchdog 1 flag of the slave ADC */
MartinJohnson 0:c65854d98061 3346 #define ADC12_CSR_AWD2_SLV ((uint32_t)0x01000000) /*!< Analog watchdog 2 flag of the slave ADC */
MartinJohnson 0:c65854d98061 3347 #define ADC12_CSR_AWD3_SLV ((uint32_t)0x02000000) /*!< Analog watchdog 3 flag of the slave ADC */
MartinJohnson 0:c65854d98061 3348 #define ADC12_CSR_JQOVF_SLV ((uint32_t)0x04000000) /*!< Injected context queue overflow flag of the slave ADC */
MartinJohnson 0:c65854d98061 3349
MartinJohnson 0:c65854d98061 3350 /******************** Bit definition for ADC34_CSR register ********************/
MartinJohnson 0:c65854d98061 3351 #define ADC34_CSR_ADRDY_MST ((uint32_t)0x00000001) /*!< Master ADC ready */
MartinJohnson 0:c65854d98061 3352 #define ADC34_CSR_ADRDY_EOSMP_MST ((uint32_t)0x00000002) /*!< End of sampling phase flag of the master ADC */
MartinJohnson 0:c65854d98061 3353 #define ADC34_CSR_ADRDY_EOC_MST ((uint32_t)0x00000004) /*!< End of regular conversion of the master ADC */
MartinJohnson 0:c65854d98061 3354 #define ADC34_CSR_ADRDY_EOS_MST ((uint32_t)0x00000008) /*!< End of regular sequence flag of the master ADC */
MartinJohnson 0:c65854d98061 3355 #define ADC34_CSR_ADRDY_OVR_MST ((uint32_t)0x00000010) /*!< Overrun flag of the master ADC */
MartinJohnson 0:c65854d98061 3356 #define ADC34_CSR_ADRDY_JEOC_MST ((uint32_t)0x00000020) /*!< End of injected conversion of the master ADC */
MartinJohnson 0:c65854d98061 3357 #define ADC34_CSR_ADRDY_JEOS_MST ((uint32_t)0x00000040) /*!< End of injected sequence flag of the master ADC */
MartinJohnson 0:c65854d98061 3358 #define ADC34_CSR_AWD1_MST ((uint32_t)0x00000080) /*!< Analog watchdog 1 flag of the master ADC */
MartinJohnson 0:c65854d98061 3359 #define ADC34_CSR_AWD2_MST ((uint32_t)0x00000100) /*!< Analog watchdog 2 flag of the master ADC */
MartinJohnson 0:c65854d98061 3360 #define ADC34_CSR_AWD3_MST ((uint32_t)0x00000200) /*!< Analog watchdog 3 flag of the master ADC */
MartinJohnson 0:c65854d98061 3361 #define ADC34_CSR_JQOVF_MST ((uint32_t)0x00000400) /*!< Injected context queue overflow flag of the master ADC */
MartinJohnson 0:c65854d98061 3362 #define ADC34_CSR_ADRDY_SLV ((uint32_t)0x00010000) /*!< Slave ADC ready */
MartinJohnson 0:c65854d98061 3363 #define ADC34_CSR_ADRDY_EOSMP_SLV ((uint32_t)0x00020000) /*!< End of sampling phase flag of the slave ADC */
MartinJohnson 0:c65854d98061 3364 #define ADC34_CSR_ADRDY_EOC_SLV ((uint32_t)0x00040000) /*!< End of regular conversion of the slave ADC */
MartinJohnson 0:c65854d98061 3365 #define ADC34_CSR_ADRDY_EOS_SLV ((uint32_t)0x00080000) /*!< End of regular sequence flag of the slave ADC */
MartinJohnson 0:c65854d98061 3366 #define ADC12_CSR_ADRDY_OVR_SLV ((uint32_t)0x00100000) /*!< Overrun flag of the slave ADC */
MartinJohnson 0:c65854d98061 3367 #define ADC34_CSR_ADRDY_JEOC_SLV ((uint32_t)0x00200000) /*!< End of injected conversion of the slave ADC */
MartinJohnson 0:c65854d98061 3368 #define ADC34_CSR_ADRDY_JEOS_SLV ((uint32_t)0x00400000) /*!< End of injected sequence flag of the slave ADC */
MartinJohnson 0:c65854d98061 3369 #define ADC34_CSR_AWD1_SLV ((uint32_t)0x00800000) /*!< Analog watchdog 1 flag of the slave ADC */
MartinJohnson 0:c65854d98061 3370 #define ADC34_CSR_AWD2_SLV ((uint32_t)0x01000000) /*!< Analog watchdog 2 flag of the slave ADC */
MartinJohnson 0:c65854d98061 3371 #define ADC34_CSR_AWD3_SLV ((uint32_t)0x02000000) /*!< Analog watchdog 3 flag of the slave ADC */
MartinJohnson 0:c65854d98061 3372 #define ADC34_CSR_JQOVF_SLV ((uint32_t)0x04000000) /*!< Injected context queue overflow flag of the slave ADC */
MartinJohnson 0:c65854d98061 3373
MartinJohnson 0:c65854d98061 3374 /******************** Bit definition for ADC_CCR register ********************/
MartinJohnson 0:c65854d98061 3375 #define ADC12_CCR_MULTI ((uint32_t)0x0000001F) /*!< Multi ADC mode selection */
MartinJohnson 0:c65854d98061 3376 #define ADC12_CCR_MULTI_0 ((uint32_t)0x00000001) /*!< MULTI bit 0 */
MartinJohnson 0:c65854d98061 3377 #define ADC12_CCR_MULTI_1 ((uint32_t)0x00000002) /*!< MULTI bit 1 */
MartinJohnson 0:c65854d98061 3378 #define ADC12_CCR_MULTI_2 ((uint32_t)0x00000004) /*!< MULTI bit 2 */
MartinJohnson 0:c65854d98061 3379 #define ADC12_CCR_MULTI_3 ((uint32_t)0x00000008) /*!< MULTI bit 3 */
MartinJohnson 0:c65854d98061 3380 #define ADC12_CCR_MULTI_4 ((uint32_t)0x00000010) /*!< MULTI bit 4 */
MartinJohnson 0:c65854d98061 3381 #define ADC12_CCR_DELAY ((uint32_t)0x00000F00) /*!< Delay between 2 sampling phases */
MartinJohnson 0:c65854d98061 3382 #define ADC12_CCR_DELAY_0 ((uint32_t)0x00000100) /*!< DELAY bit 0 */
MartinJohnson 0:c65854d98061 3383 #define ADC12_CCR_DELAY_1 ((uint32_t)0x00000200) /*!< DELAY bit 1 */
MartinJohnson 0:c65854d98061 3384 #define ADC12_CCR_DELAY_2 ((uint32_t)0x00000400) /*!< DELAY bit 2 */
MartinJohnson 0:c65854d98061 3385 #define ADC12_CCR_DELAY_3 ((uint32_t)0x00000800) /*!< DELAY bit 3 */
MartinJohnson 0:c65854d98061 3386 #define ADC12_CCR_DMACFG ((uint32_t)0x00002000) /*!< DMA configuration for multi-ADC mode */
MartinJohnson 0:c65854d98061 3387 #define ADC12_CCR_MDMA ((uint32_t)0x0000C000) /*!< DMA mode for multi-ADC mode */
MartinJohnson 0:c65854d98061 3388 #define ADC12_CCR_MDMA_0 ((uint32_t)0x00004000) /*!< MDMA bit 0 */
MartinJohnson 0:c65854d98061 3389 #define ADC12_CCR_MDMA_1 ((uint32_t)0x00008000) /*!< MDMA bit 1 */
MartinJohnson 0:c65854d98061 3390 #define ADC12_CCR_CKMODE ((uint32_t)0x00030000) /*!< ADC clock mode */
MartinJohnson 0:c65854d98061 3391 #define ADC12_CCR_CKMODE_0 ((uint32_t)0x00010000) /*!< CKMODE bit 0 */
MartinJohnson 0:c65854d98061 3392 #define ADC12_CCR_CKMODE_1 ((uint32_t)0x00020000) /*!< CKMODE bit 1 */
MartinJohnson 0:c65854d98061 3393 #define ADC12_CCR_VREFEN ((uint32_t)0x00400000) /*!< VREFINT enable */
MartinJohnson 0:c65854d98061 3394 #define ADC12_CCR_TSEN ((uint32_t)0x00800000) /*!< Temperature sensor enable */
MartinJohnson 0:c65854d98061 3395 #define ADC12_CCR_VBATEN ((uint32_t)0x01000000) /*!< VBAT enable */
MartinJohnson 0:c65854d98061 3396
MartinJohnson 0:c65854d98061 3397 /******************** Bit definition for ADC_CCR register ********************/
MartinJohnson 0:c65854d98061 3398 #define ADC34_CCR_MULTI ((uint32_t)0x0000001F) /*!< Multi ADC mode selection */
MartinJohnson 0:c65854d98061 3399 #define ADC34_CCR_MULTI_0 ((uint32_t)0x00000001) /*!< MULTI bit 0 */
MartinJohnson 0:c65854d98061 3400 #define ADC34_CCR_MULTI_1 ((uint32_t)0x00000002) /*!< MULTI bit 1 */
MartinJohnson 0:c65854d98061 3401 #define ADC34_CCR_MULTI_2 ((uint32_t)0x00000004) /*!< MULTI bit 2 */
MartinJohnson 0:c65854d98061 3402 #define ADC34_CCR_MULTI_3 ((uint32_t)0x00000008) /*!< MULTI bit 3 */
MartinJohnson 0:c65854d98061 3403 #define ADC34_CCR_MULTI_4 ((uint32_t)0x00000010) /*!< MULTI bit 4 */
MartinJohnson 0:c65854d98061 3404
MartinJohnson 0:c65854d98061 3405 #define ADC34_CCR_DELAY ((uint32_t)0x00000F00) /*!< Delay between 2 sampling phases */
MartinJohnson 0:c65854d98061 3406 #define ADC34_CCR_DELAY_0 ((uint32_t)0x00000100) /*!< DELAY bit 0 */
MartinJohnson 0:c65854d98061 3407 #define ADC34_CCR_DELAY_1 ((uint32_t)0x00000200) /*!< DELAY bit 1 */
MartinJohnson 0:c65854d98061 3408 #define ADC34_CCR_DELAY_2 ((uint32_t)0x00000400) /*!< DELAY bit 2 */
MartinJohnson 0:c65854d98061 3409 #define ADC34_CCR_DELAY_3 ((uint32_t)0x00000800) /*!< DELAY bit 3 */
MartinJohnson 0:c65854d98061 3410
MartinJohnson 0:c65854d98061 3411 #define ADC34_CCR_DMACFG ((uint32_t)0x00002000) /*!< DMA configuration for multi-ADC mode */
MartinJohnson 0:c65854d98061 3412 #define ADC34_CCR_MDMA ((uint32_t)0x0000C000) /*!< DMA mode for multi-ADC mode */
MartinJohnson 0:c65854d98061 3413 #define ADC34_CCR_MDMA_0 ((uint32_t)0x00004000) /*!< MDMA bit 0 */
MartinJohnson 0:c65854d98061 3414 #define ADC34_CCR_MDMA_1 ((uint32_t)0x00008000) /*!< MDMA bit 1 */
MartinJohnson 0:c65854d98061 3415
MartinJohnson 0:c65854d98061 3416 #define ADC34_CCR_CKMODE ((uint32_t)0x00030000) /*!< ADC clock mode */
MartinJohnson 0:c65854d98061 3417 #define ADC34_CCR_CKMODE_0 ((uint32_t)0x00010000) /*!< CKMODE bit 0 */
MartinJohnson 0:c65854d98061 3418 #define ADC34_CCR_CKMODE_1 ((uint32_t)0x00020000) /*!< CKMODE bit 1 */
MartinJohnson 0:c65854d98061 3419
MartinJohnson 0:c65854d98061 3420 #define ADC34_CCR_VREFEN ((uint32_t)0x00400000) /*!< VREFINT enable */
MartinJohnson 0:c65854d98061 3421
MartinJohnson 0:c65854d98061 3422 /******************** Bit definition for ADC_CDR register ********************/
MartinJohnson 0:c65854d98061 3423 #define ADC12_CDR_RDATA_MST ((uint32_t)0x0000FFFF) /*!< Regular Data of the master ADC */
MartinJohnson 0:c65854d98061 3424 #define ADC12_CDR_RDATA_MST_0 ((uint32_t)0x00000001) /*!< RDATA_MST bit 0 */
MartinJohnson 0:c65854d98061 3425 #define ADC12_CDR_RDATA_MST_1 ((uint32_t)0x00000002) /*!< RDATA_MST bit 1 */
MartinJohnson 0:c65854d98061 3426 #define ADC12_CDR_RDATA_MST_2 ((uint32_t)0x00000004) /*!< RDATA_MST bit 2 */
MartinJohnson 0:c65854d98061 3427 #define ADC12_CDR_RDATA_MST_3 ((uint32_t)0x00000008) /*!< RDATA_MST bit 3 */
MartinJohnson 0:c65854d98061 3428 #define ADC12_CDR_RDATA_MST_4 ((uint32_t)0x00000010) /*!< RDATA_MST bit 4 */
MartinJohnson 0:c65854d98061 3429 #define ADC12_CDR_RDATA_MST_5 ((uint32_t)0x00000020) /*!< RDATA_MST bit 5 */
MartinJohnson 0:c65854d98061 3430 #define ADC12_CDR_RDATA_MST_6 ((uint32_t)0x00000040) /*!< RDATA_MST bit 6 */
MartinJohnson 0:c65854d98061 3431 #define ADC12_CDR_RDATA_MST_7 ((uint32_t)0x00000080) /*!< RDATA_MST bit 7 */
MartinJohnson 0:c65854d98061 3432 #define ADC12_CDR_RDATA_MST_8 ((uint32_t)0x00000100) /*!< RDATA_MST bit 8 */
MartinJohnson 0:c65854d98061 3433 #define ADC12_CDR_RDATA_MST_9 ((uint32_t)0x00000200) /*!< RDATA_MST bit 9 */
MartinJohnson 0:c65854d98061 3434 #define ADC12_CDR_RDATA_MST_10 ((uint32_t)0x00000400) /*!< RDATA_MST bit 10 */
MartinJohnson 0:c65854d98061 3435 #define ADC12_CDR_RDATA_MST_11 ((uint32_t)0x00000800) /*!< RDATA_MST bit 11 */
MartinJohnson 0:c65854d98061 3436 #define ADC12_CDR_RDATA_MST_12 ((uint32_t)0x00001000) /*!< RDATA_MST bit 12 */
MartinJohnson 0:c65854d98061 3437 #define ADC12_CDR_RDATA_MST_13 ((uint32_t)0x00002000) /*!< RDATA_MST bit 13 */
MartinJohnson 0:c65854d98061 3438 #define ADC12_CDR_RDATA_MST_14 ((uint32_t)0x00004000) /*!< RDATA_MST bit 14 */
MartinJohnson 0:c65854d98061 3439 #define ADC12_CDR_RDATA_MST_15 ((uint32_t)0x00008000) /*!< RDATA_MST bit 15 */
MartinJohnson 0:c65854d98061 3440
MartinJohnson 0:c65854d98061 3441 #define ADC12_CDR_RDATA_SLV ((uint32_t)0xFFFF0000) /*!< Regular Data of the master ADC */
MartinJohnson 0:c65854d98061 3442 #define ADC12_CDR_RDATA_SLV_0 ((uint32_t)0x00010000) /*!< RDATA_SLV bit 0 */
MartinJohnson 0:c65854d98061 3443 #define ADC12_CDR_RDATA_SLV_1 ((uint32_t)0x00020000) /*!< RDATA_SLV bit 1 */
MartinJohnson 0:c65854d98061 3444 #define ADC12_CDR_RDATA_SLV_2 ((uint32_t)0x00040000) /*!< RDATA_SLV bit 2 */
MartinJohnson 0:c65854d98061 3445 #define ADC12_CDR_RDATA_SLV_3 ((uint32_t)0x00080000) /*!< RDATA_SLV bit 3 */
MartinJohnson 0:c65854d98061 3446 #define ADC12_CDR_RDATA_SLV_4 ((uint32_t)0x00100000) /*!< RDATA_SLV bit 4 */
MartinJohnson 0:c65854d98061 3447 #define ADC12_CDR_RDATA_SLV_5 ((uint32_t)0x00200000) /*!< RDATA_SLV bit 5 */
MartinJohnson 0:c65854d98061 3448 #define ADC12_CDR_RDATA_SLV_6 ((uint32_t)0x00400000) /*!< RDATA_SLV bit 6 */
MartinJohnson 0:c65854d98061 3449 #define ADC12_CDR_RDATA_SLV_7 ((uint32_t)0x00800000) /*!< RDATA_SLV bit 7 */
MartinJohnson 0:c65854d98061 3450 #define ADC12_CDR_RDATA_SLV_8 ((uint32_t)0x01000000) /*!< RDATA_SLV bit 8 */
MartinJohnson 0:c65854d98061 3451 #define ADC12_CDR_RDATA_SLV_9 ((uint32_t)0x02000000) /*!< RDATA_SLV bit 9 */
MartinJohnson 0:c65854d98061 3452 #define ADC12_CDR_RDATA_SLV_10 ((uint32_t)0x04000000) /*!< RDATA_SLV bit 10 */
MartinJohnson 0:c65854d98061 3453 #define ADC12_CDR_RDATA_SLV_11 ((uint32_t)0x08000000) /*!< RDATA_SLV bit 11 */
MartinJohnson 0:c65854d98061 3454 #define ADC12_CDR_RDATA_SLV_12 ((uint32_t)0x10000000) /*!< RDATA_SLV bit 12 */
MartinJohnson 0:c65854d98061 3455 #define ADC12_CDR_RDATA_SLV_13 ((uint32_t)0x20000000) /*!< RDATA_SLV bit 13 */
MartinJohnson 0:c65854d98061 3456 #define ADC12_CDR_RDATA_SLV_14 ((uint32_t)0x40000000) /*!< RDATA_SLV bit 14 */
MartinJohnson 0:c65854d98061 3457 #define ADC12_CDR_RDATA_SLV_15 ((uint32_t)0x80000000) /*!< RDATA_SLV bit 15 */
MartinJohnson 0:c65854d98061 3458
MartinJohnson 0:c65854d98061 3459 /******************** Bit definition for ADC_CDR register ********************/
MartinJohnson 0:c65854d98061 3460 #define ADC34_CDR_RDATA_MST ((uint32_t)0x0000FFFF) /*!< Regular Data of the master ADC */
MartinJohnson 0:c65854d98061 3461 #define ADC34_CDR_RDATA_MST_0 ((uint32_t)0x00000001) /*!< RDATA_MST bit 0 */
MartinJohnson 0:c65854d98061 3462 #define ADC34_CDR_RDATA_MST_1 ((uint32_t)0x00000002) /*!< RDATA_MST bit 1 */
MartinJohnson 0:c65854d98061 3463 #define ADC34_CDR_RDATA_MST_2 ((uint32_t)0x00000004) /*!< RDATA_MST bit 2 */
MartinJohnson 0:c65854d98061 3464 #define ADC34_CDR_RDATA_MST_3 ((uint32_t)0x00000008) /*!< RDATA_MST bit 3 */
MartinJohnson 0:c65854d98061 3465 #define ADC34_CDR_RDATA_MST_4 ((uint32_t)0x00000010) /*!< RDATA_MST bit 4 */
MartinJohnson 0:c65854d98061 3466 #define ADC34_CDR_RDATA_MST_5 ((uint32_t)0x00000020) /*!< RDATA_MST bit 5 */
MartinJohnson 0:c65854d98061 3467 #define ADC34_CDR_RDATA_MST_6 ((uint32_t)0x00000040) /*!< RDATA_MST bit 6 */
MartinJohnson 0:c65854d98061 3468 #define ADC34_CDR_RDATA_MST_7 ((uint32_t)0x00000080) /*!< RDATA_MST bit 7 */
MartinJohnson 0:c65854d98061 3469 #define ADC34_CDR_RDATA_MST_8 ((uint32_t)0x00000100) /*!< RDATA_MST bit 8 */
MartinJohnson 0:c65854d98061 3470 #define ADC34_CDR_RDATA_MST_9 ((uint32_t)0x00000200) /*!< RDATA_MST bit 9 */
MartinJohnson 0:c65854d98061 3471 #define ADC34_CDR_RDATA_MST_10 ((uint32_t)0x00000400) /*!< RDATA_MST bit 10 */
MartinJohnson 0:c65854d98061 3472 #define ADC34_CDR_RDATA_MST_11 ((uint32_t)0x00000800) /*!< RDATA_MST bit 11 */
MartinJohnson 0:c65854d98061 3473 #define ADC34_CDR_RDATA_MST_12 ((uint32_t)0x00001000) /*!< RDATA_MST bit 12 */
MartinJohnson 0:c65854d98061 3474 #define ADC34_CDR_RDATA_MST_13 ((uint32_t)0x00002000) /*!< RDATA_MST bit 13 */
MartinJohnson 0:c65854d98061 3475 #define ADC34_CDR_RDATA_MST_14 ((uint32_t)0x00004000) /*!< RDATA_MST bit 14 */
MartinJohnson 0:c65854d98061 3476 #define ADC34_CDR_RDATA_MST_15 ((uint32_t)0x00008000) /*!< RDATA_MST bit 15 */
MartinJohnson 0:c65854d98061 3477
MartinJohnson 0:c65854d98061 3478 #define ADC34_CDR_RDATA_SLV ((uint32_t)0xFFFF0000) /*!< Regular Data of the master ADC */
MartinJohnson 0:c65854d98061 3479 #define ADC34_CDR_RDATA_SLV_0 ((uint32_t)0x00010000) /*!< RDATA_SLV bit 0 */
MartinJohnson 0:c65854d98061 3480 #define ADC34_CDR_RDATA_SLV_1 ((uint32_t)0x00020000) /*!< RDATA_SLV bit 1 */
MartinJohnson 0:c65854d98061 3481 #define ADC34_CDR_RDATA_SLV_2 ((uint32_t)0x00040000) /*!< RDATA_SLV bit 2 */
MartinJohnson 0:c65854d98061 3482 #define ADC34_CDR_RDATA_SLV_3 ((uint32_t)0x00080000) /*!< RDATA_SLV bit 3 */
MartinJohnson 0:c65854d98061 3483 #define ADC34_CDR_RDATA_SLV_4 ((uint32_t)0x00100000) /*!< RDATA_SLV bit 4 */
MartinJohnson 0:c65854d98061 3484 #define ADC34_CDR_RDATA_SLV_5 ((uint32_t)0x00200000) /*!< RDATA_SLV bit 5 */
MartinJohnson 0:c65854d98061 3485 #define ADC34_CDR_RDATA_SLV_6 ((uint32_t)0x00400000) /*!< RDATA_SLV bit 6 */
MartinJohnson 0:c65854d98061 3486 #define ADC34_CDR_RDATA_SLV_7 ((uint32_t)0x00800000) /*!< RDATA_SLV bit 7 */
MartinJohnson 0:c65854d98061 3487 #define ADC34_CDR_RDATA_SLV_8 ((uint32_t)0x01000000) /*!< RDATA_SLV bit 8 */
MartinJohnson 0:c65854d98061 3488 #define ADC34_CDR_RDATA_SLV_9 ((uint32_t)0x02000000) /*!< RDATA_SLV bit 9 */
MartinJohnson 0:c65854d98061 3489 #define ADC34_CDR_RDATA_SLV_10 ((uint32_t)0x04000000) /*!< RDATA_SLV bit 10 */
MartinJohnson 0:c65854d98061 3490 #define ADC34_CDR_RDATA_SLV_11 ((uint32_t)0x08000000) /*!< RDATA_SLV bit 11 */
MartinJohnson 0:c65854d98061 3491 #define ADC34_CDR_RDATA_SLV_12 ((uint32_t)0x10000000) /*!< RDATA_SLV bit 12 */
MartinJohnson 0:c65854d98061 3492 #define ADC34_CDR_RDATA_SLV_13 ((uint32_t)0x20000000) /*!< RDATA_SLV bit 13 */
MartinJohnson 0:c65854d98061 3493 #define ADC34_CDR_RDATA_SLV_14 ((uint32_t)0x40000000) /*!< RDATA_SLV bit 14 */
MartinJohnson 0:c65854d98061 3494 #define ADC34_CDR_RDATA_SLV_15 ((uint32_t)0x80000000) /*!< RDATA_SLV bit 15 */
MartinJohnson 0:c65854d98061 3495
MartinJohnson 0:c65854d98061 3496 /******************************************************************************/
MartinJohnson 0:c65854d98061 3497 /* */
MartinJohnson 0:c65854d98061 3498 /* Analog Comparators (COMP) */
MartinJohnson 0:c65854d98061 3499 /* */
MartinJohnson 0:c65854d98061 3500 /******************************************************************************/
MartinJohnson 0:c65854d98061 3501 /********************** Bit definition for COMP1_CSR register ***************/
MartinJohnson 0:c65854d98061 3502 #define COMP1_CSR_COMP1EN ((uint32_t)0x00000001) /*!< COMP1 enable */
MartinJohnson 0:c65854d98061 3503 #define COMP1_CSR_COMP1SW1 ((uint32_t)0x00000002) /*!< COMP1 SW1 switch control */
MartinJohnson 0:c65854d98061 3504 #define COMP1_CSR_COMP1MODE ((uint32_t)0x0000000C) /*!< COMP1 power mode */
MartinJohnson 0:c65854d98061 3505 #define COMP1_CSR_COMP1MODE_0 ((uint32_t)0x00000004) /*!< COMP1 power mode bit 0 */
MartinJohnson 0:c65854d98061 3506 #define COMP1_CSR_COMP1MODE_1 ((uint32_t)0x00000008) /*!< COMP1 power mode bit 1 */
MartinJohnson 0:c65854d98061 3507 #define COMP1_CSR_COMP1INSEL ((uint32_t)0x00000070) /*!< COMP1 inverting input select */
MartinJohnson 0:c65854d98061 3508 #define COMP1_CSR_COMP1INSEL_0 ((uint32_t)0x00000010) /*!< COMP1 inverting input select bit 0 */
MartinJohnson 0:c65854d98061 3509 #define COMP1_CSR_COMP1INSEL_1 ((uint32_t)0x00000020) /*!< COMP1 inverting input select bit 1 */
MartinJohnson 0:c65854d98061 3510 #define COMP1_CSR_COMP1INSEL_2 ((uint32_t)0x00000040) /*!< COMP1 inverting input select bit 2 */
MartinJohnson 0:c65854d98061 3511 #define COMP1_CSR_COMP1NONINSEL ((uint32_t)0x00000080) /*!< COMP1 non inverting input select */
MartinJohnson 0:c65854d98061 3512 #define COMP1_CSR_COMP1OUTSEL ((uint32_t)0x00003C00) /*!< COMP1 output select */
MartinJohnson 0:c65854d98061 3513 #define COMP1_CSR_COMP1OUTSEL_0 ((uint32_t)0x00000400) /*!< COMP1 output select bit 0 */
MartinJohnson 0:c65854d98061 3514 #define COMP1_CSR_COMP1OUTSEL_1 ((uint32_t)0x00000800) /*!< COMP1 output select bit 1 */
MartinJohnson 0:c65854d98061 3515 #define COMP1_CSR_COMP1OUTSEL_2 ((uint32_t)0x00001000) /*!< COMP1 output select bit 2 */
MartinJohnson 0:c65854d98061 3516 #define COMP1_CSR_COMP1OUTSEL_3 ((uint32_t)0x00002000) /*!< COMP1 output select bit 3 */
MartinJohnson 0:c65854d98061 3517 #define COMP1_CSR_COMP1POL ((uint32_t)0x00008000) /*!< COMP1 output polarity */
MartinJohnson 0:c65854d98061 3518 #define COMP1_CSR_COMP1HYST ((uint32_t)0x00030000) /*!< COMP1 hysteresis */
MartinJohnson 0:c65854d98061 3519 #define COMP1_CSR_COMP1HYST_0 ((uint32_t)0x00010000) /*!< COMP1 hysteresis bit 0 */
MartinJohnson 0:c65854d98061 3520 #define COMP1_CSR_COMP1HYST_1 ((uint32_t)0x00020000) /*!< COMP1 hysteresis bit 1 */
MartinJohnson 0:c65854d98061 3521 #define COMP1_CSR_COMP1BLANKING ((uint32_t)0x000C0000) /*!< COMP1 blanking */
MartinJohnson 0:c65854d98061 3522 #define COMP1_CSR_COMP1BLANKING_0 ((uint32_t)0x00040000) /*!< COMP1 blanking bit 0 */
MartinJohnson 0:c65854d98061 3523 #define COMP1_CSR_COMP1BLANKING_1 ((uint32_t)0x00080000) /*!< COMP1 blanking bit 1 */
MartinJohnson 0:c65854d98061 3524 #define COMP1_CSR_COMP1BLANKING_2 ((uint32_t)0x00100000) /*!< COMP1 blanking bit 2 */
MartinJohnson 0:c65854d98061 3525 #define COMP1_CSR_COMP1OUT ((uint32_t)0x40000000) /*!< COMP1 output level */
MartinJohnson 0:c65854d98061 3526 #define COMP1_CSR_COMP1LOCK ((uint32_t)0x80000000) /*!< COMP1 lock */
MartinJohnson 0:c65854d98061 3527
MartinJohnson 0:c65854d98061 3528 /********************** Bit definition for COMP2_CSR register ***************/
MartinJohnson 0:c65854d98061 3529 #define COMP2_CSR_COMP2EN ((uint32_t)0x00000001) /*!< COMP2 enable */
MartinJohnson 0:c65854d98061 3530 #define COMP2_CSR_COMP2MODE ((uint32_t)0x0000000C) /*!< COMP2 power mode */
MartinJohnson 0:c65854d98061 3531 #define COMP2_CSR_COMP2MODE_0 ((uint32_t)0x00000004) /*!< COMP2 power mode bit 0 */
MartinJohnson 0:c65854d98061 3532 #define COMP2_CSR_COMP2MODE_1 ((uint32_t)0x00000008) /*!< COMP2 power mode bit 1 */
MartinJohnson 0:c65854d98061 3533 #define COMP2_CSR_COMP2INSEL ((uint32_t)0x00000070) /*!< COMP2 inverting input select */
MartinJohnson 0:c65854d98061 3534 #define COMP2_CSR_COMP2INSEL_0 ((uint32_t)0x00000010) /*!< COMP2 inverting input select bit 0 */
MartinJohnson 0:c65854d98061 3535 #define COMP2_CSR_COMP2INSEL_1 ((uint32_t)0x00000020) /*!< COMP2 inverting input select bit 1 */
MartinJohnson 0:c65854d98061 3536 #define COMP2_CSR_COMP2INSEL_2 ((uint32_t)0x00000040) /*!< COMP2 inverting input select bit 2 */
MartinJohnson 0:c65854d98061 3537 #define COMP2_CSR_COMP2NONINSEL ((uint32_t)0x00000080) /*!< COMP2 non inverting input select */
MartinJohnson 0:c65854d98061 3538 #define COMP2_CSR_COMP2WNDWEN ((uint32_t)0x00000200) /*!< COMP2 window mode enable */
MartinJohnson 0:c65854d98061 3539 #define COMP2_CSR_COMP2OUTSEL ((uint32_t)0x00003C00) /*!< COMP2 output select */
MartinJohnson 0:c65854d98061 3540 #define COMP2_CSR_COMP2OUTSEL_0 ((uint32_t)0x00000400) /*!< COMP2 output select bit 0 */
MartinJohnson 0:c65854d98061 3541 #define COMP2_CSR_COMP2OUTSEL_1 ((uint32_t)0x00000800) /*!< COMP2 output select bit 1 */
MartinJohnson 0:c65854d98061 3542 #define COMP2_CSR_COMP2OUTSEL_2 ((uint32_t)0x00001000) /*!< COMP2 output select bit 2 */
MartinJohnson 0:c65854d98061 3543 #define COMP2_CSR_COMP2OUTSEL_3 ((uint32_t)0x00002000) /*!< COMP2 output select bit 3 */
MartinJohnson 0:c65854d98061 3544 #define COMP2_CSR_COMP2POL ((uint32_t)0x00008000) /*!< COMP2 output polarity */
MartinJohnson 0:c65854d98061 3545 #define COMP2_CSR_COMP2HYST ((uint32_t)0x00030000) /*!< COMP2 hysteresis */
MartinJohnson 0:c65854d98061 3546 #define COMP2_CSR_COMP2HYST_0 ((uint32_t)0x00010000) /*!< COMP2 hysteresis bit 0 */
MartinJohnson 0:c65854d98061 3547 #define COMP2_CSR_COMP2HYST_1 ((uint32_t)0x00020000) /*!< COMP2 hysteresis bit 1 */
MartinJohnson 0:c65854d98061 3548 #define COMP2_CSR_COMP2BLANKING ((uint32_t)0x000C0000) /*!< COMP2 blanking */
MartinJohnson 0:c65854d98061 3549 #define COMP2_CSR_COMP2BLANKING_0 ((uint32_t)0x00040000) /*!< COMP2 blanking bit 0 */
MartinJohnson 0:c65854d98061 3550 #define COMP2_CSR_COMP2BLANKING_1 ((uint32_t)0x00080000) /*!< COMP2 blanking bit 1 */
MartinJohnson 0:c65854d98061 3551 #define COMP2_CSR_COMP2BLANKING_2 ((uint32_t)0x00100000) /*!< COMP2 blanking bit 2 */
MartinJohnson 0:c65854d98061 3552 #define COMP2_CSR_COMP2OUT ((uint32_t)0x40000000) /*!< COMP2 output level */
MartinJohnson 0:c65854d98061 3553 #define COMP2_CSR_COMP2LOCK ((uint32_t)0x80000000) /*!< COMP2 lock */
MartinJohnson 0:c65854d98061 3554
MartinJohnson 0:c65854d98061 3555 /********************** Bit definition for COMP3_CSR register ***************/
MartinJohnson 0:c65854d98061 3556 #define COMP3_CSR_COMP3EN ((uint32_t)0x00000001) /*!< COMP3 enable */
MartinJohnson 0:c65854d98061 3557 #define COMP3_CSR_COMP3MODE ((uint32_t)0x0000000C) /*!< COMP3 power mode */
MartinJohnson 0:c65854d98061 3558 #define COMP3_CSR_COMP3MODE_0 ((uint32_t)0x00000004) /*!< COMP3 power mode bit 0 */
MartinJohnson 0:c65854d98061 3559 #define COMP3_CSR_COMP3MODE_1 ((uint32_t)0x00000008) /*!< COMP3 power mode bit 1 */
MartinJohnson 0:c65854d98061 3560 #define COMP3_CSR_COMP3INSEL ((uint32_t)0x00000070) /*!< COMP3 inverting input select */
MartinJohnson 0:c65854d98061 3561 #define COMP3_CSR_COMP3INSEL_0 ((uint32_t)0x00000010) /*!< COMP3 inverting input select bit 0 */
MartinJohnson 0:c65854d98061 3562 #define COMP3_CSR_COMP3INSEL_1 ((uint32_t)0x00000020) /*!< COMP3 inverting input select bit 1 */
MartinJohnson 0:c65854d98061 3563 #define COMP3_CSR_COMP3INSEL_2 ((uint32_t)0x00000040) /*!< COMP3 inverting input select bit 2 */
MartinJohnson 0:c65854d98061 3564 #define COMP3_CSR_COMP3NONINSEL ((uint32_t)0x00000080) /*!< COMP3 non inverting input select */
MartinJohnson 0:c65854d98061 3565 #define COMP3_CSR_COMP3OUTSEL ((uint32_t)0x00003C00) /*!< COMP3 output select */
MartinJohnson 0:c65854d98061 3566 #define COMP3_CSR_COMP3OUTSEL_0 ((uint32_t)0x00000400) /*!< COMP3 output select bit 0 */
MartinJohnson 0:c65854d98061 3567 #define COMP3_CSR_COMP3OUTSEL_1 ((uint32_t)0x00000800) /*!< COMP3 output select bit 1 */
MartinJohnson 0:c65854d98061 3568 #define COMP3_CSR_COMP3OUTSEL_2 ((uint32_t)0x00001000) /*!< COMP3 output select bit 2 */
MartinJohnson 0:c65854d98061 3569 #define COMP3_CSR_COMP3OUTSEL_3 ((uint32_t)0x00002000) /*!< COMP3 output select bit 3 */
MartinJohnson 0:c65854d98061 3570 #define COMP3_CSR_COMP3POL ((uint32_t)0x00008000) /*!< COMP3 output polarity */
MartinJohnson 0:c65854d98061 3571 #define COMP3_CSR_COMP3HYST ((uint32_t)0x00030000) /*!< COMP3 hysteresis */
MartinJohnson 0:c65854d98061 3572 #define COMP3_CSR_COMP3HYST_0 ((uint32_t)0x00010000) /*!< COMP3 hysteresis bit 0 */
MartinJohnson 0:c65854d98061 3573 #define COMP3_CSR_COMP3HYST_1 ((uint32_t)0x00020000) /*!< COMP3 hysteresis bit 1 */
MartinJohnson 0:c65854d98061 3574 #define COMP3_CSR_COMP3BLANKING ((uint32_t)0x000C0000) /*!< COMP3 blanking */
MartinJohnson 0:c65854d98061 3575 #define COMP3_CSR_COMP3BLANKING_0 ((uint32_t)0x00040000) /*!< COMP3 blanking bit 0 */
MartinJohnson 0:c65854d98061 3576 #define COMP3_CSR_COMP3BLANKING_1 ((uint32_t)0x00080000) /*!< COMP3 blanking bit 1 */
MartinJohnson 0:c65854d98061 3577 #define COMP3_CSR_COMP3BLANKING_2 ((uint32_t)0x00100000) /*!< COMP3 blanking bit 2 */
MartinJohnson 0:c65854d98061 3578 #define COMP3_CSR_COMP3OUT ((uint32_t)0x40000000) /*!< COMP3 output level */
MartinJohnson 0:c65854d98061 3579 #define COMP3_CSR_COMP3LOCK ((uint32_t)0x80000000) /*!< COMP3 lock */
MartinJohnson 0:c65854d98061 3580
MartinJohnson 0:c65854d98061 3581 /********************** Bit definition for COMP4_CSR register ***************/
MartinJohnson 0:c65854d98061 3582 #define COMP4_CSR_COMP4EN ((uint32_t)0x00000001) /*!< COMP4 enable */
MartinJohnson 0:c65854d98061 3583 #define COMP4_CSR_COMP4MODE ((uint32_t)0x0000000C) /*!< COMP4 power mode */
MartinJohnson 0:c65854d98061 3584 #define COMP4_CSR_COMP4MODE_0 ((uint32_t)0x00000004) /*!< COMP4 power mode bit 0 */
MartinJohnson 0:c65854d98061 3585 #define COMP4_CSR_COMP4MODE_1 ((uint32_t)0x00000008) /*!< COMP4 power mode bit 1 */
MartinJohnson 0:c65854d98061 3586 #define COMP4_CSR_COMP4INSEL ((uint32_t)0x00000070) /*!< COMP4 inverting input select */
MartinJohnson 0:c65854d98061 3587 #define COMP4_CSR_COMP4INSEL_0 ((uint32_t)0x00000010) /*!< COMP4 inverting input select bit 0 */
MartinJohnson 0:c65854d98061 3588 #define COMP4_CSR_COMP4INSEL_1 ((uint32_t)0x00000020) /*!< COMP4 inverting input select bit 1 */
MartinJohnson 0:c65854d98061 3589 #define COMP4_CSR_COMP4INSEL_2 ((uint32_t)0x00000040) /*!< COMP4 inverting input select bit 2 */
MartinJohnson 0:c65854d98061 3590 #define COMP4_CSR_COMP4NONINSEL ((uint32_t)0x00000080) /*!< COMP4 non inverting input select */
MartinJohnson 0:c65854d98061 3591 #define COMP4_CSR_COMP4WNDWEN ((uint32_t)0x00000200) /*!< COMP4 window mode enable */
MartinJohnson 0:c65854d98061 3592 #define COMP4_CSR_COMP4OUTSEL ((uint32_t)0x00003C00) /*!< COMP4 output select */
MartinJohnson 0:c65854d98061 3593 #define COMP4_CSR_COMP4OUTSEL_0 ((uint32_t)0x00000400) /*!< COMP4 output select bit 0 */
MartinJohnson 0:c65854d98061 3594 #define COMP4_CSR_COMP4OUTSEL_1 ((uint32_t)0x00000800) /*!< COMP4 output select bit 1 */
MartinJohnson 0:c65854d98061 3595 #define COMP4_CSR_COMP4OUTSEL_2 ((uint32_t)0x00001000) /*!< COMP4 output select bit 2 */
MartinJohnson 0:c65854d98061 3596 #define COMP4_CSR_COMP4OUTSEL_3 ((uint32_t)0x00002000) /*!< COMP4 output select bit 3 */
MartinJohnson 0:c65854d98061 3597 #define COMP4_CSR_COMP4POL ((uint32_t)0x00008000) /*!< COMP4 output polarity */
MartinJohnson 0:c65854d98061 3598 #define COMP4_CSR_COMP4HYST ((uint32_t)0x00030000) /*!< COMP4 hysteresis */
MartinJohnson 0:c65854d98061 3599 #define COMP4_CSR_COMP4HYST_0 ((uint32_t)0x00010000) /*!< COMP4 hysteresis bit 0 */
MartinJohnson 0:c65854d98061 3600 #define COMP4_CSR_COMP4HYST_1 ((uint32_t)0x00020000) /*!< COMP4 hysteresis bit 1 */
MartinJohnson 0:c65854d98061 3601 #define COMP4_CSR_COMP4BLANKING ((uint32_t)0x000C0000) /*!< COMP4 blanking */
MartinJohnson 0:c65854d98061 3602 #define COMP4_CSR_COMP4BLANKING_0 ((uint32_t)0x00040000) /*!< COMP4 blanking bit 0 */
MartinJohnson 0:c65854d98061 3603 #define COMP4_CSR_COMP4BLANKING_1 ((uint32_t)0x00080000) /*!< COMP4 blanking bit 1 */
MartinJohnson 0:c65854d98061 3604 #define COMP4_CSR_COMP4BLANKING_2 ((uint32_t)0x00100000) /*!< COMP4 blanking bit 2 */
MartinJohnson 0:c65854d98061 3605 #define COMP4_CSR_COMP4OUT ((uint32_t)0x40000000) /*!< COMP4 output level */
MartinJohnson 0:c65854d98061 3606 #define COMP4_CSR_COMP4LOCK ((uint32_t)0x80000000) /*!< COMP4 lock */
MartinJohnson 0:c65854d98061 3607
MartinJohnson 0:c65854d98061 3608 /********************** Bit definition for COMP5_CSR register ***************/
MartinJohnson 0:c65854d98061 3609 #define COMP5_CSR_COMP5EN ((uint32_t)0x00000001) /*!< COMP5 enable */
MartinJohnson 0:c65854d98061 3610 #define COMP5_CSR_COMP5MODE ((uint32_t)0x0000000C) /*!< COMP5 power mode */
MartinJohnson 0:c65854d98061 3611 #define COMP5_CSR_COMP5MODE_0 ((uint32_t)0x00000004) /*!< COMP5 power mode bit 0 */
MartinJohnson 0:c65854d98061 3612 #define COMP5_CSR_COMP5MODE_1 ((uint32_t)0x00000008) /*!< COMP5 power mode bit 1 */
MartinJohnson 0:c65854d98061 3613 #define COMP5_CSR_COMP5INSEL ((uint32_t)0x00000070) /*!< COMP5 inverting input select */
MartinJohnson 0:c65854d98061 3614 #define COMP5_CSR_COMP5INSEL_0 ((uint32_t)0x00000010) /*!< COMP5 inverting input select bit 0 */
MartinJohnson 0:c65854d98061 3615 #define COMP5_CSR_COMP5INSEL_1 ((uint32_t)0x00000020) /*!< COMP5 inverting input select bit 1 */
MartinJohnson 0:c65854d98061 3616 #define COMP5_CSR_COMP5INSEL_2 ((uint32_t)0x00000040) /*!< COMP5 inverting input select bit 2 */
MartinJohnson 0:c65854d98061 3617 #define COMP5_CSR_COMP5NONINSEL ((uint32_t)0x00000080) /*!< COMP5 non inverting input select */
MartinJohnson 0:c65854d98061 3618 #define COMP5_CSR_COMP5OUTSEL ((uint32_t)0x00003C00) /*!< COMP5 output select */
MartinJohnson 0:c65854d98061 3619 #define COMP5_CSR_COMP5OUTSEL_0 ((uint32_t)0x00000400) /*!< COMP5 output select bit 0 */
MartinJohnson 0:c65854d98061 3620 #define COMP5_CSR_COMP5OUTSEL_1 ((uint32_t)0x00000800) /*!< COMP5 output select bit 1 */
MartinJohnson 0:c65854d98061 3621 #define COMP5_CSR_COMP5OUTSEL_2 ((uint32_t)0x00001000) /*!< COMP5 output select bit 2 */
MartinJohnson 0:c65854d98061 3622 #define COMP5_CSR_COMP5OUTSEL_3 ((uint32_t)0x00002000) /*!< COMP5 output select bit 3 */
MartinJohnson 0:c65854d98061 3623 #define COMP5_CSR_COMP5POL ((uint32_t)0x00008000) /*!< COMP5 output polarity */
MartinJohnson 0:c65854d98061 3624 #define COMP5_CSR_COMP5HYST ((uint32_t)0x00030000) /*!< COMP5 hysteresis */
MartinJohnson 0:c65854d98061 3625 #define COMP5_CSR_COMP5HYST_0 ((uint32_t)0x00010000) /*!< COMP5 hysteresis bit 0 */
MartinJohnson 0:c65854d98061 3626 #define COMP5_CSR_COMP5HYST_1 ((uint32_t)0x00020000) /*!< COMP5 hysteresis bit 1 */
MartinJohnson 0:c65854d98061 3627 #define COMP5_CSR_COMP5BLANKING ((uint32_t)0x000C0000) /*!< COMP5 blanking */
MartinJohnson 0:c65854d98061 3628 #define COMP5_CSR_COMP5BLANKING_0 ((uint32_t)0x00040000) /*!< COMP5 blanking bit 0 */
MartinJohnson 0:c65854d98061 3629 #define COMP5_CSR_COMP5BLANKING_1 ((uint32_t)0x00080000) /*!< COMP5 blanking bit 1 */
MartinJohnson 0:c65854d98061 3630 #define COMP5_CSR_COMP5BLANKING_2 ((uint32_t)0x00100000) /*!< COMP5 blanking bit 2 */
MartinJohnson 0:c65854d98061 3631 #define COMP5_CSR_COMP5OUT ((uint32_t)0x40000000) /*!< COMP5 output level */
MartinJohnson 0:c65854d98061 3632 #define COMP5_CSR_COMP5LOCK ((uint32_t)0x80000000) /*!< COMP5 lock */
MartinJohnson 0:c65854d98061 3633
MartinJohnson 0:c65854d98061 3634 /********************** Bit definition for COMP6_CSR register ***************/
MartinJohnson 0:c65854d98061 3635 #define COMP6_CSR_COMP6EN ((uint32_t)0x00000001) /*!< COMP6 enable */
MartinJohnson 0:c65854d98061 3636 #define COMP6_CSR_COMP6MODE ((uint32_t)0x0000000C) /*!< COMP6 power mode */
MartinJohnson 0:c65854d98061 3637 #define COMP6_CSR_COMP6MODE_0 ((uint32_t)0x00000004) /*!< COMP6 power mode bit 0 */
MartinJohnson 0:c65854d98061 3638 #define COMP6_CSR_COMP6MODE_1 ((uint32_t)0x00000008) /*!< COMP6 power mode bit 1 */
MartinJohnson 0:c65854d98061 3639 #define COMP6_CSR_COMP6INSEL ((uint32_t)0x00000070) /*!< COMP6 inverting input select */
MartinJohnson 0:c65854d98061 3640 #define COMP6_CSR_COMP6INSEL_0 ((uint32_t)0x00000010) /*!< COMP6 inverting input select bit 0 */
MartinJohnson 0:c65854d98061 3641 #define COMP6_CSR_COMP6INSEL_1 ((uint32_t)0x00000020) /*!< COMP6 inverting input select bit 1 */
MartinJohnson 0:c65854d98061 3642 #define COMP6_CSR_COMP6INSEL_2 ((uint32_t)0x00000040) /*!< COMP6 inverting input select bit 2 */
MartinJohnson 0:c65854d98061 3643 #define COMP6_CSR_COMP6NONINSEL ((uint32_t)0x00000080) /*!< COMP6 non inverting input select */
MartinJohnson 0:c65854d98061 3644 #define COMP6_CSR_COMP6WNDWEN ((uint32_t)0x00000200) /*!< COMP6 window mode enable */
MartinJohnson 0:c65854d98061 3645 #define COMP6_CSR_COMP6OUTSEL ((uint32_t)0x00003C00) /*!< COMP6 output select */
MartinJohnson 0:c65854d98061 3646 #define COMP6_CSR_COMP6OUTSEL_0 ((uint32_t)0x00000400) /*!< COMP6 output select bit 0 */
MartinJohnson 0:c65854d98061 3647 #define COMP6_CSR_COMP6OUTSEL_1 ((uint32_t)0x00000800) /*!< COMP6 output select bit 1 */
MartinJohnson 0:c65854d98061 3648 #define COMP6_CSR_COMP6OUTSEL_2 ((uint32_t)0x00001000) /*!< COMP6 output select bit 2 */
MartinJohnson 0:c65854d98061 3649 #define COMP6_CSR_COMP6OUTSEL_3 ((uint32_t)0x00002000) /*!< COMP6 output select bit 3 */
MartinJohnson 0:c65854d98061 3650 #define COMP6_CSR_COMP6POL ((uint32_t)0x00008000) /*!< COMP6 output polarity */
MartinJohnson 0:c65854d98061 3651 #define COMP6_CSR_COMP6HYST ((uint32_t)0x00030000) /*!< COMP6 hysteresis */
MartinJohnson 0:c65854d98061 3652 #define COMP6_CSR_COMP6HYST_0 ((uint32_t)0x00010000) /*!< COMP6 hysteresis bit 0 */
MartinJohnson 0:c65854d98061 3653 #define COMP6_CSR_COMP6HYST_1 ((uint32_t)0x00020000) /*!< COMP6 hysteresis bit 1 */
MartinJohnson 0:c65854d98061 3654 #define COMP6_CSR_COMP6BLANKING ((uint32_t)0x000C0000) /*!< COMP6 blanking */
MartinJohnson 0:c65854d98061 3655 #define COMP6_CSR_COMP6BLANKING_0 ((uint32_t)0x00040000) /*!< COMP6 blanking bit 0 */
MartinJohnson 0:c65854d98061 3656 #define COMP6_CSR_COMP6BLANKING_1 ((uint32_t)0x00080000) /*!< COMP6 blanking bit 1 */
MartinJohnson 0:c65854d98061 3657 #define COMP6_CSR_COMP6BLANKING_2 ((uint32_t)0x00100000) /*!< COMP6 blanking bit 2 */
MartinJohnson 0:c65854d98061 3658 #define COMP6_CSR_COMP6OUT ((uint32_t)0x40000000) /*!< COMP6 output level */
MartinJohnson 0:c65854d98061 3659 #define COMP6_CSR_COMP6LOCK ((uint32_t)0x80000000) /*!< COMP6 lock */
MartinJohnson 0:c65854d98061 3660
MartinJohnson 0:c65854d98061 3661 /********************** Bit definition for COMP7_CSR register ***************/
MartinJohnson 0:c65854d98061 3662 #define COMP7_CSR_COMP7EN ((uint32_t)0x00000001) /*!< COMP7 enable */
MartinJohnson 0:c65854d98061 3663 #define COMP7_CSR_COMP7MODE ((uint32_t)0x0000000C) /*!< COMP7 power mode */
MartinJohnson 0:c65854d98061 3664 #define COMP7_CSR_COMP7MODE_0 ((uint32_t)0x00000004) /*!< COMP7 power mode bit 0 */
MartinJohnson 0:c65854d98061 3665 #define COMP7_CSR_COMP7MODE_1 ((uint32_t)0x00000008) /*!< COMP7 power mode bit 1 */
MartinJohnson 0:c65854d98061 3666 #define COMP7_CSR_COMP7INSEL ((uint32_t)0x00000070) /*!< COMP7 inverting input select */
MartinJohnson 0:c65854d98061 3667 #define COMP7_CSR_COMP7INSEL_0 ((uint32_t)0x00000010) /*!< COMP7 inverting input select bit 0 */
MartinJohnson 0:c65854d98061 3668 #define COMP7_CSR_COMP7INSEL_1 ((uint32_t)0x00000020) /*!< COMP7 inverting input select bit 1 */
MartinJohnson 0:c65854d98061 3669 #define COMP7_CSR_COMP7INSEL_2 ((uint32_t)0x00000040) /*!< COMP7 inverting input select bit 2 */
MartinJohnson 0:c65854d98061 3670 #define COMP7_CSR_COMP7NONINSEL ((uint32_t)0x00000080) /*!< COMP7 non inverting input select */
MartinJohnson 0:c65854d98061 3671 #define COMP7_CSR_COMP7OUTSEL ((uint32_t)0x00003C00) /*!< COMP7 output select */
MartinJohnson 0:c65854d98061 3672 #define COMP7_CSR_COMP7OUTSEL_0 ((uint32_t)0x00000400) /*!< COMP7 output select bit 0 */
MartinJohnson 0:c65854d98061 3673 #define COMP7_CSR_COMP7OUTSEL_1 ((uint32_t)0x00000800) /*!< COMP7 output select bit 1 */
MartinJohnson 0:c65854d98061 3674 #define COMP7_CSR_COMP7OUTSEL_2 ((uint32_t)0x00001000) /*!< COMP7 output select bit 2 */
MartinJohnson 0:c65854d98061 3675 #define COMP7_CSR_COMP7OUTSEL_3 ((uint32_t)0x00002000) /*!< COMP7 output select bit 3 */
MartinJohnson 0:c65854d98061 3676 #define COMP7_CSR_COMP7POL ((uint32_t)0x00008000) /*!< COMP7 output polarity */
MartinJohnson 0:c65854d98061 3677 #define COMP7_CSR_COMP7HYST ((uint32_t)0x00030000) /*!< COMP7 hysteresis */
MartinJohnson 0:c65854d98061 3678 #define COMP7_CSR_COMP7HYST_0 ((uint32_t)0x00010000) /*!< COMP7 hysteresis bit 0 */
MartinJohnson 0:c65854d98061 3679 #define COMP7_CSR_COMP7HYST_1 ((uint32_t)0x00020000) /*!< COMP7 hysteresis bit 1 */
MartinJohnson 0:c65854d98061 3680 #define COMP7_CSR_COMP7BLANKING ((uint32_t)0x000C0000) /*!< COMP7 blanking */
MartinJohnson 0:c65854d98061 3681 #define COMP7_CSR_COMP7BLANKING_0 ((uint32_t)0x00040000) /*!< COMP7 blanking bit 0 */
MartinJohnson 0:c65854d98061 3682 #define COMP7_CSR_COMP7BLANKING_1 ((uint32_t)0x00080000) /*!< COMP7 blanking bit 1 */
MartinJohnson 0:c65854d98061 3683 #define COMP7_CSR_COMP7BLANKING_2 ((uint32_t)0x00100000) /*!< COMP7 blanking bit 2 */
MartinJohnson 0:c65854d98061 3684 #define COMP7_CSR_COMP7OUT ((uint32_t)0x40000000) /*!< COMP7 output level */
MartinJohnson 0:c65854d98061 3685 #define COMP7_CSR_COMP7LOCK ((uint32_t)0x80000000) /*!< COMP7 lock */
MartinJohnson 0:c65854d98061 3686
MartinJohnson 0:c65854d98061 3687 /********************** Bit definition for COMP_CSR register ****************/
MartinJohnson 0:c65854d98061 3688 #define COMP_CSR_COMPxEN ((uint32_t)0x00000001) /*!< COMPx enable */
MartinJohnson 0:c65854d98061 3689 #define COMP_CSR_COMP1SW1 ((uint32_t)0x00000002) /*!< COMP1 SW1 switch control */
MartinJohnson 0:c65854d98061 3690 #define COMP_CSR_COMPxMODE ((uint32_t)0x0000000C) /*!< COMPx power mode */
MartinJohnson 0:c65854d98061 3691 #define COMP_CSR_COMPxMODE_0 ((uint32_t)0x00000004) /*!< COMPx power mode bit 0 */
MartinJohnson 0:c65854d98061 3692 #define COMP_CSR_COMPxMODE_1 ((uint32_t)0x00000008) /*!< COMPx power mode bit 1 */
MartinJohnson 0:c65854d98061 3693 #define COMP_CSR_COMPxINSEL ((uint32_t)0x00000070) /*!< COMPx inverting input select */
MartinJohnson 0:c65854d98061 3694 #define COMP_CSR_COMPxINSEL_0 ((uint32_t)0x00000010) /*!< COMPx inverting input select bit 0 */
MartinJohnson 0:c65854d98061 3695 #define COMP_CSR_COMPxINSEL_1 ((uint32_t)0x00000020) /*!< COMPx inverting input select bit 1 */
MartinJohnson 0:c65854d98061 3696 #define COMP_CSR_COMPxINSEL_2 ((uint32_t)0x00000040) /*!< COMPx inverting input select bit 2 */
MartinJohnson 0:c65854d98061 3697 #define COMP_CSR_COMPxNONINSEL ((uint32_t)0x00000080) /*!< COMPx non inverting input select */
MartinJohnson 0:c65854d98061 3698 #define COMP_CSR_COMPxWNDWEN ((uint32_t)0x00000200) /*!< COMPx window mode enable */
MartinJohnson 0:c65854d98061 3699 #define COMP_CSR_COMPxOUTSEL ((uint32_t)0x00003C00) /*!< COMPx output select */
MartinJohnson 0:c65854d98061 3700 #define COMP_CSR_COMPxOUTSEL_0 ((uint32_t)0x00000400) /*!< COMPx output select bit 0 */
MartinJohnson 0:c65854d98061 3701 #define COMP_CSR_COMPxOUTSEL_1 ((uint32_t)0x00000800) /*!< COMPx output select bit 1 */
MartinJohnson 0:c65854d98061 3702 #define COMP_CSR_COMPxOUTSEL_2 ((uint32_t)0x00001000) /*!< COMPx output select bit 2 */
MartinJohnson 0:c65854d98061 3703 #define COMP_CSR_COMPxOUTSEL_3 ((uint32_t)0x00002000) /*!< COMPx output select bit 3 */
MartinJohnson 0:c65854d98061 3704 #define COMP_CSR_COMPxPOL ((uint32_t)0x00008000) /*!< COMPx output polarity */
MartinJohnson 0:c65854d98061 3705 #define COMP_CSR_COMPxHYST ((uint32_t)0x00030000) /*!< COMPx hysteresis */
MartinJohnson 0:c65854d98061 3706 #define COMP_CSR_COMPxHYST_0 ((uint32_t)0x00010000) /*!< COMPx hysteresis bit 0 */
MartinJohnson 0:c65854d98061 3707 #define COMP_CSR_COMPxHYST_1 ((uint32_t)0x00020000) /*!< COMPx hysteresis bit 1 */
MartinJohnson 0:c65854d98061 3708 #define COMP_CSR_COMPxBLANKING ((uint32_t)0x000C0000) /*!< COMPx blanking */
MartinJohnson 0:c65854d98061 3709 #define COMP_CSR_COMPxBLANKING_0 ((uint32_t)0x00040000) /*!< COMPx blanking bit 0 */
MartinJohnson 0:c65854d98061 3710 #define COMP_CSR_COMPxBLANKING_1 ((uint32_t)0x00080000) /*!< COMPx blanking bit 1 */
MartinJohnson 0:c65854d98061 3711 #define COMP_CSR_COMPxBLANKING_2 ((uint32_t)0x00100000) /*!< COMPx blanking bit 2 */
MartinJohnson 0:c65854d98061 3712 #define COMP_CSR_COMPxINSEL_3 ((uint32_t)0x00400000) /*!< COMPx inverting input select bit 3 */
MartinJohnson 0:c65854d98061 3713 #define COMP_CSR_COMPxOUT ((uint32_t)0x40000000) /*!< COMPx output level */
MartinJohnson 0:c65854d98061 3714 #define COMP_CSR_COMPxLOCK ((uint32_t)0x80000000) /*!< COMPx lock */
MartinJohnson 0:c65854d98061 3715
MartinJohnson 0:c65854d98061 3716 /******************************************************************************/
MartinJohnson 0:c65854d98061 3717 /* */
MartinJohnson 0:c65854d98061 3718 /* Operational Amplifier (OPAMP) */
MartinJohnson 0:c65854d98061 3719 /* */
MartinJohnson 0:c65854d98061 3720 /******************************************************************************/
MartinJohnson 0:c65854d98061 3721 /********************* Bit definition for OPAMP1_CSR register ***************/
MartinJohnson 0:c65854d98061 3722 #define OPAMP1_CSR_OPAMP1EN ((uint32_t)0x00000001) /*!< OPAMP1 enable */
MartinJohnson 0:c65854d98061 3723 #define OPAMP1_CSR_FORCEVP ((uint32_t)0x00000002) /*!< Connect the internal references to the plus input of the OPAMPX */
MartinJohnson 0:c65854d98061 3724 #define OPAMP1_CSR_VPSEL ((uint32_t)0x0000000C) /*!< Non inverting input selection */
MartinJohnson 0:c65854d98061 3725 #define OPAMP1_CSR_VPSEL_0 ((uint32_t)0x00000004) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 3726 #define OPAMP1_CSR_VPSEL_1 ((uint32_t)0x00000008) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 3727 #define OPAMP1_CSR_VMSEL ((uint32_t)0x00000060) /*!< Inverting input selection */
MartinJohnson 0:c65854d98061 3728 #define OPAMP1_CSR_VMSEL_0 ((uint32_t)0x00000020) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 3729 #define OPAMP1_CSR_VMSEL_1 ((uint32_t)0x00000040) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 3730 #define OPAMP1_CSR_TCMEN ((uint32_t)0x00000080) /*!< Timer-Controlled Mux mode enable */
MartinJohnson 0:c65854d98061 3731 #define OPAMP1_CSR_VMSSEL ((uint32_t)0x00000100) /*!< Inverting input secondary selection */
MartinJohnson 0:c65854d98061 3732 #define OPAMP1_CSR_VPSSEL ((uint32_t)0x00000600) /*!< Non inverting input secondary selection */
MartinJohnson 0:c65854d98061 3733 #define OPAMP1_CSR_VPSSEL_0 ((uint32_t)0x00000200) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 3734 #define OPAMP1_CSR_VPSSEL_1 ((uint32_t)0x00000400) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 3735 #define OPAMP1_CSR_CALON ((uint32_t)0x00000800) /*!< Calibration mode enable */
MartinJohnson 0:c65854d98061 3736 #define OPAMP1_CSR_CALSEL ((uint32_t)0x00003000) /*!< Calibration selection */
MartinJohnson 0:c65854d98061 3737 #define OPAMP1_CSR_CALSEL_0 ((uint32_t)0x00001000) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 3738 #define OPAMP1_CSR_CALSEL_1 ((uint32_t)0x00002000) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 3739 #define OPAMP1_CSR_PGGAIN ((uint32_t)0x0003C000) /*!< Gain in PGA mode */
MartinJohnson 0:c65854d98061 3740 #define OPAMP1_CSR_PGGAIN_0 ((uint32_t)0x00004000) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 3741 #define OPAMP1_CSR_PGGAIN_1 ((uint32_t)0x00008000) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 3742 #define OPAMP1_CSR_PGGAIN_2 ((uint32_t)0x00010000) /*!< Bit 2 */
MartinJohnson 0:c65854d98061 3743 #define OPAMP1_CSR_PGGAIN_3 ((uint32_t)0x00020000) /*!< Bit 3 */
MartinJohnson 0:c65854d98061 3744 #define OPAMP1_CSR_USERTRIM ((uint32_t)0x00040000) /*!< User trimming enable */
MartinJohnson 0:c65854d98061 3745 #define OPAMP1_CSR_TRIMOFFSETP ((uint32_t)0x00F80000) /*!< Offset trimming value (PMOS) */
MartinJohnson 0:c65854d98061 3746 #define OPAMP1_CSR_TRIMOFFSETN ((uint32_t)0x1F000000) /*!< Offset trimming value (NMOS) */
MartinJohnson 0:c65854d98061 3747 #define OPAMP1_CSR_TSTREF ((uint32_t)0x20000000) /*!< It enables the switch to put out the internal reference */
MartinJohnson 0:c65854d98061 3748 #define OPAMP1_CSR_OUTCAL ((uint32_t)0x40000000) /*!< OPAMP output status flag */
MartinJohnson 0:c65854d98061 3749 #define OPAMP1_CSR_LOCK ((uint32_t)0x80000000) /*!< OPAMP lock */
MartinJohnson 0:c65854d98061 3750
MartinJohnson 0:c65854d98061 3751 /********************* Bit definition for OPAMP2_CSR register ***************/
MartinJohnson 0:c65854d98061 3752 #define OPAMP2_CSR_OPAMP2EN ((uint32_t)0x00000001) /*!< OPAMP2 enable */
MartinJohnson 0:c65854d98061 3753 #define OPAMP2_CSR_FORCEVP ((uint32_t)0x00000002) /*!< Connect the internal references to the plus input of the OPAMPX */
MartinJohnson 0:c65854d98061 3754 #define OPAMP2_CSR_VPSEL ((uint32_t)0x0000000C) /*!< Non inverting input selection */
MartinJohnson 0:c65854d98061 3755 #define OPAMP2_CSR_VPSEL_0 ((uint32_t)0x00000004) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 3756 #define OPAMP2_CSR_VPSEL_1 ((uint32_t)0x00000008) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 3757 #define OPAMP2_CSR_VMSEL ((uint32_t)0x00000060) /*!< Inverting input selection */
MartinJohnson 0:c65854d98061 3758 #define OPAMP2_CSR_VMSEL_0 ((uint32_t)0x00000020) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 3759 #define OPAMP2_CSR_VMSEL_1 ((uint32_t)0x00000040) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 3760 #define OPAMP2_CSR_TCMEN ((uint32_t)0x00000080) /*!< Timer-Controlled Mux mode enable */
MartinJohnson 0:c65854d98061 3761 #define OPAMP2_CSR_VMSSEL ((uint32_t)0x00000100) /*!< Inverting input secondary selection */
MartinJohnson 0:c65854d98061 3762 #define OPAMP2_CSR_VPSSEL ((uint32_t)0x00000600) /*!< Non inverting input secondary selection */
MartinJohnson 0:c65854d98061 3763 #define OPAMP2_CSR_VPSSEL_0 ((uint32_t)0x00000200) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 3764 #define OPAMP2_CSR_VPSSEL_1 ((uint32_t)0x00000400) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 3765 #define OPAMP2_CSR_CALON ((uint32_t)0x00000800) /*!< Calibration mode enable */
MartinJohnson 0:c65854d98061 3766 #define OPAMP2_CSR_CALSEL ((uint32_t)0x00003000) /*!< Calibration selection */
MartinJohnson 0:c65854d98061 3767 #define OPAMP2_CSR_CALSEL_0 ((uint32_t)0x00001000) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 3768 #define OPAMP2_CSR_CALSEL_1 ((uint32_t)0x00002000) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 3769 #define OPAMP2_CSR_PGGAIN ((uint32_t)0x0003C000) /*!< Gain in PGA mode */
MartinJohnson 0:c65854d98061 3770 #define OPAMP2_CSR_PGGAIN_0 ((uint32_t)0x00004000) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 3771 #define OPAMP2_CSR_PGGAIN_1 ((uint32_t)0x00008000) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 3772 #define OPAMP2_CSR_PGGAIN_2 ((uint32_t)0x00010000) /*!< Bit 2 */
MartinJohnson 0:c65854d98061 3773 #define OPAMP2_CSR_PGGAIN_3 ((uint32_t)0x00020000) /*!< Bit 3 */
MartinJohnson 0:c65854d98061 3774 #define OPAMP2_CSR_USERTRIM ((uint32_t)0x00040000) /*!< User trimming enable */
MartinJohnson 0:c65854d98061 3775 #define OPAMP2_CSR_TRIMOFFSETP ((uint32_t)0x00F80000) /*!< Offset trimming value (PMOS) */
MartinJohnson 0:c65854d98061 3776 #define OPAMP2_CSR_TRIMOFFSETN ((uint32_t)0x1F000000) /*!< Offset trimming value (NMOS) */
MartinJohnson 0:c65854d98061 3777 #define OPAMP2_CSR_TSTREF ((uint32_t)0x20000000) /*!< It enables the switch to put out the internal reference */
MartinJohnson 0:c65854d98061 3778 #define OPAMP2_CSR_OUTCAL ((uint32_t)0x40000000) /*!< OPAMP output status flag */
MartinJohnson 0:c65854d98061 3779 #define OPAMP2_CSR_LOCK ((uint32_t)0x80000000) /*!< OPAMP lock */
MartinJohnson 0:c65854d98061 3780
MartinJohnson 0:c65854d98061 3781 /********************* Bit definition for OPAMP3_CSR register ***************/
MartinJohnson 0:c65854d98061 3782 #define OPAMP3_CSR_OPAMP3EN ((uint32_t)0x00000001) /*!< OPAMP3 enable */
MartinJohnson 0:c65854d98061 3783 #define OPAMP3_CSR_FORCEVP ((uint32_t)0x00000002) /*!< Connect the internal references to the plus input of the OPAMPX */
MartinJohnson 0:c65854d98061 3784 #define OPAMP3_CSR_VPSEL ((uint32_t)0x0000000C) /*!< Non inverting input selection */
MartinJohnson 0:c65854d98061 3785 #define OPAMP3_CSR_VPSEL_0 ((uint32_t)0x00000004) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 3786 #define OPAMP3_CSR_VPSEL_1 ((uint32_t)0x00000008) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 3787 #define OPAMP3_CSR_VMSEL ((uint32_t)0x00000060) /*!< Inverting input selection */
MartinJohnson 0:c65854d98061 3788 #define OPAMP3_CSR_VMSEL_0 ((uint32_t)0x00000020) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 3789 #define OPAMP3_CSR_VMSEL_1 ((uint32_t)0x00000040) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 3790 #define OPAMP3_CSR_TCMEN ((uint32_t)0x00000080) /*!< Timer-Controlled Mux mode enable */
MartinJohnson 0:c65854d98061 3791 #define OPAMP3_CSR_VMSSEL ((uint32_t)0x00000100) /*!< Inverting input secondary selection */
MartinJohnson 0:c65854d98061 3792 #define OPAMP3_CSR_VPSSEL ((uint32_t)0x00000600) /*!< Non inverting input secondary selection */
MartinJohnson 0:c65854d98061 3793 #define OPAMP3_CSR_VPSSEL_0 ((uint32_t)0x00000200) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 3794 #define OPAMP3_CSR_VPSSEL_1 ((uint32_t)0x00000400) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 3795 #define OPAMP3_CSR_CALON ((uint32_t)0x00000800) /*!< Calibration mode enable */
MartinJohnson 0:c65854d98061 3796 #define OPAMP3_CSR_CALSEL ((uint32_t)0x00003000) /*!< Calibration selection */
MartinJohnson 0:c65854d98061 3797 #define OPAMP3_CSR_CALSEL_0 ((uint32_t)0x00001000) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 3798 #define OPAMP3_CSR_CALSEL_1 ((uint32_t)0x00002000) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 3799 #define OPAMP3_CSR_PGGAIN ((uint32_t)0x0003C000) /*!< Gain in PGA mode */
MartinJohnson 0:c65854d98061 3800 #define OPAMP3_CSR_PGGAIN_0 ((uint32_t)0x00004000) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 3801 #define OPAMP3_CSR_PGGAIN_1 ((uint32_t)0x00008000) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 3802 #define OPAMP3_CSR_PGGAIN_2 ((uint32_t)0x00010000) /*!< Bit 2 */
MartinJohnson 0:c65854d98061 3803 #define OPAMP3_CSR_PGGAIN_3 ((uint32_t)0x00020000) /*!< Bit 3 */
MartinJohnson 0:c65854d98061 3804 #define OPAMP3_CSR_USERTRIM ((uint32_t)0x00040000) /*!< User trimming enable */
MartinJohnson 0:c65854d98061 3805 #define OPAMP3_CSR_TRIMOFFSETP ((uint32_t)0x00F80000) /*!< Offset trimming value (PMOS) */
MartinJohnson 0:c65854d98061 3806 #define OPAMP3_CSR_TRIMOFFSETN ((uint32_t)0x1F000000) /*!< Offset trimming value (NMOS) */
MartinJohnson 0:c65854d98061 3807 #define OPAMP3_CSR_TSTREF ((uint32_t)0x20000000) /*!< It enables the switch to put out the internal reference */
MartinJohnson 0:c65854d98061 3808 #define OPAMP3_CSR_OUTCAL ((uint32_t)0x40000000) /*!< OPAMP output status flag */
MartinJohnson 0:c65854d98061 3809 #define OPAMP3_CSR_LOCK ((uint32_t)0x80000000) /*!< OPAMP lock */
MartinJohnson 0:c65854d98061 3810
MartinJohnson 0:c65854d98061 3811 /********************* Bit definition for OPAMP4_CSR register ***************/
MartinJohnson 0:c65854d98061 3812 #define OPAMP4_CSR_OPAMP4EN ((uint32_t)0x00000001) /*!< OPAMP4 enable */
MartinJohnson 0:c65854d98061 3813 #define OPAMP4_CSR_FORCEVP ((uint32_t)0x00000002) /*!< Connect the internal references to the plus input of the OPAMPX */
MartinJohnson 0:c65854d98061 3814 #define OPAMP4_CSR_VPSEL ((uint32_t)0x0000000C) /*!< Non inverting input selection */
MartinJohnson 0:c65854d98061 3815 #define OPAMP4_CSR_VPSEL_0 ((uint32_t)0x00000004) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 3816 #define OPAMP4_CSR_VPSEL_1 ((uint32_t)0x00000008) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 3817 #define OPAMP4_CSR_VMSEL ((uint32_t)0x00000060) /*!< Inverting input selection */
MartinJohnson 0:c65854d98061 3818 #define OPAMP4_CSR_VMSEL_0 ((uint32_t)0x00000020) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 3819 #define OPAMP4_CSR_VMSEL_1 ((uint32_t)0x00000040) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 3820 #define OPAMP4_CSR_TCMEN ((uint32_t)0x00000080) /*!< Timer-Controlled Mux mode enable */
MartinJohnson 0:c65854d98061 3821 #define OPAMP4_CSR_VMSSEL ((uint32_t)0x00000100) /*!< Inverting input secondary selection */
MartinJohnson 0:c65854d98061 3822 #define OPAMP4_CSR_VPSSEL ((uint32_t)0x00000600) /*!< Non inverting input secondary selection */
MartinJohnson 0:c65854d98061 3823 #define OPAMP4_CSR_VPSSEL_0 ((uint32_t)0x00000200) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 3824 #define OPAMP4_CSR_VPSSEL_1 ((uint32_t)0x00000400) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 3825 #define OPAMP4_CSR_CALON ((uint32_t)0x00000800) /*!< Calibration mode enable */
MartinJohnson 0:c65854d98061 3826 #define OPAMP4_CSR_CALSEL ((uint32_t)0x00003000) /*!< Calibration selection */
MartinJohnson 0:c65854d98061 3827 #define OPAMP4_CSR_CALSEL_0 ((uint32_t)0x00001000) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 3828 #define OPAMP4_CSR_CALSEL_1 ((uint32_t)0x00002000) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 3829 #define OPAMP4_CSR_PGGAIN ((uint32_t)0x0003C000) /*!< Gain in PGA mode */
MartinJohnson 0:c65854d98061 3830 #define OPAMP4_CSR_PGGAIN_0 ((uint32_t)0x00004000) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 3831 #define OPAMP4_CSR_PGGAIN_1 ((uint32_t)0x00008000) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 3832 #define OPAMP4_CSR_PGGAIN_2 ((uint32_t)0x00010000) /*!< Bit 2 */
MartinJohnson 0:c65854d98061 3833 #define OPAMP4_CSR_PGGAIN_3 ((uint32_t)0x00020000) /*!< Bit 3 */
MartinJohnson 0:c65854d98061 3834 #define OPAMP4_CSR_USERTRIM ((uint32_t)0x00040000) /*!< User trimming enable */
MartinJohnson 0:c65854d98061 3835 #define OPAMP4_CSR_TRIMOFFSETP ((uint32_t)0x00F80000) /*!< Offset trimming value (PMOS) */
MartinJohnson 0:c65854d98061 3836 #define OPAMP4_CSR_TRIMOFFSETN ((uint32_t)0x1F000000) /*!< Offset trimming value (NMOS) */
MartinJohnson 0:c65854d98061 3837 #define OPAMP4_CSR_TSTREF ((uint32_t)0x20000000) /*!< It enables the switch to put out the internal reference */
MartinJohnson 0:c65854d98061 3838 #define OPAMP4_CSR_OUTCAL ((uint32_t)0x40000000) /*!< OPAMP output status flag */
MartinJohnson 0:c65854d98061 3839 #define OPAMP4_CSR_LOCK ((uint32_t)0x80000000) /*!< OPAMP lock */
MartinJohnson 0:c65854d98061 3840
MartinJohnson 0:c65854d98061 3841 /********************* Bit definition for OPAMPx_CSR register ***************/
MartinJohnson 0:c65854d98061 3842 #define OPAMP_CSR_OPAMPxEN ((uint32_t)0x00000001) /*!< OPAMP enable */
MartinJohnson 0:c65854d98061 3843 #define OPAMP_CSR_FORCEVP ((uint32_t)0x00000002) /*!< Connect the internal references to the plus input of the OPAMPX */
MartinJohnson 0:c65854d98061 3844 #define OPAMP_CSR_VPSEL ((uint32_t)0x0000000C) /*!< Non inverting input selection */
MartinJohnson 0:c65854d98061 3845 #define OPAMP_CSR_VPSEL_0 ((uint32_t)0x00000004) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 3846 #define OPAMP_CSR_VPSEL_1 ((uint32_t)0x00000008) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 3847 #define OPAMP_CSR_VMSEL ((uint32_t)0x00000060) /*!< Inverting input selection */
MartinJohnson 0:c65854d98061 3848 #define OPAMP_CSR_VMSEL_0 ((uint32_t)0x00000020) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 3849 #define OPAMP_CSR_VMSEL_1 ((uint32_t)0x00000040) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 3850 #define OPAMP_CSR_TCMEN ((uint32_t)0x00000080) /*!< Timer-Controlled Mux mode enable */
MartinJohnson 0:c65854d98061 3851 #define OPAMP_CSR_VMSSEL ((uint32_t)0x00000100) /*!< Inverting input secondary selection */
MartinJohnson 0:c65854d98061 3852 #define OPAMP_CSR_VPSSEL ((uint32_t)0x00000600) /*!< Non inverting input secondary selection */
MartinJohnson 0:c65854d98061 3853 #define OPAMP_CSR_VPSSEL_0 ((uint32_t)0x00000200) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 3854 #define OPAMP_CSR_VPSSEL_1 ((uint32_t)0x00000400) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 3855 #define OPAMP_CSR_CALON ((uint32_t)0x00000800) /*!< Calibration mode enable */
MartinJohnson 0:c65854d98061 3856 #define OPAMP_CSR_CALSEL ((uint32_t)0x00003000) /*!< Calibration selection */
MartinJohnson 0:c65854d98061 3857 #define OPAMP_CSR_CALSEL_0 ((uint32_t)0x00001000) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 3858 #define OPAMP_CSR_CALSEL_1 ((uint32_t)0x00002000) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 3859 #define OPAMP_CSR_PGGAIN ((uint32_t)0x0003C000) /*!< Gain in PGA mode */
MartinJohnson 0:c65854d98061 3860 #define OPAMP_CSR_PGGAIN_0 ((uint32_t)0x00004000) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 3861 #define OPAMP_CSR_PGGAIN_1 ((uint32_t)0x00008000) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 3862 #define OPAMP_CSR_PGGAIN_2 ((uint32_t)0x00010000) /*!< Bit 2 */
MartinJohnson 0:c65854d98061 3863 #define OPAMP_CSR_PGGAIN_3 ((uint32_t)0x00020000) /*!< Bit 3 */
MartinJohnson 0:c65854d98061 3864 #define OPAMP_CSR_USERTRIM ((uint32_t)0x00040000) /*!< User trimming enable */
MartinJohnson 0:c65854d98061 3865 #define OPAMP_CSR_TRIMOFFSETP ((uint32_t)0x00F80000) /*!< Offset trimming value (PMOS) */
MartinJohnson 0:c65854d98061 3866 #define OPAMP_CSR_TRIMOFFSETN ((uint32_t)0x1F000000) /*!< Offset trimming value (NMOS) */
MartinJohnson 0:c65854d98061 3867 #define OPAMP_CSR_TSTREF ((uint32_t)0x20000000) /*!< It enables the switch to put out the internal reference */
MartinJohnson 0:c65854d98061 3868 #define OPAMP_CSR_OUTCAL ((uint32_t)0x40000000) /*!< OPAMP output status flag */
MartinJohnson 0:c65854d98061 3869 #define OPAMP_CSR_LOCK ((uint32_t)0x80000000) /*!< OPAMP lock */
MartinJohnson 0:c65854d98061 3870
MartinJohnson 0:c65854d98061 3871
MartinJohnson 0:c65854d98061 3872 /******************************************************************************/
MartinJohnson 0:c65854d98061 3873 /* */
MartinJohnson 0:c65854d98061 3874 /* Controller Area Network (CAN ) */
MartinJohnson 0:c65854d98061 3875 /* */
MartinJohnson 0:c65854d98061 3876 /******************************************************************************/
MartinJohnson 0:c65854d98061 3877 /*!<CAN control and status registers */
MartinJohnson 0:c65854d98061 3878 /******************* Bit definition for CAN_MCR register ********************/
MartinJohnson 0:c65854d98061 3879 #define CAN_MCR_INRQ ((uint16_t)0x0001) /*!<Initialization Request */
MartinJohnson 0:c65854d98061 3880 #define CAN_MCR_SLEEP ((uint16_t)0x0002) /*!<Sleep Mode Request */
MartinJohnson 0:c65854d98061 3881 #define CAN_MCR_TXFP ((uint16_t)0x0004) /*!<Transmit FIFO Priority */
MartinJohnson 0:c65854d98061 3882 #define CAN_MCR_RFLM ((uint16_t)0x0008) /*!<Receive FIFO Locked Mode */
MartinJohnson 0:c65854d98061 3883 #define CAN_MCR_NART ((uint16_t)0x0010) /*!<No Automatic Retransmission */
MartinJohnson 0:c65854d98061 3884 #define CAN_MCR_AWUM ((uint16_t)0x0020) /*!<Automatic Wakeup Mode */
MartinJohnson 0:c65854d98061 3885 #define CAN_MCR_ABOM ((uint16_t)0x0040) /*!<Automatic Bus-Off Management */
MartinJohnson 0:c65854d98061 3886 #define CAN_MCR_TTCM ((uint16_t)0x0080) /*!<Time Triggered Communication Mode */
MartinJohnson 0:c65854d98061 3887 #define CAN_MCR_RESET ((uint16_t)0x8000) /*!<bxCAN software master reset */
MartinJohnson 0:c65854d98061 3888
MartinJohnson 0:c65854d98061 3889 /******************* Bit definition for CAN_MSR register ********************/
MartinJohnson 0:c65854d98061 3890 #define CAN_MSR_INAK ((uint16_t)0x0001) /*!<Initialization Acknowledge */
MartinJohnson 0:c65854d98061 3891 #define CAN_MSR_SLAK ((uint16_t)0x0002) /*!<Sleep Acknowledge */
MartinJohnson 0:c65854d98061 3892 #define CAN_MSR_ERRI ((uint16_t)0x0004) /*!<Error Interrupt */
MartinJohnson 0:c65854d98061 3893 #define CAN_MSR_WKUI ((uint16_t)0x0008) /*!<Wakeup Interrupt */
MartinJohnson 0:c65854d98061 3894 #define CAN_MSR_SLAKI ((uint16_t)0x0010) /*!<Sleep Acknowledge Interrupt */
MartinJohnson 0:c65854d98061 3895 #define CAN_MSR_TXM ((uint16_t)0x0100) /*!<Transmit Mode */
MartinJohnson 0:c65854d98061 3896 #define CAN_MSR_RXM ((uint16_t)0x0200) /*!<Receive Mode */
MartinJohnson 0:c65854d98061 3897 #define CAN_MSR_SAMP ((uint16_t)0x0400) /*!<Last Sample Point */
MartinJohnson 0:c65854d98061 3898 #define CAN_MSR_RX ((uint16_t)0x0800) /*!<CAN Rx Signal */
MartinJohnson 0:c65854d98061 3899
MartinJohnson 0:c65854d98061 3900 /******************* Bit definition for CAN_TSR register ********************/
MartinJohnson 0:c65854d98061 3901 #define CAN_TSR_RQCP0 ((uint32_t)0x00000001) /*!<Request Completed Mailbox0 */
MartinJohnson 0:c65854d98061 3902 #define CAN_TSR_TXOK0 ((uint32_t)0x00000002) /*!<Transmission OK of Mailbox0 */
MartinJohnson 0:c65854d98061 3903 #define CAN_TSR_ALST0 ((uint32_t)0x00000004) /*!<Arbitration Lost for Mailbox0 */
MartinJohnson 0:c65854d98061 3904 #define CAN_TSR_TERR0 ((uint32_t)0x00000008) /*!<Transmission Error of Mailbox0 */
MartinJohnson 0:c65854d98061 3905 #define CAN_TSR_ABRQ0 ((uint32_t)0x00000080) /*!<Abort Request for Mailbox0 */
MartinJohnson 0:c65854d98061 3906 #define CAN_TSR_RQCP1 ((uint32_t)0x00000100) /*!<Request Completed Mailbox1 */
MartinJohnson 0:c65854d98061 3907 #define CAN_TSR_TXOK1 ((uint32_t)0x00000200) /*!<Transmission OK of Mailbox1 */
MartinJohnson 0:c65854d98061 3908 #define CAN_TSR_ALST1 ((uint32_t)0x00000400) /*!<Arbitration Lost for Mailbox1 */
MartinJohnson 0:c65854d98061 3909 #define CAN_TSR_TERR1 ((uint32_t)0x00000800) /*!<Transmission Error of Mailbox1 */
MartinJohnson 0:c65854d98061 3910 #define CAN_TSR_ABRQ1 ((uint32_t)0x00008000) /*!<Abort Request for Mailbox 1 */
MartinJohnson 0:c65854d98061 3911 #define CAN_TSR_RQCP2 ((uint32_t)0x00010000) /*!<Request Completed Mailbox2 */
MartinJohnson 0:c65854d98061 3912 #define CAN_TSR_TXOK2 ((uint32_t)0x00020000) /*!<Transmission OK of Mailbox 2 */
MartinJohnson 0:c65854d98061 3913 #define CAN_TSR_ALST2 ((uint32_t)0x00040000) /*!<Arbitration Lost for mailbox 2 */
MartinJohnson 0:c65854d98061 3914 #define CAN_TSR_TERR2 ((uint32_t)0x00080000) /*!<Transmission Error of Mailbox 2 */
MartinJohnson 0:c65854d98061 3915 #define CAN_TSR_ABRQ2 ((uint32_t)0x00800000) /*!<Abort Request for Mailbox 2 */
MartinJohnson 0:c65854d98061 3916 #define CAN_TSR_CODE ((uint32_t)0x03000000) /*!<Mailbox Code */
MartinJohnson 0:c65854d98061 3917
MartinJohnson 0:c65854d98061 3918 #define CAN_TSR_TME ((uint32_t)0x1C000000) /*!<TME[2:0] bits */
MartinJohnson 0:c65854d98061 3919 #define CAN_TSR_TME0 ((uint32_t)0x04000000) /*!<Transmit Mailbox 0 Empty */
MartinJohnson 0:c65854d98061 3920 #define CAN_TSR_TME1 ((uint32_t)0x08000000) /*!<Transmit Mailbox 1 Empty */
MartinJohnson 0:c65854d98061 3921 #define CAN_TSR_TME2 ((uint32_t)0x10000000) /*!<Transmit Mailbox 2 Empty */
MartinJohnson 0:c65854d98061 3922
MartinJohnson 0:c65854d98061 3923 #define CAN_TSR_LOW ((uint32_t)0xE0000000) /*!<LOW[2:0] bits */
MartinJohnson 0:c65854d98061 3924 #define CAN_TSR_LOW0 ((uint32_t)0x20000000) /*!<Lowest Priority Flag for Mailbox 0 */
MartinJohnson 0:c65854d98061 3925 #define CAN_TSR_LOW1 ((uint32_t)0x40000000) /*!<Lowest Priority Flag for Mailbox 1 */
MartinJohnson 0:c65854d98061 3926 #define CAN_TSR_LOW2 ((uint32_t)0x80000000) /*!<Lowest Priority Flag for Mailbox 2 */
MartinJohnson 0:c65854d98061 3927
MartinJohnson 0:c65854d98061 3928 /******************* Bit definition for CAN_RF0R register *******************/
MartinJohnson 0:c65854d98061 3929 #define CAN_RF0R_FMP0 ((uint8_t)0x03) /*!<FIFO 0 Message Pending */
MartinJohnson 0:c65854d98061 3930 #define CAN_RF0R_FULL0 ((uint8_t)0x08) /*!<FIFO 0 Full */
MartinJohnson 0:c65854d98061 3931 #define CAN_RF0R_FOVR0 ((uint8_t)0x10) /*!<FIFO 0 Overrun */
MartinJohnson 0:c65854d98061 3932 #define CAN_RF0R_RFOM0 ((uint8_t)0x20) /*!<Release FIFO 0 Output Mailbox */
MartinJohnson 0:c65854d98061 3933
MartinJohnson 0:c65854d98061 3934 /******************* Bit definition for CAN_RF1R register *******************/
MartinJohnson 0:c65854d98061 3935 #define CAN_RF1R_FMP1 ((uint8_t)0x03) /*!<FIFO 1 Message Pending */
MartinJohnson 0:c65854d98061 3936 #define CAN_RF1R_FULL1 ((uint8_t)0x08) /*!<FIFO 1 Full */
MartinJohnson 0:c65854d98061 3937 #define CAN_RF1R_FOVR1 ((uint8_t)0x10) /*!<FIFO 1 Overrun */
MartinJohnson 0:c65854d98061 3938 #define CAN_RF1R_RFOM1 ((uint8_t)0x20) /*!<Release FIFO 1 Output Mailbox */
MartinJohnson 0:c65854d98061 3939
MartinJohnson 0:c65854d98061 3940 /******************** Bit definition for CAN_IER register *******************/
MartinJohnson 0:c65854d98061 3941 #define CAN_IER_TMEIE ((uint32_t)0x00000001) /*!<Transmit Mailbox Empty Interrupt Enable */
MartinJohnson 0:c65854d98061 3942 #define CAN_IER_FMPIE0 ((uint32_t)0x00000002) /*!<FIFO Message Pending Interrupt Enable */
MartinJohnson 0:c65854d98061 3943 #define CAN_IER_FFIE0 ((uint32_t)0x00000004) /*!<FIFO Full Interrupt Enable */
MartinJohnson 0:c65854d98061 3944 #define CAN_IER_FOVIE0 ((uint32_t)0x00000008) /*!<FIFO Overrun Interrupt Enable */
MartinJohnson 0:c65854d98061 3945 #define CAN_IER_FMPIE1 ((uint32_t)0x00000010) /*!<FIFO Message Pending Interrupt Enable */
MartinJohnson 0:c65854d98061 3946 #define CAN_IER_FFIE1 ((uint32_t)0x00000020) /*!<FIFO Full Interrupt Enable */
MartinJohnson 0:c65854d98061 3947 #define CAN_IER_FOVIE1 ((uint32_t)0x00000040) /*!<FIFO Overrun Interrupt Enable */
MartinJohnson 0:c65854d98061 3948 #define CAN_IER_EWGIE ((uint32_t)0x00000100) /*!<Error Warning Interrupt Enable */
MartinJohnson 0:c65854d98061 3949 #define CAN_IER_EPVIE ((uint32_t)0x00000200) /*!<Error Passive Interrupt Enable */
MartinJohnson 0:c65854d98061 3950 #define CAN_IER_BOFIE ((uint32_t)0x00000400) /*!<Bus-Off Interrupt Enable */
MartinJohnson 0:c65854d98061 3951 #define CAN_IER_LECIE ((uint32_t)0x00000800) /*!<Last Error Code Interrupt Enable */
MartinJohnson 0:c65854d98061 3952 #define CAN_IER_ERRIE ((uint32_t)0x00008000) /*!<Error Interrupt Enable */
MartinJohnson 0:c65854d98061 3953 #define CAN_IER_WKUIE ((uint32_t)0x00010000) /*!<Wakeup Interrupt Enable */
MartinJohnson 0:c65854d98061 3954 #define CAN_IER_SLKIE ((uint32_t)0x00020000) /*!<Sleep Interrupt Enable */
MartinJohnson 0:c65854d98061 3955
MartinJohnson 0:c65854d98061 3956 /******************** Bit definition for CAN_ESR register *******************/
MartinJohnson 0:c65854d98061 3957 #define CAN_ESR_EWGF ((uint32_t)0x00000001) /*!<Error Warning Flag */
MartinJohnson 0:c65854d98061 3958 #define CAN_ESR_EPVF ((uint32_t)0x00000002) /*!<Error Passive Flag */
MartinJohnson 0:c65854d98061 3959 #define CAN_ESR_BOFF ((uint32_t)0x00000004) /*!<Bus-Off Flag */
MartinJohnson 0:c65854d98061 3960
MartinJohnson 0:c65854d98061 3961 #define CAN_ESR_LEC ((uint32_t)0x00000070) /*!<LEC[2:0] bits (Last Error Code) */
MartinJohnson 0:c65854d98061 3962 #define CAN_ESR_LEC_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 3963 #define CAN_ESR_LEC_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 3964 #define CAN_ESR_LEC_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 3965
MartinJohnson 0:c65854d98061 3966 #define CAN_ESR_TEC ((uint32_t)0x00FF0000) /*!<Least significant byte of the 9-bit Transmit Error Counter */
MartinJohnson 0:c65854d98061 3967 #define CAN_ESR_REC ((uint32_t)0xFF000000) /*!<Receive Error Counter */
MartinJohnson 0:c65854d98061 3968
MartinJohnson 0:c65854d98061 3969 /******************* Bit definition for CAN_BTR register ********************/
MartinJohnson 0:c65854d98061 3970 #define CAN_BTR_BRP ((uint32_t)0x000003FF) /*!<Baud Rate Prescaler */
MartinJohnson 0:c65854d98061 3971 #define CAN_BTR_TS1 ((uint32_t)0x000F0000) /*!<Time Segment 1 */
MartinJohnson 0:c65854d98061 3972 #define CAN_BTR_TS2 ((uint32_t)0x00700000) /*!<Time Segment 2 */
MartinJohnson 0:c65854d98061 3973 #define CAN_BTR_SJW ((uint32_t)0x03000000) /*!<Resynchronization Jump Width */
MartinJohnson 0:c65854d98061 3974 #define CAN_BTR_LBKM ((uint32_t)0x40000000) /*!<Loop Back Mode (Debug) */
MartinJohnson 0:c65854d98061 3975 #define CAN_BTR_SILM ((uint32_t)0x80000000) /*!<Silent Mode */
MartinJohnson 0:c65854d98061 3976
MartinJohnson 0:c65854d98061 3977 /*!<Mailbox registers */
MartinJohnson 0:c65854d98061 3978 /****************** Bit definition for CAN_TI0R register ********************/
MartinJohnson 0:c65854d98061 3979 #define CAN_TI0R_TXRQ ((uint32_t)0x00000001) /*!<Transmit Mailbox Request */
MartinJohnson 0:c65854d98061 3980 #define CAN_TI0R_RTR ((uint32_t)0x00000002) /*!<Remote Transmission Request */
MartinJohnson 0:c65854d98061 3981 #define CAN_TI0R_IDE ((uint32_t)0x00000004) /*!<Identifier Extension */
MartinJohnson 0:c65854d98061 3982 #define CAN_TI0R_EXID ((uint32_t)0x001FFFF8) /*!<Extended Identifier */
MartinJohnson 0:c65854d98061 3983 #define CAN_TI0R_STID ((uint32_t)0xFFE00000) /*!<Standard Identifier or Extended Identifier */
MartinJohnson 0:c65854d98061 3984
MartinJohnson 0:c65854d98061 3985 /****************** Bit definition for CAN_TDT0R register *******************/
MartinJohnson 0:c65854d98061 3986 #define CAN_TDT0R_DLC ((uint32_t)0x0000000F) /*!<Data Length Code */
MartinJohnson 0:c65854d98061 3987 #define CAN_TDT0R_TGT ((uint32_t)0x00000100) /*!<Transmit Global Time */
MartinJohnson 0:c65854d98061 3988 #define CAN_TDT0R_TIME ((uint32_t)0xFFFF0000) /*!<Message Time Stamp */
MartinJohnson 0:c65854d98061 3989
MartinJohnson 0:c65854d98061 3990 /****************** Bit definition for CAN_TDL0R register *******************/
MartinJohnson 0:c65854d98061 3991 #define CAN_TDL0R_DATA0 ((uint32_t)0x000000FF) /*!<Data byte 0 */
MartinJohnson 0:c65854d98061 3992 #define CAN_TDL0R_DATA1 ((uint32_t)0x0000FF00) /*!<Data byte 1 */
MartinJohnson 0:c65854d98061 3993 #define CAN_TDL0R_DATA2 ((uint32_t)0x00FF0000) /*!<Data byte 2 */
MartinJohnson 0:c65854d98061 3994 #define CAN_TDL0R_DATA3 ((uint32_t)0xFF000000) /*!<Data byte 3 */
MartinJohnson 0:c65854d98061 3995
MartinJohnson 0:c65854d98061 3996 /****************** Bit definition for CAN_TDH0R register *******************/
MartinJohnson 0:c65854d98061 3997 #define CAN_TDH0R_DATA4 ((uint32_t)0x000000FF) /*!<Data byte 4 */
MartinJohnson 0:c65854d98061 3998 #define CAN_TDH0R_DATA5 ((uint32_t)0x0000FF00) /*!<Data byte 5 */
MartinJohnson 0:c65854d98061 3999 #define CAN_TDH0R_DATA6 ((uint32_t)0x00FF0000) /*!<Data byte 6 */
MartinJohnson 0:c65854d98061 4000 #define CAN_TDH0R_DATA7 ((uint32_t)0xFF000000) /*!<Data byte 7 */
MartinJohnson 0:c65854d98061 4001
MartinJohnson 0:c65854d98061 4002 /******************* Bit definition for CAN_TI1R register *******************/
MartinJohnson 0:c65854d98061 4003 #define CAN_TI1R_TXRQ ((uint32_t)0x00000001) /*!<Transmit Mailbox Request */
MartinJohnson 0:c65854d98061 4004 #define CAN_TI1R_RTR ((uint32_t)0x00000002) /*!<Remote Transmission Request */
MartinJohnson 0:c65854d98061 4005 #define CAN_TI1R_IDE ((uint32_t)0x00000004) /*!<Identifier Extension */
MartinJohnson 0:c65854d98061 4006 #define CAN_TI1R_EXID ((uint32_t)0x001FFFF8) /*!<Extended Identifier */
MartinJohnson 0:c65854d98061 4007 #define CAN_TI1R_STID ((uint32_t)0xFFE00000) /*!<Standard Identifier or Extended Identifier */
MartinJohnson 0:c65854d98061 4008
MartinJohnson 0:c65854d98061 4009 /******************* Bit definition for CAN_TDT1R register ******************/
MartinJohnson 0:c65854d98061 4010 #define CAN_TDT1R_DLC ((uint32_t)0x0000000F) /*!<Data Length Code */
MartinJohnson 0:c65854d98061 4011 #define CAN_TDT1R_TGT ((uint32_t)0x00000100) /*!<Transmit Global Time */
MartinJohnson 0:c65854d98061 4012 #define CAN_TDT1R_TIME ((uint32_t)0xFFFF0000) /*!<Message Time Stamp */
MartinJohnson 0:c65854d98061 4013
MartinJohnson 0:c65854d98061 4014 /******************* Bit definition for CAN_TDL1R register ******************/
MartinJohnson 0:c65854d98061 4015 #define CAN_TDL1R_DATA0 ((uint32_t)0x000000FF) /*!<Data byte 0 */
MartinJohnson 0:c65854d98061 4016 #define CAN_TDL1R_DATA1 ((uint32_t)0x0000FF00) /*!<Data byte 1 */
MartinJohnson 0:c65854d98061 4017 #define CAN_TDL1R_DATA2 ((uint32_t)0x00FF0000) /*!<Data byte 2 */
MartinJohnson 0:c65854d98061 4018 #define CAN_TDL1R_DATA3 ((uint32_t)0xFF000000) /*!<Data byte 3 */
MartinJohnson 0:c65854d98061 4019
MartinJohnson 0:c65854d98061 4020 /******************* Bit definition for CAN_TDH1R register ******************/
MartinJohnson 0:c65854d98061 4021 #define CAN_TDH1R_DATA4 ((uint32_t)0x000000FF) /*!<Data byte 4 */
MartinJohnson 0:c65854d98061 4022 #define CAN_TDH1R_DATA5 ((uint32_t)0x0000FF00) /*!<Data byte 5 */
MartinJohnson 0:c65854d98061 4023 #define CAN_TDH1R_DATA6 ((uint32_t)0x00FF0000) /*!<Data byte 6 */
MartinJohnson 0:c65854d98061 4024 #define CAN_TDH1R_DATA7 ((uint32_t)0xFF000000) /*!<Data byte 7 */
MartinJohnson 0:c65854d98061 4025
MartinJohnson 0:c65854d98061 4026 /******************* Bit definition for CAN_TI2R register *******************/
MartinJohnson 0:c65854d98061 4027 #define CAN_TI2R_TXRQ ((uint32_t)0x00000001) /*!<Transmit Mailbox Request */
MartinJohnson 0:c65854d98061 4028 #define CAN_TI2R_RTR ((uint32_t)0x00000002) /*!<Remote Transmission Request */
MartinJohnson 0:c65854d98061 4029 #define CAN_TI2R_IDE ((uint32_t)0x00000004) /*!<Identifier Extension */
MartinJohnson 0:c65854d98061 4030 #define CAN_TI2R_EXID ((uint32_t)0x001FFFF8) /*!<Extended identifier */
MartinJohnson 0:c65854d98061 4031 #define CAN_TI2R_STID ((uint32_t)0xFFE00000) /*!<Standard Identifier or Extended Identifier */
MartinJohnson 0:c65854d98061 4032
MartinJohnson 0:c65854d98061 4033 /******************* Bit definition for CAN_TDT2R register ******************/
MartinJohnson 0:c65854d98061 4034 #define CAN_TDT2R_DLC ((uint32_t)0x0000000F) /*!<Data Length Code */
MartinJohnson 0:c65854d98061 4035 #define CAN_TDT2R_TGT ((uint32_t)0x00000100) /*!<Transmit Global Time */
MartinJohnson 0:c65854d98061 4036 #define CAN_TDT2R_TIME ((uint32_t)0xFFFF0000) /*!<Message Time Stamp */
MartinJohnson 0:c65854d98061 4037
MartinJohnson 0:c65854d98061 4038 /******************* Bit definition for CAN_TDL2R register ******************/
MartinJohnson 0:c65854d98061 4039 #define CAN_TDL2R_DATA0 ((uint32_t)0x000000FF) /*!<Data byte 0 */
MartinJohnson 0:c65854d98061 4040 #define CAN_TDL2R_DATA1 ((uint32_t)0x0000FF00) /*!<Data byte 1 */
MartinJohnson 0:c65854d98061 4041 #define CAN_TDL2R_DATA2 ((uint32_t)0x00FF0000) /*!<Data byte 2 */
MartinJohnson 0:c65854d98061 4042 #define CAN_TDL2R_DATA3 ((uint32_t)0xFF000000) /*!<Data byte 3 */
MartinJohnson 0:c65854d98061 4043
MartinJohnson 0:c65854d98061 4044 /******************* Bit definition for CAN_TDH2R register ******************/
MartinJohnson 0:c65854d98061 4045 #define CAN_TDH2R_DATA4 ((uint32_t)0x000000FF) /*!<Data byte 4 */
MartinJohnson 0:c65854d98061 4046 #define CAN_TDH2R_DATA5 ((uint32_t)0x0000FF00) /*!<Data byte 5 */
MartinJohnson 0:c65854d98061 4047 #define CAN_TDH2R_DATA6 ((uint32_t)0x00FF0000) /*!<Data byte 6 */
MartinJohnson 0:c65854d98061 4048 #define CAN_TDH2R_DATA7 ((uint32_t)0xFF000000) /*!<Data byte 7 */
MartinJohnson 0:c65854d98061 4049
MartinJohnson 0:c65854d98061 4050 /******************* Bit definition for CAN_RI0R register *******************/
MartinJohnson 0:c65854d98061 4051 #define CAN_RI0R_RTR ((uint32_t)0x00000002) /*!<Remote Transmission Request */
MartinJohnson 0:c65854d98061 4052 #define CAN_RI0R_IDE ((uint32_t)0x00000004) /*!<Identifier Extension */
MartinJohnson 0:c65854d98061 4053 #define CAN_RI0R_EXID ((uint32_t)0x001FFFF8) /*!<Extended Identifier */
MartinJohnson 0:c65854d98061 4054 #define CAN_RI0R_STID ((uint32_t)0xFFE00000) /*!<Standard Identifier or Extended Identifier */
MartinJohnson 0:c65854d98061 4055
MartinJohnson 0:c65854d98061 4056 /******************* Bit definition for CAN_RDT0R register ******************/
MartinJohnson 0:c65854d98061 4057 #define CAN_RDT0R_DLC ((uint32_t)0x0000000F) /*!<Data Length Code */
MartinJohnson 0:c65854d98061 4058 #define CAN_RDT0R_FMI ((uint32_t)0x0000FF00) /*!<Filter Match Index */
MartinJohnson 0:c65854d98061 4059 #define CAN_RDT0R_TIME ((uint32_t)0xFFFF0000) /*!<Message Time Stamp */
MartinJohnson 0:c65854d98061 4060
MartinJohnson 0:c65854d98061 4061 /******************* Bit definition for CAN_RDL0R register ******************/
MartinJohnson 0:c65854d98061 4062 #define CAN_RDL0R_DATA0 ((uint32_t)0x000000FF) /*!<Data byte 0 */
MartinJohnson 0:c65854d98061 4063 #define CAN_RDL0R_DATA1 ((uint32_t)0x0000FF00) /*!<Data byte 1 */
MartinJohnson 0:c65854d98061 4064 #define CAN_RDL0R_DATA2 ((uint32_t)0x00FF0000) /*!<Data byte 2 */
MartinJohnson 0:c65854d98061 4065 #define CAN_RDL0R_DATA3 ((uint32_t)0xFF000000) /*!<Data byte 3 */
MartinJohnson 0:c65854d98061 4066
MartinJohnson 0:c65854d98061 4067 /******************* Bit definition for CAN_RDH0R register ******************/
MartinJohnson 0:c65854d98061 4068 #define CAN_RDH0R_DATA4 ((uint32_t)0x000000FF) /*!<Data byte 4 */
MartinJohnson 0:c65854d98061 4069 #define CAN_RDH0R_DATA5 ((uint32_t)0x0000FF00) /*!<Data byte 5 */
MartinJohnson 0:c65854d98061 4070 #define CAN_RDH0R_DATA6 ((uint32_t)0x00FF0000) /*!<Data byte 6 */
MartinJohnson 0:c65854d98061 4071 #define CAN_RDH0R_DATA7 ((uint32_t)0xFF000000) /*!<Data byte 7 */
MartinJohnson 0:c65854d98061 4072
MartinJohnson 0:c65854d98061 4073 /******************* Bit definition for CAN_RI1R register *******************/
MartinJohnson 0:c65854d98061 4074 #define CAN_RI1R_RTR ((uint32_t)0x00000002) /*!<Remote Transmission Request */
MartinJohnson 0:c65854d98061 4075 #define CAN_RI1R_IDE ((uint32_t)0x00000004) /*!<Identifier Extension */
MartinJohnson 0:c65854d98061 4076 #define CAN_RI1R_EXID ((uint32_t)0x001FFFF8) /*!<Extended identifier */
MartinJohnson 0:c65854d98061 4077 #define CAN_RI1R_STID ((uint32_t)0xFFE00000) /*!<Standard Identifier or Extended Identifier */
MartinJohnson 0:c65854d98061 4078
MartinJohnson 0:c65854d98061 4079 /******************* Bit definition for CAN_RDT1R register ******************/
MartinJohnson 0:c65854d98061 4080 #define CAN_RDT1R_DLC ((uint32_t)0x0000000F) /*!<Data Length Code */
MartinJohnson 0:c65854d98061 4081 #define CAN_RDT1R_FMI ((uint32_t)0x0000FF00) /*!<Filter Match Index */
MartinJohnson 0:c65854d98061 4082 #define CAN_RDT1R_TIME ((uint32_t)0xFFFF0000) /*!<Message Time Stamp */
MartinJohnson 0:c65854d98061 4083
MartinJohnson 0:c65854d98061 4084 /******************* Bit definition for CAN_RDL1R register ******************/
MartinJohnson 0:c65854d98061 4085 #define CAN_RDL1R_DATA0 ((uint32_t)0x000000FF) /*!<Data byte 0 */
MartinJohnson 0:c65854d98061 4086 #define CAN_RDL1R_DATA1 ((uint32_t)0x0000FF00) /*!<Data byte 1 */
MartinJohnson 0:c65854d98061 4087 #define CAN_RDL1R_DATA2 ((uint32_t)0x00FF0000) /*!<Data byte 2 */
MartinJohnson 0:c65854d98061 4088 #define CAN_RDL1R_DATA3 ((uint32_t)0xFF000000) /*!<Data byte 3 */
MartinJohnson 0:c65854d98061 4089
MartinJohnson 0:c65854d98061 4090 /******************* Bit definition for CAN_RDH1R register ******************/
MartinJohnson 0:c65854d98061 4091 #define CAN_RDH1R_DATA4 ((uint32_t)0x000000FF) /*!<Data byte 4 */
MartinJohnson 0:c65854d98061 4092 #define CAN_RDH1R_DATA5 ((uint32_t)0x0000FF00) /*!<Data byte 5 */
MartinJohnson 0:c65854d98061 4093 #define CAN_RDH1R_DATA6 ((uint32_t)0x00FF0000) /*!<Data byte 6 */
MartinJohnson 0:c65854d98061 4094 #define CAN_RDH1R_DATA7 ((uint32_t)0xFF000000) /*!<Data byte 7 */
MartinJohnson 0:c65854d98061 4095
MartinJohnson 0:c65854d98061 4096 /*!<CAN filter registers */
MartinJohnson 0:c65854d98061 4097 /******************* Bit definition for CAN_FMR register ********************/
MartinJohnson 0:c65854d98061 4098 #define CAN_FMR_FINIT ((uint8_t)0x01) /*!<Filter Init Mode */
MartinJohnson 0:c65854d98061 4099
MartinJohnson 0:c65854d98061 4100 /******************* Bit definition for CAN_FM1R register *******************/
MartinJohnson 0:c65854d98061 4101 #define CAN_FM1R_FBM ((uint16_t)0x3FFF) /*!<Filter Mode */
MartinJohnson 0:c65854d98061 4102 #define CAN_FM1R_FBM0 ((uint16_t)0x0001) /*!<Filter Init Mode bit 0 */
MartinJohnson 0:c65854d98061 4103 #define CAN_FM1R_FBM1 ((uint16_t)0x0002) /*!<Filter Init Mode bit 1 */
MartinJohnson 0:c65854d98061 4104 #define CAN_FM1R_FBM2 ((uint16_t)0x0004) /*!<Filter Init Mode bit 2 */
MartinJohnson 0:c65854d98061 4105 #define CAN_FM1R_FBM3 ((uint16_t)0x0008) /*!<Filter Init Mode bit 3 */
MartinJohnson 0:c65854d98061 4106 #define CAN_FM1R_FBM4 ((uint16_t)0x0010) /*!<Filter Init Mode bit 4 */
MartinJohnson 0:c65854d98061 4107 #define CAN_FM1R_FBM5 ((uint16_t)0x0020) /*!<Filter Init Mode bit 5 */
MartinJohnson 0:c65854d98061 4108 #define CAN_FM1R_FBM6 ((uint16_t)0x0040) /*!<Filter Init Mode bit 6 */
MartinJohnson 0:c65854d98061 4109 #define CAN_FM1R_FBM7 ((uint16_t)0x0080) /*!<Filter Init Mode bit 7 */
MartinJohnson 0:c65854d98061 4110 #define CAN_FM1R_FBM8 ((uint16_t)0x0100) /*!<Filter Init Mode bit 8 */
MartinJohnson 0:c65854d98061 4111 #define CAN_FM1R_FBM9 ((uint16_t)0x0200) /*!<Filter Init Mode bit 9 */
MartinJohnson 0:c65854d98061 4112 #define CAN_FM1R_FBM10 ((uint16_t)0x0400) /*!<Filter Init Mode bit 10 */
MartinJohnson 0:c65854d98061 4113 #define CAN_FM1R_FBM11 ((uint16_t)0x0800) /*!<Filter Init Mode bit 11 */
MartinJohnson 0:c65854d98061 4114 #define CAN_FM1R_FBM12 ((uint16_t)0x1000) /*!<Filter Init Mode bit 12 */
MartinJohnson 0:c65854d98061 4115 #define CAN_FM1R_FBM13 ((uint16_t)0x2000) /*!<Filter Init Mode bit 13 */
MartinJohnson 0:c65854d98061 4116
MartinJohnson 0:c65854d98061 4117 /******************* Bit definition for CAN_FS1R register *******************/
MartinJohnson 0:c65854d98061 4118 #define CAN_FS1R_FSC ((uint16_t)0x3FFF) /*!<Filter Scale Configuration */
MartinJohnson 0:c65854d98061 4119 #define CAN_FS1R_FSC0 ((uint16_t)0x0001) /*!<Filter Scale Configuration bit 0 */
MartinJohnson 0:c65854d98061 4120 #define CAN_FS1R_FSC1 ((uint16_t)0x0002) /*!<Filter Scale Configuration bit 1 */
MartinJohnson 0:c65854d98061 4121 #define CAN_FS1R_FSC2 ((uint16_t)0x0004) /*!<Filter Scale Configuration bit 2 */
MartinJohnson 0:c65854d98061 4122 #define CAN_FS1R_FSC3 ((uint16_t)0x0008) /*!<Filter Scale Configuration bit 3 */
MartinJohnson 0:c65854d98061 4123 #define CAN_FS1R_FSC4 ((uint16_t)0x0010) /*!<Filter Scale Configuration bit 4 */
MartinJohnson 0:c65854d98061 4124 #define CAN_FS1R_FSC5 ((uint16_t)0x0020) /*!<Filter Scale Configuration bit 5 */
MartinJohnson 0:c65854d98061 4125 #define CAN_FS1R_FSC6 ((uint16_t)0x0040) /*!<Filter Scale Configuration bit 6 */
MartinJohnson 0:c65854d98061 4126 #define CAN_FS1R_FSC7 ((uint16_t)0x0080) /*!<Filter Scale Configuration bit 7 */
MartinJohnson 0:c65854d98061 4127 #define CAN_FS1R_FSC8 ((uint16_t)0x0100) /*!<Filter Scale Configuration bit 8 */
MartinJohnson 0:c65854d98061 4128 #define CAN_FS1R_FSC9 ((uint16_t)0x0200) /*!<Filter Scale Configuration bit 9 */
MartinJohnson 0:c65854d98061 4129 #define CAN_FS1R_FSC10 ((uint16_t)0x0400) /*!<Filter Scale Configuration bit 10 */
MartinJohnson 0:c65854d98061 4130 #define CAN_FS1R_FSC11 ((uint16_t)0x0800) /*!<Filter Scale Configuration bit 11 */
MartinJohnson 0:c65854d98061 4131 #define CAN_FS1R_FSC12 ((uint16_t)0x1000) /*!<Filter Scale Configuration bit 12 */
MartinJohnson 0:c65854d98061 4132 #define CAN_FS1R_FSC13 ((uint16_t)0x2000) /*!<Filter Scale Configuration bit 13 */
MartinJohnson 0:c65854d98061 4133
MartinJohnson 0:c65854d98061 4134 /****************** Bit definition for CAN_FFA1R register *******************/
MartinJohnson 0:c65854d98061 4135 #define CAN_FFA1R_FFA ((uint16_t)0x3FFF) /*!<Filter FIFO Assignment */
MartinJohnson 0:c65854d98061 4136 #define CAN_FFA1R_FFA0 ((uint16_t)0x0001) /*!<Filter FIFO Assignment for Filter 0 */
MartinJohnson 0:c65854d98061 4137 #define CAN_FFA1R_FFA1 ((uint16_t)0x0002) /*!<Filter FIFO Assignment for Filter 1 */
MartinJohnson 0:c65854d98061 4138 #define CAN_FFA1R_FFA2 ((uint16_t)0x0004) /*!<Filter FIFO Assignment for Filter 2 */
MartinJohnson 0:c65854d98061 4139 #define CAN_FFA1R_FFA3 ((uint16_t)0x0008) /*!<Filter FIFO Assignment for Filter 3 */
MartinJohnson 0:c65854d98061 4140 #define CAN_FFA1R_FFA4 ((uint16_t)0x0010) /*!<Filter FIFO Assignment for Filter 4 */
MartinJohnson 0:c65854d98061 4141 #define CAN_FFA1R_FFA5 ((uint16_t)0x0020) /*!<Filter FIFO Assignment for Filter 5 */
MartinJohnson 0:c65854d98061 4142 #define CAN_FFA1R_FFA6 ((uint16_t)0x0040) /*!<Filter FIFO Assignment for Filter 6 */
MartinJohnson 0:c65854d98061 4143 #define CAN_FFA1R_FFA7 ((uint16_t)0x0080) /*!<Filter FIFO Assignment for Filter 7 */
MartinJohnson 0:c65854d98061 4144 #define CAN_FFA1R_FFA8 ((uint16_t)0x0100) /*!<Filter FIFO Assignment for Filter 8 */
MartinJohnson 0:c65854d98061 4145 #define CAN_FFA1R_FFA9 ((uint16_t)0x0200) /*!<Filter FIFO Assignment for Filter 9 */
MartinJohnson 0:c65854d98061 4146 #define CAN_FFA1R_FFA10 ((uint16_t)0x0400) /*!<Filter FIFO Assignment for Filter 10 */
MartinJohnson 0:c65854d98061 4147 #define CAN_FFA1R_FFA11 ((uint16_t)0x0800) /*!<Filter FIFO Assignment for Filter 11 */
MartinJohnson 0:c65854d98061 4148 #define CAN_FFA1R_FFA12 ((uint16_t)0x1000) /*!<Filter FIFO Assignment for Filter 12 */
MartinJohnson 0:c65854d98061 4149 #define CAN_FFA1R_FFA13 ((uint16_t)0x2000) /*!<Filter FIFO Assignment for Filter 13 */
MartinJohnson 0:c65854d98061 4150
MartinJohnson 0:c65854d98061 4151 /******************* Bit definition for CAN_FA1R register *******************/
MartinJohnson 0:c65854d98061 4152 #define CAN_FA1R_FACT ((uint16_t)0x3FFF) /*!<Filter Active */
MartinJohnson 0:c65854d98061 4153 #define CAN_FA1R_FACT0 ((uint16_t)0x0001) /*!<Filter 0 Active */
MartinJohnson 0:c65854d98061 4154 #define CAN_FA1R_FACT1 ((uint16_t)0x0002) /*!<Filter 1 Active */
MartinJohnson 0:c65854d98061 4155 #define CAN_FA1R_FACT2 ((uint16_t)0x0004) /*!<Filter 2 Active */
MartinJohnson 0:c65854d98061 4156 #define CAN_FA1R_FACT3 ((uint16_t)0x0008) /*!<Filter 3 Active */
MartinJohnson 0:c65854d98061 4157 #define CAN_FA1R_FACT4 ((uint16_t)0x0010) /*!<Filter 4 Active */
MartinJohnson 0:c65854d98061 4158 #define CAN_FA1R_FACT5 ((uint16_t)0x0020) /*!<Filter 5 Active */
MartinJohnson 0:c65854d98061 4159 #define CAN_FA1R_FACT6 ((uint16_t)0x0040) /*!<Filter 6 Active */
MartinJohnson 0:c65854d98061 4160 #define CAN_FA1R_FACT7 ((uint16_t)0x0080) /*!<Filter 7 Active */
MartinJohnson 0:c65854d98061 4161 #define CAN_FA1R_FACT8 ((uint16_t)0x0100) /*!<Filter 8 Active */
MartinJohnson 0:c65854d98061 4162 #define CAN_FA1R_FACT9 ((uint16_t)0x0200) /*!<Filter 9 Active */
MartinJohnson 0:c65854d98061 4163 #define CAN_FA1R_FACT10 ((uint16_t)0x0400) /*!<Filter 10 Active */
MartinJohnson 0:c65854d98061 4164 #define CAN_FA1R_FACT11 ((uint16_t)0x0800) /*!<Filter 11 Active */
MartinJohnson 0:c65854d98061 4165 #define CAN_FA1R_FACT12 ((uint16_t)0x1000) /*!<Filter 12 Active */
MartinJohnson 0:c65854d98061 4166 #define CAN_FA1R_FACT13 ((uint16_t)0x2000) /*!<Filter 13 Active */
MartinJohnson 0:c65854d98061 4167
MartinJohnson 0:c65854d98061 4168 /******************* Bit definition for CAN_F0R1 register *******************/
MartinJohnson 0:c65854d98061 4169 #define CAN_F0R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:c65854d98061 4170 #define CAN_F0R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:c65854d98061 4171 #define CAN_F0R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:c65854d98061 4172 #define CAN_F0R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:c65854d98061 4173 #define CAN_F0R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:c65854d98061 4174 #define CAN_F0R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:c65854d98061 4175 #define CAN_F0R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:c65854d98061 4176 #define CAN_F0R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:c65854d98061 4177 #define CAN_F0R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:c65854d98061 4178 #define CAN_F0R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:c65854d98061 4179 #define CAN_F0R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:c65854d98061 4180 #define CAN_F0R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:c65854d98061 4181 #define CAN_F0R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:c65854d98061 4182 #define CAN_F0R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:c65854d98061 4183 #define CAN_F0R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:c65854d98061 4184 #define CAN_F0R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:c65854d98061 4185 #define CAN_F0R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:c65854d98061 4186 #define CAN_F0R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:c65854d98061 4187 #define CAN_F0R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:c65854d98061 4188 #define CAN_F0R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:c65854d98061 4189 #define CAN_F0R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:c65854d98061 4190 #define CAN_F0R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:c65854d98061 4191 #define CAN_F0R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:c65854d98061 4192 #define CAN_F0R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:c65854d98061 4193 #define CAN_F0R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:c65854d98061 4194 #define CAN_F0R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:c65854d98061 4195 #define CAN_F0R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:c65854d98061 4196 #define CAN_F0R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:c65854d98061 4197 #define CAN_F0R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:c65854d98061 4198 #define CAN_F0R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:c65854d98061 4199 #define CAN_F0R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:c65854d98061 4200 #define CAN_F0R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:c65854d98061 4201
MartinJohnson 0:c65854d98061 4202 /******************* Bit definition for CAN_F1R1 register *******************/
MartinJohnson 0:c65854d98061 4203 #define CAN_F1R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:c65854d98061 4204 #define CAN_F1R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:c65854d98061 4205 #define CAN_F1R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:c65854d98061 4206 #define CAN_F1R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:c65854d98061 4207 #define CAN_F1R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:c65854d98061 4208 #define CAN_F1R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:c65854d98061 4209 #define CAN_F1R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:c65854d98061 4210 #define CAN_F1R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:c65854d98061 4211 #define CAN_F1R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:c65854d98061 4212 #define CAN_F1R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:c65854d98061 4213 #define CAN_F1R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:c65854d98061 4214 #define CAN_F1R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:c65854d98061 4215 #define CAN_F1R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:c65854d98061 4216 #define CAN_F1R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:c65854d98061 4217 #define CAN_F1R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:c65854d98061 4218 #define CAN_F1R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:c65854d98061 4219 #define CAN_F1R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:c65854d98061 4220 #define CAN_F1R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:c65854d98061 4221 #define CAN_F1R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:c65854d98061 4222 #define CAN_F1R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:c65854d98061 4223 #define CAN_F1R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:c65854d98061 4224 #define CAN_F1R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:c65854d98061 4225 #define CAN_F1R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:c65854d98061 4226 #define CAN_F1R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:c65854d98061 4227 #define CAN_F1R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:c65854d98061 4228 #define CAN_F1R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:c65854d98061 4229 #define CAN_F1R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:c65854d98061 4230 #define CAN_F1R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:c65854d98061 4231 #define CAN_F1R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:c65854d98061 4232 #define CAN_F1R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:c65854d98061 4233 #define CAN_F1R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:c65854d98061 4234 #define CAN_F1R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:c65854d98061 4235
MartinJohnson 0:c65854d98061 4236 /******************* Bit definition for CAN_F2R1 register *******************/
MartinJohnson 0:c65854d98061 4237 #define CAN_F2R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:c65854d98061 4238 #define CAN_F2R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:c65854d98061 4239 #define CAN_F2R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:c65854d98061 4240 #define CAN_F2R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:c65854d98061 4241 #define CAN_F2R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:c65854d98061 4242 #define CAN_F2R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:c65854d98061 4243 #define CAN_F2R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:c65854d98061 4244 #define CAN_F2R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:c65854d98061 4245 #define CAN_F2R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:c65854d98061 4246 #define CAN_F2R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:c65854d98061 4247 #define CAN_F2R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:c65854d98061 4248 #define CAN_F2R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:c65854d98061 4249 #define CAN_F2R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:c65854d98061 4250 #define CAN_F2R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:c65854d98061 4251 #define CAN_F2R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:c65854d98061 4252 #define CAN_F2R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:c65854d98061 4253 #define CAN_F2R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:c65854d98061 4254 #define CAN_F2R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:c65854d98061 4255 #define CAN_F2R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:c65854d98061 4256 #define CAN_F2R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:c65854d98061 4257 #define CAN_F2R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:c65854d98061 4258 #define CAN_F2R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:c65854d98061 4259 #define CAN_F2R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:c65854d98061 4260 #define CAN_F2R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:c65854d98061 4261 #define CAN_F2R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:c65854d98061 4262 #define CAN_F2R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:c65854d98061 4263 #define CAN_F2R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:c65854d98061 4264 #define CAN_F2R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:c65854d98061 4265 #define CAN_F2R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:c65854d98061 4266 #define CAN_F2R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:c65854d98061 4267 #define CAN_F2R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:c65854d98061 4268 #define CAN_F2R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:c65854d98061 4269
MartinJohnson 0:c65854d98061 4270 /******************* Bit definition for CAN_F3R1 register *******************/
MartinJohnson 0:c65854d98061 4271 #define CAN_F3R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:c65854d98061 4272 #define CAN_F3R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:c65854d98061 4273 #define CAN_F3R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:c65854d98061 4274 #define CAN_F3R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:c65854d98061 4275 #define CAN_F3R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:c65854d98061 4276 #define CAN_F3R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:c65854d98061 4277 #define CAN_F3R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:c65854d98061 4278 #define CAN_F3R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:c65854d98061 4279 #define CAN_F3R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:c65854d98061 4280 #define CAN_F3R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:c65854d98061 4281 #define CAN_F3R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:c65854d98061 4282 #define CAN_F3R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:c65854d98061 4283 #define CAN_F3R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:c65854d98061 4284 #define CAN_F3R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:c65854d98061 4285 #define CAN_F3R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:c65854d98061 4286 #define CAN_F3R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:c65854d98061 4287 #define CAN_F3R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:c65854d98061 4288 #define CAN_F3R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:c65854d98061 4289 #define CAN_F3R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:c65854d98061 4290 #define CAN_F3R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:c65854d98061 4291 #define CAN_F3R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:c65854d98061 4292 #define CAN_F3R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:c65854d98061 4293 #define CAN_F3R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:c65854d98061 4294 #define CAN_F3R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:c65854d98061 4295 #define CAN_F3R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:c65854d98061 4296 #define CAN_F3R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:c65854d98061 4297 #define CAN_F3R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:c65854d98061 4298 #define CAN_F3R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:c65854d98061 4299 #define CAN_F3R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:c65854d98061 4300 #define CAN_F3R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:c65854d98061 4301 #define CAN_F3R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:c65854d98061 4302 #define CAN_F3R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:c65854d98061 4303
MartinJohnson 0:c65854d98061 4304 /******************* Bit definition for CAN_F4R1 register *******************/
MartinJohnson 0:c65854d98061 4305 #define CAN_F4R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:c65854d98061 4306 #define CAN_F4R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:c65854d98061 4307 #define CAN_F4R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:c65854d98061 4308 #define CAN_F4R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:c65854d98061 4309 #define CAN_F4R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:c65854d98061 4310 #define CAN_F4R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:c65854d98061 4311 #define CAN_F4R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:c65854d98061 4312 #define CAN_F4R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:c65854d98061 4313 #define CAN_F4R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:c65854d98061 4314 #define CAN_F4R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:c65854d98061 4315 #define CAN_F4R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:c65854d98061 4316 #define CAN_F4R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:c65854d98061 4317 #define CAN_F4R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:c65854d98061 4318 #define CAN_F4R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:c65854d98061 4319 #define CAN_F4R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:c65854d98061 4320 #define CAN_F4R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:c65854d98061 4321 #define CAN_F4R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:c65854d98061 4322 #define CAN_F4R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:c65854d98061 4323 #define CAN_F4R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:c65854d98061 4324 #define CAN_F4R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:c65854d98061 4325 #define CAN_F4R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:c65854d98061 4326 #define CAN_F4R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:c65854d98061 4327 #define CAN_F4R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:c65854d98061 4328 #define CAN_F4R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:c65854d98061 4329 #define CAN_F4R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:c65854d98061 4330 #define CAN_F4R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:c65854d98061 4331 #define CAN_F4R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:c65854d98061 4332 #define CAN_F4R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:c65854d98061 4333 #define CAN_F4R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:c65854d98061 4334 #define CAN_F4R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:c65854d98061 4335 #define CAN_F4R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:c65854d98061 4336 #define CAN_F4R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:c65854d98061 4337
MartinJohnson 0:c65854d98061 4338 /******************* Bit definition for CAN_F5R1 register *******************/
MartinJohnson 0:c65854d98061 4339 #define CAN_F5R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:c65854d98061 4340 #define CAN_F5R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:c65854d98061 4341 #define CAN_F5R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:c65854d98061 4342 #define CAN_F5R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:c65854d98061 4343 #define CAN_F5R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:c65854d98061 4344 #define CAN_F5R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:c65854d98061 4345 #define CAN_F5R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:c65854d98061 4346 #define CAN_F5R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:c65854d98061 4347 #define CAN_F5R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:c65854d98061 4348 #define CAN_F5R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:c65854d98061 4349 #define CAN_F5R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:c65854d98061 4350 #define CAN_F5R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:c65854d98061 4351 #define CAN_F5R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:c65854d98061 4352 #define CAN_F5R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:c65854d98061 4353 #define CAN_F5R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:c65854d98061 4354 #define CAN_F5R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:c65854d98061 4355 #define CAN_F5R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:c65854d98061 4356 #define CAN_F5R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:c65854d98061 4357 #define CAN_F5R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:c65854d98061 4358 #define CAN_F5R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:c65854d98061 4359 #define CAN_F5R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:c65854d98061 4360 #define CAN_F5R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:c65854d98061 4361 #define CAN_F5R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:c65854d98061 4362 #define CAN_F5R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:c65854d98061 4363 #define CAN_F5R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:c65854d98061 4364 #define CAN_F5R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:c65854d98061 4365 #define CAN_F5R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:c65854d98061 4366 #define CAN_F5R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:c65854d98061 4367 #define CAN_F5R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:c65854d98061 4368 #define CAN_F5R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:c65854d98061 4369 #define CAN_F5R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:c65854d98061 4370 #define CAN_F5R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:c65854d98061 4371
MartinJohnson 0:c65854d98061 4372 /******************* Bit definition for CAN_F6R1 register *******************/
MartinJohnson 0:c65854d98061 4373 #define CAN_F6R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:c65854d98061 4374 #define CAN_F6R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:c65854d98061 4375 #define CAN_F6R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:c65854d98061 4376 #define CAN_F6R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:c65854d98061 4377 #define CAN_F6R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:c65854d98061 4378 #define CAN_F6R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:c65854d98061 4379 #define CAN_F6R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:c65854d98061 4380 #define CAN_F6R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:c65854d98061 4381 #define CAN_F6R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:c65854d98061 4382 #define CAN_F6R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:c65854d98061 4383 #define CAN_F6R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:c65854d98061 4384 #define CAN_F6R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:c65854d98061 4385 #define CAN_F6R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:c65854d98061 4386 #define CAN_F6R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:c65854d98061 4387 #define CAN_F6R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:c65854d98061 4388 #define CAN_F6R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:c65854d98061 4389 #define CAN_F6R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:c65854d98061 4390 #define CAN_F6R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:c65854d98061 4391 #define CAN_F6R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:c65854d98061 4392 #define CAN_F6R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:c65854d98061 4393 #define CAN_F6R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:c65854d98061 4394 #define CAN_F6R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:c65854d98061 4395 #define CAN_F6R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:c65854d98061 4396 #define CAN_F6R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:c65854d98061 4397 #define CAN_F6R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:c65854d98061 4398 #define CAN_F6R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:c65854d98061 4399 #define CAN_F6R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:c65854d98061 4400 #define CAN_F6R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:c65854d98061 4401 #define CAN_F6R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:c65854d98061 4402 #define CAN_F6R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:c65854d98061 4403 #define CAN_F6R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:c65854d98061 4404 #define CAN_F6R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:c65854d98061 4405
MartinJohnson 0:c65854d98061 4406 /******************* Bit definition for CAN_F7R1 register *******************/
MartinJohnson 0:c65854d98061 4407 #define CAN_F7R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:c65854d98061 4408 #define CAN_F7R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:c65854d98061 4409 #define CAN_F7R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:c65854d98061 4410 #define CAN_F7R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:c65854d98061 4411 #define CAN_F7R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:c65854d98061 4412 #define CAN_F7R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:c65854d98061 4413 #define CAN_F7R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:c65854d98061 4414 #define CAN_F7R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:c65854d98061 4415 #define CAN_F7R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:c65854d98061 4416 #define CAN_F7R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:c65854d98061 4417 #define CAN_F7R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:c65854d98061 4418 #define CAN_F7R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:c65854d98061 4419 #define CAN_F7R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:c65854d98061 4420 #define CAN_F7R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:c65854d98061 4421 #define CAN_F7R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:c65854d98061 4422 #define CAN_F7R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:c65854d98061 4423 #define CAN_F7R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:c65854d98061 4424 #define CAN_F7R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:c65854d98061 4425 #define CAN_F7R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:c65854d98061 4426 #define CAN_F7R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:c65854d98061 4427 #define CAN_F7R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:c65854d98061 4428 #define CAN_F7R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:c65854d98061 4429 #define CAN_F7R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:c65854d98061 4430 #define CAN_F7R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:c65854d98061 4431 #define CAN_F7R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:c65854d98061 4432 #define CAN_F7R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:c65854d98061 4433 #define CAN_F7R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:c65854d98061 4434 #define CAN_F7R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:c65854d98061 4435 #define CAN_F7R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:c65854d98061 4436 #define CAN_F7R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:c65854d98061 4437 #define CAN_F7R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:c65854d98061 4438 #define CAN_F7R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:c65854d98061 4439
MartinJohnson 0:c65854d98061 4440 /******************* Bit definition for CAN_F8R1 register *******************/
MartinJohnson 0:c65854d98061 4441 #define CAN_F8R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:c65854d98061 4442 #define CAN_F8R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:c65854d98061 4443 #define CAN_F8R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:c65854d98061 4444 #define CAN_F8R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:c65854d98061 4445 #define CAN_F8R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:c65854d98061 4446 #define CAN_F8R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:c65854d98061 4447 #define CAN_F8R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:c65854d98061 4448 #define CAN_F8R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:c65854d98061 4449 #define CAN_F8R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:c65854d98061 4450 #define CAN_F8R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:c65854d98061 4451 #define CAN_F8R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:c65854d98061 4452 #define CAN_F8R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:c65854d98061 4453 #define CAN_F8R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:c65854d98061 4454 #define CAN_F8R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:c65854d98061 4455 #define CAN_F8R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:c65854d98061 4456 #define CAN_F8R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:c65854d98061 4457 #define CAN_F8R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:c65854d98061 4458 #define CAN_F8R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:c65854d98061 4459 #define CAN_F8R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:c65854d98061 4460 #define CAN_F8R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:c65854d98061 4461 #define CAN_F8R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:c65854d98061 4462 #define CAN_F8R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:c65854d98061 4463 #define CAN_F8R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:c65854d98061 4464 #define CAN_F8R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:c65854d98061 4465 #define CAN_F8R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:c65854d98061 4466 #define CAN_F8R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:c65854d98061 4467 #define CAN_F8R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:c65854d98061 4468 #define CAN_F8R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:c65854d98061 4469 #define CAN_F8R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:c65854d98061 4470 #define CAN_F8R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:c65854d98061 4471 #define CAN_F8R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:c65854d98061 4472 #define CAN_F8R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:c65854d98061 4473
MartinJohnson 0:c65854d98061 4474 /******************* Bit definition for CAN_F9R1 register *******************/
MartinJohnson 0:c65854d98061 4475 #define CAN_F9R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:c65854d98061 4476 #define CAN_F9R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:c65854d98061 4477 #define CAN_F9R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:c65854d98061 4478 #define CAN_F9R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:c65854d98061 4479 #define CAN_F9R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:c65854d98061 4480 #define CAN_F9R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:c65854d98061 4481 #define CAN_F9R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:c65854d98061 4482 #define CAN_F9R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:c65854d98061 4483 #define CAN_F9R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:c65854d98061 4484 #define CAN_F9R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:c65854d98061 4485 #define CAN_F9R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:c65854d98061 4486 #define CAN_F9R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:c65854d98061 4487 #define CAN_F9R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:c65854d98061 4488 #define CAN_F9R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:c65854d98061 4489 #define CAN_F9R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:c65854d98061 4490 #define CAN_F9R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:c65854d98061 4491 #define CAN_F9R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:c65854d98061 4492 #define CAN_F9R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:c65854d98061 4493 #define CAN_F9R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:c65854d98061 4494 #define CAN_F9R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:c65854d98061 4495 #define CAN_F9R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:c65854d98061 4496 #define CAN_F9R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:c65854d98061 4497 #define CAN_F9R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:c65854d98061 4498 #define CAN_F9R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:c65854d98061 4499 #define CAN_F9R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:c65854d98061 4500 #define CAN_F9R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:c65854d98061 4501 #define CAN_F9R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:c65854d98061 4502 #define CAN_F9R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:c65854d98061 4503 #define CAN_F9R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:c65854d98061 4504 #define CAN_F9R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:c65854d98061 4505 #define CAN_F9R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:c65854d98061 4506 #define CAN_F9R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:c65854d98061 4507
MartinJohnson 0:c65854d98061 4508 /******************* Bit definition for CAN_F10R1 register ******************/
MartinJohnson 0:c65854d98061 4509 #define CAN_F10R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:c65854d98061 4510 #define CAN_F10R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:c65854d98061 4511 #define CAN_F10R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:c65854d98061 4512 #define CAN_F10R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:c65854d98061 4513 #define CAN_F10R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:c65854d98061 4514 #define CAN_F10R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:c65854d98061 4515 #define CAN_F10R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:c65854d98061 4516 #define CAN_F10R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:c65854d98061 4517 #define CAN_F10R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:c65854d98061 4518 #define CAN_F10R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:c65854d98061 4519 #define CAN_F10R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:c65854d98061 4520 #define CAN_F10R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:c65854d98061 4521 #define CAN_F10R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:c65854d98061 4522 #define CAN_F10R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:c65854d98061 4523 #define CAN_F10R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:c65854d98061 4524 #define CAN_F10R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:c65854d98061 4525 #define CAN_F10R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:c65854d98061 4526 #define CAN_F10R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:c65854d98061 4527 #define CAN_F10R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:c65854d98061 4528 #define CAN_F10R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:c65854d98061 4529 #define CAN_F10R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:c65854d98061 4530 #define CAN_F10R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:c65854d98061 4531 #define CAN_F10R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:c65854d98061 4532 #define CAN_F10R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:c65854d98061 4533 #define CAN_F10R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:c65854d98061 4534 #define CAN_F10R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:c65854d98061 4535 #define CAN_F10R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:c65854d98061 4536 #define CAN_F10R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:c65854d98061 4537 #define CAN_F10R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:c65854d98061 4538 #define CAN_F10R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:c65854d98061 4539 #define CAN_F10R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:c65854d98061 4540 #define CAN_F10R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:c65854d98061 4541
MartinJohnson 0:c65854d98061 4542 /******************* Bit definition for CAN_F11R1 register ******************/
MartinJohnson 0:c65854d98061 4543 #define CAN_F11R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:c65854d98061 4544 #define CAN_F11R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:c65854d98061 4545 #define CAN_F11R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:c65854d98061 4546 #define CAN_F11R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:c65854d98061 4547 #define CAN_F11R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:c65854d98061 4548 #define CAN_F11R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:c65854d98061 4549 #define CAN_F11R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:c65854d98061 4550 #define CAN_F11R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:c65854d98061 4551 #define CAN_F11R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:c65854d98061 4552 #define CAN_F11R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:c65854d98061 4553 #define CAN_F11R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:c65854d98061 4554 #define CAN_F11R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:c65854d98061 4555 #define CAN_F11R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:c65854d98061 4556 #define CAN_F11R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:c65854d98061 4557 #define CAN_F11R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:c65854d98061 4558 #define CAN_F11R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:c65854d98061 4559 #define CAN_F11R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:c65854d98061 4560 #define CAN_F11R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:c65854d98061 4561 #define CAN_F11R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:c65854d98061 4562 #define CAN_F11R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:c65854d98061 4563 #define CAN_F11R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:c65854d98061 4564 #define CAN_F11R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:c65854d98061 4565 #define CAN_F11R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:c65854d98061 4566 #define CAN_F11R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:c65854d98061 4567 #define CAN_F11R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:c65854d98061 4568 #define CAN_F11R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:c65854d98061 4569 #define CAN_F11R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:c65854d98061 4570 #define CAN_F11R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:c65854d98061 4571 #define CAN_F11R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:c65854d98061 4572 #define CAN_F11R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:c65854d98061 4573 #define CAN_F11R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:c65854d98061 4574 #define CAN_F11R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:c65854d98061 4575
MartinJohnson 0:c65854d98061 4576 /******************* Bit definition for CAN_F12R1 register ******************/
MartinJohnson 0:c65854d98061 4577 #define CAN_F12R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:c65854d98061 4578 #define CAN_F12R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:c65854d98061 4579 #define CAN_F12R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:c65854d98061 4580 #define CAN_F12R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:c65854d98061 4581 #define CAN_F12R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:c65854d98061 4582 #define CAN_F12R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:c65854d98061 4583 #define CAN_F12R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:c65854d98061 4584 #define CAN_F12R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:c65854d98061 4585 #define CAN_F12R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:c65854d98061 4586 #define CAN_F12R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:c65854d98061 4587 #define CAN_F12R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:c65854d98061 4588 #define CAN_F12R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:c65854d98061 4589 #define CAN_F12R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:c65854d98061 4590 #define CAN_F12R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:c65854d98061 4591 #define CAN_F12R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:c65854d98061 4592 #define CAN_F12R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:c65854d98061 4593 #define CAN_F12R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:c65854d98061 4594 #define CAN_F12R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:c65854d98061 4595 #define CAN_F12R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:c65854d98061 4596 #define CAN_F12R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:c65854d98061 4597 #define CAN_F12R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:c65854d98061 4598 #define CAN_F12R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:c65854d98061 4599 #define CAN_F12R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:c65854d98061 4600 #define CAN_F12R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:c65854d98061 4601 #define CAN_F12R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:c65854d98061 4602 #define CAN_F12R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:c65854d98061 4603 #define CAN_F12R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:c65854d98061 4604 #define CAN_F12R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:c65854d98061 4605 #define CAN_F12R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:c65854d98061 4606 #define CAN_F12R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:c65854d98061 4607 #define CAN_F12R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:c65854d98061 4608 #define CAN_F12R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:c65854d98061 4609
MartinJohnson 0:c65854d98061 4610 /******************* Bit definition for CAN_F13R1 register ******************/
MartinJohnson 0:c65854d98061 4611 #define CAN_F13R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:c65854d98061 4612 #define CAN_F13R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:c65854d98061 4613 #define CAN_F13R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:c65854d98061 4614 #define CAN_F13R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:c65854d98061 4615 #define CAN_F13R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:c65854d98061 4616 #define CAN_F13R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:c65854d98061 4617 #define CAN_F13R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:c65854d98061 4618 #define CAN_F13R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:c65854d98061 4619 #define CAN_F13R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:c65854d98061 4620 #define CAN_F13R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:c65854d98061 4621 #define CAN_F13R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:c65854d98061 4622 #define CAN_F13R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:c65854d98061 4623 #define CAN_F13R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:c65854d98061 4624 #define CAN_F13R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:c65854d98061 4625 #define CAN_F13R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:c65854d98061 4626 #define CAN_F13R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:c65854d98061 4627 #define CAN_F13R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:c65854d98061 4628 #define CAN_F13R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:c65854d98061 4629 #define CAN_F13R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:c65854d98061 4630 #define CAN_F13R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:c65854d98061 4631 #define CAN_F13R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:c65854d98061 4632 #define CAN_F13R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:c65854d98061 4633 #define CAN_F13R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:c65854d98061 4634 #define CAN_F13R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:c65854d98061 4635 #define CAN_F13R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:c65854d98061 4636 #define CAN_F13R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:c65854d98061 4637 #define CAN_F13R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:c65854d98061 4638 #define CAN_F13R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:c65854d98061 4639 #define CAN_F13R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:c65854d98061 4640 #define CAN_F13R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:c65854d98061 4641 #define CAN_F13R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:c65854d98061 4642 #define CAN_F13R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:c65854d98061 4643
MartinJohnson 0:c65854d98061 4644 /******************* Bit definition for CAN_F0R2 register *******************/
MartinJohnson 0:c65854d98061 4645 #define CAN_F0R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:c65854d98061 4646 #define CAN_F0R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:c65854d98061 4647 #define CAN_F0R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:c65854d98061 4648 #define CAN_F0R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:c65854d98061 4649 #define CAN_F0R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:c65854d98061 4650 #define CAN_F0R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:c65854d98061 4651 #define CAN_F0R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:c65854d98061 4652 #define CAN_F0R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:c65854d98061 4653 #define CAN_F0R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:c65854d98061 4654 #define CAN_F0R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:c65854d98061 4655 #define CAN_F0R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:c65854d98061 4656 #define CAN_F0R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:c65854d98061 4657 #define CAN_F0R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:c65854d98061 4658 #define CAN_F0R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:c65854d98061 4659 #define CAN_F0R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:c65854d98061 4660 #define CAN_F0R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:c65854d98061 4661 #define CAN_F0R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:c65854d98061 4662 #define CAN_F0R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:c65854d98061 4663 #define CAN_F0R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:c65854d98061 4664 #define CAN_F0R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:c65854d98061 4665 #define CAN_F0R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:c65854d98061 4666 #define CAN_F0R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:c65854d98061 4667 #define CAN_F0R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:c65854d98061 4668 #define CAN_F0R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:c65854d98061 4669 #define CAN_F0R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:c65854d98061 4670 #define CAN_F0R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:c65854d98061 4671 #define CAN_F0R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:c65854d98061 4672 #define CAN_F0R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:c65854d98061 4673 #define CAN_F0R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:c65854d98061 4674 #define CAN_F0R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:c65854d98061 4675 #define CAN_F0R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:c65854d98061 4676 #define CAN_F0R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:c65854d98061 4677
MartinJohnson 0:c65854d98061 4678 /******************* Bit definition for CAN_F1R2 register *******************/
MartinJohnson 0:c65854d98061 4679 #define CAN_F1R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:c65854d98061 4680 #define CAN_F1R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:c65854d98061 4681 #define CAN_F1R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:c65854d98061 4682 #define CAN_F1R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:c65854d98061 4683 #define CAN_F1R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:c65854d98061 4684 #define CAN_F1R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:c65854d98061 4685 #define CAN_F1R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:c65854d98061 4686 #define CAN_F1R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:c65854d98061 4687 #define CAN_F1R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:c65854d98061 4688 #define CAN_F1R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:c65854d98061 4689 #define CAN_F1R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:c65854d98061 4690 #define CAN_F1R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:c65854d98061 4691 #define CAN_F1R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:c65854d98061 4692 #define CAN_F1R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:c65854d98061 4693 #define CAN_F1R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:c65854d98061 4694 #define CAN_F1R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:c65854d98061 4695 #define CAN_F1R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:c65854d98061 4696 #define CAN_F1R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:c65854d98061 4697 #define CAN_F1R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:c65854d98061 4698 #define CAN_F1R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:c65854d98061 4699 #define CAN_F1R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:c65854d98061 4700 #define CAN_F1R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:c65854d98061 4701 #define CAN_F1R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:c65854d98061 4702 #define CAN_F1R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:c65854d98061 4703 #define CAN_F1R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:c65854d98061 4704 #define CAN_F1R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:c65854d98061 4705 #define CAN_F1R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:c65854d98061 4706 #define CAN_F1R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:c65854d98061 4707 #define CAN_F1R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:c65854d98061 4708 #define CAN_F1R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:c65854d98061 4709 #define CAN_F1R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:c65854d98061 4710 #define CAN_F1R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:c65854d98061 4711
MartinJohnson 0:c65854d98061 4712 /******************* Bit definition for CAN_F2R2 register *******************/
MartinJohnson 0:c65854d98061 4713 #define CAN_F2R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:c65854d98061 4714 #define CAN_F2R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:c65854d98061 4715 #define CAN_F2R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:c65854d98061 4716 #define CAN_F2R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:c65854d98061 4717 #define CAN_F2R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:c65854d98061 4718 #define CAN_F2R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:c65854d98061 4719 #define CAN_F2R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:c65854d98061 4720 #define CAN_F2R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:c65854d98061 4721 #define CAN_F2R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:c65854d98061 4722 #define CAN_F2R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:c65854d98061 4723 #define CAN_F2R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:c65854d98061 4724 #define CAN_F2R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:c65854d98061 4725 #define CAN_F2R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:c65854d98061 4726 #define CAN_F2R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:c65854d98061 4727 #define CAN_F2R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:c65854d98061 4728 #define CAN_F2R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:c65854d98061 4729 #define CAN_F2R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:c65854d98061 4730 #define CAN_F2R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:c65854d98061 4731 #define CAN_F2R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:c65854d98061 4732 #define CAN_F2R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:c65854d98061 4733 #define CAN_F2R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:c65854d98061 4734 #define CAN_F2R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:c65854d98061 4735 #define CAN_F2R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:c65854d98061 4736 #define CAN_F2R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:c65854d98061 4737 #define CAN_F2R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:c65854d98061 4738 #define CAN_F2R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:c65854d98061 4739 #define CAN_F2R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:c65854d98061 4740 #define CAN_F2R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:c65854d98061 4741 #define CAN_F2R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:c65854d98061 4742 #define CAN_F2R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:c65854d98061 4743 #define CAN_F2R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:c65854d98061 4744 #define CAN_F2R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:c65854d98061 4745
MartinJohnson 0:c65854d98061 4746 /******************* Bit definition for CAN_F3R2 register *******************/
MartinJohnson 0:c65854d98061 4747 #define CAN_F3R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:c65854d98061 4748 #define CAN_F3R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:c65854d98061 4749 #define CAN_F3R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:c65854d98061 4750 #define CAN_F3R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:c65854d98061 4751 #define CAN_F3R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:c65854d98061 4752 #define CAN_F3R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:c65854d98061 4753 #define CAN_F3R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:c65854d98061 4754 #define CAN_F3R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:c65854d98061 4755 #define CAN_F3R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:c65854d98061 4756 #define CAN_F3R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:c65854d98061 4757 #define CAN_F3R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:c65854d98061 4758 #define CAN_F3R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:c65854d98061 4759 #define CAN_F3R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:c65854d98061 4760 #define CAN_F3R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:c65854d98061 4761 #define CAN_F3R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:c65854d98061 4762 #define CAN_F3R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:c65854d98061 4763 #define CAN_F3R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:c65854d98061 4764 #define CAN_F3R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:c65854d98061 4765 #define CAN_F3R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:c65854d98061 4766 #define CAN_F3R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:c65854d98061 4767 #define CAN_F3R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:c65854d98061 4768 #define CAN_F3R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:c65854d98061 4769 #define CAN_F3R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:c65854d98061 4770 #define CAN_F3R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:c65854d98061 4771 #define CAN_F3R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:c65854d98061 4772 #define CAN_F3R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:c65854d98061 4773 #define CAN_F3R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:c65854d98061 4774 #define CAN_F3R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:c65854d98061 4775 #define CAN_F3R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:c65854d98061 4776 #define CAN_F3R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:c65854d98061 4777 #define CAN_F3R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:c65854d98061 4778 #define CAN_F3R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:c65854d98061 4779
MartinJohnson 0:c65854d98061 4780 /******************* Bit definition for CAN_F4R2 register *******************/
MartinJohnson 0:c65854d98061 4781 #define CAN_F4R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:c65854d98061 4782 #define CAN_F4R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:c65854d98061 4783 #define CAN_F4R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:c65854d98061 4784 #define CAN_F4R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:c65854d98061 4785 #define CAN_F4R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:c65854d98061 4786 #define CAN_F4R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:c65854d98061 4787 #define CAN_F4R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:c65854d98061 4788 #define CAN_F4R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:c65854d98061 4789 #define CAN_F4R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:c65854d98061 4790 #define CAN_F4R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:c65854d98061 4791 #define CAN_F4R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:c65854d98061 4792 #define CAN_F4R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:c65854d98061 4793 #define CAN_F4R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:c65854d98061 4794 #define CAN_F4R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:c65854d98061 4795 #define CAN_F4R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:c65854d98061 4796 #define CAN_F4R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:c65854d98061 4797 #define CAN_F4R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:c65854d98061 4798 #define CAN_F4R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:c65854d98061 4799 #define CAN_F4R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:c65854d98061 4800 #define CAN_F4R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:c65854d98061 4801 #define CAN_F4R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:c65854d98061 4802 #define CAN_F4R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:c65854d98061 4803 #define CAN_F4R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:c65854d98061 4804 #define CAN_F4R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:c65854d98061 4805 #define CAN_F4R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:c65854d98061 4806 #define CAN_F4R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:c65854d98061 4807 #define CAN_F4R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:c65854d98061 4808 #define CAN_F4R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:c65854d98061 4809 #define CAN_F4R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:c65854d98061 4810 #define CAN_F4R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:c65854d98061 4811 #define CAN_F4R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:c65854d98061 4812 #define CAN_F4R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:c65854d98061 4813
MartinJohnson 0:c65854d98061 4814 /******************* Bit definition for CAN_F5R2 register *******************/
MartinJohnson 0:c65854d98061 4815 #define CAN_F5R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:c65854d98061 4816 #define CAN_F5R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:c65854d98061 4817 #define CAN_F5R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:c65854d98061 4818 #define CAN_F5R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:c65854d98061 4819 #define CAN_F5R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:c65854d98061 4820 #define CAN_F5R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:c65854d98061 4821 #define CAN_F5R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:c65854d98061 4822 #define CAN_F5R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:c65854d98061 4823 #define CAN_F5R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:c65854d98061 4824 #define CAN_F5R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:c65854d98061 4825 #define CAN_F5R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:c65854d98061 4826 #define CAN_F5R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:c65854d98061 4827 #define CAN_F5R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:c65854d98061 4828 #define CAN_F5R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:c65854d98061 4829 #define CAN_F5R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:c65854d98061 4830 #define CAN_F5R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:c65854d98061 4831 #define CAN_F5R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:c65854d98061 4832 #define CAN_F5R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:c65854d98061 4833 #define CAN_F5R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:c65854d98061 4834 #define CAN_F5R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:c65854d98061 4835 #define CAN_F5R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:c65854d98061 4836 #define CAN_F5R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:c65854d98061 4837 #define CAN_F5R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:c65854d98061 4838 #define CAN_F5R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:c65854d98061 4839 #define CAN_F5R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:c65854d98061 4840 #define CAN_F5R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:c65854d98061 4841 #define CAN_F5R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:c65854d98061 4842 #define CAN_F5R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:c65854d98061 4843 #define CAN_F5R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:c65854d98061 4844 #define CAN_F5R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:c65854d98061 4845 #define CAN_F5R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:c65854d98061 4846 #define CAN_F5R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:c65854d98061 4847
MartinJohnson 0:c65854d98061 4848 /******************* Bit definition for CAN_F6R2 register *******************/
MartinJohnson 0:c65854d98061 4849 #define CAN_F6R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:c65854d98061 4850 #define CAN_F6R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:c65854d98061 4851 #define CAN_F6R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:c65854d98061 4852 #define CAN_F6R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:c65854d98061 4853 #define CAN_F6R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:c65854d98061 4854 #define CAN_F6R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:c65854d98061 4855 #define CAN_F6R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:c65854d98061 4856 #define CAN_F6R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:c65854d98061 4857 #define CAN_F6R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:c65854d98061 4858 #define CAN_F6R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:c65854d98061 4859 #define CAN_F6R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:c65854d98061 4860 #define CAN_F6R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:c65854d98061 4861 #define CAN_F6R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:c65854d98061 4862 #define CAN_F6R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:c65854d98061 4863 #define CAN_F6R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:c65854d98061 4864 #define CAN_F6R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:c65854d98061 4865 #define CAN_F6R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:c65854d98061 4866 #define CAN_F6R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:c65854d98061 4867 #define CAN_F6R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:c65854d98061 4868 #define CAN_F6R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:c65854d98061 4869 #define CAN_F6R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:c65854d98061 4870 #define CAN_F6R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:c65854d98061 4871 #define CAN_F6R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:c65854d98061 4872 #define CAN_F6R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:c65854d98061 4873 #define CAN_F6R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:c65854d98061 4874 #define CAN_F6R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:c65854d98061 4875 #define CAN_F6R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:c65854d98061 4876 #define CAN_F6R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:c65854d98061 4877 #define CAN_F6R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:c65854d98061 4878 #define CAN_F6R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:c65854d98061 4879 #define CAN_F6R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:c65854d98061 4880 #define CAN_F6R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:c65854d98061 4881
MartinJohnson 0:c65854d98061 4882 /******************* Bit definition for CAN_F7R2 register *******************/
MartinJohnson 0:c65854d98061 4883 #define CAN_F7R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:c65854d98061 4884 #define CAN_F7R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:c65854d98061 4885 #define CAN_F7R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:c65854d98061 4886 #define CAN_F7R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:c65854d98061 4887 #define CAN_F7R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:c65854d98061 4888 #define CAN_F7R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:c65854d98061 4889 #define CAN_F7R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:c65854d98061 4890 #define CAN_F7R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:c65854d98061 4891 #define CAN_F7R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:c65854d98061 4892 #define CAN_F7R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:c65854d98061 4893 #define CAN_F7R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:c65854d98061 4894 #define CAN_F7R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:c65854d98061 4895 #define CAN_F7R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:c65854d98061 4896 #define CAN_F7R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:c65854d98061 4897 #define CAN_F7R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:c65854d98061 4898 #define CAN_F7R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:c65854d98061 4899 #define CAN_F7R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:c65854d98061 4900 #define CAN_F7R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:c65854d98061 4901 #define CAN_F7R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:c65854d98061 4902 #define CAN_F7R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:c65854d98061 4903 #define CAN_F7R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:c65854d98061 4904 #define CAN_F7R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:c65854d98061 4905 #define CAN_F7R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:c65854d98061 4906 #define CAN_F7R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:c65854d98061 4907 #define CAN_F7R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:c65854d98061 4908 #define CAN_F7R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:c65854d98061 4909 #define CAN_F7R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:c65854d98061 4910 #define CAN_F7R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:c65854d98061 4911 #define CAN_F7R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:c65854d98061 4912 #define CAN_F7R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:c65854d98061 4913 #define CAN_F7R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:c65854d98061 4914 #define CAN_F7R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:c65854d98061 4915
MartinJohnson 0:c65854d98061 4916 /******************* Bit definition for CAN_F8R2 register *******************/
MartinJohnson 0:c65854d98061 4917 #define CAN_F8R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:c65854d98061 4918 #define CAN_F8R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:c65854d98061 4919 #define CAN_F8R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:c65854d98061 4920 #define CAN_F8R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:c65854d98061 4921 #define CAN_F8R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:c65854d98061 4922 #define CAN_F8R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:c65854d98061 4923 #define CAN_F8R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:c65854d98061 4924 #define CAN_F8R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:c65854d98061 4925 #define CAN_F8R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:c65854d98061 4926 #define CAN_F8R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:c65854d98061 4927 #define CAN_F8R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:c65854d98061 4928 #define CAN_F8R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:c65854d98061 4929 #define CAN_F8R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:c65854d98061 4930 #define CAN_F8R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:c65854d98061 4931 #define CAN_F8R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:c65854d98061 4932 #define CAN_F8R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:c65854d98061 4933 #define CAN_F8R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:c65854d98061 4934 #define CAN_F8R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:c65854d98061 4935 #define CAN_F8R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:c65854d98061 4936 #define CAN_F8R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:c65854d98061 4937 #define CAN_F8R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:c65854d98061 4938 #define CAN_F8R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:c65854d98061 4939 #define CAN_F8R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:c65854d98061 4940 #define CAN_F8R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:c65854d98061 4941 #define CAN_F8R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:c65854d98061 4942 #define CAN_F8R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:c65854d98061 4943 #define CAN_F8R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:c65854d98061 4944 #define CAN_F8R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:c65854d98061 4945 #define CAN_F8R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:c65854d98061 4946 #define CAN_F8R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:c65854d98061 4947 #define CAN_F8R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:c65854d98061 4948 #define CAN_F8R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:c65854d98061 4949
MartinJohnson 0:c65854d98061 4950 /******************* Bit definition for CAN_F9R2 register *******************/
MartinJohnson 0:c65854d98061 4951 #define CAN_F9R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:c65854d98061 4952 #define CAN_F9R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:c65854d98061 4953 #define CAN_F9R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:c65854d98061 4954 #define CAN_F9R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:c65854d98061 4955 #define CAN_F9R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:c65854d98061 4956 #define CAN_F9R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:c65854d98061 4957 #define CAN_F9R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:c65854d98061 4958 #define CAN_F9R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:c65854d98061 4959 #define CAN_F9R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:c65854d98061 4960 #define CAN_F9R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:c65854d98061 4961 #define CAN_F9R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:c65854d98061 4962 #define CAN_F9R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:c65854d98061 4963 #define CAN_F9R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:c65854d98061 4964 #define CAN_F9R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:c65854d98061 4965 #define CAN_F9R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:c65854d98061 4966 #define CAN_F9R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:c65854d98061 4967 #define CAN_F9R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:c65854d98061 4968 #define CAN_F9R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:c65854d98061 4969 #define CAN_F9R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:c65854d98061 4970 #define CAN_F9R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:c65854d98061 4971 #define CAN_F9R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:c65854d98061 4972 #define CAN_F9R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:c65854d98061 4973 #define CAN_F9R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:c65854d98061 4974 #define CAN_F9R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:c65854d98061 4975 #define CAN_F9R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:c65854d98061 4976 #define CAN_F9R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:c65854d98061 4977 #define CAN_F9R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:c65854d98061 4978 #define CAN_F9R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:c65854d98061 4979 #define CAN_F9R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:c65854d98061 4980 #define CAN_F9R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:c65854d98061 4981 #define CAN_F9R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:c65854d98061 4982 #define CAN_F9R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:c65854d98061 4983
MartinJohnson 0:c65854d98061 4984 /******************* Bit definition for CAN_F10R2 register ******************/
MartinJohnson 0:c65854d98061 4985 #define CAN_F10R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:c65854d98061 4986 #define CAN_F10R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:c65854d98061 4987 #define CAN_F10R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:c65854d98061 4988 #define CAN_F10R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:c65854d98061 4989 #define CAN_F10R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:c65854d98061 4990 #define CAN_F10R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:c65854d98061 4991 #define CAN_F10R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:c65854d98061 4992 #define CAN_F10R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:c65854d98061 4993 #define CAN_F10R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:c65854d98061 4994 #define CAN_F10R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:c65854d98061 4995 #define CAN_F10R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:c65854d98061 4996 #define CAN_F10R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:c65854d98061 4997 #define CAN_F10R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:c65854d98061 4998 #define CAN_F10R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:c65854d98061 4999 #define CAN_F10R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:c65854d98061 5000 #define CAN_F10R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:c65854d98061 5001 #define CAN_F10R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:c65854d98061 5002 #define CAN_F10R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:c65854d98061 5003 #define CAN_F10R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:c65854d98061 5004 #define CAN_F10R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:c65854d98061 5005 #define CAN_F10R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:c65854d98061 5006 #define CAN_F10R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:c65854d98061 5007 #define CAN_F10R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:c65854d98061 5008 #define CAN_F10R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:c65854d98061 5009 #define CAN_F10R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:c65854d98061 5010 #define CAN_F10R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:c65854d98061 5011 #define CAN_F10R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:c65854d98061 5012 #define CAN_F10R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:c65854d98061 5013 #define CAN_F10R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:c65854d98061 5014 #define CAN_F10R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:c65854d98061 5015 #define CAN_F10R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:c65854d98061 5016 #define CAN_F10R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:c65854d98061 5017
MartinJohnson 0:c65854d98061 5018 /******************* Bit definition for CAN_F11R2 register ******************/
MartinJohnson 0:c65854d98061 5019 #define CAN_F11R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:c65854d98061 5020 #define CAN_F11R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:c65854d98061 5021 #define CAN_F11R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:c65854d98061 5022 #define CAN_F11R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:c65854d98061 5023 #define CAN_F11R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:c65854d98061 5024 #define CAN_F11R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:c65854d98061 5025 #define CAN_F11R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:c65854d98061 5026 #define CAN_F11R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:c65854d98061 5027 #define CAN_F11R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:c65854d98061 5028 #define CAN_F11R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:c65854d98061 5029 #define CAN_F11R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:c65854d98061 5030 #define CAN_F11R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:c65854d98061 5031 #define CAN_F11R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:c65854d98061 5032 #define CAN_F11R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:c65854d98061 5033 #define CAN_F11R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:c65854d98061 5034 #define CAN_F11R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:c65854d98061 5035 #define CAN_F11R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:c65854d98061 5036 #define CAN_F11R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:c65854d98061 5037 #define CAN_F11R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:c65854d98061 5038 #define CAN_F11R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:c65854d98061 5039 #define CAN_F11R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:c65854d98061 5040 #define CAN_F11R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:c65854d98061 5041 #define CAN_F11R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:c65854d98061 5042 #define CAN_F11R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:c65854d98061 5043 #define CAN_F11R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:c65854d98061 5044 #define CAN_F11R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:c65854d98061 5045 #define CAN_F11R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:c65854d98061 5046 #define CAN_F11R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:c65854d98061 5047 #define CAN_F11R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:c65854d98061 5048 #define CAN_F11R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:c65854d98061 5049 #define CAN_F11R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:c65854d98061 5050 #define CAN_F11R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:c65854d98061 5051
MartinJohnson 0:c65854d98061 5052 /******************* Bit definition for CAN_F12R2 register ******************/
MartinJohnson 0:c65854d98061 5053 #define CAN_F12R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:c65854d98061 5054 #define CAN_F12R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:c65854d98061 5055 #define CAN_F12R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:c65854d98061 5056 #define CAN_F12R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:c65854d98061 5057 #define CAN_F12R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:c65854d98061 5058 #define CAN_F12R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:c65854d98061 5059 #define CAN_F12R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:c65854d98061 5060 #define CAN_F12R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:c65854d98061 5061 #define CAN_F12R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:c65854d98061 5062 #define CAN_F12R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:c65854d98061 5063 #define CAN_F12R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:c65854d98061 5064 #define CAN_F12R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:c65854d98061 5065 #define CAN_F12R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:c65854d98061 5066 #define CAN_F12R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:c65854d98061 5067 #define CAN_F12R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:c65854d98061 5068 #define CAN_F12R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:c65854d98061 5069 #define CAN_F12R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:c65854d98061 5070 #define CAN_F12R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:c65854d98061 5071 #define CAN_F12R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:c65854d98061 5072 #define CAN_F12R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:c65854d98061 5073 #define CAN_F12R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:c65854d98061 5074 #define CAN_F12R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:c65854d98061 5075 #define CAN_F12R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:c65854d98061 5076 #define CAN_F12R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:c65854d98061 5077 #define CAN_F12R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:c65854d98061 5078 #define CAN_F12R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:c65854d98061 5079 #define CAN_F12R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:c65854d98061 5080 #define CAN_F12R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:c65854d98061 5081 #define CAN_F12R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:c65854d98061 5082 #define CAN_F12R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:c65854d98061 5083 #define CAN_F12R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:c65854d98061 5084 #define CAN_F12R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:c65854d98061 5085
MartinJohnson 0:c65854d98061 5086 /******************* Bit definition for CAN_F13R2 register ******************/
MartinJohnson 0:c65854d98061 5087 #define CAN_F13R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:c65854d98061 5088 #define CAN_F13R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:c65854d98061 5089 #define CAN_F13R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:c65854d98061 5090 #define CAN_F13R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:c65854d98061 5091 #define CAN_F13R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:c65854d98061 5092 #define CAN_F13R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:c65854d98061 5093 #define CAN_F13R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:c65854d98061 5094 #define CAN_F13R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:c65854d98061 5095 #define CAN_F13R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:c65854d98061 5096 #define CAN_F13R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:c65854d98061 5097 #define CAN_F13R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:c65854d98061 5098 #define CAN_F13R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:c65854d98061 5099 #define CAN_F13R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:c65854d98061 5100 #define CAN_F13R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:c65854d98061 5101 #define CAN_F13R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:c65854d98061 5102 #define CAN_F13R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:c65854d98061 5103 #define CAN_F13R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:c65854d98061 5104 #define CAN_F13R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:c65854d98061 5105 #define CAN_F13R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:c65854d98061 5106 #define CAN_F13R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:c65854d98061 5107 #define CAN_F13R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:c65854d98061 5108 #define CAN_F13R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:c65854d98061 5109 #define CAN_F13R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:c65854d98061 5110 #define CAN_F13R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:c65854d98061 5111 #define CAN_F13R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:c65854d98061 5112 #define CAN_F13R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:c65854d98061 5113 #define CAN_F13R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:c65854d98061 5114 #define CAN_F13R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:c65854d98061 5115 #define CAN_F13R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:c65854d98061 5116 #define CAN_F13R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:c65854d98061 5117 #define CAN_F13R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:c65854d98061 5118 #define CAN_F13R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:c65854d98061 5119
MartinJohnson 0:c65854d98061 5120 /******************************************************************************/
MartinJohnson 0:c65854d98061 5121 /* */
MartinJohnson 0:c65854d98061 5122 /* CRC calculation unit (CRC) */
MartinJohnson 0:c65854d98061 5123 /* */
MartinJohnson 0:c65854d98061 5124 /******************************************************************************/
MartinJohnson 0:c65854d98061 5125 /******************* Bit definition for CRC_DR register *********************/
MartinJohnson 0:c65854d98061 5126 #define CRC_DR_DR ((uint32_t)0xFFFFFFFF) /*!< Data register bits */
MartinJohnson 0:c65854d98061 5127
MartinJohnson 0:c65854d98061 5128 /******************* Bit definition for CRC_IDR register ********************/
MartinJohnson 0:c65854d98061 5129 #define CRC_IDR_IDR ((uint8_t)0xFF) /*!< General-purpose 8-bit data register bits */
MartinJohnson 0:c65854d98061 5130
MartinJohnson 0:c65854d98061 5131 /******************** Bit definition for CRC_CR register ********************/
MartinJohnson 0:c65854d98061 5132 #define CRC_CR_RESET ((uint32_t)0x00000001) /*!< RESET the CRC computation unit bit */
MartinJohnson 0:c65854d98061 5133 #define CRC_CR_POLSIZE ((uint32_t)0x00000018) /*!< Polynomial size bits */
MartinJohnson 0:c65854d98061 5134 #define CRC_CR_POLSIZE_0 ((uint32_t)0x00000008) /*!< Polynomial size bit 0 */
MartinJohnson 0:c65854d98061 5135 #define CRC_CR_POLSIZE_1 ((uint32_t)0x00000010) /*!< Polynomial size bit 1 */
MartinJohnson 0:c65854d98061 5136 #define CRC_CR_REV_IN ((uint32_t)0x00000060) /*!< REV_IN Reverse Input Data bits */
MartinJohnson 0:c65854d98061 5137 #define CRC_CR_REV_IN_0 ((uint32_t)0x00000020) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 5138 #define CRC_CR_REV_IN_1 ((uint32_t)0x00000040) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 5139 #define CRC_CR_REV_OUT ((uint32_t)0x00000080) /*!< REV_OUT Reverse Output Data bits */
MartinJohnson 0:c65854d98061 5140
MartinJohnson 0:c65854d98061 5141 /******************* Bit definition for CRC_INIT register *******************/
MartinJohnson 0:c65854d98061 5142 #define CRC_INIT_INIT ((uint32_t)0xFFFFFFFF) /*!< Initial CRC value bits */
MartinJohnson 0:c65854d98061 5143
MartinJohnson 0:c65854d98061 5144 /******************* Bit definition for CRC_POL register ********************/
MartinJohnson 0:c65854d98061 5145 #define CRC_POL_POL ((uint32_t)0xFFFFFFFF) /*!< Coefficients of the polynomial */
MartinJohnson 0:c65854d98061 5146 /******************************************************************************/
MartinJohnson 0:c65854d98061 5147 /* */
MartinJohnson 0:c65854d98061 5148 /* Digital to Analog Converter (DAC) */
MartinJohnson 0:c65854d98061 5149 /* */
MartinJohnson 0:c65854d98061 5150 /******************************************************************************/
MartinJohnson 0:c65854d98061 5151 /******************** Bit definition for DAC_CR register ********************/
MartinJohnson 0:c65854d98061 5152 #define DAC_CR_EN1 ((uint32_t)0x00000001) /*!< DAC channel1 enable */
MartinJohnson 0:c65854d98061 5153 #define DAC_CR_BOFF1 ((uint32_t)0x00000002) /*!< DAC channel1 output buffer disable */
MartinJohnson 0:c65854d98061 5154 #define DAC_CR_TEN1 ((uint32_t)0x00000004) /*!< DAC channel1 Trigger enable */
MartinJohnson 0:c65854d98061 5155
MartinJohnson 0:c65854d98061 5156 #define DAC_CR_TSEL1 ((uint32_t)0x00000038) /*!< TSEL1[2:0] (DAC channel1 Trigger selection) */
MartinJohnson 0:c65854d98061 5157 #define DAC_CR_TSEL1_0 ((uint32_t)0x00000008) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 5158 #define DAC_CR_TSEL1_1 ((uint32_t)0x00000010) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 5159 #define DAC_CR_TSEL1_2 ((uint32_t)0x00000020) /*!< Bit 2 */
MartinJohnson 0:c65854d98061 5160
MartinJohnson 0:c65854d98061 5161 #define DAC_CR_WAVE1 ((uint32_t)0x000000C0) /*!< WAVE1[1:0] (DAC channel1 noise/triangle wave generation enable) */
MartinJohnson 0:c65854d98061 5162 #define DAC_CR_WAVE1_0 ((uint32_t)0x00000040) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 5163 #define DAC_CR_WAVE1_1 ((uint32_t)0x00000080) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 5164
MartinJohnson 0:c65854d98061 5165 #define DAC_CR_MAMP1 ((uint32_t)0x00000F00) /*!< MAMP1[3:0] (DAC channel1 Mask/Amplitude selector) */
MartinJohnson 0:c65854d98061 5166 #define DAC_CR_MAMP1_0 ((uint32_t)0x00000100) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 5167 #define DAC_CR_MAMP1_1 ((uint32_t)0x00000200) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 5168 #define DAC_CR_MAMP1_2 ((uint32_t)0x00000400) /*!< Bit 2 */
MartinJohnson 0:c65854d98061 5169 #define DAC_CR_MAMP1_3 ((uint32_t)0x00000800) /*!< Bit 3 */
MartinJohnson 0:c65854d98061 5170
MartinJohnson 0:c65854d98061 5171 #define DAC_CR_DMAEN1 ((uint32_t)0x00001000) /*!< DAC channel1 DMA enable */
MartinJohnson 0:c65854d98061 5172 #define DAC_CR_DMAUDRIE1 ((uint32_t)0x00002000) /*!< DAC channel1 DMA underrun IT enable */
MartinJohnson 0:c65854d98061 5173 #define DAC_CR_EN2 ((uint32_t)0x00010000) /*!< DAC channel2 enable */
MartinJohnson 0:c65854d98061 5174 #define DAC_CR_BOFF2 ((uint32_t)0x00020000) /*!< DAC channel2 output buffer disable */
MartinJohnson 0:c65854d98061 5175 #define DAC_CR_TEN2 ((uint32_t)0x00040000) /*!< DAC channel2 Trigger enable */
MartinJohnson 0:c65854d98061 5176
MartinJohnson 0:c65854d98061 5177 #define DAC_CR_TSEL2 ((uint32_t)0x00380000) /*!< TSEL2[2:0] (DAC channel2 Trigger selection) */
MartinJohnson 0:c65854d98061 5178 #define DAC_CR_TSEL2_0 ((uint32_t)0x00080000) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 5179 #define DAC_CR_TSEL2_1 ((uint32_t)0x00100000) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 5180 #define DAC_CR_TSEL2_2 ((uint32_t)0x00200000) /*!< Bit 2 */
MartinJohnson 0:c65854d98061 5181
MartinJohnson 0:c65854d98061 5182 #define DAC_CR_WAVE2 ((uint32_t)0x00C00000) /*!< WAVE2[1:0] (DAC channel2 noise/triangle wave generation enable) */
MartinJohnson 0:c65854d98061 5183 #define DAC_CR_WAVE2_0 ((uint32_t)0x00400000) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 5184 #define DAC_CR_WAVE2_1 ((uint32_t)0x00800000) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 5185
MartinJohnson 0:c65854d98061 5186 #define DAC_CR_MAMP2 ((uint32_t)0x0F000000) /*!< MAMP2[3:0] (DAC channel2 Mask/Amplitude selector) */
MartinJohnson 0:c65854d98061 5187 #define DAC_CR_MAMP2_0 ((uint32_t)0x01000000) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 5188 #define DAC_CR_MAMP2_1 ((uint32_t)0x02000000) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 5189 #define DAC_CR_MAMP2_2 ((uint32_t)0x04000000) /*!< Bit 2 */
MartinJohnson 0:c65854d98061 5190 #define DAC_CR_MAMP2_3 ((uint32_t)0x08000000) /*!< Bit 3 */
MartinJohnson 0:c65854d98061 5191
MartinJohnson 0:c65854d98061 5192 #define DAC_CR_DMAEN2 ((uint32_t)0x10000000) /*!< DAC channel2 DMA enabled */
MartinJohnson 0:c65854d98061 5193 #define DAC_CR_DMAUDRIE2 ((uint32_t)0x20000000) /*!< DAC channel2 DMA underrun IT enable */
MartinJohnson 0:c65854d98061 5194
MartinJohnson 0:c65854d98061 5195 /***************** Bit definition for DAC_SWTRIGR register ******************/
MartinJohnson 0:c65854d98061 5196 #define DAC_SWTRIGR_SWTRIG1 ((uint8_t)0x01) /*!< DAC channel1 software trigger */
MartinJohnson 0:c65854d98061 5197 #define DAC_SWTRIGR_SWTRIG2 ((uint8_t)0x02) /*!< DAC channel2 software trigger */
MartinJohnson 0:c65854d98061 5198
MartinJohnson 0:c65854d98061 5199 /***************** Bit definition for DAC_DHR12R1 register ******************/
MartinJohnson 0:c65854d98061 5200 #define DAC_DHR12R1_DACC1DHR ((uint16_t)0x0FFF) /*!< DAC channel1 12-bit Right aligned data */
MartinJohnson 0:c65854d98061 5201
MartinJohnson 0:c65854d98061 5202 /***************** Bit definition for DAC_DHR12L1 register ******************/
MartinJohnson 0:c65854d98061 5203 #define DAC_DHR12L1_DACC1DHR ((uint16_t)0xFFF0) /*!< DAC channel1 12-bit Left aligned data */
MartinJohnson 0:c65854d98061 5204
MartinJohnson 0:c65854d98061 5205 /****************** Bit definition for DAC_DHR8R1 register ******************/
MartinJohnson 0:c65854d98061 5206 #define DAC_DHR8R1_DACC1DHR ((uint8_t)0xFF) /*!< DAC channel1 8-bit Right aligned data */
MartinJohnson 0:c65854d98061 5207
MartinJohnson 0:c65854d98061 5208 /***************** Bit definition for DAC_DHR12R2 register ******************/
MartinJohnson 0:c65854d98061 5209 #define DAC_DHR12R2_DACC2DHR ((uint16_t)0x0FFF) /*!< DAC channel2 12-bit Right aligned data */
MartinJohnson 0:c65854d98061 5210
MartinJohnson 0:c65854d98061 5211 /***************** Bit definition for DAC_DHR12L2 register ******************/
MartinJohnson 0:c65854d98061 5212 #define DAC_DHR12L2_DACC2DHR ((uint16_t)0xFFF0) /*!< DAC channel2 12-bit Left aligned data */
MartinJohnson 0:c65854d98061 5213
MartinJohnson 0:c65854d98061 5214 /****************** Bit definition for DAC_DHR8R2 register ******************/
MartinJohnson 0:c65854d98061 5215 #define DAC_DHR8R2_DACC2DHR ((uint8_t)0xFF) /*!< DAC channel2 8-bit Right aligned data */
MartinJohnson 0:c65854d98061 5216
MartinJohnson 0:c65854d98061 5217 /***************** Bit definition for DAC_DHR12RD register ******************/
MartinJohnson 0:c65854d98061 5218 #define DAC_DHR12RD_DACC1DHR ((uint32_t)0x00000FFF) /*!< DAC channel1 12-bit Right aligned data */
MartinJohnson 0:c65854d98061 5219 #define DAC_DHR12RD_DACC2DHR ((uint32_t)0x0FFF0000) /*!< DAC channel2 12-bit Right aligned data */
MartinJohnson 0:c65854d98061 5220
MartinJohnson 0:c65854d98061 5221 /***************** Bit definition for DAC_DHR12LD register ******************/
MartinJohnson 0:c65854d98061 5222 #define DAC_DHR12LD_DACC1DHR ((uint32_t)0x0000FFF0) /*!< DAC channel1 12-bit Left aligned data */
MartinJohnson 0:c65854d98061 5223 #define DAC_DHR12LD_DACC2DHR ((uint32_t)0xFFF00000) /*!< DAC channel2 12-bit Left aligned data */
MartinJohnson 0:c65854d98061 5224
MartinJohnson 0:c65854d98061 5225 /****************** Bit definition for DAC_DHR8RD register ******************/
MartinJohnson 0:c65854d98061 5226 #define DAC_DHR8RD_DACC1DHR ((uint16_t)0x00FF) /*!< DAC channel1 8-bit Right aligned data */
MartinJohnson 0:c65854d98061 5227 #define DAC_DHR8RD_DACC2DHR ((uint16_t)0xFF00) /*!< DAC channel2 8-bit Right aligned data */
MartinJohnson 0:c65854d98061 5228
MartinJohnson 0:c65854d98061 5229 /******************* Bit definition for DAC_DOR1 register *******************/
MartinJohnson 0:c65854d98061 5230 #define DAC_DOR1_DACC1DOR ((uint16_t)0x0FFF) /*!< DAC channel1 data output */
MartinJohnson 0:c65854d98061 5231
MartinJohnson 0:c65854d98061 5232 /******************* Bit definition for DAC_DOR2 register *******************/
MartinJohnson 0:c65854d98061 5233 #define DAC_DOR2_DACC2DOR ((uint16_t)0x0FFF) /*!< DAC channel2 data output */
MartinJohnson 0:c65854d98061 5234
MartinJohnson 0:c65854d98061 5235 /******************** Bit definition for DAC_SR register ********************/
MartinJohnson 0:c65854d98061 5236 #define DAC_SR_DMAUDR1 ((uint32_t)0x00002000) /*!< DAC channel1 DMA underrun flag */
MartinJohnson 0:c65854d98061 5237 #define DAC_SR_DMAUDR2 ((uint32_t)0x20000000) /*!< DAC channel2 DMA underrun flag */
MartinJohnson 0:c65854d98061 5238
MartinJohnson 0:c65854d98061 5239 /******************************************************************************/
MartinJohnson 0:c65854d98061 5240 /* */
MartinJohnson 0:c65854d98061 5241 /* Debug MCU (DBGMCU) */
MartinJohnson 0:c65854d98061 5242 /* */
MartinJohnson 0:c65854d98061 5243 /******************************************************************************/
MartinJohnson 0:c65854d98061 5244 /******************** Bit definition for DBGMCU_IDCODE register *************/
MartinJohnson 0:c65854d98061 5245 #define DBGMCU_IDCODE_DEV_ID ((uint32_t)0x00000FFF)
MartinJohnson 0:c65854d98061 5246 #define DBGMCU_IDCODE_REV_ID ((uint32_t)0xFFFF0000)
MartinJohnson 0:c65854d98061 5247
MartinJohnson 0:c65854d98061 5248 /******************** Bit definition for DBGMCU_CR register *****************/
MartinJohnson 0:c65854d98061 5249 #define DBGMCU_CR_DBG_SLEEP ((uint32_t)0x00000001)
MartinJohnson 0:c65854d98061 5250 #define DBGMCU_CR_DBG_STOP ((uint32_t)0x00000002)
MartinJohnson 0:c65854d98061 5251 #define DBGMCU_CR_DBG_STANDBY ((uint32_t)0x00000004)
MartinJohnson 0:c65854d98061 5252 #define DBGMCU_CR_TRACE_IOEN ((uint32_t)0x00000020)
MartinJohnson 0:c65854d98061 5253
MartinJohnson 0:c65854d98061 5254 #define DBGMCU_CR_TRACE_MODE ((uint32_t)0x000000C0)
MartinJohnson 0:c65854d98061 5255 #define DBGMCU_CR_TRACE_MODE_0 ((uint32_t)0x00000040)/*!<Bit 0 */
MartinJohnson 0:c65854d98061 5256 #define DBGMCU_CR_TRACE_MODE_1 ((uint32_t)0x00000080)/*!<Bit 1 */
MartinJohnson 0:c65854d98061 5257
MartinJohnson 0:c65854d98061 5258 /******************** Bit definition for DBGMCU_APB1_FZ register ************/
MartinJohnson 0:c65854d98061 5259 #define DBGMCU_APB1_FZ_DBG_TIM2_STOP ((uint32_t)0x00000001)
MartinJohnson 0:c65854d98061 5260 #define DBGMCU_APB1_FZ_DBG_TIM3_STOP ((uint32_t)0x00000002)
MartinJohnson 0:c65854d98061 5261 #define DBGMCU_APB1_FZ_DBG_TIM4_STOP ((uint32_t)0x00000004)
MartinJohnson 0:c65854d98061 5262 #define DBGMCU_APB1_FZ_DBG_TIM6_STOP ((uint32_t)0x00000010)
MartinJohnson 0:c65854d98061 5263 #define DBGMCU_APB1_FZ_DBG_TIM7_STOP ((uint32_t)0x00000020)
MartinJohnson 0:c65854d98061 5264 #define DBGMCU_APB1_FZ_DBG_RTC_STOP ((uint32_t)0x00000400)
MartinJohnson 0:c65854d98061 5265 #define DBGMCU_APB1_FZ_DBG_WWDG_STOP ((uint32_t)0x00000800)
MartinJohnson 0:c65854d98061 5266 #define DBGMCU_APB1_FZ_DBG_IWDG_STOP ((uint32_t)0x00001000)
MartinJohnson 0:c65854d98061 5267 #define DBGMCU_APB1_FZ_DBG_I2C1_SMBUS_TIMEOUT ((uint32_t)0x00200000)
MartinJohnson 0:c65854d98061 5268 #define DBGMCU_APB1_FZ_DBG_I2C2_SMBUS_TIMEOUT ((uint32_t)0x00400000)
MartinJohnson 0:c65854d98061 5269 #define DBGMCU_APB1_FZ_DBG_CAN1_STOP ((uint32_t)0x02000000)
MartinJohnson 0:c65854d98061 5270 #define DBGMCU_APB1_FZ_DBG_I2C3_SMBUS_TIMEOUT ((uint32_t)0x04000000)
MartinJohnson 0:c65854d98061 5271
MartinJohnson 0:c65854d98061 5272 /******************** Bit definition for DBGMCU_APB2_FZ register ************/
MartinJohnson 0:c65854d98061 5273 #define DBGMCU_APB2_FZ_DBG_TIM1_STOP ((uint32_t)0x00000001)
MartinJohnson 0:c65854d98061 5274 #define DBGMCU_APB2_FZ_DBG_TIM8_STOP ((uint32_t)0x00000002)
MartinJohnson 0:c65854d98061 5275 #define DBGMCU_APB2_FZ_DBG_TIM15_STOP ((uint32_t)0x00000004)
MartinJohnson 0:c65854d98061 5276 #define DBGMCU_APB2_FZ_DBG_TIM16_STOP ((uint32_t)0x00000008)
MartinJohnson 0:c65854d98061 5277 #define DBGMCU_APB2_FZ_DBG_TIM17_STOP ((uint32_t)0x00000010)
MartinJohnson 0:c65854d98061 5278 #define DBGMCU_APB2_FZ_DBG_TIM20_STOP ((uint32_t)0x00000020)
MartinJohnson 0:c65854d98061 5279
MartinJohnson 0:c65854d98061 5280 /******************************************************************************/
MartinJohnson 0:c65854d98061 5281 /* */
MartinJohnson 0:c65854d98061 5282 /* DMA Controller (DMA) */
MartinJohnson 0:c65854d98061 5283 /* */
MartinJohnson 0:c65854d98061 5284 /******************************************************************************/
MartinJohnson 0:c65854d98061 5285 /******************* Bit definition for DMA_ISR register ********************/
MartinJohnson 0:c65854d98061 5286 #define DMA_ISR_GIF1 ((uint32_t)0x00000001) /*!< Channel 1 Global interrupt flag */
MartinJohnson 0:c65854d98061 5287 #define DMA_ISR_TCIF1 ((uint32_t)0x00000002) /*!< Channel 1 Transfer Complete flag */
MartinJohnson 0:c65854d98061 5288 #define DMA_ISR_HTIF1 ((uint32_t)0x00000004) /*!< Channel 1 Half Transfer flag */
MartinJohnson 0:c65854d98061 5289 #define DMA_ISR_TEIF1 ((uint32_t)0x00000008) /*!< Channel 1 Transfer Error flag */
MartinJohnson 0:c65854d98061 5290 #define DMA_ISR_GIF2 ((uint32_t)0x00000010) /*!< Channel 2 Global interrupt flag */
MartinJohnson 0:c65854d98061 5291 #define DMA_ISR_TCIF2 ((uint32_t)0x00000020) /*!< Channel 2 Transfer Complete flag */
MartinJohnson 0:c65854d98061 5292 #define DMA_ISR_HTIF2 ((uint32_t)0x00000040) /*!< Channel 2 Half Transfer flag */
MartinJohnson 0:c65854d98061 5293 #define DMA_ISR_TEIF2 ((uint32_t)0x00000080) /*!< Channel 2 Transfer Error flag */
MartinJohnson 0:c65854d98061 5294 #define DMA_ISR_GIF3 ((uint32_t)0x00000100) /*!< Channel 3 Global interrupt flag */
MartinJohnson 0:c65854d98061 5295 #define DMA_ISR_TCIF3 ((uint32_t)0x00000200) /*!< Channel 3 Transfer Complete flag */
MartinJohnson 0:c65854d98061 5296 #define DMA_ISR_HTIF3 ((uint32_t)0x00000400) /*!< Channel 3 Half Transfer flag */
MartinJohnson 0:c65854d98061 5297 #define DMA_ISR_TEIF3 ((uint32_t)0x00000800) /*!< Channel 3 Transfer Error flag */
MartinJohnson 0:c65854d98061 5298 #define DMA_ISR_GIF4 ((uint32_t)0x00001000) /*!< Channel 4 Global interrupt flag */
MartinJohnson 0:c65854d98061 5299 #define DMA_ISR_TCIF4 ((uint32_t)0x00002000) /*!< Channel 4 Transfer Complete flag */
MartinJohnson 0:c65854d98061 5300 #define DMA_ISR_HTIF4 ((uint32_t)0x00004000) /*!< Channel 4 Half Transfer flag */
MartinJohnson 0:c65854d98061 5301 #define DMA_ISR_TEIF4 ((uint32_t)0x00008000) /*!< Channel 4 Transfer Error flag */
MartinJohnson 0:c65854d98061 5302 #define DMA_ISR_GIF5 ((uint32_t)0x00010000) /*!< Channel 5 Global interrupt flag */
MartinJohnson 0:c65854d98061 5303 #define DMA_ISR_TCIF5 ((uint32_t)0x00020000) /*!< Channel 5 Transfer Complete flag */
MartinJohnson 0:c65854d98061 5304 #define DMA_ISR_HTIF5 ((uint32_t)0x00040000) /*!< Channel 5 Half Transfer flag */
MartinJohnson 0:c65854d98061 5305 #define DMA_ISR_TEIF5 ((uint32_t)0x00080000) /*!< Channel 5 Transfer Error flag */
MartinJohnson 0:c65854d98061 5306 #define DMA_ISR_GIF6 ((uint32_t)0x00100000) /*!< Channel 6 Global interrupt flag */
MartinJohnson 0:c65854d98061 5307 #define DMA_ISR_TCIF6 ((uint32_t)0x00200000) /*!< Channel 6 Transfer Complete flag */
MartinJohnson 0:c65854d98061 5308 #define DMA_ISR_HTIF6 ((uint32_t)0x00400000) /*!< Channel 6 Half Transfer flag */
MartinJohnson 0:c65854d98061 5309 #define DMA_ISR_TEIF6 ((uint32_t)0x00800000) /*!< Channel 6 Transfer Error flag */
MartinJohnson 0:c65854d98061 5310 #define DMA_ISR_GIF7 ((uint32_t)0x01000000) /*!< Channel 7 Global interrupt flag */
MartinJohnson 0:c65854d98061 5311 #define DMA_ISR_TCIF7 ((uint32_t)0x02000000) /*!< Channel 7 Transfer Complete flag */
MartinJohnson 0:c65854d98061 5312 #define DMA_ISR_HTIF7 ((uint32_t)0x04000000) /*!< Channel 7 Half Transfer flag */
MartinJohnson 0:c65854d98061 5313 #define DMA_ISR_TEIF7 ((uint32_t)0x08000000) /*!< Channel 7 Transfer Error flag */
MartinJohnson 0:c65854d98061 5314
MartinJohnson 0:c65854d98061 5315 /******************* Bit definition for DMA_IFCR register *******************/
MartinJohnson 0:c65854d98061 5316 #define DMA_IFCR_CGIF1 ((uint32_t)0x00000001) /*!< Channel 1 Global interrupt clear */
MartinJohnson 0:c65854d98061 5317 #define DMA_IFCR_CTCIF1 ((uint32_t)0x00000002) /*!< Channel 1 Transfer Complete clear */
MartinJohnson 0:c65854d98061 5318 #define DMA_IFCR_CHTIF1 ((uint32_t)0x00000004) /*!< Channel 1 Half Transfer clear */
MartinJohnson 0:c65854d98061 5319 #define DMA_IFCR_CTEIF1 ((uint32_t)0x00000008) /*!< Channel 1 Transfer Error clear */
MartinJohnson 0:c65854d98061 5320 #define DMA_IFCR_CGIF2 ((uint32_t)0x00000010) /*!< Channel 2 Global interrupt clear */
MartinJohnson 0:c65854d98061 5321 #define DMA_IFCR_CTCIF2 ((uint32_t)0x00000020) /*!< Channel 2 Transfer Complete clear */
MartinJohnson 0:c65854d98061 5322 #define DMA_IFCR_CHTIF2 ((uint32_t)0x00000040) /*!< Channel 2 Half Transfer clear */
MartinJohnson 0:c65854d98061 5323 #define DMA_IFCR_CTEIF2 ((uint32_t)0x00000080) /*!< Channel 2 Transfer Error clear */
MartinJohnson 0:c65854d98061 5324 #define DMA_IFCR_CGIF3 ((uint32_t)0x00000100) /*!< Channel 3 Global interrupt clear */
MartinJohnson 0:c65854d98061 5325 #define DMA_IFCR_CTCIF3 ((uint32_t)0x00000200) /*!< Channel 3 Transfer Complete clear */
MartinJohnson 0:c65854d98061 5326 #define DMA_IFCR_CHTIF3 ((uint32_t)0x00000400) /*!< Channel 3 Half Transfer clear */
MartinJohnson 0:c65854d98061 5327 #define DMA_IFCR_CTEIF3 ((uint32_t)0x00000800) /*!< Channel 3 Transfer Error clear */
MartinJohnson 0:c65854d98061 5328 #define DMA_IFCR_CGIF4 ((uint32_t)0x00001000) /*!< Channel 4 Global interrupt clear */
MartinJohnson 0:c65854d98061 5329 #define DMA_IFCR_CTCIF4 ((uint32_t)0x00002000) /*!< Channel 4 Transfer Complete clear */
MartinJohnson 0:c65854d98061 5330 #define DMA_IFCR_CHTIF4 ((uint32_t)0x00004000) /*!< Channel 4 Half Transfer clear */
MartinJohnson 0:c65854d98061 5331 #define DMA_IFCR_CTEIF4 ((uint32_t)0x00008000) /*!< Channel 4 Transfer Error clear */
MartinJohnson 0:c65854d98061 5332 #define DMA_IFCR_CGIF5 ((uint32_t)0x00010000) /*!< Channel 5 Global interrupt clear */
MartinJohnson 0:c65854d98061 5333 #define DMA_IFCR_CTCIF5 ((uint32_t)0x00020000) /*!< Channel 5 Transfer Complete clear */
MartinJohnson 0:c65854d98061 5334 #define DMA_IFCR_CHTIF5 ((uint32_t)0x00040000) /*!< Channel 5 Half Transfer clear */
MartinJohnson 0:c65854d98061 5335 #define DMA_IFCR_CTEIF5 ((uint32_t)0x00080000) /*!< Channel 5 Transfer Error clear */
MartinJohnson 0:c65854d98061 5336 #define DMA_IFCR_CGIF6 ((uint32_t)0x00100000) /*!< Channel 6 Global interrupt clear */
MartinJohnson 0:c65854d98061 5337 #define DMA_IFCR_CTCIF6 ((uint32_t)0x00200000) /*!< Channel 6 Transfer Complete clear */
MartinJohnson 0:c65854d98061 5338 #define DMA_IFCR_CHTIF6 ((uint32_t)0x00400000) /*!< Channel 6 Half Transfer clear */
MartinJohnson 0:c65854d98061 5339 #define DMA_IFCR_CTEIF6 ((uint32_t)0x00800000) /*!< Channel 6 Transfer Error clear */
MartinJohnson 0:c65854d98061 5340 #define DMA_IFCR_CGIF7 ((uint32_t)0x01000000) /*!< Channel 7 Global interrupt clear */
MartinJohnson 0:c65854d98061 5341 #define DMA_IFCR_CTCIF7 ((uint32_t)0x02000000) /*!< Channel 7 Transfer Complete clear */
MartinJohnson 0:c65854d98061 5342 #define DMA_IFCR_CHTIF7 ((uint32_t)0x04000000) /*!< Channel 7 Half Transfer clear */
MartinJohnson 0:c65854d98061 5343 #define DMA_IFCR_CTEIF7 ((uint32_t)0x08000000) /*!< Channel 7 Transfer Error clear */
MartinJohnson 0:c65854d98061 5344
MartinJohnson 0:c65854d98061 5345 /******************* Bit definition for DMA_CCR register ********************/
MartinJohnson 0:c65854d98061 5346 #define DMA_CCR_EN ((uint32_t)0x00000001) /*!< Channel enable */
MartinJohnson 0:c65854d98061 5347 #define DMA_CCR_TCIE ((uint32_t)0x00000002) /*!< Transfer complete interrupt enable */
MartinJohnson 0:c65854d98061 5348 #define DMA_CCR_HTIE ((uint32_t)0x00000004) /*!< Half Transfer interrupt enable */
MartinJohnson 0:c65854d98061 5349 #define DMA_CCR_TEIE ((uint32_t)0x00000008) /*!< Transfer error interrupt enable */
MartinJohnson 0:c65854d98061 5350 #define DMA_CCR_DIR ((uint32_t)0x00000010) /*!< Data transfer direction */
MartinJohnson 0:c65854d98061 5351 #define DMA_CCR_CIRC ((uint32_t)0x00000020) /*!< Circular mode */
MartinJohnson 0:c65854d98061 5352 #define DMA_CCR_PINC ((uint32_t)0x00000040) /*!< Peripheral increment mode */
MartinJohnson 0:c65854d98061 5353 #define DMA_CCR_MINC ((uint32_t)0x00000080) /*!< Memory increment mode */
MartinJohnson 0:c65854d98061 5354
MartinJohnson 0:c65854d98061 5355 #define DMA_CCR_PSIZE ((uint32_t)0x00000300) /*!< PSIZE[1:0] bits (Peripheral size) */
MartinJohnson 0:c65854d98061 5356 #define DMA_CCR_PSIZE_0 ((uint32_t)0x00000100) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 5357 #define DMA_CCR_PSIZE_1 ((uint32_t)0x00000200) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 5358
MartinJohnson 0:c65854d98061 5359 #define DMA_CCR_MSIZE ((uint32_t)0x00000C00) /*!< MSIZE[1:0] bits (Memory size) */
MartinJohnson 0:c65854d98061 5360 #define DMA_CCR_MSIZE_0 ((uint32_t)0x00000400) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 5361 #define DMA_CCR_MSIZE_1 ((uint32_t)0x00000800) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 5362
MartinJohnson 0:c65854d98061 5363 #define DMA_CCR_PL ((uint32_t)0x00003000) /*!< PL[1:0] bits(Channel Priority level)*/
MartinJohnson 0:c65854d98061 5364 #define DMA_CCR_PL_0 ((uint32_t)0x00001000) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 5365 #define DMA_CCR_PL_1 ((uint32_t)0x00002000) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 5366
MartinJohnson 0:c65854d98061 5367 #define DMA_CCR_MEM2MEM ((uint32_t)0x00004000) /*!< Memory to memory mode */
MartinJohnson 0:c65854d98061 5368
MartinJohnson 0:c65854d98061 5369 /****************** Bit definition for DMA_CNDTR register *******************/
MartinJohnson 0:c65854d98061 5370 #define DMA_CNDTR_NDT ((uint32_t)0x0000FFFF) /*!< Number of data to Transfer */
MartinJohnson 0:c65854d98061 5371
MartinJohnson 0:c65854d98061 5372 /****************** Bit definition for DMA_CPAR register ********************/
MartinJohnson 0:c65854d98061 5373 #define DMA_CPAR_PA ((uint32_t)0xFFFFFFFF) /*!< Peripheral Address */
MartinJohnson 0:c65854d98061 5374
MartinJohnson 0:c65854d98061 5375 /****************** Bit definition for DMA_CMAR register ********************/
MartinJohnson 0:c65854d98061 5376 #define DMA_CMAR_MA ((uint32_t)0xFFFFFFFF) /*!< Memory Address */
MartinJohnson 0:c65854d98061 5377
MartinJohnson 0:c65854d98061 5378 /******************************************************************************/
MartinJohnson 0:c65854d98061 5379 /* */
MartinJohnson 0:c65854d98061 5380 /* External Interrupt/Event Controller (EXTI) */
MartinJohnson 0:c65854d98061 5381 /* */
MartinJohnson 0:c65854d98061 5382 /******************************************************************************/
MartinJohnson 0:c65854d98061 5383 /******************* Bit definition for EXTI_IMR register *******************/
MartinJohnson 0:c65854d98061 5384 #define EXTI_IMR_MR0 ((uint32_t)0x00000001) /*!< Interrupt Mask on line 0 */
MartinJohnson 0:c65854d98061 5385 #define EXTI_IMR_MR1 ((uint32_t)0x00000002) /*!< Interrupt Mask on line 1 */
MartinJohnson 0:c65854d98061 5386 #define EXTI_IMR_MR2 ((uint32_t)0x00000004) /*!< Interrupt Mask on line 2 */
MartinJohnson 0:c65854d98061 5387 #define EXTI_IMR_MR3 ((uint32_t)0x00000008) /*!< Interrupt Mask on line 3 */
MartinJohnson 0:c65854d98061 5388 #define EXTI_IMR_MR4 ((uint32_t)0x00000010) /*!< Interrupt Mask on line 4 */
MartinJohnson 0:c65854d98061 5389 #define EXTI_IMR_MR5 ((uint32_t)0x00000020) /*!< Interrupt Mask on line 5 */
MartinJohnson 0:c65854d98061 5390 #define EXTI_IMR_MR6 ((uint32_t)0x00000040) /*!< Interrupt Mask on line 6 */
MartinJohnson 0:c65854d98061 5391 #define EXTI_IMR_MR7 ((uint32_t)0x00000080) /*!< Interrupt Mask on line 7 */
MartinJohnson 0:c65854d98061 5392 #define EXTI_IMR_MR8 ((uint32_t)0x00000100) /*!< Interrupt Mask on line 8 */
MartinJohnson 0:c65854d98061 5393 #define EXTI_IMR_MR9 ((uint32_t)0x00000200) /*!< Interrupt Mask on line 9 */
MartinJohnson 0:c65854d98061 5394 #define EXTI_IMR_MR10 ((uint32_t)0x00000400) /*!< Interrupt Mask on line 10 */
MartinJohnson 0:c65854d98061 5395 #define EXTI_IMR_MR11 ((uint32_t)0x00000800) /*!< Interrupt Mask on line 11 */
MartinJohnson 0:c65854d98061 5396 #define EXTI_IMR_MR12 ((uint32_t)0x00001000) /*!< Interrupt Mask on line 12 */
MartinJohnson 0:c65854d98061 5397 #define EXTI_IMR_MR13 ((uint32_t)0x00002000) /*!< Interrupt Mask on line 13 */
MartinJohnson 0:c65854d98061 5398 #define EXTI_IMR_MR14 ((uint32_t)0x00004000) /*!< Interrupt Mask on line 14 */
MartinJohnson 0:c65854d98061 5399 #define EXTI_IMR_MR15 ((uint32_t)0x00008000) /*!< Interrupt Mask on line 15 */
MartinJohnson 0:c65854d98061 5400 #define EXTI_IMR_MR16 ((uint32_t)0x00010000) /*!< Interrupt Mask on line 16 */
MartinJohnson 0:c65854d98061 5401 #define EXTI_IMR_MR17 ((uint32_t)0x00020000) /*!< Interrupt Mask on line 17 */
MartinJohnson 0:c65854d98061 5402 #define EXTI_IMR_MR18 ((uint32_t)0x00040000) /*!< Interrupt Mask on line 18 */
MartinJohnson 0:c65854d98061 5403 #define EXTI_IMR_MR19 ((uint32_t)0x00080000) /*!< Interrupt Mask on line 19 */
MartinJohnson 0:c65854d98061 5404 #define EXTI_IMR_MR20 ((uint32_t)0x00100000) /*!< Interrupt Mask on line 20 */
MartinJohnson 0:c65854d98061 5405 #define EXTI_IMR_MR21 ((uint32_t)0x00200000) /*!< Interrupt Mask on line 21 */
MartinJohnson 0:c65854d98061 5406 #define EXTI_IMR_MR22 ((uint32_t)0x00400000) /*!< Interrupt Mask on line 22 */
MartinJohnson 0:c65854d98061 5407 #define EXTI_IMR_MR23 ((uint32_t)0x00800000) /*!< Interrupt Mask on line 23 */
MartinJohnson 0:c65854d98061 5408 #define EXTI_IMR_MR24 ((uint32_t)0x01000000) /*!< Interrupt Mask on line 24 */
MartinJohnson 0:c65854d98061 5409 #define EXTI_IMR_MR25 ((uint32_t)0x02000000) /*!< Interrupt Mask on line 25 */
MartinJohnson 0:c65854d98061 5410 #define EXTI_IMR_MR26 ((uint32_t)0x04000000) /*!< Interrupt Mask on line 26 */
MartinJohnson 0:c65854d98061 5411 #define EXTI_IMR_MR27 ((uint32_t)0x08000000) /*!< Interrupt Mask on line 27 */
MartinJohnson 0:c65854d98061 5412 #define EXTI_IMR_MR28 ((uint32_t)0x10000000) /*!< Interrupt Mask on line 28 */
MartinJohnson 0:c65854d98061 5413 #define EXTI_IMR_MR29 ((uint32_t)0x20000000) /*!< Interrupt Mask on line 29 */
MartinJohnson 0:c65854d98061 5414 #define EXTI_IMR_MR30 ((uint32_t)0x40000000) /*!< Interrupt Mask on line 30 */
MartinJohnson 0:c65854d98061 5415 #define EXTI_IMR_MR31 ((uint32_t)0x80000000) /*!< Interrupt Mask on line 31 */
MartinJohnson 0:c65854d98061 5416 /******************* Bit definition for EXTI_EMR register *******************/
MartinJohnson 0:c65854d98061 5417 #define EXTI_EMR_MR0 ((uint32_t)0x00000001) /*!< Event Mask on line 0 */
MartinJohnson 0:c65854d98061 5418 #define EXTI_EMR_MR1 ((uint32_t)0x00000002) /*!< Event Mask on line 1 */
MartinJohnson 0:c65854d98061 5419 #define EXTI_EMR_MR2 ((uint32_t)0x00000004) /*!< Event Mask on line 2 */
MartinJohnson 0:c65854d98061 5420 #define EXTI_EMR_MR3 ((uint32_t)0x00000008) /*!< Event Mask on line 3 */
MartinJohnson 0:c65854d98061 5421 #define EXTI_EMR_MR4 ((uint32_t)0x00000010) /*!< Event Mask on line 4 */
MartinJohnson 0:c65854d98061 5422 #define EXTI_EMR_MR5 ((uint32_t)0x00000020) /*!< Event Mask on line 5 */
MartinJohnson 0:c65854d98061 5423 #define EXTI_EMR_MR6 ((uint32_t)0x00000040) /*!< Event Mask on line 6 */
MartinJohnson 0:c65854d98061 5424 #define EXTI_EMR_MR7 ((uint32_t)0x00000080) /*!< Event Mask on line 7 */
MartinJohnson 0:c65854d98061 5425 #define EXTI_EMR_MR8 ((uint32_t)0x00000100) /*!< Event Mask on line 8 */
MartinJohnson 0:c65854d98061 5426 #define EXTI_EMR_MR9 ((uint32_t)0x00000200) /*!< Event Mask on line 9 */
MartinJohnson 0:c65854d98061 5427 #define EXTI_EMR_MR10 ((uint32_t)0x00000400) /*!< Event Mask on line 10 */
MartinJohnson 0:c65854d98061 5428 #define EXTI_EMR_MR11 ((uint32_t)0x00000800) /*!< Event Mask on line 11 */
MartinJohnson 0:c65854d98061 5429 #define EXTI_EMR_MR12 ((uint32_t)0x00001000) /*!< Event Mask on line 12 */
MartinJohnson 0:c65854d98061 5430 #define EXTI_EMR_MR13 ((uint32_t)0x00002000) /*!< Event Mask on line 13 */
MartinJohnson 0:c65854d98061 5431 #define EXTI_EMR_MR14 ((uint32_t)0x00004000) /*!< Event Mask on line 14 */
MartinJohnson 0:c65854d98061 5432 #define EXTI_EMR_MR15 ((uint32_t)0x00008000) /*!< Event Mask on line 15 */
MartinJohnson 0:c65854d98061 5433 #define EXTI_EMR_MR16 ((uint32_t)0x00010000) /*!< Event Mask on line 16 */
MartinJohnson 0:c65854d98061 5434 #define EXTI_EMR_MR17 ((uint32_t)0x00020000) /*!< Event Mask on line 17 */
MartinJohnson 0:c65854d98061 5435 #define EXTI_EMR_MR18 ((uint32_t)0x00040000) /*!< Event Mask on line 18 */
MartinJohnson 0:c65854d98061 5436 #define EXTI_EMR_MR19 ((uint32_t)0x00080000) /*!< Event Mask on line 19 */
MartinJohnson 0:c65854d98061 5437 #define EXTI_EMR_MR20 ((uint32_t)0x00100000) /*!< Event Mask on line 20 */
MartinJohnson 0:c65854d98061 5438 #define EXTI_EMR_MR21 ((uint32_t)0x00200000) /*!< Event Mask on line 21 */
MartinJohnson 0:c65854d98061 5439 #define EXTI_EMR_MR22 ((uint32_t)0x00400000) /*!< Event Mask on line 22 */
MartinJohnson 0:c65854d98061 5440 #define EXTI_EMR_MR23 ((uint32_t)0x00800000) /*!< Event Mask on line 23 */
MartinJohnson 0:c65854d98061 5441 #define EXTI_EMR_MR24 ((uint32_t)0x01000000) /*!< Event Mask on line 24 */
MartinJohnson 0:c65854d98061 5442 #define EXTI_EMR_MR25 ((uint32_t)0x02000000) /*!< Event Mask on line 25 */
MartinJohnson 0:c65854d98061 5443 #define EXTI_EMR_MR26 ((uint32_t)0x04000000) /*!< Event Mask on line 26 */
MartinJohnson 0:c65854d98061 5444 #define EXTI_EMR_MR27 ((uint32_t)0x08000000) /*!< Event Mask on line 27 */
MartinJohnson 0:c65854d98061 5445 #define EXTI_EMR_MR28 ((uint32_t)0x10000000) /*!< Event Mask on line 28 */
MartinJohnson 0:c65854d98061 5446 #define EXTI_EMR_MR29 ((uint32_t)0x20000000) /*!< Event Mask on line 29 */
MartinJohnson 0:c65854d98061 5447 #define EXTI_EMR_MR30 ((uint32_t)0x40000000) /*!< Event Mask on line 30 */
MartinJohnson 0:c65854d98061 5448 #define EXTI_EMR_MR31 ((uint32_t)0x80000000) /*!< Event Mask on line 31 */
MartinJohnson 0:c65854d98061 5449 /****************** Bit definition for EXTI_RTSR register *******************/
MartinJohnson 0:c65854d98061 5450 #define EXTI_RTSR_TR0 ((uint32_t)0x00000001) /*!< Rising trigger event configuration bit of line 0 */
MartinJohnson 0:c65854d98061 5451 #define EXTI_RTSR_TR1 ((uint32_t)0x00000002) /*!< Rising trigger event configuration bit of line 1 */
MartinJohnson 0:c65854d98061 5452 #define EXTI_RTSR_TR2 ((uint32_t)0x00000004) /*!< Rising trigger event configuration bit of line 2 */
MartinJohnson 0:c65854d98061 5453 #define EXTI_RTSR_TR3 ((uint32_t)0x00000008) /*!< Rising trigger event configuration bit of line 3 */
MartinJohnson 0:c65854d98061 5454 #define EXTI_RTSR_TR4 ((uint32_t)0x00000010) /*!< Rising trigger event configuration bit of line 4 */
MartinJohnson 0:c65854d98061 5455 #define EXTI_RTSR_TR5 ((uint32_t)0x00000020) /*!< Rising trigger event configuration bit of line 5 */
MartinJohnson 0:c65854d98061 5456 #define EXTI_RTSR_TR6 ((uint32_t)0x00000040) /*!< Rising trigger event configuration bit of line 6 */
MartinJohnson 0:c65854d98061 5457 #define EXTI_RTSR_TR7 ((uint32_t)0x00000080) /*!< Rising trigger event configuration bit of line 7 */
MartinJohnson 0:c65854d98061 5458 #define EXTI_RTSR_TR8 ((uint32_t)0x00000100) /*!< Rising trigger event configuration bit of line 8 */
MartinJohnson 0:c65854d98061 5459 #define EXTI_RTSR_TR9 ((uint32_t)0x00000200) /*!< Rising trigger event configuration bit of line 9 */
MartinJohnson 0:c65854d98061 5460 #define EXTI_RTSR_TR10 ((uint32_t)0x00000400) /*!< Rising trigger event configuration bit of line 10 */
MartinJohnson 0:c65854d98061 5461 #define EXTI_RTSR_TR11 ((uint32_t)0x00000800) /*!< Rising trigger event configuration bit of line 11 */
MartinJohnson 0:c65854d98061 5462 #define EXTI_RTSR_TR12 ((uint32_t)0x00001000) /*!< Rising trigger event configuration bit of line 12 */
MartinJohnson 0:c65854d98061 5463 #define EXTI_RTSR_TR13 ((uint32_t)0x00002000) /*!< Rising trigger event configuration bit of line 13 */
MartinJohnson 0:c65854d98061 5464 #define EXTI_RTSR_TR14 ((uint32_t)0x00004000) /*!< Rising trigger event configuration bit of line 14 */
MartinJohnson 0:c65854d98061 5465 #define EXTI_RTSR_TR15 ((uint32_t)0x00008000) /*!< Rising trigger event configuration bit of line 15 */
MartinJohnson 0:c65854d98061 5466 #define EXTI_RTSR_TR16 ((uint32_t)0x00010000) /*!< Rising trigger event configuration bit of line 16 */
MartinJohnson 0:c65854d98061 5467 #define EXTI_RTSR_TR17 ((uint32_t)0x00020000) /*!< Rising trigger event configuration bit of line 17 */
MartinJohnson 0:c65854d98061 5468 #define EXTI_RTSR_TR18 ((uint32_t)0x00040000) /*!< Rising trigger event configuration bit of line 18 */
MartinJohnson 0:c65854d98061 5469 #define EXTI_RTSR_TR19 ((uint32_t)0x00080000) /*!< Rising trigger event configuration bit of line 19 */
MartinJohnson 0:c65854d98061 5470 #define EXTI_RTSR_TR20 ((uint32_t)0x00100000) /*!< Rising trigger event configuration bit of line 20 */
MartinJohnson 0:c65854d98061 5471 #define EXTI_RTSR_TR21 ((uint32_t)0x00200000) /*!< Rising trigger event configuration bit of line 21 */
MartinJohnson 0:c65854d98061 5472 #define EXTI_RTSR_TR22 ((uint32_t)0x00400000) /*!< Rising trigger event configuration bit of line 22 */
MartinJohnson 0:c65854d98061 5473 #define EXTI_RTSR_TR23 ((uint32_t)0x00800000) /*!< Rising trigger event configuration bit of line 23 */
MartinJohnson 0:c65854d98061 5474 #define EXTI_RTSR_TR24 ((uint32_t)0x01000000) /*!< Rising trigger event configuration bit of line 24 */
MartinJohnson 0:c65854d98061 5475 #define EXTI_RTSR_TR25 ((uint32_t)0x02000000) /*!< Rising trigger event configuration bit of line 25 */
MartinJohnson 0:c65854d98061 5476 #define EXTI_RTSR_TR26 ((uint32_t)0x04000000) /*!< Rising trigger event configuration bit of line 26 */
MartinJohnson 0:c65854d98061 5477 #define EXTI_RTSR_TR27 ((uint32_t)0x08000000) /*!< Rising trigger event configuration bit of line 27 */
MartinJohnson 0:c65854d98061 5478 #define EXTI_RTSR_TR28 ((uint32_t)0x10000000) /*!< Rising trigger event configuration bit of line 28 */
MartinJohnson 0:c65854d98061 5479 #define EXTI_RTSR_TR29 ((uint32_t)0x20000000) /*!< Rising trigger event configuration bit of line 29 */
MartinJohnson 0:c65854d98061 5480 #define EXTI_RTSR_TR30 ((uint32_t)0x40000000) /*!< Rising trigger event configuration bit of line 30 */
MartinJohnson 0:c65854d98061 5481 #define EXTI_RTSR_TR31 ((uint32_t)0x80000000) /*!< Rising trigger event configuration bit of line 31 */
MartinJohnson 0:c65854d98061 5482 /****************** Bit definition for EXTI_FTSR register *******************/
MartinJohnson 0:c65854d98061 5483 #define EXTI_FTSR_TR0 ((uint32_t)0x00000001) /*!< Falling trigger event configuration bit of line 0 */
MartinJohnson 0:c65854d98061 5484 #define EXTI_FTSR_TR1 ((uint32_t)0x00000002) /*!< Falling trigger event configuration bit of line 1 */
MartinJohnson 0:c65854d98061 5485 #define EXTI_FTSR_TR2 ((uint32_t)0x00000004) /*!< Falling trigger event configuration bit of line 2 */
MartinJohnson 0:c65854d98061 5486 #define EXTI_FTSR_TR3 ((uint32_t)0x00000008) /*!< Falling trigger event configuration bit of line 3 */
MartinJohnson 0:c65854d98061 5487 #define EXTI_FTSR_TR4 ((uint32_t)0x00000010) /*!< Falling trigger event configuration bit of line 4 */
MartinJohnson 0:c65854d98061 5488 #define EXTI_FTSR_TR5 ((uint32_t)0x00000020) /*!< Falling trigger event configuration bit of line 5 */
MartinJohnson 0:c65854d98061 5489 #define EXTI_FTSR_TR6 ((uint32_t)0x00000040) /*!< Falling trigger event configuration bit of line 6 */
MartinJohnson 0:c65854d98061 5490 #define EXTI_FTSR_TR7 ((uint32_t)0x00000080) /*!< Falling trigger event configuration bit of line 7 */
MartinJohnson 0:c65854d98061 5491 #define EXTI_FTSR_TR8 ((uint32_t)0x00000100) /*!< Falling trigger event configuration bit of line 8 */
MartinJohnson 0:c65854d98061 5492 #define EXTI_FTSR_TR9 ((uint32_t)0x00000200) /*!< Falling trigger event configuration bit of line 9 */
MartinJohnson 0:c65854d98061 5493 #define EXTI_FTSR_TR10 ((uint32_t)0x00000400) /*!< Falling trigger event configuration bit of line 10 */
MartinJohnson 0:c65854d98061 5494 #define EXTI_FTSR_TR11 ((uint32_t)0x00000800) /*!< Falling trigger event configuration bit of line 11 */
MartinJohnson 0:c65854d98061 5495 #define EXTI_FTSR_TR12 ((uint32_t)0x00001000) /*!< Falling trigger event configuration bit of line 12 */
MartinJohnson 0:c65854d98061 5496 #define EXTI_FTSR_TR13 ((uint32_t)0x00002000) /*!< Falling trigger event configuration bit of line 13 */
MartinJohnson 0:c65854d98061 5497 #define EXTI_FTSR_TR14 ((uint32_t)0x00004000) /*!< Falling trigger event configuration bit of line 14 */
MartinJohnson 0:c65854d98061 5498 #define EXTI_FTSR_TR15 ((uint32_t)0x00008000) /*!< Falling trigger event configuration bit of line 15 */
MartinJohnson 0:c65854d98061 5499 #define EXTI_FTSR_TR16 ((uint32_t)0x00010000) /*!< Falling trigger event configuration bit of line 16 */
MartinJohnson 0:c65854d98061 5500 #define EXTI_FTSR_TR17 ((uint32_t)0x00020000) /*!< Falling trigger event configuration bit of line 17 */
MartinJohnson 0:c65854d98061 5501 #define EXTI_FTSR_TR18 ((uint32_t)0x00040000) /*!< Falling trigger event configuration bit of line 18 */
MartinJohnson 0:c65854d98061 5502 #define EXTI_FTSR_TR19 ((uint32_t)0x00080000) /*!< Falling trigger event configuration bit of line 19 */
MartinJohnson 0:c65854d98061 5503 #define EXTI_FTSR_TR20 ((uint32_t)0x00100000) /*!< Falling trigger event configuration bit of line 20 */
MartinJohnson 0:c65854d98061 5504 #define EXTI_FTSR_TR21 ((uint32_t)0x00200000) /*!< Falling trigger event configuration bit of line 21 */
MartinJohnson 0:c65854d98061 5505 #define EXTI_FTSR_TR22 ((uint32_t)0x00400000) /*!< Falling trigger event configuration bit of line 22 */
MartinJohnson 0:c65854d98061 5506 #define EXTI_FTSR_TR23 ((uint32_t)0x00800000) /*!< Falling trigger event configuration bit of line 23 */
MartinJohnson 0:c65854d98061 5507 #define EXTI_FTSR_TR24 ((uint32_t)0x01000000) /*!< Falling trigger event configuration bit of line 24 */
MartinJohnson 0:c65854d98061 5508 #define EXTI_FTSR_TR25 ((uint32_t)0x02000000) /*!< Falling trigger event configuration bit of line 25 */
MartinJohnson 0:c65854d98061 5509 #define EXTI_FTSR_TR26 ((uint32_t)0x04000000) /*!< Falling trigger event configuration bit of line 26 */
MartinJohnson 0:c65854d98061 5510 #define EXTI_FTSR_TR27 ((uint32_t)0x08000000) /*!< Falling trigger event configuration bit of line 27 */
MartinJohnson 0:c65854d98061 5511 #define EXTI_FTSR_TR28 ((uint32_t)0x10000000) /*!< Falling trigger event configuration bit of line 28 */
MartinJohnson 0:c65854d98061 5512 #define EXTI_FTSR_TR29 ((uint32_t)0x20000000) /*!< Falling trigger event configuration bit of line 29 */
MartinJohnson 0:c65854d98061 5513 #define EXTI_FTSR_TR30 ((uint32_t)0x40000000) /*!< Falling trigger event configuration bit of line 30 */
MartinJohnson 0:c65854d98061 5514 #define EXTI_FTSR_TR31 ((uint32_t)0x80000000) /*!< Falling trigger event configuration bit of line 31 */
MartinJohnson 0:c65854d98061 5515 /****************** Bit definition for EXTI_SWIER register ******************/
MartinJohnson 0:c65854d98061 5516 #define EXTI_SWIER_SWIER0 ((uint32_t)0x00000001) /*!< Software Interrupt on line 0 */
MartinJohnson 0:c65854d98061 5517 #define EXTI_SWIER_SWIER1 ((uint32_t)0x00000002) /*!< Software Interrupt on line 1 */
MartinJohnson 0:c65854d98061 5518 #define EXTI_SWIER_SWIER2 ((uint32_t)0x00000004) /*!< Software Interrupt on line 2 */
MartinJohnson 0:c65854d98061 5519 #define EXTI_SWIER_SWIER3 ((uint32_t)0x00000008) /*!< Software Interrupt on line 3 */
MartinJohnson 0:c65854d98061 5520 #define EXTI_SWIER_SWIER4 ((uint32_t)0x00000010) /*!< Software Interrupt on line 4 */
MartinJohnson 0:c65854d98061 5521 #define EXTI_SWIER_SWIER5 ((uint32_t)0x00000020) /*!< Software Interrupt on line 5 */
MartinJohnson 0:c65854d98061 5522 #define EXTI_SWIER_SWIER6 ((uint32_t)0x00000040) /*!< Software Interrupt on line 6 */
MartinJohnson 0:c65854d98061 5523 #define EXTI_SWIER_SWIER7 ((uint32_t)0x00000080) /*!< Software Interrupt on line 7 */
MartinJohnson 0:c65854d98061 5524 #define EXTI_SWIER_SWIER8 ((uint32_t)0x00000100) /*!< Software Interrupt on line 8 */
MartinJohnson 0:c65854d98061 5525 #define EXTI_SWIER_SWIER9 ((uint32_t)0x00000200) /*!< Software Interrupt on line 9 */
MartinJohnson 0:c65854d98061 5526 #define EXTI_SWIER_SWIER10 ((uint32_t)0x00000400) /*!< Software Interrupt on line 10 */
MartinJohnson 0:c65854d98061 5527 #define EXTI_SWIER_SWIER11 ((uint32_t)0x00000800) /*!< Software Interrupt on line 11 */
MartinJohnson 0:c65854d98061 5528 #define EXTI_SWIER_SWIER12 ((uint32_t)0x00001000) /*!< Software Interrupt on line 12 */
MartinJohnson 0:c65854d98061 5529 #define EXTI_SWIER_SWIER13 ((uint32_t)0x00002000) /*!< Software Interrupt on line 13 */
MartinJohnson 0:c65854d98061 5530 #define EXTI_SWIER_SWIER14 ((uint32_t)0x00004000) /*!< Software Interrupt on line 14 */
MartinJohnson 0:c65854d98061 5531 #define EXTI_SWIER_SWIER15 ((uint32_t)0x00008000) /*!< Software Interrupt on line 15 */
MartinJohnson 0:c65854d98061 5532 #define EXTI_SWIER_SWIER16 ((uint32_t)0x00010000) /*!< Software Interrupt on line 16 */
MartinJohnson 0:c65854d98061 5533 #define EXTI_SWIER_SWIER17 ((uint32_t)0x00020000) /*!< Software Interrupt on line 17 */
MartinJohnson 0:c65854d98061 5534 #define EXTI_SWIER_SWIER18 ((uint32_t)0x00040000) /*!< Software Interrupt on line 18 */
MartinJohnson 0:c65854d98061 5535 #define EXTI_SWIER_SWIER19 ((uint32_t)0x00080000) /*!< Software Interrupt on line 19 */
MartinJohnson 0:c65854d98061 5536 #define EXTI_SWIER_SWIER20 ((uint32_t)0x00100000) /*!< Software Interrupt on line 20 */
MartinJohnson 0:c65854d98061 5537 #define EXTI_SWIER_SWIER21 ((uint32_t)0x00200000) /*!< Software Interrupt on line 21 */
MartinJohnson 0:c65854d98061 5538 #define EXTI_SWIER_SWIER22 ((uint32_t)0x00400000) /*!< Software Interrupt on line 22 */
MartinJohnson 0:c65854d98061 5539 #define EXTI_SWIER_SWIER23 ((uint32_t)0x00800000) /*!< Software Interrupt on line 23 */
MartinJohnson 0:c65854d98061 5540 #define EXTI_SWIER_SWIER24 ((uint32_t)0x01000000) /*!< Software Interrupt on line 24 */
MartinJohnson 0:c65854d98061 5541 #define EXTI_SWIER_SWIER25 ((uint32_t)0x02000000) /*!< Software Interrupt on line 25 */
MartinJohnson 0:c65854d98061 5542 #define EXTI_SWIER_SWIER26 ((uint32_t)0x04000000) /*!< Software Interrupt on line 26 */
MartinJohnson 0:c65854d98061 5543 #define EXTI_SWIER_SWIER27 ((uint32_t)0x08000000) /*!< Software Interrupt on line 27 */
MartinJohnson 0:c65854d98061 5544 #define EXTI_SWIER_SWIER28 ((uint32_t)0x10000000) /*!< Software Interrupt on line 28 */
MartinJohnson 0:c65854d98061 5545 #define EXTI_SWIER_SWIER29 ((uint32_t)0x20000000) /*!< Software Interrupt on line 29 */
MartinJohnson 0:c65854d98061 5546 #define EXTI_SWIER_SWIER30 ((uint32_t)0x40000000) /*!< Software Interrupt on line 30 */
MartinJohnson 0:c65854d98061 5547 #define EXTI_SWIER_SWIER31 ((uint32_t)0x80000000) /*!< Software Interrupt on line 31 */
MartinJohnson 0:c65854d98061 5548 /******************* Bit definition for EXTI_PR register ********************/
MartinJohnson 0:c65854d98061 5549 #define EXTI_PR_PR0 ((uint32_t)0x00000001) /*!< Pending bit for line 0 */
MartinJohnson 0:c65854d98061 5550 #define EXTI_PR_PR1 ((uint32_t)0x00000002) /*!< Pending bit for line 1 */
MartinJohnson 0:c65854d98061 5551 #define EXTI_PR_PR2 ((uint32_t)0x00000004) /*!< Pending bit for line 2 */
MartinJohnson 0:c65854d98061 5552 #define EXTI_PR_PR3 ((uint32_t)0x00000008) /*!< Pending bit for line 3 */
MartinJohnson 0:c65854d98061 5553 #define EXTI_PR_PR4 ((uint32_t)0x00000010) /*!< Pending bit for line 4 */
MartinJohnson 0:c65854d98061 5554 #define EXTI_PR_PR5 ((uint32_t)0x00000020) /*!< Pending bit for line 5 */
MartinJohnson 0:c65854d98061 5555 #define EXTI_PR_PR6 ((uint32_t)0x00000040) /*!< Pending bit for line 6 */
MartinJohnson 0:c65854d98061 5556 #define EXTI_PR_PR7 ((uint32_t)0x00000080) /*!< Pending bit for line 7 */
MartinJohnson 0:c65854d98061 5557 #define EXTI_PR_PR8 ((uint32_t)0x00000100) /*!< Pending bit for line 8 */
MartinJohnson 0:c65854d98061 5558 #define EXTI_PR_PR9 ((uint32_t)0x00000200) /*!< Pending bit for line 9 */
MartinJohnson 0:c65854d98061 5559 #define EXTI_PR_PR10 ((uint32_t)0x00000400) /*!< Pending bit for line 10 */
MartinJohnson 0:c65854d98061 5560 #define EXTI_PR_PR11 ((uint32_t)0x00000800) /*!< Pending bit for line 11 */
MartinJohnson 0:c65854d98061 5561 #define EXTI_PR_PR12 ((uint32_t)0x00001000) /*!< Pending bit for line 12 */
MartinJohnson 0:c65854d98061 5562 #define EXTI_PR_PR13 ((uint32_t)0x00002000) /*!< Pending bit for line 13 */
MartinJohnson 0:c65854d98061 5563 #define EXTI_PR_PR14 ((uint32_t)0x00004000) /*!< Pending bit for line 14 */
MartinJohnson 0:c65854d98061 5564 #define EXTI_PR_PR15 ((uint32_t)0x00008000) /*!< Pending bit for line 15 */
MartinJohnson 0:c65854d98061 5565 #define EXTI_PR_PR16 ((uint32_t)0x00010000) /*!< Pending bit for line 16 */
MartinJohnson 0:c65854d98061 5566 #define EXTI_PR_PR17 ((uint32_t)0x00020000) /*!< Pending bit for line 17 */
MartinJohnson 0:c65854d98061 5567 #define EXTI_PR_PR18 ((uint32_t)0x00040000) /*!< Pending bit for line 18 */
MartinJohnson 0:c65854d98061 5568 #define EXTI_PR_PR19 ((uint32_t)0x00080000) /*!< Pending bit for line 19 */
MartinJohnson 0:c65854d98061 5569 #define EXTI_PR_PR20 ((uint32_t)0x00100000) /*!< Pending bit for line 20 */
MartinJohnson 0:c65854d98061 5570 #define EXTI_PR_PR21 ((uint32_t)0x00200000) /*!< Pending bit for line 21 */
MartinJohnson 0:c65854d98061 5571 #define EXTI_PR_PR22 ((uint32_t)0x00400000) /*!< Pending bit for line 22 */
MartinJohnson 0:c65854d98061 5572 #define EXTI_PR_PR23 ((uint32_t)0x00800000) /*!< Pending bit for line 23 */
MartinJohnson 0:c65854d98061 5573 #define EXTI_PR_PR24 ((uint32_t)0x01000000) /*!< Pending bit for line 24 */
MartinJohnson 0:c65854d98061 5574 #define EXTI_PR_PR25 ((uint32_t)0x02000000) /*!< Pending bit for line 25 */
MartinJohnson 0:c65854d98061 5575 #define EXTI_PR_PR26 ((uint32_t)0x04000000) /*!< Pending bit for line 26 */
MartinJohnson 0:c65854d98061 5576 #define EXTI_PR_PR27 ((uint32_t)0x08000000) /*!< Pending bit for line 27 */
MartinJohnson 0:c65854d98061 5577 #define EXTI_PR_PR28 ((uint32_t)0x10000000) /*!< Pending bit for line 28 */
MartinJohnson 0:c65854d98061 5578 #define EXTI_PR_PR29 ((uint32_t)0x20000000) /*!< Pending bit for line 29 */
MartinJohnson 0:c65854d98061 5579 #define EXTI_PR_PR30 ((uint32_t)0x40000000) /*!< Pending bit for line 30 */
MartinJohnson 0:c65854d98061 5580 #define EXTI_PR_PR31 ((uint32_t)0x80000000) /*!< Pending bit for line 31 */
MartinJohnson 0:c65854d98061 5581 /******************* Bit definition for EXTI_IMR2 register ******************/
MartinJohnson 0:c65854d98061 5582 #define EXTI_IMR2_MR32 ((uint32_t)0x00000001) /*!< Interrupt Mask on line 32 */
MartinJohnson 0:c65854d98061 5583 #define EXTI_IMR2_MR33 ((uint32_t)0x00000002) /*!< Interrupt Mask on line 33 */
MartinJohnson 0:c65854d98061 5584 #define EXTI_IMR2_MR34 ((uint32_t)0x00000004) /*!< Interrupt Mask on line 34 */
MartinJohnson 0:c65854d98061 5585 #define EXTI_IMR2_MR35 ((uint32_t)0x00000008) /*!< Interrupt Mask on line 35 */
MartinJohnson 0:c65854d98061 5586 /******************* Bit definition for EXTI_EMR2 register ******************/
MartinJohnson 0:c65854d98061 5587 #define EXTI_EMR2_MR32 ((uint32_t)0x00000001) /*!< Event Mask on line 32 */
MartinJohnson 0:c65854d98061 5588 #define EXTI_EMR2_MR33 ((uint32_t)0x00000002) /*!< Event Mask on line 33 */
MartinJohnson 0:c65854d98061 5589 #define EXTI_EMR2_MR34 ((uint32_t)0x00000004) /*!< Event Mask on line 34 */
MartinJohnson 0:c65854d98061 5590 #define EXTI_EMR2_MR35 ((uint32_t)0x00000008) /*!< Event Mask on line 35 */
MartinJohnson 0:c65854d98061 5591 /****************** Bit definition for EXTI_RTSR2 register ******************/
MartinJohnson 0:c65854d98061 5592 #define EXTI_RTSR2_TR32 ((uint32_t)0x00000001) /*!< Rising trigger event configuration bit of line 32 */
MartinJohnson 0:c65854d98061 5593 #define EXTI_RTSR2_TR33 ((uint32_t)0x00000002) /*!< Rising trigger event configuration bit of line 33 */
MartinJohnson 0:c65854d98061 5594 /****************** Bit definition for EXTI_FTSR2 register ******************/
MartinJohnson 0:c65854d98061 5595 #define EXTI_FTSR2_TR32 ((uint32_t)0x00000001) /*!< Falling trigger event configuration bit of line 32 */
MartinJohnson 0:c65854d98061 5596 #define EXTI_FTSR2_TR33 ((uint32_t)0x00000002) /*!< Falling trigger event configuration bit of line 32 */
MartinJohnson 0:c65854d98061 5597 /****************** Bit definition for EXTI_SWIER2 register *****************/
MartinJohnson 0:c65854d98061 5598 #define EXTI_SWIER2_SWIER32 ((uint32_t)0x00000001) /*!< Software Interrupt on line 32 */
MartinJohnson 0:c65854d98061 5599 #define EXTI_SWIER2_SWIER33 ((uint32_t)0x00000002) /*!< Software Interrupt on line 32 */
MartinJohnson 0:c65854d98061 5600 /******************* Bit definition for EXTI_PR2 register *******************/
MartinJohnson 0:c65854d98061 5601 #define EXTI_PR2_PR32 ((uint32_t)0x00000001) /*!< Pending bit for line 32 */
MartinJohnson 0:c65854d98061 5602 #define EXTI_PR2_PR33 ((uint32_t)0x00000002) /*!< Pending bit for line 32 */
MartinJohnson 0:c65854d98061 5603
MartinJohnson 0:c65854d98061 5604 /******************************************************************************/
MartinJohnson 0:c65854d98061 5605 /* */
MartinJohnson 0:c65854d98061 5606 /* FLASH */
MartinJohnson 0:c65854d98061 5607 /* */
MartinJohnson 0:c65854d98061 5608 /******************************************************************************/
MartinJohnson 0:c65854d98061 5609 /******************* Bit definition for FLASH_ACR register ******************/
MartinJohnson 0:c65854d98061 5610 #define FLASH_ACR_LATENCY ((uint8_t)0x03) /*!< LATENCY[2:0] bits (Latency) */
MartinJohnson 0:c65854d98061 5611 #define FLASH_ACR_LATENCY_0 ((uint8_t)0x01) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 5612 #define FLASH_ACR_LATENCY_1 ((uint8_t)0x02) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 5613
MartinJohnson 0:c65854d98061 5614 #define FLASH_ACR_HLFCYA ((uint8_t)0x08) /*!< Flash Half Cycle Access Enable */
MartinJohnson 0:c65854d98061 5615 #define FLASH_ACR_PRFTBE ((uint8_t)0x10) /*!< Prefetch Buffer Enable */
MartinJohnson 0:c65854d98061 5616 #define FLASH_ACR_PRFTBS ((uint8_t)0x20)
MartinJohnson 0:c65854d98061 5617
MartinJohnson 0:c65854d98061 5618 /****************** Bit definition for FLASH_KEYR register ******************/
MartinJohnson 0:c65854d98061 5619 #define FLASH_KEYR_FKEYR ((uint32_t)0xFFFFFFFF) /*!< FPEC Key */
MartinJohnson 0:c65854d98061 5620
MartinJohnson 0:c65854d98061 5621 #define RDP_KEY ((uint16_t)0x00A5) /*!< RDP Key */
MartinJohnson 0:c65854d98061 5622 #define FLASH_KEY1 ((uint32_t)0x45670123) /*!< FPEC Key1 */
MartinJohnson 0:c65854d98061 5623 #define FLASH_KEY2 ((uint32_t)0xCDEF89AB) /*!< FPEC Key2 */
MartinJohnson 0:c65854d98061 5624
MartinJohnson 0:c65854d98061 5625 /***************** Bit definition for FLASH_OPTKEYR register ****************/
MartinJohnson 0:c65854d98061 5626 #define FLASH_OPTKEYR_OPTKEYR ((uint32_t)0xFFFFFFFF) /*!< Option Byte Key */
MartinJohnson 0:c65854d98061 5627
MartinJohnson 0:c65854d98061 5628 #define FLASH_OPTKEY1 FLASH_KEY1 /*!< Option Byte Key1 */
MartinJohnson 0:c65854d98061 5629 #define FLASH_OPTKEY2 FLASH_KEY2 /*!< Option Byte Key2 */
MartinJohnson 0:c65854d98061 5630
MartinJohnson 0:c65854d98061 5631 /****************** Bit definition for FLASH_SR register *******************/
MartinJohnson 0:c65854d98061 5632 #define FLASH_SR_BSY ((uint32_t)0x00000001) /*!< Busy */
MartinJohnson 0:c65854d98061 5633 #define FLASH_SR_PGERR ((uint32_t)0x00000004) /*!< Programming Error */
MartinJohnson 0:c65854d98061 5634 #define FLASH_SR_WRPERR ((uint32_t)0x00000010) /*!< Write Protection Error */
MartinJohnson 0:c65854d98061 5635 #define FLASH_SR_EOP ((uint32_t)0x00000020) /*!< End of operation */
MartinJohnson 0:c65854d98061 5636
MartinJohnson 0:c65854d98061 5637 /******************* Bit definition for FLASH_CR register *******************/
MartinJohnson 0:c65854d98061 5638 #define FLASH_CR_PG ((uint32_t)0x00000001) /*!< Programming */
MartinJohnson 0:c65854d98061 5639 #define FLASH_CR_PER ((uint32_t)0x00000002) /*!< Page Erase */
MartinJohnson 0:c65854d98061 5640 #define FLASH_CR_MER ((uint32_t)0x00000004) /*!< Mass Erase */
MartinJohnson 0:c65854d98061 5641 #define FLASH_CR_OPTPG ((uint32_t)0x00000010) /*!< Option Byte Programming */
MartinJohnson 0:c65854d98061 5642 #define FLASH_CR_OPTER ((uint32_t)0x00000020) /*!< Option Byte Erase */
MartinJohnson 0:c65854d98061 5643 #define FLASH_CR_STRT ((uint32_t)0x00000040) /*!< Start */
MartinJohnson 0:c65854d98061 5644 #define FLASH_CR_LOCK ((uint32_t)0x00000080) /*!< Lock */
MartinJohnson 0:c65854d98061 5645 #define FLASH_CR_OPTWRE ((uint32_t)0x00000200) /*!< Option Bytes Write Enable */
MartinJohnson 0:c65854d98061 5646 #define FLASH_CR_ERRIE ((uint32_t)0x00000400) /*!< Error Interrupt Enable */
MartinJohnson 0:c65854d98061 5647 #define FLASH_CR_EOPIE ((uint32_t)0x00001000) /*!< End of operation interrupt enable */
MartinJohnson 0:c65854d98061 5648 #define FLASH_CR_OBL_LAUNCH ((uint32_t)0x00002000) /*!< OptionBytes Loader Launch */
MartinJohnson 0:c65854d98061 5649
MartinJohnson 0:c65854d98061 5650 /******************* Bit definition for FLASH_AR register *******************/
MartinJohnson 0:c65854d98061 5651 #define FLASH_AR_FAR ((uint32_t)0xFFFFFFFF) /*!< Flash Address */
MartinJohnson 0:c65854d98061 5652
MartinJohnson 0:c65854d98061 5653 /****************** Bit definition for FLASH_OBR register *******************/
MartinJohnson 0:c65854d98061 5654 #define FLASH_OBR_OPTERR ((uint32_t)0x00000001) /*!< Option Byte Error */
MartinJohnson 0:c65854d98061 5655 #define FLASH_OBR_RDPRT1 ((uint32_t)0x00000002) /*!< Read protection Level 1 */
MartinJohnson 0:c65854d98061 5656 #define FLASH_OBR_RDPRT2 ((uint32_t)0x00000004) /*!< Read protection Level 2 */
MartinJohnson 0:c65854d98061 5657
MartinJohnson 0:c65854d98061 5658 #ifdef STM32F303xE
MartinJohnson 0:c65854d98061 5659 #define FLASH_OBR_USER ((uint32_t)0x00007700) /*!< User Option Bytes */
MartinJohnson 0:c65854d98061 5660 #else
MartinJohnson 0:c65854d98061 5661 #define FLASH_OBR_USER ((uint32_t)0x00003700) /*!< User Option Bytes */
MartinJohnson 0:c65854d98061 5662 #endif /* STM32F303xE */
MartinJohnson 0:c65854d98061 5663
MartinJohnson 0:c65854d98061 5664 #define FLASH_OBR_IWDG_SW ((uint32_t)0x00000100) /*!< IWDG SW */
MartinJohnson 0:c65854d98061 5665 #define FLASH_OBR_nRST_STOP ((uint32_t)0x00000200) /*!< nRST_STOP */
MartinJohnson 0:c65854d98061 5666 #define FLASH_OBR_nRST_STDBY ((uint32_t)0x00000400) /*!< nRST_STDBY */
MartinJohnson 0:c65854d98061 5667 #define FLASH_OBR_nBOOT1 ((uint32_t)0x00001000) /*!< nBOOT1 */
MartinJohnson 0:c65854d98061 5668 #define FLASH_OBR_VDDA_MONITOR ((uint32_t)0x00002000) /*!< VDDA_MONITOR */
MartinJohnson 0:c65854d98061 5669 #define FLASH_OBR_SRAM_PE ((uint32_t)0x00004000) /*!< SRAM_PE */
MartinJohnson 0:c65854d98061 5670
MartinJohnson 0:c65854d98061 5671
MartinJohnson 0:c65854d98061 5672 /****************** Bit definition for FLASH_WRPR register ******************/
MartinJohnson 0:c65854d98061 5673 #define FLASH_WRPR_WRP ((uint32_t)0xFFFFFFFF) /*!< Write Protect */
MartinJohnson 0:c65854d98061 5674
MartinJohnson 0:c65854d98061 5675 /*----------------------------------------------------------------------------*/
MartinJohnson 0:c65854d98061 5676
MartinJohnson 0:c65854d98061 5677 /****************** Bit definition for OB_RDP register **********************/
MartinJohnson 0:c65854d98061 5678 #define OB_RDP_RDP ((uint32_t)0x000000FF) /*!< Read protection option byte */
MartinJohnson 0:c65854d98061 5679 #define OB_RDP_nRDP ((uint32_t)0x0000FF00) /*!< Read protection complemented option byte */
MartinJohnson 0:c65854d98061 5680
MartinJohnson 0:c65854d98061 5681 /****************** Bit definition for OB_USER register *********************/
MartinJohnson 0:c65854d98061 5682 #define OB_USER_USER ((uint32_t)0x00FF0000) /*!< User option byte */
MartinJohnson 0:c65854d98061 5683 #define OB_USER_nUSER ((uint32_t)0xFF000000) /*!< User complemented option byte */
MartinJohnson 0:c65854d98061 5684
MartinJohnson 0:c65854d98061 5685 /****************** Bit definition for FLASH_WRP0 register ******************/
MartinJohnson 0:c65854d98061 5686 #define OB_WRP0_WRP0 ((uint32_t)0x000000FF) /*!< Flash memory write protection option bytes */
MartinJohnson 0:c65854d98061 5687 #define OB_WRP0_nWRP0 ((uint32_t)0x0000FF00) /*!< Flash memory write protection complemented option bytes */
MartinJohnson 0:c65854d98061 5688
MartinJohnson 0:c65854d98061 5689 /****************** Bit definition for FLASH_WRP1 register ******************/
MartinJohnson 0:c65854d98061 5690 #define OB_WRP1_WRP1 ((uint32_t)0x00FF0000) /*!< Flash memory write protection option bytes */
MartinJohnson 0:c65854d98061 5691 #define OB_WRP1_nWRP1 ((uint32_t)0xFF000000) /*!< Flash memory write protection complemented option bytes */
MartinJohnson 0:c65854d98061 5692
MartinJohnson 0:c65854d98061 5693 /****************** Bit definition for FLASH_WRP2 register ******************/
MartinJohnson 0:c65854d98061 5694 #define OB_WRP2_WRP2 ((uint32_t)0x000000FF) /*!< Flash memory write protection option bytes */
MartinJohnson 0:c65854d98061 5695 #define OB_WRP2_nWRP2 ((uint32_t)0x0000FF00) /*!< Flash memory write protection complemented option bytes */
MartinJohnson 0:c65854d98061 5696
MartinJohnson 0:c65854d98061 5697 /****************** Bit definition for FLASH_WRP3 register ******************/
MartinJohnson 0:c65854d98061 5698 #define OB_WRP3_WRP3 ((uint32_t)0x00FF0000) /*!< Flash memory write protection option bytes */
MartinJohnson 0:c65854d98061 5699 #define OB_WRP3_nWRP3 ((uint32_t)0xFF000000) /*!< Flash memory write protection complemented option bytes */
MartinJohnson 0:c65854d98061 5700
MartinJohnson 0:c65854d98061 5701 /******************************************************************************/
MartinJohnson 0:c65854d98061 5702 /* */
MartinJohnson 0:c65854d98061 5703 /* Flexible Memory Controller */
MartinJohnson 0:c65854d98061 5704 /* */
MartinJohnson 0:c65854d98061 5705 /******************************************************************************/
MartinJohnson 0:c65854d98061 5706 /****************** Bit definition for FMC_BCR1 register *******************/
MartinJohnson 0:c65854d98061 5707 #define FMC_BCR1_MBKEN ((uint32_t)0x00000001) /*!<Memory bank enable bit */
MartinJohnson 0:c65854d98061 5708 #define FMC_BCR1_MUXEN ((uint32_t)0x00000002) /*!<Address/data multiplexing enable bit */
MartinJohnson 0:c65854d98061 5709
MartinJohnson 0:c65854d98061 5710 #define FMC_BCR1_MTYP ((uint32_t)0x0000000C) /*!<MTYP[1:0] bits (Memory type) */
MartinJohnson 0:c65854d98061 5711 #define FMC_BCR1_MTYP_0 ((uint32_t)0x00000004) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5712 #define FMC_BCR1_MTYP_1 ((uint32_t)0x00000008) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5713
MartinJohnson 0:c65854d98061 5714 #define FMC_BCR1_MWID ((uint32_t)0x00000030) /*!<MWID[1:0] bits (Memory data bus width) */
MartinJohnson 0:c65854d98061 5715 #define FMC_BCR1_MWID_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5716 #define FMC_BCR1_MWID_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5717
MartinJohnson 0:c65854d98061 5718 #define FMC_BCR1_FACCEN ((uint32_t)0x00000040) /*!<Flash access enable */
MartinJohnson 0:c65854d98061 5719 #define FMC_BCR1_BURSTEN ((uint32_t)0x00000100) /*!<Burst enable bit */
MartinJohnson 0:c65854d98061 5720 #define FMC_BCR1_WAITPOL ((uint32_t)0x00000200) /*!<Wait signal polarity bit */
MartinJohnson 0:c65854d98061 5721 #define FMC_BCR1_WRAPMOD ((uint32_t)0x00000400) /*!<Wrapped burst mode support */
MartinJohnson 0:c65854d98061 5722 #define FMC_BCR1_WAITCFG ((uint32_t)0x00000800) /*!<Wait timing configuration */
MartinJohnson 0:c65854d98061 5723 #define FMC_BCR1_WREN ((uint32_t)0x00001000) /*!<Write enable bit */
MartinJohnson 0:c65854d98061 5724 #define FMC_BCR1_WAITEN ((uint32_t)0x00002000) /*!<Wait enable bit */
MartinJohnson 0:c65854d98061 5725 #define FMC_BCR1_EXTMOD ((uint32_t)0x00004000) /*!<Extended mode enable */
MartinJohnson 0:c65854d98061 5726 #define FMC_BCR1_ASYNCWAIT ((uint32_t)0x00008000) /*!<Asynchronous wait */
MartinJohnson 0:c65854d98061 5727 #define FMC_BCR1_CBURSTRW ((uint32_t)0x00080000) /*!<Write burst enable */
MartinJohnson 0:c65854d98061 5728 #define FMC_BCR1_CCLKEN ((uint32_t)0x00100000) /*!<Conitnuous clock enable */
MartinJohnson 0:c65854d98061 5729
MartinJohnson 0:c65854d98061 5730 /****************** Bit definition for FMC_BCR2 register *******************/
MartinJohnson 0:c65854d98061 5731 #define FMC_BCR2_MBKEN ((uint32_t)0x00000001) /*!<Memory bank enable bit */
MartinJohnson 0:c65854d98061 5732 #define FMC_BCR2_MUXEN ((uint32_t)0x00000002) /*!<Address/data multiplexing enable bit */
MartinJohnson 0:c65854d98061 5733
MartinJohnson 0:c65854d98061 5734 #define FMC_BCR2_MTYP ((uint32_t)0x0000000C) /*!<MTYP[1:0] bits (Memory type) */
MartinJohnson 0:c65854d98061 5735 #define FMC_BCR2_MTYP_0 ((uint32_t)0x00000004) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5736 #define FMC_BCR2_MTYP_1 ((uint32_t)0x00000008) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5737
MartinJohnson 0:c65854d98061 5738 #define FMC_BCR2_MWID ((uint32_t)0x00000030) /*!<MWID[1:0] bits (Memory data bus width) */
MartinJohnson 0:c65854d98061 5739 #define FMC_BCR2_MWID_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5740 #define FMC_BCR2_MWID_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5741
MartinJohnson 0:c65854d98061 5742 #define FMC_BCR2_FACCEN ((uint32_t)0x00000040) /*!<Flash access enable */
MartinJohnson 0:c65854d98061 5743 #define FMC_BCR2_BURSTEN ((uint32_t)0x00000100) /*!<Burst enable bit */
MartinJohnson 0:c65854d98061 5744 #define FMC_BCR2_WAITPOL ((uint32_t)0x00000200) /*!<Wait signal polarity bit */
MartinJohnson 0:c65854d98061 5745 #define FMC_BCR2_WRAPMOD ((uint32_t)0x00000400) /*!<Wrapped burst mode support */
MartinJohnson 0:c65854d98061 5746 #define FMC_BCR2_WAITCFG ((uint32_t)0x00000800) /*!<Wait timing configuration */
MartinJohnson 0:c65854d98061 5747 #define FMC_BCR2_WREN ((uint32_t)0x00001000) /*!<Write enable bit */
MartinJohnson 0:c65854d98061 5748 #define FMC_BCR2_WAITEN ((uint32_t)0x00002000) /*!<Wait enable bit */
MartinJohnson 0:c65854d98061 5749 #define FMC_BCR2_EXTMOD ((uint32_t)0x00004000) /*!<Extended mode enable */
MartinJohnson 0:c65854d98061 5750 #define FMC_BCR2_ASYNCWAIT ((uint32_t)0x00008000) /*!<Asynchronous wait */
MartinJohnson 0:c65854d98061 5751 #define FMC_BCR2_CBURSTRW ((uint32_t)0x00080000) /*!<Write burst enable */
MartinJohnson 0:c65854d98061 5752
MartinJohnson 0:c65854d98061 5753 /****************** Bit definition for FMC_BCR3 register *******************/
MartinJohnson 0:c65854d98061 5754 #define FMC_BCR3_MBKEN ((uint32_t)0x00000001) /*!<Memory bank enable bit */
MartinJohnson 0:c65854d98061 5755 #define FMC_BCR3_MUXEN ((uint32_t)0x00000002) /*!<Address/data multiplexing enable bit */
MartinJohnson 0:c65854d98061 5756
MartinJohnson 0:c65854d98061 5757 #define FMC_BCR3_MTYP ((uint32_t)0x0000000C) /*!<MTYP[1:0] bits (Memory type) */
MartinJohnson 0:c65854d98061 5758 #define FMC_BCR3_MTYP_0 ((uint32_t)0x00000004) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5759 #define FMC_BCR3_MTYP_1 ((uint32_t)0x00000008) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5760
MartinJohnson 0:c65854d98061 5761 #define FMC_BCR3_MWID ((uint32_t)0x00000030) /*!<MWID[1:0] bits (Memory data bus width) */
MartinJohnson 0:c65854d98061 5762 #define FMC_BCR3_MWID_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5763 #define FMC_BCR3_MWID_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5764
MartinJohnson 0:c65854d98061 5765 #define FMC_BCR3_FACCEN ((uint32_t)0x00000040) /*!<Flash access enable */
MartinJohnson 0:c65854d98061 5766 #define FMC_BCR3_BURSTEN ((uint32_t)0x00000100) /*!<Burst enable bit */
MartinJohnson 0:c65854d98061 5767 #define FMC_BCR3_WAITPOL ((uint32_t)0x00000200) /*!<Wait signal polarity bit */
MartinJohnson 0:c65854d98061 5768 #define FMC_BCR3_WRAPMOD ((uint32_t)0x00000400) /*!<Wrapped burst mode support */
MartinJohnson 0:c65854d98061 5769 #define FMC_BCR3_WAITCFG ((uint32_t)0x00000800) /*!<Wait timing configuration */
MartinJohnson 0:c65854d98061 5770 #define FMC_BCR3_WREN ((uint32_t)0x00001000) /*!<Write enable bit */
MartinJohnson 0:c65854d98061 5771 #define FMC_BCR3_WAITEN ((uint32_t)0x00002000) /*!<Wait enable bit */
MartinJohnson 0:c65854d98061 5772 #define FMC_BCR3_EXTMOD ((uint32_t)0x00004000) /*!<Extended mode enable */
MartinJohnson 0:c65854d98061 5773 #define FMC_BCR3_ASYNCWAIT ((uint32_t)0x00008000) /*!<Asynchronous wait */
MartinJohnson 0:c65854d98061 5774 #define FMC_BCR3_CBURSTRW ((uint32_t)0x00080000) /*!<Write burst enable */
MartinJohnson 0:c65854d98061 5775
MartinJohnson 0:c65854d98061 5776 /****************** Bit definition for FMC_BCR4 register *******************/
MartinJohnson 0:c65854d98061 5777 #define FMC_BCR4_MBKEN ((uint32_t)0x00000001) /*!<Memory bank enable bit */
MartinJohnson 0:c65854d98061 5778 #define FMC_BCR4_MUXEN ((uint32_t)0x00000002) /*!<Address/data multiplexing enable bit */
MartinJohnson 0:c65854d98061 5779
MartinJohnson 0:c65854d98061 5780 #define FMC_BCR4_MTYP ((uint32_t)0x0000000C) /*!<MTYP[1:0] bits (Memory type) */
MartinJohnson 0:c65854d98061 5781 #define FMC_BCR4_MTYP_0 ((uint32_t)0x00000004) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5782 #define FMC_BCR4_MTYP_1 ((uint32_t)0x00000008) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5783
MartinJohnson 0:c65854d98061 5784 #define FMC_BCR4_MWID ((uint32_t)0x00000030) /*!<MWID[1:0] bits (Memory data bus width) */
MartinJohnson 0:c65854d98061 5785 #define FMC_BCR4_MWID_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5786 #define FMC_BCR4_MWID_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5787
MartinJohnson 0:c65854d98061 5788 #define FMC_BCR4_FACCEN ((uint32_t)0x00000040) /*!<Flash access enable */
MartinJohnson 0:c65854d98061 5789 #define FMC_BCR4_BURSTEN ((uint32_t)0x00000100) /*!<Burst enable bit */
MartinJohnson 0:c65854d98061 5790 #define FMC_BCR4_WAITPOL ((uint32_t)0x00000200) /*!<Wait signal polarity bit */
MartinJohnson 0:c65854d98061 5791 #define FMC_BCR4_WRAPMOD ((uint32_t)0x00000400) /*!<Wrapped burst mode support */
MartinJohnson 0:c65854d98061 5792 #define FMC_BCR4_WAITCFG ((uint32_t)0x00000800) /*!<Wait timing configuration */
MartinJohnson 0:c65854d98061 5793 #define FMC_BCR4_WREN ((uint32_t)0x00001000) /*!<Write enable bit */
MartinJohnson 0:c65854d98061 5794 #define FMC_BCR4_WAITEN ((uint32_t)0x00002000) /*!<Wait enable bit */
MartinJohnson 0:c65854d98061 5795 #define FMC_BCR4_EXTMOD ((uint32_t)0x00004000) /*!<Extended mode enable */
MartinJohnson 0:c65854d98061 5796 #define FMC_BCR4_ASYNCWAIT ((uint32_t)0x00008000) /*!<Asynchronous wait */
MartinJohnson 0:c65854d98061 5797 #define FMC_BCR4_CBURSTRW ((uint32_t)0x00080000) /*!<Write burst enable */
MartinJohnson 0:c65854d98061 5798
MartinJohnson 0:c65854d98061 5799 /****************** Bit definition for FMC_BTR1 register ******************/
MartinJohnson 0:c65854d98061 5800 #define FMC_BTR1_ADDSET ((uint32_t)0x0000000F) /*!<ADDSET[3:0] bits (Address setup phase duration) */
MartinJohnson 0:c65854d98061 5801 #define FMC_BTR1_ADDSET_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5802 #define FMC_BTR1_ADDSET_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5803 #define FMC_BTR1_ADDSET_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 5804 #define FMC_BTR1_ADDSET_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 5805
MartinJohnson 0:c65854d98061 5806 #define FMC_BTR1_ADDHLD ((uint32_t)0x000000F0) /*!<ADDHLD[3:0] bits (Address-hold phase duration) */
MartinJohnson 0:c65854d98061 5807 #define FMC_BTR1_ADDHLD_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5808 #define FMC_BTR1_ADDHLD_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5809 #define FMC_BTR1_ADDHLD_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 5810 #define FMC_BTR1_ADDHLD_3 ((uint32_t)0x00000080) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 5811
MartinJohnson 0:c65854d98061 5812 #define FMC_BTR1_DATAST ((uint32_t)0x0000FF00) /*!<DATAST [3:0] bits (Data-phase duration) */
MartinJohnson 0:c65854d98061 5813 #define FMC_BTR1_DATAST_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5814 #define FMC_BTR1_DATAST_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5815 #define FMC_BTR1_DATAST_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 5816 #define FMC_BTR1_DATAST_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 5817 #define FMC_BTR1_DATAST_4 ((uint32_t)0x00001000) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 5818 #define FMC_BTR1_DATAST_5 ((uint32_t)0x00002000) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 5819 #define FMC_BTR1_DATAST_6 ((uint32_t)0x00004000) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 5820 #define FMC_BTR1_DATAST_7 ((uint32_t)0x00008000) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 5821
MartinJohnson 0:c65854d98061 5822 #define FMC_BTR1_BUSTURN ((uint32_t)0x000F0000) /*!<BUSTURN[3:0] bits (Bus turnaround phase duration) */
MartinJohnson 0:c65854d98061 5823 #define FMC_BTR1_BUSTURN_0 ((uint32_t)0x00010000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5824 #define FMC_BTR1_BUSTURN_1 ((uint32_t)0x00020000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5825 #define FMC_BTR1_BUSTURN_2 ((uint32_t)0x00040000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 5826 #define FMC_BTR1_BUSTURN_3 ((uint32_t)0x00080000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 5827
MartinJohnson 0:c65854d98061 5828 #define FMC_BTR1_CLKDIV ((uint32_t)0x00F00000) /*!<CLKDIV[3:0] bits (Clock divide ratio) */
MartinJohnson 0:c65854d98061 5829 #define FMC_BTR1_CLKDIV_0 ((uint32_t)0x00100000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5830 #define FMC_BTR1_CLKDIV_1 ((uint32_t)0x00200000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5831 #define FMC_BTR1_CLKDIV_2 ((uint32_t)0x00400000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 5832 #define FMC_BTR1_CLKDIV_3 ((uint32_t)0x00800000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 5833
MartinJohnson 0:c65854d98061 5834 #define FMC_BTR1_DATLAT ((uint32_t)0x0F000000) /*!<DATLA[3:0] bits (Data latency) */
MartinJohnson 0:c65854d98061 5835 #define FMC_BTR1_DATLAT_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5836 #define FMC_BTR1_DATLAT_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5837 #define FMC_BTR1_DATLAT_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 5838 #define FMC_BTR1_DATLAT_3 ((uint32_t)0x08000000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 5839
MartinJohnson 0:c65854d98061 5840 #define FMC_BTR1_ACCMOD ((uint32_t)0x30000000) /*!<ACCMOD[1:0] bits (Access mode) */
MartinJohnson 0:c65854d98061 5841 #define FMC_BTR1_ACCMOD_0 ((uint32_t)0x10000000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5842 #define FMC_BTR1_ACCMOD_1 ((uint32_t)0x20000000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5843
MartinJohnson 0:c65854d98061 5844 /****************** Bit definition for FMC_BTR2 register *******************/
MartinJohnson 0:c65854d98061 5845 #define FMC_BTR2_ADDSET ((uint32_t)0x0000000F) /*!<ADDSET[3:0] bits (Address setup phase duration) */
MartinJohnson 0:c65854d98061 5846 #define FMC_BTR2_ADDSET_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5847 #define FMC_BTR2_ADDSET_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5848 #define FMC_BTR2_ADDSET_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 5849 #define FMC_BTR2_ADDSET_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 5850
MartinJohnson 0:c65854d98061 5851 #define FMC_BTR2_ADDHLD ((uint32_t)0x000000F0) /*!<ADDHLD[3:0] bits (Address-hold phase duration) */
MartinJohnson 0:c65854d98061 5852 #define FMC_BTR2_ADDHLD_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5853 #define FMC_BTR2_ADDHLD_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5854 #define FMC_BTR2_ADDHLD_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 5855 #define FMC_BTR2_ADDHLD_3 ((uint32_t)0x00000080) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 5856
MartinJohnson 0:c65854d98061 5857 #define FMC_BTR2_DATAST ((uint32_t)0x0000FF00) /*!<DATAST [3:0] bits (Data-phase duration) */
MartinJohnson 0:c65854d98061 5858 #define FMC_BTR2_DATAST_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5859 #define FMC_BTR2_DATAST_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5860 #define FMC_BTR2_DATAST_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 5861 #define FMC_BTR2_DATAST_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 5862 #define FMC_BTR2_DATAST_4 ((uint32_t)0x00001000) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 5863 #define FMC_BTR2_DATAST_5 ((uint32_t)0x00002000) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 5864 #define FMC_BTR2_DATAST_6 ((uint32_t)0x00004000) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 5865 #define FMC_BTR2_DATAST_7 ((uint32_t)0x00008000) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 5866
MartinJohnson 0:c65854d98061 5867 #define FMC_BTR2_BUSTURN ((uint32_t)0x000F0000) /*!<BUSTURN[3:0] bits (Bus turnaround phase duration) */
MartinJohnson 0:c65854d98061 5868 #define FMC_BTR2_BUSTURN_0 ((uint32_t)0x00010000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5869 #define FMC_BTR2_BUSTURN_1 ((uint32_t)0x00020000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5870 #define FMC_BTR2_BUSTURN_2 ((uint32_t)0x00040000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 5871 #define FMC_BTR2_BUSTURN_3 ((uint32_t)0x00080000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 5872
MartinJohnson 0:c65854d98061 5873 #define FMC_BTR2_CLKDIV ((uint32_t)0x00F00000) /*!<CLKDIV[3:0] bits (Clock divide ratio) */
MartinJohnson 0:c65854d98061 5874 #define FMC_BTR2_CLKDIV_0 ((uint32_t)0x00100000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5875 #define FMC_BTR2_CLKDIV_1 ((uint32_t)0x00200000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5876 #define FMC_BTR2_CLKDIV_2 ((uint32_t)0x00400000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 5877 #define FMC_BTR2_CLKDIV_3 ((uint32_t)0x00800000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 5878
MartinJohnson 0:c65854d98061 5879 #define FMC_BTR2_DATLAT ((uint32_t)0x0F000000) /*!<DATLA[3:0] bits (Data latency) */
MartinJohnson 0:c65854d98061 5880 #define FMC_BTR2_DATLAT_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5881 #define FMC_BTR2_DATLAT_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5882 #define FMC_BTR2_DATLAT_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 5883 #define FMC_BTR2_DATLAT_3 ((uint32_t)0x08000000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 5884
MartinJohnson 0:c65854d98061 5885 #define FMC_BTR2_ACCMOD ((uint32_t)0x30000000) /*!<ACCMOD[1:0] bits (Access mode) */
MartinJohnson 0:c65854d98061 5886 #define FMC_BTR2_ACCMOD_0 ((uint32_t)0x10000000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5887 #define FMC_BTR2_ACCMOD_1 ((uint32_t)0x20000000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5888
MartinJohnson 0:c65854d98061 5889 /******************* Bit definition for FMC_BTR3 register *******************/
MartinJohnson 0:c65854d98061 5890 #define FMC_BTR3_ADDSET ((uint32_t)0x0000000F) /*!<ADDSET[3:0] bits (Address setup phase duration) */
MartinJohnson 0:c65854d98061 5891 #define FMC_BTR3_ADDSET_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5892 #define FMC_BTR3_ADDSET_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5893 #define FMC_BTR3_ADDSET_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 5894 #define FMC_BTR3_ADDSET_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 5895
MartinJohnson 0:c65854d98061 5896 #define FMC_BTR3_ADDHLD ((uint32_t)0x000000F0) /*!<ADDHLD[3:0] bits (Address-hold phase duration) */
MartinJohnson 0:c65854d98061 5897 #define FMC_BTR3_ADDHLD_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5898 #define FMC_BTR3_ADDHLD_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5899 #define FMC_BTR3_ADDHLD_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 5900 #define FMC_BTR3_ADDHLD_3 ((uint32_t)0x00000080) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 5901
MartinJohnson 0:c65854d98061 5902 #define FMC_BTR3_DATAST ((uint32_t)0x0000FF00) /*!<DATAST [3:0] bits (Data-phase duration) */
MartinJohnson 0:c65854d98061 5903 #define FMC_BTR3_DATAST_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5904 #define FMC_BTR3_DATAST_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5905 #define FMC_BTR3_DATAST_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 5906 #define FMC_BTR3_DATAST_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 5907 #define FMC_BTR3_DATAST_4 ((uint32_t)0x00001000) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 5908 #define FMC_BTR3_DATAST_5 ((uint32_t)0x00002000) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 5909 #define FMC_BTR3_DATAST_6 ((uint32_t)0x00004000) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 5910 #define FMC_BTR3_DATAST_7 ((uint32_t)0x00008000) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 5911
MartinJohnson 0:c65854d98061 5912 #define FMC_BTR3_BUSTURN ((uint32_t)0x000F0000) /*!<BUSTURN[3:0] bits (Bus turnaround phase duration) */
MartinJohnson 0:c65854d98061 5913 #define FMC_BTR3_BUSTURN_0 ((uint32_t)0x00010000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5914 #define FMC_BTR3_BUSTURN_1 ((uint32_t)0x00020000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5915 #define FMC_BTR3_BUSTURN_2 ((uint32_t)0x00040000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 5916 #define FMC_BTR3_BUSTURN_3 ((uint32_t)0x00080000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 5917
MartinJohnson 0:c65854d98061 5918 #define FMC_BTR3_CLKDIV ((uint32_t)0x00F00000) /*!<CLKDIV[3:0] bits (Clock divide ratio) */
MartinJohnson 0:c65854d98061 5919 #define FMC_BTR3_CLKDIV_0 ((uint32_t)0x00100000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5920 #define FMC_BTR3_CLKDIV_1 ((uint32_t)0x00200000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5921 #define FMC_BTR3_CLKDIV_2 ((uint32_t)0x00400000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 5922 #define FMC_BTR3_CLKDIV_3 ((uint32_t)0x00800000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 5923
MartinJohnson 0:c65854d98061 5924 #define FMC_BTR3_DATLAT ((uint32_t)0x0F000000) /*!<DATLA[3:0] bits (Data latency) */
MartinJohnson 0:c65854d98061 5925 #define FMC_BTR3_DATLAT_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5926 #define FMC_BTR3_DATLAT_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5927 #define FMC_BTR3_DATLAT_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 5928 #define FMC_BTR3_DATLAT_3 ((uint32_t)0x08000000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 5929
MartinJohnson 0:c65854d98061 5930 #define FMC_BTR3_ACCMOD ((uint32_t)0x30000000) /*!<ACCMOD[1:0] bits (Access mode) */
MartinJohnson 0:c65854d98061 5931 #define FMC_BTR3_ACCMOD_0 ((uint32_t)0x10000000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5932 #define FMC_BTR3_ACCMOD_1 ((uint32_t)0x20000000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5933
MartinJohnson 0:c65854d98061 5934 /****************** Bit definition for FMC_BTR4 register *******************/
MartinJohnson 0:c65854d98061 5935 #define FMC_BTR4_ADDSET ((uint32_t)0x0000000F) /*!<ADDSET[3:0] bits (Address setup phase duration) */
MartinJohnson 0:c65854d98061 5936 #define FMC_BTR4_ADDSET_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5937 #define FMC_BTR4_ADDSET_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5938 #define FMC_BTR4_ADDSET_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 5939 #define FMC_BTR4_ADDSET_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 5940
MartinJohnson 0:c65854d98061 5941 #define FMC_BTR4_ADDHLD ((uint32_t)0x000000F0) /*!<ADDHLD[3:0] bits (Address-hold phase duration) */
MartinJohnson 0:c65854d98061 5942 #define FMC_BTR4_ADDHLD_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5943 #define FMC_BTR4_ADDHLD_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5944 #define FMC_BTR4_ADDHLD_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 5945 #define FMC_BTR4_ADDHLD_3 ((uint32_t)0x00000080) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 5946
MartinJohnson 0:c65854d98061 5947 #define FMC_BTR4_DATAST ((uint32_t)0x0000FF00) /*!<DATAST [3:0] bits (Data-phase duration) */
MartinJohnson 0:c65854d98061 5948 #define FMC_BTR4_DATAST_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5949 #define FMC_BTR4_DATAST_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5950 #define FMC_BTR4_DATAST_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 5951 #define FMC_BTR4_DATAST_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 5952 #define FMC_BTR4_DATAST_4 ((uint32_t)0x00001000) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 5953 #define FMC_BTR4_DATAST_5 ((uint32_t)0x00002000) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 5954 #define FMC_BTR4_DATAST_6 ((uint32_t)0x00004000) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 5955 #define FMC_BTR4_DATAST_7 ((uint32_t)0x00008000) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 5956
MartinJohnson 0:c65854d98061 5957 #define FMC_BTR4_BUSTURN ((uint32_t)0x000F0000) /*!<BUSTURN[3:0] bits (Bus turnaround phase duration) */
MartinJohnson 0:c65854d98061 5958 #define FMC_BTR4_BUSTURN_0 ((uint32_t)0x00010000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5959 #define FMC_BTR4_BUSTURN_1 ((uint32_t)0x00020000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5960 #define FMC_BTR4_BUSTURN_2 ((uint32_t)0x00040000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 5961 #define FMC_BTR4_BUSTURN_3 ((uint32_t)0x00080000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 5962
MartinJohnson 0:c65854d98061 5963 #define FMC_BTR4_CLKDIV ((uint32_t)0x00F00000) /*!<CLKDIV[3:0] bits (Clock divide ratio) */
MartinJohnson 0:c65854d98061 5964 #define FMC_BTR4_CLKDIV_0 ((uint32_t)0x00100000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5965 #define FMC_BTR4_CLKDIV_1 ((uint32_t)0x00200000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5966 #define FMC_BTR4_CLKDIV_2 ((uint32_t)0x00400000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 5967 #define FMC_BTR4_CLKDIV_3 ((uint32_t)0x00800000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 5968
MartinJohnson 0:c65854d98061 5969 #define FMC_BTR4_DATLAT ((uint32_t)0x0F000000) /*!<DATLA[3:0] bits (Data latency) */
MartinJohnson 0:c65854d98061 5970 #define FMC_BTR4_DATLAT_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5971 #define FMC_BTR4_DATLAT_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5972 #define FMC_BTR4_DATLAT_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 5973 #define FMC_BTR4_DATLAT_3 ((uint32_t)0x08000000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 5974
MartinJohnson 0:c65854d98061 5975 #define FMC_BTR4_ACCMOD ((uint32_t)0x30000000) /*!<ACCMOD[1:0] bits (Access mode) */
MartinJohnson 0:c65854d98061 5976 #define FMC_BTR4_ACCMOD_0 ((uint32_t)0x10000000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5977 #define FMC_BTR4_ACCMOD_1 ((uint32_t)0x20000000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5978
MartinJohnson 0:c65854d98061 5979 /****************** Bit definition for FMC_BWTR1 register ******************/
MartinJohnson 0:c65854d98061 5980 #define FMC_BWTR1_ADDSET ((uint32_t)0x0000000F) /*!<ADDSET[3:0] bits (Address setup phase duration) */
MartinJohnson 0:c65854d98061 5981 #define FMC_BWTR1_ADDSET_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5982 #define FMC_BWTR1_ADDSET_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5983 #define FMC_BWTR1_ADDSET_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 5984 #define FMC_BWTR1_ADDSET_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 5985
MartinJohnson 0:c65854d98061 5986 #define FMC_BWTR1_ADDHLD ((uint32_t)0x000000F0) /*!<ADDHLD[3:0] bits (Address-hold phase duration) */
MartinJohnson 0:c65854d98061 5987 #define FMC_BWTR1_ADDHLD_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5988 #define FMC_BWTR1_ADDHLD_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5989 #define FMC_BWTR1_ADDHLD_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 5990 #define FMC_BWTR1_ADDHLD_3 ((uint32_t)0x00000080) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 5991
MartinJohnson 0:c65854d98061 5992 #define FMC_BWTR1_DATAST ((uint32_t)0x0000FF00) /*!<DATAST [3:0] bits (Data-phase duration) */
MartinJohnson 0:c65854d98061 5993 #define FMC_BWTR1_DATAST_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 5994 #define FMC_BWTR1_DATAST_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 5995 #define FMC_BWTR1_DATAST_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 5996 #define FMC_BWTR1_DATAST_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 5997 #define FMC_BWTR1_DATAST_4 ((uint32_t)0x00001000) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 5998 #define FMC_BWTR1_DATAST_5 ((uint32_t)0x00002000) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 5999 #define FMC_BWTR1_DATAST_6 ((uint32_t)0x00004000) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 6000 #define FMC_BWTR1_DATAST_7 ((uint32_t)0x00008000) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 6001
MartinJohnson 0:c65854d98061 6002 #define FMC_BWTR1_CLKDIV ((uint32_t)0x00F00000) /*!<CLKDIV[3:0] bits (Clock divide ratio) */
MartinJohnson 0:c65854d98061 6003 #define FMC_BWTR1_CLKDIV_0 ((uint32_t)0x00100000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6004 #define FMC_BWTR1_CLKDIV_1 ((uint32_t)0x00200000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6005 #define FMC_BWTR1_CLKDIV_2 ((uint32_t)0x00400000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6006 #define FMC_BWTR1_CLKDIV_3 ((uint32_t)0x00800000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6007
MartinJohnson 0:c65854d98061 6008 #define FMC_BWTR1_DATLAT ((uint32_t)0x0F000000) /*!<DATLA[3:0] bits (Data latency) */
MartinJohnson 0:c65854d98061 6009 #define FMC_BWTR1_DATLAT_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6010 #define FMC_BWTR1_DATLAT_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6011 #define FMC_BWTR1_DATLAT_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6012 #define FMC_BWTR1_DATLAT_3 ((uint32_t)0x08000000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6013
MartinJohnson 0:c65854d98061 6014 #define FMC_BWTR1_ACCMOD ((uint32_t)0x30000000) /*!<ACCMOD[1:0] bits (Access mode) */
MartinJohnson 0:c65854d98061 6015 #define FMC_BWTR1_ACCMOD_0 ((uint32_t)0x10000000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6016 #define FMC_BWTR1_ACCMOD_1 ((uint32_t)0x20000000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6017
MartinJohnson 0:c65854d98061 6018 /****************** Bit definition for FMC_BWTR2 register ******************/
MartinJohnson 0:c65854d98061 6019 #define FMC_BWTR2_ADDSET ((uint32_t)0x0000000F) /*!<ADDSET[3:0] bits (Address setup phase duration) */
MartinJohnson 0:c65854d98061 6020 #define FMC_BWTR2_ADDSET_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6021 #define FMC_BWTR2_ADDSET_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6022 #define FMC_BWTR2_ADDSET_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6023 #define FMC_BWTR2_ADDSET_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6024
MartinJohnson 0:c65854d98061 6025 #define FMC_BWTR2_ADDHLD ((uint32_t)0x000000F0) /*!<ADDHLD[3:0] bits (Address-hold phase duration) */
MartinJohnson 0:c65854d98061 6026 #define FMC_BWTR2_ADDHLD_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6027 #define FMC_BWTR2_ADDHLD_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6028 #define FMC_BWTR2_ADDHLD_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6029 #define FMC_BWTR2_ADDHLD_3 ((uint32_t)0x00000080) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6030
MartinJohnson 0:c65854d98061 6031 #define FMC_BWTR2_DATAST ((uint32_t)0x0000FF00) /*!<DATAST [3:0] bits (Data-phase duration) */
MartinJohnson 0:c65854d98061 6032 #define FMC_BWTR2_DATAST_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6033 #define FMC_BWTR2_DATAST_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6034 #define FMC_BWTR2_DATAST_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6035 #define FMC_BWTR2_DATAST_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6036 #define FMC_BWTR2_DATAST_4 ((uint32_t)0x00001000) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 6037 #define FMC_BWTR2_DATAST_5 ((uint32_t)0x00002000) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 6038 #define FMC_BWTR2_DATAST_6 ((uint32_t)0x00004000) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 6039 #define FMC_BWTR2_DATAST_7 ((uint32_t)0x00008000) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 6040
MartinJohnson 0:c65854d98061 6041 #define FMC_BWTR2_CLKDIV ((uint32_t)0x00F00000) /*!<CLKDIV[3:0] bits (Clock divide ratio) */
MartinJohnson 0:c65854d98061 6042 #define FMC_BWTR2_CLKDIV_0 ((uint32_t)0x00100000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6043 #define FMC_BWTR2_CLKDIV_1 ((uint32_t)0x00200000) /*!<Bit 1*/
MartinJohnson 0:c65854d98061 6044 #define FMC_BWTR2_CLKDIV_2 ((uint32_t)0x00400000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6045 #define FMC_BWTR2_CLKDIV_3 ((uint32_t)0x00800000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6046
MartinJohnson 0:c65854d98061 6047 #define FMC_BWTR2_DATLAT ((uint32_t)0x0F000000) /*!<DATLA[3:0] bits (Data latency) */
MartinJohnson 0:c65854d98061 6048 #define FMC_BWTR2_DATLAT_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6049 #define FMC_BWTR2_DATLAT_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6050 #define FMC_BWTR2_DATLAT_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6051 #define FMC_BWTR2_DATLAT_3 ((uint32_t)0x08000000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6052
MartinJohnson 0:c65854d98061 6053 #define FMC_BWTR2_ACCMOD ((uint32_t)0x30000000) /*!<ACCMOD[1:0] bits (Access mode) */
MartinJohnson 0:c65854d98061 6054 #define FMC_BWTR2_ACCMOD_0 ((uint32_t)0x10000000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6055 #define FMC_BWTR2_ACCMOD_1 ((uint32_t)0x20000000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6056
MartinJohnson 0:c65854d98061 6057 /****************** Bit definition for FMC_BWTR3 register ******************/
MartinJohnson 0:c65854d98061 6058 #define FMC_BWTR3_ADDSET ((uint32_t)0x0000000F) /*!<ADDSET[3:0] bits (Address setup phase duration) */
MartinJohnson 0:c65854d98061 6059 #define FMC_BWTR3_ADDSET_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6060 #define FMC_BWTR3_ADDSET_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6061 #define FMC_BWTR3_ADDSET_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6062 #define FMC_BWTR3_ADDSET_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6063
MartinJohnson 0:c65854d98061 6064 #define FMC_BWTR3_ADDHLD ((uint32_t)0x000000F0) /*!<ADDHLD[3:0] bits (Address-hold phase duration) */
MartinJohnson 0:c65854d98061 6065 #define FMC_BWTR3_ADDHLD_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6066 #define FMC_BWTR3_ADDHLD_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6067 #define FMC_BWTR3_ADDHLD_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6068 #define FMC_BWTR3_ADDHLD_3 ((uint32_t)0x00000080) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6069
MartinJohnson 0:c65854d98061 6070 #define FMC_BWTR3_DATAST ((uint32_t)0x0000FF00) /*!<DATAST [3:0] bits (Data-phase duration) */
MartinJohnson 0:c65854d98061 6071 #define FMC_BWTR3_DATAST_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6072 #define FMC_BWTR3_DATAST_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6073 #define FMC_BWTR3_DATAST_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6074 #define FMC_BWTR3_DATAST_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6075 #define FMC_BWTR3_DATAST_4 ((uint32_t)0x00001000) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 6076 #define FMC_BWTR3_DATAST_5 ((uint32_t)0x00002000) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 6077 #define FMC_BWTR3_DATAST_6 ((uint32_t)0x00004000) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 6078 #define FMC_BWTR3_DATAST_7 ((uint32_t)0x00008000) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 6079
MartinJohnson 0:c65854d98061 6080 #define FMC_BWTR3_CLKDIV ((uint32_t)0x00F00000) /*!<CLKDIV[3:0] bits (Clock divide ratio) */
MartinJohnson 0:c65854d98061 6081 #define FMC_BWTR3_CLKDIV_0 ((uint32_t)0x00100000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6082 #define FMC_BWTR3_CLKDIV_1 ((uint32_t)0x00200000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6083 #define FMC_BWTR3_CLKDIV_2 ((uint32_t)0x00400000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6084 #define FMC_BWTR3_CLKDIV_3 ((uint32_t)0x00800000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6085
MartinJohnson 0:c65854d98061 6086 #define FMC_BWTR3_DATLAT ((uint32_t)0x0F000000) /*!<DATLA[3:0] bits (Data latency) */
MartinJohnson 0:c65854d98061 6087 #define FMC_BWTR3_DATLAT_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6088 #define FMC_BWTR3_DATLAT_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6089 #define FMC_BWTR3_DATLAT_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6090 #define FMC_BWTR3_DATLAT_3 ((uint32_t)0x08000000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6091
MartinJohnson 0:c65854d98061 6092 #define FMC_BWTR3_ACCMOD ((uint32_t)0x30000000) /*!<ACCMOD[1:0] bits (Access mode) */
MartinJohnson 0:c65854d98061 6093 #define FMC_BWTR3_ACCMOD_0 ((uint32_t)0x10000000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6094 #define FMC_BWTR3_ACCMOD_1 ((uint32_t)0x20000000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6095
MartinJohnson 0:c65854d98061 6096 /****************** Bit definition for FMC_BWTR4 register ******************/
MartinJohnson 0:c65854d98061 6097 #define FMC_BWTR4_ADDSET ((uint32_t)0x0000000F) /*!<ADDSET[3:0] bits (Address setup phase duration) */
MartinJohnson 0:c65854d98061 6098 #define FMC_BWTR4_ADDSET_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6099 #define FMC_BWTR4_ADDSET_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6100 #define FMC_BWTR4_ADDSET_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6101 #define FMC_BWTR4_ADDSET_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6102
MartinJohnson 0:c65854d98061 6103 #define FMC_BWTR4_ADDHLD ((uint32_t)0x000000F0) /*!<ADDHLD[3:0] bits (Address-hold phase duration) */
MartinJohnson 0:c65854d98061 6104 #define FMC_BWTR4_ADDHLD_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6105 #define FMC_BWTR4_ADDHLD_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6106 #define FMC_BWTR4_ADDHLD_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6107 #define FMC_BWTR4_ADDHLD_3 ((uint32_t)0x00000080) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6108
MartinJohnson 0:c65854d98061 6109 #define FMC_BWTR4_DATAST ((uint32_t)0x0000FF00) /*!<DATAST [3:0] bits (Data-phase duration) */
MartinJohnson 0:c65854d98061 6110 #define FMC_BWTR4_DATAST_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6111 #define FMC_BWTR4_DATAST_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6112 #define FMC_BWTR4_DATAST_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6113 #define FMC_BWTR4_DATAST_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6114 #define FMC_BWTR4_DATAST_4 ((uint32_t)0x00001000) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 6115 #define FMC_BWTR4_DATAST_5 ((uint32_t)0x00002000) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 6116 #define FMC_BWTR4_DATAST_6 ((uint32_t)0x00004000) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 6117 #define FMC_BWTR4_DATAST_7 ((uint32_t)0x00008000) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 6118
MartinJohnson 0:c65854d98061 6119 #define FMC_BWTR4_CLKDIV ((uint32_t)0x00F00000) /*!<CLKDIV[3:0] bits (Clock divide ratio) */
MartinJohnson 0:c65854d98061 6120 #define FMC_BWTR4_CLKDIV_0 ((uint32_t)0x00100000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6121 #define FMC_BWTR4_CLKDIV_1 ((uint32_t)0x00200000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6122 #define FMC_BWTR4_CLKDIV_2 ((uint32_t)0x00400000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6123 #define FMC_BWTR4_CLKDIV_3 ((uint32_t)0x00800000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6124
MartinJohnson 0:c65854d98061 6125 #define FMC_BWTR4_DATLAT ((uint32_t)0x0F000000) /*!<DATLA[3:0] bits (Data latency) */
MartinJohnson 0:c65854d98061 6126 #define FMC_BWTR4_DATLAT_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6127 #define FMC_BWTR4_DATLAT_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6128 #define FMC_BWTR4_DATLAT_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6129 #define FMC_BWTR4_DATLAT_3 ((uint32_t)0x08000000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6130
MartinJohnson 0:c65854d98061 6131 #define FMC_BWTR4_ACCMOD ((uint32_t)0x30000000) /*!<ACCMOD[1:0] bits (Access mode) */
MartinJohnson 0:c65854d98061 6132 #define FMC_BWTR4_ACCMOD_0 ((uint32_t)0x10000000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6133 #define FMC_BWTR4_ACCMOD_1 ((uint32_t)0x20000000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6134
MartinJohnson 0:c65854d98061 6135 /****************** Bit definition for FMC_PCR2 register *******************/
MartinJohnson 0:c65854d98061 6136 #define FMC_PCR2_PWAITEN ((uint32_t)0x00000002) /*!<Wait feature enable bit */
MartinJohnson 0:c65854d98061 6137 #define FMC_PCR2_PBKEN ((uint32_t)0x00000004) /*!<PC Card/NAND Flash memory bank enable bit */
MartinJohnson 0:c65854d98061 6138 #define FMC_PCR2_PTYP ((uint32_t)0x00000008) /*!<Memory type */
MartinJohnson 0:c65854d98061 6139
MartinJohnson 0:c65854d98061 6140 #define FMC_PCR2_PWID ((uint32_t)0x00000030) /*!<PWID[1:0] bits (NAND Flash databus width) */
MartinJohnson 0:c65854d98061 6141 #define FMC_PCR2_PWID_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6142 #define FMC_PCR2_PWID_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6143
MartinJohnson 0:c65854d98061 6144 #define FMC_PCR2_ECCEN ((uint32_t)0x00000040) /*!<ECC computation logic enable bit */
MartinJohnson 0:c65854d98061 6145
MartinJohnson 0:c65854d98061 6146 #define FMC_PCR2_TCLR ((uint32_t)0x00001E00) /*!<TCLR[3:0] bits (CLE to RE delay) */
MartinJohnson 0:c65854d98061 6147 #define FMC_PCR2_TCLR_0 ((uint32_t)0x00000200) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6148 #define FMC_PCR2_TCLR_1 ((uint32_t)0x00000400) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6149 #define FMC_PCR2_TCLR_2 ((uint32_t)0x00000800) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6150 #define FMC_PCR2_TCLR_3 ((uint32_t)0x00001000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6151
MartinJohnson 0:c65854d98061 6152 #define FMC_PCR2_TAR ((uint32_t)0x0001E000) /*!<TAR[3:0] bits (ALE to RE delay) */
MartinJohnson 0:c65854d98061 6153 #define FMC_PCR2_TAR_0 ((uint32_t)0x00002000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6154 #define FMC_PCR2_TAR_1 ((uint32_t)0x00004000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6155 #define FMC_PCR2_TAR_2 ((uint32_t)0x00008000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6156 #define FMC_PCR2_TAR_3 ((uint32_t)0x00010000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6157
MartinJohnson 0:c65854d98061 6158 #define FMC_PCR2_ECCPS ((uint32_t)0x000E0000) /*!<ECCPS[1:0] bits (ECC page size) */
MartinJohnson 0:c65854d98061 6159 #define FMC_PCR2_ECCPS_0 ((uint32_t)0x00020000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6160 #define FMC_PCR2_ECCPS_1 ((uint32_t)0x00040000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6161 #define FMC_PCR2_ECCPS_2 ((uint32_t)0x00080000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6162
MartinJohnson 0:c65854d98061 6163 /****************** Bit definition for FMC_PCR3 register *******************/
MartinJohnson 0:c65854d98061 6164 #define FMC_PCR3_PWAITEN ((uint32_t)0x00000002) /*!<Wait feature enable bit */
MartinJohnson 0:c65854d98061 6165 #define FMC_PCR3_PBKEN ((uint32_t)0x00000004) /*!<PC Card/NAND Flash memory bank enable bit */
MartinJohnson 0:c65854d98061 6166 #define FMC_PCR3_PTYP ((uint32_t)0x00000008) /*!<Memory type */
MartinJohnson 0:c65854d98061 6167
MartinJohnson 0:c65854d98061 6168 #define FMC_PCR3_PWID ((uint32_t)0x00000030) /*!<PWID[1:0] bits (NAND Flash databus width) */
MartinJohnson 0:c65854d98061 6169 #define FMC_PCR3_PWID_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6170 #define FMC_PCR3_PWID_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6171
MartinJohnson 0:c65854d98061 6172 #define FMC_PCR3_ECCEN ((uint32_t)0x00000040) /*!<ECC computation logic enable bit */
MartinJohnson 0:c65854d98061 6173
MartinJohnson 0:c65854d98061 6174 #define FMC_PCR3_TCLR ((uint32_t)0x00001E00) /*!<TCLR[3:0] bits (CLE to RE delay) */
MartinJohnson 0:c65854d98061 6175 #define FMC_PCR3_TCLR_0 ((uint32_t)0x00000200) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6176 #define FMC_PCR3_TCLR_1 ((uint32_t)0x00000400) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6177 #define FMC_PCR3_TCLR_2 ((uint32_t)0x00000800) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6178 #define FMC_PCR3_TCLR_3 ((uint32_t)0x00001000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6179
MartinJohnson 0:c65854d98061 6180 #define FMC_PCR3_TAR ((uint32_t)0x0001E000) /*!<TAR[3:0] bits (ALE to RE delay) */
MartinJohnson 0:c65854d98061 6181 #define FMC_PCR3_TAR_0 ((uint32_t)0x00002000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6182 #define FMC_PCR3_TAR_1 ((uint32_t)0x00004000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6183 #define FMC_PCR3_TAR_2 ((uint32_t)0x00008000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6184 #define FMC_PCR3_TAR_3 ((uint32_t)0x00010000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6185
MartinJohnson 0:c65854d98061 6186 #define FMC_PCR3_ECCPS ((uint32_t)0x000E0000) /*!<ECCPS[2:0] bits (ECC page size) */
MartinJohnson 0:c65854d98061 6187 #define FMC_PCR3_ECCPS_0 ((uint32_t)0x00020000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6188 #define FMC_PCR3_ECCPS_1 ((uint32_t)0x00040000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6189 #define FMC_PCR3_ECCPS_2 ((uint32_t)0x00080000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6190
MartinJohnson 0:c65854d98061 6191 /****************** Bit definition for FMC_PCR4 register *******************/
MartinJohnson 0:c65854d98061 6192 #define FMC_PCR4_PWAITEN ((uint32_t)0x00000002) /*!<Wait feature enable bit */
MartinJohnson 0:c65854d98061 6193 #define FMC_PCR4_PBKEN ((uint32_t)0x00000004) /*!<PC Card/NAND Flash memory bank enable bit */
MartinJohnson 0:c65854d98061 6194 #define FMC_PCR4_PTYP ((uint32_t)0x00000008) /*!<Memory type */
MartinJohnson 0:c65854d98061 6195
MartinJohnson 0:c65854d98061 6196 #define FMC_PCR4_PWID ((uint32_t)0x00000030) /*!<PWID[1:0] bits (NAND Flash databus width) */
MartinJohnson 0:c65854d98061 6197 #define FMC_PCR4_PWID_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6198 #define FMC_PCR4_PWID_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6199
MartinJohnson 0:c65854d98061 6200 #define FMC_PCR4_ECCEN ((uint32_t)0x00000040) /*!<ECC computation logic enable bit */
MartinJohnson 0:c65854d98061 6201
MartinJohnson 0:c65854d98061 6202 #define FMC_PCR4_TCLR ((uint32_t)0x00001E00) /*!<TCLR[3:0] bits (CLE to RE delay) */
MartinJohnson 0:c65854d98061 6203 #define FMC_PCR4_TCLR_0 ((uint32_t)0x00000200) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6204 #define FMC_PCR4_TCLR_1 ((uint32_t)0x00000400) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6205 #define FMC_PCR4_TCLR_2 ((uint32_t)0x00000800) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6206 #define FMC_PCR4_TCLR_3 ((uint32_t)0x00001000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6207
MartinJohnson 0:c65854d98061 6208 #define FMC_PCR4_TAR ((uint32_t)0x0001E000) /*!<TAR[3:0] bits (ALE to RE delay) */
MartinJohnson 0:c65854d98061 6209 #define FMC_PCR4_TAR_0 ((uint32_t)0x00002000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6210 #define FMC_PCR4_TAR_1 ((uint32_t)0x00004000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6211 #define FMC_PCR4_TAR_2 ((uint32_t)0x00008000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6212 #define FMC_PCR4_TAR_3 ((uint32_t)0x00010000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6213
MartinJohnson 0:c65854d98061 6214 #define FMC_PCR4_ECCPS ((uint32_t)0x000E0000) /*!<ECCPS[2:0] bits (ECC page size) */
MartinJohnson 0:c65854d98061 6215 #define FMC_PCR4_ECCPS_0 ((uint32_t)0x00020000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6216 #define FMC_PCR4_ECCPS_1 ((uint32_t)0x00040000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6217 #define FMC_PCR4_ECCPS_2 ((uint32_t)0x00080000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6218
MartinJohnson 0:c65854d98061 6219 /******************* Bit definition for FMC_SR2 register *******************/
MartinJohnson 0:c65854d98061 6220 #define FMC_SR2_IRS ((uint32_t)0x01) /*!<Interrupt Rising Edge status */
MartinJohnson 0:c65854d98061 6221 #define FMC_SR2_ILS ((uint32_t)0x02) /*!<Interrupt Level status */
MartinJohnson 0:c65854d98061 6222 #define FMC_SR2_IFS ((uint32_t)0x04) /*!<Interrupt Falling Edge status */
MartinJohnson 0:c65854d98061 6223 #define FMC_SR2_IREN ((uint32_t)0x08) /*!<Interrupt Rising Edge detection Enable bit */
MartinJohnson 0:c65854d98061 6224 #define FMC_SR2_ILEN ((uint32_t)0x10) /*!<Interrupt Level detection Enable bit */
MartinJohnson 0:c65854d98061 6225 #define FMC_SR2_IFEN ((uint32_t)0x20) /*!<Interrupt Falling Edge detection Enable bit */
MartinJohnson 0:c65854d98061 6226 #define FMC_SR2_FEMPT ((uint32_t)0x40) /*!<FIFO empty */
MartinJohnson 0:c65854d98061 6227
MartinJohnson 0:c65854d98061 6228 /******************* Bit definition for FMC_SR3 register *******************/
MartinJohnson 0:c65854d98061 6229 #define FMC_SR3_IRS ((uint32_t)0x01) /*!<Interrupt Rising Edge status */
MartinJohnson 0:c65854d98061 6230 #define FMC_SR3_ILS ((uint32_t)0x02) /*!<Interrupt Level status */
MartinJohnson 0:c65854d98061 6231 #define FMC_SR3_IFS ((uint32_t)0x04) /*!<Interrupt Falling Edge status */
MartinJohnson 0:c65854d98061 6232 #define FMC_SR3_IREN ((uint32_t)0x08) /*!<Interrupt Rising Edge detection Enable bit */
MartinJohnson 0:c65854d98061 6233 #define FMC_SR3_ILEN ((uint32_t)0x10) /*!<Interrupt Level detection Enable bit */
MartinJohnson 0:c65854d98061 6234 #define FMC_SR3_IFEN ((uint32_t)0x20) /*!<Interrupt Falling Edge detection Enable bit */
MartinJohnson 0:c65854d98061 6235 #define FMC_SR3_FEMPT ((uint32_t)0x40) /*!<FIFO empty */
MartinJohnson 0:c65854d98061 6236
MartinJohnson 0:c65854d98061 6237 /******************* Bit definition for FMC_SR4 register *******************/
MartinJohnson 0:c65854d98061 6238 #define FMC_SR4_IRS ((uint32_t)0x01) /*!<Interrupt Rising Edge status */
MartinJohnson 0:c65854d98061 6239 #define FMC_SR4_ILS ((uint32_t)0x02) /*!<Interrupt Level status */
MartinJohnson 0:c65854d98061 6240 #define FMC_SR4_IFS ((uint32_t)0x04) /*!<Interrupt Falling Edge status */
MartinJohnson 0:c65854d98061 6241 #define FMC_SR4_IREN ((uint32_t)0x08) /*!<Interrupt Rising Edge detection Enable bit */
MartinJohnson 0:c65854d98061 6242 #define FMC_SR4_ILEN ((uint32_t)0x10) /*!<Interrupt Level detection Enable bit */
MartinJohnson 0:c65854d98061 6243 #define FMC_SR4_IFEN ((uint32_t)0x20) /*!<Interrupt Falling Edge detection Enable bit */
MartinJohnson 0:c65854d98061 6244 #define FMC_SR4_FEMPT ((uint32_t)0x40) /*!<FIFO empty */
MartinJohnson 0:c65854d98061 6245
MartinJohnson 0:c65854d98061 6246 /****************** Bit definition for FMC_PMEM2 register ******************/
MartinJohnson 0:c65854d98061 6247 #define FMC_PMEM2_MEMSET2 ((uint32_t)0x000000FF) /*!<MEMSET2[7:0] bits (Common memory 2 setup time) */
MartinJohnson 0:c65854d98061 6248 #define FMC_PMEM2_MEMSET2_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6249 #define FMC_PMEM2_MEMSET2_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6250 #define FMC_PMEM2_MEMSET2_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6251 #define FMC_PMEM2_MEMSET2_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6252 #define FMC_PMEM2_MEMSET2_4 ((uint32_t)0x00000010) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 6253 #define FMC_PMEM2_MEMSET2_5 ((uint32_t)0x00000020) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 6254 #define FMC_PMEM2_MEMSET2_6 ((uint32_t)0x00000040) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 6255 #define FMC_PMEM2_MEMSET2_7 ((uint32_t)0x00000080) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 6256
MartinJohnson 0:c65854d98061 6257 #define FMC_PMEM2_MEMWAIT2 ((uint32_t)0x0000FF00) /*!<MEMWAIT2[7:0] bits (Common memory 2 wait time) */
MartinJohnson 0:c65854d98061 6258 #define FMC_PMEM2_MEMWAIT2_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6259 #define FMC_PMEM2_MEMWAIT2_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6260 #define FMC_PMEM2_MEMWAIT2_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6261 #define FMC_PMEM2_MEMWAIT2_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6262 #define FMC_PMEM2_MEMWAIT2_4 ((uint32_t)0x00001000) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 6263 #define FMC_PMEM2_MEMWAIT2_5 ((uint32_t)0x00002000) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 6264 #define FMC_PMEM2_MEMWAIT2_6 ((uint32_t)0x00004000) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 6265 #define FMC_PMEM2_MEMWAIT2_7 ((uint32_t)0x00008000) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 6266
MartinJohnson 0:c65854d98061 6267 #define FMC_PMEM2_MEMHOLD2 ((uint32_t)0x00FF0000) /*!<MEMHOLD2[7:0] bits (Common memory 2 hold time) */
MartinJohnson 0:c65854d98061 6268 #define FMC_PMEM2_MEMHOLD2_0 ((uint32_t)0x00010000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6269 #define FMC_PMEM2_MEMHOLD2_1 ((uint32_t)0x00020000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6270 #define FMC_PMEM2_MEMHOLD2_2 ((uint32_t)0x00040000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6271 #define FMC_PMEM2_MEMHOLD2_3 ((uint32_t)0x00080000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6272 #define FMC_PMEM2_MEMHOLD2_4 ((uint32_t)0x00100000) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 6273 #define FMC_PMEM2_MEMHOLD2_5 ((uint32_t)0x00200000) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 6274 #define FMC_PMEM2_MEMHOLD2_6 ((uint32_t)0x00400000) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 6275 #define FMC_PMEM2_MEMHOLD2_7 ((uint32_t)0x00800000) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 6276
MartinJohnson 0:c65854d98061 6277 #define FMC_PMEM2_MEMHIZ2 ((uint32_t)0xFF000000) /*!<MEMHIZ2[7:0] bits (Common memory 2 databus HiZ time) */
MartinJohnson 0:c65854d98061 6278 #define FMC_PMEM2_MEMHIZ2_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6279 #define FMC_PMEM2_MEMHIZ2_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6280 #define FMC_PMEM2_MEMHIZ2_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6281 #define FMC_PMEM2_MEMHIZ2_3 ((uint32_t)0x08000000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6282 #define FMC_PMEM2_MEMHIZ2_4 ((uint32_t)0x10000000) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 6283 #define FMC_PMEM2_MEMHIZ2_5 ((uint32_t)0x20000000) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 6284 #define FMC_PMEM2_MEMHIZ2_6 ((uint32_t)0x40000000) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 6285 #define FMC_PMEM2_MEMHIZ2_7 ((uint32_t)0x80000000) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 6286
MartinJohnson 0:c65854d98061 6287 /****************** Bit definition for FMC_PMEM3 register ******************/
MartinJohnson 0:c65854d98061 6288 #define FMC_PMEM3_MEMSET3 ((uint32_t)0x000000FF) /*!<MEMSET3[7:0] bits (Common memory 3 setup time) */
MartinJohnson 0:c65854d98061 6289 #define FMC_PMEM3_MEMSET3_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6290 #define FMC_PMEM3_MEMSET3_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6291 #define FMC_PMEM3_MEMSET3_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6292 #define FMC_PMEM3_MEMSET3_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6293 #define FMC_PMEM3_MEMSET3_4 ((uint32_t)0x00000010) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 6294 #define FMC_PMEM3_MEMSET3_5 ((uint32_t)0x00000020) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 6295 #define FMC_PMEM3_MEMSET3_6 ((uint32_t)0x00000040) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 6296 #define FMC_PMEM3_MEMSET3_7 ((uint32_t)0x00000080) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 6297
MartinJohnson 0:c65854d98061 6298 #define FMC_PMEM3_MEMWAIT3 ((uint32_t)0x0000FF00) /*!<MEMWAIT3[7:0] bits (Common memory 3 wait time) */
MartinJohnson 0:c65854d98061 6299 #define FMC_PMEM3_MEMWAIT3_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6300 #define FMC_PMEM3_MEMWAIT3_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6301 #define FMC_PMEM3_MEMWAIT3_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6302 #define FMC_PMEM3_MEMWAIT3_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6303 #define FMC_PMEM3_MEMWAIT3_4 ((uint32_t)0x00001000) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 6304 #define FMC_PMEM3_MEMWAIT3_5 ((uint32_t)0x00002000) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 6305 #define FMC_PMEM3_MEMWAIT3_6 ((uint32_t)0x00004000) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 6306 #define FMC_PMEM3_MEMWAIT3_7 ((uint32_t)0x00008000) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 6307
MartinJohnson 0:c65854d98061 6308 #define FMC_PMEM3_MEMHOLD3 ((uint32_t)0x00FF0000) /*!<MEMHOLD3[7:0] bits (Common memory 3 hold time) */
MartinJohnson 0:c65854d98061 6309 #define FMC_PMEM3_MEMHOLD3_0 ((uint32_t)0x00010000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6310 #define FMC_PMEM3_MEMHOLD3_1 ((uint32_t)0x00020000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6311 #define FMC_PMEM3_MEMHOLD3_2 ((uint32_t)0x00040000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6312 #define FMC_PMEM3_MEMHOLD3_3 ((uint32_t)0x00080000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6313 #define FMC_PMEM3_MEMHOLD3_4 ((uint32_t)0x00100000) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 6314 #define FMC_PMEM3_MEMHOLD3_5 ((uint32_t)0x00200000) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 6315 #define FMC_PMEM3_MEMHOLD3_6 ((uint32_t)0x00400000) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 6316 #define FMC_PMEM3_MEMHOLD3_7 ((uint32_t)0x00800000) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 6317
MartinJohnson 0:c65854d98061 6318 #define FMC_PMEM3_MEMHIZ3 ((uint32_t)0xFF000000) /*!<MEMHIZ3[7:0] bits (Common memory 3 databus HiZ time) */
MartinJohnson 0:c65854d98061 6319 #define FMC_PMEM3_MEMHIZ3_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6320 #define FMC_PMEM3_MEMHIZ3_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6321 #define FMC_PMEM3_MEMHIZ3_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6322 #define FMC_PMEM3_MEMHIZ3_3 ((uint32_t)0x08000000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6323 #define FMC_PMEM3_MEMHIZ3_4 ((uint32_t)0x10000000) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 6324 #define FMC_PMEM3_MEMHIZ3_5 ((uint32_t)0x20000000) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 6325 #define FMC_PMEM3_MEMHIZ3_6 ((uint32_t)0x40000000) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 6326 #define FMC_PMEM3_MEMHIZ3_7 ((uint32_t)0x80000000) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 6327
MartinJohnson 0:c65854d98061 6328 /****************** Bit definition for FMC_PMEM4 register ******************/
MartinJohnson 0:c65854d98061 6329 #define FMC_PMEM4_MEMSET4 ((uint32_t)0x000000FF) /*!<MEMSET4[7:0] bits (Common memory 4 setup time) */
MartinJohnson 0:c65854d98061 6330 #define FMC_PMEM4_MEMSET4_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6331 #define FMC_PMEM4_MEMSET4_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6332 #define FMC_PMEM4_MEMSET4_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6333 #define FMC_PMEM4_MEMSET4_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6334 #define FMC_PMEM4_MEMSET4_4 ((uint32_t)0x00000010) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 6335 #define FMC_PMEM4_MEMSET4_5 ((uint32_t)0x00000020) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 6336 #define FMC_PMEM4_MEMSET4_6 ((uint32_t)0x00000040) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 6337 #define FMC_PMEM4_MEMSET4_7 ((uint32_t)0x00000080) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 6338
MartinJohnson 0:c65854d98061 6339 #define FMC_PMEM4_MEMWAIT4 ((uint32_t)0x0000FF00) /*!<MEMWAIT4[7:0] bits (Common memory 4 wait time) */
MartinJohnson 0:c65854d98061 6340 #define FMC_PMEM4_MEMWAIT4_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6341 #define FMC_PMEM4_MEMWAIT4_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6342 #define FMC_PMEM4_MEMWAIT4_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6343 #define FMC_PMEM4_MEMWAIT4_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6344 #define FMC_PMEM4_MEMWAIT4_4 ((uint32_t)0x00001000) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 6345 #define FMC_PMEM4_MEMWAIT4_5 ((uint32_t)0x00002000) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 6346 #define FMC_PMEM4_MEMWAIT4_6 ((uint32_t)0x00004000) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 6347 #define FMC_PMEM4_MEMWAIT4_7 ((uint32_t)0x00008000) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 6348
MartinJohnson 0:c65854d98061 6349 #define FMC_PMEM4_MEMHOLD4 ((uint32_t)0x00FF0000) /*!<MEMHOLD4[7:0] bits (Common memory 4 hold time) */
MartinJohnson 0:c65854d98061 6350 #define FMC_PMEM4_MEMHOLD4_0 ((uint32_t)0x00010000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6351 #define FMC_PMEM4_MEMHOLD4_1 ((uint32_t)0x00020000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6352 #define FMC_PMEM4_MEMHOLD4_2 ((uint32_t)0x00040000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6353 #define FMC_PMEM4_MEMHOLD4_3 ((uint32_t)0x00080000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6354 #define FMC_PMEM4_MEMHOLD4_4 ((uint32_t)0x00100000) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 6355 #define FMC_PMEM4_MEMHOLD4_5 ((uint32_t)0x00200000) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 6356 #define FMC_PMEM4_MEMHOLD4_6 ((uint32_t)0x00400000) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 6357 #define FMC_PMEM4_MEMHOLD4_7 ((uint32_t)0x00800000) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 6358
MartinJohnson 0:c65854d98061 6359 #define FMC_PMEM4_MEMHIZ4 ((uint32_t)0xFF000000) /*!<MEMHIZ4[7:0] bits (Common memory 4 databus HiZ time) */
MartinJohnson 0:c65854d98061 6360 #define FMC_PMEM4_MEMHIZ4_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6361 #define FMC_PMEM4_MEMHIZ4_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6362 #define FMC_PMEM4_MEMHIZ4_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6363 #define FMC_PMEM4_MEMHIZ4_3 ((uint32_t)0x08000000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6364 #define FMC_PMEM4_MEMHIZ4_4 ((uint32_t)0x10000000) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 6365 #define FMC_PMEM4_MEMHIZ4_5 ((uint32_t)0x20000000) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 6366 #define FMC_PMEM4_MEMHIZ4_6 ((uint32_t)0x40000000) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 6367 #define FMC_PMEM4_MEMHIZ4_7 ((uint32_t)0x80000000) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 6368
MartinJohnson 0:c65854d98061 6369 /****************** Bit definition for FMC_PATT2 register ******************/
MartinJohnson 0:c65854d98061 6370 #define FMC_PATT2_ATTSET2 ((uint32_t)0x000000FF) /*!<ATTSET2[7:0] bits (Attribute memory 2 setup time) */
MartinJohnson 0:c65854d98061 6371 #define FMC_PATT2_ATTSET2_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6372 #define FMC_PATT2_ATTSET2_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6373 #define FMC_PATT2_ATTSET2_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6374 #define FMC_PATT2_ATTSET2_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6375 #define FMC_PATT2_ATTSET2_4 ((uint32_t)0x00000010) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 6376 #define FMC_PATT2_ATTSET2_5 ((uint32_t)0x00000020) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 6377 #define FMC_PATT2_ATTSET2_6 ((uint32_t)0x00000040) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 6378 #define FMC_PATT2_ATTSET2_7 ((uint32_t)0x00000080) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 6379
MartinJohnson 0:c65854d98061 6380 #define FMC_PATT2_ATTWAIT2 ((uint32_t)0x0000FF00) /*!<ATTWAIT2[7:0] bits (Attribute memory 2 wait time) */
MartinJohnson 0:c65854d98061 6381 #define FMC_PATT2_ATTWAIT2_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6382 #define FMC_PATT2_ATTWAIT2_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6383 #define FMC_PATT2_ATTWAIT2_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6384 #define FMC_PATT2_ATTWAIT2_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6385 #define FMC_PATT2_ATTWAIT2_4 ((uint32_t)0x00001000) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 6386 #define FMC_PATT2_ATTWAIT2_5 ((uint32_t)0x00002000) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 6387 #define FMC_PATT2_ATTWAIT2_6 ((uint32_t)0x00004000) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 6388 #define FMC_PATT2_ATTWAIT2_7 ((uint32_t)0x00008000) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 6389
MartinJohnson 0:c65854d98061 6390 #define FMC_PATT2_ATTHOLD2 ((uint32_t)0x00FF0000) /*!<ATTHOLD2[7:0] bits (Attribute memory 2 hold time) */
MartinJohnson 0:c65854d98061 6391 #define FMC_PATT2_ATTHOLD2_0 ((uint32_t)0x00010000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6392 #define FMC_PATT2_ATTHOLD2_1 ((uint32_t)0x00020000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6393 #define FMC_PATT2_ATTHOLD2_2 ((uint32_t)0x00040000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6394 #define FMC_PATT2_ATTHOLD2_3 ((uint32_t)0x00080000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6395 #define FMC_PATT2_ATTHOLD2_4 ((uint32_t)0x00100000) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 6396 #define FMC_PATT2_ATTHOLD2_5 ((uint32_t)0x00200000) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 6397 #define FMC_PATT2_ATTHOLD2_6 ((uint32_t)0x00400000) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 6398 #define FMC_PATT2_ATTHOLD2_7 ((uint32_t)0x00800000) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 6399
MartinJohnson 0:c65854d98061 6400 #define FMC_PATT2_ATTHIZ2 ((uint32_t)0xFF000000) /*!<ATTHIZ2[7:0] bits (Attribute memory 2 databus HiZ time) */
MartinJohnson 0:c65854d98061 6401 #define FMC_PATT2_ATTHIZ2_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6402 #define FMC_PATT2_ATTHIZ2_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6403 #define FMC_PATT2_ATTHIZ2_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6404 #define FMC_PATT2_ATTHIZ2_3 ((uint32_t)0x08000000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6405 #define FMC_PATT2_ATTHIZ2_4 ((uint32_t)0x10000000) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 6406 #define FMC_PATT2_ATTHIZ2_5 ((uint32_t)0x20000000) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 6407 #define FMC_PATT2_ATTHIZ2_6 ((uint32_t)0x40000000) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 6408 #define FMC_PATT2_ATTHIZ2_7 ((uint32_t)0x80000000) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 6409
MartinJohnson 0:c65854d98061 6410 /****************** Bit definition for FMC_PATT3 register ******************/
MartinJohnson 0:c65854d98061 6411 #define FMC_PATT3_ATTSET3 ((uint32_t)0x000000FF) /*!<ATTSET3[7:0] bits (Attribute memory 3 setup time) */
MartinJohnson 0:c65854d98061 6412 #define FMC_PATT3_ATTSET3_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6413 #define FMC_PATT3_ATTSET3_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6414 #define FMC_PATT3_ATTSET3_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6415 #define FMC_PATT3_ATTSET3_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6416 #define FMC_PATT3_ATTSET3_4 ((uint32_t)0x00000010) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 6417 #define FMC_PATT3_ATTSET3_5 ((uint32_t)0x00000020) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 6418 #define FMC_PATT3_ATTSET3_6 ((uint32_t)0x00000040) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 6419 #define FMC_PATT3_ATTSET3_7 ((uint32_t)0x00000080) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 6420
MartinJohnson 0:c65854d98061 6421 #define FMC_PATT3_ATTWAIT3 ((uint32_t)0x0000FF00) /*!<ATTWAIT3[7:0] bits (Attribute memory 3 wait time) */
MartinJohnson 0:c65854d98061 6422 #define FMC_PATT3_ATTWAIT3_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6423 #define FMC_PATT3_ATTWAIT3_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6424 #define FMC_PATT3_ATTWAIT3_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6425 #define FMC_PATT3_ATTWAIT3_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6426 #define FMC_PATT3_ATTWAIT3_4 ((uint32_t)0x00001000) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 6427 #define FMC_PATT3_ATTWAIT3_5 ((uint32_t)0x00002000) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 6428 #define FMC_PATT3_ATTWAIT3_6 ((uint32_t)0x00004000) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 6429 #define FMC_PATT3_ATTWAIT3_7 ((uint32_t)0x00008000) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 6430
MartinJohnson 0:c65854d98061 6431 #define FMC_PATT3_ATTHOLD3 ((uint32_t)0x00FF0000) /*!<ATTHOLD3[7:0] bits (Attribute memory 3 hold time) */
MartinJohnson 0:c65854d98061 6432 #define FMC_PATT3_ATTHOLD3_0 ((uint32_t)0x00010000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6433 #define FMC_PATT3_ATTHOLD3_1 ((uint32_t)0x00020000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6434 #define FMC_PATT3_ATTHOLD3_2 ((uint32_t)0x00040000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6435 #define FMC_PATT3_ATTHOLD3_3 ((uint32_t)0x00080000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6436 #define FMC_PATT3_ATTHOLD3_4 ((uint32_t)0x00100000) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 6437 #define FMC_PATT3_ATTHOLD3_5 ((uint32_t)0x00200000) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 6438 #define FMC_PATT3_ATTHOLD3_6 ((uint32_t)0x00400000) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 6439 #define FMC_PATT3_ATTHOLD3_7 ((uint32_t)0x00800000) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 6440
MartinJohnson 0:c65854d98061 6441 #define FMC_PATT3_ATTHIZ3 ((uint32_t)0xFF000000) /*!<ATTHIZ3[7:0] bits (Attribute memory 3 databus HiZ time) */
MartinJohnson 0:c65854d98061 6442 #define FMC_PATT3_ATTHIZ3_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6443 #define FMC_PATT3_ATTHIZ3_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6444 #define FMC_PATT3_ATTHIZ3_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6445 #define FMC_PATT3_ATTHIZ3_3 ((uint32_t)0x08000000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6446 #define FMC_PATT3_ATTHIZ3_4 ((uint32_t)0x10000000) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 6447 #define FMC_PATT3_ATTHIZ3_5 ((uint32_t)0x20000000) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 6448 #define FMC_PATT3_ATTHIZ3_6 ((uint32_t)0x40000000) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 6449 #define FMC_PATT3_ATTHIZ3_7 ((uint32_t)0x80000000) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 6450
MartinJohnson 0:c65854d98061 6451 /****************** Bit definition for FMC_PATT4 register ******************/
MartinJohnson 0:c65854d98061 6452 #define FMC_PATT4_ATTSET4 ((uint32_t)0x000000FF) /*!<ATTSET4[7:0] bits (Attribute memory 4 setup time) */
MartinJohnson 0:c65854d98061 6453 #define FMC_PATT4_ATTSET4_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6454 #define FMC_PATT4_ATTSET4_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6455 #define FMC_PATT4_ATTSET4_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6456 #define FMC_PATT4_ATTSET4_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6457 #define FMC_PATT4_ATTSET4_4 ((uint32_t)0x00000010) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 6458 #define FMC_PATT4_ATTSET4_5 ((uint32_t)0x00000020) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 6459 #define FMC_PATT4_ATTSET4_6 ((uint32_t)0x00000040) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 6460 #define FMC_PATT4_ATTSET4_7 ((uint32_t)0x00000080) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 6461
MartinJohnson 0:c65854d98061 6462 #define FMC_PATT4_ATTWAIT4 ((uint32_t)0x0000FF00) /*!<ATTWAIT4[7:0] bits (Attribute memory 4 wait time) */
MartinJohnson 0:c65854d98061 6463 #define FMC_PATT4_ATTWAIT4_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6464 #define FMC_PATT4_ATTWAIT4_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6465 #define FMC_PATT4_ATTWAIT4_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6466 #define FMC_PATT4_ATTWAIT4_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6467 #define FMC_PATT4_ATTWAIT4_4 ((uint32_t)0x00001000) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 6468 #define FMC_PATT4_ATTWAIT4_5 ((uint32_t)0x00002000) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 6469 #define FMC_PATT4_ATTWAIT4_6 ((uint32_t)0x00004000) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 6470 #define FMC_PATT4_ATTWAIT4_7 ((uint32_t)0x00008000) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 6471
MartinJohnson 0:c65854d98061 6472 #define FMC_PATT4_ATTHOLD4 ((uint32_t)0x00FF0000) /*!<ATTHOLD4[7:0] bits (Attribute memory 4 hold time) */
MartinJohnson 0:c65854d98061 6473 #define FMC_PATT4_ATTHOLD4_0 ((uint32_t)0x00010000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6474 #define FMC_PATT4_ATTHOLD4_1 ((uint32_t)0x00020000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6475 #define FMC_PATT4_ATTHOLD4_2 ((uint32_t)0x00040000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6476 #define FMC_PATT4_ATTHOLD4_3 ((uint32_t)0x00080000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6477 #define FMC_PATT4_ATTHOLD4_4 ((uint32_t)0x00100000) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 6478 #define FMC_PATT4_ATTHOLD4_5 ((uint32_t)0x00200000) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 6479 #define FMC_PATT4_ATTHOLD4_6 ((uint32_t)0x00400000) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 6480 #define FMC_PATT4_ATTHOLD4_7 ((uint32_t)0x00800000) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 6481
MartinJohnson 0:c65854d98061 6482 #define FMC_PATT4_ATTHIZ4 ((uint32_t)0xFF000000) /*!<ATTHIZ4[7:0] bits (Attribute memory 4 databus HiZ time) */
MartinJohnson 0:c65854d98061 6483 #define FMC_PATT4_ATTHIZ4_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6484 #define FMC_PATT4_ATTHIZ4_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6485 #define FMC_PATT4_ATTHIZ4_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6486 #define FMC_PATT4_ATTHIZ4_3 ((uint32_t)0x08000000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6487 #define FMC_PATT4_ATTHIZ4_4 ((uint32_t)0x10000000) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 6488 #define FMC_PATT4_ATTHIZ4_5 ((uint32_t)0x20000000) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 6489 #define FMC_PATT4_ATTHIZ4_6 ((uint32_t)0x40000000) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 6490 #define FMC_PATT4_ATTHIZ4_7 ((uint32_t)0x80000000) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 6491
MartinJohnson 0:c65854d98061 6492 /****************** Bit definition for FMC_PIO4 register *******************/
MartinJohnson 0:c65854d98061 6493 #define FMC_PIO4_IOSET4 ((uint32_t)0x000000FF) /*!<IOSET4[7:0] bits (I/O 4 setup time) */
MartinJohnson 0:c65854d98061 6494 #define FMC_PIO4_IOSET4_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6495 #define FMC_PIO4_IOSET4_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6496 #define FMC_PIO4_IOSET4_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6497 #define FMC_PIO4_IOSET4_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6498 #define FMC_PIO4_IOSET4_4 ((uint32_t)0x00000010) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 6499 #define FMC_PIO4_IOSET4_5 ((uint32_t)0x00000020) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 6500 #define FMC_PIO4_IOSET4_6 ((uint32_t)0x00000040) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 6501 #define FMC_PIO4_IOSET4_7 ((uint32_t)0x00000080) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 6502
MartinJohnson 0:c65854d98061 6503 #define FMC_PIO4_IOWAIT4 ((uint32_t)0x0000FF00) /*!<IOWAIT4[7:0] bits (I/O 4 wait time) */
MartinJohnson 0:c65854d98061 6504 #define FMC_PIO4_IOWAIT4_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6505 #define FMC_PIO4_IOWAIT4_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6506 #define FMC_PIO4_IOWAIT4_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6507 #define FMC_PIO4_IOWAIT4_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6508 #define FMC_PIO4_IOWAIT4_4 ((uint32_t)0x00001000) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 6509 #define FMC_PIO4_IOWAIT4_5 ((uint32_t)0x00002000) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 6510 #define FMC_PIO4_IOWAIT4_6 ((uint32_t)0x00004000) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 6511 #define FMC_PIO4_IOWAIT4_7 ((uint32_t)0x00008000) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 6512
MartinJohnson 0:c65854d98061 6513 #define FMC_PIO4_IOHOLD4 ((uint32_t)0x00FF0000) /*!<IOHOLD4[7:0] bits (I/O 4 hold time) */
MartinJohnson 0:c65854d98061 6514 #define FMC_PIO4_IOHOLD4_0 ((uint32_t)0x00010000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6515 #define FMC_PIO4_IOHOLD4_1 ((uint32_t)0x00020000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6516 #define FMC_PIO4_IOHOLD4_2 ((uint32_t)0x00040000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6517 #define FMC_PIO4_IOHOLD4_3 ((uint32_t)0x00080000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6518 #define FMC_PIO4_IOHOLD4_4 ((uint32_t)0x00100000) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 6519 #define FMC_PIO4_IOHOLD4_5 ((uint32_t)0x00200000) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 6520 #define FMC_PIO4_IOHOLD4_6 ((uint32_t)0x00400000) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 6521 #define FMC_PIO4_IOHOLD4_7 ((uint32_t)0x00800000) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 6522
MartinJohnson 0:c65854d98061 6523 #define FMC_PIO4_IOHIZ4 ((uint32_t)0xFF000000) /*!<IOHIZ4[7:0] bits (I/O 4 databus HiZ time) */
MartinJohnson 0:c65854d98061 6524 #define FMC_PIO4_IOHIZ4_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6525 #define FMC_PIO4_IOHIZ4_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6526 #define FMC_PIO4_IOHIZ4_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6527 #define FMC_PIO4_IOHIZ4_3 ((uint32_t)0x08000000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6528 #define FMC_PIO4_IOHIZ4_4 ((uint32_t)0x10000000) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 6529 #define FMC_PIO4_IOHIZ4_5 ((uint32_t)0x20000000) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 6530 #define FMC_PIO4_IOHIZ4_6 ((uint32_t)0x40000000) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 6531 #define FMC_PIO4_IOHIZ4_7 ((uint32_t)0x80000000) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 6532
MartinJohnson 0:c65854d98061 6533 /****************** Bit definition for FMC_ECCR2 register ******************/
MartinJohnson 0:c65854d98061 6534 #define FMC_ECCR2_ECC2 ((uint32_t)0xFFFFFFFF) /*!<ECC result */
MartinJohnson 0:c65854d98061 6535
MartinJohnson 0:c65854d98061 6536 /****************** Bit definition for FMC_ECCR3 register ******************/
MartinJohnson 0:c65854d98061 6537 #define FMC_ECCR3_ECC3 ((uint32_t)0xFFFFFFFF) /*!<ECC result */
MartinJohnson 0:c65854d98061 6538
MartinJohnson 0:c65854d98061 6539 /****************** Bit definition for FMC_SDCR1 register ******************/
MartinJohnson 0:c65854d98061 6540 #define FMC_SDCR1_NC ((uint32_t)0x00000003) /*!<NC[1:0] bits (Number of column bits) */
MartinJohnson 0:c65854d98061 6541 #define FMC_SDCR1_NC_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6542 #define FMC_SDCR1_NC_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6543
MartinJohnson 0:c65854d98061 6544 #define FMC_SDCR1_NR ((uint32_t)0x0000000C) /*!<NR[1:0] bits (Number of row bits) */
MartinJohnson 0:c65854d98061 6545 #define FMC_SDCR1_NR_0 ((uint32_t)0x00000004) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6546 #define FMC_SDCR1_NR_1 ((uint32_t)0x00000008) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6547
MartinJohnson 0:c65854d98061 6548 #define FMC_SDCR1_MWID ((uint32_t)0x00000030) /*!<NR[1:0] bits (Number of row bits) */
MartinJohnson 0:c65854d98061 6549 #define FMC_SDCR1_MWID_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6550 #define FMC_SDCR1_MWID_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6551
MartinJohnson 0:c65854d98061 6552 #define FMC_SDCR1_NB ((uint32_t)0x00000040) /*!<Number of internal bank */
MartinJohnson 0:c65854d98061 6553
MartinJohnson 0:c65854d98061 6554 #define FMC_SDCR1_CAS ((uint32_t)0x00000180) /*!<CAS[1:0] bits (CAS latency) */
MartinJohnson 0:c65854d98061 6555 #define FMC_SDCR1_CAS_0 ((uint32_t)0x00000080) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6556 #define FMC_SDCR1_CAS_1 ((uint32_t)0x00000100) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6557
MartinJohnson 0:c65854d98061 6558 #define FMC_SDCR1_WP ((uint32_t)0x00000200) /*!<Write protection */
MartinJohnson 0:c65854d98061 6559
MartinJohnson 0:c65854d98061 6560 #define FMC_SDCR1_SDCLK ((uint32_t)0x00000C00) /*!<SDRAM clock configuration */
MartinJohnson 0:c65854d98061 6561 #define FMC_SDCR1_SDCLK_0 ((uint32_t)0x00000400) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6562 #define FMC_SDCR1_SDCLK_1 ((uint32_t)0x00000800) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6563
MartinJohnson 0:c65854d98061 6564 #define FMC_SDCR1_RBURST ((uint32_t)0x00001000) /*!<Read burst */
MartinJohnson 0:c65854d98061 6565
MartinJohnson 0:c65854d98061 6566 #define FMC_SDCR1_RPIPE ((uint32_t)0x00006000) /*!<Write protection */
MartinJohnson 0:c65854d98061 6567 #define FMC_SDCR1_RPIPE_0 ((uint32_t)0x00002000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6568 #define FMC_SDCR1_RPIPE_1 ((uint32_t)0x00004000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6569
MartinJohnson 0:c65854d98061 6570 /****************** Bit definition for FMC_SDCR2 register ******************/
MartinJohnson 0:c65854d98061 6571 #define FMC_SDCR2_NC ((uint32_t)0x00000003) /*!<NC[1:0] bits (Number of column bits) */
MartinJohnson 0:c65854d98061 6572 #define FMC_SDCR2_NC_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6573 #define FMC_SDCR2_NC_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6574
MartinJohnson 0:c65854d98061 6575 #define FMC_SDCR2_NR ((uint32_t)0x0000000C) /*!<NR[1:0] bits (Number of row bits) */
MartinJohnson 0:c65854d98061 6576 #define FMC_SDCR2_NR_0 ((uint32_t)0x00000004) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6577 #define FMC_SDCR2_NR_1 ((uint32_t)0x00000008) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6578
MartinJohnson 0:c65854d98061 6579 #define FMC_SDCR2_MWID ((uint32_t)0x00000030) /*!<NR[1:0] bits (Number of row bits) */
MartinJohnson 0:c65854d98061 6580 #define FMC_SDCR2_MWID_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6581 #define FMC_SDCR2_MWID_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6582
MartinJohnson 0:c65854d98061 6583 #define FMC_SDCR2_NB ((uint32_t)0x00000040) /*!<Number of internal bank */
MartinJohnson 0:c65854d98061 6584
MartinJohnson 0:c65854d98061 6585 #define FMC_SDCR2_CAS ((uint32_t)0x00000180) /*!<CAS[1:0] bits (CAS latency) */
MartinJohnson 0:c65854d98061 6586 #define FMC_SDCR2_CAS_0 ((uint32_t)0x00000080) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6587 #define FMC_SDCR2_CAS_1 ((uint32_t)0x00000100) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6588
MartinJohnson 0:c65854d98061 6589 #define FMC_SDCR2_WP ((uint32_t)0x00000200) /*!<Write protection */
MartinJohnson 0:c65854d98061 6590
MartinJohnson 0:c65854d98061 6591 #define FMC_SDCR2_SDCLK ((uint32_t)0x00000C00) /*!<SDCLK[1:0] (SDRAM clock configuration) */
MartinJohnson 0:c65854d98061 6592 #define FMC_SDCR2_SDCLK_0 ((uint32_t)0x00000400) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6593 #define FMC_SDCR2_SDCLK_1 ((uint32_t)0x00000800) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6594
MartinJohnson 0:c65854d98061 6595 #define FMC_SDCR2_RBURST ((uint32_t)0x00001000) /*!<Read burst */
MartinJohnson 0:c65854d98061 6596
MartinJohnson 0:c65854d98061 6597 #define FMC_SDCR2_RPIPE ((uint32_t)0x00006000) /*!<RPIPE[1:0](Read pipe) */
MartinJohnson 0:c65854d98061 6598 #define FMC_SDCR2_RPIPE_0 ((uint32_t)0x00002000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6599 #define FMC_SDCR2_RPIPE_1 ((uint32_t)0x00004000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6600
MartinJohnson 0:c65854d98061 6601 /****************** Bit definition for FMC_SDTR1 register ******************/
MartinJohnson 0:c65854d98061 6602 #define FMC_SDTR1_TMRD ((uint32_t)0x0000000F) /*!<TMRD[3:0] bits (Load mode register to active) */
MartinJohnson 0:c65854d98061 6603 #define FMC_SDTR1_TMRD_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6604 #define FMC_SDTR1_TMRD_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6605 #define FMC_SDTR1_TMRD_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6606 #define FMC_SDTR1_TMRD_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6607
MartinJohnson 0:c65854d98061 6608 #define FMC_SDTR1_TXSR ((uint32_t)0x000000F0) /*!<TXSR[3:0] bits (Exit self refresh) */
MartinJohnson 0:c65854d98061 6609 #define FMC_SDTR1_TXSR_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6610 #define FMC_SDTR1_TXSR_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6611 #define FMC_SDTR1_TXSR_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6612 #define FMC_SDTR1_TXSR_3 ((uint32_t)0x00000080) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6613
MartinJohnson 0:c65854d98061 6614 #define FMC_SDTR1_TRAS ((uint32_t)0x00000F00) /*!<TRAS[3:0] bits (Self refresh time) */
MartinJohnson 0:c65854d98061 6615 #define FMC_SDTR1_TRAS_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6616 #define FMC_SDTR1_TRAS_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6617 #define FMC_SDTR1_TRAS_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6618 #define FMC_SDTR1_TRAS_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6619
MartinJohnson 0:c65854d98061 6620 #define FMC_SDTR1_TRC ((uint32_t)0x0000F000) /*!<TRC[2:0] bits (Row cycle delay) */
MartinJohnson 0:c65854d98061 6621 #define FMC_SDTR1_TRC_0 ((uint32_t)0x00001000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6622 #define FMC_SDTR1_TRC_1 ((uint32_t)0x00002000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6623 #define FMC_SDTR1_TRC_2 ((uint32_t)0x00004000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6624
MartinJohnson 0:c65854d98061 6625 #define FMC_SDTR1_TWR ((uint32_t)0x000F0000) /*!<TRC[2:0] bits (Write recovery delay) */
MartinJohnson 0:c65854d98061 6626 #define FMC_SDTR1_TWR_0 ((uint32_t)0x00010000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6627 #define FMC_SDTR1_TWR_1 ((uint32_t)0x00020000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6628 #define FMC_SDTR1_TWR_2 ((uint32_t)0x00040000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6629
MartinJohnson 0:c65854d98061 6630 #define FMC_SDTR1_TRP ((uint32_t)0x00F00000) /*!<TRP[2:0] bits (Row precharge delay) */
MartinJohnson 0:c65854d98061 6631 #define FMC_SDTR1_TRP_0 ((uint32_t)0x00100000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6632 #define FMC_SDTR1_TRP_1 ((uint32_t)0x00200000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6633 #define FMC_SDTR1_TRP_2 ((uint32_t)0x00400000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6634
MartinJohnson 0:c65854d98061 6635 #define FMC_SDTR1_TRCD ((uint32_t)0x0F000000) /*!<TRP[2:0] bits (Row to column delay) */
MartinJohnson 0:c65854d98061 6636 #define FMC_SDTR1_TRCD_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6637 #define FMC_SDTR1_TRCD_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6638 #define FMC_SDTR1_TRCD_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6639
MartinJohnson 0:c65854d98061 6640 /****************** Bit definition for FMC_SDTR2 register ******************/
MartinJohnson 0:c65854d98061 6641 #define FMC_SDTR2_TMRD ((uint32_t)0x0000000F) /*!<TMRD[3:0] bits (Load mode register to active) */
MartinJohnson 0:c65854d98061 6642 #define FMC_SDTR2_TMRD_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6643 #define FMC_SDTR2_TMRD_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6644 #define FMC_SDTR2_TMRD_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6645 #define FMC_SDTR2_TMRD_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6646
MartinJohnson 0:c65854d98061 6647 #define FMC_SDTR2_TXSR ((uint32_t)0x000000F0) /*!<TXSR[3:0] bits (Exit self refresh) */
MartinJohnson 0:c65854d98061 6648 #define FMC_SDTR2_TXSR_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6649 #define FMC_SDTR2_TXSR_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6650 #define FMC_SDTR2_TXSR_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6651 #define FMC_SDTR2_TXSR_3 ((uint32_t)0x00000080) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6652
MartinJohnson 0:c65854d98061 6653 #define FMC_SDTR2_TRAS ((uint32_t)0x00000F00) /*!<TRAS[3:0] bits (Self refresh time) */
MartinJohnson 0:c65854d98061 6654 #define FMC_SDTR2_TRAS_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6655 #define FMC_SDTR2_TRAS_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6656 #define FMC_SDTR2_TRAS_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6657 #define FMC_SDTR2_TRAS_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6658
MartinJohnson 0:c65854d98061 6659 #define FMC_SDTR2_TRC ((uint32_t)0x0000F000) /*!<TRC[2:0] bits (Row cycle delay) */
MartinJohnson 0:c65854d98061 6660 #define FMC_SDTR2_TRC_0 ((uint32_t)0x00001000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6661 #define FMC_SDTR2_TRC_1 ((uint32_t)0x00002000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6662 #define FMC_SDTR2_TRC_2 ((uint32_t)0x00004000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6663
MartinJohnson 0:c65854d98061 6664 #define FMC_SDTR2_TWR ((uint32_t)0x000F0000) /*!<TRC[2:0] bits (Write recovery delay) */
MartinJohnson 0:c65854d98061 6665 #define FMC_SDTR2_TWR_0 ((uint32_t)0x00010000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6666 #define FMC_SDTR2_TWR_1 ((uint32_t)0x00020000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6667 #define FMC_SDTR2_TWR_2 ((uint32_t)0x00040000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6668
MartinJohnson 0:c65854d98061 6669 #define FMC_SDTR2_TRP ((uint32_t)0x00F00000) /*!<TRP[2:0] bits (Row precharge delay) */
MartinJohnson 0:c65854d98061 6670 #define FMC_SDTR2_TRP_0 ((uint32_t)0x00100000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6671 #define FMC_SDTR2_TRP_1 ((uint32_t)0x00200000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6672 #define FMC_SDTR2_TRP_2 ((uint32_t)0x00400000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6673
MartinJohnson 0:c65854d98061 6674 #define FMC_SDTR2_TRCD ((uint32_t)0x0F000000) /*!<TRP[2:0] bits (Row to column delay) */
MartinJohnson 0:c65854d98061 6675 #define FMC_SDTR2_TRCD_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6676 #define FMC_SDTR2_TRCD_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6677 #define FMC_SDTR2_TRCD_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6678
MartinJohnson 0:c65854d98061 6679 /****************** Bit definition for FMC_SDCMR register ******************/
MartinJohnson 0:c65854d98061 6680 #define FMC_SDCMR_MODE ((uint32_t)0x00000007) /*!<MODE[2:0] bits (Command mode) */
MartinJohnson 0:c65854d98061 6681 #define FMC_SDCMR_MODE_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6682 #define FMC_SDCMR_MODE_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6683 #define FMC_SDCMR_MODE_2 ((uint32_t)0x00000003) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6684
MartinJohnson 0:c65854d98061 6685 #define FMC_SDCMR_CTB2 ((uint32_t)0x00000008) /*!<Command target 2 */
MartinJohnson 0:c65854d98061 6686
MartinJohnson 0:c65854d98061 6687 #define FMC_SDCMR_CTB1 ((uint32_t)0x00000010) /*!<Command target 1 */
MartinJohnson 0:c65854d98061 6688
MartinJohnson 0:c65854d98061 6689 #define FMC_SDCMR_NRFS ((uint32_t)0x000001E0) /*!<NRFS[3:0] bits (Number of auto-refresh) */
MartinJohnson 0:c65854d98061 6690 #define FMC_SDCMR_NRFS_0 ((uint32_t)0x00000020) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6691 #define FMC_SDCMR_NRFS_1 ((uint32_t)0x00000040) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6692 #define FMC_SDCMR_NRFS_2 ((uint32_t)0x00000080) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 6693 #define FMC_SDCMR_NRFS_3 ((uint32_t)0x00000100) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 6694
MartinJohnson 0:c65854d98061 6695 #define FMC_SDCMR_MRD ((uint32_t)0x003FFE00) /*!<MRD[12:0] bits (Mode register definition) */
MartinJohnson 0:c65854d98061 6696
MartinJohnson 0:c65854d98061 6697 /****************** Bit definition for FMC_SDRTR register ******************/
MartinJohnson 0:c65854d98061 6698 #define FMC_SDRTR_CRE ((uint32_t)0x00000001) /*!<Clear refresh error flag */
MartinJohnson 0:c65854d98061 6699
MartinJohnson 0:c65854d98061 6700 #define FMC_SDRTR_COUNT ((uint32_t)0x00003FFE) /*!<COUNT[12:0] bits (Refresh timer count) */
MartinJohnson 0:c65854d98061 6701
MartinJohnson 0:c65854d98061 6702 #define FMC_SDRTR_REIE ((uint32_t)0x00004000) /*!<RES interrupt enable */
MartinJohnson 0:c65854d98061 6703
MartinJohnson 0:c65854d98061 6704 /****************** Bit definition for FMC_SDSR register ******************/
MartinJohnson 0:c65854d98061 6705 #define FMC_SDSR_RE ((uint32_t)0x00000001) /*!<Refresh error flag */
MartinJohnson 0:c65854d98061 6706
MartinJohnson 0:c65854d98061 6707 #define FMC_SDSR_MODES1 ((uint32_t)0x00000006) /*!<MODES1[1:0]bits (Status mode for bank 1) */
MartinJohnson 0:c65854d98061 6708 #define FMC_SDSR_MODES1_0 ((uint32_t)0x00000002) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6709 #define FMC_SDSR_MODES1_1 ((uint32_t)0x00000004) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6710
MartinJohnson 0:c65854d98061 6711 #define FMC_SDSR_MODES2 ((uint32_t)0x00000018) /*!<MODES2[1:0]bits (Status mode for bank 2) */
MartinJohnson 0:c65854d98061 6712 #define FMC_SDSR_MODES2_0 ((uint32_t)0x00000008) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 6713 #define FMC_SDSR_MODES2_1 ((uint32_t)0x00000010) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 6714 #define FMC_SDSR_BUSY ((uint32_t)0x00000020) /*!<Busy status */
MartinJohnson 0:c65854d98061 6715
MartinJohnson 0:c65854d98061 6716 /******************************************************************************/
MartinJohnson 0:c65854d98061 6717 /* */
MartinJohnson 0:c65854d98061 6718 /* General Purpose I/O (GPIO) */
MartinJohnson 0:c65854d98061 6719 /* */
MartinJohnson 0:c65854d98061 6720 /******************************************************************************/
MartinJohnson 0:c65854d98061 6721 /******************* Bit definition for GPIO_MODER register *****************/
MartinJohnson 0:c65854d98061 6722 #define GPIO_MODER_MODER0 ((uint32_t)0x00000003)
MartinJohnson 0:c65854d98061 6723 #define GPIO_MODER_MODER0_0 ((uint32_t)0x00000001)
MartinJohnson 0:c65854d98061 6724 #define GPIO_MODER_MODER0_1 ((uint32_t)0x00000002)
MartinJohnson 0:c65854d98061 6725 #define GPIO_MODER_MODER1 ((uint32_t)0x0000000C)
MartinJohnson 0:c65854d98061 6726 #define GPIO_MODER_MODER1_0 ((uint32_t)0x00000004)
MartinJohnson 0:c65854d98061 6727 #define GPIO_MODER_MODER1_1 ((uint32_t)0x00000008)
MartinJohnson 0:c65854d98061 6728 #define GPIO_MODER_MODER2 ((uint32_t)0x00000030)
MartinJohnson 0:c65854d98061 6729 #define GPIO_MODER_MODER2_0 ((uint32_t)0x00000010)
MartinJohnson 0:c65854d98061 6730 #define GPIO_MODER_MODER2_1 ((uint32_t)0x00000020)
MartinJohnson 0:c65854d98061 6731 #define GPIO_MODER_MODER3 ((uint32_t)0x000000C0)
MartinJohnson 0:c65854d98061 6732 #define GPIO_MODER_MODER3_0 ((uint32_t)0x00000040)
MartinJohnson 0:c65854d98061 6733 #define GPIO_MODER_MODER3_1 ((uint32_t)0x00000080)
MartinJohnson 0:c65854d98061 6734 #define GPIO_MODER_MODER4 ((uint32_t)0x00000300)
MartinJohnson 0:c65854d98061 6735 #define GPIO_MODER_MODER4_0 ((uint32_t)0x00000100)
MartinJohnson 0:c65854d98061 6736 #define GPIO_MODER_MODER4_1 ((uint32_t)0x00000200)
MartinJohnson 0:c65854d98061 6737 #define GPIO_MODER_MODER5 ((uint32_t)0x00000C00)
MartinJohnson 0:c65854d98061 6738 #define GPIO_MODER_MODER5_0 ((uint32_t)0x00000400)
MartinJohnson 0:c65854d98061 6739 #define GPIO_MODER_MODER5_1 ((uint32_t)0x00000800)
MartinJohnson 0:c65854d98061 6740 #define GPIO_MODER_MODER6 ((uint32_t)0x00003000)
MartinJohnson 0:c65854d98061 6741 #define GPIO_MODER_MODER6_0 ((uint32_t)0x00001000)
MartinJohnson 0:c65854d98061 6742 #define GPIO_MODER_MODER6_1 ((uint32_t)0x00002000)
MartinJohnson 0:c65854d98061 6743 #define GPIO_MODER_MODER7 ((uint32_t)0x0000C000)
MartinJohnson 0:c65854d98061 6744 #define GPIO_MODER_MODER7_0 ((uint32_t)0x00004000)
MartinJohnson 0:c65854d98061 6745 #define GPIO_MODER_MODER7_1 ((uint32_t)0x00008000)
MartinJohnson 0:c65854d98061 6746 #define GPIO_MODER_MODER8 ((uint32_t)0x00030000)
MartinJohnson 0:c65854d98061 6747 #define GPIO_MODER_MODER8_0 ((uint32_t)0x00010000)
MartinJohnson 0:c65854d98061 6748 #define GPIO_MODER_MODER8_1 ((uint32_t)0x00020000)
MartinJohnson 0:c65854d98061 6749 #define GPIO_MODER_MODER9 ((uint32_t)0x000C0000)
MartinJohnson 0:c65854d98061 6750 #define GPIO_MODER_MODER9_0 ((uint32_t)0x00040000)
MartinJohnson 0:c65854d98061 6751 #define GPIO_MODER_MODER9_1 ((uint32_t)0x00080000)
MartinJohnson 0:c65854d98061 6752 #define GPIO_MODER_MODER10 ((uint32_t)0x00300000)
MartinJohnson 0:c65854d98061 6753 #define GPIO_MODER_MODER10_0 ((uint32_t)0x00100000)
MartinJohnson 0:c65854d98061 6754 #define GPIO_MODER_MODER10_1 ((uint32_t)0x00200000)
MartinJohnson 0:c65854d98061 6755 #define GPIO_MODER_MODER11 ((uint32_t)0x00C00000)
MartinJohnson 0:c65854d98061 6756 #define GPIO_MODER_MODER11_0 ((uint32_t)0x00400000)
MartinJohnson 0:c65854d98061 6757 #define GPIO_MODER_MODER11_1 ((uint32_t)0x00800000)
MartinJohnson 0:c65854d98061 6758 #define GPIO_MODER_MODER12 ((uint32_t)0x03000000)
MartinJohnson 0:c65854d98061 6759 #define GPIO_MODER_MODER12_0 ((uint32_t)0x01000000)
MartinJohnson 0:c65854d98061 6760 #define GPIO_MODER_MODER12_1 ((uint32_t)0x02000000)
MartinJohnson 0:c65854d98061 6761 #define GPIO_MODER_MODER13 ((uint32_t)0x0C000000)
MartinJohnson 0:c65854d98061 6762 #define GPIO_MODER_MODER13_0 ((uint32_t)0x04000000)
MartinJohnson 0:c65854d98061 6763 #define GPIO_MODER_MODER13_1 ((uint32_t)0x08000000)
MartinJohnson 0:c65854d98061 6764 #define GPIO_MODER_MODER14 ((uint32_t)0x30000000)
MartinJohnson 0:c65854d98061 6765 #define GPIO_MODER_MODER14_0 ((uint32_t)0x10000000)
MartinJohnson 0:c65854d98061 6766 #define GPIO_MODER_MODER14_1 ((uint32_t)0x20000000)
MartinJohnson 0:c65854d98061 6767 #define GPIO_MODER_MODER15 ((uint32_t)0xC0000000)
MartinJohnson 0:c65854d98061 6768 #define GPIO_MODER_MODER15_0 ((uint32_t)0x40000000)
MartinJohnson 0:c65854d98061 6769 #define GPIO_MODER_MODER15_1 ((uint32_t)0x80000000)
MartinJohnson 0:c65854d98061 6770
MartinJohnson 0:c65854d98061 6771
MartinJohnson 0:c65854d98061 6772 /****************** Bit definition for GPIO_OTYPER register *****************/
MartinJohnson 0:c65854d98061 6773 #define GPIO_OTYPER_OT_0 ((uint32_t)0x00000001)
MartinJohnson 0:c65854d98061 6774 #define GPIO_OTYPER_OT_1 ((uint32_t)0x00000002)
MartinJohnson 0:c65854d98061 6775 #define GPIO_OTYPER_OT_2 ((uint32_t)0x00000004)
MartinJohnson 0:c65854d98061 6776 #define GPIO_OTYPER_OT_3 ((uint32_t)0x00000008)
MartinJohnson 0:c65854d98061 6777 #define GPIO_OTYPER_OT_4 ((uint32_t)0x00000010)
MartinJohnson 0:c65854d98061 6778 #define GPIO_OTYPER_OT_5 ((uint32_t)0x00000020)
MartinJohnson 0:c65854d98061 6779 #define GPIO_OTYPER_OT_6 ((uint32_t)0x00000040)
MartinJohnson 0:c65854d98061 6780 #define GPIO_OTYPER_OT_7 ((uint32_t)0x00000080)
MartinJohnson 0:c65854d98061 6781 #define GPIO_OTYPER_OT_8 ((uint32_t)0x00000100)
MartinJohnson 0:c65854d98061 6782 #define GPIO_OTYPER_OT_9 ((uint32_t)0x00000200)
MartinJohnson 0:c65854d98061 6783 #define GPIO_OTYPER_OT_10 ((uint32_t)0x00000400)
MartinJohnson 0:c65854d98061 6784 #define GPIO_OTYPER_OT_11 ((uint32_t)0x00000800)
MartinJohnson 0:c65854d98061 6785 #define GPIO_OTYPER_OT_12 ((uint32_t)0x00001000)
MartinJohnson 0:c65854d98061 6786 #define GPIO_OTYPER_OT_13 ((uint32_t)0x00002000)
MartinJohnson 0:c65854d98061 6787 #define GPIO_OTYPER_OT_14 ((uint32_t)0x00004000)
MartinJohnson 0:c65854d98061 6788 #define GPIO_OTYPER_OT_15 ((uint32_t)0x00008000)
MartinJohnson 0:c65854d98061 6789
MartinJohnson 0:c65854d98061 6790
MartinJohnson 0:c65854d98061 6791 /**************** Bit definition for GPIO_OSPEEDR register ******************/
MartinJohnson 0:c65854d98061 6792 #define GPIO_OSPEEDER_OSPEEDR0 ((uint32_t)0x00000003)
MartinJohnson 0:c65854d98061 6793 #define GPIO_OSPEEDER_OSPEEDR0_0 ((uint32_t)0x00000001)
MartinJohnson 0:c65854d98061 6794 #define GPIO_OSPEEDER_OSPEEDR0_1 ((uint32_t)0x00000002)
MartinJohnson 0:c65854d98061 6795 #define GPIO_OSPEEDER_OSPEEDR1 ((uint32_t)0x0000000C)
MartinJohnson 0:c65854d98061 6796 #define GPIO_OSPEEDER_OSPEEDR1_0 ((uint32_t)0x00000004)
MartinJohnson 0:c65854d98061 6797 #define GPIO_OSPEEDER_OSPEEDR1_1 ((uint32_t)0x00000008)
MartinJohnson 0:c65854d98061 6798 #define GPIO_OSPEEDER_OSPEEDR2 ((uint32_t)0x00000030)
MartinJohnson 0:c65854d98061 6799 #define GPIO_OSPEEDER_OSPEEDR2_0 ((uint32_t)0x00000010)
MartinJohnson 0:c65854d98061 6800 #define GPIO_OSPEEDER_OSPEEDR2_1 ((uint32_t)0x00000020)
MartinJohnson 0:c65854d98061 6801 #define GPIO_OSPEEDER_OSPEEDR3 ((uint32_t)0x000000C0)
MartinJohnson 0:c65854d98061 6802 #define GPIO_OSPEEDER_OSPEEDR3_0 ((uint32_t)0x00000040)
MartinJohnson 0:c65854d98061 6803 #define GPIO_OSPEEDER_OSPEEDR3_1 ((uint32_t)0x00000080)
MartinJohnson 0:c65854d98061 6804 #define GPIO_OSPEEDER_OSPEEDR4 ((uint32_t)0x00000300)
MartinJohnson 0:c65854d98061 6805 #define GPIO_OSPEEDER_OSPEEDR4_0 ((uint32_t)0x00000100)
MartinJohnson 0:c65854d98061 6806 #define GPIO_OSPEEDER_OSPEEDR4_1 ((uint32_t)0x00000200)
MartinJohnson 0:c65854d98061 6807 #define GPIO_OSPEEDER_OSPEEDR5 ((uint32_t)0x00000C00)
MartinJohnson 0:c65854d98061 6808 #define GPIO_OSPEEDER_OSPEEDR5_0 ((uint32_t)0x00000400)
MartinJohnson 0:c65854d98061 6809 #define GPIO_OSPEEDER_OSPEEDR5_1 ((uint32_t)0x00000800)
MartinJohnson 0:c65854d98061 6810 #define GPIO_OSPEEDER_OSPEEDR6 ((uint32_t)0x00003000)
MartinJohnson 0:c65854d98061 6811 #define GPIO_OSPEEDER_OSPEEDR6_0 ((uint32_t)0x00001000)
MartinJohnson 0:c65854d98061 6812 #define GPIO_OSPEEDER_OSPEEDR6_1 ((uint32_t)0x00002000)
MartinJohnson 0:c65854d98061 6813 #define GPIO_OSPEEDER_OSPEEDR7 ((uint32_t)0x0000C000)
MartinJohnson 0:c65854d98061 6814 #define GPIO_OSPEEDER_OSPEEDR7_0 ((uint32_t)0x00004000)
MartinJohnson 0:c65854d98061 6815 #define GPIO_OSPEEDER_OSPEEDR7_1 ((uint32_t)0x00008000)
MartinJohnson 0:c65854d98061 6816 #define GPIO_OSPEEDER_OSPEEDR8 ((uint32_t)0x00030000)
MartinJohnson 0:c65854d98061 6817 #define GPIO_OSPEEDER_OSPEEDR8_0 ((uint32_t)0x00010000)
MartinJohnson 0:c65854d98061 6818 #define GPIO_OSPEEDER_OSPEEDR8_1 ((uint32_t)0x00020000)
MartinJohnson 0:c65854d98061 6819 #define GPIO_OSPEEDER_OSPEEDR9 ((uint32_t)0x000C0000)
MartinJohnson 0:c65854d98061 6820 #define GPIO_OSPEEDER_OSPEEDR9_0 ((uint32_t)0x00040000)
MartinJohnson 0:c65854d98061 6821 #define GPIO_OSPEEDER_OSPEEDR9_1 ((uint32_t)0x00080000)
MartinJohnson 0:c65854d98061 6822 #define GPIO_OSPEEDER_OSPEEDR10 ((uint32_t)0x00300000)
MartinJohnson 0:c65854d98061 6823 #define GPIO_OSPEEDER_OSPEEDR10_0 ((uint32_t)0x00100000)
MartinJohnson 0:c65854d98061 6824 #define GPIO_OSPEEDER_OSPEEDR10_1 ((uint32_t)0x00200000)
MartinJohnson 0:c65854d98061 6825 #define GPIO_OSPEEDER_OSPEEDR11 ((uint32_t)0x00C00000)
MartinJohnson 0:c65854d98061 6826 #define GPIO_OSPEEDER_OSPEEDR11_0 ((uint32_t)0x00400000)
MartinJohnson 0:c65854d98061 6827 #define GPIO_OSPEEDER_OSPEEDR11_1 ((uint32_t)0x00800000)
MartinJohnson 0:c65854d98061 6828 #define GPIO_OSPEEDER_OSPEEDR12 ((uint32_t)0x03000000)
MartinJohnson 0:c65854d98061 6829 #define GPIO_OSPEEDER_OSPEEDR12_0 ((uint32_t)0x01000000)
MartinJohnson 0:c65854d98061 6830 #define GPIO_OSPEEDER_OSPEEDR12_1 ((uint32_t)0x02000000)
MartinJohnson 0:c65854d98061 6831 #define GPIO_OSPEEDER_OSPEEDR13 ((uint32_t)0x0C000000)
MartinJohnson 0:c65854d98061 6832 #define GPIO_OSPEEDER_OSPEEDR13_0 ((uint32_t)0x04000000)
MartinJohnson 0:c65854d98061 6833 #define GPIO_OSPEEDER_OSPEEDR13_1 ((uint32_t)0x08000000)
MartinJohnson 0:c65854d98061 6834 #define GPIO_OSPEEDER_OSPEEDR14 ((uint32_t)0x30000000)
MartinJohnson 0:c65854d98061 6835 #define GPIO_OSPEEDER_OSPEEDR14_0 ((uint32_t)0x10000000)
MartinJohnson 0:c65854d98061 6836 #define GPIO_OSPEEDER_OSPEEDR14_1 ((uint32_t)0x20000000)
MartinJohnson 0:c65854d98061 6837 #define GPIO_OSPEEDER_OSPEEDR15 ((uint32_t)0xC0000000)
MartinJohnson 0:c65854d98061 6838 #define GPIO_OSPEEDER_OSPEEDR15_0 ((uint32_t)0x40000000)
MartinJohnson 0:c65854d98061 6839 #define GPIO_OSPEEDER_OSPEEDR15_1 ((uint32_t)0x80000000)
MartinJohnson 0:c65854d98061 6840
MartinJohnson 0:c65854d98061 6841 /******************* Bit definition for GPIO_PUPDR register ******************/
MartinJohnson 0:c65854d98061 6842 #define GPIO_PUPDR_PUPDR0 ((uint32_t)0x00000003)
MartinJohnson 0:c65854d98061 6843 #define GPIO_PUPDR_PUPDR0_0 ((uint32_t)0x00000001)
MartinJohnson 0:c65854d98061 6844 #define GPIO_PUPDR_PUPDR0_1 ((uint32_t)0x00000002)
MartinJohnson 0:c65854d98061 6845 #define GPIO_PUPDR_PUPDR1 ((uint32_t)0x0000000C)
MartinJohnson 0:c65854d98061 6846 #define GPIO_PUPDR_PUPDR1_0 ((uint32_t)0x00000004)
MartinJohnson 0:c65854d98061 6847 #define GPIO_PUPDR_PUPDR1_1 ((uint32_t)0x00000008)
MartinJohnson 0:c65854d98061 6848 #define GPIO_PUPDR_PUPDR2 ((uint32_t)0x00000030)
MartinJohnson 0:c65854d98061 6849 #define GPIO_PUPDR_PUPDR2_0 ((uint32_t)0x00000010)
MartinJohnson 0:c65854d98061 6850 #define GPIO_PUPDR_PUPDR2_1 ((uint32_t)0x00000020)
MartinJohnson 0:c65854d98061 6851 #define GPIO_PUPDR_PUPDR3 ((uint32_t)0x000000C0)
MartinJohnson 0:c65854d98061 6852 #define GPIO_PUPDR_PUPDR3_0 ((uint32_t)0x00000040)
MartinJohnson 0:c65854d98061 6853 #define GPIO_PUPDR_PUPDR3_1 ((uint32_t)0x00000080)
MartinJohnson 0:c65854d98061 6854 #define GPIO_PUPDR_PUPDR4 ((uint32_t)0x00000300)
MartinJohnson 0:c65854d98061 6855 #define GPIO_PUPDR_PUPDR4_0 ((uint32_t)0x00000100)
MartinJohnson 0:c65854d98061 6856 #define GPIO_PUPDR_PUPDR4_1 ((uint32_t)0x00000200)
MartinJohnson 0:c65854d98061 6857 #define GPIO_PUPDR_PUPDR5 ((uint32_t)0x00000C00)
MartinJohnson 0:c65854d98061 6858 #define GPIO_PUPDR_PUPDR5_0 ((uint32_t)0x00000400)
MartinJohnson 0:c65854d98061 6859 #define GPIO_PUPDR_PUPDR5_1 ((uint32_t)0x00000800)
MartinJohnson 0:c65854d98061 6860 #define GPIO_PUPDR_PUPDR6 ((uint32_t)0x00003000)
MartinJohnson 0:c65854d98061 6861 #define GPIO_PUPDR_PUPDR6_0 ((uint32_t)0x00001000)
MartinJohnson 0:c65854d98061 6862 #define GPIO_PUPDR_PUPDR6_1 ((uint32_t)0x00002000)
MartinJohnson 0:c65854d98061 6863 #define GPIO_PUPDR_PUPDR7 ((uint32_t)0x0000C000)
MartinJohnson 0:c65854d98061 6864 #define GPIO_PUPDR_PUPDR7_0 ((uint32_t)0x00004000)
MartinJohnson 0:c65854d98061 6865 #define GPIO_PUPDR_PUPDR7_1 ((uint32_t)0x00008000)
MartinJohnson 0:c65854d98061 6866 #define GPIO_PUPDR_PUPDR8 ((uint32_t)0x00030000)
MartinJohnson 0:c65854d98061 6867 #define GPIO_PUPDR_PUPDR8_0 ((uint32_t)0x00010000)
MartinJohnson 0:c65854d98061 6868 #define GPIO_PUPDR_PUPDR8_1 ((uint32_t)0x00020000)
MartinJohnson 0:c65854d98061 6869 #define GPIO_PUPDR_PUPDR9 ((uint32_t)0x000C0000)
MartinJohnson 0:c65854d98061 6870 #define GPIO_PUPDR_PUPDR9_0 ((uint32_t)0x00040000)
MartinJohnson 0:c65854d98061 6871 #define GPIO_PUPDR_PUPDR9_1 ((uint32_t)0x00080000)
MartinJohnson 0:c65854d98061 6872 #define GPIO_PUPDR_PUPDR10 ((uint32_t)0x00300000)
MartinJohnson 0:c65854d98061 6873 #define GPIO_PUPDR_PUPDR10_0 ((uint32_t)0x00100000)
MartinJohnson 0:c65854d98061 6874 #define GPIO_PUPDR_PUPDR10_1 ((uint32_t)0x00200000)
MartinJohnson 0:c65854d98061 6875 #define GPIO_PUPDR_PUPDR11 ((uint32_t)0x00C00000)
MartinJohnson 0:c65854d98061 6876 #define GPIO_PUPDR_PUPDR11_0 ((uint32_t)0x00400000)
MartinJohnson 0:c65854d98061 6877 #define GPIO_PUPDR_PUPDR11_1 ((uint32_t)0x00800000)
MartinJohnson 0:c65854d98061 6878 #define GPIO_PUPDR_PUPDR12 ((uint32_t)0x03000000)
MartinJohnson 0:c65854d98061 6879 #define GPIO_PUPDR_PUPDR12_0 ((uint32_t)0x01000000)
MartinJohnson 0:c65854d98061 6880 #define GPIO_PUPDR_PUPDR12_1 ((uint32_t)0x02000000)
MartinJohnson 0:c65854d98061 6881 #define GPIO_PUPDR_PUPDR13 ((uint32_t)0x0C000000)
MartinJohnson 0:c65854d98061 6882 #define GPIO_PUPDR_PUPDR13_0 ((uint32_t)0x04000000)
MartinJohnson 0:c65854d98061 6883 #define GPIO_PUPDR_PUPDR13_1 ((uint32_t)0x08000000)
MartinJohnson 0:c65854d98061 6884 #define GPIO_PUPDR_PUPDR14 ((uint32_t)0x30000000)
MartinJohnson 0:c65854d98061 6885 #define GPIO_PUPDR_PUPDR14_0 ((uint32_t)0x10000000)
MartinJohnson 0:c65854d98061 6886 #define GPIO_PUPDR_PUPDR14_1 ((uint32_t)0x20000000)
MartinJohnson 0:c65854d98061 6887 #define GPIO_PUPDR_PUPDR15 ((uint32_t)0xC0000000)
MartinJohnson 0:c65854d98061 6888 #define GPIO_PUPDR_PUPDR15_0 ((uint32_t)0x40000000)
MartinJohnson 0:c65854d98061 6889 #define GPIO_PUPDR_PUPDR15_1 ((uint32_t)0x80000000)
MartinJohnson 0:c65854d98061 6890
MartinJohnson 0:c65854d98061 6891 /******************* Bit definition for GPIO_IDR register *******************/
MartinJohnson 0:c65854d98061 6892 #define GPIO_IDR_0 ((uint32_t)0x00000001)
MartinJohnson 0:c65854d98061 6893 #define GPIO_IDR_1 ((uint32_t)0x00000002)
MartinJohnson 0:c65854d98061 6894 #define GPIO_IDR_2 ((uint32_t)0x00000004)
MartinJohnson 0:c65854d98061 6895 #define GPIO_IDR_3 ((uint32_t)0x00000008)
MartinJohnson 0:c65854d98061 6896 #define GPIO_IDR_4 ((uint32_t)0x00000010)
MartinJohnson 0:c65854d98061 6897 #define GPIO_IDR_5 ((uint32_t)0x00000020)
MartinJohnson 0:c65854d98061 6898 #define GPIO_IDR_6 ((uint32_t)0x00000040)
MartinJohnson 0:c65854d98061 6899 #define GPIO_IDR_7 ((uint32_t)0x00000080)
MartinJohnson 0:c65854d98061 6900 #define GPIO_IDR_8 ((uint32_t)0x00000100)
MartinJohnson 0:c65854d98061 6901 #define GPIO_IDR_9 ((uint32_t)0x00000200)
MartinJohnson 0:c65854d98061 6902 #define GPIO_IDR_10 ((uint32_t)0x00000400)
MartinJohnson 0:c65854d98061 6903 #define GPIO_IDR_11 ((uint32_t)0x00000800)
MartinJohnson 0:c65854d98061 6904 #define GPIO_IDR_12 ((uint32_t)0x00001000)
MartinJohnson 0:c65854d98061 6905 #define GPIO_IDR_13 ((uint32_t)0x00002000)
MartinJohnson 0:c65854d98061 6906 #define GPIO_IDR_14 ((uint32_t)0x00004000)
MartinJohnson 0:c65854d98061 6907 #define GPIO_IDR_15 ((uint32_t)0x00008000)
MartinJohnson 0:c65854d98061 6908
MartinJohnson 0:c65854d98061 6909 /****************** Bit definition for GPIO_ODR register ********************/
MartinJohnson 0:c65854d98061 6910 #define GPIO_ODR_0 ((uint32_t)0x00000001)
MartinJohnson 0:c65854d98061 6911 #define GPIO_ODR_1 ((uint32_t)0x00000002)
MartinJohnson 0:c65854d98061 6912 #define GPIO_ODR_2 ((uint32_t)0x00000004)
MartinJohnson 0:c65854d98061 6913 #define GPIO_ODR_3 ((uint32_t)0x00000008)
MartinJohnson 0:c65854d98061 6914 #define GPIO_ODR_4 ((uint32_t)0x00000010)
MartinJohnson 0:c65854d98061 6915 #define GPIO_ODR_5 ((uint32_t)0x00000020)
MartinJohnson 0:c65854d98061 6916 #define GPIO_ODR_6 ((uint32_t)0x00000040)
MartinJohnson 0:c65854d98061 6917 #define GPIO_ODR_7 ((uint32_t)0x00000080)
MartinJohnson 0:c65854d98061 6918 #define GPIO_ODR_8 ((uint32_t)0x00000100)
MartinJohnson 0:c65854d98061 6919 #define GPIO_ODR_9 ((uint32_t)0x00000200)
MartinJohnson 0:c65854d98061 6920 #define GPIO_ODR_10 ((uint32_t)0x00000400)
MartinJohnson 0:c65854d98061 6921 #define GPIO_ODR_11 ((uint32_t)0x00000800)
MartinJohnson 0:c65854d98061 6922 #define GPIO_ODR_12 ((uint32_t)0x00001000)
MartinJohnson 0:c65854d98061 6923 #define GPIO_ODR_13 ((uint32_t)0x00002000)
MartinJohnson 0:c65854d98061 6924 #define GPIO_ODR_14 ((uint32_t)0x00004000)
MartinJohnson 0:c65854d98061 6925 #define GPIO_ODR_15 ((uint32_t)0x00008000)
MartinJohnson 0:c65854d98061 6926
MartinJohnson 0:c65854d98061 6927 /****************** Bit definition for GPIO_BSRR register ********************/
MartinJohnson 0:c65854d98061 6928 #define GPIO_BSRR_BS_0 ((uint32_t)0x00000001)
MartinJohnson 0:c65854d98061 6929 #define GPIO_BSRR_BS_1 ((uint32_t)0x00000002)
MartinJohnson 0:c65854d98061 6930 #define GPIO_BSRR_BS_2 ((uint32_t)0x00000004)
MartinJohnson 0:c65854d98061 6931 #define GPIO_BSRR_BS_3 ((uint32_t)0x00000008)
MartinJohnson 0:c65854d98061 6932 #define GPIO_BSRR_BS_4 ((uint32_t)0x00000010)
MartinJohnson 0:c65854d98061 6933 #define GPIO_BSRR_BS_5 ((uint32_t)0x00000020)
MartinJohnson 0:c65854d98061 6934 #define GPIO_BSRR_BS_6 ((uint32_t)0x00000040)
MartinJohnson 0:c65854d98061 6935 #define GPIO_BSRR_BS_7 ((uint32_t)0x00000080)
MartinJohnson 0:c65854d98061 6936 #define GPIO_BSRR_BS_8 ((uint32_t)0x00000100)
MartinJohnson 0:c65854d98061 6937 #define GPIO_BSRR_BS_9 ((uint32_t)0x00000200)
MartinJohnson 0:c65854d98061 6938 #define GPIO_BSRR_BS_10 ((uint32_t)0x00000400)
MartinJohnson 0:c65854d98061 6939 #define GPIO_BSRR_BS_11 ((uint32_t)0x00000800)
MartinJohnson 0:c65854d98061 6940 #define GPIO_BSRR_BS_12 ((uint32_t)0x00001000)
MartinJohnson 0:c65854d98061 6941 #define GPIO_BSRR_BS_13 ((uint32_t)0x00002000)
MartinJohnson 0:c65854d98061 6942 #define GPIO_BSRR_BS_14 ((uint32_t)0x00004000)
MartinJohnson 0:c65854d98061 6943 #define GPIO_BSRR_BS_15 ((uint32_t)0x00008000)
MartinJohnson 0:c65854d98061 6944 #define GPIO_BSRR_BR_0 ((uint32_t)0x00010000)
MartinJohnson 0:c65854d98061 6945 #define GPIO_BSRR_BR_1 ((uint32_t)0x00020000)
MartinJohnson 0:c65854d98061 6946 #define GPIO_BSRR_BR_2 ((uint32_t)0x00040000)
MartinJohnson 0:c65854d98061 6947 #define GPIO_BSRR_BR_3 ((uint32_t)0x00080000)
MartinJohnson 0:c65854d98061 6948 #define GPIO_BSRR_BR_4 ((uint32_t)0x00100000)
MartinJohnson 0:c65854d98061 6949 #define GPIO_BSRR_BR_5 ((uint32_t)0x00200000)
MartinJohnson 0:c65854d98061 6950 #define GPIO_BSRR_BR_6 ((uint32_t)0x00400000)
MartinJohnson 0:c65854d98061 6951 #define GPIO_BSRR_BR_7 ((uint32_t)0x00800000)
MartinJohnson 0:c65854d98061 6952 #define GPIO_BSRR_BR_8 ((uint32_t)0x01000000)
MartinJohnson 0:c65854d98061 6953 #define GPIO_BSRR_BR_9 ((uint32_t)0x02000000)
MartinJohnson 0:c65854d98061 6954 #define GPIO_BSRR_BR_10 ((uint32_t)0x04000000)
MartinJohnson 0:c65854d98061 6955 #define GPIO_BSRR_BR_11 ((uint32_t)0x08000000)
MartinJohnson 0:c65854d98061 6956 #define GPIO_BSRR_BR_12 ((uint32_t)0x10000000)
MartinJohnson 0:c65854d98061 6957 #define GPIO_BSRR_BR_13 ((uint32_t)0x20000000)
MartinJohnson 0:c65854d98061 6958 #define GPIO_BSRR_BR_14 ((uint32_t)0x40000000)
MartinJohnson 0:c65854d98061 6959 #define GPIO_BSRR_BR_15 ((uint32_t)0x80000000)
MartinJohnson 0:c65854d98061 6960
MartinJohnson 0:c65854d98061 6961 /****************** Bit definition for GPIO_LCKR register ********************/
MartinJohnson 0:c65854d98061 6962 #define GPIO_LCKR_LCK0 ((uint32_t)0x00000001)
MartinJohnson 0:c65854d98061 6963 #define GPIO_LCKR_LCK1 ((uint32_t)0x00000002)
MartinJohnson 0:c65854d98061 6964 #define GPIO_LCKR_LCK2 ((uint32_t)0x00000004)
MartinJohnson 0:c65854d98061 6965 #define GPIO_LCKR_LCK3 ((uint32_t)0x00000008)
MartinJohnson 0:c65854d98061 6966 #define GPIO_LCKR_LCK4 ((uint32_t)0x00000010)
MartinJohnson 0:c65854d98061 6967 #define GPIO_LCKR_LCK5 ((uint32_t)0x00000020)
MartinJohnson 0:c65854d98061 6968 #define GPIO_LCKR_LCK6 ((uint32_t)0x00000040)
MartinJohnson 0:c65854d98061 6969 #define GPIO_LCKR_LCK7 ((uint32_t)0x00000080)
MartinJohnson 0:c65854d98061 6970 #define GPIO_LCKR_LCK8 ((uint32_t)0x00000100)
MartinJohnson 0:c65854d98061 6971 #define GPIO_LCKR_LCK9 ((uint32_t)0x00000200)
MartinJohnson 0:c65854d98061 6972 #define GPIO_LCKR_LCK10 ((uint32_t)0x00000400)
MartinJohnson 0:c65854d98061 6973 #define GPIO_LCKR_LCK11 ((uint32_t)0x00000800)
MartinJohnson 0:c65854d98061 6974 #define GPIO_LCKR_LCK12 ((uint32_t)0x00001000)
MartinJohnson 0:c65854d98061 6975 #define GPIO_LCKR_LCK13 ((uint32_t)0x00002000)
MartinJohnson 0:c65854d98061 6976 #define GPIO_LCKR_LCK14 ((uint32_t)0x00004000)
MartinJohnson 0:c65854d98061 6977 #define GPIO_LCKR_LCK15 ((uint32_t)0x00008000)
MartinJohnson 0:c65854d98061 6978 #define GPIO_LCKR_LCKK ((uint32_t)0x00010000)
MartinJohnson 0:c65854d98061 6979
MartinJohnson 0:c65854d98061 6980 /****************** Bit definition for GPIO_AFRL register ********************/
MartinJohnson 0:c65854d98061 6981 #define GPIO_AFRL_AFRL0 ((uint32_t)0x0000000F)
MartinJohnson 0:c65854d98061 6982 #define GPIO_AFRL_AFRL1 ((uint32_t)0x000000F0)
MartinJohnson 0:c65854d98061 6983 #define GPIO_AFRL_AFRL2 ((uint32_t)0x00000F00)
MartinJohnson 0:c65854d98061 6984 #define GPIO_AFRL_AFRL3 ((uint32_t)0x0000F000)
MartinJohnson 0:c65854d98061 6985 #define GPIO_AFRL_AFRL4 ((uint32_t)0x000F0000)
MartinJohnson 0:c65854d98061 6986 #define GPIO_AFRL_AFRL5 ((uint32_t)0x00F00000)
MartinJohnson 0:c65854d98061 6987 #define GPIO_AFRL_AFRL6 ((uint32_t)0x0F000000)
MartinJohnson 0:c65854d98061 6988 #define GPIO_AFRL_AFRL7 ((uint32_t)0xF0000000)
MartinJohnson 0:c65854d98061 6989
MartinJohnson 0:c65854d98061 6990 /****************** Bit definition for GPIO_AFRH register ********************/
MartinJohnson 0:c65854d98061 6991 #define GPIO_AFRH_AFRH0 ((uint32_t)0x0000000F)
MartinJohnson 0:c65854d98061 6992 #define GPIO_AFRH_AFRH1 ((uint32_t)0x000000F0)
MartinJohnson 0:c65854d98061 6993 #define GPIO_AFRH_AFRH2 ((uint32_t)0x00000F00)
MartinJohnson 0:c65854d98061 6994 #define GPIO_AFRH_AFRH3 ((uint32_t)0x0000F000)
MartinJohnson 0:c65854d98061 6995 #define GPIO_AFRH_AFRH4 ((uint32_t)0x000F0000)
MartinJohnson 0:c65854d98061 6996 #define GPIO_AFRH_AFRH5 ((uint32_t)0x00F00000)
MartinJohnson 0:c65854d98061 6997 #define GPIO_AFRH_AFRH6 ((uint32_t)0x0F000000)
MartinJohnson 0:c65854d98061 6998 #define GPIO_AFRH_AFRH7 ((uint32_t)0xF0000000)
MartinJohnson 0:c65854d98061 6999
MartinJohnson 0:c65854d98061 7000 /****************** Bit definition for GPIO_BRR register *********************/
MartinJohnson 0:c65854d98061 7001 #define GPIO_BRR_BR_0 ((uint32_t)0x00000001)
MartinJohnson 0:c65854d98061 7002 #define GPIO_BRR_BR_1 ((uint32_t)0x00000002)
MartinJohnson 0:c65854d98061 7003 #define GPIO_BRR_BR_2 ((uint32_t)0x00000004)
MartinJohnson 0:c65854d98061 7004 #define GPIO_BRR_BR_3 ((uint32_t)0x00000008)
MartinJohnson 0:c65854d98061 7005 #define GPIO_BRR_BR_4 ((uint32_t)0x00000010)
MartinJohnson 0:c65854d98061 7006 #define GPIO_BRR_BR_5 ((uint32_t)0x00000020)
MartinJohnson 0:c65854d98061 7007 #define GPIO_BRR_BR_6 ((uint32_t)0x00000040)
MartinJohnson 0:c65854d98061 7008 #define GPIO_BRR_BR_7 ((uint32_t)0x00000080)
MartinJohnson 0:c65854d98061 7009 #define GPIO_BRR_BR_8 ((uint32_t)0x00000100)
MartinJohnson 0:c65854d98061 7010 #define GPIO_BRR_BR_9 ((uint32_t)0x00000200)
MartinJohnson 0:c65854d98061 7011 #define GPIO_BRR_BR_10 ((uint32_t)0x00000400)
MartinJohnson 0:c65854d98061 7012 #define GPIO_BRR_BR_11 ((uint32_t)0x00000800)
MartinJohnson 0:c65854d98061 7013 #define GPIO_BRR_BR_12 ((uint32_t)0x00001000)
MartinJohnson 0:c65854d98061 7014 #define GPIO_BRR_BR_13 ((uint32_t)0x00002000)
MartinJohnson 0:c65854d98061 7015 #define GPIO_BRR_BR_14 ((uint32_t)0x00004000)
MartinJohnson 0:c65854d98061 7016 #define GPIO_BRR_BR_15 ((uint32_t)0x00008000)
MartinJohnson 0:c65854d98061 7017
MartinJohnson 0:c65854d98061 7018 /******************************************************************************/
MartinJohnson 0:c65854d98061 7019 /* */
MartinJohnson 0:c65854d98061 7020 /* Inter-integrated Circuit Interface (I2C) */
MartinJohnson 0:c65854d98061 7021 /* */
MartinJohnson 0:c65854d98061 7022 /******************************************************************************/
MartinJohnson 0:c65854d98061 7023 /******************* Bit definition for I2C_CR1 register *******************/
MartinJohnson 0:c65854d98061 7024 #define I2C_CR1_PE ((uint32_t)0x00000001) /*!< Peripheral enable */
MartinJohnson 0:c65854d98061 7025 #define I2C_CR1_TXIE ((uint32_t)0x00000002) /*!< TX interrupt enable */
MartinJohnson 0:c65854d98061 7026 #define I2C_CR1_RXIE ((uint32_t)0x00000004) /*!< RX interrupt enable */
MartinJohnson 0:c65854d98061 7027 #define I2C_CR1_ADDRIE ((uint32_t)0x00000008) /*!< Address match interrupt enable */
MartinJohnson 0:c65854d98061 7028 #define I2C_CR1_NACKIE ((uint32_t)0x00000010) /*!< NACK received interrupt enable */
MartinJohnson 0:c65854d98061 7029 #define I2C_CR1_STOPIE ((uint32_t)0x00000020) /*!< STOP detection interrupt enable */
MartinJohnson 0:c65854d98061 7030 #define I2C_CR1_TCIE ((uint32_t)0x00000040) /*!< Transfer complete interrupt enable */
MartinJohnson 0:c65854d98061 7031 #define I2C_CR1_ERRIE ((uint32_t)0x00000080) /*!< Errors interrupt enable */
MartinJohnson 0:c65854d98061 7032 #define I2C_CR1_DFN ((uint32_t)0x00000F00) /*!< Digital noise filter */
MartinJohnson 0:c65854d98061 7033 #define I2C_CR1_ANFOFF ((uint32_t)0x00001000) /*!< Analog noise filter OFF */
MartinJohnson 0:c65854d98061 7034 #define I2C_CR1_SWRST ((uint32_t)0x00002000) /*!< Software reset */
MartinJohnson 0:c65854d98061 7035 #define I2C_CR1_TXDMAEN ((uint32_t)0x00004000) /*!< DMA transmission requests enable */
MartinJohnson 0:c65854d98061 7036 #define I2C_CR1_RXDMAEN ((uint32_t)0x00008000) /*!< DMA reception requests enable */
MartinJohnson 0:c65854d98061 7037 #define I2C_CR1_SBC ((uint32_t)0x00010000) /*!< Slave byte control */
MartinJohnson 0:c65854d98061 7038 #define I2C_CR1_NOSTRETCH ((uint32_t)0x00020000) /*!< Clock stretching disable */
MartinJohnson 0:c65854d98061 7039 #define I2C_CR1_WUPEN ((uint32_t)0x00040000) /*!< Wakeup from STOP enable */
MartinJohnson 0:c65854d98061 7040 #define I2C_CR1_GCEN ((uint32_t)0x00080000) /*!< General call enable */
MartinJohnson 0:c65854d98061 7041 #define I2C_CR1_SMBHEN ((uint32_t)0x00100000) /*!< SMBus host address enable */
MartinJohnson 0:c65854d98061 7042 #define I2C_CR1_SMBDEN ((uint32_t)0x00200000) /*!< SMBus device default address enable */
MartinJohnson 0:c65854d98061 7043 #define I2C_CR1_ALERTEN ((uint32_t)0x00400000) /*!< SMBus alert enable */
MartinJohnson 0:c65854d98061 7044 #define I2C_CR1_PECEN ((uint32_t)0x00800000) /*!< PEC enable */
MartinJohnson 0:c65854d98061 7045
MartinJohnson 0:c65854d98061 7046 /****************** Bit definition for I2C_CR2 register ********************/
MartinJohnson 0:c65854d98061 7047 #define I2C_CR2_SADD ((uint32_t)0x000003FF) /*!< Slave address (master mode) */
MartinJohnson 0:c65854d98061 7048 #define I2C_CR2_RD_WRN ((uint32_t)0x00000400) /*!< Transfer direction (master mode) */
MartinJohnson 0:c65854d98061 7049 #define I2C_CR2_ADD10 ((uint32_t)0x00000800) /*!< 10-bit addressing mode (master mode) */
MartinJohnson 0:c65854d98061 7050 #define I2C_CR2_HEAD10R ((uint32_t)0x00001000) /*!< 10-bit address header only read direction (master mode) */
MartinJohnson 0:c65854d98061 7051 #define I2C_CR2_START ((uint32_t)0x00002000) /*!< START generation */
MartinJohnson 0:c65854d98061 7052 #define I2C_CR2_STOP ((uint32_t)0x00004000) /*!< STOP generation (master mode) */
MartinJohnson 0:c65854d98061 7053 #define I2C_CR2_NACK ((uint32_t)0x00008000) /*!< NACK generation (slave mode) */
MartinJohnson 0:c65854d98061 7054 #define I2C_CR2_NBYTES ((uint32_t)0x00FF0000) /*!< Number of bytes */
MartinJohnson 0:c65854d98061 7055 #define I2C_CR2_RELOAD ((uint32_t)0x01000000) /*!< NBYTES reload mode */
MartinJohnson 0:c65854d98061 7056 #define I2C_CR2_AUTOEND ((uint32_t)0x02000000) /*!< Automatic end mode (master mode) */
MartinJohnson 0:c65854d98061 7057 #define I2C_CR2_PECBYTE ((uint32_t)0x04000000) /*!< Packet error checking byte */
MartinJohnson 0:c65854d98061 7058
MartinJohnson 0:c65854d98061 7059 /******************* Bit definition for I2C_OAR1 register ******************/
MartinJohnson 0:c65854d98061 7060 #define I2C_OAR1_OA1 ((uint32_t)0x000003FF) /*!< Interface own address 1 */
MartinJohnson 0:c65854d98061 7061 #define I2C_OAR1_OA1MODE ((uint32_t)0x00000400) /*!< Own address 1 10-bit mode */
MartinJohnson 0:c65854d98061 7062 #define I2C_OAR1_OA1EN ((uint32_t)0x00008000) /*!< Own address 1 enable */
MartinJohnson 0:c65854d98061 7063
MartinJohnson 0:c65854d98061 7064 /******************* Bit definition for I2C_OAR2 register *******************/
MartinJohnson 0:c65854d98061 7065 #define I2C_OAR2_OA2 ((uint32_t)0x000000FE) /*!< Interface own address 2 */
MartinJohnson 0:c65854d98061 7066 #define I2C_OAR2_OA2MSK ((uint32_t)0x00000700) /*!< Own address 2 masks */
MartinJohnson 0:c65854d98061 7067 #define I2C_OAR2_OA2EN ((uint32_t)0x00008000) /*!< Own address 2 enable */
MartinJohnson 0:c65854d98061 7068
MartinJohnson 0:c65854d98061 7069 /******************* Bit definition for I2C_TIMINGR register *****************/
MartinJohnson 0:c65854d98061 7070 #define I2C_TIMINGR_SCLL ((uint32_t)0x000000FF) /*!< SCL low period (master mode) */
MartinJohnson 0:c65854d98061 7071 #define I2C_TIMINGR_SCLH ((uint32_t)0x0000FF00) /*!< SCL high period (master mode) */
MartinJohnson 0:c65854d98061 7072 #define I2C_TIMINGR_SDADEL ((uint32_t)0x000F0000) /*!< Data hold time */
MartinJohnson 0:c65854d98061 7073 #define I2C_TIMINGR_SCLDEL ((uint32_t)0x00F00000) /*!< Data setup time */
MartinJohnson 0:c65854d98061 7074 #define I2C_TIMINGR_PRESC ((uint32_t)0xF0000000) /*!< Timings prescaler */
MartinJohnson 0:c65854d98061 7075
MartinJohnson 0:c65854d98061 7076 /******************* Bit definition for I2C_TIMEOUTR register *****************/
MartinJohnson 0:c65854d98061 7077 #define I2C_TIMEOUTR_TIMEOUTA ((uint32_t)0x00000FFF) /*!< Bus timeout A */
MartinJohnson 0:c65854d98061 7078 #define I2C_TIMEOUTR_TIDLE ((uint32_t)0x00001000) /*!< Idle clock timeout detection */
MartinJohnson 0:c65854d98061 7079 #define I2C_TIMEOUTR_TIMOUTEN ((uint32_t)0x00008000) /*!< Clock timeout enable */
MartinJohnson 0:c65854d98061 7080 #define I2C_TIMEOUTR_TIMEOUTB ((uint32_t)0x0FFF0000) /*!< Bus timeout B*/
MartinJohnson 0:c65854d98061 7081 #define I2C_TIMEOUTR_TEXTEN ((uint32_t)0x80000000) /*!< Extended clock timeout enable */
MartinJohnson 0:c65854d98061 7082
MartinJohnson 0:c65854d98061 7083 /****************** Bit definition for I2C_ISR register *********************/
MartinJohnson 0:c65854d98061 7084 #define I2C_ISR_TXE ((uint32_t)0x00000001) /*!< Transmit data register empty */
MartinJohnson 0:c65854d98061 7085 #define I2C_ISR_TXIS ((uint32_t)0x00000002) /*!< Transmit interrupt status */
MartinJohnson 0:c65854d98061 7086 #define I2C_ISR_RXNE ((uint32_t)0x00000004) /*!< Receive data register not empty */
MartinJohnson 0:c65854d98061 7087 #define I2C_ISR_ADDR ((uint32_t)0x00000008) /*!< Address matched (slave mode)*/
MartinJohnson 0:c65854d98061 7088 #define I2C_ISR_NACKF ((uint32_t)0x00000010) /*!< NACK received flag */
MartinJohnson 0:c65854d98061 7089 #define I2C_ISR_STOPF ((uint32_t)0x00000020) /*!< STOP detection flag */
MartinJohnson 0:c65854d98061 7090 #define I2C_ISR_TC ((uint32_t)0x00000040) /*!< Transfer complete (master mode) */
MartinJohnson 0:c65854d98061 7091 #define I2C_ISR_TCR ((uint32_t)0x00000080) /*!< Transfer complete reload */
MartinJohnson 0:c65854d98061 7092 #define I2C_ISR_BERR ((uint32_t)0x00000100) /*!< Bus error */
MartinJohnson 0:c65854d98061 7093 #define I2C_ISR_ARLO ((uint32_t)0x00000200) /*!< Arbitration lost */
MartinJohnson 0:c65854d98061 7094 #define I2C_ISR_OVR ((uint32_t)0x00000400) /*!< Overrun/Underrun */
MartinJohnson 0:c65854d98061 7095 #define I2C_ISR_PECERR ((uint32_t)0x00000800) /*!< PEC error in reception */
MartinJohnson 0:c65854d98061 7096 #define I2C_ISR_TIMEOUT ((uint32_t)0x00001000) /*!< Timeout or Tlow detection flag */
MartinJohnson 0:c65854d98061 7097 #define I2C_ISR_ALERT ((uint32_t)0x00002000) /*!< SMBus alert */
MartinJohnson 0:c65854d98061 7098 #define I2C_ISR_BUSY ((uint32_t)0x00008000) /*!< Bus busy */
MartinJohnson 0:c65854d98061 7099 #define I2C_ISR_DIR ((uint32_t)0x00010000) /*!< Transfer direction (slave mode) */
MartinJohnson 0:c65854d98061 7100 #define I2C_ISR_ADDCODE ((uint32_t)0x00FE0000) /*!< Address match code (slave mode) */
MartinJohnson 0:c65854d98061 7101
MartinJohnson 0:c65854d98061 7102 /****************** Bit definition for I2C_ICR register *********************/
MartinJohnson 0:c65854d98061 7103 #define I2C_ICR_ADDRCF ((uint32_t)0x00000008) /*!< Address matched clear flag */
MartinJohnson 0:c65854d98061 7104 #define I2C_ICR_NACKCF ((uint32_t)0x00000010) /*!< NACK clear flag */
MartinJohnson 0:c65854d98061 7105 #define I2C_ICR_STOPCF ((uint32_t)0x00000020) /*!< STOP detection clear flag */
MartinJohnson 0:c65854d98061 7106 #define I2C_ICR_BERRCF ((uint32_t)0x00000100) /*!< Bus error clear flag */
MartinJohnson 0:c65854d98061 7107 #define I2C_ICR_ARLOCF ((uint32_t)0x00000200) /*!< Arbitration lost clear flag */
MartinJohnson 0:c65854d98061 7108 #define I2C_ICR_OVRCF ((uint32_t)0x00000400) /*!< Overrun/Underrun clear flag */
MartinJohnson 0:c65854d98061 7109 #define I2C_ICR_PECCF ((uint32_t)0x00000800) /*!< PAC error clear flag */
MartinJohnson 0:c65854d98061 7110 #define I2C_ICR_TIMOUTCF ((uint32_t)0x00001000) /*!< Timeout clear flag */
MartinJohnson 0:c65854d98061 7111 #define I2C_ICR_ALERTCF ((uint32_t)0x00002000) /*!< Alert clear flag */
MartinJohnson 0:c65854d98061 7112
MartinJohnson 0:c65854d98061 7113 /****************** Bit definition for I2C_PECR register ********************/
MartinJohnson 0:c65854d98061 7114 #define I2C_PECR_PEC ((uint32_t)0x000000FF) /*!< PEC register */
MartinJohnson 0:c65854d98061 7115
MartinJohnson 0:c65854d98061 7116 /****************** Bit definition for I2C_RXDR register *********************/
MartinJohnson 0:c65854d98061 7117 #define I2C_RXDR_RXDATA ((uint32_t)0x000000FF) /*!< 8-bit receive data */
MartinJohnson 0:c65854d98061 7118
MartinJohnson 0:c65854d98061 7119 /****************** Bit definition for I2C_TXDR register *********************/
MartinJohnson 0:c65854d98061 7120 #define I2C_TXDR_TXDATA ((uint32_t)0x000000FF) /*!< 8-bit transmit data */
MartinJohnson 0:c65854d98061 7121
MartinJohnson 0:c65854d98061 7122
MartinJohnson 0:c65854d98061 7123 /******************************************************************************/
MartinJohnson 0:c65854d98061 7124 /* */
MartinJohnson 0:c65854d98061 7125 /* Independent WATCHDOG (IWDG) */
MartinJohnson 0:c65854d98061 7126 /* */
MartinJohnson 0:c65854d98061 7127 /******************************************************************************/
MartinJohnson 0:c65854d98061 7128 /******************* Bit definition for IWDG_KR register ********************/
MartinJohnson 0:c65854d98061 7129 #define IWDG_KR_KEY ((uint16_t)0xFFFF) /*!< Key value (write only, read 0000h) */
MartinJohnson 0:c65854d98061 7130
MartinJohnson 0:c65854d98061 7131 /******************* Bit definition for IWDG_PR register ********************/
MartinJohnson 0:c65854d98061 7132 #define IWDG_PR_PR ((uint8_t)0x07) /*!< PR[2:0] (Prescaler divider) */
MartinJohnson 0:c65854d98061 7133 #define IWDG_PR_PR_0 ((uint8_t)0x01) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 7134 #define IWDG_PR_PR_1 ((uint8_t)0x02) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 7135 #define IWDG_PR_PR_2 ((uint8_t)0x04) /*!< Bit 2 */
MartinJohnson 0:c65854d98061 7136
MartinJohnson 0:c65854d98061 7137 /******************* Bit definition for IWDG_RLR register *******************/
MartinJohnson 0:c65854d98061 7138 #define IWDG_RLR_RL ((uint16_t)0x0FFF) /*!< Watchdog counter reload value */
MartinJohnson 0:c65854d98061 7139
MartinJohnson 0:c65854d98061 7140 /******************* Bit definition for IWDG_SR register ********************/
MartinJohnson 0:c65854d98061 7141 #define IWDG_SR_PVU ((uint8_t)0x01) /*!< Watchdog prescaler value update */
MartinJohnson 0:c65854d98061 7142 #define IWDG_SR_RVU ((uint8_t)0x02) /*!< Watchdog counter reload value update */
MartinJohnson 0:c65854d98061 7143 #define IWDG_SR_WVU ((uint8_t)0x04) /*!< Watchdog counter window value update */
MartinJohnson 0:c65854d98061 7144
MartinJohnson 0:c65854d98061 7145 /******************* Bit definition for IWDG_KR register ********************/
MartinJohnson 0:c65854d98061 7146 #define IWDG_WINR_WIN ((uint16_t)0x0FFF) /*!< Watchdog counter window value */
MartinJohnson 0:c65854d98061 7147
MartinJohnson 0:c65854d98061 7148 /******************************************************************************/
MartinJohnson 0:c65854d98061 7149 /* */
MartinJohnson 0:c65854d98061 7150 /* Power Control */
MartinJohnson 0:c65854d98061 7151 /* */
MartinJohnson 0:c65854d98061 7152 /******************************************************************************/
MartinJohnson 0:c65854d98061 7153 /******************** Bit definition for PWR_CR register ********************/
MartinJohnson 0:c65854d98061 7154 #define PWR_CR_LPSDSR ((uint16_t)0x0001) /*!< Low-power deepsleep/sleep/low power run */
MartinJohnson 0:c65854d98061 7155 #define PWR_CR_PDDS ((uint16_t)0x0002) /*!< Power Down Deepsleep */
MartinJohnson 0:c65854d98061 7156 #define PWR_CR_CWUF ((uint16_t)0x0004) /*!< Clear Wakeup Flag */
MartinJohnson 0:c65854d98061 7157 #define PWR_CR_CSBF ((uint16_t)0x0008) /*!< Clear Standby Flag */
MartinJohnson 0:c65854d98061 7158 #define PWR_CR_PVDE ((uint16_t)0x0010) /*!< Power Voltage Detector Enable */
MartinJohnson 0:c65854d98061 7159
MartinJohnson 0:c65854d98061 7160 #define PWR_CR_PLS ((uint16_t)0x00E0) /*!< PLS[2:0] bits (PVD Level Selection) */
MartinJohnson 0:c65854d98061 7161 #define PWR_CR_PLS_0 ((uint16_t)0x0020) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 7162 #define PWR_CR_PLS_1 ((uint16_t)0x0040) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 7163 #define PWR_CR_PLS_2 ((uint16_t)0x0080) /*!< Bit 2 */
MartinJohnson 0:c65854d98061 7164
MartinJohnson 0:c65854d98061 7165 /*!< PVD level configuration */
MartinJohnson 0:c65854d98061 7166 #define PWR_CR_PLS_LEV0 ((uint16_t)0x0000) /*!< PVD level 0 */
MartinJohnson 0:c65854d98061 7167 #define PWR_CR_PLS_LEV1 ((uint16_t)0x0020) /*!< PVD level 1 */
MartinJohnson 0:c65854d98061 7168 #define PWR_CR_PLS_LEV2 ((uint16_t)0x0040) /*!< PVD level 2 */
MartinJohnson 0:c65854d98061 7169 #define PWR_CR_PLS_LEV3 ((uint16_t)0x0060) /*!< PVD level 3 */
MartinJohnson 0:c65854d98061 7170 #define PWR_CR_PLS_LEV4 ((uint16_t)0x0080) /*!< PVD level 4 */
MartinJohnson 0:c65854d98061 7171 #define PWR_CR_PLS_LEV5 ((uint16_t)0x00A0) /*!< PVD level 5 */
MartinJohnson 0:c65854d98061 7172 #define PWR_CR_PLS_LEV6 ((uint16_t)0x00C0) /*!< PVD level 6 */
MartinJohnson 0:c65854d98061 7173 #define PWR_CR_PLS_LEV7 ((uint16_t)0x00E0) /*!< PVD level 7 */
MartinJohnson 0:c65854d98061 7174
MartinJohnson 0:c65854d98061 7175 #define PWR_CR_DBP ((uint16_t)0x0100) /*!< Disable Backup Domain write protection */
MartinJohnson 0:c65854d98061 7176
MartinJohnson 0:c65854d98061 7177 /******************* Bit definition for PWR_CSR register ********************/
MartinJohnson 0:c65854d98061 7178 #define PWR_CSR_WUF ((uint16_t)0x0001) /*!< Wakeup Flag */
MartinJohnson 0:c65854d98061 7179 #define PWR_CSR_SBF ((uint16_t)0x0002) /*!< Standby Flag */
MartinJohnson 0:c65854d98061 7180 #define PWR_CSR_PVDO ((uint16_t)0x0004) /*!< PVD Output */
MartinJohnson 0:c65854d98061 7181 #define PWR_CSR_VREFINTRDYF ((uint16_t)0x0008) /*!< Internal voltage reference (VREFINT) ready flag */
MartinJohnson 0:c65854d98061 7182
MartinJohnson 0:c65854d98061 7183 #define PWR_CSR_EWUP1 ((uint16_t)0x0100) /*!< Enable WKUP pin 1 */
MartinJohnson 0:c65854d98061 7184 #define PWR_CSR_EWUP2 ((uint16_t)0x0200) /*!< Enable WKUP pin 2 */
MartinJohnson 0:c65854d98061 7185 #define PWR_CSR_EWUP3 ((uint16_t)0x0400) /*!< Enable WKUP pin 3 */
MartinJohnson 0:c65854d98061 7186
MartinJohnson 0:c65854d98061 7187 /******************************************************************************/
MartinJohnson 0:c65854d98061 7188 /* */
MartinJohnson 0:c65854d98061 7189 /* Reset and Clock Control */
MartinJohnson 0:c65854d98061 7190 /* */
MartinJohnson 0:c65854d98061 7191 /******************************************************************************/
MartinJohnson 0:c65854d98061 7192 /******************** Bit definition for RCC_CR register ********************/
MartinJohnson 0:c65854d98061 7193 #define RCC_CR_HSION ((uint32_t)0x00000001)
MartinJohnson 0:c65854d98061 7194 #define RCC_CR_HSIRDY ((uint32_t)0x00000002)
MartinJohnson 0:c65854d98061 7195
MartinJohnson 0:c65854d98061 7196 #define RCC_CR_HSITRIM ((uint32_t)0x000000F8)
MartinJohnson 0:c65854d98061 7197 #define RCC_CR_HSITRIM_0 ((uint32_t)0x00000008)/*!<Bit 0 */
MartinJohnson 0:c65854d98061 7198 #define RCC_CR_HSITRIM_1 ((uint32_t)0x00000010)/*!<Bit 1 */
MartinJohnson 0:c65854d98061 7199 #define RCC_CR_HSITRIM_2 ((uint32_t)0x00000020)/*!<Bit 2 */
MartinJohnson 0:c65854d98061 7200 #define RCC_CR_HSITRIM_3 ((uint32_t)0x00000040)/*!<Bit 3 */
MartinJohnson 0:c65854d98061 7201 #define RCC_CR_HSITRIM_4 ((uint32_t)0x00000080)/*!<Bit 4 */
MartinJohnson 0:c65854d98061 7202
MartinJohnson 0:c65854d98061 7203 #define RCC_CR_HSICAL ((uint32_t)0x0000FF00)
MartinJohnson 0:c65854d98061 7204 #define RCC_CR_HSICAL_0 ((uint32_t)0x00000100)/*!<Bit 0 */
MartinJohnson 0:c65854d98061 7205 #define RCC_CR_HSICAL_1 ((uint32_t)0x00000200)/*!<Bit 1 */
MartinJohnson 0:c65854d98061 7206 #define RCC_CR_HSICAL_2 ((uint32_t)0x00000400)/*!<Bit 2 */
MartinJohnson 0:c65854d98061 7207 #define RCC_CR_HSICAL_3 ((uint32_t)0x00000800)/*!<Bit 3 */
MartinJohnson 0:c65854d98061 7208 #define RCC_CR_HSICAL_4 ((uint32_t)0x00001000)/*!<Bit 4 */
MartinJohnson 0:c65854d98061 7209 #define RCC_CR_HSICAL_5 ((uint32_t)0x00002000)/*!<Bit 5 */
MartinJohnson 0:c65854d98061 7210 #define RCC_CR_HSICAL_6 ((uint32_t)0x00004000)/*!<Bit 6 */
MartinJohnson 0:c65854d98061 7211 #define RCC_CR_HSICAL_7 ((uint32_t)0x00008000)/*!<Bit 7 */
MartinJohnson 0:c65854d98061 7212
MartinJohnson 0:c65854d98061 7213 #define RCC_CR_HSEON ((uint32_t)0x00010000)
MartinJohnson 0:c65854d98061 7214 #define RCC_CR_HSERDY ((uint32_t)0x00020000)
MartinJohnson 0:c65854d98061 7215 #define RCC_CR_HSEBYP ((uint32_t)0x00040000)
MartinJohnson 0:c65854d98061 7216 #define RCC_CR_CSSON ((uint32_t)0x00080000)
MartinJohnson 0:c65854d98061 7217
MartinJohnson 0:c65854d98061 7218 #define RCC_CR_PLLON ((uint32_t)0x01000000)
MartinJohnson 0:c65854d98061 7219 #define RCC_CR_PLLRDY ((uint32_t)0x02000000)
MartinJohnson 0:c65854d98061 7220
MartinJohnson 0:c65854d98061 7221 /******************** Bit definition for RCC_CFGR register ******************/
MartinJohnson 0:c65854d98061 7222 /*!< SW configuration */
MartinJohnson 0:c65854d98061 7223 #define RCC_CFGR_SW ((uint32_t)0x00000003) /*!< SW[1:0] bits (System clock Switch) */
MartinJohnson 0:c65854d98061 7224 #define RCC_CFGR_SW_0 ((uint32_t)0x00000001) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 7225 #define RCC_CFGR_SW_1 ((uint32_t)0x00000002) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 7226
MartinJohnson 0:c65854d98061 7227 #define RCC_CFGR_SW_HSI ((uint32_t)0x00000000) /*!< HSI selected as system clock */
MartinJohnson 0:c65854d98061 7228 #define RCC_CFGR_SW_HSE ((uint32_t)0x00000001) /*!< HSE selected as system clock */
MartinJohnson 0:c65854d98061 7229 #define RCC_CFGR_SW_PLL ((uint32_t)0x00000002) /*!< PLL selected as system clock */
MartinJohnson 0:c65854d98061 7230
MartinJohnson 0:c65854d98061 7231 /*!< SWS configuration */
MartinJohnson 0:c65854d98061 7232 #define RCC_CFGR_SWS ((uint32_t)0x0000000C) /*!< SWS[1:0] bits (System Clock Switch Status) */
MartinJohnson 0:c65854d98061 7233 #define RCC_CFGR_SWS_0 ((uint32_t)0x00000004) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 7234 #define RCC_CFGR_SWS_1 ((uint32_t)0x00000008) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 7235
MartinJohnson 0:c65854d98061 7236 #define RCC_CFGR_SWS_HSI ((uint32_t)0x00000000) /*!< HSI oscillator used as system clock */
MartinJohnson 0:c65854d98061 7237 #define RCC_CFGR_SWS_HSE ((uint32_t)0x00000004) /*!< HSE oscillator used as system clock */
MartinJohnson 0:c65854d98061 7238 #define RCC_CFGR_SWS_PLL ((uint32_t)0x00000008) /*!< PLL used as system clock */
MartinJohnson 0:c65854d98061 7239
MartinJohnson 0:c65854d98061 7240 /*!< HPRE configuration */
MartinJohnson 0:c65854d98061 7241 #define RCC_CFGR_HPRE ((uint32_t)0x000000F0) /*!< HPRE[3:0] bits (AHB prescaler) */
MartinJohnson 0:c65854d98061 7242 #define RCC_CFGR_HPRE_0 ((uint32_t)0x00000010) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 7243 #define RCC_CFGR_HPRE_1 ((uint32_t)0x00000020) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 7244 #define RCC_CFGR_HPRE_2 ((uint32_t)0x00000040) /*!< Bit 2 */
MartinJohnson 0:c65854d98061 7245 #define RCC_CFGR_HPRE_3 ((uint32_t)0x00000080) /*!< Bit 3 */
MartinJohnson 0:c65854d98061 7246
MartinJohnson 0:c65854d98061 7247 #define RCC_CFGR_HPRE_DIV1 ((uint32_t)0x00000000) /*!< SYSCLK not divided */
MartinJohnson 0:c65854d98061 7248 #define RCC_CFGR_HPRE_DIV2 ((uint32_t)0x00000080) /*!< SYSCLK divided by 2 */
MartinJohnson 0:c65854d98061 7249 #define RCC_CFGR_HPRE_DIV4 ((uint32_t)0x00000090) /*!< SYSCLK divided by 4 */
MartinJohnson 0:c65854d98061 7250 #define RCC_CFGR_HPRE_DIV8 ((uint32_t)0x000000A0) /*!< SYSCLK divided by 8 */
MartinJohnson 0:c65854d98061 7251 #define RCC_CFGR_HPRE_DIV16 ((uint32_t)0x000000B0) /*!< SYSCLK divided by 16 */
MartinJohnson 0:c65854d98061 7252 #define RCC_CFGR_HPRE_DIV64 ((uint32_t)0x000000C0) /*!< SYSCLK divided by 64 */
MartinJohnson 0:c65854d98061 7253 #define RCC_CFGR_HPRE_DIV128 ((uint32_t)0x000000D0) /*!< SYSCLK divided by 128 */
MartinJohnson 0:c65854d98061 7254 #define RCC_CFGR_HPRE_DIV256 ((uint32_t)0x000000E0) /*!< SYSCLK divided by 256 */
MartinJohnson 0:c65854d98061 7255 #define RCC_CFGR_HPRE_DIV512 ((uint32_t)0x000000F0) /*!< SYSCLK divided by 512 */
MartinJohnson 0:c65854d98061 7256
MartinJohnson 0:c65854d98061 7257 /*!< PPRE1 configuration */
MartinJohnson 0:c65854d98061 7258 #define RCC_CFGR_PPRE1 ((uint32_t)0x00000700) /*!< PRE1[2:0] bits (APB1 prescaler) */
MartinJohnson 0:c65854d98061 7259 #define RCC_CFGR_PPRE1_0 ((uint32_t)0x00000100) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 7260 #define RCC_CFGR_PPRE1_1 ((uint32_t)0x00000200) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 7261 #define RCC_CFGR_PPRE1_2 ((uint32_t)0x00000400) /*!< Bit 2 */
MartinJohnson 0:c65854d98061 7262
MartinJohnson 0:c65854d98061 7263 #define RCC_CFGR_PPRE1_DIV1 ((uint32_t)0x00000000) /*!< HCLK not divided */
MartinJohnson 0:c65854d98061 7264 #define RCC_CFGR_PPRE1_DIV2 ((uint32_t)0x00000400) /*!< HCLK divided by 2 */
MartinJohnson 0:c65854d98061 7265 #define RCC_CFGR_PPRE1_DIV4 ((uint32_t)0x00000500) /*!< HCLK divided by 4 */
MartinJohnson 0:c65854d98061 7266 #define RCC_CFGR_PPRE1_DIV8 ((uint32_t)0x00000600) /*!< HCLK divided by 8 */
MartinJohnson 0:c65854d98061 7267 #define RCC_CFGR_PPRE1_DIV16 ((uint32_t)0x00000700) /*!< HCLK divided by 16 */
MartinJohnson 0:c65854d98061 7268
MartinJohnson 0:c65854d98061 7269 /*!< PPRE2 configuration */
MartinJohnson 0:c65854d98061 7270 #define RCC_CFGR_PPRE2 ((uint32_t)0x00003800) /*!< PRE2[2:0] bits (APB2 prescaler) */
MartinJohnson 0:c65854d98061 7271 #define RCC_CFGR_PPRE2_0 ((uint32_t)0x00000800) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 7272 #define RCC_CFGR_PPRE2_1 ((uint32_t)0x00001000) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 7273 #define RCC_CFGR_PPRE2_2 ((uint32_t)0x00002000) /*!< Bit 2 */
MartinJohnson 0:c65854d98061 7274
MartinJohnson 0:c65854d98061 7275 #define RCC_CFGR_PPRE2_DIV1 ((uint32_t)0x00000000) /*!< HCLK not divided */
MartinJohnson 0:c65854d98061 7276 #define RCC_CFGR_PPRE2_DIV2 ((uint32_t)0x00002000) /*!< HCLK divided by 2 */
MartinJohnson 0:c65854d98061 7277 #define RCC_CFGR_PPRE2_DIV4 ((uint32_t)0x00002800) /*!< HCLK divided by 4 */
MartinJohnson 0:c65854d98061 7278 #define RCC_CFGR_PPRE2_DIV8 ((uint32_t)0x00003000) /*!< HCLK divided by 8 */
MartinJohnson 0:c65854d98061 7279 #define RCC_CFGR_PPRE2_DIV16 ((uint32_t)0x00003800) /*!< HCLK divided by 16 */
MartinJohnson 0:c65854d98061 7280
MartinJohnson 0:c65854d98061 7281 #define RCC_CFGR_PLLSRC ((uint32_t)0x00010000) /*!< PLL entry clock source */
MartinJohnson 0:c65854d98061 7282
MartinJohnson 0:c65854d98061 7283 #define RCC_CFGR_PLLXTPRE ((uint32_t)0x00020000) /*!< HSE divider for PLL entry */
MartinJohnson 0:c65854d98061 7284
MartinJohnson 0:c65854d98061 7285 /*!< PLLMUL configuration */
MartinJohnson 0:c65854d98061 7286 #define RCC_CFGR_PLLMULL ((uint32_t)0x003C0000) /*!< PLLMUL[3:0] bits (PLL multiplication factor) */
MartinJohnson 0:c65854d98061 7287 #define RCC_CFGR_PLLMULL_0 ((uint32_t)0x00040000) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 7288 #define RCC_CFGR_PLLMULL_1 ((uint32_t)0x00080000) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 7289 #define RCC_CFGR_PLLMULL_2 ((uint32_t)0x00100000) /*!< Bit 2 */
MartinJohnson 0:c65854d98061 7290 #define RCC_CFGR_PLLMULL_3 ((uint32_t)0x00200000) /*!< Bit 3 */
MartinJohnson 0:c65854d98061 7291
MartinJohnson 0:c65854d98061 7292 #define RCC_CFGR_PLLSRC_HSI_Div2 ((uint32_t)0x00000000) /*!< HSI clock divided by 2 selected as PLL entry clock source */
MartinJohnson 0:c65854d98061 7293 #define RCC_CFGR_PLLSRC_HSI_PREDIV ((uint32_t)0x00008000) /*!< HSI PREDIV clock selected as PLL entry clock source
MartinJohnson 0:c65854d98061 7294 (This bit and configuration is only available for STM32F303xE devices)*/
MartinJohnson 0:c65854d98061 7295
MartinJohnson 0:c65854d98061 7296 #define RCC_CFGR_PLLSRC_PREDIV1 ((uint32_t)0x00010000) /*!< PREDIV1 clock selected as PLL entry clock source */
MartinJohnson 0:c65854d98061 7297
MartinJohnson 0:c65854d98061 7298 #define RCC_CFGR_PLLXTPRE_PREDIV1 ((uint32_t)0x00000000) /*!< PREDIV1 clock not divided for PLL entry */
MartinJohnson 0:c65854d98061 7299 #define RCC_CFGR_PLLXTPRE_PREDIV1_Div2 ((uint32_t)0x00020000) /*!< PREDIV1 clock divided by 2 for PLL entry */
MartinJohnson 0:c65854d98061 7300
MartinJohnson 0:c65854d98061 7301 #define RCC_CFGR_PLLMULL2 ((uint32_t)0x00000000) /*!< PLL input clock*2 */
MartinJohnson 0:c65854d98061 7302 #define RCC_CFGR_PLLMULL3 ((uint32_t)0x00040000) /*!< PLL input clock*3 */
MartinJohnson 0:c65854d98061 7303 #define RCC_CFGR_PLLMULL4 ((uint32_t)0x00080000) /*!< PLL input clock*4 */
MartinJohnson 0:c65854d98061 7304 #define RCC_CFGR_PLLMULL5 ((uint32_t)0x000C0000) /*!< PLL input clock*5 */
MartinJohnson 0:c65854d98061 7305 #define RCC_CFGR_PLLMULL6 ((uint32_t)0x00100000) /*!< PLL input clock*6 */
MartinJohnson 0:c65854d98061 7306 #define RCC_CFGR_PLLMULL7 ((uint32_t)0x00140000) /*!< PLL input clock*7 */
MartinJohnson 0:c65854d98061 7307 #define RCC_CFGR_PLLMULL8 ((uint32_t)0x00180000) /*!< PLL input clock*8 */
MartinJohnson 0:c65854d98061 7308 #define RCC_CFGR_PLLMULL9 ((uint32_t)0x001C0000) /*!< PLL input clock*9 */
MartinJohnson 0:c65854d98061 7309 #define RCC_CFGR_PLLMULL10 ((uint32_t)0x00200000) /*!< PLL input clock10 */
MartinJohnson 0:c65854d98061 7310 #define RCC_CFGR_PLLMULL11 ((uint32_t)0x00240000) /*!< PLL input clock*11 */
MartinJohnson 0:c65854d98061 7311 #define RCC_CFGR_PLLMULL12 ((uint32_t)0x00280000) /*!< PLL input clock*12 */
MartinJohnson 0:c65854d98061 7312 #define RCC_CFGR_PLLMULL13 ((uint32_t)0x002C0000) /*!< PLL input clock*13 */
MartinJohnson 0:c65854d98061 7313 #define RCC_CFGR_PLLMULL14 ((uint32_t)0x00300000) /*!< PLL input clock*14 */
MartinJohnson 0:c65854d98061 7314 #define RCC_CFGR_PLLMULL15 ((uint32_t)0x00340000) /*!< PLL input clock*15 */
MartinJohnson 0:c65854d98061 7315 #define RCC_CFGR_PLLMULL16 ((uint32_t)0x00380000) /*!< PLL input clock*16 */
MartinJohnson 0:c65854d98061 7316
MartinJohnson 0:c65854d98061 7317 /*!< USB configuration */
MartinJohnson 0:c65854d98061 7318 #define RCC_CFGR_USBPRE ((uint32_t)0x00400000) /*!< USB prescaler */
MartinJohnson 0:c65854d98061 7319
MartinJohnson 0:c65854d98061 7320 /*!< I2S configuration */
MartinJohnson 0:c65854d98061 7321 #define RCC_CFGR_I2SSRC ((uint32_t)0x00800000) /*!< I2S external clock source selection */
MartinJohnson 0:c65854d98061 7322
MartinJohnson 0:c65854d98061 7323 /*!< MCO configuration */
MartinJohnson 0:c65854d98061 7324 #define RCC_CFGR_MCO ((uint32_t)0x07000000) /*!< MCO[2:0] bits (Microcontroller Clock Output) */
MartinJohnson 0:c65854d98061 7325 #define RCC_CFGR_MCO_0 ((uint32_t)0x01000000) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 7326 #define RCC_CFGR_MCO_1 ((uint32_t)0x02000000) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 7327 #define RCC_CFGR_MCO_2 ((uint32_t)0x04000000) /*!< Bit 2 */
MartinJohnson 0:c65854d98061 7328
MartinJohnson 0:c65854d98061 7329 #define RCC_CFGR_MCO_NOCLOCK ((uint32_t)0x00000000) /*!< No clock */
MartinJohnson 0:c65854d98061 7330 #define RCC_CFGR_MCO_LSI ((uint32_t)0x02000000) /*!< LSI clock selected as MCO source */
MartinJohnson 0:c65854d98061 7331 #define RCC_CFGR_MCO_LSE ((uint32_t)0x03000000) /*!< LSE clock selected as MCO source */
MartinJohnson 0:c65854d98061 7332 #define RCC_CFGR_MCO_SYSCLK ((uint32_t)0x04000000) /*!< System clock selected as MCO source */
MartinJohnson 0:c65854d98061 7333 #define RCC_CFGR_MCO_HSI ((uint32_t)0x05000000) /*!< HSI clock selected as MCO source */
MartinJohnson 0:c65854d98061 7334 #define RCC_CFGR_MCO_HSE ((uint32_t)0x06000000) /*!< HSE clock selected as MCO source */
MartinJohnson 0:c65854d98061 7335 #define RCC_CFGR_MCO_PLL ((uint32_t)0x07000000) /*!< PLL clock divided by 2 selected as MCO source */
MartinJohnson 0:c65854d98061 7336
MartinJohnson 0:c65854d98061 7337 #define RCC_CFGR_MCOF ((uint32_t)0x10000000) /*!< Microcontroller Clock Output Flag */
MartinJohnson 0:c65854d98061 7338
MartinJohnson 0:c65854d98061 7339 #define RCC_CFGR_MCO_PRE ((uint32_t)0x70000000) /*!< MCO prescaler */
MartinJohnson 0:c65854d98061 7340 #define RCC_CFGR_MCO_PRE_1 ((uint32_t)0x00000000) /*!< MCO is divided by 1 */
MartinJohnson 0:c65854d98061 7341 #define RCC_CFGR_MCO_PRE_2 ((uint32_t)0x10000000) /*!< MCO is divided by 2 */
MartinJohnson 0:c65854d98061 7342 #define RCC_CFGR_MCO_PRE_4 ((uint32_t)0x20000000) /*!< MCO is divided by 4 */
MartinJohnson 0:c65854d98061 7343 #define RCC_CFGR_MCO_PRE_8 ((uint32_t)0x30000000) /*!< MCO is divided by 8 */
MartinJohnson 0:c65854d98061 7344 #define RCC_CFGR_MCO_PRE_16 ((uint32_t)0x40000000) /*!< MCO is divided by 16 */
MartinJohnson 0:c65854d98061 7345 #define RCC_CFGR_MCO_PRE_32 ((uint32_t)0x50000000) /*!< MCO is divided by 32 */
MartinJohnson 0:c65854d98061 7346 #define RCC_CFGR_MCO_PRE_64 ((uint32_t)0x60000000) /*!< MCO is divided by 64 */
MartinJohnson 0:c65854d98061 7347 #define RCC_CFGR_MCO_PRE_128 ((uint32_t)0x70000000) /*!< MCO is divided by 128 */
MartinJohnson 0:c65854d98061 7348
MartinJohnson 0:c65854d98061 7349 #define RCC_CFGR_PLLNODIV ((uint32_t)0x80000000) /*!< PLL is not divided to MCO */
MartinJohnson 0:c65854d98061 7350
MartinJohnson 0:c65854d98061 7351 /********************* Bit definition for RCC_CIR register ********************/
MartinJohnson 0:c65854d98061 7352 #define RCC_CIR_LSIRDYF ((uint32_t)0x00000001) /*!< LSI Ready Interrupt flag */
MartinJohnson 0:c65854d98061 7353 #define RCC_CIR_LSERDYF ((uint32_t)0x00000002) /*!< LSE Ready Interrupt flag */
MartinJohnson 0:c65854d98061 7354 #define RCC_CIR_HSIRDYF ((uint32_t)0x00000004) /*!< HSI Ready Interrupt flag */
MartinJohnson 0:c65854d98061 7355 #define RCC_CIR_HSERDYF ((uint32_t)0x00000008) /*!< HSE Ready Interrupt flag */
MartinJohnson 0:c65854d98061 7356 #define RCC_CIR_PLLRDYF ((uint32_t)0x00000010) /*!< PLL Ready Interrupt flag */
MartinJohnson 0:c65854d98061 7357 #define RCC_CIR_CSSF ((uint32_t)0x00000080) /*!< Clock Security System Interrupt flag */
MartinJohnson 0:c65854d98061 7358 #define RCC_CIR_LSIRDYIE ((uint32_t)0x00000100) /*!< LSI Ready Interrupt Enable */
MartinJohnson 0:c65854d98061 7359 #define RCC_CIR_LSERDYIE ((uint32_t)0x00000200) /*!< LSE Ready Interrupt Enable */
MartinJohnson 0:c65854d98061 7360 #define RCC_CIR_HSIRDYIE ((uint32_t)0x00000400) /*!< HSI Ready Interrupt Enable */
MartinJohnson 0:c65854d98061 7361 #define RCC_CIR_HSERDYIE ((uint32_t)0x00000800) /*!< HSE Ready Interrupt Enable */
MartinJohnson 0:c65854d98061 7362 #define RCC_CIR_PLLRDYIE ((uint32_t)0x00001000) /*!< PLL Ready Interrupt Enable */
MartinJohnson 0:c65854d98061 7363 #define RCC_CIR_LSIRDYC ((uint32_t)0x00010000) /*!< LSI Ready Interrupt Clear */
MartinJohnson 0:c65854d98061 7364 #define RCC_CIR_LSERDYC ((uint32_t)0x00020000) /*!< LSE Ready Interrupt Clear */
MartinJohnson 0:c65854d98061 7365 #define RCC_CIR_HSIRDYC ((uint32_t)0x00040000) /*!< HSI Ready Interrupt Clear */
MartinJohnson 0:c65854d98061 7366 #define RCC_CIR_HSERDYC ((uint32_t)0x00080000) /*!< HSE Ready Interrupt Clear */
MartinJohnson 0:c65854d98061 7367 #define RCC_CIR_PLLRDYC ((uint32_t)0x00100000) /*!< PLL Ready Interrupt Clear */
MartinJohnson 0:c65854d98061 7368 #define RCC_CIR_CSSC ((uint32_t)0x00800000) /*!< Clock Security System Interrupt Clear */
MartinJohnson 0:c65854d98061 7369
MartinJohnson 0:c65854d98061 7370 /****************** Bit definition for RCC_APB2RSTR register *****************/
MartinJohnson 0:c65854d98061 7371 #define RCC_APB2RSTR_SYSCFGRST ((uint32_t)0x00000001) /*!< SYSCFG reset */
MartinJohnson 0:c65854d98061 7372 #define RCC_APB2RSTR_TIM1RST ((uint32_t)0x00000200) /*!< TIM1 reset */
MartinJohnson 0:c65854d98061 7373 #define RCC_APB2RSTR_SPI1RST ((uint32_t)0x00001000) /*!< SPI1 reset */
MartinJohnson 0:c65854d98061 7374 #define RCC_APB2RSTR_TIM8RST ((uint32_t)0x00002000) /*!< TIM8 reset */
MartinJohnson 0:c65854d98061 7375 #define RCC_APB2RSTR_USART1RST ((uint32_t)0x00004000) /*!< USART1 reset */
MartinJohnson 0:c65854d98061 7376 #define RCC_APB2RSTR_SPI4RST ((uint32_t)0x00008000) /*!< SPI4 reset */
MartinJohnson 0:c65854d98061 7377 #define RCC_APB2RSTR_TIM15RST ((uint32_t)0x00010000) /*!< TIM15 reset */
MartinJohnson 0:c65854d98061 7378 #define RCC_APB2RSTR_TIM16RST ((uint32_t)0x00020000) /*!< TIM16 reset */
MartinJohnson 0:c65854d98061 7379 #define RCC_APB2RSTR_TIM17RST ((uint32_t)0x00040000) /*!< TIM17 reset */
MartinJohnson 0:c65854d98061 7380 #define RCC_APB2RSTR_TIM20RST ((uint32_t)0x00100000) /*!< TIM20 reset */
MartinJohnson 0:c65854d98061 7381 #define RCC_APB2RSTR_HRTIM1RST ((uint32_t)0x20000000) /*!< HRTIM1 reset */
MartinJohnson 0:c65854d98061 7382
MartinJohnson 0:c65854d98061 7383 /****************** Bit definition for RCC_APB1RSTR register ******************/
MartinJohnson 0:c65854d98061 7384 #define RCC_APB1RSTR_TIM2RST ((uint32_t)0x00000001) /*!< Timer 2 reset */
MartinJohnson 0:c65854d98061 7385 #define RCC_APB1RSTR_TIM3RST ((uint32_t)0x00000002) /*!< Timer 3 reset */
MartinJohnson 0:c65854d98061 7386 #define RCC_APB1RSTR_TIM4RST ((uint32_t)0x00000004) /*!< Timer 4 reset */
MartinJohnson 0:c65854d98061 7387 #define RCC_APB1RSTR_TIM6RST ((uint32_t)0x00000010) /*!< Timer 6 reset */
MartinJohnson 0:c65854d98061 7388 #define RCC_APB1RSTR_TIM7RST ((uint32_t)0x00000020) /*!< Timer 7 reset */
MartinJohnson 0:c65854d98061 7389 #define RCC_APB1RSTR_WWDGRST ((uint32_t)0x00000800) /*!< Window Watchdog reset */
MartinJohnson 0:c65854d98061 7390 #define RCC_APB1RSTR_SPI2RST ((uint32_t)0x00004000) /*!< SPI2 reset */
MartinJohnson 0:c65854d98061 7391 #define RCC_APB1RSTR_SPI3RST ((uint32_t)0x00008000) /*!< SPI3 reset */
MartinJohnson 0:c65854d98061 7392 #define RCC_APB1RSTR_USART2RST ((uint32_t)0x00020000) /*!< USART 2 reset */
MartinJohnson 0:c65854d98061 7393 #define RCC_APB1RSTR_USART3RST ((uint32_t)0x00040000) /*!< USART 3 reset */
MartinJohnson 0:c65854d98061 7394 #define RCC_APB1RSTR_UART4RST ((uint32_t)0x00080000) /*!< UART 4 reset */
MartinJohnson 0:c65854d98061 7395 #define RCC_APB1RSTR_UART5RST ((uint32_t)0x00100000) /*!< UART 5 reset */
MartinJohnson 0:c65854d98061 7396 #define RCC_APB1RSTR_I2C1RST ((uint32_t)0x00200000) /*!< I2C 1 reset */
MartinJohnson 0:c65854d98061 7397 #define RCC_APB1RSTR_I2C2RST ((uint32_t)0x00400000) /*!< I2C 2 reset */
MartinJohnson 0:c65854d98061 7398 #define RCC_APB1RSTR_USBRST ((uint32_t)0x00800000) /*!< USB reset */
MartinJohnson 0:c65854d98061 7399 #define RCC_APB1RSTR_CAN1RST ((uint32_t)0x02000000) /*!< CAN reset */
MartinJohnson 0:c65854d98061 7400 #define RCC_APB1RSTR_PWRRST ((uint32_t)0x10000000) /*!< PWR reset */
MartinJohnson 0:c65854d98061 7401 #define RCC_APB1RSTR_DAC1RST ((uint32_t)0x20000000) /*!< DAC 1 reset */
MartinJohnson 0:c65854d98061 7402 #define RCC_APB1RSTR_I2C3RST ((uint32_t)0x40000000) /*!< I2C 3 reset */
MartinJohnson 0:c65854d98061 7403 #define RCC_APB1RSTR_DAC2RST ((uint32_t)0x04000000) /*!< DAC 2 reset */
MartinJohnson 0:c65854d98061 7404 #define RCC_APB1RSTR_DACRST RCC_APB1RSTR_DAC1RST /*!< DAC reset */
MartinJohnson 0:c65854d98061 7405
MartinJohnson 0:c65854d98061 7406 /****************** Bit definition for RCC_AHBENR register ******************/
MartinJohnson 0:c65854d98061 7407 #define RCC_AHBENR_DMA1EN ((uint32_t)0x00000001) /*!< DMA1 clock enable */
MartinJohnson 0:c65854d98061 7408 #define RCC_AHBENR_DMA2EN ((uint32_t)0x00000002) /*!< DMA2 clock enable */
MartinJohnson 0:c65854d98061 7409 #define RCC_AHBENR_SRAMEN ((uint32_t)0x00000004) /*!< SRAM interface clock enable */
MartinJohnson 0:c65854d98061 7410 #define RCC_AHBENR_FLITFEN ((uint32_t)0x00000010) /*!< FLITF clock enable */
MartinJohnson 0:c65854d98061 7411 #define RCC_AHBENR_FMCEN ((uint32_t)0x00000020) /*!< FMC clock enable */
MartinJohnson 0:c65854d98061 7412 #define RCC_AHBENR_CRCEN ((uint32_t)0x00000040) /*!< CRC clock enable */
MartinJohnson 0:c65854d98061 7413 #define RCC_AHBENR_GPIOHEN ((uint32_t)0x00010000) /*!< GPIOH clock enable */
MartinJohnson 0:c65854d98061 7414 #define RCC_AHBENR_GPIOAEN ((uint32_t)0x00020000) /*!< GPIOA clock enable */
MartinJohnson 0:c65854d98061 7415 #define RCC_AHBENR_GPIOBEN ((uint32_t)0x00040000) /*!< GPIOB clock enable */
MartinJohnson 0:c65854d98061 7416 #define RCC_AHBENR_GPIOCEN ((uint32_t)0x00080000) /*!< GPIOC clock enable */
MartinJohnson 0:c65854d98061 7417 #define RCC_AHBENR_GPIODEN ((uint32_t)0x00100000) /*!< GPIOD clock enable */
MartinJohnson 0:c65854d98061 7418 #define RCC_AHBENR_GPIOEEN ((uint32_t)0x00200000) /*!< GPIOE clock enable */
MartinJohnson 0:c65854d98061 7419 #define RCC_AHBENR_GPIOFEN ((uint32_t)0x00400000) /*!< GPIOF clock enable */
MartinJohnson 0:c65854d98061 7420 #define RCC_AHBENR_GPIOGEN ((uint32_t)0x00800000) /*!< GPIOG clock enable */
MartinJohnson 0:c65854d98061 7421 #define RCC_AHBENR_TSEN ((uint32_t)0x01000000) /*!< TS clock enable */
MartinJohnson 0:c65854d98061 7422 #define RCC_AHBENR_ADC12EN ((uint32_t)0x10000000) /*!< ADC1/ ADC2 clock enable */
MartinJohnson 0:c65854d98061 7423 #define RCC_AHBENR_ADC34EN ((uint32_t)0x20000000) /*!< ADC1/ ADC2 clock enable */
MartinJohnson 0:c65854d98061 7424
MartinJohnson 0:c65854d98061 7425 /***************** Bit definition for RCC_APB2ENR register ******************/
MartinJohnson 0:c65854d98061 7426 #define RCC_APB2ENR_SYSCFGEN ((uint32_t)0x00000001) /*!< SYSCFG clock enable */
MartinJohnson 0:c65854d98061 7427 #define RCC_APB2ENR_TIM1EN ((uint32_t)0x00000800) /*!< TIM1 clock enable */
MartinJohnson 0:c65854d98061 7428 #define RCC_APB2ENR_SPI1EN ((uint32_t)0x00001000) /*!< SPI1 clock enable */
MartinJohnson 0:c65854d98061 7429 #define RCC_APB2ENR_TIM8EN ((uint32_t)0x00002000) /*!< TIM8 clock enable */
MartinJohnson 0:c65854d98061 7430 #define RCC_APB2ENR_USART1EN ((uint32_t)0x00004000) /*!< USART1 clock enable */
MartinJohnson 0:c65854d98061 7431 #define RCC_APB2ENR_SPI4EN ((uint32_t)0x00008000) /*!< SPI4 clock enable */
MartinJohnson 0:c65854d98061 7432 #define RCC_APB2ENR_TIM15EN ((uint32_t)0x00010000) /*!< TIM15 clock enable */
MartinJohnson 0:c65854d98061 7433 #define RCC_APB2ENR_TIM16EN ((uint32_t)0x00020000) /*!< TIM16 clock enable */
MartinJohnson 0:c65854d98061 7434 #define RCC_APB2ENR_TIM17EN ((uint32_t)0x00040000) /*!< TIM17 clock enable */
MartinJohnson 0:c65854d98061 7435 #define RCC_APB2ENR_TIM20EN ((uint32_t)0x00100000) /*!< TIM20 clock enable */
MartinJohnson 0:c65854d98061 7436 #define RCC_APB2ENR_HRTIM1 ((uint32_t)0x20000000) /*!< HRTIM1 clock enable */
MartinJohnson 0:c65854d98061 7437
MartinJohnson 0:c65854d98061 7438 /****************** Bit definition for RCC_APB1ENR register ******************/
MartinJohnson 0:c65854d98061 7439 #define RCC_APB1ENR_TIM2EN ((uint32_t)0x00000001) /*!< Timer 2 clock enable */
MartinJohnson 0:c65854d98061 7440 #define RCC_APB1ENR_TIM3EN ((uint32_t)0x00000002) /*!< Timer 3 clock enable */
MartinJohnson 0:c65854d98061 7441 #define RCC_APB1ENR_TIM4EN ((uint32_t)0x00000004) /*!< Timer 4 clock enable */
MartinJohnson 0:c65854d98061 7442 #define RCC_APB1ENR_TIM6EN ((uint32_t)0x00000010) /*!< Timer 6 clock enable */
MartinJohnson 0:c65854d98061 7443 #define RCC_APB1ENR_TIM7EN ((uint32_t)0x00000020) /*!< Timer 7 clock enable */
MartinJohnson 0:c65854d98061 7444 #define RCC_APB1ENR_WWDGEN ((uint32_t)0x00000800) /*!< Window Watchdog clock enable */
MartinJohnson 0:c65854d98061 7445 #define RCC_APB1ENR_SPI2EN ((uint32_t)0x00004000) /*!< SPI2 clock enable */
MartinJohnson 0:c65854d98061 7446 #define RCC_APB1ENR_SPI3EN ((uint32_t)0x00008000) /*!< SPI3 clock enable */
MartinJohnson 0:c65854d98061 7447 #define RCC_APB1ENR_USART2EN ((uint32_t)0x00020000) /*!< USART 2 clock enable */
MartinJohnson 0:c65854d98061 7448 #define RCC_APB1ENR_USART3EN ((uint32_t)0x00040000) /*!< USART 3 clock enable */
MartinJohnson 0:c65854d98061 7449 #define RCC_APB1ENR_UART4EN ((uint32_t)0x00080000) /*!< UART 4 clock enable */
MartinJohnson 0:c65854d98061 7450 #define RCC_APB1ENR_UART5EN ((uint32_t)0x00100000) /*!< UART 5 clock enable */
MartinJohnson 0:c65854d98061 7451 #define RCC_APB1ENR_I2C1EN ((uint32_t)0x00200000) /*!< I2C 1 clock enable */
MartinJohnson 0:c65854d98061 7452 #define RCC_APB1ENR_I2C2EN ((uint32_t)0x00400000) /*!< I2C 2 clock enable */
MartinJohnson 0:c65854d98061 7453 #define RCC_APB1ENR_USBEN ((uint32_t)0x00800000) /*!< USB clock enable */
MartinJohnson 0:c65854d98061 7454 #define RCC_APB1ENR_CAN1EN ((uint32_t)0x02000000) /*!< CAN clock enable */
MartinJohnson 0:c65854d98061 7455 #define RCC_APB1ENR_DAC2EN ((uint32_t)0x04000000) /*!< DAC 2 clock enable */
MartinJohnson 0:c65854d98061 7456 #define RCC_APB1ENR_PWREN ((uint32_t)0x10000000) /*!< PWR clock enable */
MartinJohnson 0:c65854d98061 7457 #define RCC_APB1ENR_DAC1EN ((uint32_t)0x20000000) /*!< DAC clock enable */
MartinJohnson 0:c65854d98061 7458 #define RCC_APB1ENR_I2C3EN ((uint32_t)0x40000000) /*!< I2C 3 clock enable */
MartinJohnson 0:c65854d98061 7459 #define RCC_APB1ENR_DACEN RCC_APB1ENR_DAC1EN
MartinJohnson 0:c65854d98061 7460
MartinJohnson 0:c65854d98061 7461 /******************** Bit definition for RCC_BDCR register ******************/
MartinJohnson 0:c65854d98061 7462 #define RCC_BDCR_LSEON ((uint32_t)0x00000001) /*!< External Low Speed oscillator enable */
MartinJohnson 0:c65854d98061 7463 #define RCC_BDCR_LSERDY ((uint32_t)0x00000002) /*!< External Low Speed oscillator Ready */
MartinJohnson 0:c65854d98061 7464 #define RCC_BDCR_LSEBYP ((uint32_t)0x00000004) /*!< External Low Speed oscillator Bypass */
MartinJohnson 0:c65854d98061 7465
MartinJohnson 0:c65854d98061 7466 #define RCC_BDCR_LSEDRV ((uint32_t)0x00000018) /*!< LSEDRV[1:0] bits (LSE Osc. drive capability) */
MartinJohnson 0:c65854d98061 7467 #define RCC_BDCR_LSEDRV_0 ((uint32_t)0x00000008) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 7468 #define RCC_BDCR_LSEDRV_1 ((uint32_t)0x00000010) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 7469
MartinJohnson 0:c65854d98061 7470
MartinJohnson 0:c65854d98061 7471 #define RCC_BDCR_RTCSEL ((uint32_t)0x00000300) /*!< RTCSEL[1:0] bits (RTC clock source selection) */
MartinJohnson 0:c65854d98061 7472 #define RCC_BDCR_RTCSEL_0 ((uint32_t)0x00000100) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 7473 #define RCC_BDCR_RTCSEL_1 ((uint32_t)0x00000200) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 7474
MartinJohnson 0:c65854d98061 7475 /*!< RTC configuration */
MartinJohnson 0:c65854d98061 7476 #define RCC_BDCR_RTCSEL_NOCLOCK ((uint32_t)0x00000000) /*!< No clock */
MartinJohnson 0:c65854d98061 7477 #define RCC_BDCR_RTCSEL_LSE ((uint32_t)0x00000100) /*!< LSE oscillator clock used as RTC clock */
MartinJohnson 0:c65854d98061 7478 #define RCC_BDCR_RTCSEL_LSI ((uint32_t)0x00000200) /*!< LSI oscillator clock used as RTC clock */
MartinJohnson 0:c65854d98061 7479 #define RCC_BDCR_RTCSEL_HSE ((uint32_t)0x00000300) /*!< HSE oscillator clock divided by 32 used as RTC clock */
MartinJohnson 0:c65854d98061 7480
MartinJohnson 0:c65854d98061 7481 #define RCC_BDCR_RTCEN ((uint32_t)0x00008000) /*!< RTC clock enable */
MartinJohnson 0:c65854d98061 7482 #define RCC_BDCR_BDRST ((uint32_t)0x00010000) /*!< Backup domain software reset */
MartinJohnson 0:c65854d98061 7483
MartinJohnson 0:c65854d98061 7484 /******************** Bit definition for RCC_CSR register *******************/
MartinJohnson 0:c65854d98061 7485 #define RCC_CSR_LSION ((uint32_t)0x00000001) /*!< Internal Low Speed oscillator enable */
MartinJohnson 0:c65854d98061 7486 #define RCC_CSR_LSIRDY ((uint32_t)0x00000002) /*!< Internal Low Speed oscillator Ready */
MartinJohnson 0:c65854d98061 7487 #define RCC_CSR_RMVF ((uint32_t)0x01000000) /*!< Remove reset flag */
MartinJohnson 0:c65854d98061 7488 #define RCC_CSR_OBLRSTF ((uint32_t)0x02000000) /*!< OBL reset flag */
MartinJohnson 0:c65854d98061 7489 #define RCC_CSR_PINRSTF ((uint32_t)0x04000000) /*!< PIN reset flag */
MartinJohnson 0:c65854d98061 7490 #define RCC_CSR_PORRSTF ((uint32_t)0x08000000) /*!< POR/PDR reset flag */
MartinJohnson 0:c65854d98061 7491 #define RCC_CSR_SFTRSTF ((uint32_t)0x10000000) /*!< Software Reset flag */
MartinJohnson 0:c65854d98061 7492 #define RCC_CSR_IWDGRSTF ((uint32_t)0x20000000) /*!< Independent Watchdog reset flag */
MartinJohnson 0:c65854d98061 7493 #define RCC_CSR_WWDGRSTF ((uint32_t)0x40000000) /*!< Window watchdog reset flag */
MartinJohnson 0:c65854d98061 7494 #define RCC_CSR_LPWRRSTF ((uint32_t)0x80000000) /*!< Low-Power reset flag */
MartinJohnson 0:c65854d98061 7495
MartinJohnson 0:c65854d98061 7496 /******************* Bit definition for RCC_AHBRSTR register ****************/
MartinJohnson 0:c65854d98061 7497 #define RCC_AHBRSTR_FMCRST ((uint32_t)0x00000020) /*!< FMC reset */
MartinJohnson 0:c65854d98061 7498 #define RCC_AHBRSTR_GPIOHRST ((uint32_t)0x00010000) /*!< GPIOH reset */
MartinJohnson 0:c65854d98061 7499 #define RCC_AHBRSTR_GPIOARST ((uint32_t)0x00020000) /*!< GPIOA reset */
MartinJohnson 0:c65854d98061 7500 #define RCC_AHBRSTR_GPIOBRST ((uint32_t)0x00040000) /*!< GPIOB reset */
MartinJohnson 0:c65854d98061 7501 #define RCC_AHBRSTR_GPIOCRST ((uint32_t)0x00080000) /*!< GPIOC reset */
MartinJohnson 0:c65854d98061 7502 #define RCC_AHBRSTR_GPIODRST ((uint32_t)0x00010000) /*!< GPIOD reset */
MartinJohnson 0:c65854d98061 7503 #define RCC_AHBRSTR_GPIOERST ((uint32_t)0x00200000) /*!< GPIOE reset */
MartinJohnson 0:c65854d98061 7504 #define RCC_AHBRSTR_GPIOFRST ((uint32_t)0x00400000) /*!< GPIOF reset */
MartinJohnson 0:c65854d98061 7505 #define RCC_AHBRSTR_GPIOGRST ((uint32_t)0x00800000) /*!< GPIOG reset */
MartinJohnson 0:c65854d98061 7506 #define RCC_AHBRSTR_TSRST ((uint32_t)0x00100000) /*!< TS reset */
MartinJohnson 0:c65854d98061 7507 #define RCC_AHBRSTR_ADC12RST ((uint32_t)0x01000000) /*!< ADC1 & ADC2 reset */
MartinJohnson 0:c65854d98061 7508 #define RCC_AHBRSTR_ADC34RST ((uint32_t)0x02000000) /*!< ADC3 & ADC4 reset */
MartinJohnson 0:c65854d98061 7509
MartinJohnson 0:c65854d98061 7510 /******************* Bit definition for RCC_CFGR2 register ******************/
MartinJohnson 0:c65854d98061 7511 /*!< PREDIV1 configuration */
MartinJohnson 0:c65854d98061 7512 #define RCC_CFGR2_PREDIV1 ((uint32_t)0x0000000F) /*!< PREDIV1[3:0] bits */
MartinJohnson 0:c65854d98061 7513 #define RCC_CFGR2_PREDIV1_0 ((uint32_t)0x00000001) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 7514 #define RCC_CFGR2_PREDIV1_1 ((uint32_t)0x00000002) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 7515 #define RCC_CFGR2_PREDIV1_2 ((uint32_t)0x00000004) /*!< Bit 2 */
MartinJohnson 0:c65854d98061 7516 #define RCC_CFGR2_PREDIV1_3 ((uint32_t)0x00000008) /*!< Bit 3 */
MartinJohnson 0:c65854d98061 7517
MartinJohnson 0:c65854d98061 7518 #define RCC_CFGR2_PREDIV1_DIV1 ((uint32_t)0x00000000) /*!< PREDIV1 input clock not divided */
MartinJohnson 0:c65854d98061 7519 #define RCC_CFGR2_PREDIV1_DIV2 ((uint32_t)0x00000001) /*!< PREDIV1 input clock divided by 2 */
MartinJohnson 0:c65854d98061 7520 #define RCC_CFGR2_PREDIV1_DIV3 ((uint32_t)0x00000002) /*!< PREDIV1 input clock divided by 3 */
MartinJohnson 0:c65854d98061 7521 #define RCC_CFGR2_PREDIV1_DIV4 ((uint32_t)0x00000003) /*!< PREDIV1 input clock divided by 4 */
MartinJohnson 0:c65854d98061 7522 #define RCC_CFGR2_PREDIV1_DIV5 ((uint32_t)0x00000004) /*!< PREDIV1 input clock divided by 5 */
MartinJohnson 0:c65854d98061 7523 #define RCC_CFGR2_PREDIV1_DIV6 ((uint32_t)0x00000005) /*!< PREDIV1 input clock divided by 6 */
MartinJohnson 0:c65854d98061 7524 #define RCC_CFGR2_PREDIV1_DIV7 ((uint32_t)0x00000006) /*!< PREDIV1 input clock divided by 7 */
MartinJohnson 0:c65854d98061 7525 #define RCC_CFGR2_PREDIV1_DIV8 ((uint32_t)0x00000007) /*!< PREDIV1 input clock divided by 8 */
MartinJohnson 0:c65854d98061 7526 #define RCC_CFGR2_PREDIV1_DIV9 ((uint32_t)0x00000008) /*!< PREDIV1 input clock divided by 9 */
MartinJohnson 0:c65854d98061 7527 #define RCC_CFGR2_PREDIV1_DIV10 ((uint32_t)0x00000009) /*!< PREDIV1 input clock divided by 10 */
MartinJohnson 0:c65854d98061 7528 #define RCC_CFGR2_PREDIV1_DIV11 ((uint32_t)0x0000000A) /*!< PREDIV1 input clock divided by 11 */
MartinJohnson 0:c65854d98061 7529 #define RCC_CFGR2_PREDIV1_DIV12 ((uint32_t)0x0000000B) /*!< PREDIV1 input clock divided by 12 */
MartinJohnson 0:c65854d98061 7530 #define RCC_CFGR2_PREDIV1_DIV13 ((uint32_t)0x0000000C) /*!< PREDIV1 input clock divided by 13 */
MartinJohnson 0:c65854d98061 7531 #define RCC_CFGR2_PREDIV1_DIV14 ((uint32_t)0x0000000D) /*!< PREDIV1 input clock divided by 14 */
MartinJohnson 0:c65854d98061 7532 #define RCC_CFGR2_PREDIV1_DIV15 ((uint32_t)0x0000000E) /*!< PREDIV1 input clock divided by 15 */
MartinJohnson 0:c65854d98061 7533 #define RCC_CFGR2_PREDIV1_DIV16 ((uint32_t)0x0000000F) /*!< PREDIV1 input clock divided by 16 */
MartinJohnson 0:c65854d98061 7534
MartinJohnson 0:c65854d98061 7535 /*!< ADCPRE12 configuration */
MartinJohnson 0:c65854d98061 7536 #define RCC_CFGR2_ADCPRE12 ((uint32_t)0x000001F0) /*!< ADCPRE12[8:4] bits */
MartinJohnson 0:c65854d98061 7537 #define RCC_CFGR2_ADCPRE12_0 ((uint32_t)0x00000010) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 7538 #define RCC_CFGR2_ADCPRE12_1 ((uint32_t)0x00000020) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 7539 #define RCC_CFGR2_ADCPRE12_2 ((uint32_t)0x00000040) /*!< Bit 2 */
MartinJohnson 0:c65854d98061 7540 #define RCC_CFGR2_ADCPRE12_3 ((uint32_t)0x00000080) /*!< Bit 3 */
MartinJohnson 0:c65854d98061 7541 #define RCC_CFGR2_ADCPRE12_4 ((uint32_t)0x00000100) /*!< Bit 4 */
MartinJohnson 0:c65854d98061 7542
MartinJohnson 0:c65854d98061 7543 #define RCC_CFGR2_ADCPRE12_NO ((uint32_t)0x00000000) /*!< ADC12 clock disabled, ADC12 can use AHB clock */
MartinJohnson 0:c65854d98061 7544 #define RCC_CFGR2_ADCPRE12_DIV1 ((uint32_t)0x00000100) /*!< ADC12 PLL clock divided by 1 */
MartinJohnson 0:c65854d98061 7545 #define RCC_CFGR2_ADCPRE12_DIV2 ((uint32_t)0x00000110) /*!< ADC12 PLL clock divided by 2 */
MartinJohnson 0:c65854d98061 7546 #define RCC_CFGR2_ADCPRE12_DIV4 ((uint32_t)0x00000120) /*!< ADC12 PLL clock divided by 4 */
MartinJohnson 0:c65854d98061 7547 #define RCC_CFGR2_ADCPRE12_DIV6 ((uint32_t)0x00000130) /*!< ADC12 PLL clock divided by 6 */
MartinJohnson 0:c65854d98061 7548 #define RCC_CFGR2_ADCPRE12_DIV8 ((uint32_t)0x00000140) /*!< ADC12 PLL clock divided by 8 */
MartinJohnson 0:c65854d98061 7549 #define RCC_CFGR2_ADCPRE12_DIV10 ((uint32_t)0x00000150) /*!< ADC12 PLL clock divided by 10 */
MartinJohnson 0:c65854d98061 7550 #define RCC_CFGR2_ADCPRE12_DIV12 ((uint32_t)0x00000160) /*!< ADC12 PLL clock divided by 12 */
MartinJohnson 0:c65854d98061 7551 #define RCC_CFGR2_ADCPRE12_DIV16 ((uint32_t)0x00000170) /*!< ADC12 PLL clock divided by 16 */
MartinJohnson 0:c65854d98061 7552 #define RCC_CFGR2_ADCPRE12_DIV32 ((uint32_t)0x00000180) /*!< ADC12 PLL clock divided by 32 */
MartinJohnson 0:c65854d98061 7553 #define RCC_CFGR2_ADCPRE12_DIV64 ((uint32_t)0x00000190) /*!< ADC12 PLL clock divided by 64 */
MartinJohnson 0:c65854d98061 7554 #define RCC_CFGR2_ADCPRE12_DIV128 ((uint32_t)0x000001A0) /*!< ADC12 PLL clock divided by 128 */
MartinJohnson 0:c65854d98061 7555 #define RCC_CFGR2_ADCPRE12_DIV256 ((uint32_t)0x000001B0) /*!< ADC12 PLL clock divided by 256 */
MartinJohnson 0:c65854d98061 7556
MartinJohnson 0:c65854d98061 7557 /*!< ADCPRE34 configuration */
MartinJohnson 0:c65854d98061 7558 #define RCC_CFGR2_ADCPRE34 ((uint32_t)0x00003E00) /*!< ADCPRE34[13:5] bits */
MartinJohnson 0:c65854d98061 7559 #define RCC_CFGR2_ADCPRE34_0 ((uint32_t)0x00000200) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 7560 #define RCC_CFGR2_ADCPRE34_1 ((uint32_t)0x00000400) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 7561 #define RCC_CFGR2_ADCPRE34_2 ((uint32_t)0x00000800) /*!< Bit 2 */
MartinJohnson 0:c65854d98061 7562 #define RCC_CFGR2_ADCPRE34_3 ((uint32_t)0x00001000) /*!< Bit 3 */
MartinJohnson 0:c65854d98061 7563 #define RCC_CFGR2_ADCPRE34_4 ((uint32_t)0x00002000) /*!< Bit 4 */
MartinJohnson 0:c65854d98061 7564
MartinJohnson 0:c65854d98061 7565 #define RCC_CFGR2_ADCPRE34_NO ((uint32_t)0x00000000) /*!< ADC34 clock disabled, ADC34 can use AHB clock */
MartinJohnson 0:c65854d98061 7566 #define RCC_CFGR2_ADCPRE34_DIV1 ((uint32_t)0x00002000) /*!< ADC34 PLL clock divided by 1 */
MartinJohnson 0:c65854d98061 7567 #define RCC_CFGR2_ADCPRE34_DIV2 ((uint32_t)0x00002200) /*!< ADC34 PLL clock divided by 2 */
MartinJohnson 0:c65854d98061 7568 #define RCC_CFGR2_ADCPRE34_DIV4 ((uint32_t)0x00002400) /*!< ADC34 PLL clock divided by 4 */
MartinJohnson 0:c65854d98061 7569 #define RCC_CFGR2_ADCPRE34_DIV6 ((uint32_t)0x00002600) /*!< ADC34 PLL clock divided by 6 */
MartinJohnson 0:c65854d98061 7570 #define RCC_CFGR2_ADCPRE34_DIV8 ((uint32_t)0x00002800) /*!< ADC34 PLL clock divided by 8 */
MartinJohnson 0:c65854d98061 7571 #define RCC_CFGR2_ADCPRE34_DIV10 ((uint32_t)0x00002A00) /*!< ADC34 PLL clock divided by 10 */
MartinJohnson 0:c65854d98061 7572 #define RCC_CFGR2_ADCPRE34_DIV12 ((uint32_t)0x00002C00) /*!< ADC34 PLL clock divided by 12 */
MartinJohnson 0:c65854d98061 7573 #define RCC_CFGR2_ADCPRE34_DIV16 ((uint32_t)0x00002E00) /*!< ADC34 PLL clock divided by 16 */
MartinJohnson 0:c65854d98061 7574 #define RCC_CFGR2_ADCPRE34_DIV32 ((uint32_t)0x00003000) /*!< ADC34 PLL clock divided by 32 */
MartinJohnson 0:c65854d98061 7575 #define RCC_CFGR2_ADCPRE34_DIV64 ((uint32_t)0x00003200) /*!< ADC34 PLL clock divided by 64 */
MartinJohnson 0:c65854d98061 7576 #define RCC_CFGR2_ADCPRE34_DIV128 ((uint32_t)0x00003400) /*!< ADC34 PLL clock divided by 128 */
MartinJohnson 0:c65854d98061 7577 #define RCC_CFGR2_ADCPRE34_DIV256 ((uint32_t)0x00003600) /*!< ADC34 PLL clock divided by 256 */
MartinJohnson 0:c65854d98061 7578
MartinJohnson 0:c65854d98061 7579 /******************* Bit definition for RCC_CFGR3 register ******************/
MartinJohnson 0:c65854d98061 7580 #define RCC_CFGR3_USART1SW ((uint32_t)0x00000003) /*!< USART1SW[1:0] bits */
MartinJohnson 0:c65854d98061 7581 #define RCC_CFGR3_USART1SW_0 ((uint32_t)0x00000001) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 7582 #define RCC_CFGR3_USART1SW_1 ((uint32_t)0x00000002) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 7583
MartinJohnson 0:c65854d98061 7584 #define RCC_CFGR3_I2CSW ((uint32_t)0x00000070) /*!< I2CSW bits */
MartinJohnson 0:c65854d98061 7585 #define RCC_CFGR3_I2C1SW ((uint32_t)0x00000010) /*!< I2C1SW bits */
MartinJohnson 0:c65854d98061 7586 #define RCC_CFGR3_I2C2SW ((uint32_t)0x00000020) /*!< I2C2SW bits */
MartinJohnson 0:c65854d98061 7587 #define RCC_CFGR3_I2C3SW ((uint32_t)0x00000040) /*!< I2C3SW bits */
MartinJohnson 0:c65854d98061 7588
MartinJohnson 0:c65854d98061 7589 #define RCC_CFGR3_TIMSW ((uint32_t)0x00002F00) /*!< TIMSW bits */
MartinJohnson 0:c65854d98061 7590 #define RCC_CFGR3_TIM1SW ((uint32_t)0x00000100) /*!< TIM1SW bits */
MartinJohnson 0:c65854d98061 7591 #define RCC_CFGR3_TIM8SW ((uint32_t)0x00000200) /*!< TIM8SW bits */
MartinJohnson 0:c65854d98061 7592 #define RCC_CFGR3_TIM15SW ((uint32_t)0x00000400) /*!< TIM15SW bits */
MartinJohnson 0:c65854d98061 7593 #define RCC_CFGR3_TIM16SW ((uint32_t)0x00000800) /*!< TIM16SW bits */
MartinJohnson 0:c65854d98061 7594 #define RCC_CFGR3_TIM17SW ((uint32_t)0x00002000) /*!< TIM17SW bits */
MartinJohnson 0:c65854d98061 7595 #define RCC_CFGR3_TIM20SW ((uint32_t)0x00008000) /*!< TIM20SW bits */
MartinJohnson 0:c65854d98061 7596 #define RCC_CFGR3_TIM2SW ((uint32_t)0x01000000) /*!< TIM3SW bits */
MartinJohnson 0:c65854d98061 7597 #define RCC_CFGR3_TIM3SW ((uint32_t)0x02000000) /*!< TIM2SW bits */
MartinJohnson 0:c65854d98061 7598
MartinJohnson 0:c65854d98061 7599
MartinJohnson 0:c65854d98061 7600 #define RCC_CFGR3_HRTIM1SW ((uint32_t)0x00001000) /*!< HRTIM1SW bits */
MartinJohnson 0:c65854d98061 7601
MartinJohnson 0:c65854d98061 7602 #define RCC_CFGR3_USART2SW ((uint32_t)0x00030000) /*!< USART2SW[1:0] bits */
MartinJohnson 0:c65854d98061 7603 #define RCC_CFGR3_USART2SW_0 ((uint32_t)0x00010000) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 7604 #define RCC_CFGR3_USART2SW_1 ((uint32_t)0x00020000) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 7605
MartinJohnson 0:c65854d98061 7606 #define RCC_CFGR3_USART3SW ((uint32_t)0x000C0000) /*!< USART3SW[1:0] bits */
MartinJohnson 0:c65854d98061 7607 #define RCC_CFGR3_USART3SW_0 ((uint32_t)0x00040000) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 7608 #define RCC_CFGR3_USART3SW_1 ((uint32_t)0x00080000) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 7609
MartinJohnson 0:c65854d98061 7610 #define RCC_CFGR3_UART4SW ((uint32_t)0x00300000) /*!< UART4SW[1:0] bits */
MartinJohnson 0:c65854d98061 7611 #define RCC_CFGR3_UART4SW_0 ((uint32_t)0x00100000) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 7612 #define RCC_CFGR3_UART4SW_1 ((uint32_t)0x00200000) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 7613
MartinJohnson 0:c65854d98061 7614 #define RCC_CFGR3_UART5SW ((uint32_t)0x00C00000) /*!< UART5SW[1:0] bits */
MartinJohnson 0:c65854d98061 7615 #define RCC_CFGR3_UART5SW_0 ((uint32_t)0x00400000) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 7616 #define RCC_CFGR3_UART5SW_1 ((uint32_t)0x00800000) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 7617
MartinJohnson 0:c65854d98061 7618 #define RCC_CFGR3_TIM2SW ((uint32_t)0x01000000) /*!< TIM3SW bits */
MartinJohnson 0:c65854d98061 7619 #define RCC_CFGR3_TIM3SW ((uint32_t)0x02000000) /*!< TIM2SW bits */
MartinJohnson 0:c65854d98061 7620
MartinJohnson 0:c65854d98061 7621 /******************************************************************************/
MartinJohnson 0:c65854d98061 7622 /* */
MartinJohnson 0:c65854d98061 7623 /* Real-Time Clock (RTC) */
MartinJohnson 0:c65854d98061 7624 /* */
MartinJohnson 0:c65854d98061 7625 /******************************************************************************/
MartinJohnson 0:c65854d98061 7626 /******************** Bits definition for RTC_TR register *******************/
MartinJohnson 0:c65854d98061 7627 #define RTC_TR_PM ((uint32_t)0x00400000)
MartinJohnson 0:c65854d98061 7628 #define RTC_TR_HT ((uint32_t)0x00300000)
MartinJohnson 0:c65854d98061 7629 #define RTC_TR_HT_0 ((uint32_t)0x00100000)
MartinJohnson 0:c65854d98061 7630 #define RTC_TR_HT_1 ((uint32_t)0x00200000)
MartinJohnson 0:c65854d98061 7631 #define RTC_TR_HU ((uint32_t)0x000F0000)
MartinJohnson 0:c65854d98061 7632 #define RTC_TR_HU_0 ((uint32_t)0x00010000)
MartinJohnson 0:c65854d98061 7633 #define RTC_TR_HU_1 ((uint32_t)0x00020000)
MartinJohnson 0:c65854d98061 7634 #define RTC_TR_HU_2 ((uint32_t)0x00040000)
MartinJohnson 0:c65854d98061 7635 #define RTC_TR_HU_3 ((uint32_t)0x00080000)
MartinJohnson 0:c65854d98061 7636 #define RTC_TR_MNT ((uint32_t)0x00007000)
MartinJohnson 0:c65854d98061 7637 #define RTC_TR_MNT_0 ((uint32_t)0x00001000)
MartinJohnson 0:c65854d98061 7638 #define RTC_TR_MNT_1 ((uint32_t)0x00002000)
MartinJohnson 0:c65854d98061 7639 #define RTC_TR_MNT_2 ((uint32_t)0x00004000)
MartinJohnson 0:c65854d98061 7640 #define RTC_TR_MNU ((uint32_t)0x00000F00)
MartinJohnson 0:c65854d98061 7641 #define RTC_TR_MNU_0 ((uint32_t)0x00000100)
MartinJohnson 0:c65854d98061 7642 #define RTC_TR_MNU_1 ((uint32_t)0x00000200)
MartinJohnson 0:c65854d98061 7643 #define RTC_TR_MNU_2 ((uint32_t)0x00000400)
MartinJohnson 0:c65854d98061 7644 #define RTC_TR_MNU_3 ((uint32_t)0x00000800)
MartinJohnson 0:c65854d98061 7645 #define RTC_TR_ST ((uint32_t)0x00000070)
MartinJohnson 0:c65854d98061 7646 #define RTC_TR_ST_0 ((uint32_t)0x00000010)
MartinJohnson 0:c65854d98061 7647 #define RTC_TR_ST_1 ((uint32_t)0x00000020)
MartinJohnson 0:c65854d98061 7648 #define RTC_TR_ST_2 ((uint32_t)0x00000040)
MartinJohnson 0:c65854d98061 7649 #define RTC_TR_SU ((uint32_t)0x0000000F)
MartinJohnson 0:c65854d98061 7650 #define RTC_TR_SU_0 ((uint32_t)0x00000001)
MartinJohnson 0:c65854d98061 7651 #define RTC_TR_SU_1 ((uint32_t)0x00000002)
MartinJohnson 0:c65854d98061 7652 #define RTC_TR_SU_2 ((uint32_t)0x00000004)
MartinJohnson 0:c65854d98061 7653 #define RTC_TR_SU_3 ((uint32_t)0x00000008)
MartinJohnson 0:c65854d98061 7654
MartinJohnson 0:c65854d98061 7655 /******************** Bits definition for RTC_DR register *******************/
MartinJohnson 0:c65854d98061 7656 #define RTC_DR_YT ((uint32_t)0x00F00000)
MartinJohnson 0:c65854d98061 7657 #define RTC_DR_YT_0 ((uint32_t)0x00100000)
MartinJohnson 0:c65854d98061 7658 #define RTC_DR_YT_1 ((uint32_t)0x00200000)
MartinJohnson 0:c65854d98061 7659 #define RTC_DR_YT_2 ((uint32_t)0x00400000)
MartinJohnson 0:c65854d98061 7660 #define RTC_DR_YT_3 ((uint32_t)0x00800000)
MartinJohnson 0:c65854d98061 7661 #define RTC_DR_YU ((uint32_t)0x000F0000)
MartinJohnson 0:c65854d98061 7662 #define RTC_DR_YU_0 ((uint32_t)0x00010000)
MartinJohnson 0:c65854d98061 7663 #define RTC_DR_YU_1 ((uint32_t)0x00020000)
MartinJohnson 0:c65854d98061 7664 #define RTC_DR_YU_2 ((uint32_t)0x00040000)
MartinJohnson 0:c65854d98061 7665 #define RTC_DR_YU_3 ((uint32_t)0x00080000)
MartinJohnson 0:c65854d98061 7666 #define RTC_DR_WDU ((uint32_t)0x0000E000)
MartinJohnson 0:c65854d98061 7667 #define RTC_DR_WDU_0 ((uint32_t)0x00002000)
MartinJohnson 0:c65854d98061 7668 #define RTC_DR_WDU_1 ((uint32_t)0x00004000)
MartinJohnson 0:c65854d98061 7669 #define RTC_DR_WDU_2 ((uint32_t)0x00008000)
MartinJohnson 0:c65854d98061 7670 #define RTC_DR_MT ((uint32_t)0x00001000)
MartinJohnson 0:c65854d98061 7671 #define RTC_DR_MU ((uint32_t)0x00000F00)
MartinJohnson 0:c65854d98061 7672 #define RTC_DR_MU_0 ((uint32_t)0x00000100)
MartinJohnson 0:c65854d98061 7673 #define RTC_DR_MU_1 ((uint32_t)0x00000200)
MartinJohnson 0:c65854d98061 7674 #define RTC_DR_MU_2 ((uint32_t)0x00000400)
MartinJohnson 0:c65854d98061 7675 #define RTC_DR_MU_3 ((uint32_t)0x00000800)
MartinJohnson 0:c65854d98061 7676 #define RTC_DR_DT ((uint32_t)0x00000030)
MartinJohnson 0:c65854d98061 7677 #define RTC_DR_DT_0 ((uint32_t)0x00000010)
MartinJohnson 0:c65854d98061 7678 #define RTC_DR_DT_1 ((uint32_t)0x00000020)
MartinJohnson 0:c65854d98061 7679 #define RTC_DR_DU ((uint32_t)0x0000000F)
MartinJohnson 0:c65854d98061 7680 #define RTC_DR_DU_0 ((uint32_t)0x00000001)
MartinJohnson 0:c65854d98061 7681 #define RTC_DR_DU_1 ((uint32_t)0x00000002)
MartinJohnson 0:c65854d98061 7682 #define RTC_DR_DU_2 ((uint32_t)0x00000004)
MartinJohnson 0:c65854d98061 7683 #define RTC_DR_DU_3 ((uint32_t)0x00000008)
MartinJohnson 0:c65854d98061 7684
MartinJohnson 0:c65854d98061 7685 /******************** Bits definition for RTC_CR register *******************/
MartinJohnson 0:c65854d98061 7686 #define RTC_CR_COE ((uint32_t)0x00800000)
MartinJohnson 0:c65854d98061 7687 #define RTC_CR_OSEL ((uint32_t)0x00600000)
MartinJohnson 0:c65854d98061 7688 #define RTC_CR_OSEL_0 ((uint32_t)0x00200000)
MartinJohnson 0:c65854d98061 7689 #define RTC_CR_OSEL_1 ((uint32_t)0x00400000)
MartinJohnson 0:c65854d98061 7690 #define RTC_CR_POL ((uint32_t)0x00100000)
MartinJohnson 0:c65854d98061 7691 #define RTC_CR_COSEL ((uint32_t)0x00080000)
MartinJohnson 0:c65854d98061 7692 #define RTC_CR_BCK ((uint32_t)0x00040000)
MartinJohnson 0:c65854d98061 7693 #define RTC_CR_SUB1H ((uint32_t)0x00020000)
MartinJohnson 0:c65854d98061 7694 #define RTC_CR_ADD1H ((uint32_t)0x00010000)
MartinJohnson 0:c65854d98061 7695 #define RTC_CR_TSIE ((uint32_t)0x00008000)
MartinJohnson 0:c65854d98061 7696 #define RTC_CR_WUTIE ((uint32_t)0x00004000)
MartinJohnson 0:c65854d98061 7697 #define RTC_CR_ALRBIE ((uint32_t)0x00002000)
MartinJohnson 0:c65854d98061 7698 #define RTC_CR_ALRAIE ((uint32_t)0x00001000)
MartinJohnson 0:c65854d98061 7699 #define RTC_CR_TSE ((uint32_t)0x00000800)
MartinJohnson 0:c65854d98061 7700 #define RTC_CR_WUTE ((uint32_t)0x00000400)
MartinJohnson 0:c65854d98061 7701 #define RTC_CR_ALRBE ((uint32_t)0x00000200)
MartinJohnson 0:c65854d98061 7702 #define RTC_CR_ALRAE ((uint32_t)0x00000100)
MartinJohnson 0:c65854d98061 7703 #define RTC_CR_FMT ((uint32_t)0x00000040)
MartinJohnson 0:c65854d98061 7704 #define RTC_CR_BYPSHAD ((uint32_t)0x00000020)
MartinJohnson 0:c65854d98061 7705 #define RTC_CR_REFCKON ((uint32_t)0x00000010)
MartinJohnson 0:c65854d98061 7706 #define RTC_CR_TSEDGE ((uint32_t)0x00000008)
MartinJohnson 0:c65854d98061 7707 #define RTC_CR_WUCKSEL ((uint32_t)0x00000007)
MartinJohnson 0:c65854d98061 7708 #define RTC_CR_WUCKSEL_0 ((uint32_t)0x00000001)
MartinJohnson 0:c65854d98061 7709 #define RTC_CR_WUCKSEL_1 ((uint32_t)0x00000002)
MartinJohnson 0:c65854d98061 7710 #define RTC_CR_WUCKSEL_2 ((uint32_t)0x00000004)
MartinJohnson 0:c65854d98061 7711
MartinJohnson 0:c65854d98061 7712 /******************** Bits definition for RTC_ISR register ******************/
MartinJohnson 0:c65854d98061 7713 #define RTC_ISR_RECALPF ((uint32_t)0x00010000)
MartinJohnson 0:c65854d98061 7714 #define RTC_ISR_TAMP3F ((uint32_t)0x00008000)
MartinJohnson 0:c65854d98061 7715 #define RTC_ISR_TAMP2F ((uint32_t)0x00004000)
MartinJohnson 0:c65854d98061 7716 #define RTC_ISR_TAMP1F ((uint32_t)0x00002000)
MartinJohnson 0:c65854d98061 7717 #define RTC_ISR_TSOVF ((uint32_t)0x00001000)
MartinJohnson 0:c65854d98061 7718 #define RTC_ISR_TSF ((uint32_t)0x00000800)
MartinJohnson 0:c65854d98061 7719 #define RTC_ISR_WUTF ((uint32_t)0x00000400)
MartinJohnson 0:c65854d98061 7720 #define RTC_ISR_ALRBF ((uint32_t)0x00000200)
MartinJohnson 0:c65854d98061 7721 #define RTC_ISR_ALRAF ((uint32_t)0x00000100)
MartinJohnson 0:c65854d98061 7722 #define RTC_ISR_INIT ((uint32_t)0x00000080)
MartinJohnson 0:c65854d98061 7723 #define RTC_ISR_INITF ((uint32_t)0x00000040)
MartinJohnson 0:c65854d98061 7724 #define RTC_ISR_RSF ((uint32_t)0x00000020)
MartinJohnson 0:c65854d98061 7725 #define RTC_ISR_INITS ((uint32_t)0x00000010)
MartinJohnson 0:c65854d98061 7726 #define RTC_ISR_SHPF ((uint32_t)0x00000008)
MartinJohnson 0:c65854d98061 7727 #define RTC_ISR_WUTWF ((uint32_t)0x00000004)
MartinJohnson 0:c65854d98061 7728 #define RTC_ISR_ALRBWF ((uint32_t)0x00000002)
MartinJohnson 0:c65854d98061 7729 #define RTC_ISR_ALRAWF ((uint32_t)0x00000001)
MartinJohnson 0:c65854d98061 7730
MartinJohnson 0:c65854d98061 7731 /******************** Bits definition for RTC_PRER register *****************/
MartinJohnson 0:c65854d98061 7732 #define RTC_PRER_PREDIV_A ((uint32_t)0x007F0000)
MartinJohnson 0:c65854d98061 7733 #define RTC_PRER_PREDIV_S ((uint32_t)0x00007FFF)
MartinJohnson 0:c65854d98061 7734
MartinJohnson 0:c65854d98061 7735 /******************** Bits definition for RTC_WUTR register *****************/
MartinJohnson 0:c65854d98061 7736 #define RTC_WUTR_WUT ((uint32_t)0x0000FFFF)
MartinJohnson 0:c65854d98061 7737
MartinJohnson 0:c65854d98061 7738 /******************** Bits definition for RTC_ALRMAR register ***************/
MartinJohnson 0:c65854d98061 7739 #define RTC_ALRMAR_MSK4 ((uint32_t)0x80000000)
MartinJohnson 0:c65854d98061 7740 #define RTC_ALRMAR_WDSEL ((uint32_t)0x40000000)
MartinJohnson 0:c65854d98061 7741 #define RTC_ALRMAR_DT ((uint32_t)0x30000000)
MartinJohnson 0:c65854d98061 7742 #define RTC_ALRMAR_DT_0 ((uint32_t)0x10000000)
MartinJohnson 0:c65854d98061 7743 #define RTC_ALRMAR_DT_1 ((uint32_t)0x20000000)
MartinJohnson 0:c65854d98061 7744 #define RTC_ALRMAR_DU ((uint32_t)0x0F000000)
MartinJohnson 0:c65854d98061 7745 #define RTC_ALRMAR_DU_0 ((uint32_t)0x01000000)
MartinJohnson 0:c65854d98061 7746 #define RTC_ALRMAR_DU_1 ((uint32_t)0x02000000)
MartinJohnson 0:c65854d98061 7747 #define RTC_ALRMAR_DU_2 ((uint32_t)0x04000000)
MartinJohnson 0:c65854d98061 7748 #define RTC_ALRMAR_DU_3 ((uint32_t)0x08000000)
MartinJohnson 0:c65854d98061 7749 #define RTC_ALRMAR_MSK3 ((uint32_t)0x00800000)
MartinJohnson 0:c65854d98061 7750 #define RTC_ALRMAR_PM ((uint32_t)0x00400000)
MartinJohnson 0:c65854d98061 7751 #define RTC_ALRMAR_HT ((uint32_t)0x00300000)
MartinJohnson 0:c65854d98061 7752 #define RTC_ALRMAR_HT_0 ((uint32_t)0x00100000)
MartinJohnson 0:c65854d98061 7753 #define RTC_ALRMAR_HT_1 ((uint32_t)0x00200000)
MartinJohnson 0:c65854d98061 7754 #define RTC_ALRMAR_HU ((uint32_t)0x000F0000)
MartinJohnson 0:c65854d98061 7755 #define RTC_ALRMAR_HU_0 ((uint32_t)0x00010000)
MartinJohnson 0:c65854d98061 7756 #define RTC_ALRMAR_HU_1 ((uint32_t)0x00020000)
MartinJohnson 0:c65854d98061 7757 #define RTC_ALRMAR_HU_2 ((uint32_t)0x00040000)
MartinJohnson 0:c65854d98061 7758 #define RTC_ALRMAR_HU_3 ((uint32_t)0x00080000)
MartinJohnson 0:c65854d98061 7759 #define RTC_ALRMAR_MSK2 ((uint32_t)0x00008000)
MartinJohnson 0:c65854d98061 7760 #define RTC_ALRMAR_MNT ((uint32_t)0x00007000)
MartinJohnson 0:c65854d98061 7761 #define RTC_ALRMAR_MNT_0 ((uint32_t)0x00001000)
MartinJohnson 0:c65854d98061 7762 #define RTC_ALRMAR_MNT_1 ((uint32_t)0x00002000)
MartinJohnson 0:c65854d98061 7763 #define RTC_ALRMAR_MNT_2 ((uint32_t)0x00004000)
MartinJohnson 0:c65854d98061 7764 #define RTC_ALRMAR_MNU ((uint32_t)0x00000F00)
MartinJohnson 0:c65854d98061 7765 #define RTC_ALRMAR_MNU_0 ((uint32_t)0x00000100)
MartinJohnson 0:c65854d98061 7766 #define RTC_ALRMAR_MNU_1 ((uint32_t)0x00000200)
MartinJohnson 0:c65854d98061 7767 #define RTC_ALRMAR_MNU_2 ((uint32_t)0x00000400)
MartinJohnson 0:c65854d98061 7768 #define RTC_ALRMAR_MNU_3 ((uint32_t)0x00000800)
MartinJohnson 0:c65854d98061 7769 #define RTC_ALRMAR_MSK1 ((uint32_t)0x00000080)
MartinJohnson 0:c65854d98061 7770 #define RTC_ALRMAR_ST ((uint32_t)0x00000070)
MartinJohnson 0:c65854d98061 7771 #define RTC_ALRMAR_ST_0 ((uint32_t)0x00000010)
MartinJohnson 0:c65854d98061 7772 #define RTC_ALRMAR_ST_1 ((uint32_t)0x00000020)
MartinJohnson 0:c65854d98061 7773 #define RTC_ALRMAR_ST_2 ((uint32_t)0x00000040)
MartinJohnson 0:c65854d98061 7774 #define RTC_ALRMAR_SU ((uint32_t)0x0000000F)
MartinJohnson 0:c65854d98061 7775 #define RTC_ALRMAR_SU_0 ((uint32_t)0x00000001)
MartinJohnson 0:c65854d98061 7776 #define RTC_ALRMAR_SU_1 ((uint32_t)0x00000002)
MartinJohnson 0:c65854d98061 7777 #define RTC_ALRMAR_SU_2 ((uint32_t)0x00000004)
MartinJohnson 0:c65854d98061 7778 #define RTC_ALRMAR_SU_3 ((uint32_t)0x00000008)
MartinJohnson 0:c65854d98061 7779
MartinJohnson 0:c65854d98061 7780 /******************** Bits definition for RTC_ALRMBR register ***************/
MartinJohnson 0:c65854d98061 7781 #define RTC_ALRMBR_MSK4 ((uint32_t)0x80000000)
MartinJohnson 0:c65854d98061 7782 #define RTC_ALRMBR_WDSEL ((uint32_t)0x40000000)
MartinJohnson 0:c65854d98061 7783 #define RTC_ALRMBR_DT ((uint32_t)0x30000000)
MartinJohnson 0:c65854d98061 7784 #define RTC_ALRMBR_DT_0 ((uint32_t)0x10000000)
MartinJohnson 0:c65854d98061 7785 #define RTC_ALRMBR_DT_1 ((uint32_t)0x20000000)
MartinJohnson 0:c65854d98061 7786 #define RTC_ALRMBR_DU ((uint32_t)0x0F000000)
MartinJohnson 0:c65854d98061 7787 #define RTC_ALRMBR_DU_0 ((uint32_t)0x01000000)
MartinJohnson 0:c65854d98061 7788 #define RTC_ALRMBR_DU_1 ((uint32_t)0x02000000)
MartinJohnson 0:c65854d98061 7789 #define RTC_ALRMBR_DU_2 ((uint32_t)0x04000000)
MartinJohnson 0:c65854d98061 7790 #define RTC_ALRMBR_DU_3 ((uint32_t)0x08000000)
MartinJohnson 0:c65854d98061 7791 #define RTC_ALRMBR_MSK3 ((uint32_t)0x00800000)
MartinJohnson 0:c65854d98061 7792 #define RTC_ALRMBR_PM ((uint32_t)0x00400000)
MartinJohnson 0:c65854d98061 7793 #define RTC_ALRMBR_HT ((uint32_t)0x00300000)
MartinJohnson 0:c65854d98061 7794 #define RTC_ALRMBR_HT_0 ((uint32_t)0x00100000)
MartinJohnson 0:c65854d98061 7795 #define RTC_ALRMBR_HT_1 ((uint32_t)0x00200000)
MartinJohnson 0:c65854d98061 7796 #define RTC_ALRMBR_HU ((uint32_t)0x000F0000)
MartinJohnson 0:c65854d98061 7797 #define RTC_ALRMBR_HU_0 ((uint32_t)0x00010000)
MartinJohnson 0:c65854d98061 7798 #define RTC_ALRMBR_HU_1 ((uint32_t)0x00020000)
MartinJohnson 0:c65854d98061 7799 #define RTC_ALRMBR_HU_2 ((uint32_t)0x00040000)
MartinJohnson 0:c65854d98061 7800 #define RTC_ALRMBR_HU_3 ((uint32_t)0x00080000)
MartinJohnson 0:c65854d98061 7801 #define RTC_ALRMBR_MSK2 ((uint32_t)0x00008000)
MartinJohnson 0:c65854d98061 7802 #define RTC_ALRMBR_MNT ((uint32_t)0x00007000)
MartinJohnson 0:c65854d98061 7803 #define RTC_ALRMBR_MNT_0 ((uint32_t)0x00001000)
MartinJohnson 0:c65854d98061 7804 #define RTC_ALRMBR_MNT_1 ((uint32_t)0x00002000)
MartinJohnson 0:c65854d98061 7805 #define RTC_ALRMBR_MNT_2 ((uint32_t)0x00004000)
MartinJohnson 0:c65854d98061 7806 #define RTC_ALRMBR_MNU ((uint32_t)0x00000F00)
MartinJohnson 0:c65854d98061 7807 #define RTC_ALRMBR_MNU_0 ((uint32_t)0x00000100)
MartinJohnson 0:c65854d98061 7808 #define RTC_ALRMBR_MNU_1 ((uint32_t)0x00000200)
MartinJohnson 0:c65854d98061 7809 #define RTC_ALRMBR_MNU_2 ((uint32_t)0x00000400)
MartinJohnson 0:c65854d98061 7810 #define RTC_ALRMBR_MNU_3 ((uint32_t)0x00000800)
MartinJohnson 0:c65854d98061 7811 #define RTC_ALRMBR_MSK1 ((uint32_t)0x00000080)
MartinJohnson 0:c65854d98061 7812 #define RTC_ALRMBR_ST ((uint32_t)0x00000070)
MartinJohnson 0:c65854d98061 7813 #define RTC_ALRMBR_ST_0 ((uint32_t)0x00000010)
MartinJohnson 0:c65854d98061 7814 #define RTC_ALRMBR_ST_1 ((uint32_t)0x00000020)
MartinJohnson 0:c65854d98061 7815 #define RTC_ALRMBR_ST_2 ((uint32_t)0x00000040)
MartinJohnson 0:c65854d98061 7816 #define RTC_ALRMBR_SU ((uint32_t)0x0000000F)
MartinJohnson 0:c65854d98061 7817 #define RTC_ALRMBR_SU_0 ((uint32_t)0x00000001)
MartinJohnson 0:c65854d98061 7818 #define RTC_ALRMBR_SU_1 ((uint32_t)0x00000002)
MartinJohnson 0:c65854d98061 7819 #define RTC_ALRMBR_SU_2 ((uint32_t)0x00000004)
MartinJohnson 0:c65854d98061 7820 #define RTC_ALRMBR_SU_3 ((uint32_t)0x00000008)
MartinJohnson 0:c65854d98061 7821
MartinJohnson 0:c65854d98061 7822 /******************** Bits definition for RTC_WPR register ******************/
MartinJohnson 0:c65854d98061 7823 #define RTC_WPR_KEY ((uint32_t)0x000000FF)
MartinJohnson 0:c65854d98061 7824
MartinJohnson 0:c65854d98061 7825 /******************** Bits definition for RTC_SSR register ******************/
MartinJohnson 0:c65854d98061 7826 #define RTC_SSR_SS ((uint32_t)0x0000FFFF)
MartinJohnson 0:c65854d98061 7827
MartinJohnson 0:c65854d98061 7828 /******************** Bits definition for RTC_SHIFTR register ***************/
MartinJohnson 0:c65854d98061 7829 #define RTC_SHIFTR_SUBFS ((uint32_t)0x00007FFF)
MartinJohnson 0:c65854d98061 7830 #define RTC_SHIFTR_ADD1S ((uint32_t)0x80000000)
MartinJohnson 0:c65854d98061 7831
MartinJohnson 0:c65854d98061 7832 /******************** Bits definition for RTC_TSTR register *****************/
MartinJohnson 0:c65854d98061 7833 #define RTC_TSTR_PM ((uint32_t)0x00400000)
MartinJohnson 0:c65854d98061 7834 #define RTC_TSTR_HT ((uint32_t)0x00300000)
MartinJohnson 0:c65854d98061 7835 #define RTC_TSTR_HT_0 ((uint32_t)0x00100000)
MartinJohnson 0:c65854d98061 7836 #define RTC_TSTR_HT_1 ((uint32_t)0x00200000)
MartinJohnson 0:c65854d98061 7837 #define RTC_TSTR_HU ((uint32_t)0x000F0000)
MartinJohnson 0:c65854d98061 7838 #define RTC_TSTR_HU_0 ((uint32_t)0x00010000)
MartinJohnson 0:c65854d98061 7839 #define RTC_TSTR_HU_1 ((uint32_t)0x00020000)
MartinJohnson 0:c65854d98061 7840 #define RTC_TSTR_HU_2 ((uint32_t)0x00040000)
MartinJohnson 0:c65854d98061 7841 #define RTC_TSTR_HU_3 ((uint32_t)0x00080000)
MartinJohnson 0:c65854d98061 7842 #define RTC_TSTR_MNT ((uint32_t)0x00007000)
MartinJohnson 0:c65854d98061 7843 #define RTC_TSTR_MNT_0 ((uint32_t)0x00001000)
MartinJohnson 0:c65854d98061 7844 #define RTC_TSTR_MNT_1 ((uint32_t)0x00002000)
MartinJohnson 0:c65854d98061 7845 #define RTC_TSTR_MNT_2 ((uint32_t)0x00004000)
MartinJohnson 0:c65854d98061 7846 #define RTC_TSTR_MNU ((uint32_t)0x00000F00)
MartinJohnson 0:c65854d98061 7847 #define RTC_TSTR_MNU_0 ((uint32_t)0x00000100)
MartinJohnson 0:c65854d98061 7848 #define RTC_TSTR_MNU_1 ((uint32_t)0x00000200)
MartinJohnson 0:c65854d98061 7849 #define RTC_TSTR_MNU_2 ((uint32_t)0x00000400)
MartinJohnson 0:c65854d98061 7850 #define RTC_TSTR_MNU_3 ((uint32_t)0x00000800)
MartinJohnson 0:c65854d98061 7851 #define RTC_TSTR_ST ((uint32_t)0x00000070)
MartinJohnson 0:c65854d98061 7852 #define RTC_TSTR_ST_0 ((uint32_t)0x00000010)
MartinJohnson 0:c65854d98061 7853 #define RTC_TSTR_ST_1 ((uint32_t)0x00000020)
MartinJohnson 0:c65854d98061 7854 #define RTC_TSTR_ST_2 ((uint32_t)0x00000040)
MartinJohnson 0:c65854d98061 7855 #define RTC_TSTR_SU ((uint32_t)0x0000000F)
MartinJohnson 0:c65854d98061 7856 #define RTC_TSTR_SU_0 ((uint32_t)0x00000001)
MartinJohnson 0:c65854d98061 7857 #define RTC_TSTR_SU_1 ((uint32_t)0x00000002)
MartinJohnson 0:c65854d98061 7858 #define RTC_TSTR_SU_2 ((uint32_t)0x00000004)
MartinJohnson 0:c65854d98061 7859 #define RTC_TSTR_SU_3 ((uint32_t)0x00000008)
MartinJohnson 0:c65854d98061 7860
MartinJohnson 0:c65854d98061 7861 /******************** Bits definition for RTC_TSDR register *****************/
MartinJohnson 0:c65854d98061 7862 #define RTC_TSDR_WDU ((uint32_t)0x0000E000)
MartinJohnson 0:c65854d98061 7863 #define RTC_TSDR_WDU_0 ((uint32_t)0x00002000)
MartinJohnson 0:c65854d98061 7864 #define RTC_TSDR_WDU_1 ((uint32_t)0x00004000)
MartinJohnson 0:c65854d98061 7865 #define RTC_TSDR_WDU_2 ((uint32_t)0x00008000)
MartinJohnson 0:c65854d98061 7866 #define RTC_TSDR_MT ((uint32_t)0x00001000)
MartinJohnson 0:c65854d98061 7867 #define RTC_TSDR_MU ((uint32_t)0x00000F00)
MartinJohnson 0:c65854d98061 7868 #define RTC_TSDR_MU_0 ((uint32_t)0x00000100)
MartinJohnson 0:c65854d98061 7869 #define RTC_TSDR_MU_1 ((uint32_t)0x00000200)
MartinJohnson 0:c65854d98061 7870 #define RTC_TSDR_MU_2 ((uint32_t)0x00000400)
MartinJohnson 0:c65854d98061 7871 #define RTC_TSDR_MU_3 ((uint32_t)0x00000800)
MartinJohnson 0:c65854d98061 7872 #define RTC_TSDR_DT ((uint32_t)0x00000030)
MartinJohnson 0:c65854d98061 7873 #define RTC_TSDR_DT_0 ((uint32_t)0x00000010)
MartinJohnson 0:c65854d98061 7874 #define RTC_TSDR_DT_1 ((uint32_t)0x00000020)
MartinJohnson 0:c65854d98061 7875 #define RTC_TSDR_DU ((uint32_t)0x0000000F)
MartinJohnson 0:c65854d98061 7876 #define RTC_TSDR_DU_0 ((uint32_t)0x00000001)
MartinJohnson 0:c65854d98061 7877 #define RTC_TSDR_DU_1 ((uint32_t)0x00000002)
MartinJohnson 0:c65854d98061 7878 #define RTC_TSDR_DU_2 ((uint32_t)0x00000004)
MartinJohnson 0:c65854d98061 7879 #define RTC_TSDR_DU_3 ((uint32_t)0x00000008)
MartinJohnson 0:c65854d98061 7880
MartinJohnson 0:c65854d98061 7881 /******************** Bits definition for RTC_TSSSR register ****************/
MartinJohnson 0:c65854d98061 7882 #define RTC_TSSSR_SS ((uint32_t)0x0000FFFF)
MartinJohnson 0:c65854d98061 7883
MartinJohnson 0:c65854d98061 7884 /******************** Bits definition for RTC_CAL register *****************/
MartinJohnson 0:c65854d98061 7885 #define RTC_CALR_CALP ((uint32_t)0x00008000)
MartinJohnson 0:c65854d98061 7886 #define RTC_CALR_CALW8 ((uint32_t)0x00004000)
MartinJohnson 0:c65854d98061 7887 #define RTC_CALR_CALW16 ((uint32_t)0x00002000)
MartinJohnson 0:c65854d98061 7888 #define RTC_CALR_CALM ((uint32_t)0x000001FF)
MartinJohnson 0:c65854d98061 7889 #define RTC_CALR_CALM_0 ((uint32_t)0x00000001)
MartinJohnson 0:c65854d98061 7890 #define RTC_CALR_CALM_1 ((uint32_t)0x00000002)
MartinJohnson 0:c65854d98061 7891 #define RTC_CALR_CALM_2 ((uint32_t)0x00000004)
MartinJohnson 0:c65854d98061 7892 #define RTC_CALR_CALM_3 ((uint32_t)0x00000008)
MartinJohnson 0:c65854d98061 7893 #define RTC_CALR_CALM_4 ((uint32_t)0x00000010)
MartinJohnson 0:c65854d98061 7894 #define RTC_CALR_CALM_5 ((uint32_t)0x00000020)
MartinJohnson 0:c65854d98061 7895 #define RTC_CALR_CALM_6 ((uint32_t)0x00000040)
MartinJohnson 0:c65854d98061 7896 #define RTC_CALR_CALM_7 ((uint32_t)0x00000080)
MartinJohnson 0:c65854d98061 7897 #define RTC_CALR_CALM_8 ((uint32_t)0x00000100)
MartinJohnson 0:c65854d98061 7898
MartinJohnson 0:c65854d98061 7899 /******************** Bits definition for RTC_TAFCR register ****************/
MartinJohnson 0:c65854d98061 7900 #define RTC_TAFCR_ALARMOUTTYPE ((uint32_t)0x00040000)
MartinJohnson 0:c65854d98061 7901 #define RTC_TAFCR_TAMPPUDIS ((uint32_t)0x00008000)
MartinJohnson 0:c65854d98061 7902 #define RTC_TAFCR_TAMPPRCH ((uint32_t)0x00006000)
MartinJohnson 0:c65854d98061 7903 #define RTC_TAFCR_TAMPPRCH_0 ((uint32_t)0x00002000)
MartinJohnson 0:c65854d98061 7904 #define RTC_TAFCR_TAMPPRCH_1 ((uint32_t)0x00004000)
MartinJohnson 0:c65854d98061 7905 #define RTC_TAFCR_TAMPFLT ((uint32_t)0x00001800)
MartinJohnson 0:c65854d98061 7906 #define RTC_TAFCR_TAMPFLT_0 ((uint32_t)0x00000800)
MartinJohnson 0:c65854d98061 7907 #define RTC_TAFCR_TAMPFLT_1 ((uint32_t)0x00001000)
MartinJohnson 0:c65854d98061 7908 #define RTC_TAFCR_TAMPFREQ ((uint32_t)0x00000700)
MartinJohnson 0:c65854d98061 7909 #define RTC_TAFCR_TAMPFREQ_0 ((uint32_t)0x00000100)
MartinJohnson 0:c65854d98061 7910 #define RTC_TAFCR_TAMPFREQ_1 ((uint32_t)0x00000200)
MartinJohnson 0:c65854d98061 7911 #define RTC_TAFCR_TAMPFREQ_2 ((uint32_t)0x00000400)
MartinJohnson 0:c65854d98061 7912 #define RTC_TAFCR_TAMPTS ((uint32_t)0x00000080)
MartinJohnson 0:c65854d98061 7913 #define RTC_TAFCR_TAMP3TRG ((uint32_t)0x00000040)
MartinJohnson 0:c65854d98061 7914 #define RTC_TAFCR_TAMP3E ((uint32_t)0x00000020)
MartinJohnson 0:c65854d98061 7915 #define RTC_TAFCR_TAMP2TRG ((uint32_t)0x00000010)
MartinJohnson 0:c65854d98061 7916 #define RTC_TAFCR_TAMP2E ((uint32_t)0x00000008)
MartinJohnson 0:c65854d98061 7917 #define RTC_TAFCR_TAMPIE ((uint32_t)0x00000004)
MartinJohnson 0:c65854d98061 7918 #define RTC_TAFCR_TAMP1TRG ((uint32_t)0x00000002)
MartinJohnson 0:c65854d98061 7919 #define RTC_TAFCR_TAMP1E ((uint32_t)0x00000001)
MartinJohnson 0:c65854d98061 7920
MartinJohnson 0:c65854d98061 7921 /******************** Bits definition for RTC_ALRMASSR register *************/
MartinJohnson 0:c65854d98061 7922 #define RTC_ALRMASSR_MASKSS ((uint32_t)0x0F000000)
MartinJohnson 0:c65854d98061 7923 #define RTC_ALRMASSR_MASKSS_0 ((uint32_t)0x01000000)
MartinJohnson 0:c65854d98061 7924 #define RTC_ALRMASSR_MASKSS_1 ((uint32_t)0x02000000)
MartinJohnson 0:c65854d98061 7925 #define RTC_ALRMASSR_MASKSS_2 ((uint32_t)0x04000000)
MartinJohnson 0:c65854d98061 7926 #define RTC_ALRMASSR_MASKSS_3 ((uint32_t)0x08000000)
MartinJohnson 0:c65854d98061 7927 #define RTC_ALRMASSR_SS ((uint32_t)0x00007FFF)
MartinJohnson 0:c65854d98061 7928
MartinJohnson 0:c65854d98061 7929 /******************** Bits definition for RTC_ALRMBSSR register *************/
MartinJohnson 0:c65854d98061 7930 #define RTC_ALRMBSSR_MASKSS ((uint32_t)0x0F000000)
MartinJohnson 0:c65854d98061 7931 #define RTC_ALRMBSSR_MASKSS_0 ((uint32_t)0x01000000)
MartinJohnson 0:c65854d98061 7932 #define RTC_ALRMBSSR_MASKSS_1 ((uint32_t)0x02000000)
MartinJohnson 0:c65854d98061 7933 #define RTC_ALRMBSSR_MASKSS_2 ((uint32_t)0x04000000)
MartinJohnson 0:c65854d98061 7934 #define RTC_ALRMBSSR_MASKSS_3 ((uint32_t)0x08000000)
MartinJohnson 0:c65854d98061 7935 #define RTC_ALRMBSSR_SS ((uint32_t)0x00007FFF)
MartinJohnson 0:c65854d98061 7936
MartinJohnson 0:c65854d98061 7937 /******************** Bits definition for RTC_BKP0R register ****************/
MartinJohnson 0:c65854d98061 7938 #define RTC_BKP0R ((uint32_t)0xFFFFFFFF)
MartinJohnson 0:c65854d98061 7939
MartinJohnson 0:c65854d98061 7940 /******************** Bits definition for RTC_BKP1R register ****************/
MartinJohnson 0:c65854d98061 7941 #define RTC_BKP1R ((uint32_t)0xFFFFFFFF)
MartinJohnson 0:c65854d98061 7942
MartinJohnson 0:c65854d98061 7943 /******************** Bits definition for RTC_BKP2R register ****************/
MartinJohnson 0:c65854d98061 7944 #define RTC_BKP2R ((uint32_t)0xFFFFFFFF)
MartinJohnson 0:c65854d98061 7945
MartinJohnson 0:c65854d98061 7946 /******************** Bits definition for RTC_BKP3R register ****************/
MartinJohnson 0:c65854d98061 7947 #define RTC_BKP3R ((uint32_t)0xFFFFFFFF)
MartinJohnson 0:c65854d98061 7948
MartinJohnson 0:c65854d98061 7949 /******************** Bits definition for RTC_BKP4R register ****************/
MartinJohnson 0:c65854d98061 7950 #define RTC_BKP4R ((uint32_t)0xFFFFFFFF)
MartinJohnson 0:c65854d98061 7951
MartinJohnson 0:c65854d98061 7952 /******************** Bits definition for RTC_BKP5R register ****************/
MartinJohnson 0:c65854d98061 7953 #define RTC_BKP5R ((uint32_t)0xFFFFFFFF)
MartinJohnson 0:c65854d98061 7954
MartinJohnson 0:c65854d98061 7955 /******************** Bits definition for RTC_BKP6R register ****************/
MartinJohnson 0:c65854d98061 7956 #define RTC_BKP6R ((uint32_t)0xFFFFFFFF)
MartinJohnson 0:c65854d98061 7957
MartinJohnson 0:c65854d98061 7958 /******************** Bits definition for RTC_BKP7R register ****************/
MartinJohnson 0:c65854d98061 7959 #define RTC_BKP7R ((uint32_t)0xFFFFFFFF)
MartinJohnson 0:c65854d98061 7960
MartinJohnson 0:c65854d98061 7961 /******************** Bits definition for RTC_BKP8R register ****************/
MartinJohnson 0:c65854d98061 7962 #define RTC_BKP8R ((uint32_t)0xFFFFFFFF)
MartinJohnson 0:c65854d98061 7963
MartinJohnson 0:c65854d98061 7964 /******************** Bits definition for RTC_BKP9R register ****************/
MartinJohnson 0:c65854d98061 7965 #define RTC_BKP9R ((uint32_t)0xFFFFFFFF)
MartinJohnson 0:c65854d98061 7966
MartinJohnson 0:c65854d98061 7967 /******************** Bits definition for RTC_BKP10R register ***************/
MartinJohnson 0:c65854d98061 7968 #define RTC_BKP10R ((uint32_t)0xFFFFFFFF)
MartinJohnson 0:c65854d98061 7969
MartinJohnson 0:c65854d98061 7970 /******************** Bits definition for RTC_BKP11R register ***************/
MartinJohnson 0:c65854d98061 7971 #define RTC_BKP11R ((uint32_t)0xFFFFFFFF)
MartinJohnson 0:c65854d98061 7972
MartinJohnson 0:c65854d98061 7973 /******************** Bits definition for RTC_BKP12R register ***************/
MartinJohnson 0:c65854d98061 7974 #define RTC_BKP12R ((uint32_t)0xFFFFFFFF)
MartinJohnson 0:c65854d98061 7975
MartinJohnson 0:c65854d98061 7976 /******************** Bits definition for RTC_BKP13R register ***************/
MartinJohnson 0:c65854d98061 7977 #define RTC_BKP13R ((uint32_t)0xFFFFFFFF)
MartinJohnson 0:c65854d98061 7978
MartinJohnson 0:c65854d98061 7979 /******************** Bits definition for RTC_BKP14R register ***************/
MartinJohnson 0:c65854d98061 7980 #define RTC_BKP14R ((uint32_t)0xFFFFFFFF)
MartinJohnson 0:c65854d98061 7981
MartinJohnson 0:c65854d98061 7982 /******************** Bits definition for RTC_BKP15R register ***************/
MartinJohnson 0:c65854d98061 7983 #define RTC_BKP15R ((uint32_t)0xFFFFFFFF)
MartinJohnson 0:c65854d98061 7984
MartinJohnson 0:c65854d98061 7985 /******************************************************************************/
MartinJohnson 0:c65854d98061 7986 /* */
MartinJohnson 0:c65854d98061 7987 /* Serial Peripheral Interface (SPI) */
MartinJohnson 0:c65854d98061 7988 /* */
MartinJohnson 0:c65854d98061 7989 /******************************************************************************/
MartinJohnson 0:c65854d98061 7990 /******************* Bit definition for SPI_CR1 register ********************/
MartinJohnson 0:c65854d98061 7991 #define SPI_CR1_CPHA ((uint16_t)0x0001) /*!< Clock Phase */
MartinJohnson 0:c65854d98061 7992 #define SPI_CR1_CPOL ((uint16_t)0x0002) /*!< Clock Polarity */
MartinJohnson 0:c65854d98061 7993 #define SPI_CR1_MSTR ((uint16_t)0x0004) /*!< Master Selection */
MartinJohnson 0:c65854d98061 7994
MartinJohnson 0:c65854d98061 7995 #define SPI_CR1_BR ((uint16_t)0x0038) /*!< BR[2:0] bits (Baud Rate Control) */
MartinJohnson 0:c65854d98061 7996 #define SPI_CR1_BR_0 ((uint16_t)0x0008) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 7997 #define SPI_CR1_BR_1 ((uint16_t)0x0010) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 7998 #define SPI_CR1_BR_2 ((uint16_t)0x0020) /*!< Bit 2 */
MartinJohnson 0:c65854d98061 7999
MartinJohnson 0:c65854d98061 8000 #define SPI_CR1_SPE ((uint16_t)0x0040) /*!< SPI Enable */
MartinJohnson 0:c65854d98061 8001 #define SPI_CR1_LSBFIRST ((uint16_t)0x0080) /*!< Frame Format */
MartinJohnson 0:c65854d98061 8002 #define SPI_CR1_SSI ((uint16_t)0x0100) /*!< Internal slave select */
MartinJohnson 0:c65854d98061 8003 #define SPI_CR1_SSM ((uint16_t)0x0200) /*!< Software slave management */
MartinJohnson 0:c65854d98061 8004 #define SPI_CR1_RXONLY ((uint16_t)0x0400) /*!< Receive only */
MartinJohnson 0:c65854d98061 8005 #define SPI_CR1_CRCL ((uint16_t)0x0800) /*!< CRC Length */
MartinJohnson 0:c65854d98061 8006 #define SPI_CR1_CRCNEXT ((uint16_t)0x1000) /*!< Transmit CRC next */
MartinJohnson 0:c65854d98061 8007 #define SPI_CR1_CRCEN ((uint16_t)0x2000) /*!< Hardware CRC calculation enable */
MartinJohnson 0:c65854d98061 8008 #define SPI_CR1_BIDIOE ((uint16_t)0x4000) /*!< Output enable in bidirectional mode */
MartinJohnson 0:c65854d98061 8009 #define SPI_CR1_BIDIMODE ((uint16_t)0x8000) /*!< Bidirectional data mode enable */
MartinJohnson 0:c65854d98061 8010
MartinJohnson 0:c65854d98061 8011 /******************* Bit definition for SPI_CR2 register ********************/
MartinJohnson 0:c65854d98061 8012 #define SPI_CR2_RXDMAEN ((uint16_t)0x0001) /*!< Rx Buffer DMA Enable */
MartinJohnson 0:c65854d98061 8013 #define SPI_CR2_TXDMAEN ((uint16_t)0x0002) /*!< Tx Buffer DMA Enable */
MartinJohnson 0:c65854d98061 8014 #define SPI_CR2_SSOE ((uint16_t)0x0004) /*!< SS Output Enable */
MartinJohnson 0:c65854d98061 8015 #define SPI_CR2_NSSP ((uint16_t)0x0008) /*!< NSS pulse management Enable */
MartinJohnson 0:c65854d98061 8016 #define SPI_CR2_FRF ((uint16_t)0x0010) /*!< Frame Format Enable */
MartinJohnson 0:c65854d98061 8017 #define SPI_CR2_ERRIE ((uint16_t)0x0020) /*!< Error Interrupt Enable */
MartinJohnson 0:c65854d98061 8018 #define SPI_CR2_RXNEIE ((uint16_t)0x0040) /*!< RX buffer Not Empty Interrupt Enable */
MartinJohnson 0:c65854d98061 8019 #define SPI_CR2_TXEIE ((uint16_t)0x0080) /*!< Tx buffer Empty Interrupt Enable */
MartinJohnson 0:c65854d98061 8020
MartinJohnson 0:c65854d98061 8021 #define SPI_CR2_DS ((uint16_t)0x0F00) /*!< DS[3:0] Data Size */
MartinJohnson 0:c65854d98061 8022 #define SPI_CR2_DS_0 ((uint16_t)0x0100) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 8023 #define SPI_CR2_DS_1 ((uint16_t)0x0200) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 8024 #define SPI_CR2_DS_2 ((uint16_t)0x0400) /*!< Bit 2 */
MartinJohnson 0:c65854d98061 8025 #define SPI_CR2_DS_3 ((uint16_t)0x0800) /*!< Bit 3 */
MartinJohnson 0:c65854d98061 8026
MartinJohnson 0:c65854d98061 8027 #define SPI_CR2_FRXTH ((uint16_t)0x1000) /*!< FIFO reception Threshold */
MartinJohnson 0:c65854d98061 8028 #define SPI_CR2_LDMARX ((uint16_t)0x2000) /*!< Last DMA transfer for reception */
MartinJohnson 0:c65854d98061 8029 #define SPI_CR2_LDMATX ((uint16_t)0x4000) /*!< Last DMA transfer for transmission */
MartinJohnson 0:c65854d98061 8030
MartinJohnson 0:c65854d98061 8031 /******************** Bit definition for SPI_SR register ********************/
MartinJohnson 0:c65854d98061 8032 #define SPI_SR_RXNE ((uint16_t)0x0001) /*!< Receive buffer Not Empty */
MartinJohnson 0:c65854d98061 8033 #define SPI_SR_TXE ((uint16_t)0x0002) /*!< Transmit buffer Empty */
MartinJohnson 0:c65854d98061 8034 #define SPI_SR_CRCERR ((uint16_t)0x0010) /*!< CRC Error flag */
MartinJohnson 0:c65854d98061 8035 #define SPI_SR_MODF ((uint16_t)0x0020) /*!< Mode fault */
MartinJohnson 0:c65854d98061 8036 #define SPI_SR_OVR ((uint16_t)0x0040) /*!< Overrun flag */
MartinJohnson 0:c65854d98061 8037 #define SPI_SR_BSY ((uint16_t)0x0080) /*!< Busy flag */
MartinJohnson 0:c65854d98061 8038 #define SPI_SR_FRE ((uint16_t)0x0100) /*!< TI frame format error */
MartinJohnson 0:c65854d98061 8039 #define SPI_SR_FRLVL ((uint16_t)0x0600) /*!< FIFO Reception Level */
MartinJohnson 0:c65854d98061 8040 #define SPI_SR_FRLVL_0 ((uint16_t)0x0200) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 8041 #define SPI_SR_FRLVL_1 ((uint16_t)0x0400) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 8042 #define SPI_SR_FTLVL ((uint16_t)0x1800) /*!< FIFO Transmission Level */
MartinJohnson 0:c65854d98061 8043 #define SPI_SR_FTLVL_0 ((uint16_t)0x0800) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 8044 #define SPI_SR_FTLVL_1 ((uint16_t)0x1000) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 8045
MartinJohnson 0:c65854d98061 8046 /******************** Bit definition for SPI_DR register ********************/
MartinJohnson 0:c65854d98061 8047 #define SPI_DR_DR ((uint16_t)0xFFFF) /*!< Data Register */
MartinJohnson 0:c65854d98061 8048
MartinJohnson 0:c65854d98061 8049 /******************* Bit definition for SPI_CRCPR register ******************/
MartinJohnson 0:c65854d98061 8050 #define SPI_CRCPR_CRCPOLY ((uint16_t)0xFFFF) /*!< CRC polynomial register */
MartinJohnson 0:c65854d98061 8051
MartinJohnson 0:c65854d98061 8052 /****************** Bit definition for SPI_RXCRCR register ******************/
MartinJohnson 0:c65854d98061 8053 #define SPI_RXCRCR_RXCRC ((uint16_t)0xFFFF) /*!< Rx CRC Register */
MartinJohnson 0:c65854d98061 8054
MartinJohnson 0:c65854d98061 8055 /****************** Bit definition for SPI_TXCRCR register ******************/
MartinJohnson 0:c65854d98061 8056 #define SPI_TXCRCR_TXCRC ((uint16_t)0xFFFF) /*!< Tx CRC Register */
MartinJohnson 0:c65854d98061 8057
MartinJohnson 0:c65854d98061 8058 /****************** Bit definition for SPI_I2SCFGR register *****************/
MartinJohnson 0:c65854d98061 8059 #define SPI_I2SCFGR_CHLEN ((uint16_t)0x0001) /*!<Channel length (number of bits per audio channel) */
MartinJohnson 0:c65854d98061 8060
MartinJohnson 0:c65854d98061 8061 #define SPI_I2SCFGR_DATLEN ((uint16_t)0x0006) /*!<DATLEN[1:0] bits (Data length to be transferred) */
MartinJohnson 0:c65854d98061 8062 #define SPI_I2SCFGR_DATLEN_0 ((uint16_t)0x0002) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8063 #define SPI_I2SCFGR_DATLEN_1 ((uint16_t)0x0004) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8064
MartinJohnson 0:c65854d98061 8065 #define SPI_I2SCFGR_CKPOL ((uint16_t)0x0008) /*!<steady state clock polarity */
MartinJohnson 0:c65854d98061 8066
MartinJohnson 0:c65854d98061 8067 #define SPI_I2SCFGR_I2SSTD ((uint16_t)0x0030) /*!<I2SSTD[1:0] bits (I2S standard selection) */
MartinJohnson 0:c65854d98061 8068 #define SPI_I2SCFGR_I2SSTD_0 ((uint16_t)0x0010) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8069 #define SPI_I2SCFGR_I2SSTD_1 ((uint16_t)0x0020) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8070
MartinJohnson 0:c65854d98061 8071 #define SPI_I2SCFGR_PCMSYNC ((uint16_t)0x0080) /*!<PCM frame synchronization */
MartinJohnson 0:c65854d98061 8072
MartinJohnson 0:c65854d98061 8073 #define SPI_I2SCFGR_I2SCFG ((uint16_t)0x0300) /*!<I2SCFG[1:0] bits (I2S configuration mode) */
MartinJohnson 0:c65854d98061 8074 #define SPI_I2SCFGR_I2SCFG_0 ((uint16_t)0x0100) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8075 #define SPI_I2SCFGR_I2SCFG_1 ((uint16_t)0x0200) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8076
MartinJohnson 0:c65854d98061 8077 #define SPI_I2SCFGR_I2SE ((uint16_t)0x0400) /*!<I2S Enable */
MartinJohnson 0:c65854d98061 8078 #define SPI_I2SCFGR_I2SMOD ((uint16_t)0x0800) /*!<I2S mode selection */
MartinJohnson 0:c65854d98061 8079
MartinJohnson 0:c65854d98061 8080 /****************** Bit definition for SPI_I2SPR register *******************/
MartinJohnson 0:c65854d98061 8081 #define SPI_I2SPR_I2SDIV ((uint16_t)0x00FF) /*!<I2S Linear prescaler */
MartinJohnson 0:c65854d98061 8082 #define SPI_I2SPR_ODD ((uint16_t)0x0100) /*!<Odd factor for the prescaler */
MartinJohnson 0:c65854d98061 8083 #define SPI_I2SPR_MCKOE ((uint16_t)0x0200) /*!<Master Clock Output Enable */
MartinJohnson 0:c65854d98061 8084
MartinJohnson 0:c65854d98061 8085 /******************************************************************************/
MartinJohnson 0:c65854d98061 8086 /* */
MartinJohnson 0:c65854d98061 8087 /* System Configuration(SYSCFG) */
MartinJohnson 0:c65854d98061 8088 /* */
MartinJohnson 0:c65854d98061 8089 /******************************************************************************/
MartinJohnson 0:c65854d98061 8090 /***************** Bit definition for SYSCFG_CFGR1 register *****************/
MartinJohnson 0:c65854d98061 8091 #define SYSCFG_CFGR1_MEM_MODE ((uint32_t)0x00000007) /*!< SYSCFG_Memory Remap Config */
MartinJohnson 0:c65854d98061 8092 #define SYSCFG_CFGR1_MEM_MODE_0 ((uint32_t)0x00000001) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 8093 #define SYSCFG_CFGR1_MEM_MODE_1 ((uint32_t)0x00000002) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 8094 #define SYSCFG_CFGR1_MEM_MODE_2 ((uint32_t)0x00000004) /*!< Bit 2 */
MartinJohnson 0:c65854d98061 8095 #define SYSCFG_CFGR1_USB_IT_RMP ((uint32_t)0x00000020) /*!< USB interrupt remap */
MartinJohnson 0:c65854d98061 8096 #define SYSCFG_CFGR1_TIM1_ITR3_RMP ((uint32_t)0x00000040) /*!< Timer 1 ITR3 selection */
MartinJohnson 0:c65854d98061 8097 #define SYSCFG_CFGR1_DAC1_TRIG1_RMP ((uint32_t)0x00000080) /*!< DAC1 Trigger1 remap */
MartinJohnson 0:c65854d98061 8098 #define SYSCFG_CFGR1_ADC24_DMA_RMP ((uint32_t)0x00000100) /*!< ADC2 and ADC4 DMA remap */
MartinJohnson 0:c65854d98061 8099 #define SYSCFG_CFGR1_TIM16_DMA_RMP ((uint32_t)0x00000800) /*!< Timer 16 DMA remap */
MartinJohnson 0:c65854d98061 8100 #define SYSCFG_CFGR1_TIM17_DMA_RMP ((uint32_t)0x00001000) /*!< Timer 17 DMA remap */
MartinJohnson 0:c65854d98061 8101 #define SYSCFG_CFGR1_TIM6DAC1Ch1_DMA_RMP ((uint32_t)0x00002000) /*!< Timer 6 / DAC1 CH1 DMA remap */
MartinJohnson 0:c65854d98061 8102 #define SYSCFG_CFGR1_TIM7DAC1Ch2_DMA_RMP ((uint32_t)0x00004000) /*!< Timer 7 / DAC1 CH2 DMA remap */
MartinJohnson 0:c65854d98061 8103 #define SYSCFG_CFGR1_DAC2Ch1_DMA_RMP ((uint32_t)0x00008000) /*!< DAC2 CH1 DMA remap */
MartinJohnson 0:c65854d98061 8104 #define SYSCFG_CFGR1_I2C_PB6_FMP ((uint32_t)0x00010000) /*!< I2C PB6 Fast mode plus */
MartinJohnson 0:c65854d98061 8105 #define SYSCFG_CFGR1_I2C_PB7_FMP ((uint32_t)0x00020000) /*!< I2C PB7 Fast mode plus */
MartinJohnson 0:c65854d98061 8106 #define SYSCFG_CFGR1_I2C_PB8_FMP ((uint32_t)0x00040000) /*!< I2C PB8 Fast mode plus */
MartinJohnson 0:c65854d98061 8107 #define SYSCFG_CFGR1_I2C_PB9_FMP ((uint32_t)0x00080000) /*!< I2C PB9 Fast mode plus */
MartinJohnson 0:c65854d98061 8108 #define SYSCFG_CFGR1_I2C1_FMP ((uint32_t)0x00100000) /*!< I2C1 Fast mode plus */
MartinJohnson 0:c65854d98061 8109 #define SYSCFG_CFGR1_I2C2_FMP ((uint32_t)0x00200000) /*!< I2C2 Fast mode plus */
MartinJohnson 0:c65854d98061 8110 #define SYSCFG_CFGR1_ENCODER_MODE ((uint32_t)0x00C00000) /*!< Encoder Mode */
MartinJohnson 0:c65854d98061 8111 #define SYSCFG_CFGR1_ENCODER_MODE_0 ((uint32_t)0x00400000) /*!< Encoder Mode 0 */
MartinJohnson 0:c65854d98061 8112 #define SYSCFG_CFGR1_ENCODER_MODE_1 ((uint32_t)0x00800000) /*!< Encoder Mode 1 */
MartinJohnson 0:c65854d98061 8113 #define SYSCFG_CFGR1_I2C3_FMP ((uint32_t)0x01000000) /*!< I2C3 Fast mode plus */
MartinJohnson 0:c65854d98061 8114 #define SYSCFG_CFGR1_FPU_IE ((uint32_t)0xFC000000) /*!< Floating Point Unit Interrupt Enable */
MartinJohnson 0:c65854d98061 8115 #define SYSCFG_CFGR1_FPU_IE_0 ((uint32_t)0x04000000) /*!< Floating Point Unit Interrupt Enable 0 */
MartinJohnson 0:c65854d98061 8116 #define SYSCFG_CFGR1_FPU_IE_1 ((uint32_t)0x08000000) /*!< Floating Point Unit Interrupt Enable 1 */
MartinJohnson 0:c65854d98061 8117 #define SYSCFG_CFGR1_FPU_IE_2 ((uint32_t)0x10000000) /*!< Floating Point Unit Interrupt Enable 2 */
MartinJohnson 0:c65854d98061 8118 #define SYSCFG_CFGR1_FPU_IE_3 ((uint32_t)0x20000000) /*!< Floating Point Unit Interrupt Enable 3 */
MartinJohnson 0:c65854d98061 8119 #define SYSCFG_CFGR1_FPU_IE_4 ((uint32_t)0x40000000) /*!< Floating Point Unit Interrupt Enable 4 */
MartinJohnson 0:c65854d98061 8120 #define SYSCFG_CFGR1_FPU_IE_5 ((uint32_t)0x80000000) /*!< Floating Point Unit Interrupt Enable 5 */
MartinJohnson 0:c65854d98061 8121 #define SYSCFG_CFGR1_DAC_TRIG_RMP SYSCFG_CFGR1_DAC1_TRIG1_RMP /*!< Old define maintained for legacy purpose */
MartinJohnson 0:c65854d98061 8122 #define SYSCFG_CFGR1_TIM6DAC1 SYSCFG_CFGR1_TIM6DAC1Ch1_DMA_RMP /*!< Old define maintained for legacy purpose */
MartinJohnson 0:c65854d98061 8123 #define SYSCFG_CFGR1_TIM7DAC2 SYSCFG_CFGR1_TIM7DAC1Ch2_DMA_RMP /*!< Old define maintained for legacy purpose */
MartinJohnson 0:c65854d98061 8124 /***************** Bit definition for SYSCFG_RCR register *******************/
MartinJohnson 0:c65854d98061 8125 #define SYSCFG_RCR_PAGE0 ((uint32_t)0x00000001) /*!< ICODE SRAM Write protection page 0 */
MartinJohnson 0:c65854d98061 8126 #define SYSCFG_RCR_PAGE1 ((uint32_t)0x00000002) /*!< ICODE SRAM Write protection page 1 */
MartinJohnson 0:c65854d98061 8127 #define SYSCFG_RCR_PAGE2 ((uint32_t)0x00000004) /*!< ICODE SRAM Write protection page 2 */
MartinJohnson 0:c65854d98061 8128 #define SYSCFG_RCR_PAGE3 ((uint32_t)0x00000008) /*!< ICODE SRAM Write protection page 3 */
MartinJohnson 0:c65854d98061 8129 #define SYSCFG_RCR_PAGE4 ((uint32_t)0x00000010) /*!< ICODE SRAM Write protection page 4 */
MartinJohnson 0:c65854d98061 8130 #define SYSCFG_RCR_PAGE5 ((uint32_t)0x00000020) /*!< ICODE SRAM Write protection page 5 */
MartinJohnson 0:c65854d98061 8131 #define SYSCFG_RCR_PAGE6 ((uint32_t)0x00000040) /*!< ICODE SRAM Write protection page 6 */
MartinJohnson 0:c65854d98061 8132 #define SYSCFG_RCR_PAGE7 ((uint32_t)0x00000080) /*!< ICODE SRAM Write protection page 7 */
MartinJohnson 0:c65854d98061 8133 #define SYSCFG_RCR_PAGE8 ((uint32_t)0x00000100) /*!< ICODE SRAM Write protection page 8 */
MartinJohnson 0:c65854d98061 8134 #define SYSCFG_RCR_PAGE9 ((uint32_t)0x00000200) /*!< ICODE SRAM Write protection page 9 */
MartinJohnson 0:c65854d98061 8135 #define SYSCFG_RCR_PAGE10 ((uint32_t)0x00000400) /*!< ICODE SRAM Write protection page 10 */
MartinJohnson 0:c65854d98061 8136 #define SYSCFG_RCR_PAGE11 ((uint32_t)0x00000800) /*!< ICODE SRAM Write protection page 11 */
MartinJohnson 0:c65854d98061 8137 #define SYSCFG_RCR_PAGE12 ((uint32_t)0x00001000) /*!< ICODE SRAM Write protection page 12 */
MartinJohnson 0:c65854d98061 8138 #define SYSCFG_RCR_PAGE13 ((uint32_t)0x00002000) /*!< ICODE SRAM Write protection page 13 */
MartinJohnson 0:c65854d98061 8139 #define SYSCFG_RCR_PAGE14 ((uint32_t)0x00004000) /*!< ICODE SRAM Write protection page 14 */
MartinJohnson 0:c65854d98061 8140 #define SYSCFG_RCR_PAGE15 ((uint32_t)0x00008000) /*!< ICODE SRAM Write protection page 15 */
MartinJohnson 0:c65854d98061 8141
MartinJohnson 0:c65854d98061 8142
MartinJohnson 0:c65854d98061 8143 /***************** Bit definition for SYSCFG_EXTICR1 register ***************/
MartinJohnson 0:c65854d98061 8144 #define SYSCFG_EXTICR1_EXTI0 ((uint16_t)0x000F) /*!< EXTI 0 configuration */
MartinJohnson 0:c65854d98061 8145 #define SYSCFG_EXTICR1_EXTI1 ((uint16_t)0x00F0) /*!< EXTI 1 configuration */
MartinJohnson 0:c65854d98061 8146 #define SYSCFG_EXTICR1_EXTI2 ((uint16_t)0x0F00) /*!< EXTI 2 configuration */
MartinJohnson 0:c65854d98061 8147 #define SYSCFG_EXTICR1_EXTI3 ((uint16_t)0xF000) /*!< EXTI 3 configuration */
MartinJohnson 0:c65854d98061 8148
MartinJohnson 0:c65854d98061 8149 /**
MartinJohnson 0:c65854d98061 8150 * @brief EXTI0 configuration
MartinJohnson 0:c65854d98061 8151 */
MartinJohnson 0:c65854d98061 8152 #define SYSCFG_EXTICR1_EXTI0_PA ((uint16_t)0x0000) /*!< PA[0] pin */
MartinJohnson 0:c65854d98061 8153 #define SYSCFG_EXTICR1_EXTI0_PB ((uint16_t)0x0001) /*!< PB[0] pin */
MartinJohnson 0:c65854d98061 8154 #define SYSCFG_EXTICR1_EXTI0_PC ((uint16_t)0x0002) /*!< PC[0] pin */
MartinJohnson 0:c65854d98061 8155 #define SYSCFG_EXTICR1_EXTI0_PD ((uint16_t)0x0003) /*!< PD[0] pin */
MartinJohnson 0:c65854d98061 8156 #define SYSCFG_EXTICR1_EXTI0_PE ((uint16_t)0x0004) /*!< PE[0] pin */
MartinJohnson 0:c65854d98061 8157 #define SYSCFG_EXTICR1_EXTI0_PF ((uint16_t)0x0005) /*!< PF[0] pin */
MartinJohnson 0:c65854d98061 8158 #define SYSCFG_EXTICR1_EXTI0_PG ((uint16_t)0x0006) /*!< PG[0] pin */
MartinJohnson 0:c65854d98061 8159 #define SYSCFG_EXTICR1_EXTI0_PH ((uint16_t)0x0007) /*!< PH[0] pin */
MartinJohnson 0:c65854d98061 8160
MartinJohnson 0:c65854d98061 8161
MartinJohnson 0:c65854d98061 8162 /**
MartinJohnson 0:c65854d98061 8163 * @brief EXTI1 configuration
MartinJohnson 0:c65854d98061 8164 */
MartinJohnson 0:c65854d98061 8165 #define SYSCFG_EXTICR1_EXTI1_PA ((uint16_t)0x0000) /*!< PA[1] pin */
MartinJohnson 0:c65854d98061 8166 #define SYSCFG_EXTICR1_EXTI1_PB ((uint16_t)0x0010) /*!< PB[1] pin */
MartinJohnson 0:c65854d98061 8167 #define SYSCFG_EXTICR1_EXTI1_PC ((uint16_t)0x0020) /*!< PC[1] pin */
MartinJohnson 0:c65854d98061 8168 #define SYSCFG_EXTICR1_EXTI1_PD ((uint16_t)0x0030) /*!< PD[1] pin */
MartinJohnson 0:c65854d98061 8169 #define SYSCFG_EXTICR1_EXTI1_PE ((uint16_t)0x0040) /*!< PE[1] pin */
MartinJohnson 0:c65854d98061 8170 #define SYSCFG_EXTICR1_EXTI1_PF ((uint16_t)0x0050) /*!< PF[1] pin */
MartinJohnson 0:c65854d98061 8171 #define SYSCFG_EXTICR1_EXTI1_PG ((uint16_t)0x0060) /*!< PG[1] pin */
MartinJohnson 0:c65854d98061 8172 #define SYSCFG_EXTICR1_EXTI1_PH ((uint16_t)0x0070) /*!< PH[1] pin */
MartinJohnson 0:c65854d98061 8173
MartinJohnson 0:c65854d98061 8174 /**
MartinJohnson 0:c65854d98061 8175 * @brief EXTI2 configuration
MartinJohnson 0:c65854d98061 8176 */
MartinJohnson 0:c65854d98061 8177 #define SYSCFG_EXTICR1_EXTI2_PA ((uint16_t)0x0000) /*!< PA[2] pin */
MartinJohnson 0:c65854d98061 8178 #define SYSCFG_EXTICR1_EXTI2_PB ((uint16_t)0x0100) /*!< PB[2] pin */
MartinJohnson 0:c65854d98061 8179 #define SYSCFG_EXTICR1_EXTI2_PC ((uint16_t)0x0200) /*!< PC[2] pin */
MartinJohnson 0:c65854d98061 8180 #define SYSCFG_EXTICR1_EXTI2_PD ((uint16_t)0x0300) /*!< PD[2] pin */
MartinJohnson 0:c65854d98061 8181 #define SYSCFG_EXTICR1_EXTI2_PE ((uint16_t)0x0400) /*!< PE[2] pin */
MartinJohnson 0:c65854d98061 8182 #define SYSCFG_EXTICR1_EXTI2_PF ((uint16_t)0x0500) /*!< PF[2] pin */
MartinJohnson 0:c65854d98061 8183 #define SYSCFG_EXTICR1_EXTI2_PG ((uint16_t)0x0600) /*!< PG[2] pin */
MartinJohnson 0:c65854d98061 8184
MartinJohnson 0:c65854d98061 8185 /**
MartinJohnson 0:c65854d98061 8186 * @brief EXTI3 configuration
MartinJohnson 0:c65854d98061 8187 */
MartinJohnson 0:c65854d98061 8188 #define SYSCFG_EXTICR1_EXTI3_PA ((uint16_t)0x0000) /*!< PA[3] pin */
MartinJohnson 0:c65854d98061 8189 #define SYSCFG_EXTICR1_EXTI3_PB ((uint16_t)0x1000) /*!< PB[3] pin */
MartinJohnson 0:c65854d98061 8190 #define SYSCFG_EXTICR1_EXTI3_PC ((uint16_t)0x2000) /*!< PC[3] pin */
MartinJohnson 0:c65854d98061 8191 #define SYSCFG_EXTICR1_EXTI3_PD ((uint16_t)0x3000) /*!< PD[3] pin */
MartinJohnson 0:c65854d98061 8192 #define SYSCFG_EXTICR1_EXTI3_PE ((uint16_t)0x4000) /*!< PE[3] pin */
MartinJohnson 0:c65854d98061 8193 #define SYSCFG_EXTICR1_EXTI3_PF ((uint16_t)0x5000) /*!< PE[3] pin */
MartinJohnson 0:c65854d98061 8194 #define SYSCFG_EXTICR1_EXTI3_PG ((uint16_t)0x6000) /*!< PG[3] pin */
MartinJohnson 0:c65854d98061 8195
MartinJohnson 0:c65854d98061 8196 /***************** Bit definition for SYSCFG_EXTICR2 register ***************/
MartinJohnson 0:c65854d98061 8197 #define SYSCFG_EXTIRCR_EXTI4 ((uint16_t)0x000F) /*!< EXTI 4 configuration */
MartinJohnson 0:c65854d98061 8198 #define SYSCFG_EXTIRCR_EXTI5 ((uint16_t)0x00F0) /*!< EXTI 5 configuration */
MartinJohnson 0:c65854d98061 8199 #define SYSCFG_EXTIRCR_EXTI6 ((uint16_t)0x0F00) /*!< EXTI 6 configuration */
MartinJohnson 0:c65854d98061 8200 #define SYSCFG_EXTIRCR_EXTI7 ((uint16_t)0xF000) /*!< EXTI 7 configuration */
MartinJohnson 0:c65854d98061 8201
MartinJohnson 0:c65854d98061 8202 /**
MartinJohnson 0:c65854d98061 8203 * @brief EXTI4 configuration
MartinJohnson 0:c65854d98061 8204 */
MartinJohnson 0:c65854d98061 8205 #define SYSCFG_EXTIRCR_EXTI4_PA ((uint16_t)0x0000) /*!< PA[4] pin */
MartinJohnson 0:c65854d98061 8206 #define SYSCFG_EXTIRCR_EXTI4_PB ((uint16_t)0x0001) /*!< PB[4] pin */
MartinJohnson 0:c65854d98061 8207 #define SYSCFG_EXTIRCR_EXTI4_PC ((uint16_t)0x0002) /*!< PC[4] pin */
MartinJohnson 0:c65854d98061 8208 #define SYSCFG_EXTIRCR_EXTI4_PD ((uint16_t)0x0003) /*!< PD[4] pin */
MartinJohnson 0:c65854d98061 8209 #define SYSCFG_EXTIRCR_EXTI4_PE ((uint16_t)0x0004) /*!< PE[4] pin */
MartinJohnson 0:c65854d98061 8210 #define SYSCFG_EXTIRCR_EXTI4_PF ((uint16_t)0x0005) /*!< PF[4] pin */
MartinJohnson 0:c65854d98061 8211 #define SYSCFG_EXTIRCR_EXTI4_PG ((uint16_t)0x0006) /*!< PG[4] pin */
MartinJohnson 0:c65854d98061 8212 #define SYSCFG_EXTIRCR_EXTI4_PH ((uint16_t)0x0007) /*!< PH[4] pin */
MartinJohnson 0:c65854d98061 8213
MartinJohnson 0:c65854d98061 8214 /**
MartinJohnson 0:c65854d98061 8215 * @brief EXTI5 configuration
MartinJohnson 0:c65854d98061 8216 */
MartinJohnson 0:c65854d98061 8217 #define SYSCFG_EXTIRCR_EXTI5_PA ((uint16_t)0x0000) /*!< PA[5] pin */
MartinJohnson 0:c65854d98061 8218 #define SYSCFG_EXTIRCR_EXTI5_PB ((uint16_t)0x0010) /*!< PB[5] pin */
MartinJohnson 0:c65854d98061 8219 #define SYSCFG_EXTIRCR_EXTI5_PC ((uint16_t)0x0020) /*!< PC[5] pin */
MartinJohnson 0:c65854d98061 8220 #define SYSCFG_EXTIRCR_EXTI5_PD ((uint16_t)0x0030) /*!< PD[5] pin */
MartinJohnson 0:c65854d98061 8221 #define SYSCFG_EXTIRCR_EXTI5_PE ((uint16_t)0x0040) /*!< PE[5] pin */
MartinJohnson 0:c65854d98061 8222 #define SYSCFG_EXTIRCR_EXTI5_PF ((uint16_t)0x0050) /*!< PF[5] pin */
MartinJohnson 0:c65854d98061 8223 #define SYSCFG_EXTIRCR_EXTI5_PG ((uint16_t)0x0060) /*!< PG[5] pin */
MartinJohnson 0:c65854d98061 8224
MartinJohnson 0:c65854d98061 8225 /**
MartinJohnson 0:c65854d98061 8226 * @brief EXTI6 configuration
MartinJohnson 0:c65854d98061 8227 */
MartinJohnson 0:c65854d98061 8228 #define SYSCFG_EXTIRCR_EXTI6_PA ((uint16_t)0x0000) /*!< PA[6] pin */
MartinJohnson 0:c65854d98061 8229 #define SYSCFG_EXTIRCR_EXTI6_PB ((uint16_t)0x0100) /*!< PB[6] pin */
MartinJohnson 0:c65854d98061 8230 #define SYSCFG_EXTIRCR_EXTI6_PC ((uint16_t)0x0200) /*!< PC[6] pin */
MartinJohnson 0:c65854d98061 8231 #define SYSCFG_EXTIRCR_EXTI6_PD ((uint16_t)0x0300) /*!< PD[6] pin */
MartinJohnson 0:c65854d98061 8232 #define SYSCFG_EXTIRCR_EXTI6_PE ((uint16_t)0x0400) /*!< PE[6] pin */
MartinJohnson 0:c65854d98061 8233 #define SYSCFG_EXTIRCR_EXTI6_PF ((uint16_t)0x0500) /*!< PF[6] pin */
MartinJohnson 0:c65854d98061 8234 #define SYSCFG_EXTIRCR_EXTI6_PG ((uint16_t)0x0600) /*!< PG[6] pin */
MartinJohnson 0:c65854d98061 8235
MartinJohnson 0:c65854d98061 8236 /**
MartinJohnson 0:c65854d98061 8237 * @brief EXTI7 configuration
MartinJohnson 0:c65854d98061 8238 */
MartinJohnson 0:c65854d98061 8239 #define SYSCFG_EXTIRCR_EXTI7_PA ((uint16_t)0x0000) /*!< PA[7] pin */
MartinJohnson 0:c65854d98061 8240 #define SYSCFG_EXTIRCR_EXTI7_PB ((uint16_t)0x1000) /*!< PB[7] pin */
MartinJohnson 0:c65854d98061 8241 #define SYSCFG_EXTIRCR_EXTI7_PC ((uint16_t)0x2000) /*!< PC[7] pin */
MartinJohnson 0:c65854d98061 8242 #define SYSCFG_EXTIRCR_EXTI7_PD ((uint16_t)0x3000) /*!< PD[7] pin */
MartinJohnson 0:c65854d98061 8243 #define SYSCFG_EXTIRCR_EXTI7_PE ((uint16_t)0x4000) /*!< PE[7] pin */
MartinJohnson 0:c65854d98061 8244 #define SYSCFG_EXTIRCR_EXTI7_PF ((uint16_t)0x5000) /*!< PF[7] pin */
MartinJohnson 0:c65854d98061 8245 #define SYSCFG_EXTIRCR_EXTI7_PG ((uint16_t)0x6000) /*!< PG[7] pin */
MartinJohnson 0:c65854d98061 8246
MartinJohnson 0:c65854d98061 8247 /***************** Bit definition for SYSCFG_EXTICR3 register ***************/
MartinJohnson 0:c65854d98061 8248 #define SYSCFG_EXTICR3_EXTI8 ((uint16_t)0x000F) /*!< EXTI 8 configuration */
MartinJohnson 0:c65854d98061 8249 #define SYSCFG_EXTICR3_EXTI9 ((uint16_t)0x00F0) /*!< EXTI 9 configuration */
MartinJohnson 0:c65854d98061 8250 #define SYSCFG_EXTICR3_EXTI10 ((uint16_t)0x0F00) /*!< EXTI 10 configuration */
MartinJohnson 0:c65854d98061 8251 #define SYSCFG_EXTICR3_EXTI11 ((uint16_t)0xF000) /*!< EXTI 11 configuration */
MartinJohnson 0:c65854d98061 8252
MartinJohnson 0:c65854d98061 8253 /**
MartinJohnson 0:c65854d98061 8254 * @brief EXTI8 configuration
MartinJohnson 0:c65854d98061 8255 */
MartinJohnson 0:c65854d98061 8256 #define SYSCFG_EXTICR3_EXTI8_PA ((uint16_t)0x0000) /*!< PA[8] pin */
MartinJohnson 0:c65854d98061 8257 #define SYSCFG_EXTICR3_EXTI8_PB ((uint16_t)0x0001) /*!< PB[8] pin */
MartinJohnson 0:c65854d98061 8258 #define SYSCFG_EXTICR3_EXTI8_PC ((uint16_t)0x0002) /*!< PC[8] pin */
MartinJohnson 0:c65854d98061 8259 #define SYSCFG_EXTICR3_EXTI8_PD ((uint16_t)0x0003) /*!< PD[8] pin */
MartinJohnson 0:c65854d98061 8260 #define SYSCFG_EXTICR3_EXTI8_PE ((uint16_t)0x0004) /*!< PE[8] pin */
MartinJohnson 0:c65854d98061 8261 #define SYSCFG_EXTICR3_EXTI8_PF ((uint16_t)0x0005) /*!< PF[8] pin */
MartinJohnson 0:c65854d98061 8262 #define SYSCFG_EXTICR3_EXTI8_PG ((uint16_t)0x0006) /*!< PG[8] pin */
MartinJohnson 0:c65854d98061 8263 /**
MartinJohnson 0:c65854d98061 8264 * @brief EXTI9 configuration
MartinJohnson 0:c65854d98061 8265 */
MartinJohnson 0:c65854d98061 8266 #define SYSCFG_EXTICR3_EXTI9_PA ((uint16_t)0x0000) /*!< PA[9] pin */
MartinJohnson 0:c65854d98061 8267 #define SYSCFG_EXTICR3_EXTI9_PB ((uint16_t)0x0010) /*!< PB[9] pin */
MartinJohnson 0:c65854d98061 8268 #define SYSCFG_EXTICR3_EXTI9_PC ((uint16_t)0x0020) /*!< PC[9] pin */
MartinJohnson 0:c65854d98061 8269 #define SYSCFG_EXTICR3_EXTI9_PD ((uint16_t)0x0030) /*!< PD[9] pin */
MartinJohnson 0:c65854d98061 8270 #define SYSCFG_EXTICR3_EXTI9_PE ((uint16_t)0x0040) /*!< PE[9] pin */
MartinJohnson 0:c65854d98061 8271 #define SYSCFG_EXTICR3_EXTI9_PF ((uint16_t)0x0050) /*!< PF[9] pin */
MartinJohnson 0:c65854d98061 8272 #define SYSCFG_EXTICR3_EXTI9_PG ((uint16_t)0x0060) /*!< PG[9] pin */
MartinJohnson 0:c65854d98061 8273
MartinJohnson 0:c65854d98061 8274 /**
MartinJohnson 0:c65854d98061 8275 * @brief EXTI10 configuration
MartinJohnson 0:c65854d98061 8276 */
MartinJohnson 0:c65854d98061 8277 #define SYSCFG_EXTICR3_EXTI10_PA ((uint16_t)0x0000) /*!< PA[10] pin */
MartinJohnson 0:c65854d98061 8278 #define SYSCFG_EXTICR3_EXTI10_PB ((uint16_t)0x0100) /*!< PB[10] pin */
MartinJohnson 0:c65854d98061 8279 #define SYSCFG_EXTICR3_EXTI10_PC ((uint16_t)0x0200) /*!< PC[10] pin */
MartinJohnson 0:c65854d98061 8280 #define SYSCFG_EXTICR3_EXTI10_PD ((uint16_t)0x0300) /*!< PD[10] pin */
MartinJohnson 0:c65854d98061 8281 #define SYSCFG_EXTICR3_EXTI10_PE ((uint16_t)0x0400) /*!< PE[10] pin */
MartinJohnson 0:c65854d98061 8282 #define SYSCFG_EXTICR3_EXTI10_PF ((uint16_t)0x0500) /*!< PF[10] pin */
MartinJohnson 0:c65854d98061 8283 #define SYSCFG_EXTICR3_EXTI10_PG ((uint16_t)0x0600) /*!< PG[10] pin */
MartinJohnson 0:c65854d98061 8284
MartinJohnson 0:c65854d98061 8285 /**
MartinJohnson 0:c65854d98061 8286 * @brief EXTI11 configuration
MartinJohnson 0:c65854d98061 8287 */
MartinJohnson 0:c65854d98061 8288 #define SYSCFG_EXTICR3_EXTI11_PA ((uint16_t)0x0000) /*!< PA[11] pin */
MartinJohnson 0:c65854d98061 8289 #define SYSCFG_EXTICR3_EXTI11_PB ((uint16_t)0x1000) /*!< PB[11] pin */
MartinJohnson 0:c65854d98061 8290 #define SYSCFG_EXTICR3_EXTI11_PC ((uint16_t)0x2000) /*!< PC[11] pin */
MartinJohnson 0:c65854d98061 8291 #define SYSCFG_EXTICR3_EXTI11_PD ((uint16_t)0x3000) /*!< PD[11] pin */
MartinJohnson 0:c65854d98061 8292 #define SYSCFG_EXTICR3_EXTI11_PE ((uint16_t)0x4000) /*!< PE[11] pin */
MartinJohnson 0:c65854d98061 8293 #define SYSCFG_EXTICR3_EXTI11_PF ((uint16_t)0x5000) /*!< PF[11] pin */
MartinJohnson 0:c65854d98061 8294 #define SYSCFG_EXTICR3_EXTI11_PG ((uint16_t)0x6000) /*!< PG[11] pin */
MartinJohnson 0:c65854d98061 8295
MartinJohnson 0:c65854d98061 8296 /***************** Bit definition for SYSCFG_EXTICR4 register *****************/
MartinJohnson 0:c65854d98061 8297 #define SYSCFG_EXTICR4_EXTI12 ((uint16_t)0x000F) /*!< EXTI 12 configuration */
MartinJohnson 0:c65854d98061 8298 #define SYSCFG_EXTICR4_EXTI13 ((uint16_t)0x00F0) /*!< EXTI 13 configuration */
MartinJohnson 0:c65854d98061 8299 #define SYSCFG_EXTICR4_EXTI14 ((uint16_t)0x0F00) /*!< EXTI 14 configuration */
MartinJohnson 0:c65854d98061 8300 #define SYSCFG_EXTICR4_EXTI15 ((uint16_t)0xF000) /*!< EXTI 15 configuration */
MartinJohnson 0:c65854d98061 8301
MartinJohnson 0:c65854d98061 8302 /**
MartinJohnson 0:c65854d98061 8303 * @brief EXTI12 configuration
MartinJohnson 0:c65854d98061 8304 */
MartinJohnson 0:c65854d98061 8305 #define SYSCFG_EXTICR4_EXTI12_PA ((uint16_t)0x0000) /*!< PA[12] pin */
MartinJohnson 0:c65854d98061 8306 #define SYSCFG_EXTICR4_EXTI12_PB ((uint16_t)0x0001) /*!< PB[12] pin */
MartinJohnson 0:c65854d98061 8307 #define SYSCFG_EXTICR4_EXTI12_PC ((uint16_t)0x0002) /*!< PC[12] pin */
MartinJohnson 0:c65854d98061 8308 #define SYSCFG_EXTICR4_EXTI12_PD ((uint16_t)0x0003) /*!< PD[12] pin */
MartinJohnson 0:c65854d98061 8309 #define SYSCFG_EXTICR4_EXTI12_PE ((uint16_t)0x0004) /*!< PE[12] pin */
MartinJohnson 0:c65854d98061 8310 #define SYSCFG_EXTICR4_EXTI12_PF ((uint16_t)0x0005) /*!< PF[12] pin */
MartinJohnson 0:c65854d98061 8311 #define SYSCFG_EXTICR4_EXTI12_PG ((uint16_t)0x0006) /*!< PG[12] pin */
MartinJohnson 0:c65854d98061 8312
MartinJohnson 0:c65854d98061 8313 /**
MartinJohnson 0:c65854d98061 8314 * @brief EXTI13 configuration
MartinJohnson 0:c65854d98061 8315 */
MartinJohnson 0:c65854d98061 8316 #define SYSCFG_EXTICR4_EXTI13_PA ((uint16_t)0x0000) /*!< PA[13] pin */
MartinJohnson 0:c65854d98061 8317 #define SYSCFG_EXTICR4_EXTI13_PB ((uint16_t)0x0010) /*!< PB[13] pin */
MartinJohnson 0:c65854d98061 8318 #define SYSCFG_EXTICR4_EXTI13_PC ((uint16_t)0x0020) /*!< PC[13] pin */
MartinJohnson 0:c65854d98061 8319 #define SYSCFG_EXTICR4_EXTI13_PD ((uint16_t)0x0030) /*!< PD[13] pin */
MartinJohnson 0:c65854d98061 8320 #define SYSCFG_EXTICR4_EXTI13_PE ((uint16_t)0x0040) /*!< PE[13] pin */
MartinJohnson 0:c65854d98061 8321 #define SYSCFG_EXTICR4_EXTI13_PF ((uint16_t)0x0050) /*!< PF[13] pin */
MartinJohnson 0:c65854d98061 8322 #define SYSCFG_EXTICR4_EXTI13_PG ((uint16_t)0x0060) /*!< PG[13] pin */
MartinJohnson 0:c65854d98061 8323
MartinJohnson 0:c65854d98061 8324 /**
MartinJohnson 0:c65854d98061 8325 * @brief EXTI14 configuration
MartinJohnson 0:c65854d98061 8326 */
MartinJohnson 0:c65854d98061 8327 #define SYSCFG_EXTICR4_EXTI14_PA ((uint16_t)0x0000) /*!< PA[14] pin */
MartinJohnson 0:c65854d98061 8328 #define SYSCFG_EXTICR4_EXTI14_PB ((uint16_t)0x0100) /*!< PB[14] pin */
MartinJohnson 0:c65854d98061 8329 #define SYSCFG_EXTICR4_EXTI14_PC ((uint16_t)0x0200) /*!< PC[14] pin */
MartinJohnson 0:c65854d98061 8330 #define SYSCFG_EXTICR4_EXTI14_PD ((uint16_t)0x0300) /*!< PD[14] pin */
MartinJohnson 0:c65854d98061 8331 #define SYSCFG_EXTICR4_EXTI14_PE ((uint16_t)0x0400) /*!< PE[14] pin */
MartinJohnson 0:c65854d98061 8332 #define SYSCFG_EXTICR4_EXTI14_PF ((uint16_t)0x0500) /*!< PF[14] pin */
MartinJohnson 0:c65854d98061 8333 #define SYSCFG_EXTICR4_EXTI14_PG ((uint16_t)0x0600) /*!< PG[14] pin */
MartinJohnson 0:c65854d98061 8334
MartinJohnson 0:c65854d98061 8335 /**
MartinJohnson 0:c65854d98061 8336 * @brief EXTI15 configuration
MartinJohnson 0:c65854d98061 8337 */
MartinJohnson 0:c65854d98061 8338 #define SYSCFG_EXTICR4_EXTI15_PA ((uint16_t)0x0000) /*!< PA[15] pin */
MartinJohnson 0:c65854d98061 8339 #define SYSCFG_EXTICR4_EXTI15_PB ((uint16_t)0x1000) /*!< PB[15] pin */
MartinJohnson 0:c65854d98061 8340 #define SYSCFG_EXTICR4_EXTI15_PC ((uint16_t)0x2000) /*!< PC[15] pin */
MartinJohnson 0:c65854d98061 8341 #define SYSCFG_EXTICR4_EXTI15_PD ((uint16_t)0x3000) /*!< PD[15] pin */
MartinJohnson 0:c65854d98061 8342 #define SYSCFG_EXTICR4_EXTI15_PE ((uint16_t)0x4000) /*!< PE[15] pin */
MartinJohnson 0:c65854d98061 8343 #define SYSCFG_EXTICR4_EXTI15_PF ((uint16_t)0x5000) /*!< PF[15] pin */
MartinJohnson 0:c65854d98061 8344 #define SYSCFG_EXTICR4_EXTI15_PG ((uint16_t)0x6000) /*!< PG[15] pin */
MartinJohnson 0:c65854d98061 8345
MartinJohnson 0:c65854d98061 8346 /***************** Bit definition for SYSCFG_CFGR2 register *****************/
MartinJohnson 0:c65854d98061 8347 #define SYSCFG_CFGR2_LOCKUP_LOCK ((uint32_t)0x00000001) /*!< Enables and locks the PVD connection with Timer1/8/15/16/17 Break Input and also the PVD_EN and PVDSEL[2:0] bits of the Power Control Interface */
MartinJohnson 0:c65854d98061 8348 #define SYSCFG_CFGR2_SRAM_PARITY_LOCK ((uint32_t)0x00000002) /*!< Enables and locks the SRAM_PARITY error signal with Break Input of TIMER1/8/15/16/17 */
MartinJohnson 0:c65854d98061 8349 #define SYSCFG_CFGR2_PVD_LOCK ((uint32_t)0x00000004) /*!< Enables and locks the LOCKUP (Hardfault) output of CortexM4 with Break Input of TIMER1/8/15/16/17 */
MartinJohnson 0:c65854d98061 8350 #define SYSCFG_CFGR2_BYP_ADDR_PAR ((uint32_t)0x00000010) /*!< Disables the address parity check on RAM */
MartinJohnson 0:c65854d98061 8351 #define SYSCFG_CFGR2_SRAM_PE ((uint32_t)0x00000100) /*!< SRAM Parity error flag */
MartinJohnson 0:c65854d98061 8352
MartinJohnson 0:c65854d98061 8353 /***************** Bit definition for SYSCFG_CFGR3 register *****************/
MartinJohnson 0:c65854d98061 8354 #define SYSCFG_CFGR3_SPI1_RX_DMA_RMP ((uint32_t)0x00000003) /*!< SPI1 RX DMA remap */
MartinJohnson 0:c65854d98061 8355 #define SYSCFG_CFGR3_SPI1_RX_DMA_RMP_0 ((uint32_t)0x00000001) /*!< SPI1 RX DMA remap bit 0 */
MartinJohnson 0:c65854d98061 8356 #define SYSCFG_CFGR3_SPI1_RX_DMA_RMP_1 ((uint32_t)0x00000002) /*!< SPI1 RX DMA remap bit 1 */
MartinJohnson 0:c65854d98061 8357 #define SYSCFG_CFGR3_SPI1_TX_DMA_RMP ((uint32_t)0x0000000C) /*!< SPI1 TX DMA remap */
MartinJohnson 0:c65854d98061 8358 #define SYSCFG_CFGR3_SPI1_TX_DMA_RMP_0 ((uint32_t)0x00000004) /*!< SPI1 TX DMA remap bit 0 */
MartinJohnson 0:c65854d98061 8359 #define SYSCFG_CFGR3_SPI1_TX_DMA_RMP_1 ((uint32_t)0x00000008) /*!< SPI1 TX DMA remap bit 1 */
MartinJohnson 0:c65854d98061 8360 #define SYSCFG_CFGR3_I2C1_RX_DMA_RMP ((uint32_t)0x00000030) /*!< I2C1 RX DMA remap */
MartinJohnson 0:c65854d98061 8361 #define SYSCFG_CFGR3_I2C1_RX_DMA_RMP_0 ((uint32_t)0x00000010) /*!< I2C1 RX DMA remap bit 0 */
MartinJohnson 0:c65854d98061 8362 #define SYSCFG_CFGR3_I2C1_RX_DMA_RMP_1 ((uint32_t)0x00000020) /*!< I2C1 RX DMA remap bit 1 */
MartinJohnson 0:c65854d98061 8363 #define SYSCFG_CFGR3_I2C1_TX_DMA_RMP ((uint32_t)0x000000C0) /*!< I2C1 RX DMA remap */
MartinJohnson 0:c65854d98061 8364 #define SYSCFG_CFGR3_I2C1_TX_DMA_RMP_0 ((uint32_t)0x00000040) /*!< I2C1 TX DMA remap bit 0 */
MartinJohnson 0:c65854d98061 8365 #define SYSCFG_CFGR3_I2C1_TX_DMA_RMP_1 ((uint32_t)0x00000080) /*!< I2C1 TX DMA remap bit 1 */
MartinJohnson 0:c65854d98061 8366 #define SYSCFG_CFGR3_ADC2_DMA_RMP ((uint32_t)0x00000300) /*!< ADC2 DMA remap */
MartinJohnson 0:c65854d98061 8367 #define SYSCFG_CFGR3_ADC2_DMA_RMP_0 ((uint32_t)0x00000100) /*!< ADC2 DMA remap bit 0 */
MartinJohnson 0:c65854d98061 8368 #define SYSCFG_CFGR3_ADC2_DMA_RMP_1 ((uint32_t)0x00000200) /*!< ADC2 DMA remap bit 1 */
MartinJohnson 0:c65854d98061 8369 #define SYSCFG_CFGR3_DAC1_TRG3_RMP ((uint32_t)0x00010000) /*!< DAC1 TRG3 remap */
MartinJohnson 0:c65854d98061 8370 #define SYSCFG_CFGR3_DAC1_TRG5_RMP ((uint32_t)0x00020000) /*!< DAC1 TRG5 remap */
MartinJohnson 0:c65854d98061 8371
MartinJohnson 0:c65854d98061 8372 /***************** Bit definition for SYSCFG_CFGR4 register *****************/
MartinJohnson 0:c65854d98061 8373 #define SYSCFG_CFGR4_ADC12_EXT2_RMP ((uint32_t)0x00000001) /*!< ADC12 regular channel EXT2 remap */
MartinJohnson 0:c65854d98061 8374 #define SYSCFG_CFGR4_ADC12_EXT3_RMP ((uint32_t)0x00000002) /*!< ADC12 regular channel EXT3 remap */
MartinJohnson 0:c65854d98061 8375 #define SYSCFG_CFGR4_ADC12_EXT5_RMP ((uint32_t)0x00000004) /*!< ADC12 regular channel EXT5 remap */
MartinJohnson 0:c65854d98061 8376 #define SYSCFG_CFGR4_ADC12_EXT13_RMP ((uint32_t)0x00000008) /*!< ADC12 regular channel EXT13 remap */
MartinJohnson 0:c65854d98061 8377 #define SYSCFG_CFGR4_ADC12_EXT15_RMP ((uint32_t)0x00000010) /*!< ADC12 regular channel EXT15 remap */
MartinJohnson 0:c65854d98061 8378 #define SYSCFG_CFGR4_ADC12_JEXT3_RMP ((uint32_t)0x00000020) /*!< ADC12 injected channel JEXT3 remap */
MartinJohnson 0:c65854d98061 8379 #define SYSCFG_CFGR4_ADC12_JEXT6_RMP ((uint32_t)0x00000040) /*!< ADC12 injected channel JEXT6 remap */
MartinJohnson 0:c65854d98061 8380 #define SYSCFG_CFGR4_ADC12_JEXT13_RMP ((uint32_t)0x00000080) /*!< ADC12 injected channel JEXT13 remap */
MartinJohnson 0:c65854d98061 8381 #define SYSCFG_CFGR4_ADC34_EXT5_RMP ((uint32_t)0x00000100) /*!< ADC34 regular channel EXT5 remap */
MartinJohnson 0:c65854d98061 8382 #define SYSCFG_CFGR4_ADC34_EXT6_RMP ((uint32_t)0x00000200) /*!< ADC34 regular channel EXT6 remap */
MartinJohnson 0:c65854d98061 8383 #define SYSCFG_CFGR4_ADC34_EXT15_RMP ((uint32_t)0x00000400) /*!< ADC34 regular channel EXT15 remap */
MartinJohnson 0:c65854d98061 8384 #define SYSCFG_CFGR4_ADC34_JEXT5_RMP ((uint32_t)0x00000800) /*!< ADC34 injected channel JEXT5 remap */
MartinJohnson 0:c65854d98061 8385 #define SYSCFG_CFGR4_ADC34_JEXT11_RMP ((uint32_t)0x00001000) /*!< ADC34 injected channel JEXT11 remap */
MartinJohnson 0:c65854d98061 8386 #define SYSCFG_CFGR4_ADC34_JEXT14_RMP ((uint32_t)0x00002000) /*!< ADC34 injected channel JEXT14 remap */
MartinJohnson 0:c65854d98061 8387
MartinJohnson 0:c65854d98061 8388 /******************************************************************************/
MartinJohnson 0:c65854d98061 8389 /* */
MartinJohnson 0:c65854d98061 8390 /* TIM */
MartinJohnson 0:c65854d98061 8391 /* */
MartinJohnson 0:c65854d98061 8392 /******************************************************************************/
MartinJohnson 0:c65854d98061 8393 /******************* Bit definition for TIM_CR1 register ********************/
MartinJohnson 0:c65854d98061 8394 #define TIM_CR1_CEN ((uint16_t)0x0001) /*!<Counter enable */
MartinJohnson 0:c65854d98061 8395 #define TIM_CR1_UDIS ((uint16_t)0x0002) /*!<Update disable */
MartinJohnson 0:c65854d98061 8396 #define TIM_CR1_URS ((uint16_t)0x0004) /*!<Update request source */
MartinJohnson 0:c65854d98061 8397 #define TIM_CR1_OPM ((uint16_t)0x0008) /*!<One pulse mode */
MartinJohnson 0:c65854d98061 8398 #define TIM_CR1_DIR ((uint16_t)0x0010) /*!<Direction */
MartinJohnson 0:c65854d98061 8399
MartinJohnson 0:c65854d98061 8400 #define TIM_CR1_CMS ((uint16_t)0x0060) /*!<CMS[1:0] bits (Center-aligned mode selection) */
MartinJohnson 0:c65854d98061 8401 #define TIM_CR1_CMS_0 ((uint16_t)0x0020) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8402 #define TIM_CR1_CMS_1 ((uint16_t)0x0040) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8403
MartinJohnson 0:c65854d98061 8404 #define TIM_CR1_ARPE ((uint16_t)0x0080) /*!<Auto-reload preload enable */
MartinJohnson 0:c65854d98061 8405
MartinJohnson 0:c65854d98061 8406 #define TIM_CR1_CKD ((uint16_t)0x0300) /*!<CKD[1:0] bits (clock division) */
MartinJohnson 0:c65854d98061 8407 #define TIM_CR1_CKD_0 ((uint16_t)0x0100) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8408 #define TIM_CR1_CKD_1 ((uint16_t)0x0200) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8409
MartinJohnson 0:c65854d98061 8410 #define TIM_CR1_UIFREMAP ((uint16_t)0x0800) /*!<Update interrupt flag remap */
MartinJohnson 0:c65854d98061 8411
MartinJohnson 0:c65854d98061 8412 /******************* Bit definition for TIM_CR2 register ********************/
MartinJohnson 0:c65854d98061 8413 #define TIM_CR2_CCPC ((uint32_t)0x00000001) /*!<Capture/Compare Preloaded Control */
MartinJohnson 0:c65854d98061 8414 #define TIM_CR2_CCUS ((uint32_t)0x00000004) /*!<Capture/Compare Control Update Selection */
MartinJohnson 0:c65854d98061 8415 #define TIM_CR2_CCDS ((uint32_t)0x00000008) /*!<Capture/Compare DMA Selection */
MartinJohnson 0:c65854d98061 8416
MartinJohnson 0:c65854d98061 8417 #define TIM_CR2_MMS ((uint32_t)0x00000070) /*!<MMS[2:0] bits (Master Mode Selection) */
MartinJohnson 0:c65854d98061 8418 #define TIM_CR2_MMS_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8419 #define TIM_CR2_MMS_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8420 #define TIM_CR2_MMS_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 8421
MartinJohnson 0:c65854d98061 8422 #define TIM_CR2_TI1S ((uint32_t)0x00000080) /*!<TI1 Selection */
MartinJohnson 0:c65854d98061 8423 #define TIM_CR2_OIS1 ((uint32_t)0x00000100) /*!<Output Idle state 1 (OC1 output) */
MartinJohnson 0:c65854d98061 8424 #define TIM_CR2_OIS1N ((uint32_t)0x00000200) /*!<Output Idle state 1 (OC1N output) */
MartinJohnson 0:c65854d98061 8425 #define TIM_CR2_OIS2 ((uint32_t)0x00000400) /*!<Output Idle state 2 (OC2 output) */
MartinJohnson 0:c65854d98061 8426 #define TIM_CR2_OIS2N ((uint32_t)0x00000800) /*!<Output Idle state 2 (OC2N output) */
MartinJohnson 0:c65854d98061 8427 #define TIM_CR2_OIS3 ((uint32_t)0x00001000) /*!<Output Idle state 3 (OC3 output) */
MartinJohnson 0:c65854d98061 8428 #define TIM_CR2_OIS3N ((uint32_t)0x00002000) /*!<Output Idle state 3 (OC3N output) */
MartinJohnson 0:c65854d98061 8429 #define TIM_CR2_OIS4 ((uint32_t)0x00004000) /*!<Output Idle state 4 (OC4 output) */
MartinJohnson 0:c65854d98061 8430 #define TIM_CR2_OIS5 ((uint32_t)0x00010000) /*!<Output Idle state 4 (OC4 output) */
MartinJohnson 0:c65854d98061 8431 #define TIM_CR2_OIS6 ((uint32_t)0x00020000) /*!<Output Idle state 4 (OC4 output) */
MartinJohnson 0:c65854d98061 8432
MartinJohnson 0:c65854d98061 8433 #define TIM_CR2_MMS2 ((uint32_t)0x00F00000) /*!<MMS[2:0] bits (Master Mode Selection) */
MartinJohnson 0:c65854d98061 8434 #define TIM_CR2_MMS2_0 ((uint32_t)0x00100000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8435 #define TIM_CR2_MMS2_1 ((uint32_t)0x00200000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8436 #define TIM_CR2_MMS2_2 ((uint32_t)0x00400000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 8437 #define TIM_CR2_MMS2_3 ((uint32_t)0x00800000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 8438
MartinJohnson 0:c65854d98061 8439 /******************* Bit definition for TIM_SMCR register *******************/
MartinJohnson 0:c65854d98061 8440 #define TIM_SMCR_SMS ((uint32_t)0x00010007) /*!<SMS[2:0] bits (Slave mode selection) */
MartinJohnson 0:c65854d98061 8441 #define TIM_SMCR_SMS_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8442 #define TIM_SMCR_SMS_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8443 #define TIM_SMCR_SMS_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 8444 #define TIM_SMCR_SMS_3 ((uint32_t)0x00010000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 8445
MartinJohnson 0:c65854d98061 8446 #define TIM_SMCR_OCCS ((uint32_t)0x00000008) /*!< OCREF clear selection */
MartinJohnson 0:c65854d98061 8447
MartinJohnson 0:c65854d98061 8448 #define TIM_SMCR_TS ((uint32_t)0x00000070) /*!<TS[2:0] bits (Trigger selection) */
MartinJohnson 0:c65854d98061 8449 #define TIM_SMCR_TS_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8450 #define TIM_SMCR_TS_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8451 #define TIM_SMCR_TS_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 8452
MartinJohnson 0:c65854d98061 8453 #define TIM_SMCR_MSM ((uint32_t)0x00000080) /*!<Master/slave mode */
MartinJohnson 0:c65854d98061 8454
MartinJohnson 0:c65854d98061 8455 #define TIM_SMCR_ETF ((uint32_t)0x00000F00) /*!<ETF[3:0] bits (External trigger filter) */
MartinJohnson 0:c65854d98061 8456 #define TIM_SMCR_ETF_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8457 #define TIM_SMCR_ETF_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8458 #define TIM_SMCR_ETF_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 8459 #define TIM_SMCR_ETF_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 8460
MartinJohnson 0:c65854d98061 8461 #define TIM_SMCR_ETPS ((uint32_t)0x00003000) /*!<ETPS[1:0] bits (External trigger prescaler) */
MartinJohnson 0:c65854d98061 8462 #define TIM_SMCR_ETPS_0 ((uint32_t)0x00001000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8463 #define TIM_SMCR_ETPS_1 ((uint32_t)0x00002000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8464
MartinJohnson 0:c65854d98061 8465 #define TIM_SMCR_ECE ((uint32_t)0x00004000) /*!<External clock enable */
MartinJohnson 0:c65854d98061 8466 #define TIM_SMCR_ETP ((uint32_t)0x00008000) /*!<External trigger polarity */
MartinJohnson 0:c65854d98061 8467
MartinJohnson 0:c65854d98061 8468 /******************* Bit definition for TIM_DIER register *******************/
MartinJohnson 0:c65854d98061 8469 #define TIM_DIER_UIE ((uint16_t)0x0001) /*!<Update interrupt enable */
MartinJohnson 0:c65854d98061 8470 #define TIM_DIER_CC1IE ((uint16_t)0x0002) /*!<Capture/Compare 1 interrupt enable */
MartinJohnson 0:c65854d98061 8471 #define TIM_DIER_CC2IE ((uint16_t)0x0004) /*!<Capture/Compare 2 interrupt enable */
MartinJohnson 0:c65854d98061 8472 #define TIM_DIER_CC3IE ((uint16_t)0x0008) /*!<Capture/Compare 3 interrupt enable */
MartinJohnson 0:c65854d98061 8473 #define TIM_DIER_CC4IE ((uint16_t)0x0010) /*!<Capture/Compare 4 interrupt enable */
MartinJohnson 0:c65854d98061 8474 #define TIM_DIER_COMIE ((uint16_t)0x0020) /*!<COM interrupt enable */
MartinJohnson 0:c65854d98061 8475 #define TIM_DIER_TIE ((uint16_t)0x0040) /*!<Trigger interrupt enable */
MartinJohnson 0:c65854d98061 8476 #define TIM_DIER_BIE ((uint16_t)0x0080) /*!<Break interrupt enable */
MartinJohnson 0:c65854d98061 8477 #define TIM_DIER_UDE ((uint16_t)0x0100) /*!<Update DMA request enable */
MartinJohnson 0:c65854d98061 8478 #define TIM_DIER_CC1DE ((uint16_t)0x0200) /*!<Capture/Compare 1 DMA request enable */
MartinJohnson 0:c65854d98061 8479 #define TIM_DIER_CC2DE ((uint16_t)0x0400) /*!<Capture/Compare 2 DMA request enable */
MartinJohnson 0:c65854d98061 8480 #define TIM_DIER_CC3DE ((uint16_t)0x0800) /*!<Capture/Compare 3 DMA request enable */
MartinJohnson 0:c65854d98061 8481 #define TIM_DIER_CC4DE ((uint16_t)0x1000) /*!<Capture/Compare 4 DMA request enable */
MartinJohnson 0:c65854d98061 8482 #define TIM_DIER_COMDE ((uint16_t)0x2000) /*!<COM DMA request enable */
MartinJohnson 0:c65854d98061 8483 #define TIM_DIER_TDE ((uint16_t)0x4000) /*!<Trigger DMA request enable */
MartinJohnson 0:c65854d98061 8484
MartinJohnson 0:c65854d98061 8485 /******************** Bit definition for TIM_SR register ********************/
MartinJohnson 0:c65854d98061 8486 #define TIM_SR_UIF ((uint32_t)0x00000001) /*!<Update interrupt Flag */
MartinJohnson 0:c65854d98061 8487 #define TIM_SR_CC1IF ((uint32_t)0x00000002) /*!<Capture/Compare 1 interrupt Flag */
MartinJohnson 0:c65854d98061 8488 #define TIM_SR_CC2IF ((uint32_t)0x00000004) /*!<Capture/Compare 2 interrupt Flag */
MartinJohnson 0:c65854d98061 8489 #define TIM_SR_CC3IF ((uint32_t)0x00000008) /*!<Capture/Compare 3 interrupt Flag */
MartinJohnson 0:c65854d98061 8490 #define TIM_SR_CC4IF ((uint32_t)0x00000010) /*!<Capture/Compare 4 interrupt Flag */
MartinJohnson 0:c65854d98061 8491 #define TIM_SR_COMIF ((uint32_t)0x00000020) /*!<COM interrupt Flag */
MartinJohnson 0:c65854d98061 8492 #define TIM_SR_TIF ((uint32_t)0x00000040) /*!<Trigger interrupt Flag */
MartinJohnson 0:c65854d98061 8493 #define TIM_SR_BIF ((uint32_t)0x00000080) /*!<Break interrupt Flag */
MartinJohnson 0:c65854d98061 8494 #define TIM_SR_B2IF ((uint32_t)0x00000100) /*!<Break2 interrupt Flag */
MartinJohnson 0:c65854d98061 8495 #define TIM_SR_CC1OF ((uint32_t)0x00000200) /*!<Capture/Compare 1 Over capture Flag */
MartinJohnson 0:c65854d98061 8496 #define TIM_SR_CC2OF ((uint32_t)0x00000400) /*!<Capture/Compare 2 Over capture Flag */
MartinJohnson 0:c65854d98061 8497 #define TIM_SR_CC3OF ((uint32_t)0x00000800) /*!<Capture/Compare 3 Over capture Flag */
MartinJohnson 0:c65854d98061 8498 #define TIM_SR_CC4OF ((uint32_t)0x00001000) /*!<Capture/Compare 4 Over capture Flag */
MartinJohnson 0:c65854d98061 8499 #define TIM_SR_CC5IF ((uint32_t)0x00010000) /*!<Capture/Compare 5 interrupt Flag */
MartinJohnson 0:c65854d98061 8500 #define TIM_SR_CC6IF ((uint32_t)0x00020000) /*!<Capture/Compare 6 interrupt Flag */
MartinJohnson 0:c65854d98061 8501
MartinJohnson 0:c65854d98061 8502
MartinJohnson 0:c65854d98061 8503 /******************* Bit definition for TIM_EGR register ********************/
MartinJohnson 0:c65854d98061 8504 #define TIM_EGR_UG ((uint16_t)0x0001) /*!<Update Generation */
MartinJohnson 0:c65854d98061 8505 #define TIM_EGR_CC1G ((uint16_t)0x0002) /*!<Capture/Compare 1 Generation */
MartinJohnson 0:c65854d98061 8506 #define TIM_EGR_CC2G ((uint16_t)0x0004) /*!<Capture/Compare 2 Generation */
MartinJohnson 0:c65854d98061 8507 #define TIM_EGR_CC3G ((uint16_t)0x0008) /*!<Capture/Compare 3 Generation */
MartinJohnson 0:c65854d98061 8508 #define TIM_EGR_CC4G ((uint16_t)0x0010) /*!<Capture/Compare 4 Generation */
MartinJohnson 0:c65854d98061 8509 #define TIM_EGR_COMG ((uint16_t)0x0020) /*!<Capture/Compare Control Update Generation */
MartinJohnson 0:c65854d98061 8510 #define TIM_EGR_TG ((uint16_t)0x0040) /*!<Trigger Generation */
MartinJohnson 0:c65854d98061 8511 #define TIM_EGR_BG ((uint16_t)0x0080) /*!<Break Generation */
MartinJohnson 0:c65854d98061 8512 #define TIM_EGR_B2G ((uint16_t)0x0100) /*!<Break Generation */
MartinJohnson 0:c65854d98061 8513
MartinJohnson 0:c65854d98061 8514
MartinJohnson 0:c65854d98061 8515 /****************** Bit definition for TIM_CCMR1 register *******************/
MartinJohnson 0:c65854d98061 8516 #define TIM_CCMR1_CC1S ((uint32_t)0x00000003) /*!<CC1S[1:0] bits (Capture/Compare 1 Selection) */
MartinJohnson 0:c65854d98061 8517 #define TIM_CCMR1_CC1S_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8518 #define TIM_CCMR1_CC1S_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8519
MartinJohnson 0:c65854d98061 8520 #define TIM_CCMR1_OC1FE ((uint32_t)0x00000004) /*!<Output Compare 1 Fast enable */
MartinJohnson 0:c65854d98061 8521 #define TIM_CCMR1_OC1PE ((uint32_t)0x00000008) /*!<Output Compare 1 Preload enable */
MartinJohnson 0:c65854d98061 8522
MartinJohnson 0:c65854d98061 8523 #define TIM_CCMR1_OC1M ((uint32_t)0x00010070) /*!<OC1M[2:0] bits (Output Compare 1 Mode) */
MartinJohnson 0:c65854d98061 8524 #define TIM_CCMR1_OC1M_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8525 #define TIM_CCMR1_OC1M_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8526 #define TIM_CCMR1_OC1M_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 8527 #define TIM_CCMR1_OC1M_3 ((uint32_t)0x00010000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 8528
MartinJohnson 0:c65854d98061 8529 #define TIM_CCMR1_OC1CE ((uint32_t)0x00000080) /*!<Output Compare 1Clear Enable */
MartinJohnson 0:c65854d98061 8530
MartinJohnson 0:c65854d98061 8531 #define TIM_CCMR1_CC2S ((uint32_t)0x00000300) /*!<CC2S[1:0] bits (Capture/Compare 2 Selection) */
MartinJohnson 0:c65854d98061 8532 #define TIM_CCMR1_CC2S_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8533 #define TIM_CCMR1_CC2S_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8534
MartinJohnson 0:c65854d98061 8535 #define TIM_CCMR1_OC2FE ((uint32_t)0x00000400) /*!<Output Compare 2 Fast enable */
MartinJohnson 0:c65854d98061 8536 #define TIM_CCMR1_OC2PE ((uint32_t)0x00000800) /*!<Output Compare 2 Preload enable */
MartinJohnson 0:c65854d98061 8537
MartinJohnson 0:c65854d98061 8538 #define TIM_CCMR1_OC2M ((uint32_t)0x01007000) /*!<OC2M[2:0] bits (Output Compare 2 Mode) */
MartinJohnson 0:c65854d98061 8539 #define TIM_CCMR1_OC2M_0 ((uint32_t)0x00001000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8540 #define TIM_CCMR1_OC2M_1 ((uint32_t)0x00002000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8541 #define TIM_CCMR1_OC2M_2 ((uint32_t)0x00004000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 8542 #define TIM_CCMR1_OC2M_3 ((uint32_t)0x01000000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 8543
MartinJohnson 0:c65854d98061 8544 #define TIM_CCMR1_OC2CE ((uint32_t)0x00008000) /*!<Output Compare 2 Clear Enable */
MartinJohnson 0:c65854d98061 8545
MartinJohnson 0:c65854d98061 8546 /*----------------------------------------------------------------------------*/
MartinJohnson 0:c65854d98061 8547
MartinJohnson 0:c65854d98061 8548 #define TIM_CCMR1_IC1PSC ((uint32_t)0x0000000C) /*!<IC1PSC[1:0] bits (Input Capture 1 Prescaler) */
MartinJohnson 0:c65854d98061 8549 #define TIM_CCMR1_IC1PSC_0 ((uint32_t)0x00000004) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8550 #define TIM_CCMR1_IC1PSC_1 ((uint32_t)0x00000008) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8551
MartinJohnson 0:c65854d98061 8552 #define TIM_CCMR1_IC1F ((uint32_t)0x000000F0) /*!<IC1F[3:0] bits (Input Capture 1 Filter) */
MartinJohnson 0:c65854d98061 8553 #define TIM_CCMR1_IC1F_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8554 #define TIM_CCMR1_IC1F_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8555 #define TIM_CCMR1_IC1F_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 8556 #define TIM_CCMR1_IC1F_3 ((uint32_t)0x00000080) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 8557
MartinJohnson 0:c65854d98061 8558 #define TIM_CCMR1_IC2PSC ((uint32_t)0x00000C00) /*!<IC2PSC[1:0] bits (Input Capture 2 Prescaler) */
MartinJohnson 0:c65854d98061 8559 #define TIM_CCMR1_IC2PSC_0 ((uint32_t)0x00000400) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8560 #define TIM_CCMR1_IC2PSC_1 ((uint32_t)0x00000800) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8561
MartinJohnson 0:c65854d98061 8562 #define TIM_CCMR1_IC2F ((uint32_t)0x0000F000) /*!<IC2F[3:0] bits (Input Capture 2 Filter) */
MartinJohnson 0:c65854d98061 8563 #define TIM_CCMR1_IC2F_0 ((uint32_t)0x00001000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8564 #define TIM_CCMR1_IC2F_1 ((uint32_t)0x00002000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8565 #define TIM_CCMR1_IC2F_2 ((uint32_t)0x00004000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 8566 #define TIM_CCMR1_IC2F_3 ((uint32_t)0x00008000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 8567
MartinJohnson 0:c65854d98061 8568 /****************** Bit definition for TIM_CCMR2 register *******************/
MartinJohnson 0:c65854d98061 8569 #define TIM_CCMR2_CC3S ((uint32_t)0x00000003) /*!<CC3S[1:0] bits (Capture/Compare 3 Selection) */
MartinJohnson 0:c65854d98061 8570 #define TIM_CCMR2_CC3S_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8571 #define TIM_CCMR2_CC3S_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8572
MartinJohnson 0:c65854d98061 8573 #define TIM_CCMR2_OC3FE ((uint32_t)0x00000004) /*!<Output Compare 3 Fast enable */
MartinJohnson 0:c65854d98061 8574 #define TIM_CCMR2_OC3PE ((uint32_t)0x00000008) /*!<Output Compare 3 Preload enable */
MartinJohnson 0:c65854d98061 8575
MartinJohnson 0:c65854d98061 8576 #define TIM_CCMR2_OC3M ((uint32_t)0x00000070) /*!<OC3M[2:0] bits (Output Compare 3 Mode) */
MartinJohnson 0:c65854d98061 8577 #define TIM_CCMR2_OC3M_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8578 #define TIM_CCMR2_OC3M_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8579 #define TIM_CCMR2_OC3M_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 8580 #define TIM_CCMR2_OC3M_3 ((uint32_t)0x00010000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 8581
MartinJohnson 0:c65854d98061 8582 #define TIM_CCMR2_OC3CE ((uint32_t)0x00000080) /*!<Output Compare 3 Clear Enable */
MartinJohnson 0:c65854d98061 8583
MartinJohnson 0:c65854d98061 8584 #define TIM_CCMR2_CC4S ((uint32_t)0x00000300) /*!<CC4S[1:0] bits (Capture/Compare 4 Selection) */
MartinJohnson 0:c65854d98061 8585 #define TIM_CCMR2_CC4S_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8586 #define TIM_CCMR2_CC4S_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8587
MartinJohnson 0:c65854d98061 8588 #define TIM_CCMR2_OC4FE ((uint32_t)0x00000400) /*!<Output Compare 4 Fast enable */
MartinJohnson 0:c65854d98061 8589 #define TIM_CCMR2_OC4PE ((uint32_t)0x00000800) /*!<Output Compare 4 Preload enable */
MartinJohnson 0:c65854d98061 8590
MartinJohnson 0:c65854d98061 8591 #define TIM_CCMR2_OC4M ((uint32_t)0x00007000) /*!<OC4M[2:0] bits (Output Compare 4 Mode) */
MartinJohnson 0:c65854d98061 8592 #define TIM_CCMR2_OC4M_0 ((uint32_t)0x00001000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8593 #define TIM_CCMR2_OC4M_1 ((uint32_t)0x00002000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8594 #define TIM_CCMR2_OC4M_2 ((uint32_t)0x00004000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 8595 #define TIM_CCMR2_OC4M_3 ((uint32_t)0x00100000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 8596
MartinJohnson 0:c65854d98061 8597 #define TIM_CCMR2_OC4CE ((uint32_t)0x00008000) /*!<Output Compare 4 Clear Enable */
MartinJohnson 0:c65854d98061 8598
MartinJohnson 0:c65854d98061 8599 /*----------------------------------------------------------------------------*/
MartinJohnson 0:c65854d98061 8600
MartinJohnson 0:c65854d98061 8601 #define TIM_CCMR2_IC3PSC ((uint16_t)0x0000000C) /*!<IC3PSC[1:0] bits (Input Capture 3 Prescaler) */
MartinJohnson 0:c65854d98061 8602 #define TIM_CCMR2_IC3PSC_0 ((uint16_t)0x00000004) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8603 #define TIM_CCMR2_IC3PSC_1 ((uint16_t)0x00000008) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8604
MartinJohnson 0:c65854d98061 8605 #define TIM_CCMR2_IC3F ((uint16_t)0x000000F0) /*!<IC3F[3:0] bits (Input Capture 3 Filter) */
MartinJohnson 0:c65854d98061 8606 #define TIM_CCMR2_IC3F_0 ((uint16_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8607 #define TIM_CCMR2_IC3F_1 ((uint16_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8608 #define TIM_CCMR2_IC3F_2 ((uint16_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 8609 #define TIM_CCMR2_IC3F_3 ((uint16_t)0x00000080) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 8610
MartinJohnson 0:c65854d98061 8611 #define TIM_CCMR2_IC4PSC ((uint16_t)0x00000C00) /*!<IC4PSC[1:0] bits (Input Capture 4 Prescaler) */
MartinJohnson 0:c65854d98061 8612 #define TIM_CCMR2_IC4PSC_0 ((uint16_t)0x00000400) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8613 #define TIM_CCMR2_IC4PSC_1 ((uint16_t)0x00000800) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8614
MartinJohnson 0:c65854d98061 8615 #define TIM_CCMR2_IC4F ((uint16_t)0x0000F000) /*!<IC4F[3:0] bits (Input Capture 4 Filter) */
MartinJohnson 0:c65854d98061 8616 #define TIM_CCMR2_IC4F_0 ((uint16_t)0x00001000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8617 #define TIM_CCMR2_IC4F_1 ((uint16_t)0x00002000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8618 #define TIM_CCMR2_IC4F_2 ((uint16_t)0x00004000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 8619 #define TIM_CCMR2_IC4F_3 ((uint16_t)0x00008000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 8620
MartinJohnson 0:c65854d98061 8621 /******************* Bit definition for TIM_CCER register *******************/
MartinJohnson 0:c65854d98061 8622 #define TIM_CCER_CC1E ((uint32_t)0x00000001) /*!<Capture/Compare 1 output enable */
MartinJohnson 0:c65854d98061 8623 #define TIM_CCER_CC1P ((uint32_t)0x00000002) /*!<Capture/Compare 1 output Polarity */
MartinJohnson 0:c65854d98061 8624 #define TIM_CCER_CC1NE ((uint32_t)0x00000004) /*!<Capture/Compare 1 Complementary output enable */
MartinJohnson 0:c65854d98061 8625 #define TIM_CCER_CC1NP ((uint32_t)0x00000008) /*!<Capture/Compare 1 Complementary output Polarity */
MartinJohnson 0:c65854d98061 8626 #define TIM_CCER_CC2E ((uint32_t)0x00000010) /*!<Capture/Compare 2 output enable */
MartinJohnson 0:c65854d98061 8627 #define TIM_CCER_CC2P ((uint32_t)0x00000020) /*!<Capture/Compare 2 output Polarity */
MartinJohnson 0:c65854d98061 8628 #define TIM_CCER_CC2NE ((uint32_t)0x00000040) /*!<Capture/Compare 2 Complementary output enable */
MartinJohnson 0:c65854d98061 8629 #define TIM_CCER_CC2NP ((uint32_t)0x00000080) /*!<Capture/Compare 2 Complementary output Polarity */
MartinJohnson 0:c65854d98061 8630 #define TIM_CCER_CC3E ((uint32_t)0x00000100) /*!<Capture/Compare 3 output enable */
MartinJohnson 0:c65854d98061 8631 #define TIM_CCER_CC3P ((uint32_t)0x00000200) /*!<Capture/Compare 3 output Polarity */
MartinJohnson 0:c65854d98061 8632 #define TIM_CCER_CC3NE ((uint32_t)0x00000400) /*!<Capture/Compare 3 Complementary output enable */
MartinJohnson 0:c65854d98061 8633 #define TIM_CCER_CC3NP ((uint32_t)0x00000800) /*!<Capture/Compare 3 Complementary output Polarity */
MartinJohnson 0:c65854d98061 8634 #define TIM_CCER_CC4E ((uint32_t)0x00001000) /*!<Capture/Compare 4 output enable */
MartinJohnson 0:c65854d98061 8635 #define TIM_CCER_CC4P ((uint32_t)0x00002000) /*!<Capture/Compare 4 output Polarity */
MartinJohnson 0:c65854d98061 8636 #define TIM_CCER_CC4NP ((uint32_t)0x00008000) /*!<Capture/Compare 4 Complementary output Polarity */
MartinJohnson 0:c65854d98061 8637 #define TIM_CCER_CC5E ((uint32_t)0x00010000) /*!<Capture/Compare 5 output enable */
MartinJohnson 0:c65854d98061 8638 #define TIM_CCER_CC5P ((uint32_t)0x00020000) /*!<Capture/Compare 5 output Polarity */
MartinJohnson 0:c65854d98061 8639 #define TIM_CCER_CC6E ((uint32_t)0x00100000) /*!<Capture/Compare 6 output enable */
MartinJohnson 0:c65854d98061 8640 #define TIM_CCER_CC6P ((uint32_t)0x00200000) /*!<Capture/Compare 6 output Polarity */
MartinJohnson 0:c65854d98061 8641 /******************* Bit definition for TIM_CNT register ********************/
MartinJohnson 0:c65854d98061 8642 #define TIM_CNT_CNT ((uint32_t)0xFFFFFFFF) /*!<Counter Value */
MartinJohnson 0:c65854d98061 8643 #define TIM_CNT_UIFCPY ((uint32_t)0x80000000) /*!<Update interrupt flag copy */
MartinJohnson 0:c65854d98061 8644 /******************* Bit definition for TIM_PSC register ********************/
MartinJohnson 0:c65854d98061 8645 #define TIM_PSC_PSC ((uint16_t)0xFFFF) /*!<Prescaler Value */
MartinJohnson 0:c65854d98061 8646
MartinJohnson 0:c65854d98061 8647 /******************* Bit definition for TIM_ARR register ********************/
MartinJohnson 0:c65854d98061 8648 #define TIM_ARR_ARR ((uint32_t)0xFFFFFFFF) /*!<actual auto-reload Value */
MartinJohnson 0:c65854d98061 8649
MartinJohnson 0:c65854d98061 8650 /******************* Bit definition for TIM_RCR register ********************/
MartinJohnson 0:c65854d98061 8651 #define TIM_RCR_REP ((uint8_t)0xFF) /*!<Repetition Counter Value */
MartinJohnson 0:c65854d98061 8652
MartinJohnson 0:c65854d98061 8653 /******************* Bit definition for TIM_CCR1 register *******************/
MartinJohnson 0:c65854d98061 8654 #define TIM_CCR1_CCR1 ((uint16_t)0xFFFF) /*!<Capture/Compare 1 Value */
MartinJohnson 0:c65854d98061 8655
MartinJohnson 0:c65854d98061 8656 /******************* Bit definition for TIM_CCR2 register *******************/
MartinJohnson 0:c65854d98061 8657 #define TIM_CCR2_CCR2 ((uint16_t)0xFFFF) /*!<Capture/Compare 2 Value */
MartinJohnson 0:c65854d98061 8658
MartinJohnson 0:c65854d98061 8659 /******************* Bit definition for TIM_CCR3 register *******************/
MartinJohnson 0:c65854d98061 8660 #define TIM_CCR3_CCR3 ((uint16_t)0xFFFF) /*!<Capture/Compare 3 Value */
MartinJohnson 0:c65854d98061 8661
MartinJohnson 0:c65854d98061 8662 /******************* Bit definition for TIM_CCR4 register *******************/
MartinJohnson 0:c65854d98061 8663 #define TIM_CCR4_CCR4 ((uint16_t)0xFFFF) /*!<Capture/Compare 4 Value */
MartinJohnson 0:c65854d98061 8664
MartinJohnson 0:c65854d98061 8665 /******************* Bit definition for TIM_CCR5 register *******************/
MartinJohnson 0:c65854d98061 8666 #define TIM_CCR5_CCR5 ((uint32_t)0xFFFFFFFF) /*!<Capture/Compare 5 Value */
MartinJohnson 0:c65854d98061 8667 #define TIM_CCR5_GC5C1 ((uint32_t)0x20000000) /*!<Group Channel 5 and Channel 1 */
MartinJohnson 0:c65854d98061 8668 #define TIM_CCR5_GC5C2 ((uint32_t)0x40000000) /*!<Group Channel 5 and Channel 2 */
MartinJohnson 0:c65854d98061 8669 #define TIM_CCR5_GC5C3 ((uint32_t)0x80000000) /*!<Group Channel 5 and Channel 3 */
MartinJohnson 0:c65854d98061 8670
MartinJohnson 0:c65854d98061 8671 /******************* Bit definition for TIM_CCR6 register *******************/
MartinJohnson 0:c65854d98061 8672 #define TIM_CCR6_CCR6 ((uint16_t)0xFFFF) /*!<Capture/Compare 6 Value */
MartinJohnson 0:c65854d98061 8673
MartinJohnson 0:c65854d98061 8674 /******************* Bit definition for TIM_BDTR register *******************/
MartinJohnson 0:c65854d98061 8675 #define TIM_BDTR_DTG ((uint32_t)0x000000FF) /*!<DTG[0:7] bits (Dead-Time Generator set-up) */
MartinJohnson 0:c65854d98061 8676 #define TIM_BDTR_DTG_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8677 #define TIM_BDTR_DTG_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8678 #define TIM_BDTR_DTG_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 8679 #define TIM_BDTR_DTG_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 8680 #define TIM_BDTR_DTG_4 ((uint32_t)0x00000010) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 8681 #define TIM_BDTR_DTG_5 ((uint32_t)0x00000020) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 8682 #define TIM_BDTR_DTG_6 ((uint32_t)0x00000040) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 8683 #define TIM_BDTR_DTG_7 ((uint32_t)0x00000080) /*!<Bit 7 */
MartinJohnson 0:c65854d98061 8684
MartinJohnson 0:c65854d98061 8685 #define TIM_BDTR_LOCK ((uint32_t)0x00000300) /*!<LOCK[1:0] bits (Lock Configuration) */
MartinJohnson 0:c65854d98061 8686 #define TIM_BDTR_LOCK_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8687 #define TIM_BDTR_LOCK_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8688
MartinJohnson 0:c65854d98061 8689 #define TIM_BDTR_OSSI ((uint32_t)0x00000400) /*!<Off-State Selection for Idle mode */
MartinJohnson 0:c65854d98061 8690 #define TIM_BDTR_OSSR ((uint32_t)0x00000800) /*!<Off-State Selection for Run mode */
MartinJohnson 0:c65854d98061 8691 #define TIM_BDTR_BKE ((uint32_t)0x00001000) /*!<Break enable for Break1 */
MartinJohnson 0:c65854d98061 8692 #define TIM_BDTR_BKP ((uint32_t)0x00002000) /*!<Break Polarity for Break1 */
MartinJohnson 0:c65854d98061 8693 #define TIM_BDTR_AOE ((uint32_t)0x00004000) /*!<Automatic Output enable */
MartinJohnson 0:c65854d98061 8694 #define TIM_BDTR_MOE ((uint32_t)0x00008000) /*!<Main Output enable */
MartinJohnson 0:c65854d98061 8695
MartinJohnson 0:c65854d98061 8696 #define TIM_BDTR_BKF ((uint32_t)0x000F0000) /*!<Break Filter for Break1 */
MartinJohnson 0:c65854d98061 8697 #define TIM_BDTR_BK2F ((uint32_t)0x00F00000) /*!<Break Filter for Break2 */
MartinJohnson 0:c65854d98061 8698
MartinJohnson 0:c65854d98061 8699 #define TIM_BDTR_BK2E ((uint32_t)0x01000000) /*!<Break enable for Break2 */
MartinJohnson 0:c65854d98061 8700 #define TIM_BDTR_BK2P ((uint32_t)0x02000000) /*!<Break Polarity for Break2 */
MartinJohnson 0:c65854d98061 8701
MartinJohnson 0:c65854d98061 8702 /******************* Bit definition for TIM_DCR register ********************/
MartinJohnson 0:c65854d98061 8703 #define TIM_DCR_DBA ((uint16_t)0x001F) /*!<DBA[4:0] bits (DMA Base Address) */
MartinJohnson 0:c65854d98061 8704 #define TIM_DCR_DBA_0 ((uint16_t)0x0001) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8705 #define TIM_DCR_DBA_1 ((uint16_t)0x0002) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8706 #define TIM_DCR_DBA_2 ((uint16_t)0x0004) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 8707 #define TIM_DCR_DBA_3 ((uint16_t)0x0008) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 8708 #define TIM_DCR_DBA_4 ((uint16_t)0x0010) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 8709
MartinJohnson 0:c65854d98061 8710 #define TIM_DCR_DBL ((uint16_t)0x1F00) /*!<DBL[4:0] bits (DMA Burst Length) */
MartinJohnson 0:c65854d98061 8711 #define TIM_DCR_DBL_0 ((uint16_t)0x0100) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8712 #define TIM_DCR_DBL_1 ((uint16_t)0x0200) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8713 #define TIM_DCR_DBL_2 ((uint16_t)0x0400) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 8714 #define TIM_DCR_DBL_3 ((uint16_t)0x0800) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 8715 #define TIM_DCR_DBL_4 ((uint16_t)0x1000) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 8716
MartinJohnson 0:c65854d98061 8717 /******************* Bit definition for TIM_DMAR register *******************/
MartinJohnson 0:c65854d98061 8718 #define TIM_DMAR_DMAB ((uint16_t)0xFFFF) /*!<DMA register for burst accesses */
MartinJohnson 0:c65854d98061 8719
MartinJohnson 0:c65854d98061 8720 /******************* Bit definition for TIM16_OR register *********************/
MartinJohnson 0:c65854d98061 8721 #define TIM16_OR_TI1_RMP ((uint16_t)0x00C0) /*!<TI1_RMP[1:0] bits (TIM16 Input 1 remap) */
MartinJohnson 0:c65854d98061 8722 #define TIM16_OR_TI1_RMP_0 ((uint16_t)0x0040) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8723 #define TIM16_OR_TI1_RMP_1 ((uint16_t)0x0080) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8724
MartinJohnson 0:c65854d98061 8725 /******************* Bit definition for TIM1_OR register *********************/
MartinJohnson 0:c65854d98061 8726 #define TIM1_OR_ETR_RMP ((uint16_t)0x000F) /*!<ETR_RMP[3:0] bits (TIM1 ETR remap) */
MartinJohnson 0:c65854d98061 8727 #define TIM1_OR_ETR_RMP_0 ((uint16_t)0x0001) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8728 #define TIM1_OR_ETR_RMP_1 ((uint16_t)0x0002) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8729 #define TIM1_OR_ETR_RMP_2 ((uint16_t)0x0004) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 8730 #define TIM1_OR_ETR_RMP_3 ((uint16_t)0x0008) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 8731
MartinJohnson 0:c65854d98061 8732 /******************* Bit definition for TIM8_OR register *********************/
MartinJohnson 0:c65854d98061 8733 #define TIM8_OR_ETR_RMP ((uint16_t)0x000F) /*!<ETR_RMP[3:0] bits (TIM8 ETR remap) */
MartinJohnson 0:c65854d98061 8734 #define TIM8_OR_ETR_RMP_0 ((uint16_t)0x0001) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8735 #define TIM8_OR_ETR_RMP_1 ((uint16_t)0x0002) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8736 #define TIM8_OR_ETR_RMP_2 ((uint16_t)0x0004) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 8737 #define TIM8_OR_ETR_RMP_3 ((uint16_t)0x0008) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 8738
MartinJohnson 0:c65854d98061 8739 /******************* Bit definition for TIM20_OR register *******************/
MartinJohnson 0:c65854d98061 8740 #define TIM20_OR_ETR_RMP ((uint32_t)0x0000000F) /*!<ETR_RMP[3:0] bits (TIM20 ETR remap) */
MartinJohnson 0:c65854d98061 8741 #define TIM20_OR_ETR_RMP_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8742 #define TIM20_OR_ETR_RMP_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8743 #define TIM20_OR_ETR_RMP_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 8744 #define TIM20_OR_ETR_RMP_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 8745
MartinJohnson 0:c65854d98061 8746 /****************** Bit definition for TIM_CCMR3 register *******************/
MartinJohnson 0:c65854d98061 8747 #define TIM_CCMR3_OC5FE ((uint32_t)0x00000004) /*!<Output Compare 5 Fast enable */
MartinJohnson 0:c65854d98061 8748 #define TIM_CCMR3_OC5PE ((uint32_t)0x00000008) /*!<Output Compare 5 Preload enable */
MartinJohnson 0:c65854d98061 8749
MartinJohnson 0:c65854d98061 8750 #define TIM_CCMR3_OC5M ((uint32_t)0x00000070) /*!<OC5M[2:0] bits (Output Compare 5 Mode) */
MartinJohnson 0:c65854d98061 8751 #define TIM_CCMR3_OC5M_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8752 #define TIM_CCMR3_OC5M_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8753 #define TIM_CCMR3_OC5M_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 8754 #define TIM_CCMR3_OC5M_3 ((uint32_t)0x00010000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 8755
MartinJohnson 0:c65854d98061 8756 #define TIM_CCMR3_OC5CE ((uint32_t)0x00000080) /*!<Output Compare 5 Clear Enable */
MartinJohnson 0:c65854d98061 8757
MartinJohnson 0:c65854d98061 8758 #define TIM_CCMR3_OC6FE ((uint32_t)0x00000400) /*!<Output Compare 4 Fast enable */
MartinJohnson 0:c65854d98061 8759 #define TIM_CCMR3_OC6PE ((uint32_t)0x00000800) /*!<Output Compare 4 Preload enable */
MartinJohnson 0:c65854d98061 8760
MartinJohnson 0:c65854d98061 8761 #define TIM_CCMR3_OC6M ((uint32_t)0x00007000) /*!<OC4M[2:0] bits (Output Compare 4 Mode) */
MartinJohnson 0:c65854d98061 8762 #define TIM_CCMR3_OC6M_0 ((uint32_t)0x00001000) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8763 #define TIM_CCMR3_OC6M_1 ((uint32_t)0x00002000) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8764 #define TIM_CCMR3_OC6M_2 ((uint32_t)0x00004000) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 8765 #define TIM_CCMR3_OC6M_3 ((uint32_t)0x00100000) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 8766
MartinJohnson 0:c65854d98061 8767 #define TIM_CCMR3_OC6CE ((uint32_t)0x00008000) /*!<Output Compare 4 Clear Enable */
MartinJohnson 0:c65854d98061 8768
MartinJohnson 0:c65854d98061 8769 /******************************************************************************/
MartinJohnson 0:c65854d98061 8770 /* */
MartinJohnson 0:c65854d98061 8771 /* Universal Synchronous Asynchronous Receiver Transmitter (USART) */
MartinJohnson 0:c65854d98061 8772 /* */
MartinJohnson 0:c65854d98061 8773 /******************************************************************************/
MartinJohnson 0:c65854d98061 8774 /****************** Bit definition for USART_CR1 register *******************/
MartinJohnson 0:c65854d98061 8775 #define USART_CR1_UE ((uint32_t)0x00000001) /*!< USART Enable */
MartinJohnson 0:c65854d98061 8776 #define USART_CR1_UESM ((uint32_t)0x00000002) /*!< USART Enable in STOP Mode */
MartinJohnson 0:c65854d98061 8777 #define USART_CR1_RE ((uint32_t)0x00000004) /*!< Receiver Enable */
MartinJohnson 0:c65854d98061 8778 #define USART_CR1_TE ((uint32_t)0x00000008) /*!< Transmitter Enable */
MartinJohnson 0:c65854d98061 8779 #define USART_CR1_IDLEIE ((uint32_t)0x00000010) /*!< IDLE Interrupt Enable */
MartinJohnson 0:c65854d98061 8780 #define USART_CR1_RXNEIE ((uint32_t)0x00000020) /*!< RXNE Interrupt Enable */
MartinJohnson 0:c65854d98061 8781 #define USART_CR1_TCIE ((uint32_t)0x00000040) /*!< Transmission Complete Interrupt Enable */
MartinJohnson 0:c65854d98061 8782 #define USART_CR1_TXEIE ((uint32_t)0x00000080) /*!< TXE Interrupt Enable */
MartinJohnson 0:c65854d98061 8783 #define USART_CR1_PEIE ((uint32_t)0x00000100) /*!< PE Interrupt Enable */
MartinJohnson 0:c65854d98061 8784 #define USART_CR1_PS ((uint32_t)0x00000200) /*!< Parity Selection */
MartinJohnson 0:c65854d98061 8785 #define USART_CR1_PCE ((uint32_t)0x00000400) /*!< Parity Control Enable */
MartinJohnson 0:c65854d98061 8786 #define USART_CR1_WAKE ((uint32_t)0x00000800) /*!< Receiver Wakeup method */
MartinJohnson 0:c65854d98061 8787 #define USART_CR1_M ((uint32_t)0x00001000) /*!< Word length */
MartinJohnson 0:c65854d98061 8788 #define USART_CR1_MME ((uint32_t)0x00002000) /*!< Mute Mode Enable */
MartinJohnson 0:c65854d98061 8789 #define USART_CR1_CMIE ((uint32_t)0x00004000) /*!< Character match interrupt enable */
MartinJohnson 0:c65854d98061 8790 #define USART_CR1_OVER8 ((uint32_t)0x00008000) /*!< Oversampling by 8-bit or 16-bit mode */
MartinJohnson 0:c65854d98061 8791 #define USART_CR1_DEDT ((uint32_t)0x001F0000) /*!< DEDT[4:0] bits (Driver Enable Deassertion Time) */
MartinJohnson 0:c65854d98061 8792 #define USART_CR1_DEDT_0 ((uint32_t)0x00010000) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 8793 #define USART_CR1_DEDT_1 ((uint32_t)0x00020000) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 8794 #define USART_CR1_DEDT_2 ((uint32_t)0x00040000) /*!< Bit 2 */
MartinJohnson 0:c65854d98061 8795 #define USART_CR1_DEDT_3 ((uint32_t)0x00080000) /*!< Bit 3 */
MartinJohnson 0:c65854d98061 8796 #define USART_CR1_DEDT_4 ((uint32_t)0x00100000) /*!< Bit 4 */
MartinJohnson 0:c65854d98061 8797 #define USART_CR1_DEAT ((uint32_t)0x03E00000) /*!< DEAT[4:0] bits (Driver Enable Assertion Time) */
MartinJohnson 0:c65854d98061 8798 #define USART_CR1_DEAT_0 ((uint32_t)0x00200000) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 8799 #define USART_CR1_DEAT_1 ((uint32_t)0x00400000) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 8800 #define USART_CR1_DEAT_2 ((uint32_t)0x00800000) /*!< Bit 2 */
MartinJohnson 0:c65854d98061 8801 #define USART_CR1_DEAT_3 ((uint32_t)0x01000000) /*!< Bit 3 */
MartinJohnson 0:c65854d98061 8802 #define USART_CR1_DEAT_4 ((uint32_t)0x02000000) /*!< Bit 4 */
MartinJohnson 0:c65854d98061 8803 #define USART_CR1_RTOIE ((uint32_t)0x04000000) /*!< Receive Time Out interrupt enable */
MartinJohnson 0:c65854d98061 8804 #define USART_CR1_EOBIE ((uint32_t)0x08000000) /*!< End of Block interrupt enable */
MartinJohnson 0:c65854d98061 8805
MartinJohnson 0:c65854d98061 8806 /****************** Bit definition for USART_CR2 register *******************/
MartinJohnson 0:c65854d98061 8807 #define USART_CR2_ADDM7 ((uint32_t)0x00000010) /*!< 7-bit or 4-bit Address Detection */
MartinJohnson 0:c65854d98061 8808 #define USART_CR2_LBDL ((uint32_t)0x00000020) /*!< LIN Break Detection Length */
MartinJohnson 0:c65854d98061 8809 #define USART_CR2_LBDIE ((uint32_t)0x00000040) /*!< LIN Break Detection Interrupt Enable */
MartinJohnson 0:c65854d98061 8810 #define USART_CR2_LBCL ((uint32_t)0x00000100) /*!< Last Bit Clock pulse */
MartinJohnson 0:c65854d98061 8811 #define USART_CR2_CPHA ((uint32_t)0x00000200) /*!< Clock Phase */
MartinJohnson 0:c65854d98061 8812 #define USART_CR2_CPOL ((uint32_t)0x00000400) /*!< Clock Polarity */
MartinJohnson 0:c65854d98061 8813 #define USART_CR2_CLKEN ((uint32_t)0x00000800) /*!< Clock Enable */
MartinJohnson 0:c65854d98061 8814 #define USART_CR2_STOP ((uint32_t)0x00003000) /*!< STOP[1:0] bits (STOP bits) */
MartinJohnson 0:c65854d98061 8815 #define USART_CR2_STOP_0 ((uint32_t)0x00001000) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 8816 #define USART_CR2_STOP_1 ((uint32_t)0x00002000) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 8817 #define USART_CR2_LINEN ((uint32_t)0x00004000) /*!< LIN mode enable */
MartinJohnson 0:c65854d98061 8818 #define USART_CR2_SWAP ((uint32_t)0x00008000) /*!< SWAP TX/RX pins */
MartinJohnson 0:c65854d98061 8819 #define USART_CR2_RXINV ((uint32_t)0x00010000) /*!< RX pin active level inversion */
MartinJohnson 0:c65854d98061 8820 #define USART_CR2_TXINV ((uint32_t)0x00020000) /*!< TX pin active level inversion */
MartinJohnson 0:c65854d98061 8821 #define USART_CR2_DATAINV ((uint32_t)0x00040000) /*!< Binary data inversion */
MartinJohnson 0:c65854d98061 8822 #define USART_CR2_MSBFIRST ((uint32_t)0x00080000) /*!< Most Significant Bit First */
MartinJohnson 0:c65854d98061 8823 #define USART_CR2_ABREN ((uint32_t)0x00100000) /*!< Auto Baud-Rate Enable*/
MartinJohnson 0:c65854d98061 8824 #define USART_CR2_ABRMODE ((uint32_t)0x00600000) /*!< ABRMOD[1:0] bits (Auto Baud-Rate Mode) */
MartinJohnson 0:c65854d98061 8825 #define USART_CR2_ABRMODE_0 ((uint32_t)0x00200000) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 8826 #define USART_CR2_ABRMODE_1 ((uint32_t)0x00400000) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 8827 #define USART_CR2_RTOEN ((uint32_t)0x00800000) /*!< Receiver Time-Out enable */
MartinJohnson 0:c65854d98061 8828 #define USART_CR2_ADD ((uint32_t)0xFF000000) /*!< Address of the USART node */
MartinJohnson 0:c65854d98061 8829
MartinJohnson 0:c65854d98061 8830 /****************** Bit definition for USART_CR3 register *******************/
MartinJohnson 0:c65854d98061 8831 #define USART_CR3_EIE ((uint32_t)0x00000001) /*!< Error Interrupt Enable */
MartinJohnson 0:c65854d98061 8832 #define USART_CR3_IREN ((uint32_t)0x00000002) /*!< IrDA mode Enable */
MartinJohnson 0:c65854d98061 8833 #define USART_CR3_IRLP ((uint32_t)0x00000004) /*!< IrDA Low-Power */
MartinJohnson 0:c65854d98061 8834 #define USART_CR3_HDSEL ((uint32_t)0x00000008) /*!< Half-Duplex Selection */
MartinJohnson 0:c65854d98061 8835 #define USART_CR3_NACK ((uint32_t)0x00000010) /*!< SmartCard NACK enable */
MartinJohnson 0:c65854d98061 8836 #define USART_CR3_SCEN ((uint32_t)0x00000020) /*!< SmartCard mode enable */
MartinJohnson 0:c65854d98061 8837 #define USART_CR3_DMAR ((uint32_t)0x00000040) /*!< DMA Enable Receiver */
MartinJohnson 0:c65854d98061 8838 #define USART_CR3_DMAT ((uint32_t)0x00000080) /*!< DMA Enable Transmitter */
MartinJohnson 0:c65854d98061 8839 #define USART_CR3_RTSE ((uint32_t)0x00000100) /*!< RTS Enable */
MartinJohnson 0:c65854d98061 8840 #define USART_CR3_CTSE ((uint32_t)0x00000200) /*!< CTS Enable */
MartinJohnson 0:c65854d98061 8841 #define USART_CR3_CTSIE ((uint32_t)0x00000400) /*!< CTS Interrupt Enable */
MartinJohnson 0:c65854d98061 8842 #define USART_CR3_ONEBIT ((uint32_t)0x00000800) /*!< One sample bit method enable */
MartinJohnson 0:c65854d98061 8843 #define USART_CR3_OVRDIS ((uint32_t)0x00001000) /*!< Overrun Disable */
MartinJohnson 0:c65854d98061 8844 #define USART_CR3_DDRE ((uint32_t)0x00002000) /*!< DMA Disable on Reception Error */
MartinJohnson 0:c65854d98061 8845 #define USART_CR3_DEM ((uint32_t)0x00004000) /*!< Driver Enable Mode */
MartinJohnson 0:c65854d98061 8846 #define USART_CR3_DEP ((uint32_t)0x00008000) /*!< Driver Enable Polarity Selection */
MartinJohnson 0:c65854d98061 8847 #define USART_CR3_SCARCNT ((uint32_t)0x000E0000) /*!< SCARCNT[2:0] bits (SmartCard Auto-Retry Count) */
MartinJohnson 0:c65854d98061 8848 #define USART_CR3_SCARCNT_0 ((uint32_t)0x00020000) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 8849 #define USART_CR3_SCARCNT_1 ((uint32_t)0x00040000) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 8850 #define USART_CR3_SCARCNT_2 ((uint32_t)0x00080000) /*!< Bit 2 */
MartinJohnson 0:c65854d98061 8851 #define USART_CR3_WUS ((uint32_t)0x00300000) /*!< WUS[1:0] bits (Wake UP Interrupt Flag Selection) */
MartinJohnson 0:c65854d98061 8852 #define USART_CR3_WUS_0 ((uint32_t)0x00100000) /*!< Bit 0 */
MartinJohnson 0:c65854d98061 8853 #define USART_CR3_WUS_1 ((uint32_t)0x00200000) /*!< Bit 1 */
MartinJohnson 0:c65854d98061 8854 #define USART_CR3_WUFIE ((uint32_t)0x00400000) /*!< Wake Up Interrupt Enable */
MartinJohnson 0:c65854d98061 8855
MartinJohnson 0:c65854d98061 8856 /****************** Bit definition for USART_BRR register *******************/
MartinJohnson 0:c65854d98061 8857 #define USART_BRR_DIV_FRACTION ((uint16_t)0x000F) /*!< Fraction of USARTDIV */
MartinJohnson 0:c65854d98061 8858 #define USART_BRR_DIV_MANTISSA ((uint16_t)0xFFF0) /*!< Mantissa of USARTDIV */
MartinJohnson 0:c65854d98061 8859
MartinJohnson 0:c65854d98061 8860 /****************** Bit definition for USART_GTPR register ******************/
MartinJohnson 0:c65854d98061 8861 #define USART_GTPR_PSC ((uint16_t)0x00FF) /*!< PSC[7:0] bits (Prescaler value) */
MartinJohnson 0:c65854d98061 8862 #define USART_GTPR_GT ((uint16_t)0xFF00) /*!< GT[7:0] bits (Guard time value) */
MartinJohnson 0:c65854d98061 8863
MartinJohnson 0:c65854d98061 8864
MartinJohnson 0:c65854d98061 8865 /******************* Bit definition for USART_RTOR register *****************/
MartinJohnson 0:c65854d98061 8866 #define USART_RTOR_RTO ((uint32_t)0x00FFFFFF) /*!< Receiver Time Out Value */
MartinJohnson 0:c65854d98061 8867 #define USART_RTOR_BLEN ((uint32_t)0xFF000000) /*!< Block Length */
MartinJohnson 0:c65854d98061 8868
MartinJohnson 0:c65854d98061 8869 /******************* Bit definition for USART_RQR register ******************/
MartinJohnson 0:c65854d98061 8870 #define USART_RQR_ABRRQ ((uint16_t)0x0001) /*!< Auto-Baud Rate Request */
MartinJohnson 0:c65854d98061 8871 #define USART_RQR_SBKRQ ((uint16_t)0x0002) /*!< Send Break Request */
MartinJohnson 0:c65854d98061 8872 #define USART_RQR_MMRQ ((uint16_t)0x0004) /*!< Mute Mode Request */
MartinJohnson 0:c65854d98061 8873 #define USART_RQR_RXFRQ ((uint16_t)0x0008) /*!< Receive Data flush Request */
MartinJohnson 0:c65854d98061 8874 #define USART_RQR_TXFRQ ((uint16_t)0x0010) /*!< Transmit data flush Request */
MartinJohnson 0:c65854d98061 8875
MartinJohnson 0:c65854d98061 8876 /******************* Bit definition for USART_ISR register ******************/
MartinJohnson 0:c65854d98061 8877 #define USART_ISR_PE ((uint32_t)0x00000001) /*!< Parity Error */
MartinJohnson 0:c65854d98061 8878 #define USART_ISR_FE ((uint32_t)0x00000002) /*!< Framing Error */
MartinJohnson 0:c65854d98061 8879 #define USART_ISR_NE ((uint32_t)0x00000004) /*!< Noise detected Flag */
MartinJohnson 0:c65854d98061 8880 #define USART_ISR_ORE ((uint32_t)0x00000008) /*!< OverRun Error */
MartinJohnson 0:c65854d98061 8881 #define USART_ISR_IDLE ((uint32_t)0x00000010) /*!< IDLE line detected */
MartinJohnson 0:c65854d98061 8882 #define USART_ISR_RXNE ((uint32_t)0x00000020) /*!< Read Data Register Not Empty */
MartinJohnson 0:c65854d98061 8883 #define USART_ISR_TC ((uint32_t)0x00000040) /*!< Transmission Complete */
MartinJohnson 0:c65854d98061 8884 #define USART_ISR_TXE ((uint32_t)0x00000080) /*!< Transmit Data Register Empty */
MartinJohnson 0:c65854d98061 8885 #define USART_ISR_LBD ((uint32_t)0x00000100) /*!< LIN Break Detection Flag */
MartinJohnson 0:c65854d98061 8886 #define USART_ISR_CTSIF ((uint32_t)0x00000200) /*!< CTS interrupt flag */
MartinJohnson 0:c65854d98061 8887 #define USART_ISR_CTS ((uint32_t)0x00000400) /*!< CTS flag */
MartinJohnson 0:c65854d98061 8888 #define USART_ISR_RTOF ((uint32_t)0x00000800) /*!< Receiver Time Out */
MartinJohnson 0:c65854d98061 8889 #define USART_ISR_EOBF ((uint32_t)0x00001000) /*!< End Of Block Flag */
MartinJohnson 0:c65854d98061 8890 #define USART_ISR_ABRE ((uint32_t)0x00004000) /*!< Auto-Baud Rate Error */
MartinJohnson 0:c65854d98061 8891 #define USART_ISR_ABRF ((uint32_t)0x00008000) /*!< Auto-Baud Rate Flag */
MartinJohnson 0:c65854d98061 8892 #define USART_ISR_BUSY ((uint32_t)0x00010000) /*!< Busy Flag */
MartinJohnson 0:c65854d98061 8893 #define USART_ISR_CMF ((uint32_t)0x00020000) /*!< Character Match Flag */
MartinJohnson 0:c65854d98061 8894 #define USART_ISR_SBKF ((uint32_t)0x00040000) /*!< Send Break Flag */
MartinJohnson 0:c65854d98061 8895 #define USART_ISR_RWU ((uint32_t)0x00080000) /*!< Receive Wake Up from mute mode Flag */
MartinJohnson 0:c65854d98061 8896 #define USART_ISR_WUF ((uint32_t)0x00100000) /*!< Wake Up from stop mode Flag */
MartinJohnson 0:c65854d98061 8897 #define USART_ISR_TEACK ((uint32_t)0x00200000) /*!< Transmit Enable Acknowledge Flag */
MartinJohnson 0:c65854d98061 8898 #define USART_ISR_REACK ((uint32_t)0x00400000) /*!< Receive Enable Acknowledge Flag */
MartinJohnson 0:c65854d98061 8899
MartinJohnson 0:c65854d98061 8900 /******************* Bit definition for USART_ICR register ******************/
MartinJohnson 0:c65854d98061 8901 #define USART_ICR_PECF ((uint32_t)0x00000001) /*!< Parity Error Clear Flag */
MartinJohnson 0:c65854d98061 8902 #define USART_ICR_FECF ((uint32_t)0x00000002) /*!< Framing Error Clear Flag */
MartinJohnson 0:c65854d98061 8903 #define USART_ICR_NCF ((uint32_t)0x00000004) /*!< Noise detected Clear Flag */
MartinJohnson 0:c65854d98061 8904 #define USART_ICR_ORECF ((uint32_t)0x00000008) /*!< OverRun Error Clear Flag */
MartinJohnson 0:c65854d98061 8905 #define USART_ICR_IDLECF ((uint32_t)0x00000010) /*!< IDLE line detected Clear Flag */
MartinJohnson 0:c65854d98061 8906 #define USART_ICR_TCCF ((uint32_t)0x00000040) /*!< Transmission Complete Clear Flag */
MartinJohnson 0:c65854d98061 8907 #define USART_ICR_LBDCF ((uint32_t)0x00000100) /*!< LIN Break Detection Clear Flag */
MartinJohnson 0:c65854d98061 8908 #define USART_ICR_CTSCF ((uint32_t)0x00000200) /*!< CTS Interrupt Clear Flag */
MartinJohnson 0:c65854d98061 8909 #define USART_ICR_RTOCF ((uint32_t)0x00000800) /*!< Receiver Time Out Clear Flag */
MartinJohnson 0:c65854d98061 8910 #define USART_ICR_EOBCF ((uint32_t)0x00001000) /*!< End Of Block Clear Flag */
MartinJohnson 0:c65854d98061 8911 #define USART_ICR_CMCF ((uint32_t)0x00020000) /*!< Character Match Clear Flag */
MartinJohnson 0:c65854d98061 8912 #define USART_ICR_WUCF ((uint32_t)0x00100000) /*!< Wake Up from stop mode Clear Flag */
MartinJohnson 0:c65854d98061 8913
MartinJohnson 0:c65854d98061 8914 /******************* Bit definition for USART_RDR register ******************/
MartinJohnson 0:c65854d98061 8915 #define USART_RDR_RDR ((uint16_t)0x01FF) /*!< RDR[8:0] bits (Receive Data value) */
MartinJohnson 0:c65854d98061 8916
MartinJohnson 0:c65854d98061 8917 /******************* Bit definition for USART_TDR register ******************/
MartinJohnson 0:c65854d98061 8918 #define USART_TDR_TDR ((uint16_t)0x01FF) /*!< TDR[8:0] bits (Transmit Data value) */
MartinJohnson 0:c65854d98061 8919
MartinJohnson 0:c65854d98061 8920 /******************************************************************************/
MartinJohnson 0:c65854d98061 8921 /* */
MartinJohnson 0:c65854d98061 8922 /* Window WATCHDOG */
MartinJohnson 0:c65854d98061 8923 /* */
MartinJohnson 0:c65854d98061 8924 /******************************************************************************/
MartinJohnson 0:c65854d98061 8925 /******************* Bit definition for WWDG_CR register ********************/
MartinJohnson 0:c65854d98061 8926 #define WWDG_CR_T ((uint8_t)0x7F) /*!<T[6:0] bits (7-Bit counter (MSB to LSB)) */
MartinJohnson 0:c65854d98061 8927 #define WWDG_CR_T0 ((uint8_t)0x01) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8928 #define WWDG_CR_T1 ((uint8_t)0x02) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8929 #define WWDG_CR_T2 ((uint8_t)0x04) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 8930 #define WWDG_CR_T3 ((uint8_t)0x08) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 8931 #define WWDG_CR_T4 ((uint8_t)0x10) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 8932 #define WWDG_CR_T5 ((uint8_t)0x20) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 8933 #define WWDG_CR_T6 ((uint8_t)0x40) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 8934
MartinJohnson 0:c65854d98061 8935 #define WWDG_CR_WDGA ((uint8_t)0x80) /*!<Activation bit */
MartinJohnson 0:c65854d98061 8936
MartinJohnson 0:c65854d98061 8937 /******************* Bit definition for WWDG_CFR register *******************/
MartinJohnson 0:c65854d98061 8938 #define WWDG_CFR_W ((uint16_t)0x007F) /*!<W[6:0] bits (7-bit window value) */
MartinJohnson 0:c65854d98061 8939 #define WWDG_CFR_W0 ((uint16_t)0x0001) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8940 #define WWDG_CFR_W1 ((uint16_t)0x0002) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8941 #define WWDG_CFR_W2 ((uint16_t)0x0004) /*!<Bit 2 */
MartinJohnson 0:c65854d98061 8942 #define WWDG_CFR_W3 ((uint16_t)0x0008) /*!<Bit 3 */
MartinJohnson 0:c65854d98061 8943 #define WWDG_CFR_W4 ((uint16_t)0x0010) /*!<Bit 4 */
MartinJohnson 0:c65854d98061 8944 #define WWDG_CFR_W5 ((uint16_t)0x0020) /*!<Bit 5 */
MartinJohnson 0:c65854d98061 8945 #define WWDG_CFR_W6 ((uint16_t)0x0040) /*!<Bit 6 */
MartinJohnson 0:c65854d98061 8946
MartinJohnson 0:c65854d98061 8947 #define WWDG_CFR_WDGTB ((uint16_t)0x0180) /*!<WDGTB[1:0] bits (Timer Base) */
MartinJohnson 0:c65854d98061 8948 #define WWDG_CFR_WDGTB0 ((uint16_t)0x0080) /*!<Bit 0 */
MartinJohnson 0:c65854d98061 8949 #define WWDG_CFR_WDGTB1 ((uint16_t)0x0100) /*!<Bit 1 */
MartinJohnson 0:c65854d98061 8950
MartinJohnson 0:c65854d98061 8951 #define WWDG_CFR_EWI ((uint16_t)0x0200) /*!<Early Wakeup Interrupt */
MartinJohnson 0:c65854d98061 8952
MartinJohnson 0:c65854d98061 8953 /******************* Bit definition for WWDG_SR register ********************/
MartinJohnson 0:c65854d98061 8954 #define WWDG_SR_EWIF ((uint8_t)0x01) /*!<Early Wakeup Interrupt Flag */
MartinJohnson 0:c65854d98061 8955
MartinJohnson 0:c65854d98061 8956 /******************************************************************************/
MartinJohnson 0:c65854d98061 8957 /* For a painless codes migration between the STM32F3xx device product */
MartinJohnson 0:c65854d98061 8958 /* lines, the aliases defined below are put in place to overcome the */
MartinJohnson 0:c65854d98061 8959 /* differences in the interrupt handlers and IRQn definitions. */
MartinJohnson 0:c65854d98061 8960 /* No need to update developed interrupt code when moving across */
MartinJohnson 0:c65854d98061 8961 /* product lines within the same STM32F3 Family */
MartinJohnson 0:c65854d98061 8962 /******************************************************************************/
MartinJohnson 0:c65854d98061 8963 #if defined (STM32F303xC)
MartinJohnson 0:c65854d98061 8964 /* Aliases for __IRQn */
MartinJohnson 0:c65854d98061 8965 #define ADC1_IRQn ADC1_2_IRQn
MartinJohnson 0:c65854d98061 8966 #define CAN1_TX_IRQn USB_HP_CAN1_TX_IRQn
MartinJohnson 0:c65854d98061 8967 #define CAN1_RX0_IRQn USB_LP_CAN1_RX0_IRQn
MartinJohnson 0:c65854d98061 8968 #define TIM6_DAC1_IRQn TIM6_DAC_IRQn
MartinJohnson 0:c65854d98061 8969 #define TIM7_DAC2_IRQn TIM7_IRQn
MartinJohnson 0:c65854d98061 8970 #define COMP2_IRQn COMP1_2_3_IRQn
MartinJohnson 0:c65854d98061 8971 #define COMP4_6_IRQn COMP4_5_6_IRQn
MartinJohnson 0:c65854d98061 8972
MartinJohnson 0:c65854d98061 8973 /* Aliases for __IRQHandler */
MartinJohnson 0:c65854d98061 8974 #define ADC1_IRQHandler ADC1_2_IRQHandler
MartinJohnson 0:c65854d98061 8975 #define CAN1_TX_IRQHandler USB_HP_CAN1_TX_IRQHandler
MartinJohnson 0:c65854d98061 8976 #define CAN1_RX0_IRQHandler USB_LP_CAN1_RX0_IRQHandler
MartinJohnson 0:c65854d98061 8977 #define TIM6_DAC1_IRQHandler TIM6_DAC_IRQHandler
MartinJohnson 0:c65854d98061 8978 #define TIM7_DAC2_IRQHandler TIM7_IRQHandler
MartinJohnson 0:c65854d98061 8979 #define COMP2_IRQHandler COMP1_2_3_IRQHandler
MartinJohnson 0:c65854d98061 8980 #define COMP4_6_IRQHandler COMP4_5_6_IRQHandler
MartinJohnson 0:c65854d98061 8981
MartinJohnson 0:c65854d98061 8982 #elif defined (STM32F334x8)
MartinJohnson 0:c65854d98061 8983 /* Aliases for __IRQn */
MartinJohnson 0:c65854d98061 8984 #define ADC1_IRQn ADC1_2_IRQn
MartinJohnson 0:c65854d98061 8985 #define USB_HP_CAN1_TX_IRQn CAN1_TX_IRQn
MartinJohnson 0:c65854d98061 8986 #define USB_LP_CAN1_RX0_IRQn CAN1_RX0_IRQn
MartinJohnson 0:c65854d98061 8987 #define TIM6_DAC_IRQn TIM6_DAC1_IRQn
MartinJohnson 0:c65854d98061 8988 #define TIM7_IRQn TIM7_DAC2_IRQn
MartinJohnson 0:c65854d98061 8989 #define COMP1_2_3_IRQn COMP2_IRQn
MartinJohnson 0:c65854d98061 8990 #define COMP4_5_6_IRQn COMP4_6_IRQn
MartinJohnson 0:c65854d98061 8991
MartinJohnson 0:c65854d98061 8992 /* Aliases for __IRQHandler */
MartinJohnson 0:c65854d98061 8993 #define ADC1_IRQHandler ADC1_2_IRQHandler
MartinJohnson 0:c65854d98061 8994 #define USB_HP_CAN1_TX_IRQHandler CAN1_TX_IRQHandler
MartinJohnson 0:c65854d98061 8995 #define USB_LP_CAN1_RX0_IRQHandler CAN1_RX0_IRQHandler
MartinJohnson 0:c65854d98061 8996 #define TIM6_DAC_IRQHandler TIM6_DAC1_IRQHandler
MartinJohnson 0:c65854d98061 8997 #define TIM7_IRQHandler TIM7_DAC2_IRQHandler
MartinJohnson 0:c65854d98061 8998 #define COMP1_2_3_IRQHandler COMP2_IRQHandler
MartinJohnson 0:c65854d98061 8999 #define COMP4_5_6_IRQHandler COMP4_6_IRQHandler
MartinJohnson 0:c65854d98061 9000
MartinJohnson 0:c65854d98061 9001 #elif defined (STM32F302x8)
MartinJohnson 0:c65854d98061 9002 /* Aliases for __IRQn */
MartinJohnson 0:c65854d98061 9003 #define ADC1_2_IRQn ADC1_IRQn
MartinJohnson 0:c65854d98061 9004 #define CAN1_TX_IRQn USB_HP_CAN1_TX_IRQn
MartinJohnson 0:c65854d98061 9005 #define CAN1_RX0_IRQn USB_LP_CAN1_RX0_IRQn
MartinJohnson 0:c65854d98061 9006 #define TIM6_DAC1_IRQn TIM6_DAC_IRQn
MartinJohnson 0:c65854d98061 9007 #define COMP1_2_3_IRQn COMP2_IRQn
MartinJohnson 0:c65854d98061 9008 #define COMP4_5_6_IRQn COMP4_6_IRQn
MartinJohnson 0:c65854d98061 9009
MartinJohnson 0:c65854d98061 9010 /* Aliases for __IRQHandler */
MartinJohnson 0:c65854d98061 9011 #define ADC1_2_IRQHandler ADC1_IRQHandler
MartinJohnson 0:c65854d98061 9012 #define CAN1_TX_IRQHandler USB_HP_CAN1_TX_IRQHandler
MartinJohnson 0:c65854d98061 9013 #define CAN1_RX0_IRQHandler USB_LP_CAN1_RX0_IRQHandler
MartinJohnson 0:c65854d98061 9014 #define TIM6_DAC1_IRQHandler TIM6_DAC_IRQHandler
MartinJohnson 0:c65854d98061 9015 #define COMP1_2_3_IRQHandler COMP2_IRQHandler
MartinJohnson 0:c65854d98061 9016 #define COMP4_5_6_IRQHandler COMP4_6_IRQHandler
MartinJohnson 0:c65854d98061 9017
MartinJohnson 0:c65854d98061 9018 #elif defined (STM32F303xE)
MartinJohnson 0:c65854d98061 9019 /* Aliases for __IRQn */
MartinJohnson 0:c65854d98061 9020 #define ADC1_IRQn ADC1_2_IRQn
MartinJohnson 0:c65854d98061 9021 #define CAN1_TX_IRQn USB_HP_CAN1_TX_IRQn
MartinJohnson 0:c65854d98061 9022 #define CAN1_RX0_IRQn USB_LP_CAN1_RX0_IRQn
MartinJohnson 0:c65854d98061 9023 #define TIM6_DAC1_IRQn TIM6_DAC_IRQn
MartinJohnson 0:c65854d98061 9024 #define TIM7_DAC2_IRQn TIM7_IRQn
MartinJohnson 0:c65854d98061 9025 #define COMP2_IRQn COMP1_2_3_IRQn
MartinJohnson 0:c65854d98061 9026 #define COMP4_6_IRQn COMP4_5_6_IRQn
MartinJohnson 0:c65854d98061 9027
MartinJohnson 0:c65854d98061 9028 /* Aliases for __IRQHandler */
MartinJohnson 0:c65854d98061 9029 #define ADC1_IRQHandler ADC1_2_IRQHandler
MartinJohnson 0:c65854d98061 9030 #define CAN1_TX_IRQHandler USB_HP_CAN1_TX_IRQHandler
MartinJohnson 0:c65854d98061 9031 #define CAN1_RX0_IRQHandler USB_LP_CAN1_RX0_IRQHandler
MartinJohnson 0:c65854d98061 9032 #define TIM6_DAC1_IRQHandler TIM6_DAC_IRQHandler
MartinJohnson 0:c65854d98061 9033 #define TIM7_DAC2_IRQHandler TIM7_IRQHandler
MartinJohnson 0:c65854d98061 9034 #define COMP2_IRQHandler COMP1_2_3_IRQHandler
MartinJohnson 0:c65854d98061 9035 #define COMP4_6_IRQHandler COMP4_5_6_IRQHandler
MartinJohnson 0:c65854d98061 9036
MartinJohnson 0:c65854d98061 9037 #endif /* STM32F303xC */
MartinJohnson 0:c65854d98061 9038 /**
MartinJohnson 0:c65854d98061 9039 * @}
MartinJohnson 0:c65854d98061 9040 */
MartinJohnson 0:c65854d98061 9041
MartinJohnson 0:c65854d98061 9042 /**
MartinJohnson 0:c65854d98061 9043 * @}
MartinJohnson 0:c65854d98061 9044 */
MartinJohnson 0:c65854d98061 9045
MartinJohnson 0:c65854d98061 9046 #ifdef USE_STDPERIPH_DRIVER
MartinJohnson 0:c65854d98061 9047 #include "stm32f30x_conf.h"
MartinJohnson 0:c65854d98061 9048 #endif /*!< USE_STDPERIPH_DRIVER */
MartinJohnson 0:c65854d98061 9049
MartinJohnson 0:c65854d98061 9050 /** @addtogroup Exported_macro
MartinJohnson 0:c65854d98061 9051 * @{
MartinJohnson 0:c65854d98061 9052 */
MartinJohnson 0:c65854d98061 9053
MartinJohnson 0:c65854d98061 9054 #define SET_BIT(REG, BIT) ((REG) |= (BIT))
MartinJohnson 0:c65854d98061 9055
MartinJohnson 0:c65854d98061 9056 #define CLEAR_BIT(REG, BIT) ((REG) &= ~(BIT))
MartinJohnson 0:c65854d98061 9057
MartinJohnson 0:c65854d98061 9058 #define READ_BIT(REG, BIT) ((REG) & (BIT))
MartinJohnson 0:c65854d98061 9059
MartinJohnson 0:c65854d98061 9060 #define CLEAR_REG(REG) ((REG) = (0x0))
MartinJohnson 0:c65854d98061 9061
MartinJohnson 0:c65854d98061 9062 #define WRITE_REG(REG, VAL) ((REG) = (VAL))
MartinJohnson 0:c65854d98061 9063
MartinJohnson 0:c65854d98061 9064 #define READ_REG(REG) ((REG))
MartinJohnson 0:c65854d98061 9065
MartinJohnson 0:c65854d98061 9066 #define MODIFY_REG(REG, CLEARMASK, SETMASK) WRITE_REG((REG), (((READ_REG(REG)) & (~(CLEARMASK))) | (SETMASK)))
MartinJohnson 0:c65854d98061 9067
MartinJohnson 0:c65854d98061 9068 /**
MartinJohnson 0:c65854d98061 9069 * @}
MartinJohnson 0:c65854d98061 9070 */
MartinJohnson 0:c65854d98061 9071
MartinJohnson 0:c65854d98061 9072 #ifdef __cplusplus
MartinJohnson 0:c65854d98061 9073 }
MartinJohnson 0:c65854d98061 9074 #endif /* __cplusplus */
MartinJohnson 0:c65854d98061 9075
MartinJohnson 0:c65854d98061 9076 #endif /* __STM32F30x_H */
MartinJohnson 0:c65854d98061 9077
MartinJohnson 0:c65854d98061 9078 /**
MartinJohnson 0:c65854d98061 9079 * @}
MartinJohnson 0:c65854d98061 9080 */
MartinJohnson 0:c65854d98061 9081
MartinJohnson 0:c65854d98061 9082 /**
MartinJohnson 0:c65854d98061 9083 * @}
MartinJohnson 0:c65854d98061 9084 */
MartinJohnson 0:c65854d98061 9085
MartinJohnson 0:c65854d98061 9086 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/