Martin Johnson / STM32F3-Discovery

Dependents:   Space_Invaders_Demo neopixels gpio_test_stm32f3_discovery gpio_test_systimer ... more

Committer:
MartinJohnson
Date:
Mon May 09 04:00:25 2016 +0000
Revision:
0:404f5a4f1385
Initial library for STM32F3 discovery board

Who changed what in which revision?

UserRevisionLine numberNew contents of line
MartinJohnson 0:404f5a4f1385 1 /**
MartinJohnson 0:404f5a4f1385 2 ******************************************************************************
MartinJohnson 0:404f5a4f1385 3 * @file stm32f30x.h
MartinJohnson 0:404f5a4f1385 4 * @author MCD Application Team
MartinJohnson 0:404f5a4f1385 5 * @version V1.2.2
MartinJohnson 0:404f5a4f1385 6 * @date 27-February-2015
MartinJohnson 0:404f5a4f1385 7 * @brief CMSIS Cortex-M4 Device Peripheral Access Layer Header File.
MartinJohnson 0:404f5a4f1385 8 * This file contains all the peripheral registers definitions, bits
MartinJohnson 0:404f5a4f1385 9 * definitions and memory mapping for STM32F30x devices.
MartinJohnson 0:404f5a4f1385 10 *
MartinJohnson 0:404f5a4f1385 11 * The file is the unique include file that the application programmer
MartinJohnson 0:404f5a4f1385 12 * is using in the C source code, usually in main.c. This file contains:
MartinJohnson 0:404f5a4f1385 13 * - Configuration section that allows to select:
MartinJohnson 0:404f5a4f1385 14 * - The device used in the target application
MartinJohnson 0:404f5a4f1385 15 * - To use or not the peripheral�s drivers in application code(i.e.
MartinJohnson 0:404f5a4f1385 16 * code will be based on direct access to peripheral�s registers
MartinJohnson 0:404f5a4f1385 17 * rather than drivers API), this option is controlled by
MartinJohnson 0:404f5a4f1385 18 * "#define USE_STDPERIPH_DRIVER"
MartinJohnson 0:404f5a4f1385 19 * - To change few application-specific parameters such as the HSE
MartinJohnson 0:404f5a4f1385 20 * crystal frequency
MartinJohnson 0:404f5a4f1385 21 * - Data structures and the address mapping for all peripherals
MartinJohnson 0:404f5a4f1385 22 * - Peripheral registers declarations and bits definition
MartinJohnson 0:404f5a4f1385 23 * - Macros to access peripheral registers hardware
MartinJohnson 0:404f5a4f1385 24 *
MartinJohnson 0:404f5a4f1385 25 ******************************************************************************
MartinJohnson 0:404f5a4f1385 26 * @attention
MartinJohnson 0:404f5a4f1385 27 *
MartinJohnson 0:404f5a4f1385 28 * <h2><center>&copy; COPYRIGHT 2015 STMicroelectronics</center></h2>
MartinJohnson 0:404f5a4f1385 29 *
MartinJohnson 0:404f5a4f1385 30 * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License");
MartinJohnson 0:404f5a4f1385 31 * You may not use this file except in compliance with the License.
MartinJohnson 0:404f5a4f1385 32 * You may obtain a copy of the License at:
MartinJohnson 0:404f5a4f1385 33 *
MartinJohnson 0:404f5a4f1385 34 * http://www.st.com/software_license_agreement_liberty_v2
MartinJohnson 0:404f5a4f1385 35 *
MartinJohnson 0:404f5a4f1385 36 * Unless required by applicable law or agreed to in writing, software
MartinJohnson 0:404f5a4f1385 37 * distributed under the License is distributed on an "AS IS" BASIS,
MartinJohnson 0:404f5a4f1385 38 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
MartinJohnson 0:404f5a4f1385 39 * See the License for the specific language governing permissions and
MartinJohnson 0:404f5a4f1385 40 * limitations under the License.
MartinJohnson 0:404f5a4f1385 41 *
MartinJohnson 0:404f5a4f1385 42 ******************************************************************************
MartinJohnson 0:404f5a4f1385 43 */
MartinJohnson 0:404f5a4f1385 44
MartinJohnson 0:404f5a4f1385 45 /** @addtogroup CMSIS
MartinJohnson 0:404f5a4f1385 46 * @{
MartinJohnson 0:404f5a4f1385 47 */
MartinJohnson 0:404f5a4f1385 48
MartinJohnson 0:404f5a4f1385 49 /** @addtogroup stm32f30x
MartinJohnson 0:404f5a4f1385 50 * @{
MartinJohnson 0:404f5a4f1385 51 */
MartinJohnson 0:404f5a4f1385 52
MartinJohnson 0:404f5a4f1385 53 #ifndef __STM32F30x_H
MartinJohnson 0:404f5a4f1385 54 #define __STM32F30x_H
MartinJohnson 0:404f5a4f1385 55
MartinJohnson 0:404f5a4f1385 56 #ifdef __cplusplus
MartinJohnson 0:404f5a4f1385 57 extern "C" {
MartinJohnson 0:404f5a4f1385 58 #endif /* __cplusplus */
MartinJohnson 0:404f5a4f1385 59
MartinJohnson 0:404f5a4f1385 60 /** @addtogroup Library_configuration_section
MartinJohnson 0:404f5a4f1385 61 * @{
MartinJohnson 0:404f5a4f1385 62 */
MartinJohnson 0:404f5a4f1385 63
MartinJohnson 0:404f5a4f1385 64 /* Uncomment the line below according to the target STM32 device used in your
MartinJohnson 0:404f5a4f1385 65 application
MartinJohnson 0:404f5a4f1385 66 */
MartinJohnson 0:404f5a4f1385 67
MartinJohnson 0:404f5a4f1385 68 /* Old STM32F30X definition, maintained for legacy purpose */
MartinJohnson 0:404f5a4f1385 69 #if defined(STM32F30X)
MartinJohnson 0:404f5a4f1385 70 #define STM32F303xC
MartinJohnson 0:404f5a4f1385 71 #endif /* STM32F30X */
MartinJohnson 0:404f5a4f1385 72
MartinJohnson 0:404f5a4f1385 73 #if !defined (STM32F303xC) && !defined (STM32F334x8) && !defined (STM32F302x8) && !defined (STM32F303xE)
MartinJohnson 0:404f5a4f1385 74 #define STM32F303xC /*!< STM32F303CB, STM32F303CC, STM32F303RB, STM32F303RC, STM32F303VB, STM32F303VC
MartinJohnson 0:404f5a4f1385 75 STM32F302CB, STM32F302CC, STM32F302RC, STM32F302RB, STM32F302VC, STM32F302VB,
MartinJohnson 0:404f5a4f1385 76 STM32F358CC, STM32F358RC and STM32F358VC Devices */
MartinJohnson 0:404f5a4f1385 77 /* #define STM32F334x8 */ /*!< STM32F334C4, STM32F334K4, STM32F334C6, STM32F334R6, STM32F334K6, STM32F334C8, STM32F334R8, STM32F334K8,
MartinJohnson 0:404f5a4f1385 78 STM32F303K8, STM32F303K6, STM32F303C8, STM32F303C6, STM32F303R8, STM32F303R6 and STM32F328C8 Devices */
MartinJohnson 0:404f5a4f1385 79 /* #define STM32F302x8 */ /*!< STM32F302K6, STM32F302K8, STM32F302C6, STM32F302C8, STM32F302R6, STM32F302R8,
MartinJohnson 0:404f5a4f1385 80 STM32F301K8, STM32F301C8, STM32F301R8, STM32F301K6, STM32F301C6, STM32F301R6, STM32F313K8 and STM32F318C8 Devices */
MartinJohnson 0:404f5a4f1385 81 /* #define STM32F303xE */ /*!< STM32F303CE, STM32F303CD, STM32F303RE, STM32F303RD, STM32F303VE, STM32F303VD, STM32F303ZE,
MartinJohnson 0:404f5a4f1385 82 STM32F303ZD, STM32F302CE, STM32F302CD, STM32F302RE, STM32F302RD, STM32F302VE, STM32F302ZE,
MartinJohnson 0:404f5a4f1385 83 STM32F302ZD and STM32F398VE Devices */
MartinJohnson 0:404f5a4f1385 84 #endif /* STM32F303xC || STM32F334x8 || STM32F302x8 || STM32F303xE */
MartinJohnson 0:404f5a4f1385 85
MartinJohnson 0:404f5a4f1385 86
MartinJohnson 0:404f5a4f1385 87 /* Tip: To avoid modifying this file each time you need to switch between these
MartinJohnson 0:404f5a4f1385 88 devices, you can define the device in your toolchain compiler preprocessor.
MartinJohnson 0:404f5a4f1385 89 */
MartinJohnson 0:404f5a4f1385 90
MartinJohnson 0:404f5a4f1385 91 #if !defined (STM32F303xC) && !defined (STM32F334x8) && !defined (STM32F302x8) && !defined (STM32F303xE)
MartinJohnson 0:404f5a4f1385 92 #error "Please select first the target STM32F30X device used in your application (in stm32f30x.h file)"
MartinJohnson 0:404f5a4f1385 93 #endif
MartinJohnson 0:404f5a4f1385 94
MartinJohnson 0:404f5a4f1385 95 #if !defined (USE_STDPERIPH_DRIVER)
MartinJohnson 0:404f5a4f1385 96 /**
MartinJohnson 0:404f5a4f1385 97 * @brief Comment the line below if you will not use the peripherals drivers.
MartinJohnson 0:404f5a4f1385 98 In this case, these drivers will not be included and the application code will
MartinJohnson 0:404f5a4f1385 99 be based on direct access to peripherals registers
MartinJohnson 0:404f5a4f1385 100 */
MartinJohnson 0:404f5a4f1385 101 #define USE_STDPERIPH_DRIVER
MartinJohnson 0:404f5a4f1385 102 #endif /* USE_STDPERIPH_DRIVER */
MartinJohnson 0:404f5a4f1385 103
MartinJohnson 0:404f5a4f1385 104 /**
MartinJohnson 0:404f5a4f1385 105 * @brief In the following line adjust the value of External High Speed oscillator (HSE)
MartinJohnson 0:404f5a4f1385 106 used in your application
MartinJohnson 0:404f5a4f1385 107
MartinJohnson 0:404f5a4f1385 108 Tip: To avoid modifying this file each time you need to use different HSE, you
MartinJohnson 0:404f5a4f1385 109 can define the HSE value in your toolchain compiler preprocessor.
MartinJohnson 0:404f5a4f1385 110 */
MartinJohnson 0:404f5a4f1385 111 #if !defined (HSE_VALUE)
MartinJohnson 0:404f5a4f1385 112 #define HSE_VALUE ((uint32_t)8000000) /*!< Value of the External oscillator in Hz */
MartinJohnson 0:404f5a4f1385 113 #endif /* HSE_VALUE */
MartinJohnson 0:404f5a4f1385 114
MartinJohnson 0:404f5a4f1385 115 /**
MartinJohnson 0:404f5a4f1385 116 * @brief In the following line adjust the External High Speed oscillator (HSE) Startup
MartinJohnson 0:404f5a4f1385 117 Timeout value
MartinJohnson 0:404f5a4f1385 118 */
MartinJohnson 0:404f5a4f1385 119 #if !defined (HSE_STARTUP_TIMEOUT)
MartinJohnson 0:404f5a4f1385 120 #define HSE_STARTUP_TIMEOUT ((uint16_t)0x5000) /*!< Time out for HSE start up */
MartinJohnson 0:404f5a4f1385 121 #endif /* HSE_STARTUP_TIMEOUT */
MartinJohnson 0:404f5a4f1385 122
MartinJohnson 0:404f5a4f1385 123 /**
MartinJohnson 0:404f5a4f1385 124 * @brief In the following line adjust the Internal High Speed oscillator (HSI) Startup
MartinJohnson 0:404f5a4f1385 125 Timeout value
MartinJohnson 0:404f5a4f1385 126 */
MartinJohnson 0:404f5a4f1385 127 #if !defined (HSI_STARTUP_TIMEOUT)
MartinJohnson 0:404f5a4f1385 128 #define HSI_STARTUP_TIMEOUT ((uint16_t)0x5000) /*!< Time out for HSI start up */
MartinJohnson 0:404f5a4f1385 129 #endif /* HSI_STARTUP_TIMEOUT */
MartinJohnson 0:404f5a4f1385 130
MartinJohnson 0:404f5a4f1385 131 #if !defined (HSI_VALUE)
MartinJohnson 0:404f5a4f1385 132 #define HSI_VALUE ((uint32_t)8000000)
MartinJohnson 0:404f5a4f1385 133 #endif /* HSI_VALUE */ /*!< Value of the Internal High Speed oscillator in Hz.
MartinJohnson 0:404f5a4f1385 134 The real value may vary depending on the variations
MartinJohnson 0:404f5a4f1385 135 in voltage and temperature. */
MartinJohnson 0:404f5a4f1385 136 #if !defined (LSI_VALUE)
MartinJohnson 0:404f5a4f1385 137 #define LSI_VALUE ((uint32_t)40000)
MartinJohnson 0:404f5a4f1385 138 #endif /* LSI_VALUE */ /*!< Value of the Internal Low Speed oscillator in Hz
MartinJohnson 0:404f5a4f1385 139 The real value may vary depending on the variations
MartinJohnson 0:404f5a4f1385 140 in voltage and temperature. */
MartinJohnson 0:404f5a4f1385 141 #if !defined (LSE_VALUE)
MartinJohnson 0:404f5a4f1385 142 #define LSE_VALUE ((uint32_t)32768) /*!< Value of the External Low Speed oscillator in Hz */
MartinJohnson 0:404f5a4f1385 143 #endif /* LSE_VALUE */
MartinJohnson 0:404f5a4f1385 144
MartinJohnson 0:404f5a4f1385 145
MartinJohnson 0:404f5a4f1385 146 /**
MartinJohnson 0:404f5a4f1385 147 * @brief STM32F30x Standard Peripherals Library version number V1.2.2
MartinJohnson 0:404f5a4f1385 148 */
MartinJohnson 0:404f5a4f1385 149 #define __STM32F30X_STDPERIPH_VERSION_MAIN (0x01) /*!< [31:24] main version */
MartinJohnson 0:404f5a4f1385 150 #define __STM32F30X_STDPERIPH_VERSION_SUB1 (0x02) /*!< [23:16] sub1 version */
MartinJohnson 0:404f5a4f1385 151 #define __STM32F30X_STDPERIPH_VERSION_SUB2 (0x02) /*!< [15:8] sub2 version */
MartinJohnson 0:404f5a4f1385 152 #define __STM32F30X_STDPERIPH_VERSION_RC (0x00) /*!< [7:0] release candidate */
MartinJohnson 0:404f5a4f1385 153 #define __STM32F30X_STDPERIPH_VERSION ( (__STM32F30X_STDPERIPH_VERSION_MAIN << 24)\
MartinJohnson 0:404f5a4f1385 154 |(__STM32F30X_STDPERIPH_VERSION_SUB1 << 16)\
MartinJohnson 0:404f5a4f1385 155 |(__STM32F30X_STDPERIPH_VERSION_SUB2 << 8)\
MartinJohnson 0:404f5a4f1385 156 |(__STM32F30X_STDPERIPH_VERSION_RC))
MartinJohnson 0:404f5a4f1385 157
MartinJohnson 0:404f5a4f1385 158 /**
MartinJohnson 0:404f5a4f1385 159 * @}
MartinJohnson 0:404f5a4f1385 160 */
MartinJohnson 0:404f5a4f1385 161
MartinJohnson 0:404f5a4f1385 162 /** @addtogroup Configuration_section_for_CMSIS
MartinJohnson 0:404f5a4f1385 163 * @{
MartinJohnson 0:404f5a4f1385 164 */
MartinJohnson 0:404f5a4f1385 165
MartinJohnson 0:404f5a4f1385 166 /**
MartinJohnson 0:404f5a4f1385 167 * @brief Configuration of the Cortex-M4 Processor and Core Peripherals
MartinJohnson 0:404f5a4f1385 168 */
MartinJohnson 0:404f5a4f1385 169 #define __CM4_REV 0x0001 /*!< Core revision r0p1 */
MartinJohnson 0:404f5a4f1385 170 #define __MPU_PRESENT 1 /*!< STM32F30X provide an MPU */
MartinJohnson 0:404f5a4f1385 171 #define __NVIC_PRIO_BITS 4 /*!< STM32F30X uses 4 Bits for the Priority Levels */
MartinJohnson 0:404f5a4f1385 172 #define __Vendor_SysTickConfig 0 /*!< Set to 1 if different SysTick Config is used */
MartinJohnson 0:404f5a4f1385 173 #define __FPU_PRESENT 1 /*!< STM32F30X provide an FPU */
MartinJohnson 0:404f5a4f1385 174
MartinJohnson 0:404f5a4f1385 175
MartinJohnson 0:404f5a4f1385 176 /**
MartinJohnson 0:404f5a4f1385 177 * @brief STM32F30X Interrupt Number Definition, according to the selected device
MartinJohnson 0:404f5a4f1385 178 * in @ref Library_configuration_section
MartinJohnson 0:404f5a4f1385 179 */
MartinJohnson 0:404f5a4f1385 180 typedef enum IRQn
MartinJohnson 0:404f5a4f1385 181 {
MartinJohnson 0:404f5a4f1385 182 /****** Cortex-M4 Processor Exceptions Numbers ****************************************************************/
MartinJohnson 0:404f5a4f1385 183 NonMaskableInt_IRQn = -14, /*!< 2 Non Maskable Interrupt */
MartinJohnson 0:404f5a4f1385 184 MemoryManagement_IRQn = -12, /*!< 4 Cortex-M4 Memory Management Interrupt */
MartinJohnson 0:404f5a4f1385 185 BusFault_IRQn = -11, /*!< 5 Cortex-M4 Bus Fault Interrupt */
MartinJohnson 0:404f5a4f1385 186 UsageFault_IRQn = -10, /*!< 6 Cortex-M4 Usage Fault Interrupt */
MartinJohnson 0:404f5a4f1385 187 SVCall_IRQn = -5, /*!< 11 Cortex-M4 SV Call Interrupt */
MartinJohnson 0:404f5a4f1385 188 DebugMonitor_IRQn = -4, /*!< 12 Cortex-M4 Debug Monitor Interrupt */
MartinJohnson 0:404f5a4f1385 189 PendSV_IRQn = -2, /*!< 14 Cortex-M4 Pend SV Interrupt */
MartinJohnson 0:404f5a4f1385 190 SysTick_IRQn = -1, /*!< 15 Cortex-M4 System Tick Interrupt */
MartinJohnson 0:404f5a4f1385 191 /****** STM32 specific Interrupt Numbers **********************************************************************/
MartinJohnson 0:404f5a4f1385 192 #ifdef STM32F303xC
MartinJohnson 0:404f5a4f1385 193 WWDG_IRQn = 0, /*!< Window WatchDog Interrupt */
MartinJohnson 0:404f5a4f1385 194 PVD_IRQn = 1, /*!< PVD through EXTI Line detection Interrupt */
MartinJohnson 0:404f5a4f1385 195 TAMPER_STAMP_IRQn = 2, /*!< Tamper and TimeStamp interrupts */
MartinJohnson 0:404f5a4f1385 196 RTC_WKUP_IRQn = 3, /*!< RTC Wakeup interrupt through the EXTI lines 17, 19 & 20 */
MartinJohnson 0:404f5a4f1385 197 FLASH_IRQn = 4, /*!< FLASH global Interrupt */
MartinJohnson 0:404f5a4f1385 198 RCC_IRQn = 5, /*!< RCC global Interrupt */
MartinJohnson 0:404f5a4f1385 199 EXTI0_IRQn = 6, /*!< EXTI Line0 Interrupt */
MartinJohnson 0:404f5a4f1385 200 EXTI1_IRQn = 7, /*!< EXTI Line1 Interrupt */
MartinJohnson 0:404f5a4f1385 201 EXTI2_TS_IRQn = 8, /*!< EXTI Line2 Interrupt and Touch Sense Interrupt */
MartinJohnson 0:404f5a4f1385 202 EXTI3_IRQn = 9, /*!< EXTI Line3 Interrupt */
MartinJohnson 0:404f5a4f1385 203 EXTI4_IRQn = 10, /*!< EXTI Line4 Interrupt */
MartinJohnson 0:404f5a4f1385 204 DMA1_Channel1_IRQn = 11, /*!< DMA1 Channel 1 Interrupt */
MartinJohnson 0:404f5a4f1385 205 DMA1_Channel2_IRQn = 12, /*!< DMA1 Channel 2 Interrupt */
MartinJohnson 0:404f5a4f1385 206 DMA1_Channel3_IRQn = 13, /*!< DMA1 Channel 3 Interrupt */
MartinJohnson 0:404f5a4f1385 207 DMA1_Channel4_IRQn = 14, /*!< DMA1 Channel 4 Interrupt */
MartinJohnson 0:404f5a4f1385 208 DMA1_Channel5_IRQn = 15, /*!< DMA1 Channel 5 Interrupt */
MartinJohnson 0:404f5a4f1385 209 DMA1_Channel6_IRQn = 16, /*!< DMA1 Channel 6 Interrupt */
MartinJohnson 0:404f5a4f1385 210 DMA1_Channel7_IRQn = 17, /*!< DMA1 Channel 7 Interrupt */
MartinJohnson 0:404f5a4f1385 211 ADC1_2_IRQn = 18, /*!< ADC1 & ADC2 Interrupts */
MartinJohnson 0:404f5a4f1385 212 USB_HP_CAN1_TX_IRQn = 19, /*!< USB Device High Priority or CAN1 TX Interrupts */
MartinJohnson 0:404f5a4f1385 213 USB_LP_CAN1_RX0_IRQn = 20, /*!< USB Device Low Priority or CAN1 RX0 Interrupts */
MartinJohnson 0:404f5a4f1385 214 CAN1_RX1_IRQn = 21, /*!< CAN1 RX1 Interrupt */
MartinJohnson 0:404f5a4f1385 215 CAN1_SCE_IRQn = 22, /*!< CAN1 SCE Interrupt */
MartinJohnson 0:404f5a4f1385 216 EXTI9_5_IRQn = 23, /*!< External Line[9:5] Interrupts */
MartinJohnson 0:404f5a4f1385 217 TIM1_BRK_TIM15_IRQn = 24, /*!< TIM1 Break and TIM15 Interrupts */
MartinJohnson 0:404f5a4f1385 218 TIM1_UP_TIM16_IRQn = 25, /*!< TIM1 Update and TIM16 Interrupts */
MartinJohnson 0:404f5a4f1385 219 TIM1_TRG_COM_TIM17_IRQn = 26, /*!< TIM1 Trigger and Commutation and TIM17 Interrupt */
MartinJohnson 0:404f5a4f1385 220 TIM1_CC_IRQn = 27, /*!< TIM1 Capture Compare Interrupt */
MartinJohnson 0:404f5a4f1385 221 TIM2_IRQn = 28, /*!< TIM2 global Interrupt */
MartinJohnson 0:404f5a4f1385 222 TIM3_IRQn = 29, /*!< TIM3 global Interrupt */
MartinJohnson 0:404f5a4f1385 223 TIM4_IRQn = 30, /*!< TIM4 global Interrupt */
MartinJohnson 0:404f5a4f1385 224 I2C1_EV_IRQn = 31, /*!< I2C1 Event Interrupt */
MartinJohnson 0:404f5a4f1385 225 I2C1_ER_IRQn = 32, /*!< I2C1 Error Interrupt */
MartinJohnson 0:404f5a4f1385 226 I2C2_EV_IRQn = 33, /*!< I2C2 Event Interrupt */
MartinJohnson 0:404f5a4f1385 227 I2C2_ER_IRQn = 34, /*!< I2C2 Error Interrupt */
MartinJohnson 0:404f5a4f1385 228 SPI1_IRQn = 35, /*!< SPI1 global Interrupt */
MartinJohnson 0:404f5a4f1385 229 SPI2_IRQn = 36, /*!< SPI2 global Interrupt */
MartinJohnson 0:404f5a4f1385 230 USART1_IRQn = 37, /*!< USART1 global Interrupt */
MartinJohnson 0:404f5a4f1385 231 USART2_IRQn = 38, /*!< USART2 global Interrupt */
MartinJohnson 0:404f5a4f1385 232 USART3_IRQn = 39, /*!< USART3 global Interrupt */
MartinJohnson 0:404f5a4f1385 233 EXTI15_10_IRQn = 40, /*!< External Line[15:10] Interrupts */
MartinJohnson 0:404f5a4f1385 234 RTC_Alarm_IRQn = 41, /*!< RTC Alarm (A and B) through EXTI Line Interrupt */
MartinJohnson 0:404f5a4f1385 235 USBWakeUp_IRQn = 42, /*!< USB Wakeup Interrupt */
MartinJohnson 0:404f5a4f1385 236 TIM8_BRK_IRQn = 43, /*!< TIM8 Break Interrupt */
MartinJohnson 0:404f5a4f1385 237 TIM8_UP_IRQn = 44, /*!< TIM8 Update Interrupt */
MartinJohnson 0:404f5a4f1385 238 TIM8_TRG_COM_IRQn = 45, /*!< TIM8 Trigger and Commutation Interrupt */
MartinJohnson 0:404f5a4f1385 239 TIM8_CC_IRQn = 46, /*!< TIM8 Capture Compare Interrupt */
MartinJohnson 0:404f5a4f1385 240 ADC3_IRQn = 47, /*!< ADC3 global Interrupt */
MartinJohnson 0:404f5a4f1385 241 SPI3_IRQn = 51, /*!< SPI3 global Interrupt */
MartinJohnson 0:404f5a4f1385 242 UART4_IRQn = 52, /*!< UART4 global Interrupt */
MartinJohnson 0:404f5a4f1385 243 UART5_IRQn = 53, /*!< UART5 global Interrupt */
MartinJohnson 0:404f5a4f1385 244 TIM6_DAC_IRQn = 54, /*!< TIM6 global and DAC1&2 underrun error interrupts */
MartinJohnson 0:404f5a4f1385 245 TIM7_IRQn = 55, /*!< TIM7 global Interrupt */
MartinJohnson 0:404f5a4f1385 246 DMA2_Channel1_IRQn = 56, /*!< DMA2 Channel 1 global Interrupt */
MartinJohnson 0:404f5a4f1385 247 DMA2_Channel2_IRQn = 57, /*!< DMA2 Channel 2 global Interrupt */
MartinJohnson 0:404f5a4f1385 248 DMA2_Channel3_IRQn = 58, /*!< DMA2 Channel 3 global Interrupt */
MartinJohnson 0:404f5a4f1385 249 DMA2_Channel4_IRQn = 59, /*!< DMA2 Channel 4 global Interrupt */
MartinJohnson 0:404f5a4f1385 250 DMA2_Channel5_IRQn = 60, /*!< DMA2 Channel 5 global Interrupt */
MartinJohnson 0:404f5a4f1385 251 ADC4_IRQn = 61, /*!< ADC4 global Interrupt */
MartinJohnson 0:404f5a4f1385 252 COMP1_2_3_IRQn = 64, /*!< COMP1, COMP2 and COMP3 global Interrupt */
MartinJohnson 0:404f5a4f1385 253 COMP4_5_6_IRQn = 65, /*!< COMP5, COMP6 and COMP4 global Interrupt */
MartinJohnson 0:404f5a4f1385 254 COMP7_IRQn = 66, /*!< COMP7 global Interrupt */
MartinJohnson 0:404f5a4f1385 255 USB_HP_IRQn = 74, /*!< USB High Priority global Interrupt remap */
MartinJohnson 0:404f5a4f1385 256 USB_LP_IRQn = 75, /*!< USB Low Priority global Interrupt remap */
MartinJohnson 0:404f5a4f1385 257 USBWakeUp_RMP_IRQn = 76, /*!< USB Wakeup Interrupt remap */
MartinJohnson 0:404f5a4f1385 258 FPU_IRQn = 81 /*!< Floating point Interrupt */
MartinJohnson 0:404f5a4f1385 259 #endif /* STM32F303xC */
MartinJohnson 0:404f5a4f1385 260 #ifdef STM32F334x8
MartinJohnson 0:404f5a4f1385 261 WWDG_IRQn = 0, /*!< Window WatchDog Interrupt */
MartinJohnson 0:404f5a4f1385 262 PVD_IRQn = 1, /*!< PVD through EXTI Line detection Interrupt */
MartinJohnson 0:404f5a4f1385 263 TAMPER_STAMP_IRQn = 2, /*!< Tamper and TimeStamp interrupts */
MartinJohnson 0:404f5a4f1385 264 RTC_WKUP_IRQn = 3, /*!< RTC Wakeup interrupt through the EXTI lines 17, 19 & 20 */
MartinJohnson 0:404f5a4f1385 265 FLASH_IRQn = 4, /*!< FLASH global Interrupt */
MartinJohnson 0:404f5a4f1385 266 RCC_IRQn = 5, /*!< RCC global Interrupt */
MartinJohnson 0:404f5a4f1385 267 EXTI0_IRQn = 6, /*!< EXTI Line0 Interrupt */
MartinJohnson 0:404f5a4f1385 268 EXTI1_IRQn = 7, /*!< EXTI Line1 Interrupt */
MartinJohnson 0:404f5a4f1385 269 EXTI2_TS_IRQn = 8, /*!< EXTI Line2 Interrupt and Touch Sense Interrupt */
MartinJohnson 0:404f5a4f1385 270 EXTI3_IRQn = 9, /*!< EXTI Line3 Interrupt */
MartinJohnson 0:404f5a4f1385 271 EXTI4_IRQn = 10, /*!< EXTI Line4 Interrupt */
MartinJohnson 0:404f5a4f1385 272 DMA1_Channel1_IRQn = 11, /*!< DMA1 Channel 1 Interrupt */
MartinJohnson 0:404f5a4f1385 273 DMA1_Channel2_IRQn = 12, /*!< DMA1 Channel 2 Interrupt */
MartinJohnson 0:404f5a4f1385 274 DMA1_Channel3_IRQn = 13, /*!< DMA1 Channel 3 Interrupt */
MartinJohnson 0:404f5a4f1385 275 DMA1_Channel4_IRQn = 14, /*!< DMA1 Channel 4 Interrupt */
MartinJohnson 0:404f5a4f1385 276 DMA1_Channel5_IRQn = 15, /*!< DMA1 Channel 5 Interrupt */
MartinJohnson 0:404f5a4f1385 277 DMA1_Channel6_IRQn = 16, /*!< DMA1 Channel 6 Interrupt */
MartinJohnson 0:404f5a4f1385 278 DMA1_Channel7_IRQn = 17, /*!< DMA1 Channel 7 Interrupt */
MartinJohnson 0:404f5a4f1385 279 ADC1_2_IRQn = 18, /*!< ADC1 & ADC2 Interrupts */
MartinJohnson 0:404f5a4f1385 280 CAN1_TX_IRQn = 19, /*!< CAN1 TX Interrupts */
MartinJohnson 0:404f5a4f1385 281 CAN1_RX0_IRQn = 20, /*!< CAN1 RX0 Interrupts */
MartinJohnson 0:404f5a4f1385 282 CAN1_RX1_IRQn = 21, /*!< CAN1 RX1 Interrupt */
MartinJohnson 0:404f5a4f1385 283 CAN1_SCE_IRQn = 22, /*!< CAN1 SCE Interrupt */
MartinJohnson 0:404f5a4f1385 284 EXTI9_5_IRQn = 23, /*!< External Line[9:5] Interrupts */
MartinJohnson 0:404f5a4f1385 285 TIM1_BRK_TIM15_IRQn = 24, /*!< TIM1 Break and TIM15 Interrupts */
MartinJohnson 0:404f5a4f1385 286 TIM1_UP_TIM16_IRQn = 25, /*!< TIM1 Update and TIM16 Interrupts */
MartinJohnson 0:404f5a4f1385 287 TIM1_TRG_COM_TIM17_IRQn = 26, /*!< TIM1 Trigger and Commutation and TIM17 Interrupt */
MartinJohnson 0:404f5a4f1385 288 TIM1_CC_IRQn = 27, /*!< TIM1 Capture Compare Interrupt */
MartinJohnson 0:404f5a4f1385 289 TIM2_IRQn = 28, /*!< TIM2 global Interrupt */
MartinJohnson 0:404f5a4f1385 290 TIM3_IRQn = 29, /*!< TIM3 global Interrupt */
MartinJohnson 0:404f5a4f1385 291 I2C1_EV_IRQn = 31, /*!< I2C1 Event Interrupt */
MartinJohnson 0:404f5a4f1385 292 I2C1_ER_IRQn = 32, /*!< I2C1 Error Interrupt */
MartinJohnson 0:404f5a4f1385 293 SPI1_IRQn = 35, /*!< SPI1 global Interrupt */
MartinJohnson 0:404f5a4f1385 294 USART1_IRQn = 37, /*!< USART1 global Interrupt */
MartinJohnson 0:404f5a4f1385 295 USART2_IRQn = 38, /*!< USART2 global Interrupt */
MartinJohnson 0:404f5a4f1385 296 USART3_IRQn = 39, /*!< USART3 global Interrupt */
MartinJohnson 0:404f5a4f1385 297 EXTI15_10_IRQn = 40, /*!< External Line[15:10] Interrupts */
MartinJohnson 0:404f5a4f1385 298 RTC_Alarm_IRQn = 41, /*!< RTC Alarm (A and B) through EXTI Line Interrupt */
MartinJohnson 0:404f5a4f1385 299 TIM6_DAC1_IRQn = 54, /*!< TIM6 global and DAC1 underrun error interrupts */
MartinJohnson 0:404f5a4f1385 300 TIM7_DAC2_IRQn = 55, /*!< TIM7 global and DAC2 underrun error Interrupt */
MartinJohnson 0:404f5a4f1385 301 COMP2_IRQn = 64, /*!< COMP2 global Interrupt */
MartinJohnson 0:404f5a4f1385 302 COMP4_6_IRQn = 65, /*!< COMP6 and COMP4 global Interrupt */
MartinJohnson 0:404f5a4f1385 303 HRTIM1_Master_IRQn = 67, /*!< HRTIM Master Timer global Interrupts */
MartinJohnson 0:404f5a4f1385 304 HRTIM1_TIMA_IRQn = 68, /*!< HRTIM Timer A global Interrupt */
MartinJohnson 0:404f5a4f1385 305 HRTIM1_TIMB_IRQn = 69, /*!< HRTIM Timer B global Interrupt */
MartinJohnson 0:404f5a4f1385 306 HRTIM1_TIMC_IRQn = 70, /*!< HRTIM Timer C global Interrupt */
MartinJohnson 0:404f5a4f1385 307 HRTIM1_TIMD_IRQn = 71, /*!< HRTIM Timer D global Interrupt */
MartinJohnson 0:404f5a4f1385 308 HRTIM1_TIME_IRQn = 72, /*!< HRTIM Timer E global Interrupt */
MartinJohnson 0:404f5a4f1385 309 HRTIM1_FLT_IRQn = 73, /*!< HRTIM Fault global Interrupt */
MartinJohnson 0:404f5a4f1385 310 FPU_IRQn = 81 /*!< Floating point Interrupt */
MartinJohnson 0:404f5a4f1385 311 #endif /* STM32F334x8 */
MartinJohnson 0:404f5a4f1385 312 #ifdef STM32F302x8
MartinJohnson 0:404f5a4f1385 313 WWDG_IRQn = 0, /*!< Window WatchDog Interrupt */
MartinJohnson 0:404f5a4f1385 314 PVD_IRQn = 1, /*!< PVD through EXTI Line detection Interrupt */
MartinJohnson 0:404f5a4f1385 315 TAMPER_STAMP_IRQn = 2, /*!< Tamper and TimeStamp interrupts */
MartinJohnson 0:404f5a4f1385 316 RTC_WKUP_IRQn = 3, /*!< RTC Wakeup interrupt through the EXTI lines 20 */
MartinJohnson 0:404f5a4f1385 317 FLASH_IRQn = 4, /*!< FLASH global Interrupt */
MartinJohnson 0:404f5a4f1385 318 RCC_IRQn = 5, /*!< RCC global Interrupt */
MartinJohnson 0:404f5a4f1385 319 EXTI0_IRQn = 6, /*!< EXTI Line0 Interrupt */
MartinJohnson 0:404f5a4f1385 320 EXTI1_IRQn = 7, /*!< EXTI Line1 Interrupt */
MartinJohnson 0:404f5a4f1385 321 EXTI2_TS_IRQn = 8, /*!< EXTI Line2 Interrupt and Touch Sense Interrupt */
MartinJohnson 0:404f5a4f1385 322 EXTI3_IRQn = 9, /*!< EXTI Line3 Interrupt */
MartinJohnson 0:404f5a4f1385 323 EXTI4_IRQn = 10, /*!< EXTI Line4 Interrupt */
MartinJohnson 0:404f5a4f1385 324 DMA1_Channel1_IRQn = 11, /*!< DMA1 Channel 1 Interrupt */
MartinJohnson 0:404f5a4f1385 325 DMA1_Channel2_IRQn = 12, /*!< DMA1 Channel 2 Interrupt */
MartinJohnson 0:404f5a4f1385 326 DMA1_Channel3_IRQn = 13, /*!< DMA1 Channel 3 Interrupt */
MartinJohnson 0:404f5a4f1385 327 DMA1_Channel4_IRQn = 14, /*!< DMA1 Channel 4 Interrupt */
MartinJohnson 0:404f5a4f1385 328 DMA1_Channel5_IRQn = 15, /*!< DMA1 Channel 5 Interrupt */
MartinJohnson 0:404f5a4f1385 329 DMA1_Channel6_IRQn = 16, /*!< DMA1 Channel 6 Interrupt */
MartinJohnson 0:404f5a4f1385 330 DMA1_Channel7_IRQn = 17, /*!< DMA1 Channel 7 Interrupt */
MartinJohnson 0:404f5a4f1385 331 ADC1_IRQn = 18, /*!< ADC1 Interrupts */
MartinJohnson 0:404f5a4f1385 332 USB_HP_CAN1_TX_IRQn = 19, /*!< USB Device High Priority or CAN1 TX Interrupts */
MartinJohnson 0:404f5a4f1385 333 USB_LP_CAN1_RX0_IRQn = 20, /*!< USB Device Low Priority or CAN1 RX0 Interrupts */
MartinJohnson 0:404f5a4f1385 334 CAN1_RX1_IRQn = 21, /*!< CAN1 RX1 Interrupt */
MartinJohnson 0:404f5a4f1385 335 CAN1_SCE_IRQn = 22, /*!< CAN1 SCE Interrupt */
MartinJohnson 0:404f5a4f1385 336 EXTI9_5_IRQn = 23, /*!< External Line[9:5] Interrupts */
MartinJohnson 0:404f5a4f1385 337 TIM1_BRK_TIM15_IRQn = 24, /*!< TIM1 Break and TIM15 Interrupts */
MartinJohnson 0:404f5a4f1385 338 TIM1_UP_TIM16_IRQn = 25, /*!< TIM1 Update and TIM16 Interrupts */
MartinJohnson 0:404f5a4f1385 339 TIM1_TRG_COM_TIM17_IRQn = 26, /*!< TIM1 Trigger and Commutation and TIM17 Interrupt */
MartinJohnson 0:404f5a4f1385 340 TIM1_CC_IRQn = 27, /*!< TIM1 Capture Compare Interrupt */
MartinJohnson 0:404f5a4f1385 341 TIM2_IRQn = 28, /*!< TIM2 global Interrupt */
MartinJohnson 0:404f5a4f1385 342 I2C1_EV_IRQn = 31, /*!< I2C1 Event Interrupt */
MartinJohnson 0:404f5a4f1385 343 I2C1_ER_IRQn = 32, /*!< I2C1 Error Interrupt */
MartinJohnson 0:404f5a4f1385 344 I2C2_EV_IRQn = 33, /*!< I2C2 Event Interrupt */
MartinJohnson 0:404f5a4f1385 345 I2C2_ER_IRQn = 34, /*!< I2C2 Error Interrupt */
MartinJohnson 0:404f5a4f1385 346 SPI2_IRQn = 36, /*!< SPI2 global Interrupt */
MartinJohnson 0:404f5a4f1385 347 USART1_IRQn = 37, /*!< USART1 global Interrupt */
MartinJohnson 0:404f5a4f1385 348 USART2_IRQn = 38, /*!< USART2 global Interrupt */
MartinJohnson 0:404f5a4f1385 349 USART3_IRQn = 39, /*!< USART3 global Interrupt */
MartinJohnson 0:404f5a4f1385 350 EXTI15_10_IRQn = 40, /*!< External Line[15:10] Interrupts */
MartinJohnson 0:404f5a4f1385 351 RTC_Alarm_IRQn = 41, /*!< RTC Alarm (A and B) through EXTI Line Interrupt */
MartinJohnson 0:404f5a4f1385 352 USBWakeUp_IRQn = 42, /*!< USB Wakeup Interrupt */
MartinJohnson 0:404f5a4f1385 353 SPI3_IRQn = 51, /*!< SPI3 global Interrupt */
MartinJohnson 0:404f5a4f1385 354 TIM6_DAC_IRQn = 54, /*!< TIM6 global and DAC1&2 underrun error interrupts */
MartinJohnson 0:404f5a4f1385 355 COMP2_IRQn = 64, /*!< COMP2 global Interrupt */
MartinJohnson 0:404f5a4f1385 356 COMP4_6_IRQn = 65, /*!< COMP5, COMP6 and COMP4 global Interrupt */
MartinJohnson 0:404f5a4f1385 357 COMP7_IRQn = 66, /*!< COMP7 global Interrupt */
MartinJohnson 0:404f5a4f1385 358 I2C3_EV_IRQn = 72, /*!< I2C3 Event Interrupt */
MartinJohnson 0:404f5a4f1385 359 I2C3_ER_IRQn = 73, /*!< I2C3 Error Interrupt */
MartinJohnson 0:404f5a4f1385 360 USB_HP_IRQn = 74, /*!< USB High Priority global Interrupt remap */
MartinJohnson 0:404f5a4f1385 361 USB_LP_IRQn = 75, /*!< USB Low Priority global Interrupt remap */
MartinJohnson 0:404f5a4f1385 362 USBWakeUp_RMP_IRQn = 76, /*!< USB Wakeup Interrupt remap */
MartinJohnson 0:404f5a4f1385 363 FPU_IRQn = 81 /*!< Floating point Interrupt */
MartinJohnson 0:404f5a4f1385 364 #endif /* STM32F302x8 */
MartinJohnson 0:404f5a4f1385 365 #ifdef STM32F303xE
MartinJohnson 0:404f5a4f1385 366 WWDG_IRQn = 0, /*!< Window WatchDog Interrupt */
MartinJohnson 0:404f5a4f1385 367 PVD_IRQn = 1, /*!< PVD through EXTI Line detection Interrupt */
MartinJohnson 0:404f5a4f1385 368 TAMPER_STAMP_IRQn = 2, /*!< Tamper and TimeStamp interrupts */
MartinJohnson 0:404f5a4f1385 369 RTC_WKUP_IRQn = 3, /*!< RTC Wakeup interrupt through the EXTI lines 17, 19 & 20 */
MartinJohnson 0:404f5a4f1385 370 FLASH_IRQn = 4, /*!< FLASH global Interrupt */
MartinJohnson 0:404f5a4f1385 371 RCC_IRQn = 5, /*!< RCC global Interrupt */
MartinJohnson 0:404f5a4f1385 372 EXTI0_IRQn = 6, /*!< EXTI Line0 Interrupt */
MartinJohnson 0:404f5a4f1385 373 EXTI1_IRQn = 7, /*!< EXTI Line1 Interrupt */
MartinJohnson 0:404f5a4f1385 374 EXTI2_TS_IRQn = 8, /*!< EXTI Line2 Interrupt and Touch Sense Interrupt */
MartinJohnson 0:404f5a4f1385 375 EXTI3_IRQn = 9, /*!< EXTI Line3 Interrupt */
MartinJohnson 0:404f5a4f1385 376 EXTI4_IRQn = 10, /*!< EXTI Line4 Interrupt */
MartinJohnson 0:404f5a4f1385 377 DMA1_Channel1_IRQn = 11, /*!< DMA1 Channel 1 Interrupt */
MartinJohnson 0:404f5a4f1385 378 DMA1_Channel2_IRQn = 12, /*!< DMA1 Channel 2 Interrupt */
MartinJohnson 0:404f5a4f1385 379 DMA1_Channel3_IRQn = 13, /*!< DMA1 Channel 3 Interrupt */
MartinJohnson 0:404f5a4f1385 380 DMA1_Channel4_IRQn = 14, /*!< DMA1 Channel 4 Interrupt */
MartinJohnson 0:404f5a4f1385 381 DMA1_Channel5_IRQn = 15, /*!< DMA1 Channel 5 Interrupt */
MartinJohnson 0:404f5a4f1385 382 DMA1_Channel6_IRQn = 16, /*!< DMA1 Channel 6 Interrupt */
MartinJohnson 0:404f5a4f1385 383 DMA1_Channel7_IRQn = 17, /*!< DMA1 Channel 7 Interrupt */
MartinJohnson 0:404f5a4f1385 384 ADC1_2_IRQn = 18, /*!< ADC1 & ADC2 Interrupts */
MartinJohnson 0:404f5a4f1385 385 USB_HP_CAN1_TX_IRQn = 19, /*!< USB Device High Priority or CAN1 TX Interrupts */
MartinJohnson 0:404f5a4f1385 386 USB_LP_CAN1_RX0_IRQn = 20, /*!< USB Device Low Priority or CAN1 RX0 Interrupts */
MartinJohnson 0:404f5a4f1385 387 CAN1_RX1_IRQn = 21, /*!< CAN1 RX1 Interrupt */
MartinJohnson 0:404f5a4f1385 388 CAN1_SCE_IRQn = 22, /*!< CAN1 SCE Interrupt */
MartinJohnson 0:404f5a4f1385 389 EXTI9_5_IRQn = 23, /*!< External Line[9:5] Interrupts */
MartinJohnson 0:404f5a4f1385 390 TIM1_BRK_TIM15_IRQn = 24, /*!< TIM1 Break and TIM15 Interrupts */
MartinJohnson 0:404f5a4f1385 391 TIM1_UP_TIM16_IRQn = 25, /*!< TIM1 Update and TIM16 Interrupts */
MartinJohnson 0:404f5a4f1385 392 TIM1_TRG_COM_TIM17_IRQn = 26, /*!< TIM1 Trigger and Commutation and TIM17 Interrupt */
MartinJohnson 0:404f5a4f1385 393 TIM1_CC_IRQn = 27, /*!< TIM1 Capture Compare Interrupt */
MartinJohnson 0:404f5a4f1385 394 TIM2_IRQn = 28, /*!< TIM2 global Interrupt */
MartinJohnson 0:404f5a4f1385 395 TIM3_IRQn = 29, /*!< TIM3 global Interrupt */
MartinJohnson 0:404f5a4f1385 396 TIM4_IRQn = 30, /*!< TIM4 global Interrupt */
MartinJohnson 0:404f5a4f1385 397 I2C1_EV_IRQn = 31, /*!< I2C1 Event Interrupt */
MartinJohnson 0:404f5a4f1385 398 I2C1_ER_IRQn = 32, /*!< I2C1 Error Interrupt */
MartinJohnson 0:404f5a4f1385 399 I2C2_EV_IRQn = 33, /*!< I2C2 Event Interrupt */
MartinJohnson 0:404f5a4f1385 400 I2C2_ER_IRQn = 34, /*!< I2C2 Error Interrupt */
MartinJohnson 0:404f5a4f1385 401 SPI1_IRQn = 35, /*!< SPI1 global Interrupt */
MartinJohnson 0:404f5a4f1385 402 SPI2_IRQn = 36, /*!< SPI2 global Interrupt */
MartinJohnson 0:404f5a4f1385 403 USART1_IRQn = 37, /*!< USART1 global Interrupt */
MartinJohnson 0:404f5a4f1385 404 USART2_IRQn = 38, /*!< USART2 global Interrupt */
MartinJohnson 0:404f5a4f1385 405 USART3_IRQn = 39, /*!< USART3 global Interrupt */
MartinJohnson 0:404f5a4f1385 406 EXTI15_10_IRQn = 40, /*!< External Line[15:10] Interrupts */
MartinJohnson 0:404f5a4f1385 407 RTC_Alarm_IRQn = 41, /*!< RTC Alarm (A and B) through EXTI Line Interrupt */
MartinJohnson 0:404f5a4f1385 408 USBWakeUp_IRQn = 42, /*!< USB Wakeup Interrupt */
MartinJohnson 0:404f5a4f1385 409 TIM8_BRK_IRQn = 43, /*!< TIM8 Break Interrupt */
MartinJohnson 0:404f5a4f1385 410 TIM8_UP_IRQn = 44, /*!< TIM8 Update Interrupt */
MartinJohnson 0:404f5a4f1385 411 TIM8_TRG_COM_IRQn = 45, /*!< TIM8 Trigger and Commutation Interrupt */
MartinJohnson 0:404f5a4f1385 412 TIM8_CC_IRQn = 46, /*!< TIM8 Capture Compare Interrupt */
MartinJohnson 0:404f5a4f1385 413 ADC3_IRQn = 47, /*!< ADC3 global Interrupt */
MartinJohnson 0:404f5a4f1385 414 FMC_IRQn = 48, /*!< FMC global Interrupt */
MartinJohnson 0:404f5a4f1385 415 SPI3_IRQn = 51, /*!< SPI3 global Interrupt */
MartinJohnson 0:404f5a4f1385 416 UART4_IRQn = 52, /*!< UART4 global Interrupt */
MartinJohnson 0:404f5a4f1385 417 UART5_IRQn = 53, /*!< UART5 global Interrupt */
MartinJohnson 0:404f5a4f1385 418 TIM6_DAC_IRQn = 54, /*!< TIM6 global and DAC1&2 underrun error interrupts */
MartinJohnson 0:404f5a4f1385 419 TIM7_IRQn = 55, /*!< TIM7 global Interrupt */
MartinJohnson 0:404f5a4f1385 420 DMA2_Channel1_IRQn = 56, /*!< DMA2 Channel 1 global Interrupt */
MartinJohnson 0:404f5a4f1385 421 DMA2_Channel2_IRQn = 57, /*!< DMA2 Channel 2 global Interrupt */
MartinJohnson 0:404f5a4f1385 422 DMA2_Channel3_IRQn = 58, /*!< DMA2 Channel 3 global Interrupt */
MartinJohnson 0:404f5a4f1385 423 DMA2_Channel4_IRQn = 59, /*!< DMA2 Channel 4 global Interrupt */
MartinJohnson 0:404f5a4f1385 424 DMA2_Channel5_IRQn = 60, /*!< DMA2 Channel 5 global Interrupt */
MartinJohnson 0:404f5a4f1385 425 ADC4_IRQn = 61, /*!< ADC4 global Interrupt */
MartinJohnson 0:404f5a4f1385 426 COMP1_2_3_IRQn = 64, /*!< COMP1, COMP2 and COMP3 global Interrupt */
MartinJohnson 0:404f5a4f1385 427 COMP4_5_6_IRQn = 65, /*!< COMP5, COMP6 and COMP4 global Interrupt */
MartinJohnson 0:404f5a4f1385 428 COMP7_IRQn = 66, /*!< COMP7 global Interrupt */
MartinJohnson 0:404f5a4f1385 429 I2C3_EV_IRQn = 72, /*!< I2C3 event interrupt */
MartinJohnson 0:404f5a4f1385 430 I2C3_ER_IRQn = 73, /*!< I2C3 error interrupt */
MartinJohnson 0:404f5a4f1385 431 USB_HP_IRQn = 74, /*!< USB High Priority global Interrupt remap */
MartinJohnson 0:404f5a4f1385 432 USB_LP_IRQn = 75, /*!< USB Low Priority global Interrupt remap */
MartinJohnson 0:404f5a4f1385 433 USBWakeUp_RMP_IRQn = 76, /*!< USB Wakeup Interrupt remap */
MartinJohnson 0:404f5a4f1385 434 TIM20_BRK_IRQn = 77, /*!< TIM20 Break Interrupt */
MartinJohnson 0:404f5a4f1385 435 TIM20_UP_IRQn = 78, /*!< TIM20 Update Interrupt */
MartinJohnson 0:404f5a4f1385 436 TIM20_TRG_COM_IRQn = 79, /*!< TIM20 Trigger and Commutation Interrupt */
MartinJohnson 0:404f5a4f1385 437 TIM20_CC_IRQn = 80, /*!< TIM20 Capture Compare Interrupt */
MartinJohnson 0:404f5a4f1385 438 FPU_IRQn = 81, /*!< Floating point Interrupt */
MartinJohnson 0:404f5a4f1385 439 SPI4_IRQn = 84 /*!< SPI4 global Interrupt */
MartinJohnson 0:404f5a4f1385 440 #endif /* STM32F303xE */
MartinJohnson 0:404f5a4f1385 441 } IRQn_Type;
MartinJohnson 0:404f5a4f1385 442
MartinJohnson 0:404f5a4f1385 443 /**
MartinJohnson 0:404f5a4f1385 444 * @}
MartinJohnson 0:404f5a4f1385 445 */
MartinJohnson 0:404f5a4f1385 446
MartinJohnson 0:404f5a4f1385 447 #include "core_cm4.h" /* Cortex-M4 processor and core peripherals */
MartinJohnson 0:404f5a4f1385 448 #include "system_stm32f30x.h" /* STM32F30x System Header */
MartinJohnson 0:404f5a4f1385 449 #include <stdint.h>
MartinJohnson 0:404f5a4f1385 450
MartinJohnson 0:404f5a4f1385 451 /** @addtogroup Exported_types
MartinJohnson 0:404f5a4f1385 452 * @{
MartinJohnson 0:404f5a4f1385 453 */
MartinJohnson 0:404f5a4f1385 454 /*!< STM32F10x Standard Peripheral Library old types (maintained for legacy purpose) */
MartinJohnson 0:404f5a4f1385 455 typedef int32_t s32;
MartinJohnson 0:404f5a4f1385 456 typedef int16_t s16;
MartinJohnson 0:404f5a4f1385 457 typedef int8_t s8;
MartinJohnson 0:404f5a4f1385 458
MartinJohnson 0:404f5a4f1385 459 typedef const int32_t sc32; /*!< Read Only */
MartinJohnson 0:404f5a4f1385 460 typedef const int16_t sc16; /*!< Read Only */
MartinJohnson 0:404f5a4f1385 461 typedef const int8_t sc8; /*!< Read Only */
MartinJohnson 0:404f5a4f1385 462
MartinJohnson 0:404f5a4f1385 463 typedef __IO int32_t vs32;
MartinJohnson 0:404f5a4f1385 464 typedef __IO int16_t vs16;
MartinJohnson 0:404f5a4f1385 465 typedef __IO int8_t vs8;
MartinJohnson 0:404f5a4f1385 466
MartinJohnson 0:404f5a4f1385 467 typedef __I int32_t vsc32; /*!< Read Only */
MartinJohnson 0:404f5a4f1385 468 typedef __I int16_t vsc16; /*!< Read Only */
MartinJohnson 0:404f5a4f1385 469 typedef __I int8_t vsc8; /*!< Read Only */
MartinJohnson 0:404f5a4f1385 470
MartinJohnson 0:404f5a4f1385 471 //typedef uint32_t u32;
MartinJohnson 0:404f5a4f1385 472 typedef uint16_t u16;
MartinJohnson 0:404f5a4f1385 473 typedef uint8_t u8;
MartinJohnson 0:404f5a4f1385 474
MartinJohnson 0:404f5a4f1385 475 typedef const uint32_t uc32; /*!< Read Only */
MartinJohnson 0:404f5a4f1385 476 typedef const uint16_t uc16; /*!< Read Only */
MartinJohnson 0:404f5a4f1385 477 typedef const uint8_t uc8; /*!< Read Only */
MartinJohnson 0:404f5a4f1385 478
MartinJohnson 0:404f5a4f1385 479 typedef __IO uint32_t vu32;
MartinJohnson 0:404f5a4f1385 480 typedef __IO uint16_t vu16;
MartinJohnson 0:404f5a4f1385 481 typedef __IO uint8_t vu8;
MartinJohnson 0:404f5a4f1385 482
MartinJohnson 0:404f5a4f1385 483 typedef __I uint32_t vuc32; /*!< Read Only */
MartinJohnson 0:404f5a4f1385 484 typedef __I uint16_t vuc16; /*!< Read Only */
MartinJohnson 0:404f5a4f1385 485 typedef __I uint8_t vuc8; /*!< Read Only */
MartinJohnson 0:404f5a4f1385 486
MartinJohnson 0:404f5a4f1385 487 typedef enum {RESET = 0, SET = !RESET} FlagStatus, ITStatus;
MartinJohnson 0:404f5a4f1385 488
MartinJohnson 0:404f5a4f1385 489 typedef enum {DISABLE = 0, ENABLE = !DISABLE} FunctionalState;
MartinJohnson 0:404f5a4f1385 490 #define IS_FUNCTIONAL_STATE(STATE) (((STATE) == DISABLE) || ((STATE) == ENABLE))
MartinJohnson 0:404f5a4f1385 491
MartinJohnson 0:404f5a4f1385 492 typedef enum {ERROR = 0, SUCCESS = !ERROR} ErrorStatus;
MartinJohnson 0:404f5a4f1385 493
MartinJohnson 0:404f5a4f1385 494 /**
MartinJohnson 0:404f5a4f1385 495 * @}
MartinJohnson 0:404f5a4f1385 496 */
MartinJohnson 0:404f5a4f1385 497
MartinJohnson 0:404f5a4f1385 498 /** @addtogroup Peripheral_registers_structures
MartinJohnson 0:404f5a4f1385 499 * @{
MartinJohnson 0:404f5a4f1385 500 */
MartinJohnson 0:404f5a4f1385 501
MartinJohnson 0:404f5a4f1385 502 /**
MartinJohnson 0:404f5a4f1385 503 * @brief Analog to Digital Converter
MartinJohnson 0:404f5a4f1385 504 */
MartinJohnson 0:404f5a4f1385 505
MartinJohnson 0:404f5a4f1385 506 typedef struct
MartinJohnson 0:404f5a4f1385 507 {
MartinJohnson 0:404f5a4f1385 508 __IO uint32_t ISR; /*!< ADC Interrupt and Status Register, Address offset: 0x00 */
MartinJohnson 0:404f5a4f1385 509 __IO uint32_t IER; /*!< ADC Interrupt Enable Register, Address offset: 0x04 */
MartinJohnson 0:404f5a4f1385 510 __IO uint32_t CR; /*!< ADC control register, Address offset: 0x08 */
MartinJohnson 0:404f5a4f1385 511 __IO uint32_t CFGR; /*!< ADC Configuration register, Address offset: 0x0C */
MartinJohnson 0:404f5a4f1385 512 uint32_t RESERVED0; /*!< Reserved, 0x010 */
MartinJohnson 0:404f5a4f1385 513 __IO uint32_t SMPR1; /*!< ADC sample time register 1, Address offset: 0x14 */
MartinJohnson 0:404f5a4f1385 514 __IO uint32_t SMPR2; /*!< ADC sample time register 2, Address offset: 0x18 */
MartinJohnson 0:404f5a4f1385 515 uint32_t RESERVED1; /*!< Reserved, 0x01C */
MartinJohnson 0:404f5a4f1385 516 __IO uint32_t TR1; /*!< ADC watchdog threshold register 1, Address offset: 0x20 */
MartinJohnson 0:404f5a4f1385 517 __IO uint32_t TR2; /*!< ADC watchdog threshold register 2, Address offset: 0x24 */
MartinJohnson 0:404f5a4f1385 518 __IO uint32_t TR3; /*!< ADC watchdog threshold register 3, Address offset: 0x28 */
MartinJohnson 0:404f5a4f1385 519 uint32_t RESERVED2; /*!< Reserved, 0x02C */
MartinJohnson 0:404f5a4f1385 520 __IO uint32_t SQR1; /*!< ADC regular sequence register 1, Address offset: 0x30 */
MartinJohnson 0:404f5a4f1385 521 __IO uint32_t SQR2; /*!< ADC regular sequence register 2, Address offset: 0x34 */
MartinJohnson 0:404f5a4f1385 522 __IO uint32_t SQR3; /*!< ADC regular sequence register 3, Address offset: 0x38 */
MartinJohnson 0:404f5a4f1385 523 __IO uint32_t SQR4; /*!< ADC regular sequence register 4, Address offset: 0x3C */
MartinJohnson 0:404f5a4f1385 524 __IO uint32_t DR; /*!< ADC regular data register, Address offset: 0x40 */
MartinJohnson 0:404f5a4f1385 525 uint32_t RESERVED3; /*!< Reserved, 0x044 */
MartinJohnson 0:404f5a4f1385 526 uint32_t RESERVED4; /*!< Reserved, 0x048 */
MartinJohnson 0:404f5a4f1385 527 __IO uint32_t JSQR; /*!< ADC injected sequence register, Address offset: 0x4C */
MartinJohnson 0:404f5a4f1385 528 uint32_t RESERVED5[4]; /*!< Reserved, 0x050 - 0x05C */
MartinJohnson 0:404f5a4f1385 529 __IO uint32_t OFR1; /*!< ADC offset register 1, Address offset: 0x60 */
MartinJohnson 0:404f5a4f1385 530 __IO uint32_t OFR2; /*!< ADC offset register 2, Address offset: 0x64 */
MartinJohnson 0:404f5a4f1385 531 __IO uint32_t OFR3; /*!< ADC offset register 3, Address offset: 0x68 */
MartinJohnson 0:404f5a4f1385 532 __IO uint32_t OFR4; /*!< ADC offset register 4, Address offset: 0x6C */
MartinJohnson 0:404f5a4f1385 533 uint32_t RESERVED6[4]; /*!< Reserved, 0x070 - 0x07C */
MartinJohnson 0:404f5a4f1385 534 __IO uint32_t JDR1; /*!< ADC injected data register 1, Address offset: 0x80 */
MartinJohnson 0:404f5a4f1385 535 __IO uint32_t JDR2; /*!< ADC injected data register 2, Address offset: 0x84 */
MartinJohnson 0:404f5a4f1385 536 __IO uint32_t JDR3; /*!< ADC injected data register 3, Address offset: 0x88 */
MartinJohnson 0:404f5a4f1385 537 __IO uint32_t JDR4; /*!< ADC injected data register 4, Address offset: 0x8C */
MartinJohnson 0:404f5a4f1385 538 uint32_t RESERVED7[4]; /*!< Reserved, 0x090 - 0x09C */
MartinJohnson 0:404f5a4f1385 539 __IO uint32_t AWD2CR; /*!< ADC Analog Watchdog 2 Configuration Register, Address offset: 0xA0 */
MartinJohnson 0:404f5a4f1385 540 __IO uint32_t AWD3CR; /*!< ADC Analog Watchdog 3 Configuration Register, Address offset: 0xA4 */
MartinJohnson 0:404f5a4f1385 541 uint32_t RESERVED8; /*!< Reserved, 0x0A8 */
MartinJohnson 0:404f5a4f1385 542 uint32_t RESERVED9; /*!< Reserved, 0x0AC */
MartinJohnson 0:404f5a4f1385 543 __IO uint32_t DIFSEL; /*!< ADC Differential Mode Selection Register, Address offset: 0xB0 */
MartinJohnson 0:404f5a4f1385 544 __IO uint32_t CALFACT; /*!< ADC Calibration Factors, Address offset: 0xB4 */
MartinJohnson 0:404f5a4f1385 545
MartinJohnson 0:404f5a4f1385 546 } ADC_TypeDef;
MartinJohnson 0:404f5a4f1385 547
MartinJohnson 0:404f5a4f1385 548 typedef struct
MartinJohnson 0:404f5a4f1385 549 {
MartinJohnson 0:404f5a4f1385 550 __IO uint32_t CSR; /*!< ADC Common status register, Address offset: ADC1/3 base address + 0x300 */
MartinJohnson 0:404f5a4f1385 551 uint32_t RESERVED; /*!< Reserved, ADC1/3 base address + 0x304 */
MartinJohnson 0:404f5a4f1385 552 __IO uint32_t CCR; /*!< ADC common control register, Address offset: ADC1/3 base address + 0x308 */
MartinJohnson 0:404f5a4f1385 553 __IO uint32_t CDR; /*!< ADC common regular data register for dual
MartinJohnson 0:404f5a4f1385 554 modes, Address offset: ADC1/3 base address + 0x30A */
MartinJohnson 0:404f5a4f1385 555 } ADC_Common_TypeDef;
MartinJohnson 0:404f5a4f1385 556
MartinJohnson 0:404f5a4f1385 557
MartinJohnson 0:404f5a4f1385 558 /**
MartinJohnson 0:404f5a4f1385 559 * @brief Controller Area Network TxMailBox
MartinJohnson 0:404f5a4f1385 560 */
MartinJohnson 0:404f5a4f1385 561 typedef struct
MartinJohnson 0:404f5a4f1385 562 {
MartinJohnson 0:404f5a4f1385 563 __IO uint32_t TIR; /*!< CAN TX mailbox identifier register */
MartinJohnson 0:404f5a4f1385 564 __IO uint32_t TDTR; /*!< CAN mailbox data length control and time stamp register */
MartinJohnson 0:404f5a4f1385 565 __IO uint32_t TDLR; /*!< CAN mailbox data low register */
MartinJohnson 0:404f5a4f1385 566 __IO uint32_t TDHR; /*!< CAN mailbox data high register */
MartinJohnson 0:404f5a4f1385 567 } CAN_TxMailBox_TypeDef;
MartinJohnson 0:404f5a4f1385 568
MartinJohnson 0:404f5a4f1385 569 /**
MartinJohnson 0:404f5a4f1385 570 * @brief Controller Area Network FIFOMailBox
MartinJohnson 0:404f5a4f1385 571 */
MartinJohnson 0:404f5a4f1385 572 typedef struct
MartinJohnson 0:404f5a4f1385 573 {
MartinJohnson 0:404f5a4f1385 574 __IO uint32_t RIR; /*!< CAN receive FIFO mailbox identifier register */
MartinJohnson 0:404f5a4f1385 575 __IO uint32_t RDTR; /*!< CAN receive FIFO mailbox data length control and time stamp register */
MartinJohnson 0:404f5a4f1385 576 __IO uint32_t RDLR; /*!< CAN receive FIFO mailbox data low register */
MartinJohnson 0:404f5a4f1385 577 __IO uint32_t RDHR; /*!< CAN receive FIFO mailbox data high register */
MartinJohnson 0:404f5a4f1385 578 } CAN_FIFOMailBox_TypeDef;
MartinJohnson 0:404f5a4f1385 579
MartinJohnson 0:404f5a4f1385 580 /**
MartinJohnson 0:404f5a4f1385 581 * @brief Controller Area Network FilterRegister
MartinJohnson 0:404f5a4f1385 582 */
MartinJohnson 0:404f5a4f1385 583 typedef struct
MartinJohnson 0:404f5a4f1385 584 {
MartinJohnson 0:404f5a4f1385 585 __IO uint32_t FR1; /*!< CAN Filter bank register 1 */
MartinJohnson 0:404f5a4f1385 586 __IO uint32_t FR2; /*!< CAN Filter bank register 1 */
MartinJohnson 0:404f5a4f1385 587 } CAN_FilterRegister_TypeDef;
MartinJohnson 0:404f5a4f1385 588
MartinJohnson 0:404f5a4f1385 589 /**
MartinJohnson 0:404f5a4f1385 590 * @brief Controller Area Network
MartinJohnson 0:404f5a4f1385 591 */
MartinJohnson 0:404f5a4f1385 592 typedef struct
MartinJohnson 0:404f5a4f1385 593 {
MartinJohnson 0:404f5a4f1385 594 __IO uint32_t MCR; /*!< CAN master control register, Address offset: 0x00 */
MartinJohnson 0:404f5a4f1385 595 __IO uint32_t MSR; /*!< CAN master status register, Address offset: 0x04 */
MartinJohnson 0:404f5a4f1385 596 __IO uint32_t TSR; /*!< CAN transmit status register, Address offset: 0x08 */
MartinJohnson 0:404f5a4f1385 597 __IO uint32_t RF0R; /*!< CAN receive FIFO 0 register, Address offset: 0x0C */
MartinJohnson 0:404f5a4f1385 598 __IO uint32_t RF1R; /*!< CAN receive FIFO 1 register, Address offset: 0x10 */
MartinJohnson 0:404f5a4f1385 599 __IO uint32_t IER; /*!< CAN interrupt enable register, Address offset: 0x14 */
MartinJohnson 0:404f5a4f1385 600 __IO uint32_t ESR; /*!< CAN error status register, Address offset: 0x18 */
MartinJohnson 0:404f5a4f1385 601 __IO uint32_t BTR; /*!< CAN bit timing register, Address offset: 0x1C */
MartinJohnson 0:404f5a4f1385 602 uint32_t RESERVED0[88]; /*!< Reserved, 0x020 - 0x17F */
MartinJohnson 0:404f5a4f1385 603 CAN_TxMailBox_TypeDef sTxMailBox[3]; /*!< CAN Tx MailBox, Address offset: 0x180 - 0x1AC */
MartinJohnson 0:404f5a4f1385 604 CAN_FIFOMailBox_TypeDef sFIFOMailBox[2]; /*!< CAN FIFO MailBox, Address offset: 0x1B0 - 0x1CC */
MartinJohnson 0:404f5a4f1385 605 uint32_t RESERVED1[12]; /*!< Reserved, 0x1D0 - 0x1FF */
MartinJohnson 0:404f5a4f1385 606 __IO uint32_t FMR; /*!< CAN filter master register, Address offset: 0x200 */
MartinJohnson 0:404f5a4f1385 607 __IO uint32_t FM1R; /*!< CAN filter mode register, Address offset: 0x204 */
MartinJohnson 0:404f5a4f1385 608 uint32_t RESERVED2; /*!< Reserved, 0x208 */
MartinJohnson 0:404f5a4f1385 609 __IO uint32_t FS1R; /*!< CAN filter scale register, Address offset: 0x20C */
MartinJohnson 0:404f5a4f1385 610 uint32_t RESERVED3; /*!< Reserved, 0x210 */
MartinJohnson 0:404f5a4f1385 611 __IO uint32_t FFA1R; /*!< CAN filter FIFO assignment register, Address offset: 0x214 */
MartinJohnson 0:404f5a4f1385 612 uint32_t RESERVED4; /*!< Reserved, 0x218 */
MartinJohnson 0:404f5a4f1385 613 __IO uint32_t FA1R; /*!< CAN filter activation register, Address offset: 0x21C */
MartinJohnson 0:404f5a4f1385 614 uint32_t RESERVED5[8]; /*!< Reserved, 0x220-0x23F */
MartinJohnson 0:404f5a4f1385 615 CAN_FilterRegister_TypeDef sFilterRegister[28]; /*!< CAN Filter Register, Address offset: 0x240-0x31C */
MartinJohnson 0:404f5a4f1385 616 } CAN_TypeDef;
MartinJohnson 0:404f5a4f1385 617
MartinJohnson 0:404f5a4f1385 618
MartinJohnson 0:404f5a4f1385 619 /**
MartinJohnson 0:404f5a4f1385 620 * @brief Analog Comparators
MartinJohnson 0:404f5a4f1385 621 */
MartinJohnson 0:404f5a4f1385 622
MartinJohnson 0:404f5a4f1385 623 typedef struct
MartinJohnson 0:404f5a4f1385 624 {
MartinJohnson 0:404f5a4f1385 625 __IO uint32_t CSR; /*!< Comparator control Status register, Address offset: 0x00 */
MartinJohnson 0:404f5a4f1385 626 } COMP_TypeDef;
MartinJohnson 0:404f5a4f1385 627
MartinJohnson 0:404f5a4f1385 628 /**
MartinJohnson 0:404f5a4f1385 629 * @brief CRC calculation unit
MartinJohnson 0:404f5a4f1385 630 */
MartinJohnson 0:404f5a4f1385 631
MartinJohnson 0:404f5a4f1385 632 typedef struct
MartinJohnson 0:404f5a4f1385 633 {
MartinJohnson 0:404f5a4f1385 634 __IO uint32_t DR; /*!< CRC Data register, Address offset: 0x00 */
MartinJohnson 0:404f5a4f1385 635 __IO uint8_t IDR; /*!< CRC Independent data register, Address offset: 0x04 */
MartinJohnson 0:404f5a4f1385 636 uint8_t RESERVED0; /*!< Reserved, 0x05 */
MartinJohnson 0:404f5a4f1385 637 uint16_t RESERVED1; /*!< Reserved, 0x06 */
MartinJohnson 0:404f5a4f1385 638 __IO uint32_t CR; /*!< CRC Control register, Address offset: 0x08 */
MartinJohnson 0:404f5a4f1385 639 uint32_t RESERVED2; /*!< Reserved, 0x0C */
MartinJohnson 0:404f5a4f1385 640 __IO uint32_t INIT; /*!< Initial CRC value register, Address offset: 0x10 */
MartinJohnson 0:404f5a4f1385 641 __IO uint32_t POL; /*!< CRC polynomial register, Address offset: 0x14 */
MartinJohnson 0:404f5a4f1385 642 } CRC_TypeDef;
MartinJohnson 0:404f5a4f1385 643
MartinJohnson 0:404f5a4f1385 644 /**
MartinJohnson 0:404f5a4f1385 645 * @brief Digital to Analog Converter
MartinJohnson 0:404f5a4f1385 646 */
MartinJohnson 0:404f5a4f1385 647
MartinJohnson 0:404f5a4f1385 648 typedef struct
MartinJohnson 0:404f5a4f1385 649 {
MartinJohnson 0:404f5a4f1385 650 __IO uint32_t CR; /*!< DAC control register, Address offset: 0x00 */
MartinJohnson 0:404f5a4f1385 651 __IO uint32_t SWTRIGR; /*!< DAC software trigger register, Address offset: 0x04 */
MartinJohnson 0:404f5a4f1385 652 __IO uint32_t DHR12R1; /*!< DAC channel1 12-bit right-aligned data holding register, Address offset: 0x08 */
MartinJohnson 0:404f5a4f1385 653 __IO uint32_t DHR12L1; /*!< DAC channel1 12-bit left aligned data holding register, Address offset: 0x0C */
MartinJohnson 0:404f5a4f1385 654 __IO uint32_t DHR8R1; /*!< DAC channel1 8-bit right aligned data holding register, Address offset: 0x10 */
MartinJohnson 0:404f5a4f1385 655 __IO uint32_t DHR12R2; /*!< DAC channel2 12-bit right aligned data holding register, Address offset: 0x14 */
MartinJohnson 0:404f5a4f1385 656 __IO uint32_t DHR12L2; /*!< DAC channel2 12-bit left aligned data holding register, Address offset: 0x18 */
MartinJohnson 0:404f5a4f1385 657 __IO uint32_t DHR8R2; /*!< DAC channel2 8-bit right-aligned data holding register, Address offset: 0x1C */
MartinJohnson 0:404f5a4f1385 658 __IO uint32_t DHR12RD; /*!< Dual DAC 12-bit right-aligned data holding register, Address offset: 0x20 */
MartinJohnson 0:404f5a4f1385 659 __IO uint32_t DHR12LD; /*!< DUAL DAC 12-bit left aligned data holding register, Address offset: 0x24 */
MartinJohnson 0:404f5a4f1385 660 __IO uint32_t DHR8RD; /*!< DUAL DAC 8-bit right aligned data holding register, Address offset: 0x28 */
MartinJohnson 0:404f5a4f1385 661 __IO uint32_t DOR1; /*!< DAC channel1 data output register, Address offset: 0x2C */
MartinJohnson 0:404f5a4f1385 662 __IO uint32_t DOR2; /*!< DAC channel2 data output register, Address offset: 0x30 */
MartinJohnson 0:404f5a4f1385 663 __IO uint32_t SR; /*!< DAC status register, Address offset: 0x34 */
MartinJohnson 0:404f5a4f1385 664 } DAC_TypeDef;
MartinJohnson 0:404f5a4f1385 665
MartinJohnson 0:404f5a4f1385 666 /**
MartinJohnson 0:404f5a4f1385 667 * @brief Debug MCU
MartinJohnson 0:404f5a4f1385 668 */
MartinJohnson 0:404f5a4f1385 669
MartinJohnson 0:404f5a4f1385 670 typedef struct
MartinJohnson 0:404f5a4f1385 671 {
MartinJohnson 0:404f5a4f1385 672 __IO uint32_t IDCODE; /*!< MCU device ID code, Address offset: 0x00 */
MartinJohnson 0:404f5a4f1385 673 __IO uint32_t CR; /*!< Debug MCU configuration register, Address offset: 0x04 */
MartinJohnson 0:404f5a4f1385 674 __IO uint32_t APB1FZ; /*!< Debug MCU APB1 freeze register, Address offset: 0x08 */
MartinJohnson 0:404f5a4f1385 675 __IO uint32_t APB2FZ; /*!< Debug MCU APB2 freeze register, Address offset: 0x0C */
MartinJohnson 0:404f5a4f1385 676 }DBGMCU_TypeDef;
MartinJohnson 0:404f5a4f1385 677
MartinJohnson 0:404f5a4f1385 678 /**
MartinJohnson 0:404f5a4f1385 679 * @brief DMA Controller
MartinJohnson 0:404f5a4f1385 680 */
MartinJohnson 0:404f5a4f1385 681
MartinJohnson 0:404f5a4f1385 682 typedef struct
MartinJohnson 0:404f5a4f1385 683 {
MartinJohnson 0:404f5a4f1385 684 __IO uint32_t CCR; /*!< DMA channel x configuration register */
MartinJohnson 0:404f5a4f1385 685 __IO uint32_t CNDTR; /*!< DMA channel x number of data register */
MartinJohnson 0:404f5a4f1385 686 __IO uint32_t CPAR; /*!< DMA channel x peripheral address register */
MartinJohnson 0:404f5a4f1385 687 __IO uint32_t CMAR; /*!< DMA channel x memory address register */
MartinJohnson 0:404f5a4f1385 688 } DMA_Channel_TypeDef;
MartinJohnson 0:404f5a4f1385 689
MartinJohnson 0:404f5a4f1385 690 typedef struct
MartinJohnson 0:404f5a4f1385 691 {
MartinJohnson 0:404f5a4f1385 692 __IO uint32_t ISR; /*!< DMA interrupt status register, Address offset: 0x00 */
MartinJohnson 0:404f5a4f1385 693 __IO uint32_t IFCR; /*!< DMA interrupt clear flag register, Address offset: 0x04 */
MartinJohnson 0:404f5a4f1385 694 } DMA_TypeDef;
MartinJohnson 0:404f5a4f1385 695
MartinJohnson 0:404f5a4f1385 696 /**
MartinJohnson 0:404f5a4f1385 697 * @brief External Interrupt/Event Controller
MartinJohnson 0:404f5a4f1385 698 */
MartinJohnson 0:404f5a4f1385 699
MartinJohnson 0:404f5a4f1385 700 typedef struct
MartinJohnson 0:404f5a4f1385 701 {
MartinJohnson 0:404f5a4f1385 702 __IO uint32_t IMR; /*!< EXTI Interrupt mask register, Address offset: 0x00 */
MartinJohnson 0:404f5a4f1385 703 __IO uint32_t EMR; /*!< EXTI Event mask register, Address offset: 0x04 */
MartinJohnson 0:404f5a4f1385 704 __IO uint32_t RTSR; /*!< EXTI Rising trigger selection register, Address offset: 0x08 */
MartinJohnson 0:404f5a4f1385 705 __IO uint32_t FTSR; /*!< EXTI Falling trigger selection register, Address offset: 0x0C */
MartinJohnson 0:404f5a4f1385 706 __IO uint32_t SWIER; /*!< EXTI Software interrupt event register, Address offset: 0x10 */
MartinJohnson 0:404f5a4f1385 707 __IO uint32_t PR; /*!< EXTI Pending register, Address offset: 0x14 */
MartinJohnson 0:404f5a4f1385 708 uint32_t RESERVED1; /*!< Reserved, 0x18 */
MartinJohnson 0:404f5a4f1385 709 uint32_t RESERVED2; /*!< Reserved, 0x1C */
MartinJohnson 0:404f5a4f1385 710 __IO uint32_t IMR2; /*!< EXTI Interrupt mask register, Address offset: 0x20 */
MartinJohnson 0:404f5a4f1385 711 __IO uint32_t EMR2; /*!< EXTI Event mask register, Address offset: 0x24 */
MartinJohnson 0:404f5a4f1385 712 __IO uint32_t RTSR2; /*!< EXTI Rising trigger selection register, Address offset: 0x28 */
MartinJohnson 0:404f5a4f1385 713 __IO uint32_t FTSR2; /*!< EXTI Falling trigger selection register, Address offset: 0x2C */
MartinJohnson 0:404f5a4f1385 714 __IO uint32_t SWIER2; /*!< EXTI Software interrupt event register, Address offset: 0x30 */
MartinJohnson 0:404f5a4f1385 715 __IO uint32_t PR2; /*!< EXTI Pending register, Address offset: 0x34 */
MartinJohnson 0:404f5a4f1385 716 }EXTI_TypeDef;
MartinJohnson 0:404f5a4f1385 717
MartinJohnson 0:404f5a4f1385 718 /**
MartinJohnson 0:404f5a4f1385 719 * @brief FLASH Registers
MartinJohnson 0:404f5a4f1385 720 */
MartinJohnson 0:404f5a4f1385 721
MartinJohnson 0:404f5a4f1385 722 typedef struct
MartinJohnson 0:404f5a4f1385 723 {
MartinJohnson 0:404f5a4f1385 724 __IO uint32_t ACR; /*!< FLASH access control register, Address offset: 0x00 */
MartinJohnson 0:404f5a4f1385 725 __IO uint32_t KEYR; /*!< FLASH key register, Address offset: 0x04 */
MartinJohnson 0:404f5a4f1385 726 __IO uint32_t OPTKEYR; /*!< FLASH option key register, Address offset: 0x08 */
MartinJohnson 0:404f5a4f1385 727 __IO uint32_t SR; /*!< FLASH status register, Address offset: 0x0C */
MartinJohnson 0:404f5a4f1385 728 __IO uint32_t CR; /*!< FLASH control register, Address offset: 0x10 */
MartinJohnson 0:404f5a4f1385 729 __IO uint32_t AR; /*!< FLASH address register, Address offset: 0x14 */
MartinJohnson 0:404f5a4f1385 730 uint32_t RESERVED; /*!< Reserved, 0x18 */
MartinJohnson 0:404f5a4f1385 731 __IO uint32_t OBR; /*!< FLASH Option byte register, Address offset: 0x1C */
MartinJohnson 0:404f5a4f1385 732 __IO uint32_t WRPR; /*!< FLASH Write register, Address offset: 0x20 */
MartinJohnson 0:404f5a4f1385 733
MartinJohnson 0:404f5a4f1385 734 } FLASH_TypeDef;
MartinJohnson 0:404f5a4f1385 735
MartinJohnson 0:404f5a4f1385 736 /**
MartinJohnson 0:404f5a4f1385 737 * @brief Flexible Memory Controller
MartinJohnson 0:404f5a4f1385 738 */
MartinJohnson 0:404f5a4f1385 739
MartinJohnson 0:404f5a4f1385 740 typedef struct
MartinJohnson 0:404f5a4f1385 741 {
MartinJohnson 0:404f5a4f1385 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:404f5a4f1385 743 } FMC_Bank1_TypeDef;
MartinJohnson 0:404f5a4f1385 744
MartinJohnson 0:404f5a4f1385 745 /**
MartinJohnson 0:404f5a4f1385 746 * @brief Flexible Memory Controller Bank1E
MartinJohnson 0:404f5a4f1385 747 */
MartinJohnson 0:404f5a4f1385 748
MartinJohnson 0:404f5a4f1385 749 typedef struct
MartinJohnson 0:404f5a4f1385 750 {
MartinJohnson 0:404f5a4f1385 751 __IO uint32_t BWTR[7]; /*!< NOR/PSRAM write timing registers, Address offset: 0x104-0x11C */
MartinJohnson 0:404f5a4f1385 752 } FMC_Bank1E_TypeDef;
MartinJohnson 0:404f5a4f1385 753
MartinJohnson 0:404f5a4f1385 754 /**
MartinJohnson 0:404f5a4f1385 755 * @brief Flexible Memory Controller Bank2
MartinJohnson 0:404f5a4f1385 756 */
MartinJohnson 0:404f5a4f1385 757
MartinJohnson 0:404f5a4f1385 758 typedef struct
MartinJohnson 0:404f5a4f1385 759 {
MartinJohnson 0:404f5a4f1385 760 __IO uint32_t PCR2; /*!< NAND Flash control register 2, Address offset: 0x60 */
MartinJohnson 0:404f5a4f1385 761 __IO uint32_t SR2; /*!< NAND Flash FIFO status and interrupt register 2, Address offset: 0x64 */
MartinJohnson 0:404f5a4f1385 762 __IO uint32_t PMEM2; /*!< NAND Flash Common memory space timing register 2, Address offset: 0x68 */
MartinJohnson 0:404f5a4f1385 763 __IO uint32_t PATT2; /*!< NAND Flash Attribute memory space timing register 2, Address offset: 0x6C */
MartinJohnson 0:404f5a4f1385 764 uint32_t RESERVED0; /*!< Reserved, 0x70 */
MartinJohnson 0:404f5a4f1385 765 __IO uint32_t ECCR2; /*!< NAND Flash ECC result registers 2, Address offset: 0x74 */
MartinJohnson 0:404f5a4f1385 766 } FMC_Bank2_TypeDef;
MartinJohnson 0:404f5a4f1385 767
MartinJohnson 0:404f5a4f1385 768 /**
MartinJohnson 0:404f5a4f1385 769 * @brief Flexible Memory Controller Bank3
MartinJohnson 0:404f5a4f1385 770 */
MartinJohnson 0:404f5a4f1385 771
MartinJohnson 0:404f5a4f1385 772 typedef struct
MartinJohnson 0:404f5a4f1385 773 {
MartinJohnson 0:404f5a4f1385 774 __IO uint32_t PCR3; /*!< NAND Flash control register 3, Address offset: 0x80 */
MartinJohnson 0:404f5a4f1385 775 __IO uint32_t SR3; /*!< NAND Flash FIFO status and interrupt register 3, Address offset: 0x84 */
MartinJohnson 0:404f5a4f1385 776 __IO uint32_t PMEM3; /*!< NAND Flash Common memory space timing register 3, Address offset: 0x88 */
MartinJohnson 0:404f5a4f1385 777 __IO uint32_t PATT3; /*!< NAND Flash Attribute memory space timing register 3, Address offset: 0x8C */
MartinJohnson 0:404f5a4f1385 778 uint32_t RESERVED0; /*!< Reserved, 0x90 */
MartinJohnson 0:404f5a4f1385 779 __IO uint32_t ECCR3; /*!< NAND Flash ECC result registers 3, Address offset: 0x94 */
MartinJohnson 0:404f5a4f1385 780 } FMC_Bank3_TypeDef;
MartinJohnson 0:404f5a4f1385 781
MartinJohnson 0:404f5a4f1385 782 /**
MartinJohnson 0:404f5a4f1385 783 * @brief Flexible Memory Controller Bank4
MartinJohnson 0:404f5a4f1385 784 */
MartinJohnson 0:404f5a4f1385 785
MartinJohnson 0:404f5a4f1385 786 typedef struct
MartinJohnson 0:404f5a4f1385 787 {
MartinJohnson 0:404f5a4f1385 788 __IO uint32_t PCR4; /*!< PC Card control register 4, Address offset: 0xA0 */
MartinJohnson 0:404f5a4f1385 789 __IO uint32_t SR4; /*!< PC Card FIFO status and interrupt register 4, Address offset: 0xA4 */
MartinJohnson 0:404f5a4f1385 790 __IO uint32_t PMEM4; /*!< PC Card Common memory space timing register 4, Address offset: 0xA8 */
MartinJohnson 0:404f5a4f1385 791 __IO uint32_t PATT4; /*!< PC Card Attribute memory space timing register 4, Address offset: 0xAC */
MartinJohnson 0:404f5a4f1385 792 __IO uint32_t PIO4; /*!< PC Card I/O space timing register 4, Address offset: 0xB0 */
MartinJohnson 0:404f5a4f1385 793 } FMC_Bank4_TypeDef;
MartinJohnson 0:404f5a4f1385 794
MartinJohnson 0:404f5a4f1385 795 /**
MartinJohnson 0:404f5a4f1385 796 * @brief Option Bytes Registers
MartinJohnson 0:404f5a4f1385 797 */
MartinJohnson 0:404f5a4f1385 798 typedef struct
MartinJohnson 0:404f5a4f1385 799 {
MartinJohnson 0:404f5a4f1385 800 __IO uint16_t RDP; /*!<FLASH option byte Read protection, Address offset: 0x00 */
MartinJohnson 0:404f5a4f1385 801 __IO uint16_t USER; /*!<FLASH option byte user options, Address offset: 0x02 */
MartinJohnson 0:404f5a4f1385 802 uint16_t RESERVED0; /*!< Reserved, 0x04 */
MartinJohnson 0:404f5a4f1385 803 uint16_t RESERVED1; /*!< Reserved, 0x06 */
MartinJohnson 0:404f5a4f1385 804 __IO uint16_t WRP0; /*!<FLASH option byte write protection 0, Address offset: 0x08 */
MartinJohnson 0:404f5a4f1385 805 __IO uint16_t WRP1; /*!<FLASH option byte write protection 1, Address offset: 0x0C */
MartinJohnson 0:404f5a4f1385 806 __IO uint16_t WRP2; /*!<FLASH option byte write protection 2, Address offset: 0x10 */
MartinJohnson 0:404f5a4f1385 807 __IO uint16_t WRP3; /*!<FLASH option byte write protection 3, Address offset: 0x12 */
MartinJohnson 0:404f5a4f1385 808 } OB_TypeDef;
MartinJohnson 0:404f5a4f1385 809
MartinJohnson 0:404f5a4f1385 810 /**
MartinJohnson 0:404f5a4f1385 811 * @brief General Purpose I/O
MartinJohnson 0:404f5a4f1385 812 */
MartinJohnson 0:404f5a4f1385 813
MartinJohnson 0:404f5a4f1385 814 typedef struct
MartinJohnson 0:404f5a4f1385 815 {
MartinJohnson 0:404f5a4f1385 816 __IO uint32_t MODER; /*!< GPIO port mode register, Address offset: 0x00 */
MartinJohnson 0:404f5a4f1385 817 __IO uint16_t OTYPER; /*!< GPIO port output type register, Address offset: 0x04 */
MartinJohnson 0:404f5a4f1385 818 uint16_t RESERVED0; /*!< Reserved, 0x06 */
MartinJohnson 0:404f5a4f1385 819 __IO uint32_t OSPEEDR; /*!< GPIO port output speed register, Address offset: 0x08 */
MartinJohnson 0:404f5a4f1385 820 __IO uint32_t PUPDR; /*!< GPIO port pull-up/pull-down register, Address offset: 0x0C */
MartinJohnson 0:404f5a4f1385 821 __IO uint16_t IDR; /*!< GPIO port input data register, Address offset: 0x10 */
MartinJohnson 0:404f5a4f1385 822 uint16_t RESERVED1; /*!< Reserved, 0x12 */
MartinJohnson 0:404f5a4f1385 823 __IO uint16_t ODR; /*!< GPIO port output data register, Address offset: 0x14 */
MartinJohnson 0:404f5a4f1385 824 uint16_t RESERVED2; /*!< Reserved, 0x16 */
MartinJohnson 0:404f5a4f1385 825 __IO uint32_t BSRR; /*!< GPIO port bit set/reset registerBSRR, Address offset: 0x18 */
MartinJohnson 0:404f5a4f1385 826 __IO uint32_t LCKR; /*!< GPIO port configuration lock register, Address offset: 0x1C */
MartinJohnson 0:404f5a4f1385 827 __IO uint32_t AFR[2]; /*!< GPIO alternate function low register, Address offset: 0x20-0x24 */
MartinJohnson 0:404f5a4f1385 828 __IO uint16_t BRR; /*!< GPIO bit reset register, Address offset: 0x28 */
MartinJohnson 0:404f5a4f1385 829 uint16_t RESERVED3; /*!< Reserved, 0x2A */
MartinJohnson 0:404f5a4f1385 830 }GPIO_TypeDef;
MartinJohnson 0:404f5a4f1385 831
MartinJohnson 0:404f5a4f1385 832 /**
MartinJohnson 0:404f5a4f1385 833 * @brief High resolution Timer (HRTIM)
MartinJohnson 0:404f5a4f1385 834 */
MartinJohnson 0:404f5a4f1385 835 /* HRTIM master definition */
MartinJohnson 0:404f5a4f1385 836 typedef struct
MartinJohnson 0:404f5a4f1385 837 {
MartinJohnson 0:404f5a4f1385 838 __IO uint32_t MCR; /*!< HRTIM Master Timer control register, Address offset: 0x00 */
MartinJohnson 0:404f5a4f1385 839 __IO uint32_t MISR; /*!< HRTIM Master Timer interrupt status register, Address offset: 0x04 */
MartinJohnson 0:404f5a4f1385 840 __IO uint32_t MICR; /*!< HRTIM Master Timer interrupt clear register, Address offset: 0x08 */
MartinJohnson 0:404f5a4f1385 841 __IO uint32_t MDIER; /*!< HRTIM Master Timer DMA/interrupt enable register Address offset: 0x0C */
MartinJohnson 0:404f5a4f1385 842 __IO uint32_t MCNTR; /*!< HRTIM Master Timer counter register, Address offset: 0x10 */
MartinJohnson 0:404f5a4f1385 843 __IO uint32_t MPER; /*!< HRTIM Master Timer period register, Address offset: 0x14 */
MartinJohnson 0:404f5a4f1385 844 __IO uint32_t MREP; /*!< HRTIM Master Timer repetition register, Address offset: 0x18 */
MartinJohnson 0:404f5a4f1385 845 __IO uint32_t MCMP1R; /*!< HRTIM Master Timer compare 1 register, Address offset: 0x1C */
MartinJohnson 0:404f5a4f1385 846 uint32_t RESERVED0; /*!< Reserved, 0x20 */
MartinJohnson 0:404f5a4f1385 847 __IO uint32_t MCMP2R; /*!< HRTIM Master Timer compare 2 register, Address offset: 0x24 */
MartinJohnson 0:404f5a4f1385 848 __IO uint32_t MCMP3R; /*!< HRTIM Master Timer compare 3 register, Address offset: 0x28 */
MartinJohnson 0:404f5a4f1385 849 __IO uint32_t MCMP4R; /*!< HRTIM Master Timer compare 4 register, Address offset: 0x2C */
MartinJohnson 0:404f5a4f1385 850 }HRTIM_Master_TypeDef;
MartinJohnson 0:404f5a4f1385 851
MartinJohnson 0:404f5a4f1385 852 /* HRTIM slave definition */
MartinJohnson 0:404f5a4f1385 853 typedef struct
MartinJohnson 0:404f5a4f1385 854 {
MartinJohnson 0:404f5a4f1385 855 __IO uint32_t TIMxCR; /*!< HRTIM Timerx control register, Address offset: 0x00 */
MartinJohnson 0:404f5a4f1385 856 __IO uint32_t TIMxISR; /*!< HRTIM Timerx interrupt status register, Address offset: 0x04 */
MartinJohnson 0:404f5a4f1385 857 __IO uint32_t TIMxICR; /*!< HRTIM Timerx interrupt clear register, Address offset: 0x08 */
MartinJohnson 0:404f5a4f1385 858 __IO uint32_t TIMxDIER; /*!< HRTIM Timerx DMA/interrupt enable register, Address offset: 0x0C */
MartinJohnson 0:404f5a4f1385 859 __IO uint32_t CNTxR; /*!< HRTIM Timerx counter register, Address offset: 0x10 */
MartinJohnson 0:404f5a4f1385 860 __IO uint32_t PERxR; /*!< HRTIM Timerx period register, Address offset: 0x14 */
MartinJohnson 0:404f5a4f1385 861 __IO uint32_t REPxR; /*!< HRTIM Timerx repetition register, Address offset: 0x18 */
MartinJohnson 0:404f5a4f1385 862 __IO uint32_t CMP1xR; /*!< HRTIM Timerx compare 1 register, Address offset: 0x1C */
MartinJohnson 0:404f5a4f1385 863 __IO uint32_t CMP1CxR; /*!< HRTIM Timerx compare 1 compound register, Address offset: 0x20 */
MartinJohnson 0:404f5a4f1385 864 __IO uint32_t CMP2xR; /*!< HRTIM Timerx compare 2 register, Address offset: 0x24 */
MartinJohnson 0:404f5a4f1385 865 __IO uint32_t CMP3xR; /*!< HRTIM Timerx compare 3 register, Address offset: 0x28 */
MartinJohnson 0:404f5a4f1385 866 __IO uint32_t CMP4xR; /*!< HRTIM Timerx compare 4 register, Address offset: 0x2C */
MartinJohnson 0:404f5a4f1385 867 __IO uint32_t CPT1xR; /*!< HRTIM Timerx capture 1 register, Address offset: 0x30 */
MartinJohnson 0:404f5a4f1385 868 __IO uint32_t CPT2xR; /*!< HRTIM Timerx capture 2 register, Address offset: 0x34 */
MartinJohnson 0:404f5a4f1385 869 __IO uint32_t DTxR; /*!< HRTIM Timerx dead time register, Address offset: 0x38 */
MartinJohnson 0:404f5a4f1385 870 __IO uint32_t SETx1R; /*!< HRTIM Timerx output 1 set register, Address offset: 0x3C */
MartinJohnson 0:404f5a4f1385 871 __IO uint32_t RSTx1R; /*!< HRTIM Timerx output 1 reset register, Address offset: 0x40 */
MartinJohnson 0:404f5a4f1385 872 __IO uint32_t SETx2R; /*!< HRTIM Timerx output 2 set register, Address offset: 0x44 */
MartinJohnson 0:404f5a4f1385 873 __IO uint32_t RSTx2R; /*!< HRTIM Timerx output 2 reset register, Address offset: 0x48 */
MartinJohnson 0:404f5a4f1385 874 __IO uint32_t EEFxR1; /*!< HRTIM Timerx external event filtering 1 register, Address offset: 0x4C */
MartinJohnson 0:404f5a4f1385 875 __IO uint32_t EEFxR2; /*!< HRTIM Timerx external event filtering 2 register, Address offset: 0x50 */
MartinJohnson 0:404f5a4f1385 876 __IO uint32_t RSTxR; /*!< HRTIM Timerx Reset register, Address offset: 0x54 */
MartinJohnson 0:404f5a4f1385 877 __IO uint32_t CHPxR; /*!< HRTIM Timerx Chopper register, Address offset: 0x58 */
MartinJohnson 0:404f5a4f1385 878 __IO uint32_t CPT1xCR; /*!< HRTIM Timerx Capture 1 register, Address offset: 0x5C */
MartinJohnson 0:404f5a4f1385 879 __IO uint32_t CPT2xCR; /*!< HRTIM Timerx Capture 2 register, Address offset: 0x60 */
MartinJohnson 0:404f5a4f1385 880 __IO uint32_t OUTxR; /*!< HRTIM Timerx Output register, Address offset: 0x64 */
MartinJohnson 0:404f5a4f1385 881 __IO uint32_t FLTxR; /*!< HRTIM Timerx Fault register, Address offset: 0x68 */
MartinJohnson 0:404f5a4f1385 882 uint32_t RESERVED0[5];/*!< Reserved, */
MartinJohnson 0:404f5a4f1385 883 }HRTIM_Timerx_TypeDef;
MartinJohnson 0:404f5a4f1385 884
MartinJohnson 0:404f5a4f1385 885 /* HRTIM common register definition */
MartinJohnson 0:404f5a4f1385 886 typedef struct
MartinJohnson 0:404f5a4f1385 887 {
MartinJohnson 0:404f5a4f1385 888 __IO uint32_t CR1; /*!< HRTIM control register1, Address offset: 0x00 */
MartinJohnson 0:404f5a4f1385 889 __IO uint32_t CR2; /*!< HRTIM control register2, Address offset: 0x04 */
MartinJohnson 0:404f5a4f1385 890 __IO uint32_t ISR; /*!< HRTIM interrupt status register, Address offset: 0x08 */
MartinJohnson 0:404f5a4f1385 891 __IO uint32_t ICR; /*!< HRTIM interrupt clear register, Address offset: 0x0C */
MartinJohnson 0:404f5a4f1385 892 __IO uint32_t IER; /*!< HRTIM interrupt enable register, Address offset: 0x10 */
MartinJohnson 0:404f5a4f1385 893 __IO uint32_t OENR; /*!< HRTIM Output enable register, Address offset: 0x14 */
MartinJohnson 0:404f5a4f1385 894 __IO uint32_t DISR; /*!< HRTIM Output disable register, Address offset: 0x18 */
MartinJohnson 0:404f5a4f1385 895 __IO uint32_t ODSR; /*!< HRTIM Output disable status register, Address offset: 0x1C */
MartinJohnson 0:404f5a4f1385 896 __IO uint32_t BMCR; /*!< HRTIM Burst mode control register, Address offset: 0x20 */
MartinJohnson 0:404f5a4f1385 897 __IO uint32_t BMTRGR; /*!< HRTIM Busrt mode trigger register, Address offset: 0x24 */
MartinJohnson 0:404f5a4f1385 898 __IO uint32_t BMCMPR; /*!< HRTIM Burst mode compare register, Address offset: 0x28 */
MartinJohnson 0:404f5a4f1385 899 __IO uint32_t BMPER; /*!< HRTIM Burst mode period register, Address offset: 0x2C */
MartinJohnson 0:404f5a4f1385 900 __IO uint32_t EECR1; /*!< HRTIM Timer external event control register1, Address offset: 0x30 */
MartinJohnson 0:404f5a4f1385 901 __IO uint32_t EECR2; /*!< HRTIM Timer external event control register2, Address offset: 0x34 */
MartinJohnson 0:404f5a4f1385 902 __IO uint32_t EECR3; /*!< HRTIM Timer external event control register3, Address offset: 0x38 */
MartinJohnson 0:404f5a4f1385 903 __IO uint32_t ADC1R; /*!< HRTIM ADC Trigger 1 register, Address offset: 0x3C */
MartinJohnson 0:404f5a4f1385 904 __IO uint32_t ADC2R; /*!< HRTIM ADC Trigger 2 register, Address offset: 0x40 */
MartinJohnson 0:404f5a4f1385 905 __IO uint32_t ADC3R; /*!< HRTIM ADC Trigger 3 register, Address offset: 0x44 */
MartinJohnson 0:404f5a4f1385 906 __IO uint32_t ADC4R; /*!< HRTIM ADC Trigger 4 register, Address offset: 0x48 */
MartinJohnson 0:404f5a4f1385 907 __IO uint32_t DLLCR; /*!< HRTIM DLL control register, Address offset: 0x4C */
MartinJohnson 0:404f5a4f1385 908 __IO uint32_t FLTINxR1; /*!< HRTIM Fault input register1, Address offset: 0x50 */
MartinJohnson 0:404f5a4f1385 909 __IO uint32_t FLTINxR2; /*!< HRTIM Fault input register2, Address offset: 0x54 */
MartinJohnson 0:404f5a4f1385 910 __IO uint32_t BDMUPDR; /*!< HRTIM Burst DMA Master Timer update register, Address offset: 0x58 */
MartinJohnson 0:404f5a4f1385 911 __IO uint32_t BDTAUPR; /*!< HRTIM Burst DMA Timerx update register, Address offset: 0x5C */
MartinJohnson 0:404f5a4f1385 912 __IO uint32_t BDTBUPR; /*!< HRTIM Burst DMA Timerx update register, Address offset: 0x60 */
MartinJohnson 0:404f5a4f1385 913 __IO uint32_t BDTCUPR; /*!< HRTIM Burst DMA Timerx update register, Address offset: 0x64 */
MartinJohnson 0:404f5a4f1385 914 __IO uint32_t BDTDUPR; /*!< HRTIM Burst DMA Timerx update register, Address offset: 0x68 */
MartinJohnson 0:404f5a4f1385 915 __IO uint32_t BDTEUPR; /*!< HRTIM Burst DMA Timerx update register, Address offset: 0x6C */
MartinJohnson 0:404f5a4f1385 916 __IO uint32_t BDMADR; /*!< HRTIM Burst DMA Master Data register, Address offset: 0x70 */
MartinJohnson 0:404f5a4f1385 917 }HRTIM_Common_TypeDef;
MartinJohnson 0:404f5a4f1385 918
MartinJohnson 0:404f5a4f1385 919 /* HRTIM register definition */
MartinJohnson 0:404f5a4f1385 920 typedef struct {
MartinJohnson 0:404f5a4f1385 921 HRTIM_Master_TypeDef HRTIM_MASTER;
MartinJohnson 0:404f5a4f1385 922 uint32_t RESERVED0[20];
MartinJohnson 0:404f5a4f1385 923 HRTIM_Timerx_TypeDef HRTIM_TIMERx[5];
MartinJohnson 0:404f5a4f1385 924 uint32_t RESERVED1[32];
MartinJohnson 0:404f5a4f1385 925 HRTIM_Common_TypeDef HRTIM_COMMON;
MartinJohnson 0:404f5a4f1385 926 }HRTIM_TypeDef;
MartinJohnson 0:404f5a4f1385 927
MartinJohnson 0:404f5a4f1385 928 /**
MartinJohnson 0:404f5a4f1385 929 * @brief Operational Amplifier (OPAMP)
MartinJohnson 0:404f5a4f1385 930 */
MartinJohnson 0:404f5a4f1385 931
MartinJohnson 0:404f5a4f1385 932 typedef struct
MartinJohnson 0:404f5a4f1385 933 {
MartinJohnson 0:404f5a4f1385 934 __IO uint32_t CSR; /*!< OPAMP control and status register, Address offset: 0x00 */
MartinJohnson 0:404f5a4f1385 935 } OPAMP_TypeDef;
MartinJohnson 0:404f5a4f1385 936
MartinJohnson 0:404f5a4f1385 937
MartinJohnson 0:404f5a4f1385 938 /**
MartinJohnson 0:404f5a4f1385 939 * @brief System configuration controller
MartinJohnson 0:404f5a4f1385 940 */
MartinJohnson 0:404f5a4f1385 941
MartinJohnson 0:404f5a4f1385 942 typedef struct
MartinJohnson 0:404f5a4f1385 943 {
MartinJohnson 0:404f5a4f1385 944 __IO uint32_t CFGR1; /*!< SYSCFG configuration register 1, Address offset: 0x00 */
MartinJohnson 0:404f5a4f1385 945 __IO uint32_t RCR; /*!< SYSCFG CCM SRAM protection register, Address offset: 0x04 */
MartinJohnson 0:404f5a4f1385 946 __IO uint32_t EXTICR[4]; /*!< SYSCFG external interrupt configuration registers, Address offset: 0x14-0x08 */
MartinJohnson 0:404f5a4f1385 947 __IO uint32_t CFGR2; /*!< SYSCFG configuration register 2, Address offset: 0x18 */
MartinJohnson 0:404f5a4f1385 948 __IO uint32_t RESERVED0; /*!< Reserved, 0x1C */
MartinJohnson 0:404f5a4f1385 949 __IO uint32_t RESERVED1; /*!< Reserved, 0x20 */
MartinJohnson 0:404f5a4f1385 950 __IO uint32_t RESERVED2; /*!< Reserved, 0x24 */
MartinJohnson 0:404f5a4f1385 951 __IO uint32_t RESERVED4; /*!< Reserved, 0x28 */
MartinJohnson 0:404f5a4f1385 952 __IO uint32_t RESERVED5; /*!< Reserved, 0x2C */
MartinJohnson 0:404f5a4f1385 953 __IO uint32_t RESERVED6; /*!< Reserved, 0x30 */
MartinJohnson 0:404f5a4f1385 954 __IO uint32_t RESERVED7; /*!< Reserved, 0x34 */
MartinJohnson 0:404f5a4f1385 955 __IO uint32_t RESERVED8; /*!< Reserved, 0x38 */
MartinJohnson 0:404f5a4f1385 956 __IO uint32_t RESERVED9; /*!< Reserved, 0x3C */
MartinJohnson 0:404f5a4f1385 957 __IO uint32_t RESERVED10; /*!< Reserved, 0x40 */
MartinJohnson 0:404f5a4f1385 958 __IO uint32_t RESERVED11; /*!< Reserved, 0x44 */
MartinJohnson 0:404f5a4f1385 959 __IO uint32_t CFGR4; /*!< SYSCFG configuration register 4, Address offset: 0x48 */
MartinJohnson 0:404f5a4f1385 960 __IO uint32_t RESERVED13; /*!< Reserved, 0x4C */
MartinJohnson 0:404f5a4f1385 961 __IO uint32_t CFGR3; /*!< SYSCFG configuration register 3, Address offset: 0x50 */
MartinJohnson 0:404f5a4f1385 962 } SYSCFG_TypeDef;
MartinJohnson 0:404f5a4f1385 963
MartinJohnson 0:404f5a4f1385 964 /**
MartinJohnson 0:404f5a4f1385 965 * @brief Inter-integrated Circuit Interface
MartinJohnson 0:404f5a4f1385 966 */
MartinJohnson 0:404f5a4f1385 967
MartinJohnson 0:404f5a4f1385 968 typedef struct
MartinJohnson 0:404f5a4f1385 969 {
MartinJohnson 0:404f5a4f1385 970 __IO uint32_t CR1; /*!< I2C Control register 1, Address offset: 0x00 */
MartinJohnson 0:404f5a4f1385 971 __IO uint32_t CR2; /*!< I2C Control register 2, Address offset: 0x04 */
MartinJohnson 0:404f5a4f1385 972 __IO uint32_t OAR1; /*!< I2C Own address 1 register, Address offset: 0x08 */
MartinJohnson 0:404f5a4f1385 973 __IO uint32_t OAR2; /*!< I2C Own address 2 register, Address offset: 0x0C */
MartinJohnson 0:404f5a4f1385 974 __IO uint32_t TIMINGR; /*!< I2C Timing register, Address offset: 0x10 */
MartinJohnson 0:404f5a4f1385 975 __IO uint32_t TIMEOUTR; /*!< I2C Timeout register, Address offset: 0x14 */
MartinJohnson 0:404f5a4f1385 976 __IO uint32_t ISR; /*!< I2C Interrupt and status register, Address offset: 0x18 */
MartinJohnson 0:404f5a4f1385 977 __IO uint32_t ICR; /*!< I2C Interrupt clear register, Address offset: 0x1C */
MartinJohnson 0:404f5a4f1385 978 __IO uint32_t PECR; /*!< I2C PEC register, Address offset: 0x20 */
MartinJohnson 0:404f5a4f1385 979 __IO uint32_t RXDR; /*!< I2C Receive data register, Address offset: 0x24 */
MartinJohnson 0:404f5a4f1385 980 __IO uint32_t TXDR; /*!< I2C Transmit data register, Address offset: 0x28 */
MartinJohnson 0:404f5a4f1385 981 }I2C_TypeDef;
MartinJohnson 0:404f5a4f1385 982
MartinJohnson 0:404f5a4f1385 983 /**
MartinJohnson 0:404f5a4f1385 984 * @brief Independent WATCHDOG
MartinJohnson 0:404f5a4f1385 985 */
MartinJohnson 0:404f5a4f1385 986
MartinJohnson 0:404f5a4f1385 987 typedef struct
MartinJohnson 0:404f5a4f1385 988 {
MartinJohnson 0:404f5a4f1385 989 __IO uint32_t KR; /*!< IWDG Key register, Address offset: 0x00 */
MartinJohnson 0:404f5a4f1385 990 __IO uint32_t PR; /*!< IWDG Prescaler register, Address offset: 0x04 */
MartinJohnson 0:404f5a4f1385 991 __IO uint32_t RLR; /*!< IWDG Reload register, Address offset: 0x08 */
MartinJohnson 0:404f5a4f1385 992 __IO uint32_t SR; /*!< IWDG Status register, Address offset: 0x0C */
MartinJohnson 0:404f5a4f1385 993 __IO uint32_t WINR; /*!< IWDG Window register, Address offset: 0x10 */
MartinJohnson 0:404f5a4f1385 994 } IWDG_TypeDef;
MartinJohnson 0:404f5a4f1385 995
MartinJohnson 0:404f5a4f1385 996 /**
MartinJohnson 0:404f5a4f1385 997 * @brief Power Control
MartinJohnson 0:404f5a4f1385 998 */
MartinJohnson 0:404f5a4f1385 999
MartinJohnson 0:404f5a4f1385 1000 typedef struct
MartinJohnson 0:404f5a4f1385 1001 {
MartinJohnson 0:404f5a4f1385 1002 __IO uint32_t CR; /*!< PWR power control register, Address offset: 0x00 */
MartinJohnson 0:404f5a4f1385 1003 __IO uint32_t CSR; /*!< PWR power control/status register, Address offset: 0x04 */
MartinJohnson 0:404f5a4f1385 1004 } PWR_TypeDef;
MartinJohnson 0:404f5a4f1385 1005
MartinJohnson 0:404f5a4f1385 1006 /**
MartinJohnson 0:404f5a4f1385 1007 * @brief Reset and Clock Control
MartinJohnson 0:404f5a4f1385 1008 */
MartinJohnson 0:404f5a4f1385 1009 typedef struct
MartinJohnson 0:404f5a4f1385 1010 {
MartinJohnson 0:404f5a4f1385 1011 __IO uint32_t CR; /*!< RCC clock control register, Address offset: 0x00 */
MartinJohnson 0:404f5a4f1385 1012 __IO uint32_t CFGR; /*!< RCC clock configuration register, Address offset: 0x04 */
MartinJohnson 0:404f5a4f1385 1013 __IO uint32_t CIR; /*!< RCC clock interrupt register, Address offset: 0x08 */
MartinJohnson 0:404f5a4f1385 1014 __IO uint32_t APB2RSTR; /*!< RCC APB2 peripheral reset register, Address offset: 0x0C */
MartinJohnson 0:404f5a4f1385 1015 __IO uint32_t APB1RSTR; /*!< RCC APB1 peripheral reset register, Address offset: 0x10 */
MartinJohnson 0:404f5a4f1385 1016 __IO uint32_t AHBENR; /*!< RCC AHB peripheral clock register, Address offset: 0x14 */
MartinJohnson 0:404f5a4f1385 1017 __IO uint32_t APB2ENR; /*!< RCC APB2 peripheral clock enable register, Address offset: 0x18 */
MartinJohnson 0:404f5a4f1385 1018 __IO uint32_t APB1ENR; /*!< RCC APB1 peripheral clock enable register, Address offset: 0x1C */
MartinJohnson 0:404f5a4f1385 1019 __IO uint32_t BDCR; /*!< RCC Backup domain control register, Address offset: 0x20 */
MartinJohnson 0:404f5a4f1385 1020 __IO uint32_t CSR; /*!< RCC clock control & status register, Address offset: 0x24 */
MartinJohnson 0:404f5a4f1385 1021 __IO uint32_t AHBRSTR; /*!< RCC AHB peripheral reset register, Address offset: 0x28 */
MartinJohnson 0:404f5a4f1385 1022 __IO uint32_t CFGR2; /*!< RCC clock configuration register 2, Address offset: 0x2C */
MartinJohnson 0:404f5a4f1385 1023 __IO uint32_t CFGR3; /*!< RCC clock configuration register 3, Address offset: 0x30 */
MartinJohnson 0:404f5a4f1385 1024 } RCC_TypeDef;
MartinJohnson 0:404f5a4f1385 1025
MartinJohnson 0:404f5a4f1385 1026 /**
MartinJohnson 0:404f5a4f1385 1027 * @brief Real-Time Clock
MartinJohnson 0:404f5a4f1385 1028 */
MartinJohnson 0:404f5a4f1385 1029
MartinJohnson 0:404f5a4f1385 1030 typedef struct
MartinJohnson 0:404f5a4f1385 1031 {
MartinJohnson 0:404f5a4f1385 1032 __IO uint32_t TR; /*!< RTC time register, Address offset: 0x00 */
MartinJohnson 0:404f5a4f1385 1033 __IO uint32_t DR; /*!< RTC date register, Address offset: 0x04 */
MartinJohnson 0:404f5a4f1385 1034 __IO uint32_t CR; /*!< RTC control register, Address offset: 0x08 */
MartinJohnson 0:404f5a4f1385 1035 __IO uint32_t ISR; /*!< RTC initialization and status register, Address offset: 0x0C */
MartinJohnson 0:404f5a4f1385 1036 __IO uint32_t PRER; /*!< RTC prescaler register, Address offset: 0x10 */
MartinJohnson 0:404f5a4f1385 1037 __IO uint32_t WUTR; /*!< RTC wakeup timer register, Address offset: 0x14 */
MartinJohnson 0:404f5a4f1385 1038 uint32_t RESERVED0; /*!< Reserved, 0x18 */
MartinJohnson 0:404f5a4f1385 1039 __IO uint32_t ALRMAR; /*!< RTC alarm A register, Address offset: 0x1C */
MartinJohnson 0:404f5a4f1385 1040 __IO uint32_t ALRMBR; /*!< RTC alarm B register, Address offset: 0x20 */
MartinJohnson 0:404f5a4f1385 1041 __IO uint32_t WPR; /*!< RTC write protection register, Address offset: 0x24 */
MartinJohnson 0:404f5a4f1385 1042 __IO uint32_t SSR; /*!< RTC sub second register, Address offset: 0x28 */
MartinJohnson 0:404f5a4f1385 1043 __IO uint32_t SHIFTR; /*!< RTC shift control register, Address offset: 0x2C */
MartinJohnson 0:404f5a4f1385 1044 __IO uint32_t TSTR; /*!< RTC time stamp time register, Address offset: 0x30 */
MartinJohnson 0:404f5a4f1385 1045 __IO uint32_t TSDR; /*!< RTC time stamp date register, Address offset: 0x34 */
MartinJohnson 0:404f5a4f1385 1046 __IO uint32_t TSSSR; /*!< RTC time-stamp sub second register, Address offset: 0x38 */
MartinJohnson 0:404f5a4f1385 1047 __IO uint32_t CALR; /*!< RTC calibration register, Address offset: 0x3C */
MartinJohnson 0:404f5a4f1385 1048 __IO uint32_t TAFCR; /*!< RTC tamper and alternate function configuration register, Address offset: 0x40 */
MartinJohnson 0:404f5a4f1385 1049 __IO uint32_t ALRMASSR; /*!< RTC alarm A sub second register, Address offset: 0x44 */
MartinJohnson 0:404f5a4f1385 1050 __IO uint32_t ALRMBSSR; /*!< RTC alarm B sub second register, Address offset: 0x48 */
MartinJohnson 0:404f5a4f1385 1051 uint32_t RESERVED7; /*!< Reserved, 0x4C */
MartinJohnson 0:404f5a4f1385 1052 __IO uint32_t BKP0R; /*!< RTC backup register 0, Address offset: 0x50 */
MartinJohnson 0:404f5a4f1385 1053 __IO uint32_t BKP1R; /*!< RTC backup register 1, Address offset: 0x54 */
MartinJohnson 0:404f5a4f1385 1054 __IO uint32_t BKP2R; /*!< RTC backup register 2, Address offset: 0x58 */
MartinJohnson 0:404f5a4f1385 1055 __IO uint32_t BKP3R; /*!< RTC backup register 3, Address offset: 0x5C */
MartinJohnson 0:404f5a4f1385 1056 __IO uint32_t BKP4R; /*!< RTC backup register 4, Address offset: 0x60 */
MartinJohnson 0:404f5a4f1385 1057 __IO uint32_t BKP5R; /*!< RTC backup register 5, Address offset: 0x64 */
MartinJohnson 0:404f5a4f1385 1058 __IO uint32_t BKP6R; /*!< RTC backup register 6, Address offset: 0x68 */
MartinJohnson 0:404f5a4f1385 1059 __IO uint32_t BKP7R; /*!< RTC backup register 7, Address offset: 0x6C */
MartinJohnson 0:404f5a4f1385 1060 __IO uint32_t BKP8R; /*!< RTC backup register 8, Address offset: 0x70 */
MartinJohnson 0:404f5a4f1385 1061 __IO uint32_t BKP9R; /*!< RTC backup register 9, Address offset: 0x74 */
MartinJohnson 0:404f5a4f1385 1062 __IO uint32_t BKP10R; /*!< RTC backup register 10, Address offset: 0x78 */
MartinJohnson 0:404f5a4f1385 1063 __IO uint32_t BKP11R; /*!< RTC backup register 11, Address offset: 0x7C */
MartinJohnson 0:404f5a4f1385 1064 __IO uint32_t BKP12R; /*!< RTC backup register 12, Address offset: 0x80 */
MartinJohnson 0:404f5a4f1385 1065 __IO uint32_t BKP13R; /*!< RTC backup register 13, Address offset: 0x84 */
MartinJohnson 0:404f5a4f1385 1066 __IO uint32_t BKP14R; /*!< RTC backup register 14, Address offset: 0x88 */
MartinJohnson 0:404f5a4f1385 1067 __IO uint32_t BKP15R; /*!< RTC backup register 15, Address offset: 0x8C */
MartinJohnson 0:404f5a4f1385 1068 } RTC_TypeDef;
MartinJohnson 0:404f5a4f1385 1069
MartinJohnson 0:404f5a4f1385 1070
MartinJohnson 0:404f5a4f1385 1071 /**
MartinJohnson 0:404f5a4f1385 1072 * @brief Serial Peripheral Interface
MartinJohnson 0:404f5a4f1385 1073 */
MartinJohnson 0:404f5a4f1385 1074
MartinJohnson 0:404f5a4f1385 1075 typedef struct
MartinJohnson 0:404f5a4f1385 1076 {
MartinJohnson 0:404f5a4f1385 1077 __IO uint16_t CR1; /*!< SPI Control register 1 (not used in I2S mode), Address offset: 0x00 */
MartinJohnson 0:404f5a4f1385 1078 uint16_t RESERVED0; /*!< Reserved, 0x02 */
MartinJohnson 0:404f5a4f1385 1079 __IO uint16_t CR2; /*!< SPI Control register 2, Address offset: 0x04 */
MartinJohnson 0:404f5a4f1385 1080 uint16_t RESERVED1; /*!< Reserved, 0x06 */
MartinJohnson 0:404f5a4f1385 1081 __IO uint16_t SR; /*!< SPI Status register, Address offset: 0x08 */
MartinJohnson 0:404f5a4f1385 1082 uint16_t RESERVED2; /*!< Reserved, 0x0A */
MartinJohnson 0:404f5a4f1385 1083 __IO uint16_t DR; /*!< SPI data register, Address offset: 0x0C */
MartinJohnson 0:404f5a4f1385 1084 uint16_t RESERVED3; /*!< Reserved, 0x0E */
MartinJohnson 0:404f5a4f1385 1085 __IO uint16_t CRCPR; /*!< SPI CRC polynomial register (not used in I2S mode), Address offset: 0x10 */
MartinJohnson 0:404f5a4f1385 1086 uint16_t RESERVED4; /*!< Reserved, 0x12 */
MartinJohnson 0:404f5a4f1385 1087 __IO uint16_t RXCRCR; /*!< SPI Rx CRC register (not used in I2S mode), Address offset: 0x14 */
MartinJohnson 0:404f5a4f1385 1088 uint16_t RESERVED5; /*!< Reserved, 0x16 */
MartinJohnson 0:404f5a4f1385 1089 __IO uint16_t TXCRCR; /*!< SPI Tx CRC register (not used in I2S mode), Address offset: 0x18 */
MartinJohnson 0:404f5a4f1385 1090 uint16_t RESERVED6; /*!< Reserved, 0x1A */
MartinJohnson 0:404f5a4f1385 1091 __IO uint16_t I2SCFGR; /*!< SPI_I2S configuration register, Address offset: 0x1C */
MartinJohnson 0:404f5a4f1385 1092 uint16_t RESERVED7; /*!< Reserved, 0x1E */
MartinJohnson 0:404f5a4f1385 1093 __IO uint16_t I2SPR; /*!< SPI_I2S prescaler register, Address offset: 0x20 */
MartinJohnson 0:404f5a4f1385 1094 uint16_t RESERVED8; /*!< Reserved, 0x22 */
MartinJohnson 0:404f5a4f1385 1095 } SPI_TypeDef;
MartinJohnson 0:404f5a4f1385 1096
MartinJohnson 0:404f5a4f1385 1097 /**
MartinJohnson 0:404f5a4f1385 1098 * @brief TIM
MartinJohnson 0:404f5a4f1385 1099 */
MartinJohnson 0:404f5a4f1385 1100 typedef struct
MartinJohnson 0:404f5a4f1385 1101 {
MartinJohnson 0:404f5a4f1385 1102 __IO uint16_t CR1; /*!< TIM control register 1, Address offset: 0x00 */
MartinJohnson 0:404f5a4f1385 1103 uint16_t RESERVED0; /*!< Reserved, 0x02 */
MartinJohnson 0:404f5a4f1385 1104 __IO uint32_t CR2; /*!< TIM control register 2, Address offset: 0x04 */
MartinJohnson 0:404f5a4f1385 1105 __IO uint32_t SMCR; /*!< TIM slave mode control register, Address offset: 0x08 */
MartinJohnson 0:404f5a4f1385 1106 __IO uint32_t DIER; /*!< TIM DMA/interrupt enable register, Address offset: 0x0C */
MartinJohnson 0:404f5a4f1385 1107 __IO uint32_t SR; /*!< TIM status register, Address offset: 0x10 */
MartinJohnson 0:404f5a4f1385 1108 __IO uint32_t EGR; /*!< TIM event generation register, Address offset: 0x14 */
MartinJohnson 0:404f5a4f1385 1109 __IO uint32_t CCMR1; /*!< TIM capture/compare mode register 1, Address offset: 0x18 */
MartinJohnson 0:404f5a4f1385 1110 __IO uint32_t CCMR2; /*!< TIM capture/compare mode register 2, Address offset: 0x1C */
MartinJohnson 0:404f5a4f1385 1111 __IO uint32_t CCER; /*!< TIM capture/compare enable register, Address offset: 0x20 */
MartinJohnson 0:404f5a4f1385 1112 __IO uint32_t CNT; /*!< TIM counter register, Address offset: 0x24 */
MartinJohnson 0:404f5a4f1385 1113 __IO uint16_t PSC; /*!< TIM prescaler, Address offset: 0x28 */
MartinJohnson 0:404f5a4f1385 1114 uint16_t RESERVED9; /*!< Reserved, 0x2A */
MartinJohnson 0:404f5a4f1385 1115 __IO uint32_t ARR; /*!< TIM auto-reload register, Address offset: 0x2C */
MartinJohnson 0:404f5a4f1385 1116 __IO uint16_t RCR; /*!< TIM repetition counter register, Address offset: 0x30 */
MartinJohnson 0:404f5a4f1385 1117 uint16_t RESERVED10; /*!< Reserved, 0x32 */
MartinJohnson 0:404f5a4f1385 1118 __IO uint32_t CCR1; /*!< TIM capture/compare register 1, Address offset: 0x34 */
MartinJohnson 0:404f5a4f1385 1119 __IO uint32_t CCR2; /*!< TIM capture/compare register 2, Address offset: 0x38 */
MartinJohnson 0:404f5a4f1385 1120 __IO uint32_t CCR3; /*!< TIM capture/compare register 3, Address offset: 0x3C */
MartinJohnson 0:404f5a4f1385 1121 __IO uint32_t CCR4; /*!< TIM capture/compare register 4, Address offset: 0x40 */
MartinJohnson 0:404f5a4f1385 1122 __IO uint32_t BDTR; /*!< TIM break and dead-time register, Address offset: 0x44 */
MartinJohnson 0:404f5a4f1385 1123 __IO uint16_t DCR; /*!< TIM DMA control register, Address offset: 0x48 */
MartinJohnson 0:404f5a4f1385 1124 uint16_t RESERVED12; /*!< Reserved, 0x4A */
MartinJohnson 0:404f5a4f1385 1125 __IO uint16_t DMAR; /*!< TIM DMA address for full transfer, Address offset: 0x4C */
MartinJohnson 0:404f5a4f1385 1126 uint16_t RESERVED13; /*!< Reserved, 0x4E */
MartinJohnson 0:404f5a4f1385 1127 __IO uint16_t OR; /*!< TIM option register, Address offset: 0x50 */
MartinJohnson 0:404f5a4f1385 1128 __IO uint32_t CCMR3; /*!< TIM capture/compare mode register 3, Address offset: 0x54 */
MartinJohnson 0:404f5a4f1385 1129 __IO uint32_t CCR5; /*!< TIM capture/compare register5, Address offset: 0x58 */
MartinJohnson 0:404f5a4f1385 1130 __IO uint32_t CCR6; /*!< TIM capture/compare register 4, Address offset: 0x5C */
MartinJohnson 0:404f5a4f1385 1131 } TIM_TypeDef;
MartinJohnson 0:404f5a4f1385 1132
MartinJohnson 0:404f5a4f1385 1133
MartinJohnson 0:404f5a4f1385 1134 /**
MartinJohnson 0:404f5a4f1385 1135 * @brief Touch Sensing Controller (TSC)
MartinJohnson 0:404f5a4f1385 1136 */
MartinJohnson 0:404f5a4f1385 1137 typedef struct
MartinJohnson 0:404f5a4f1385 1138 {
MartinJohnson 0:404f5a4f1385 1139 __IO uint32_t CR; /*!< TSC control register, Address offset: 0x00 */
MartinJohnson 0:404f5a4f1385 1140 __IO uint32_t IER; /*!< TSC interrupt enable register, Address offset: 0x04 */
MartinJohnson 0:404f5a4f1385 1141 __IO uint32_t ICR; /*!< TSC interrupt clear register, Address offset: 0x08 */
MartinJohnson 0:404f5a4f1385 1142 __IO uint32_t ISR; /*!< TSC interrupt status register, Address offset: 0x0C */
MartinJohnson 0:404f5a4f1385 1143 __IO uint32_t IOHCR; /*!< TSC I/O hysteresis control register, Address offset: 0x10 */
MartinJohnson 0:404f5a4f1385 1144 uint32_t RESERVED1; /*!< Reserved, Address offset: 0x14 */
MartinJohnson 0:404f5a4f1385 1145 __IO uint32_t IOASCR; /*!< TSC I/O analog switch control register, Address offset: 0x18 */
MartinJohnson 0:404f5a4f1385 1146 uint32_t RESERVED2; /*!< Reserved, Address offset: 0x1C */
MartinJohnson 0:404f5a4f1385 1147 __IO uint32_t IOSCR; /*!< TSC I/O sampling control register, Address offset: 0x20 */
MartinJohnson 0:404f5a4f1385 1148 uint32_t RESERVED3; /*!< Reserved, Address offset: 0x24 */
MartinJohnson 0:404f5a4f1385 1149 __IO uint32_t IOCCR; /*!< TSC I/O channel control register, Address offset: 0x28 */
MartinJohnson 0:404f5a4f1385 1150 uint32_t RESERVED4; /*!< Reserved, Address offset: 0x2C */
MartinJohnson 0:404f5a4f1385 1151 __IO uint32_t IOGCSR; /*!< TSC I/O group control status register, Address offset: 0x30 */
MartinJohnson 0:404f5a4f1385 1152 __IO uint32_t IOGXCR[8]; /*!< TSC I/O group x counter register, Address offset: 0x34-50 */
MartinJohnson 0:404f5a4f1385 1153 } TSC_TypeDef;
MartinJohnson 0:404f5a4f1385 1154
MartinJohnson 0:404f5a4f1385 1155 /**
MartinJohnson 0:404f5a4f1385 1156 * @brief Universal Synchronous Asynchronous Receiver Transmitter
MartinJohnson 0:404f5a4f1385 1157 */
MartinJohnson 0:404f5a4f1385 1158
MartinJohnson 0:404f5a4f1385 1159 typedef struct
MartinJohnson 0:404f5a4f1385 1160 {
MartinJohnson 0:404f5a4f1385 1161 __IO uint32_t CR1; /*!< USART Control register 1, Address offset: 0x00 */
MartinJohnson 0:404f5a4f1385 1162 __IO uint32_t CR2; /*!< USART Control register 2, Address offset: 0x04 */
MartinJohnson 0:404f5a4f1385 1163 __IO uint32_t CR3; /*!< USART Control register 3, Address offset: 0x08 */
MartinJohnson 0:404f5a4f1385 1164 __IO uint16_t BRR; /*!< USART Baud rate register, Address offset: 0x0C */
MartinJohnson 0:404f5a4f1385 1165 uint16_t RESERVED1; /*!< Reserved, 0x0E */
MartinJohnson 0:404f5a4f1385 1166 __IO uint16_t GTPR; /*!< USART Guard time and prescaler register, Address offset: 0x10 */
MartinJohnson 0:404f5a4f1385 1167 uint16_t RESERVED2; /*!< Reserved, 0x12 */
MartinJohnson 0:404f5a4f1385 1168 __IO uint32_t RTOR; /*!< USART Receiver Time Out register, Address offset: 0x14 */
MartinJohnson 0:404f5a4f1385 1169 __IO uint16_t RQR; /*!< USART Request register, Address offset: 0x18 */
MartinJohnson 0:404f5a4f1385 1170 uint16_t RESERVED3; /*!< Reserved, 0x1A */
MartinJohnson 0:404f5a4f1385 1171 __IO uint32_t ISR; /*!< USART Interrupt and status register, Address offset: 0x1C */
MartinJohnson 0:404f5a4f1385 1172 __IO uint32_t ICR; /*!< USART Interrupt flag Clear register, Address offset: 0x20 */
MartinJohnson 0:404f5a4f1385 1173 __IO uint16_t RDR; /*!< USART Receive Data register, Address offset: 0x24 */
MartinJohnson 0:404f5a4f1385 1174 uint16_t RESERVED4; /*!< Reserved, 0x26 */
MartinJohnson 0:404f5a4f1385 1175 __IO uint16_t TDR; /*!< USART Transmit Data register, Address offset: 0x28 */
MartinJohnson 0:404f5a4f1385 1176 uint16_t RESERVED5; /*!< Reserved, 0x2A */
MartinJohnson 0:404f5a4f1385 1177 } USART_TypeDef;
MartinJohnson 0:404f5a4f1385 1178
MartinJohnson 0:404f5a4f1385 1179 /**
MartinJohnson 0:404f5a4f1385 1180 * @brief Window WATCHDOG
MartinJohnson 0:404f5a4f1385 1181 */
MartinJohnson 0:404f5a4f1385 1182 typedef struct
MartinJohnson 0:404f5a4f1385 1183 {
MartinJohnson 0:404f5a4f1385 1184 __IO uint32_t CR; /*!< WWDG Control register, Address offset: 0x00 */
MartinJohnson 0:404f5a4f1385 1185 __IO uint32_t CFR; /*!< WWDG Configuration register, Address offset: 0x04 */
MartinJohnson 0:404f5a4f1385 1186 __IO uint32_t SR; /*!< WWDG Status register, Address offset: 0x08 */
MartinJohnson 0:404f5a4f1385 1187 } WWDG_TypeDef;
MartinJohnson 0:404f5a4f1385 1188
MartinJohnson 0:404f5a4f1385 1189
MartinJohnson 0:404f5a4f1385 1190 /** @addtogroup Peripheral_memory_map
MartinJohnson 0:404f5a4f1385 1191 * @{
MartinJohnson 0:404f5a4f1385 1192 */
MartinJohnson 0:404f5a4f1385 1193 #define FLASH_BASE ((uint32_t)0x08000000) /*!< FLASH base address in the alias region */
MartinJohnson 0:404f5a4f1385 1194 #define CCMDATARAM_BASE ((uint32_t)0x10000000) /*!< CCM(core coupled memory) data RAM(16 KB) base address in the alias region */
MartinJohnson 0:404f5a4f1385 1195 #define SRAM_BASE ((uint32_t)0x20000000) /*!< SRAM base address in the alias region */
MartinJohnson 0:404f5a4f1385 1196 #define PERIPH_BASE ((uint32_t)0x40000000) /*!< Peripheral base address in the alias region */
MartinJohnson 0:404f5a4f1385 1197 #define FMC_R_BASE ((uint32_t)0xA0000000) /*!< FMC registers base address */
MartinJohnson 0:404f5a4f1385 1198
MartinJohnson 0:404f5a4f1385 1199 #define CCMDATARAM_BB_BASE ((uint32_t)0x12000000) /*!< CCM(core coupled memory) data RAM base address in the bit-band region */
MartinJohnson 0:404f5a4f1385 1200 #define SRAM_BB_BASE ((uint32_t)0x22000000) /*!< SRAM base address in the bit-band region */
MartinJohnson 0:404f5a4f1385 1201 #define PERIPH_BB_BASE ((uint32_t)0x42000000) /*!< Peripheral base address in the bit-band region */
MartinJohnson 0:404f5a4f1385 1202
MartinJohnson 0:404f5a4f1385 1203 /*!< Peripheral memory map */
MartinJohnson 0:404f5a4f1385 1204 #define APB1PERIPH_BASE PERIPH_BASE
MartinJohnson 0:404f5a4f1385 1205 #define APB2PERIPH_BASE (PERIPH_BASE + 0x00010000)
MartinJohnson 0:404f5a4f1385 1206 #define AHB1PERIPH_BASE (PERIPH_BASE + 0x00020000)
MartinJohnson 0:404f5a4f1385 1207 #define AHB2PERIPH_BASE (PERIPH_BASE + 0x08000000)
MartinJohnson 0:404f5a4f1385 1208 #define AHB3PERIPH_BASE (PERIPH_BASE + 0x10000000)
MartinJohnson 0:404f5a4f1385 1209
MartinJohnson 0:404f5a4f1385 1210 /*!< APB1 peripherals */
MartinJohnson 0:404f5a4f1385 1211 #define TIM2_BASE (APB1PERIPH_BASE + 0x00000000)
MartinJohnson 0:404f5a4f1385 1212 #define TIM3_BASE (APB1PERIPH_BASE + 0x00000400)
MartinJohnson 0:404f5a4f1385 1213 #define TIM4_BASE (APB1PERIPH_BASE + 0x00000800)
MartinJohnson 0:404f5a4f1385 1214 #define TIM6_BASE (APB1PERIPH_BASE + 0x00001000)
MartinJohnson 0:404f5a4f1385 1215 #define TIM7_BASE (APB1PERIPH_BASE + 0x00001400)
MartinJohnson 0:404f5a4f1385 1216 #define RTC_BASE (APB1PERIPH_BASE + 0x00002800)
MartinJohnson 0:404f5a4f1385 1217 #define WWDG_BASE (APB1PERIPH_BASE + 0x00002C00)
MartinJohnson 0:404f5a4f1385 1218 #define IWDG_BASE (APB1PERIPH_BASE + 0x00003000)
MartinJohnson 0:404f5a4f1385 1219 #define I2S2ext_BASE (APB1PERIPH_BASE + 0x00003400)
MartinJohnson 0:404f5a4f1385 1220 #define SPI2_BASE (APB1PERIPH_BASE + 0x00003800)
MartinJohnson 0:404f5a4f1385 1221 #define SPI3_BASE (APB1PERIPH_BASE + 0x00003C00)
MartinJohnson 0:404f5a4f1385 1222 #define I2S3ext_BASE (APB1PERIPH_BASE + 0x00004000)
MartinJohnson 0:404f5a4f1385 1223 #define USART2_BASE (APB1PERIPH_BASE + 0x00004400)
MartinJohnson 0:404f5a4f1385 1224 #define USART3_BASE (APB1PERIPH_BASE + 0x00004800)
MartinJohnson 0:404f5a4f1385 1225 #define UART4_BASE (APB1PERIPH_BASE + 0x00004C00)
MartinJohnson 0:404f5a4f1385 1226 #define UART5_BASE (APB1PERIPH_BASE + 0x00005000)
MartinJohnson 0:404f5a4f1385 1227 #define I2C1_BASE (APB1PERIPH_BASE + 0x00005400)
MartinJohnson 0:404f5a4f1385 1228 #define I2C2_BASE (APB1PERIPH_BASE + 0x00005800)
MartinJohnson 0:404f5a4f1385 1229 #define CAN1_BASE (APB1PERIPH_BASE + 0x00006400)
MartinJohnson 0:404f5a4f1385 1230 #define PWR_BASE (APB1PERIPH_BASE + 0x00007000)
MartinJohnson 0:404f5a4f1385 1231 #define DAC1_BASE (APB1PERIPH_BASE + 0x00007400)
MartinJohnson 0:404f5a4f1385 1232 #define I2C3_BASE (APB1PERIPH_BASE + 0x00007800)
MartinJohnson 0:404f5a4f1385 1233 #define DAC2_BASE (APB1PERIPH_BASE + 0x00009800)
MartinJohnson 0:404f5a4f1385 1234 #define DAC_BASE DAC1_BASE
MartinJohnson 0:404f5a4f1385 1235
MartinJohnson 0:404f5a4f1385 1236 /*!< APB2 peripherals */
MartinJohnson 0:404f5a4f1385 1237 #define SYSCFG_BASE (APB2PERIPH_BASE + 0x00000000)
MartinJohnson 0:404f5a4f1385 1238 #define COMP_BASE (APB2PERIPH_BASE + 0x0000001C)
MartinJohnson 0:404f5a4f1385 1239 #define COMP1_BASE (APB2PERIPH_BASE + 0x0000001C)
MartinJohnson 0:404f5a4f1385 1240 #define COMP2_BASE (APB2PERIPH_BASE + 0x00000020)
MartinJohnson 0:404f5a4f1385 1241 #define COMP3_BASE (APB2PERIPH_BASE + 0x00000024)
MartinJohnson 0:404f5a4f1385 1242 #define COMP4_BASE (APB2PERIPH_BASE + 0x00000028)
MartinJohnson 0:404f5a4f1385 1243 #define COMP5_BASE (APB2PERIPH_BASE + 0x0000002C)
MartinJohnson 0:404f5a4f1385 1244 #define COMP6_BASE (APB2PERIPH_BASE + 0x00000030)
MartinJohnson 0:404f5a4f1385 1245 #define COMP7_BASE (APB2PERIPH_BASE + 0x00000034)
MartinJohnson 0:404f5a4f1385 1246 #define OPAMP_BASE (APB2PERIPH_BASE + 0x00000038)
MartinJohnson 0:404f5a4f1385 1247 #define OPAMP1_BASE (APB2PERIPH_BASE + 0x00000038)
MartinJohnson 0:404f5a4f1385 1248 #define OPAMP2_BASE (APB2PERIPH_BASE + 0x0000003C)
MartinJohnson 0:404f5a4f1385 1249 #define OPAMP3_BASE (APB2PERIPH_BASE + 0x00000040)
MartinJohnson 0:404f5a4f1385 1250 #define OPAMP4_BASE (APB2PERIPH_BASE + 0x00000044)
MartinJohnson 0:404f5a4f1385 1251 #define EXTI_BASE (APB2PERIPH_BASE + 0x00000400)
MartinJohnson 0:404f5a4f1385 1252 #define TIM1_BASE (APB2PERIPH_BASE + 0x00002C00)
MartinJohnson 0:404f5a4f1385 1253 #define SPI1_BASE (APB2PERIPH_BASE + 0x00003000)
MartinJohnson 0:404f5a4f1385 1254 #define TIM8_BASE (APB2PERIPH_BASE + 0x00003400)
MartinJohnson 0:404f5a4f1385 1255 #define USART1_BASE (APB2PERIPH_BASE + 0x00003800)
MartinJohnson 0:404f5a4f1385 1256 #define SPI4_BASE (APB2PERIPH_BASE + 0x00003C00)
MartinJohnson 0:404f5a4f1385 1257 #define TIM15_BASE (APB2PERIPH_BASE + 0x00004000)
MartinJohnson 0:404f5a4f1385 1258 #define TIM16_BASE (APB2PERIPH_BASE + 0x00004400)
MartinJohnson 0:404f5a4f1385 1259 #define TIM17_BASE (APB2PERIPH_BASE + 0x00004800)
MartinJohnson 0:404f5a4f1385 1260 #define TIM20_BASE (APB2PERIPH_BASE + 0x00005000)
MartinJohnson 0:404f5a4f1385 1261 #define HRTIM1_BASE (APB2PERIPH_BASE + 0x00007400)
MartinJohnson 0:404f5a4f1385 1262 #define HRTIM1_TIMA_BASE (HRTIM1_BASE + 0x00000080)
MartinJohnson 0:404f5a4f1385 1263 #define HRTIM1_TIMB_BASE (HRTIM1_BASE + 0x00000100)
MartinJohnson 0:404f5a4f1385 1264 #define HRTIM1_TIMC_BASE (HRTIM1_BASE + 0x00000180)
MartinJohnson 0:404f5a4f1385 1265 #define HRTIM1_TIMD_BASE (HRTIM1_BASE + 0x00000200)
MartinJohnson 0:404f5a4f1385 1266 #define HRTIM1_TIME_BASE (HRTIM1_BASE + 0x00000280)
MartinJohnson 0:404f5a4f1385 1267 #define HRTIM1_COMMON_BASE (HRTIM1_BASE + 0x00000380)
MartinJohnson 0:404f5a4f1385 1268
MartinJohnson 0:404f5a4f1385 1269 /*!< AHB1 peripherals */
MartinJohnson 0:404f5a4f1385 1270 #define DMA1_BASE (AHB1PERIPH_BASE + 0x00000000)
MartinJohnson 0:404f5a4f1385 1271 #define DMA1_Channel1_BASE (AHB1PERIPH_BASE + 0x00000008)
MartinJohnson 0:404f5a4f1385 1272 #define DMA1_Channel2_BASE (AHB1PERIPH_BASE + 0x0000001C)
MartinJohnson 0:404f5a4f1385 1273 #define DMA1_Channel3_BASE (AHB1PERIPH_BASE + 0x00000030)
MartinJohnson 0:404f5a4f1385 1274 #define DMA1_Channel4_BASE (AHB1PERIPH_BASE + 0x00000044)
MartinJohnson 0:404f5a4f1385 1275 #define DMA1_Channel5_BASE (AHB1PERIPH_BASE + 0x00000058)
MartinJohnson 0:404f5a4f1385 1276 #define DMA1_Channel6_BASE (AHB1PERIPH_BASE + 0x0000006C)
MartinJohnson 0:404f5a4f1385 1277 #define DMA1_Channel7_BASE (AHB1PERIPH_BASE + 0x00000080)
MartinJohnson 0:404f5a4f1385 1278 #define DMA2_BASE (AHB1PERIPH_BASE + 0x00000400)
MartinJohnson 0:404f5a4f1385 1279 #define DMA2_Channel1_BASE (AHB1PERIPH_BASE + 0x00000408)
MartinJohnson 0:404f5a4f1385 1280 #define DMA2_Channel2_BASE (AHB1PERIPH_BASE + 0x0000041C)
MartinJohnson 0:404f5a4f1385 1281 #define DMA2_Channel3_BASE (AHB1PERIPH_BASE + 0x00000430)
MartinJohnson 0:404f5a4f1385 1282 #define DMA2_Channel4_BASE (AHB1PERIPH_BASE + 0x00000444)
MartinJohnson 0:404f5a4f1385 1283 #define DMA2_Channel5_BASE (AHB1PERIPH_BASE + 0x00000458)
MartinJohnson 0:404f5a4f1385 1284 #define RCC_BASE (AHB1PERIPH_BASE + 0x00001000)
MartinJohnson 0:404f5a4f1385 1285 #define FLASH_R_BASE (AHB1PERIPH_BASE + 0x00002000) /*!< Flash registers base address */
MartinJohnson 0:404f5a4f1385 1286 #define OB_BASE ((uint32_t)0x1FFFF800) /*!< Flash Option Bytes base address */
MartinJohnson 0:404f5a4f1385 1287 #define CRC_BASE (AHB1PERIPH_BASE + 0x00003000)
MartinJohnson 0:404f5a4f1385 1288 #define TSC_BASE (AHB1PERIPH_BASE + 0x00004000)
MartinJohnson 0:404f5a4f1385 1289
MartinJohnson 0:404f5a4f1385 1290 /*!< AHB2 peripherals */
MartinJohnson 0:404f5a4f1385 1291 #define GPIOA_BASE (AHB2PERIPH_BASE + 0x0000)
MartinJohnson 0:404f5a4f1385 1292 #define GPIOB_BASE (AHB2PERIPH_BASE + 0x0400)
MartinJohnson 0:404f5a4f1385 1293 #define GPIOC_BASE (AHB2PERIPH_BASE + 0x0800)
MartinJohnson 0:404f5a4f1385 1294 #define GPIOD_BASE (AHB2PERIPH_BASE + 0x0C00)
MartinJohnson 0:404f5a4f1385 1295 #define GPIOE_BASE (AHB2PERIPH_BASE + 0x1000)
MartinJohnson 0:404f5a4f1385 1296 #define GPIOF_BASE (AHB2PERIPH_BASE + 0x1400)
MartinJohnson 0:404f5a4f1385 1297 #define GPIOG_BASE (AHB2PERIPH_BASE + 0x00001800)
MartinJohnson 0:404f5a4f1385 1298 #define GPIOH_BASE (AHB2PERIPH_BASE + 0x00001C00)
MartinJohnson 0:404f5a4f1385 1299
MartinJohnson 0:404f5a4f1385 1300 /*!< AHB3 peripherals */
MartinJohnson 0:404f5a4f1385 1301 #define ADC1_BASE (AHB3PERIPH_BASE + 0x0000)
MartinJohnson 0:404f5a4f1385 1302 #define ADC2_BASE (AHB3PERIPH_BASE + 0x0100)
MartinJohnson 0:404f5a4f1385 1303 #define ADC1_2_BASE (AHB3PERIPH_BASE + 0x0300)
MartinJohnson 0:404f5a4f1385 1304 #define ADC3_BASE (AHB3PERIPH_BASE + 0x0400)
MartinJohnson 0:404f5a4f1385 1305 #define ADC4_BASE (AHB3PERIPH_BASE + 0x0500)
MartinJohnson 0:404f5a4f1385 1306 #define ADC3_4_BASE (AHB3PERIPH_BASE + 0x0700)
MartinJohnson 0:404f5a4f1385 1307
MartinJohnson 0:404f5a4f1385 1308 /*!< FMC Banks registers base address */
MartinJohnson 0:404f5a4f1385 1309 #define FMC_Bank1_R_BASE (FMC_R_BASE + 0x0000)
MartinJohnson 0:404f5a4f1385 1310 #define FMC_Bank1E_R_BASE (FMC_R_BASE + 0x0104)
MartinJohnson 0:404f5a4f1385 1311 #define FMC_Bank2_R_BASE (FMC_R_BASE + 0x0060)
MartinJohnson 0:404f5a4f1385 1312 #define FMC_Bank3_R_BASE (FMC_R_BASE + 0x0080)
MartinJohnson 0:404f5a4f1385 1313 #define FMC_Bank4_R_BASE (FMC_R_BASE + 0x00A0)
MartinJohnson 0:404f5a4f1385 1314
MartinJohnson 0:404f5a4f1385 1315 #define DBGMCU_BASE ((uint32_t)0xE0042000) /*!< Debug MCU registers base address */
MartinJohnson 0:404f5a4f1385 1316 /**
MartinJohnson 0:404f5a4f1385 1317 * @}
MartinJohnson 0:404f5a4f1385 1318 */
MartinJohnson 0:404f5a4f1385 1319
MartinJohnson 0:404f5a4f1385 1320 /** @addtogroup Peripheral_declaration
MartinJohnson 0:404f5a4f1385 1321 * @{
MartinJohnson 0:404f5a4f1385 1322 */
MartinJohnson 0:404f5a4f1385 1323 #define TIM2 ((TIM_TypeDef *) TIM2_BASE)
MartinJohnson 0:404f5a4f1385 1324 #define TIM3 ((TIM_TypeDef *) TIM3_BASE)
MartinJohnson 0:404f5a4f1385 1325 #define TIM4 ((TIM_TypeDef *) TIM4_BASE)
MartinJohnson 0:404f5a4f1385 1326 #define TIM6 ((TIM_TypeDef *) TIM6_BASE)
MartinJohnson 0:404f5a4f1385 1327 #define TIM7 ((TIM_TypeDef *) TIM7_BASE)
MartinJohnson 0:404f5a4f1385 1328 #define RTC ((RTC_TypeDef *) RTC_BASE)
MartinJohnson 0:404f5a4f1385 1329 #define WWDG ((WWDG_TypeDef *) WWDG_BASE)
MartinJohnson 0:404f5a4f1385 1330 #define IWDG ((IWDG_TypeDef *) IWDG_BASE)
MartinJohnson 0:404f5a4f1385 1331 #define I2S2ext ((SPI_TypeDef *) I2S2ext_BASE)
MartinJohnson 0:404f5a4f1385 1332 #define SPI2 ((SPI_TypeDef *) SPI2_BASE)
MartinJohnson 0:404f5a4f1385 1333 #define SPI3 ((SPI_TypeDef *) SPI3_BASE)
MartinJohnson 0:404f5a4f1385 1334 #define I2S3ext ((SPI_TypeDef *) I2S3ext_BASE)
MartinJohnson 0:404f5a4f1385 1335 #define USART2 ((USART_TypeDef *) USART2_BASE)
MartinJohnson 0:404f5a4f1385 1336 #define USART3 ((USART_TypeDef *) USART3_BASE)
MartinJohnson 0:404f5a4f1385 1337 #define UART4 ((USART_TypeDef *) UART4_BASE)
MartinJohnson 0:404f5a4f1385 1338 #define UART5 ((USART_TypeDef *) UART5_BASE)
MartinJohnson 0:404f5a4f1385 1339 #define I2C1 ((I2C_TypeDef *) I2C1_BASE)
MartinJohnson 0:404f5a4f1385 1340 #define I2C2 ((I2C_TypeDef *) I2C2_BASE)
MartinJohnson 0:404f5a4f1385 1341 #define I2C3 ((I2C_TypeDef *) I2C3_BASE)
MartinJohnson 0:404f5a4f1385 1342 #define CAN1 ((CAN_TypeDef *) CAN1_BASE)
MartinJohnson 0:404f5a4f1385 1343 #define PWR ((PWR_TypeDef *) PWR_BASE)
MartinJohnson 0:404f5a4f1385 1344 #define DAC1 ((DAC_TypeDef *) DAC1_BASE)
MartinJohnson 0:404f5a4f1385 1345 #define DAC2 ((DAC_TypeDef *) DAC2_BASE)
MartinJohnson 0:404f5a4f1385 1346 #define DAC DAC1
MartinJohnson 0:404f5a4f1385 1347 #define SYSCFG ((SYSCFG_TypeDef *) SYSCFG_BASE)
MartinJohnson 0:404f5a4f1385 1348 #define COMP ((COMP_TypeDef *) COMP_BASE)
MartinJohnson 0:404f5a4f1385 1349 #define COMP1 ((COMP_TypeDef *) COMP1_BASE)
MartinJohnson 0:404f5a4f1385 1350 #define COMP2 ((COMP_TypeDef *) COMP2_BASE)
MartinJohnson 0:404f5a4f1385 1351 #define COMP3 ((COMP_TypeDef *) COMP3_BASE)
MartinJohnson 0:404f5a4f1385 1352 #define COMP4 ((COMP_TypeDef *) COMP4_BASE)
MartinJohnson 0:404f5a4f1385 1353 #define COMP5 ((COMP_TypeDef *) COMP5_BASE)
MartinJohnson 0:404f5a4f1385 1354 #define COMP6 ((COMP_TypeDef *) COMP6_BASE)
MartinJohnson 0:404f5a4f1385 1355 #define COMP7 ((COMP_TypeDef *) COMP7_BASE)
MartinJohnson 0:404f5a4f1385 1356 #define OPAMP ((OPAMP_TypeDef *) OPAMP_BASE)
MartinJohnson 0:404f5a4f1385 1357 #define OPAMP1 ((OPAMP_TypeDef *) OPAMP1_BASE)
MartinJohnson 0:404f5a4f1385 1358 #define OPAMP2 ((OPAMP_TypeDef *) OPAMP2_BASE)
MartinJohnson 0:404f5a4f1385 1359 #define OPAMP3 ((OPAMP_TypeDef *) OPAMP3_BASE)
MartinJohnson 0:404f5a4f1385 1360 #define OPAMP4 ((OPAMP_TypeDef *) OPAMP4_BASE)
MartinJohnson 0:404f5a4f1385 1361 #define EXTI ((EXTI_TypeDef *) EXTI_BASE)
MartinJohnson 0:404f5a4f1385 1362 #define TIM1 ((TIM_TypeDef *) TIM1_BASE)
MartinJohnson 0:404f5a4f1385 1363 #define SPI1 ((SPI_TypeDef *) SPI1_BASE)
MartinJohnson 0:404f5a4f1385 1364 #define TIM8 ((TIM_TypeDef *) TIM8_BASE)
MartinJohnson 0:404f5a4f1385 1365 #define USART1 ((USART_TypeDef *) USART1_BASE)
MartinJohnson 0:404f5a4f1385 1366 #define SPI4 ((SPI_TypeDef *) SPI4_BASE)
MartinJohnson 0:404f5a4f1385 1367 #define TIM15 ((TIM_TypeDef *) TIM15_BASE)
MartinJohnson 0:404f5a4f1385 1368 #define TIM16 ((TIM_TypeDef *) TIM16_BASE)
MartinJohnson 0:404f5a4f1385 1369 #define TIM17 ((TIM_TypeDef *) TIM17_BASE)
MartinJohnson 0:404f5a4f1385 1370 #define TIM20 ((TIM_TypeDef *) TIM20_BASE)
MartinJohnson 0:404f5a4f1385 1371 #define HRTIM1 ((HRTIM_TypeDef *) HRTIM1_BASE)
MartinJohnson 0:404f5a4f1385 1372 #define HRTIM1_TIMA ((HRTIM_TIM_TypeDef *) HRTIM1_TIMA_BASE)
MartinJohnson 0:404f5a4f1385 1373 #define HRTIM1_TIMB ((HRTIM_TIM_TypeDef *) HRTIM1_TIMB_BASE)
MartinJohnson 0:404f5a4f1385 1374 #define HRTIM1_TIMC ((HRTIM_TIM_TypeDef *) HRTIM1_TIMC_BASE)
MartinJohnson 0:404f5a4f1385 1375 #define HRTIM1_TIMD ((HRTIM_TIM_TypeDef *) HRTIM1_TIMD_BASE)
MartinJohnson 0:404f5a4f1385 1376 #define HRTIM1_TIME ((HRTIM_TIM_TypeDef *) HRTIM1_TIME_BASE)
MartinJohnson 0:404f5a4f1385 1377 #define HRTIM1_COMMON ((HRTIM_Common_TypeDef *) HRTIM1_COMMON_BASE)
MartinJohnson 0:404f5a4f1385 1378 #define DBGMCU ((DBGMCU_TypeDef *) DBGMCU_BASE)
MartinJohnson 0:404f5a4f1385 1379 #define DMA1 ((DMA_TypeDef *) DMA1_BASE)
MartinJohnson 0:404f5a4f1385 1380 #define DMA1_Channel1 ((DMA_Channel_TypeDef *) DMA1_Channel1_BASE)
MartinJohnson 0:404f5a4f1385 1381 #define DMA1_Channel2 ((DMA_Channel_TypeDef *) DMA1_Channel2_BASE)
MartinJohnson 0:404f5a4f1385 1382 #define DMA1_Channel3 ((DMA_Channel_TypeDef *) DMA1_Channel3_BASE)
MartinJohnson 0:404f5a4f1385 1383 #define DMA1_Channel4 ((DMA_Channel_TypeDef *) DMA1_Channel4_BASE)
MartinJohnson 0:404f5a4f1385 1384 #define DMA1_Channel5 ((DMA_Channel_TypeDef *) DMA1_Channel5_BASE)
MartinJohnson 0:404f5a4f1385 1385 #define DMA1_Channel6 ((DMA_Channel_TypeDef *) DMA1_Channel6_BASE)
MartinJohnson 0:404f5a4f1385 1386 #define DMA1_Channel7 ((DMA_Channel_TypeDef *) DMA1_Channel7_BASE)
MartinJohnson 0:404f5a4f1385 1387 #define DMA2 ((DMA_TypeDef *) DMA2_BASE)
MartinJohnson 0:404f5a4f1385 1388 #define DMA2_Channel1 ((DMA_Channel_TypeDef *) DMA2_Channel1_BASE)
MartinJohnson 0:404f5a4f1385 1389 #define DMA2_Channel2 ((DMA_Channel_TypeDef *) DMA2_Channel2_BASE)
MartinJohnson 0:404f5a4f1385 1390 #define DMA2_Channel3 ((DMA_Channel_TypeDef *) DMA2_Channel3_BASE)
MartinJohnson 0:404f5a4f1385 1391 #define DMA2_Channel4 ((DMA_Channel_TypeDef *) DMA2_Channel4_BASE)
MartinJohnson 0:404f5a4f1385 1392 #define DMA2_Channel5 ((DMA_Channel_TypeDef *) DMA2_Channel5_BASE)
MartinJohnson 0:404f5a4f1385 1393 #define RCC ((RCC_TypeDef *) RCC_BASE)
MartinJohnson 0:404f5a4f1385 1394 #define FLASH ((FLASH_TypeDef *) FLASH_R_BASE)
MartinJohnson 0:404f5a4f1385 1395 #define OB ((OB_TypeDef *) OB_BASE)
MartinJohnson 0:404f5a4f1385 1396 #define CRC ((CRC_TypeDef *) CRC_BASE)
MartinJohnson 0:404f5a4f1385 1397 #define TSC ((TSC_TypeDef *) TSC_BASE)
MartinJohnson 0:404f5a4f1385 1398 #define GPIOA ((GPIO_TypeDef *) GPIOA_BASE)
MartinJohnson 0:404f5a4f1385 1399 #define GPIOB ((GPIO_TypeDef *) GPIOB_BASE)
MartinJohnson 0:404f5a4f1385 1400 #define GPIOC ((GPIO_TypeDef *) GPIOC_BASE)
MartinJohnson 0:404f5a4f1385 1401 #define GPIOD ((GPIO_TypeDef *) GPIOD_BASE)
MartinJohnson 0:404f5a4f1385 1402 #define GPIOE ((GPIO_TypeDef *) GPIOE_BASE)
MartinJohnson 0:404f5a4f1385 1403 #define GPIOF ((GPIO_TypeDef *) GPIOF_BASE)
MartinJohnson 0:404f5a4f1385 1404 #define GPIOG ((GPIO_TypeDef *) GPIOG_BASE)
MartinJohnson 0:404f5a4f1385 1405 #define GPIOH ((GPIO_TypeDef *) GPIOH_BASE)
MartinJohnson 0:404f5a4f1385 1406 #define ADC1 ((ADC_TypeDef *) ADC1_BASE)
MartinJohnson 0:404f5a4f1385 1407 #define ADC2 ((ADC_TypeDef *) ADC2_BASE)
MartinJohnson 0:404f5a4f1385 1408 #define ADC3 ((ADC_TypeDef *) ADC3_BASE)
MartinJohnson 0:404f5a4f1385 1409 #define ADC4 ((ADC_TypeDef *) ADC4_BASE)
MartinJohnson 0:404f5a4f1385 1410 #define ADC1_2 ((ADC_Common_TypeDef *) ADC1_2_BASE)
MartinJohnson 0:404f5a4f1385 1411 #define ADC3_4 ((ADC_Common_TypeDef *) ADC3_4_BASE)
MartinJohnson 0:404f5a4f1385 1412 #define FMC_Bank1 ((FMC_Bank1_TypeDef *) FMC_Bank1_R_BASE)
MartinJohnson 0:404f5a4f1385 1413 #define FMC_Bank1E ((FMC_Bank1E_TypeDef *) FMC_Bank1E_R_BASE)
MartinJohnson 0:404f5a4f1385 1414 #define FMC_Bank2 ((FMC_Bank2_TypeDef *) FMC_Bank2_R_BASE)
MartinJohnson 0:404f5a4f1385 1415 #define FMC_Bank3 ((FMC_Bank3_TypeDef *) FMC_Bank3_R_BASE)
MartinJohnson 0:404f5a4f1385 1416 #define FMC_Bank4 ((FMC_Bank4_TypeDef *) FMC_Bank4_R_BASE)
MartinJohnson 0:404f5a4f1385 1417 /**
MartinJohnson 0:404f5a4f1385 1418 * @}
MartinJohnson 0:404f5a4f1385 1419 */
MartinJohnson 0:404f5a4f1385 1420
MartinJohnson 0:404f5a4f1385 1421 /** @addtogroup Exported_constants
MartinJohnson 0:404f5a4f1385 1422 * @{
MartinJohnson 0:404f5a4f1385 1423 */
MartinJohnson 0:404f5a4f1385 1424
MartinJohnson 0:404f5a4f1385 1425 /** @addtogroup Peripheral_Registers_Bits_Definition
MartinJohnson 0:404f5a4f1385 1426 * @{
MartinJohnson 0:404f5a4f1385 1427 */
MartinJohnson 0:404f5a4f1385 1428
MartinJohnson 0:404f5a4f1385 1429 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 1430 /* Peripheral Registers_Bits_Definition */
MartinJohnson 0:404f5a4f1385 1431 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 1432 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 1433 /* */
MartinJohnson 0:404f5a4f1385 1434 /* High Resolution Timer (HRTIM) */
MartinJohnson 0:404f5a4f1385 1435 /* */
MartinJohnson 0:404f5a4f1385 1436 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 1437 /******************** Master Timer control register ***************************/
MartinJohnson 0:404f5a4f1385 1438 #define HRTIM_MCR_CK_PSC ((uint32_t)0x00000007) /*!< Prescaler mask */
MartinJohnson 0:404f5a4f1385 1439 #define HRTIM_MCR_CK_PSC_0 ((uint32_t)0x00000001) /*!< Prescaler bit 0 */
MartinJohnson 0:404f5a4f1385 1440 #define HRTIM_MCR_CK_PSC_1 ((uint32_t)0x00000002) /*!< Prescaler bit 1 */
MartinJohnson 0:404f5a4f1385 1441 #define HRTIM_MCR_CK_PSC_2 ((uint32_t)0x00000004) /*!< Prescaler bit 2 */
MartinJohnson 0:404f5a4f1385 1442
MartinJohnson 0:404f5a4f1385 1443 #define HRTIM_MCR_CONT ((uint32_t)0x00000008) /*!< Continuous mode */
MartinJohnson 0:404f5a4f1385 1444 #define HRTIM_MCR_RETRIG ((uint32_t)0x00000010) /*!< Rettrigreable mode */
MartinJohnson 0:404f5a4f1385 1445 #define HRTIM_MCR_HALF ((uint32_t)0x00000020) /*!< Half mode */
MartinJohnson 0:404f5a4f1385 1446
MartinJohnson 0:404f5a4f1385 1447 #define HRTIM_MCR_SYNC_IN ((uint32_t)0x00000300) /*!< Synchronization input master */
MartinJohnson 0:404f5a4f1385 1448 #define HRTIM_MCR_SYNC_IN_0 ((uint32_t)0x00000100) /*!< Synchronization input bit 0 */
MartinJohnson 0:404f5a4f1385 1449 #define HRTIM_MCR_SYNC_IN_1 ((uint32_t)0x00000200) /*!< Synchronization input bit 1 */
MartinJohnson 0:404f5a4f1385 1450 #define HRTIM_MCR_SYNCRSTM ((uint32_t)0x00000400) /*!< Synchronization reset master */
MartinJohnson 0:404f5a4f1385 1451 #define HRTIM_MCR_SYNCSTRTM ((uint32_t)0x00000800) /*!< Synchronization start master */
MartinJohnson 0:404f5a4f1385 1452 #define HRTIM_MCR_SYNC_OUT ((uint32_t)0x00003000) /*!< Synchronization output master */
MartinJohnson 0:404f5a4f1385 1453 #define HRTIM_MCR_SYNC_OUT_0 ((uint32_t)0x00001000) /*!< Synchronization output bit 0 */
MartinJohnson 0:404f5a4f1385 1454 #define HRTIM_MCR_SYNC_OUT_1 ((uint32_t)0x00002000) /*!< Synchronization output bit 1 */
MartinJohnson 0:404f5a4f1385 1455 #define HRTIM_MCR_SYNC_SRC ((uint32_t)0x0000C000) /*!< Synchronization source */
MartinJohnson 0:404f5a4f1385 1456 #define HRTIM_MCR_SYNC_SRC_0 ((uint32_t)0x00004000) /*!< Synchronization source bit 0 */
MartinJohnson 0:404f5a4f1385 1457 #define HRTIM_MCR_SYNC_SRC_1 ((uint32_t)0x00008000) /*!< Synchronization source bit 1 */
MartinJohnson 0:404f5a4f1385 1458
MartinJohnson 0:404f5a4f1385 1459 #define HRTIM_MCR_MCEN ((uint32_t)0x00010000) /*!< Master counter enable */
MartinJohnson 0:404f5a4f1385 1460 #define HRTIM_MCR_TACEN ((uint32_t)0x00020000) /*!< Timer A counter enable */
MartinJohnson 0:404f5a4f1385 1461 #define HRTIM_MCR_TBCEN ((uint32_t)0x00040000) /*!< Timer B counter enable */
MartinJohnson 0:404f5a4f1385 1462 #define HRTIM_MCR_TCCEN ((uint32_t)0x00080000) /*!< Timer C counter enable */
MartinJohnson 0:404f5a4f1385 1463 #define HRTIM_MCR_TDCEN ((uint32_t)0x00100000) /*!< Timer D counter enable */
MartinJohnson 0:404f5a4f1385 1464 #define HRTIM_MCR_TECEN ((uint32_t)0x00200000) /*!< Timer E counter enable */
MartinJohnson 0:404f5a4f1385 1465
MartinJohnson 0:404f5a4f1385 1466 #define HRTIM_MCR_DACSYNC ((uint32_t)0x06000000) /*!< DAC synchronization mask */
MartinJohnson 0:404f5a4f1385 1467 #define HRTIM_MCR_DACSYNC_0 ((uint32_t)0x02000000) /*!< DAC synchronization bit 0 */
MartinJohnson 0:404f5a4f1385 1468 #define HRTIM_MCR_DACSYNC_1 ((uint32_t)0x04000000) /*!< DAC synchronization bit 1 */
MartinJohnson 0:404f5a4f1385 1469
MartinJohnson 0:404f5a4f1385 1470 #define HRTIM_MCR_PREEN ((uint32_t)0x08000000) /*!< Master preload enable */
MartinJohnson 0:404f5a4f1385 1471 #define HRTIM_MCR_MREPU ((uint32_t)0x20000000) /*!< Master repetition update */
MartinJohnson 0:404f5a4f1385 1472
MartinJohnson 0:404f5a4f1385 1473 #define HRTIM_MCR_BRSTDMA ((uint32_t)0xC0000000) /*!< Burst DMA update */
MartinJohnson 0:404f5a4f1385 1474 #define HRTIM_MCR_BRSTDMA_0 ((uint32_t)0x40000000) /*!< Burst DMA update bit 0*/
MartinJohnson 0:404f5a4f1385 1475 #define HRTIM_MCR_BRSTDMA_1 ((uint32_t)0x80000000) /*!< Burst DMA update bit 1 */
MartinJohnson 0:404f5a4f1385 1476
MartinJohnson 0:404f5a4f1385 1477 /******************** Master Timer Interrupt status register ******************/
MartinJohnson 0:404f5a4f1385 1478 #define HRTIM_MISR_MCMP1 ((uint32_t)0x00000001) /*!< Master compare 1 interrupt flag */
MartinJohnson 0:404f5a4f1385 1479 #define HRTIM_MISR_MCMP2 ((uint32_t)0x00000002) /*!< Master compare 2 interrupt flag */
MartinJohnson 0:404f5a4f1385 1480 #define HRTIM_MISR_MCMP3 ((uint32_t)0x00000004) /*!< Master compare 3 interrupt flag */
MartinJohnson 0:404f5a4f1385 1481 #define HRTIM_MISR_MCMP4 ((uint32_t)0x00000008) /*!< Master compare 4 interrupt flag */
MartinJohnson 0:404f5a4f1385 1482 #define HRTIM_MISR_MREP ((uint32_t)0x00000010) /*!< Master Repetition interrupt flag */
MartinJohnson 0:404f5a4f1385 1483 #define HRTIM_MISR_SYNC ((uint32_t)0x00000020) /*!< Synchronization input interrupt flag */
MartinJohnson 0:404f5a4f1385 1484 #define HRTIM_MISR_MUPD ((uint32_t)0x00000040) /*!< Master update interrupt flag */
MartinJohnson 0:404f5a4f1385 1485
MartinJohnson 0:404f5a4f1385 1486 /******************** Master Timer Interrupt clear register *******************/
MartinJohnson 0:404f5a4f1385 1487 #define HRTIM_MICR_MCMP1 ((uint32_t)0x00000001) /*!< Master compare 1 interrupt flag clear */
MartinJohnson 0:404f5a4f1385 1488 #define HRTIM_MICR_MCMP2 ((uint32_t)0x00000002) /*!< Master compare 2 interrupt flag clear */
MartinJohnson 0:404f5a4f1385 1489 #define HRTIM_MICR_MCMP3 ((uint32_t)0x00000004) /*!< Master compare 3 interrupt flag clear */
MartinJohnson 0:404f5a4f1385 1490 #define HRTIM_MICR_MCMP4 ((uint32_t)0x00000008) /*!< Master compare 4 interrupt flag clear */
MartinJohnson 0:404f5a4f1385 1491 #define HRTIM_MICR_MREP ((uint32_t)0x00000010) /*!< Master Repetition interrupt flag clear */
MartinJohnson 0:404f5a4f1385 1492 #define HRTIM_MICR_SYNC ((uint32_t)0x00000020) /*!< Synchronization input interrupt flag clear */
MartinJohnson 0:404f5a4f1385 1493 #define HRTIM_MICR_MUPD ((uint32_t)0x00000040) /*!< Master update interrupt flag clear */
MartinJohnson 0:404f5a4f1385 1494
MartinJohnson 0:404f5a4f1385 1495 /******************** Master Timer DMA/Interrupt enable register **************/
MartinJohnson 0:404f5a4f1385 1496 #define HRTIM_MDIER_MCMP1IE ((uint32_t)0x00000001) /*!< Master compare 1 interrupt enable */
MartinJohnson 0:404f5a4f1385 1497 #define HRTIM_MDIER_MCMP2IE ((uint32_t)0x00000002) /*!< Master compare 2 interrupt enable */
MartinJohnson 0:404f5a4f1385 1498 #define HRTIM_MDIER_MCMP3IE ((uint32_t)0x00000004) /*!< Master compare 3 interrupt enable */
MartinJohnson 0:404f5a4f1385 1499 #define HRTIM_MDIER_MCMP4IE ((uint32_t)0x00000008) /*!< Master compare 4 interrupt enable */
MartinJohnson 0:404f5a4f1385 1500 #define HRTIM_MDIER_MREPIE ((uint32_t)0x00000010) /*!< Master Repetition interrupt enable */
MartinJohnson 0:404f5a4f1385 1501 #define HRTIM_MDIER_SYNCIE ((uint32_t)0x00000020) /*!< Synchronization input interrupt enable */
MartinJohnson 0:404f5a4f1385 1502 #define HRTIM_MDIER_MUPDIE ((uint32_t)0x00000040) /*!< Master update interrupt enable */
MartinJohnson 0:404f5a4f1385 1503
MartinJohnson 0:404f5a4f1385 1504 #define HRTIM_MDIER_MCMP1DE ((uint32_t)0x00010000) /*!< Master compare 1 DMA enable */
MartinJohnson 0:404f5a4f1385 1505 #define HRTIM_MDIER_MCMP2DE ((uint32_t)0x00020000) /*!< Master compare 2 DMA enable */
MartinJohnson 0:404f5a4f1385 1506 #define HRTIM_MDIER_MCMP3DE ((uint32_t)0x00040000) /*!< Master compare 3 DMA enable */
MartinJohnson 0:404f5a4f1385 1507 #define HRTIM_MDIER_MCMP4DE ((uint32_t)0x00080000) /*!< Master compare 4 DMA enable */
MartinJohnson 0:404f5a4f1385 1508 #define HRTIM_MDIER_MREPDE ((uint32_t)0x00100000) /*!< Master Repetition DMA enable */
MartinJohnson 0:404f5a4f1385 1509 #define HRTIM_MDIER_SYNCDE ((uint32_t)0x00200000) /*!< Synchronization input DMA enable */
MartinJohnson 0:404f5a4f1385 1510 #define HRTIM_MDIER_MUPDDE ((uint32_t)0x00400000) /*!< Master update DMA enable */
MartinJohnson 0:404f5a4f1385 1511
MartinJohnson 0:404f5a4f1385 1512 /******************* Bit definition for HRTIM_MCNTR register ****************/
MartinJohnson 0:404f5a4f1385 1513 #define HRTIM_MCNTR_MCNTR ((uint32_t)0xFFFFFFFF) /*!<Counter Value */
MartinJohnson 0:404f5a4f1385 1514
MartinJohnson 0:404f5a4f1385 1515 /******************* Bit definition for HRTIM_MPER register *****************/
MartinJohnson 0:404f5a4f1385 1516 #define HRTIM_MPER_MPER ((uint32_t)0xFFFFFFFF) /*!< Period Value */
MartinJohnson 0:404f5a4f1385 1517
MartinJohnson 0:404f5a4f1385 1518 /******************* Bit definition for HRTIM_MREP register *****************/
MartinJohnson 0:404f5a4f1385 1519 #define HRTIM_MREP_MREP ((uint32_t)0xFFFFFFFF) /*!<Repetition Value */
MartinJohnson 0:404f5a4f1385 1520
MartinJohnson 0:404f5a4f1385 1521 /******************* Bit definition for HRTIM_MCMP1R register *****************/
MartinJohnson 0:404f5a4f1385 1522 #define HRTIM_MCMP1R_MCMP1R ((uint32_t)0xFFFFFFFF) /*!<Compare Value */
MartinJohnson 0:404f5a4f1385 1523
MartinJohnson 0:404f5a4f1385 1524 /******************* Bit definition for HRTIM_MCMP2R register *****************/
MartinJohnson 0:404f5a4f1385 1525 #define HRTIM_MCMP1R_MCMP2R ((uint32_t)0xFFFFFFFF) /*!<Compare Value */
MartinJohnson 0:404f5a4f1385 1526
MartinJohnson 0:404f5a4f1385 1527 /******************* Bit definition for HRTIM_MCMP3R register *****************/
MartinJohnson 0:404f5a4f1385 1528 #define HRTIM_MCMP1R_MCMP3R ((uint32_t)0xFFFFFFFF) /*!<Compare Value */
MartinJohnson 0:404f5a4f1385 1529
MartinJohnson 0:404f5a4f1385 1530 /******************* Bit definition for HRTIM_MCMP4R register *****************/
MartinJohnson 0:404f5a4f1385 1531 #define HRTIM_MCMP1R_MCMP4R ((uint32_t)0xFFFFFFFF) /*!<Compare Value */
MartinJohnson 0:404f5a4f1385 1532
MartinJohnson 0:404f5a4f1385 1533 /******************** Slave control register **********************************/
MartinJohnson 0:404f5a4f1385 1534 #define HRTIM_TIMCR_CK_PSC ((uint32_t)0x00000007) /*!< Slave prescaler mask*/
MartinJohnson 0:404f5a4f1385 1535 #define HRTIM_TIMCR_CK_PSC_0 ((uint32_t)0x00000001) /*!< prescaler bit 0 */
MartinJohnson 0:404f5a4f1385 1536 #define HRTIM_TIMCR_CK_PSC_1 ((uint32_t)0x00000002) /*!< prescaler bit 1 */
MartinJohnson 0:404f5a4f1385 1537 #define HRTIM_TIMCR_CK_PSC_2 ((uint32_t)0x00000004) /*!< prescaler bit 2 */
MartinJohnson 0:404f5a4f1385 1538
MartinJohnson 0:404f5a4f1385 1539 #define HRTIM_TIMCR_CONT ((uint32_t)0x00000008) /*!< Slave continuous mode */
MartinJohnson 0:404f5a4f1385 1540 #define HRTIM_TIMCR_RETRIG ((uint32_t)0x00000010) /*!< Slave Retrigreable mode */
MartinJohnson 0:404f5a4f1385 1541 #define HRTIM_TIMCR_HALF ((uint32_t)0x00000020) /*!< Slave Half mode */
MartinJohnson 0:404f5a4f1385 1542 #define HRTIM_TIMCR_PSHPLL ((uint32_t)0x00000040) /*!< Slave push-pull mode */
MartinJohnson 0:404f5a4f1385 1543
MartinJohnson 0:404f5a4f1385 1544 #define HRTIM_TIMCR_SYNCRST ((uint32_t)0x00000400) /*!< Slave synchronization resets */
MartinJohnson 0:404f5a4f1385 1545 #define HRTIM_TIMCR_SYNCSTRT ((uint32_t)0x00000800) /*!< Slave synchronization starts */
MartinJohnson 0:404f5a4f1385 1546
MartinJohnson 0:404f5a4f1385 1547 #define HRTIM_TIMCR_DELCMP2 ((uint32_t)0x00003000) /*!< Slave delayed comparator 2 mode mask */
MartinJohnson 0:404f5a4f1385 1548 #define HRTIM_TIMCR_DELCMP2_0 ((uint32_t)0x00001000) /*!< Slave delayed comparator 2 bit 0 */
MartinJohnson 0:404f5a4f1385 1549 #define HRTIM_TIMCR_DELCMP2_1 ((uint32_t)0x00002000) /*!< Slave delayed comparator 2 bit 1 */
MartinJohnson 0:404f5a4f1385 1550 #define HRTIM_TIMCR_DELCMP4 ((uint32_t)0x0000C000) /*!< Slave delayed comparator 4 mode mask */
MartinJohnson 0:404f5a4f1385 1551 #define HRTIM_TIMCR_DELCMP4_0 ((uint32_t)0x00004000) /*!< Slave delayed comparator 4 bit 0 */
MartinJohnson 0:404f5a4f1385 1552 #define HRTIM_TIMCR_DELCMP4_1 ((uint32_t)0x00008000) /*!< Slave delayed comparator 4 bit 1 */
MartinJohnson 0:404f5a4f1385 1553
MartinJohnson 0:404f5a4f1385 1554 #define HRTIM_TIMCR_TREPU ((uint32_t)0x00020000) /*!< Slave repetition update */
MartinJohnson 0:404f5a4f1385 1555 #define HRTIM_TIMCR_TRSTU ((uint32_t)0x00040000) /*!< Slave reset update */
MartinJohnson 0:404f5a4f1385 1556 #define HRTIM_TIMCR_TAU ((uint32_t)0x00080000) /*!< Slave Timer A update reserved for TIM A */
MartinJohnson 0:404f5a4f1385 1557 #define HRTIM_TIMCR_TBU ((uint32_t)0x00100000) /*!< Slave Timer B update reserved for TIM B */
MartinJohnson 0:404f5a4f1385 1558 #define HRTIM_TIMCR_TCU ((uint32_t)0x00200000) /*!< Slave Timer C update reserved for TIM C */
MartinJohnson 0:404f5a4f1385 1559 #define HRTIM_TIMCR_TDU ((uint32_t)0x00400000) /*!< Slave Timer D update reserved for TIM D */
MartinJohnson 0:404f5a4f1385 1560 #define HRTIM_TIMCR_TEU ((uint32_t)0x00800000) /*!< Slave Timer E update reserved for TIM E */
MartinJohnson 0:404f5a4f1385 1561 #define HRTIM_TIMCR_MSTU ((uint32_t)0x01000000) /*!< Master Update */
MartinJohnson 0:404f5a4f1385 1562
MartinJohnson 0:404f5a4f1385 1563 #define HRTIM_TIMCR_DACSYNC ((uint32_t)0x06000000) /*!< DAC synchronization mask */
MartinJohnson 0:404f5a4f1385 1564 #define HRTIM_TIMCR_DACSYNC_0 ((uint32_t)0x02000000) /*!< DAC synchronization bit 0 */
MartinJohnson 0:404f5a4f1385 1565 #define HRTIM_TIMCR_DACSYNC_1 ((uint32_t)0x04000000) /*!< DAC synchronization bit 1 */
MartinJohnson 0:404f5a4f1385 1566 #define HRTIM_TIMCR_PREEN ((uint32_t)0x08000000) /*!< Slave preload enable */
MartinJohnson 0:404f5a4f1385 1567
MartinJohnson 0:404f5a4f1385 1568 #define HRTIM_TIMCR_UPDGAT ((uint32_t)0xF0000000) /*!< Slave update gating mask */
MartinJohnson 0:404f5a4f1385 1569 #define HRTIM_TIMCR_UPDGAT_0 ((uint32_t)0x10000000) /*!< Update gating bit 0 */
MartinJohnson 0:404f5a4f1385 1570 #define HRTIM_TIMCR_UPDGAT_1 ((uint32_t)0x20000000) /*!< Update gating bit 1 */
MartinJohnson 0:404f5a4f1385 1571 #define HRTIM_TIMCR_UPDGAT_2 ((uint32_t)0x40000000) /*!< Update gating bit 2 */
MartinJohnson 0:404f5a4f1385 1572 #define HRTIM_TIMCR_UPDGAT_3 ((uint32_t)0x80000000) /*!< Update gating bit 3 */
MartinJohnson 0:404f5a4f1385 1573
MartinJohnson 0:404f5a4f1385 1574 /******************** Slave Interrupt status register **************************/
MartinJohnson 0:404f5a4f1385 1575 #define HRTIM_TIMISR_CMP1 ((uint32_t)0x00000001) /*!< Slave compare 1 interrupt flag */
MartinJohnson 0:404f5a4f1385 1576 #define HRTIM_TIMISR_CMP2 ((uint32_t)0x00000002) /*!< Slave compare 2 interrupt flag */
MartinJohnson 0:404f5a4f1385 1577 #define HRTIM_TIMISR_CMP3 ((uint32_t)0x00000004) /*!< Slave compare 3 interrupt flag */
MartinJohnson 0:404f5a4f1385 1578 #define HRTIM_TIMISR_CMP4 ((uint32_t)0x00000008) /*!< Slave compare 4 interrupt flag */
MartinJohnson 0:404f5a4f1385 1579 #define HRTIM_TIMISR_REP ((uint32_t)0x00000010) /*!< Slave repetition interrupt flag */
MartinJohnson 0:404f5a4f1385 1580 #define HRTIM_TIMISR_UPD ((uint32_t)0x00000040) /*!< Slave update interrupt flag */
MartinJohnson 0:404f5a4f1385 1581 #define HRTIM_TIMISR_CPT1 ((uint32_t)0x00000080) /*!< Slave capture 1 interrupt flag */
MartinJohnson 0:404f5a4f1385 1582 #define HRTIM_TIMISR_CPT2 ((uint32_t)0x00000100) /*!< Slave capture 2 interrupt flag */
MartinJohnson 0:404f5a4f1385 1583 #define HRTIM_TIMISR_SET1 ((uint32_t)0x00000200) /*!< Slave output 1 set interrupt flag */
MartinJohnson 0:404f5a4f1385 1584 #define HRTIM_TIMISR_RST1 ((uint32_t)0x00000400) /*!< Slave output 1 reset interrupt flag */
MartinJohnson 0:404f5a4f1385 1585 #define HRTIM_TIMISR_SET2 ((uint32_t)0x00000800) /*!< Slave output 2 set interrupt flag */
MartinJohnson 0:404f5a4f1385 1586 #define HRTIM_TIMISR_RST2 ((uint32_t)0x00001000) /*!< Slave output 2 reset interrupt flag */
MartinJohnson 0:404f5a4f1385 1587 #define HRTIM_TIMISR_RST ((uint32_t)0x00002000) /*!< Slave reset interrupt flag */
MartinJohnson 0:404f5a4f1385 1588 #define HRTIM_TIMISR_DLYPRT ((uint32_t)0x00004000) /*!< Slave output 1 delay protection interrupt flag */
MartinJohnson 0:404f5a4f1385 1589 #define HRTIM_TIMISR_CPPSTAT ((uint32_t)0x00010000) /*!< Slave current push-pull flag */
MartinJohnson 0:404f5a4f1385 1590 #define HRTIM_TIMISR_IPPSTAT ((uint32_t)0x00020000) /*!< Slave idle push-pull flag */
MartinJohnson 0:404f5a4f1385 1591 #define HRTIM_TIMISR_O1STAT ((uint32_t)0x00040000) /*!< Slave output 1 state flag */
MartinJohnson 0:404f5a4f1385 1592 #define HRTIM_TIMISR_O2STAT ((uint32_t)0x00080000) /*!< Slave output 2 state flag */
MartinJohnson 0:404f5a4f1385 1593 #define HRTIM_TIMISR_O1CPY ((uint32_t)0x00100000) /*!< Slave output 1 copy flag */
MartinJohnson 0:404f5a4f1385 1594 #define HRTIM_TIMISR_O2CPY ((uint32_t)0x00200000) /*!< Slave output 2 copy flag */
MartinJohnson 0:404f5a4f1385 1595
MartinJohnson 0:404f5a4f1385 1596 /******************** Slave Interrupt clear register **************************/
MartinJohnson 0:404f5a4f1385 1597 #define HRTIM_TIMICR_CMP1C ((uint32_t)0x00000001) /*!< Slave compare 1 clear flag */
MartinJohnson 0:404f5a4f1385 1598 #define HRTIM_TIMICR_CMP2C ((uint32_t)0x00000002) /*!< Slave compare 2 clear flag */
MartinJohnson 0:404f5a4f1385 1599 #define HRTIM_TIMICR_CMP3C ((uint32_t)0x00000004) /*!< Slave compare 3 clear flag */
MartinJohnson 0:404f5a4f1385 1600 #define HRTIM_TIMICR_CMP4C ((uint32_t)0x00000008) /*!< Slave compare 4 clear flag */
MartinJohnson 0:404f5a4f1385 1601 #define HRTIM_TIMICR_REPC ((uint32_t)0x00000010) /*!< Slave repetition clear flag */
MartinJohnson 0:404f5a4f1385 1602 #define HRTIM_TIMICR_UPDC ((uint32_t)0x00000040) /*!< Slave update clear flag */
MartinJohnson 0:404f5a4f1385 1603 #define HRTIM_TIMICR_CPT1C ((uint32_t)0x00000080) /*!< Slave capture 1 clear flag */
MartinJohnson 0:404f5a4f1385 1604 #define HRTIM_TIMICR_CPT2C ((uint32_t)0x00000100) /*!< Slave capture 2 clear flag */
MartinJohnson 0:404f5a4f1385 1605 #define HRTIM_TIMICR_SET1C ((uint32_t)0x00000200) /*!< Slave output 1 set clear flag */
MartinJohnson 0:404f5a4f1385 1606 #define HRTIM_TIMICR_RST1C ((uint32_t)0x00000400) /*!< Slave output 1 reset clear flag */
MartinJohnson 0:404f5a4f1385 1607 #define HRTIM_TIMICR_SET2C ((uint32_t)0x00000800) /*!< Slave output 2 set clear flag */
MartinJohnson 0:404f5a4f1385 1608 #define HRTIM_TIMICR_RST2C ((uint32_t)0x00001000) /*!< Slave output 2 reset clear flag */
MartinJohnson 0:404f5a4f1385 1609 #define HRTIM_TIMICR_RSTC ((uint32_t)0x00002000) /*!< Slave reset clear flag */
MartinJohnson 0:404f5a4f1385 1610 #define HRTIM_TIMICR_DLYPRT1C ((uint32_t)0x00004000) /*!< Slave output 1 delay protection clear flag */
MartinJohnson 0:404f5a4f1385 1611 #define HRTIM_TIMICR_DLYPRT2C ((uint32_t)0x00008000) /*!< Slave output 2 delay protection clear flag */
MartinJohnson 0:404f5a4f1385 1612
MartinJohnson 0:404f5a4f1385 1613 /******************** Slave DMA/Interrupt enable register *********************/
MartinJohnson 0:404f5a4f1385 1614 #define HRTIM_TIMDIER_CMP1IE ((uint32_t)0x00000001) /*!< Slave compare 1 interrupt enable */
MartinJohnson 0:404f5a4f1385 1615 #define HRTIM_TIMDIER_CMP2IE ((uint32_t)0x00000002) /*!< Slave compare 2 interrupt enable */
MartinJohnson 0:404f5a4f1385 1616 #define HRTIM_TIMDIER_CMP3IE ((uint32_t)0x00000004) /*!< Slave compare 3 interrupt enable */
MartinJohnson 0:404f5a4f1385 1617 #define HRTIM_TIMDIER_CMP4IE ((uint32_t)0x00000008) /*!< Slave compare 4 interrupt enable */
MartinJohnson 0:404f5a4f1385 1618 #define HRTIM_TIMDIER_REPIE ((uint32_t)0x00000010) /*!< Slave repetition interrupt enable */
MartinJohnson 0:404f5a4f1385 1619 #define HRTIM_TIMDIER_UPDIE ((uint32_t)0x00000040) /*!< Slave update interrupt enable */
MartinJohnson 0:404f5a4f1385 1620 #define HRTIM_TIMDIER_CPT1IE ((uint32_t)0x00000080) /*!< Slave capture 1 interrupt enable */
MartinJohnson 0:404f5a4f1385 1621 #define HRTIM_TIMDIER_CPT2IE ((uint32_t)0x00000100) /*!< Slave capture 2 interrupt enable */
MartinJohnson 0:404f5a4f1385 1622 #define HRTIM_TIMDIER_SET1IE ((uint32_t)0x00000200) /*!< Slave output 1 set interrupt enable */
MartinJohnson 0:404f5a4f1385 1623 #define HRTIM_TIMDIER_RST1IE ((uint32_t)0x00000400) /*!< Slave output 1 reset interrupt enable */
MartinJohnson 0:404f5a4f1385 1624 #define HRTIM_TIMDIER_SET2IE ((uint32_t)0x00000800) /*!< Slave output 2 set interrupt enable */
MartinJohnson 0:404f5a4f1385 1625 #define HRTIM_TIMDIER_RST2IE ((uint32_t)0x00001000) /*!< Slave output 2 reset interrupt enable */
MartinJohnson 0:404f5a4f1385 1626 #define HRTIM_TIMDIER_RSTIE ((uint32_t)0x00002000) /*!< Slave reset interrupt enable */
MartinJohnson 0:404f5a4f1385 1627 #define HRTIM_TIMDIER_DLYPRTIE ((uint32_t)0x00004000) /*!< Slave delay protection interrupt enable */
MartinJohnson 0:404f5a4f1385 1628
MartinJohnson 0:404f5a4f1385 1629 #define HRTIM_TIMDIER_CMP1DE ((uint32_t)0x00010000) /*!< Slave compare 1 request enable */
MartinJohnson 0:404f5a4f1385 1630 #define HRTIM_TIMDIER_CMP2DE ((uint32_t)0x00020000) /*!< Slave compare 2 request enable */
MartinJohnson 0:404f5a4f1385 1631 #define HRTIM_TIMDIER_CMP3DE ((uint32_t)0x00040000) /*!< Slave compare 3 request enable */
MartinJohnson 0:404f5a4f1385 1632 #define HRTIM_TIMDIER_CMP4DE ((uint32_t)0x00080000) /*!< Slave compare 4 request enable */
MartinJohnson 0:404f5a4f1385 1633 #define HRTIM_TIMDIER_REPDE ((uint32_t)0x00100000) /*!< Slave repetition request enable */
MartinJohnson 0:404f5a4f1385 1634 #define HRTIM_TIMDIER_UPDDE ((uint32_t)0x00400000) /*!< Slave update request enable */
MartinJohnson 0:404f5a4f1385 1635 #define HRTIM_TIMDIER_CPT1DE ((uint32_t)0x00800000) /*!< Slave capture 1 request enable */
MartinJohnson 0:404f5a4f1385 1636 #define HRTIM_TIMDIER_CPT2DE ((uint32_t)0x01000000) /*!< Slave capture 2 request enable */
MartinJohnson 0:404f5a4f1385 1637 #define HRTIM_TIMDIER_SET1DE ((uint32_t)0x02000000) /*!< Slave output 1 set request enable */
MartinJohnson 0:404f5a4f1385 1638 #define HRTIM_TIMDIER_RST1DE ((uint32_t)0x04000000) /*!< Slave output 1 reset request enable */
MartinJohnson 0:404f5a4f1385 1639 #define HRTIM_TIMDIER_SET2DE ((uint32_t)0x08000000) /*!< Slave output 2 set request enable */
MartinJohnson 0:404f5a4f1385 1640 #define HRTIM_TIMDIER_RST2DE ((uint32_t)0x10000000) /*!< Slave output 2 reset request enable */
MartinJohnson 0:404f5a4f1385 1641 #define HRTIM_TIMDIER_RSTDE ((uint32_t)0x20000000) /*!< Slave reset request enable */
MartinJohnson 0:404f5a4f1385 1642 #define HRTIM_TIMDIER_DLYPRTDE ((uint32_t)0x40000000) /*!< Slave delay protection request enable */
MartinJohnson 0:404f5a4f1385 1643
MartinJohnson 0:404f5a4f1385 1644 /****************** Bit definition for HRTIM_CNTR register ****************/
MartinJohnson 0:404f5a4f1385 1645 #define HRTIM_CNTR_CNTR ((uint32_t)0xFFFFFFFF) /*!< Counter Value */
MartinJohnson 0:404f5a4f1385 1646
MartinJohnson 0:404f5a4f1385 1647 /******************* Bit definition for HRTIM_PER register *****************/
MartinJohnson 0:404f5a4f1385 1648 #define HRTIM_PER_PER ((uint32_t)0xFFFFFFFF) /*!< Period Value */
MartinJohnson 0:404f5a4f1385 1649
MartinJohnson 0:404f5a4f1385 1650 /******************* Bit definition for HRTIM_REP register *****************/
MartinJohnson 0:404f5a4f1385 1651 #define HRTIM_REP_REP ((uint32_t)0xFFFFFFFF) /*!< Repetition Value */
MartinJohnson 0:404f5a4f1385 1652
MartinJohnson 0:404f5a4f1385 1653 /******************* Bit definition for HRTIM_CMP1R register *****************/
MartinJohnson 0:404f5a4f1385 1654 #define HRTIM_CMP1R_CMP1R ((uint32_t)0xFFFFFFFF) /*!< Compare Value */
MartinJohnson 0:404f5a4f1385 1655
MartinJohnson 0:404f5a4f1385 1656 /******************* Bit definition for HRTIM_CMP1CR register *****************/
MartinJohnson 0:404f5a4f1385 1657 #define HRTIM_CMP1CR_CMP1CR ((uint32_t)0xFFFFFFFF) /*!< Compare Value */
MartinJohnson 0:404f5a4f1385 1658
MartinJohnson 0:404f5a4f1385 1659 /******************* Bit definition for HRTIM_CMP2R register *****************/
MartinJohnson 0:404f5a4f1385 1660 #define HRTIM_CMP2R_CMP2R ((uint32_t)0xFFFFFFFF) /*!< Compare Value */
MartinJohnson 0:404f5a4f1385 1661
MartinJohnson 0:404f5a4f1385 1662 /******************* Bit definition for HRTIM_CMP3R register *****************/
MartinJohnson 0:404f5a4f1385 1663 #define HRTIM_CMP3R_CMP3R ((uint32_t)0xFFFFFFFF) /*!< Compare Value */
MartinJohnson 0:404f5a4f1385 1664
MartinJohnson 0:404f5a4f1385 1665 /******************* Bit definition for HRTIM_CMP4R register *****************/
MartinJohnson 0:404f5a4f1385 1666 #define HRTIM_CMP4R_CMP4R ((uint32_t)0xFFFFFFFF) /*!< Compare Value */
MartinJohnson 0:404f5a4f1385 1667
MartinJohnson 0:404f5a4f1385 1668 /******************* Bit definition for HRTIM_CPT1R register ****************/
MartinJohnson 0:404f5a4f1385 1669 #define HRTIM_CPT1R_CPT1R ((uint32_t)0xFFFFFFFF) /*!< Capture Value */
MartinJohnson 0:404f5a4f1385 1670
MartinJohnson 0:404f5a4f1385 1671 /******************* Bit definition for HRTIM_CPT2R register ****************/
MartinJohnson 0:404f5a4f1385 1672 #define HRTIM_CPT2R_CPT2R ((uint32_t)0xFFFFFFFF) /*!< Capture Value */
MartinJohnson 0:404f5a4f1385 1673
MartinJohnson 0:404f5a4f1385 1674 /******************** Bit definition for Slave Deadtime register **************/
MartinJohnson 0:404f5a4f1385 1675 #define HRTIM_DTR_DTR ((uint32_t)0x000001FF) /*!< Dead time rising value */
MartinJohnson 0:404f5a4f1385 1676 #define HRTIM_DTR_DTR_0 ((uint32_t)0x00000001) /*!< Dead time rising bit 0 */
MartinJohnson 0:404f5a4f1385 1677 #define HRTIM_DTR_DTR_1 ((uint32_t)0x00000002) /*!< Dead time rising bit 1 */
MartinJohnson 0:404f5a4f1385 1678 #define HRTIM_DTR_DTR_2 ((uint32_t)0x00000004) /*!< Dead time rising bit 2 */
MartinJohnson 0:404f5a4f1385 1679 #define HRTIM_DTR_DTR_3 ((uint32_t)0x00000008) /*!< Dead time rising bit 3 */
MartinJohnson 0:404f5a4f1385 1680 #define HRTIM_DTR_DTR_4 ((uint32_t)0x00000010) /*!< Dead time rising bit 4 */
MartinJohnson 0:404f5a4f1385 1681 #define HRTIM_DTR_DTR_5 ((uint32_t)0x00000020) /*!< Dead time rising bit 5 */
MartinJohnson 0:404f5a4f1385 1682 #define HRTIM_DTR_DTR_6 ((uint32_t)0x00000040) /*!< Dead time rising bit 6 */
MartinJohnson 0:404f5a4f1385 1683 #define HRTIM_DTR_DTR_7 ((uint32_t)0x00000080) /*!< Dead time rising bit 7 */
MartinJohnson 0:404f5a4f1385 1684 #define HRTIM_DTR_DTR_8 ((uint32_t)0x00000100) /*!< Dead time rising bit 8 */
MartinJohnson 0:404f5a4f1385 1685 #define HRTIM_DTR_SDTR ((uint32_t)0x00000200) /*!< Sign dead time rising value */
MartinJohnson 0:404f5a4f1385 1686 #define HRTIM_DTR_DTPRSC ((uint32_t)0x00001C00) /*!< Dead time prescaler */
MartinJohnson 0:404f5a4f1385 1687 #define HRTIM_DTR_DTPRSC_0 ((uint32_t)0x00000400) /*!< Dead time prescaler bit 0 */
MartinJohnson 0:404f5a4f1385 1688 #define HRTIM_DTR_DTPRSC_1 ((uint32_t)0x00000800) /*!< Dead time prescaler bit 1 */
MartinJohnson 0:404f5a4f1385 1689 #define HRTIM_DTR_DTPRSC_2 ((uint32_t)0x00001000) /*!< Dead time prescaler bit 2 */
MartinJohnson 0:404f5a4f1385 1690 #define HRTIM_DTR_DTRSLK ((uint32_t)0x00004000) /*!< Dead time rising sign lock */
MartinJohnson 0:404f5a4f1385 1691 #define HRTIM_DTR_DTRLK ((uint32_t)0x00008000) /*!< Dead time rising lock */
MartinJohnson 0:404f5a4f1385 1692 #define HRTIM_DTR_DTF ((uint32_t)0x01FF0000) /*!< Dead time falling value */
MartinJohnson 0:404f5a4f1385 1693 #define HRTIM_DTR_DTF_0 ((uint32_t)0x00010000) /*!< Dead time falling bit 0 */
MartinJohnson 0:404f5a4f1385 1694 #define HRTIM_DTR_DTF_1 ((uint32_t)0x00020000) /*!< Dead time falling bit 1 */
MartinJohnson 0:404f5a4f1385 1695 #define HRTIM_DTR_DTF_2 ((uint32_t)0x00040000) /*!< Dead time falling bit 2 */
MartinJohnson 0:404f5a4f1385 1696 #define HRTIM_DTR_DTF_3 ((uint32_t)0x00080000) /*!< Dead time falling bit 3 */
MartinJohnson 0:404f5a4f1385 1697 #define HRTIM_DTR_DTF_4 ((uint32_t)0x00100000) /*!< Dead time falling bit 4 */
MartinJohnson 0:404f5a4f1385 1698 #define HRTIM_DTR_DTF_5 ((uint32_t)0x00200000) /*!< Dead time falling bit 5 */
MartinJohnson 0:404f5a4f1385 1699 #define HRTIM_DTR_DTF_6 ((uint32_t)0x00400000) /*!< Dead time falling bit 6 */
MartinJohnson 0:404f5a4f1385 1700 #define HRTIM_DTR_DTF_7 ((uint32_t)0x00800000) /*!< Dead time falling bit 7 */
MartinJohnson 0:404f5a4f1385 1701 #define HRTIM_DTR_DTF_8 ((uint32_t)0x01000000) /*!< Dead time falling bit 8 */
MartinJohnson 0:404f5a4f1385 1702 #define HRTIM_DTR_SDTF ((uint32_t)0x02000000) /*!< Sign dead time falling value */
MartinJohnson 0:404f5a4f1385 1703 #define HRTIM_DTR_DTFSLK ((uint32_t)0x40000000) /*!< Dead time falling sign lock */
MartinJohnson 0:404f5a4f1385 1704 #define HRTIM_DTR_DTFLK ((uint32_t)0x80000000) /*!< Dead time falling lock */
MartinJohnson 0:404f5a4f1385 1705
MartinJohnson 0:404f5a4f1385 1706 /**** Bit definition for Slave Output 1 set register **************************/
MartinJohnson 0:404f5a4f1385 1707 #define HRTIM_SET1R_SST ((uint32_t)0x00000001) /*!< software set trigger */
MartinJohnson 0:404f5a4f1385 1708 #define HRTIM_SET1R_RESYNC ((uint32_t)0x00000002) /*!< Timer A resynchronization */
MartinJohnson 0:404f5a4f1385 1709 #define HRTIM_SET1R_PER ((uint32_t)0x00000004) /*!< Timer A period */
MartinJohnson 0:404f5a4f1385 1710 #define HRTIM_SET1R_CMP1 ((uint32_t)0x00000008) /*!< Timer A compare 1 */
MartinJohnson 0:404f5a4f1385 1711 #define HRTIM_SET1R_CMP2 ((uint32_t)0x00000010) /*!< Timer A compare 2 */
MartinJohnson 0:404f5a4f1385 1712 #define HRTIM_SET1R_CMP3 ((uint32_t)0x00000020) /*!< Timer A compare 3 */
MartinJohnson 0:404f5a4f1385 1713 #define HRTIM_SET1R_CMP4 ((uint32_t)0x00000040) /*!< Timer A compare 4 */
MartinJohnson 0:404f5a4f1385 1714
MartinJohnson 0:404f5a4f1385 1715 #define HRTIM_SET1R_MSTPER ((uint32_t)0x00000080) /*!< Master period */
MartinJohnson 0:404f5a4f1385 1716 #define HRTIM_SET1R_MSTCMP1 ((uint32_t)0x00000100) /*!< Master compare 1 */
MartinJohnson 0:404f5a4f1385 1717 #define HRTIM_SET1R_MSTCMP2 ((uint32_t)0x00000200) /*!< Master compare 2 */
MartinJohnson 0:404f5a4f1385 1718 #define HRTIM_SET1R_MSTCMP3 ((uint32_t)0x00000400) /*!< Master compare 3 */
MartinJohnson 0:404f5a4f1385 1719 #define HRTIM_SET1R_MSTCMP4 ((uint32_t)0x00000800) /*!< Master compare 4 */
MartinJohnson 0:404f5a4f1385 1720
MartinJohnson 0:404f5a4f1385 1721 #define HRTIM_SET1R_TIMEVNT1 ((uint32_t)0x00001000) /*!< Timer event 1 */
MartinJohnson 0:404f5a4f1385 1722 #define HRTIM_SET1R_TIMEVNT2 ((uint32_t)0x00002000) /*!< Timer event 2 */
MartinJohnson 0:404f5a4f1385 1723 #define HRTIM_SET1R_TIMEVNT3 ((uint32_t)0x00004000) /*!< Timer event 3 */
MartinJohnson 0:404f5a4f1385 1724 #define HRTIM_SET1R_TIMEVNT4 ((uint32_t)0x00008000) /*!< Timer event 4 */
MartinJohnson 0:404f5a4f1385 1725 #define HRTIM_SET1R_TIMEVNT5 ((uint32_t)0x00010000) /*!< Timer event 5 */
MartinJohnson 0:404f5a4f1385 1726 #define HRTIM_SET1R_TIMEVNT6 ((uint32_t)0x00020000) /*!< Timer event 6 */
MartinJohnson 0:404f5a4f1385 1727 #define HRTIM_SET1R_TIMEVNT7 ((uint32_t)0x00040000) /*!< Timer event 7 */
MartinJohnson 0:404f5a4f1385 1728 #define HRTIM_SET1R_TIMEVNT8 ((uint32_t)0x00080000) /*!< Timer event 8 */
MartinJohnson 0:404f5a4f1385 1729 #define HRTIM_SET1R_TIMEVNT9 ((uint32_t)0x00100000) /*!< Timer event 9 */
MartinJohnson 0:404f5a4f1385 1730
MartinJohnson 0:404f5a4f1385 1731 #define HRTIM_SET1R_EXTVNT1 ((uint32_t)0x00200000) /*!< External event 1 */
MartinJohnson 0:404f5a4f1385 1732 #define HRTIM_SET1R_EXTVNT2 ((uint32_t)0x00400000) /*!< External event 2 */
MartinJohnson 0:404f5a4f1385 1733 #define HRTIM_SET1R_EXTVNT3 ((uint32_t)0x00800000) /*!< External event 3 */
MartinJohnson 0:404f5a4f1385 1734 #define HRTIM_SET1R_EXTVNT4 ((uint32_t)0x01000000) /*!< External event 4 */
MartinJohnson 0:404f5a4f1385 1735 #define HRTIM_SET1R_EXTVNT5 ((uint32_t)0x02000000) /*!< External event 5 */
MartinJohnson 0:404f5a4f1385 1736 #define HRTIM_SET1R_EXTVNT6 ((uint32_t)0x04000000) /*!< External event 6 */
MartinJohnson 0:404f5a4f1385 1737 #define HRTIM_SET1R_EXTVNT7 ((uint32_t)0x08000000) /*!< External event 7 */
MartinJohnson 0:404f5a4f1385 1738 #define HRTIM_SET1R_EXTVNT8 ((uint32_t)0x10000000) /*!< External event 8 */
MartinJohnson 0:404f5a4f1385 1739 #define HRTIM_SET1R_EXTVNT9 ((uint32_t)0x20000000) /*!< External event 9 */
MartinJohnson 0:404f5a4f1385 1740 #define HRTIM_SET1R_EXTVNT10 ((uint32_t)0x40000000) /*!< External event 10 */
MartinJohnson 0:404f5a4f1385 1741
MartinJohnson 0:404f5a4f1385 1742 #define HRTIM_SET1R_UPDATE ((uint32_t)0x80000000) /*!< Register update (transfer preload to active) */
MartinJohnson 0:404f5a4f1385 1743
MartinJohnson 0:404f5a4f1385 1744 /**** Bit definition for Slave Output 1 reset register ************************/
MartinJohnson 0:404f5a4f1385 1745 #define HRTIM_RST1R_SRT ((uint32_t)0x00000001) /*!< software reset trigger */
MartinJohnson 0:404f5a4f1385 1746 #define HRTIM_RST1R_RESYNC ((uint32_t)0x00000002) /*!< Timer A resynchronization */
MartinJohnson 0:404f5a4f1385 1747 #define HRTIM_RST1R_PER ((uint32_t)0x00000004) /*!< Timer A period */
MartinJohnson 0:404f5a4f1385 1748 #define HRTIM_RST1R_CMP1 ((uint32_t)0x00000008) /*!< Timer A compare 1 */
MartinJohnson 0:404f5a4f1385 1749 #define HRTIM_RST1R_CMP2 ((uint32_t)0x00000010) /*!< Timer A compare 2 */
MartinJohnson 0:404f5a4f1385 1750 #define HRTIM_RST1R_CMP3 ((uint32_t)0x00000020) /*!< Timer A compare 3 */
MartinJohnson 0:404f5a4f1385 1751 #define HRTIM_RST1R_CMP4 ((uint32_t)0x00000040) /*!< Timer A compare 4 */
MartinJohnson 0:404f5a4f1385 1752
MartinJohnson 0:404f5a4f1385 1753 #define HRTIM_RST1R_MSTPER ((uint32_t)0x00000080) /*!< Master period */
MartinJohnson 0:404f5a4f1385 1754 #define HRTIM_RST1R_MSTCMP1 ((uint32_t)0x00000100) /*!< Master compare 1 */
MartinJohnson 0:404f5a4f1385 1755 #define HRTIM_RST1R_MSTCMP2 ((uint32_t)0x00000200) /*!< Master compare 2 */
MartinJohnson 0:404f5a4f1385 1756 #define HRTIM_RST1R_MSTCMP3 ((uint32_t)0x00000400) /*!< Master compare 3 */
MartinJohnson 0:404f5a4f1385 1757 #define HRTIM_RST1R_MSTCMP4 ((uint32_t)0x00000800) /*!< Master compare 4 */
MartinJohnson 0:404f5a4f1385 1758
MartinJohnson 0:404f5a4f1385 1759 #define HRTIM_RST1R_TIMEVNT1 ((uint32_t)0x00001000) /*!< Timer event 1 */
MartinJohnson 0:404f5a4f1385 1760 #define HRTIM_RST1R_TIMEVNT2 ((uint32_t)0x00002000) /*!< Timer event 2 */
MartinJohnson 0:404f5a4f1385 1761 #define HRTIM_RST1R_TIMEVNT3 ((uint32_t)0x00004000) /*!< Timer event 3 */
MartinJohnson 0:404f5a4f1385 1762 #define HRTIM_RST1R_TIMEVNT4 ((uint32_t)0x00008000) /*!< Timer event 4 */
MartinJohnson 0:404f5a4f1385 1763 #define HRTIM_RST1R_TIMEVNT5 ((uint32_t)0x00010000) /*!< Timer event 5 */
MartinJohnson 0:404f5a4f1385 1764 #define HRTIM_RST1R_TIMEVNT6 ((uint32_t)0x00020000) /*!< Timer event 6 */
MartinJohnson 0:404f5a4f1385 1765 #define HRTIM_RST1R_TIMEVNT7 ((uint32_t)0x00040000) /*!< Timer event 7 */
MartinJohnson 0:404f5a4f1385 1766 #define HRTIM_RST1R_TIMEVNT8 ((uint32_t)0x00080000) /*!< Timer event 8 */
MartinJohnson 0:404f5a4f1385 1767 #define HRTIM_RST1R_TIMEVNT9 ((uint32_t)0x00100000) /*!< Timer event 9 */
MartinJohnson 0:404f5a4f1385 1768
MartinJohnson 0:404f5a4f1385 1769 #define HRTIM_RST1R_EXTVNT1 ((uint32_t)0x00200000) /*!< External event 1 */
MartinJohnson 0:404f5a4f1385 1770 #define HRTIM_RST1R_EXTVNT2 ((uint32_t)0x00400000) /*!< External event 2 */
MartinJohnson 0:404f5a4f1385 1771 #define HRTIM_RST1R_EXTVNT3 ((uint32_t)0x00800000) /*!< External event 3 */
MartinJohnson 0:404f5a4f1385 1772 #define HRTIM_RST1R_EXTVNT4 ((uint32_t)0x01000000) /*!< External event 4 */
MartinJohnson 0:404f5a4f1385 1773 #define HRTIM_RST1R_EXTVNT5 ((uint32_t)0x02000000) /*!< External event 5 */
MartinJohnson 0:404f5a4f1385 1774 #define HRTIM_RST1R_EXTVNT6 ((uint32_t)0x04000000) /*!< External event 6 */
MartinJohnson 0:404f5a4f1385 1775 #define HRTIM_RST1R_EXTVNT7 ((uint32_t)0x08000000) /*!< External event 7 */
MartinJohnson 0:404f5a4f1385 1776 #define HRTIM_RST1R_EXTVNT8 ((uint32_t)0x10000000) /*!< External event 8 */
MartinJohnson 0:404f5a4f1385 1777 #define HRTIM_RST1R_EXTVNT9 ((uint32_t)0x20000000) /*!< External event 9 */
MartinJohnson 0:404f5a4f1385 1778 #define HRTIM_RST1R_EXTVNT10 ((uint32_t)0x40000000) /*!< External event 10 */
MartinJohnson 0:404f5a4f1385 1779
MartinJohnson 0:404f5a4f1385 1780 #define HRTIM_RST1R_UPDATE ((uint32_t)0x80000000) /*!< Register update (transfer preload to active) */
MartinJohnson 0:404f5a4f1385 1781
MartinJohnson 0:404f5a4f1385 1782
MartinJohnson 0:404f5a4f1385 1783 /**** Bit definition for Slave Output 2 set register **************************/
MartinJohnson 0:404f5a4f1385 1784 #define HRTIM_SET2R_SST ((uint32_t)0x00000001) /*!< software set trigger */
MartinJohnson 0:404f5a4f1385 1785 #define HRTIM_SET2R_RESYNC ((uint32_t)0x00000002) /*!< Timer A resynchronization */
MartinJohnson 0:404f5a4f1385 1786 #define HRTIM_SET2R_PER ((uint32_t)0x00000004) /*!< Timer A period */
MartinJohnson 0:404f5a4f1385 1787 #define HRTIM_SET2R_CMP1 ((uint32_t)0x00000008) /*!< Timer A compare 1 */
MartinJohnson 0:404f5a4f1385 1788 #define HRTIM_SET2R_CMP2 ((uint32_t)0x00000010) /*!< Timer A compare 2 */
MartinJohnson 0:404f5a4f1385 1789 #define HRTIM_SET2R_CMP3 ((uint32_t)0x00000020) /*!< Timer A compare 3 */
MartinJohnson 0:404f5a4f1385 1790 #define HRTIM_SET2R_CMP4 ((uint32_t)0x00000040) /*!< Timer A compare 4 */
MartinJohnson 0:404f5a4f1385 1791
MartinJohnson 0:404f5a4f1385 1792 #define HRTIM_SET2R_MSTPER ((uint32_t)0x00000080) /*!< Master period */
MartinJohnson 0:404f5a4f1385 1793 #define HRTIM_SET2R_MSTCMP1 ((uint32_t)0x00000100) /*!< Master compare 1 */
MartinJohnson 0:404f5a4f1385 1794 #define HRTIM_SET2R_MSTCMP2 ((uint32_t)0x00000200) /*!< Master compare 2 */
MartinJohnson 0:404f5a4f1385 1795 #define HRTIM_SET2R_MSTCMP3 ((uint32_t)0x00000400) /*!< Master compare 3 */
MartinJohnson 0:404f5a4f1385 1796 #define HRTIM_SET2R_MSTCMP4 ((uint32_t)0x00000800) /*!< Master compare 4 */
MartinJohnson 0:404f5a4f1385 1797
MartinJohnson 0:404f5a4f1385 1798 #define HRTIM_SET2R_TIMEVNT1 ((uint32_t)0x00001000) /*!< Timer event 1 */
MartinJohnson 0:404f5a4f1385 1799 #define HRTIM_SET2R_TIMEVNT2 ((uint32_t)0x00002000) /*!< Timer event 2 */
MartinJohnson 0:404f5a4f1385 1800 #define HRTIM_SET2R_TIMEVNT3 ((uint32_t)0x00004000) /*!< Timer event 3 */
MartinJohnson 0:404f5a4f1385 1801 #define HRTIM_SET2R_TIMEVNT4 ((uint32_t)0x00008000) /*!< Timer event 4 */
MartinJohnson 0:404f5a4f1385 1802 #define HRTIM_SET2R_TIMEVNT5 ((uint32_t)0x00010000) /*!< Timer event 5 */
MartinJohnson 0:404f5a4f1385 1803 #define HRTIM_SET2R_TIMEVNT6 ((uint32_t)0x00020000) /*!< Timer event 6 */
MartinJohnson 0:404f5a4f1385 1804 #define HRTIM_SET2R_TIMEVNT7 ((uint32_t)0x00040000) /*!< Timer event 7 */
MartinJohnson 0:404f5a4f1385 1805 #define HRTIM_SET2R_TIMEVNT8 ((uint32_t)0x00080000) /*!< Timer event 8 */
MartinJohnson 0:404f5a4f1385 1806 #define HRTIM_SET2R_TIMEVNT9 ((uint32_t)0x00100000) /*!< Timer event 9 */
MartinJohnson 0:404f5a4f1385 1807
MartinJohnson 0:404f5a4f1385 1808 #define HRTIM_SET2R_EXTVNT1 ((uint32_t)0x00200000) /*!< External event 1 */
MartinJohnson 0:404f5a4f1385 1809 #define HRTIM_SET2R_EXTVNT2 ((uint32_t)0x00400000) /*!< External event 2 */
MartinJohnson 0:404f5a4f1385 1810 #define HRTIM_SET2R_EXTVNT3 ((uint32_t)0x00800000) /*!< External event 3 */
MartinJohnson 0:404f5a4f1385 1811 #define HRTIM_SET2R_EXTVNT4 ((uint32_t)0x01000000) /*!< External event 4 */
MartinJohnson 0:404f5a4f1385 1812 #define HRTIM_SET2R_EXTVNT5 ((uint32_t)0x02000000) /*!< External event 5 */
MartinJohnson 0:404f5a4f1385 1813 #define HRTIM_SET2R_EXTVNT6 ((uint32_t)0x04000000) /*!< External event 6 */
MartinJohnson 0:404f5a4f1385 1814 #define HRTIM_SET2R_EXTVNT7 ((uint32_t)0x08000000) /*!< External event 7 */
MartinJohnson 0:404f5a4f1385 1815 #define HRTIM_SET2R_EXTVNT8 ((uint32_t)0x10000000) /*!< External event 8 */
MartinJohnson 0:404f5a4f1385 1816 #define HRTIM_SET2R_EXTVNT9 ((uint32_t)0x20000000) /*!< External event 9 */
MartinJohnson 0:404f5a4f1385 1817 #define HRTIM_SET2R_EXTVNT10 ((uint32_t)0x40000000) /*!< External event 10 */
MartinJohnson 0:404f5a4f1385 1818
MartinJohnson 0:404f5a4f1385 1819 #define HRTIM_SET2R_UPDATE ((uint32_t)0x80000000) /*!< Register update (transfer preload to active) */
MartinJohnson 0:404f5a4f1385 1820
MartinJohnson 0:404f5a4f1385 1821 /**** Bit definition for Slave Output 2 reset register ************************/
MartinJohnson 0:404f5a4f1385 1822 #define HRTIM_RST2R_SRT ((uint32_t)0x00000001) /*!< software reset trigger */
MartinJohnson 0:404f5a4f1385 1823 #define HRTIM_RST2R_RESYNC ((uint32_t)0x00000002) /*!< Timer A resynchronization */
MartinJohnson 0:404f5a4f1385 1824 #define HRTIM_RST2R_PER ((uint32_t)0x00000004) /*!< Timer A period */
MartinJohnson 0:404f5a4f1385 1825 #define HRTIM_RST2R_CMP1 ((uint32_t)0x00000008) /*!< Timer A compare 1 */
MartinJohnson 0:404f5a4f1385 1826 #define HRTIM_RST2R_CMP2 ((uint32_t)0x00000010) /*!< Timer A compare 2 */
MartinJohnson 0:404f5a4f1385 1827 #define HRTIM_RST2R_CMP3 ((uint32_t)0x00000020) /*!< Timer A compare 3 */
MartinJohnson 0:404f5a4f1385 1828 #define HRTIM_RST2R_CMP4 ((uint32_t)0x00000040) /*!< Timer A compare 4 */
MartinJohnson 0:404f5a4f1385 1829
MartinJohnson 0:404f5a4f1385 1830 #define HRTIM_RST2R_MSTPER ((uint32_t)0x00000080) /*!< Master period */
MartinJohnson 0:404f5a4f1385 1831 #define HRTIM_RST2R_MSTCMP1 ((uint32_t)0x00000100) /*!< Master compare 1 */
MartinJohnson 0:404f5a4f1385 1832 #define HRTIM_RST2R_MSTCMP2 ((uint32_t)0x00000200) /*!< Master compare 2 */
MartinJohnson 0:404f5a4f1385 1833 #define HRTIM_RST2R_MSTCMP3 ((uint32_t)0x00000400) /*!< Master compare 3 */
MartinJohnson 0:404f5a4f1385 1834 #define HRTIM_RST2R_MSTCMP4 ((uint32_t)0x00000800) /*!< Master compare 4 */
MartinJohnson 0:404f5a4f1385 1835
MartinJohnson 0:404f5a4f1385 1836 #define HRTIM_RST2R_TIMEVNT1 ((uint32_t)0x00001000) /*!< Timer event 1 */
MartinJohnson 0:404f5a4f1385 1837 #define HRTIM_RST2R_TIMEVNT2 ((uint32_t)0x00002000) /*!< Timer event 2 */
MartinJohnson 0:404f5a4f1385 1838 #define HRTIM_RST2R_TIMEVNT3 ((uint32_t)0x00004000) /*!< Timer event 3 */
MartinJohnson 0:404f5a4f1385 1839 #define HRTIM_RST2R_TIMEVNT4 ((uint32_t)0x00008000) /*!< Timer event 4 */
MartinJohnson 0:404f5a4f1385 1840 #define HRTIM_RST2R_TIMEVNT5 ((uint32_t)0x00010000) /*!< Timer event 5 */
MartinJohnson 0:404f5a4f1385 1841 #define HRTIM_RST2R_TIMEVNT6 ((uint32_t)0x00020000) /*!< Timer event 6 */
MartinJohnson 0:404f5a4f1385 1842 #define HRTIM_RST2R_TIMEVNT7 ((uint32_t)0x00040000) /*!< Timer event 7 */
MartinJohnson 0:404f5a4f1385 1843 #define HRTIM_RST2R_TIMEVNT8 ((uint32_t)0x00080000) /*!< Timer event 8 */
MartinJohnson 0:404f5a4f1385 1844 #define HRTIM_RST2R_TIMEVNT9 ((uint32_t)0x00100000) /*!< Timer event 9 */
MartinJohnson 0:404f5a4f1385 1845
MartinJohnson 0:404f5a4f1385 1846 #define HRTIM_RST2R_EXTVNT1 ((uint32_t)0x00200000) /*!< External event 1 */
MartinJohnson 0:404f5a4f1385 1847 #define HRTIM_RST2R_EXTVNT2 ((uint32_t)0x00400000) /*!< External event 2 */
MartinJohnson 0:404f5a4f1385 1848 #define HRTIM_RST2R_EXTVNT3 ((uint32_t)0x00800000) /*!< External event 3 */
MartinJohnson 0:404f5a4f1385 1849 #define HRTIM_RST2R_EXTVNT4 ((uint32_t)0x01000000) /*!< External event 4 */
MartinJohnson 0:404f5a4f1385 1850 #define HRTIM_RST2R_EXTVNT5 ((uint32_t)0x02000000) /*!< External event 5 */
MartinJohnson 0:404f5a4f1385 1851 #define HRTIM_RST2R_EXTVNT6 ((uint32_t)0x04000000) /*!< External event 6 */
MartinJohnson 0:404f5a4f1385 1852 #define HRTIM_RST2R_EXTVNT7 ((uint32_t)0x08000000) /*!< External event 7 */
MartinJohnson 0:404f5a4f1385 1853 #define HRTIM_RST2R_EXTVNT8 ((uint32_t)0x10000000) /*!< External event 8 */
MartinJohnson 0:404f5a4f1385 1854 #define HRTIM_RST2R_EXTVNT9 ((uint32_t)0x20000000) /*!< External event 9 */
MartinJohnson 0:404f5a4f1385 1855 #define HRTIM_RST2R_EXTVNT10 ((uint32_t)0x40000000) /*!< External event 10 */
MartinJohnson 0:404f5a4f1385 1856
MartinJohnson 0:404f5a4f1385 1857 #define HRTIM_RST2R_UPDATE ((uint32_t)0x80000000) /*!< Register update (transfer preload to active) */
MartinJohnson 0:404f5a4f1385 1858
MartinJohnson 0:404f5a4f1385 1859 /**** Bit definition for Slave external event filtering register 1 ***********/
MartinJohnson 0:404f5a4f1385 1860 #define HRTIM_EEFR1_EE1LTCH ((uint32_t)0x00000001) /*!< External Event 1 latch */
MartinJohnson 0:404f5a4f1385 1861 #define HRTIM_EEFR1_EE1FLTR ((uint32_t)0x0000001E) /*!< External Event 1 filter mask */
MartinJohnson 0:404f5a4f1385 1862 #define HRTIM_EEFR1_EE1FLTR_0 ((uint32_t)0x00000002) /*!< External Event 1 bit 0 */
MartinJohnson 0:404f5a4f1385 1863 #define HRTIM_EEFR1_EE1FLTR_1 ((uint32_t)0x00000004) /*!< External Event 1 bit 1*/
MartinJohnson 0:404f5a4f1385 1864 #define HRTIM_EEFR1_EE1FLTR_2 ((uint32_t)0x00000008) /*!< External Event 1 bit 2 */
MartinJohnson 0:404f5a4f1385 1865 #define HRTIM_EEFR1_EE1FLTR_3 ((uint32_t)0x00000010) /*!< External Event 1 bit 3 */
MartinJohnson 0:404f5a4f1385 1866
MartinJohnson 0:404f5a4f1385 1867 #define HRTIM_EEFR1_EE2LTCH ((uint32_t)0x00000040) /*!< External Event 2 latch */
MartinJohnson 0:404f5a4f1385 1868 #define HRTIM_EEFR1_EE2FLTR ((uint32_t)0x00000780) /*!< External Event 2 filter mask */
MartinJohnson 0:404f5a4f1385 1869 #define HRTIM_EEFR1_EE2FLTR_0 ((uint32_t)0x00000080) /*!< External Event 2 bit 0 */
MartinJohnson 0:404f5a4f1385 1870 #define HRTIM_EEFR1_EE2FLTR_1 ((uint32_t)0x00000100) /*!< External Event 2 bit 1*/
MartinJohnson 0:404f5a4f1385 1871 #define HRTIM_EEFR1_EE2FLTR_2 ((uint32_t)0x00000200) /*!< External Event 2 bit 2 */
MartinJohnson 0:404f5a4f1385 1872 #define HRTIM_EEFR1_EE2FLTR_3 ((uint32_t)0x00000400) /*!< External Event 2 bit 3 */
MartinJohnson 0:404f5a4f1385 1873
MartinJohnson 0:404f5a4f1385 1874 #define HRTIM_EEFR1_EE3LTCH ((uint32_t)0x00001000) /*!< External Event 3 latch */
MartinJohnson 0:404f5a4f1385 1875 #define HRTIM_EEFR1_EE3FLTR ((uint32_t)0x0001E000) /*!< External Event 3 filter mask */
MartinJohnson 0:404f5a4f1385 1876 #define HRTIM_EEFR1_EE3FLTR_0 ((uint32_t)0x00002000) /*!< External Event 3 bit 0 */
MartinJohnson 0:404f5a4f1385 1877 #define HRTIM_EEFR1_EE3FLTR_1 ((uint32_t)0x00004000) /*!< External Event 3 bit 1*/
MartinJohnson 0:404f5a4f1385 1878 #define HRTIM_EEFR1_EE3FLTR_2 ((uint32_t)0x00008000) /*!< External Event 3 bit 2 */
MartinJohnson 0:404f5a4f1385 1879 #define HRTIM_EEFR1_EE3FLTR_3 ((uint32_t)0x00010000) /*!< External Event 3 bit 3 */
MartinJohnson 0:404f5a4f1385 1880
MartinJohnson 0:404f5a4f1385 1881 #define HRTIM_EEFR1_EE4LTCH ((uint32_t)0x00040000) /*!< External Event 4 latch */
MartinJohnson 0:404f5a4f1385 1882 #define HRTIM_EEFR1_EE4FLTR ((uint32_t)0x00780000) /*!< External Event 4 filter mask */
MartinJohnson 0:404f5a4f1385 1883 #define HRTIM_EEFR1_EE4FLTR_0 ((uint32_t)0x00080000) /*!< External Event 4 bit 0 */
MartinJohnson 0:404f5a4f1385 1884 #define HRTIM_EEFR1_EE4FLTR_1 ((uint32_t)0x00100000) /*!< External Event 4 bit 1*/
MartinJohnson 0:404f5a4f1385 1885 #define HRTIM_EEFR1_EE4FLTR_2 ((uint32_t)0x00200000) /*!< External Event 4 bit 2 */
MartinJohnson 0:404f5a4f1385 1886 #define HRTIM_EEFR1_EE4FLTR_3 ((uint32_t)0x00400000) /*!< External Event 4 bit 3 */
MartinJohnson 0:404f5a4f1385 1887
MartinJohnson 0:404f5a4f1385 1888 #define HRTIM_EEFR1_EE5LTCH ((uint32_t)0x01000000) /*!< External Event 5 latch */
MartinJohnson 0:404f5a4f1385 1889 #define HRTIM_EEFR1_EE5FLTR ((uint32_t)0x1E000000) /*!< External Event 5 filter mask */
MartinJohnson 0:404f5a4f1385 1890 #define HRTIM_EEFR1_EE5FLTR_0 ((uint32_t)0x02000000) /*!< External Event 5 bit 0 */
MartinJohnson 0:404f5a4f1385 1891 #define HRTIM_EEFR1_EE5FLTR_1 ((uint32_t)0x04000000) /*!< External Event 5 bit 1*/
MartinJohnson 0:404f5a4f1385 1892 #define HRTIM_EEFR1_EE5FLTR_2 ((uint32_t)0x08000000) /*!< External Event 5 bit 2 */
MartinJohnson 0:404f5a4f1385 1893 #define HRTIM_EEFR1_EE5FLTR_3 ((uint32_t)0x10000000) /*!< External Event 5 bit 3 */
MartinJohnson 0:404f5a4f1385 1894
MartinJohnson 0:404f5a4f1385 1895 /**** Bit definition for Slave external event filtering register 2 ***********/
MartinJohnson 0:404f5a4f1385 1896 #define HRTIM_EEFR2_EE6LTCH ((uint32_t)0x00000001) /*!< External Event 6 latch */
MartinJohnson 0:404f5a4f1385 1897 #define HRTIM_EEFR2_EE6FLTR ((uint32_t)0x0000001E) /*!< External Event 6 filter mask */
MartinJohnson 0:404f5a4f1385 1898 #define HRTIM_EEFR2_EE6FLTR_0 ((uint32_t)0x00000002) /*!< External Event 6 bit 0 */
MartinJohnson 0:404f5a4f1385 1899 #define HRTIM_EEFR2_EE6FLTR_1 ((uint32_t)0x00000004) /*!< External Event 6 bit 1*/
MartinJohnson 0:404f5a4f1385 1900 #define HRTIM_EEFR2_EE6FLTR_2 ((uint32_t)0x00000008) /*!< External Event 6 bit 2 */
MartinJohnson 0:404f5a4f1385 1901 #define HRTIM_EEFR2_EE6FLTR_3 ((uint32_t)0x00000010) /*!< External Event 6 bit 3 */
MartinJohnson 0:404f5a4f1385 1902
MartinJohnson 0:404f5a4f1385 1903 #define HRTIM_EEFR2_EE7LTCH ((uint32_t)0x00000040) /*!< External Event 7 latch */
MartinJohnson 0:404f5a4f1385 1904 #define HRTIM_EEFR2_EE7FLTR ((uint32_t)0x00000780) /*!< External Event 7 filter mask */
MartinJohnson 0:404f5a4f1385 1905 #define HRTIM_EEFR2_EE7FLTR_0 ((uint32_t)0x00000080) /*!< External Event 7 bit 0 */
MartinJohnson 0:404f5a4f1385 1906 #define HRTIM_EEFR2_EE7FLTR_1 ((uint32_t)0x00000100) /*!< External Event 7 bit 1*/
MartinJohnson 0:404f5a4f1385 1907 #define HRTIM_EEFR2_EE7FLTR_2 ((uint32_t)0x00000200) /*!< External Event 7 bit 2 */
MartinJohnson 0:404f5a4f1385 1908 #define HRTIM_EEFR2_EE7FLTR_3 ((uint32_t)0x00000400) /*!< External Event 7 bit 3 */
MartinJohnson 0:404f5a4f1385 1909
MartinJohnson 0:404f5a4f1385 1910 #define HRTIM_EEFR2_EE8LTCH ((uint32_t)0x00001000) /*!< External Event 8 latch */
MartinJohnson 0:404f5a4f1385 1911 #define HRTIM_EEFR2_EE8FLTR ((uint32_t)0x0001E000) /*!< External Event 8 filter mask */
MartinJohnson 0:404f5a4f1385 1912 #define HRTIM_EEFR2_EE8FLTR_0 ((uint32_t)0x00002000) /*!< External Event 8 bit 0 */
MartinJohnson 0:404f5a4f1385 1913 #define HRTIM_EEFR2_EE8FLTR_1 ((uint32_t)0x00004000) /*!< External Event 8 bit 1*/
MartinJohnson 0:404f5a4f1385 1914 #define HRTIM_EEFR2_EE8FLTR_2 ((uint32_t)0x00008000) /*!< External Event 8 bit 2 */
MartinJohnson 0:404f5a4f1385 1915 #define HRTIM_EEFR2_EE8FLTR_3 ((uint32_t)0x00010000) /*!< External Event 8 bit 3 */
MartinJohnson 0:404f5a4f1385 1916
MartinJohnson 0:404f5a4f1385 1917 #define HRTIM_EEFR2_EE9LTCH ((uint32_t)0x00040000) /*!< External Event 9 latch */
MartinJohnson 0:404f5a4f1385 1918 #define HRTIM_EEFR2_EE9FLTR ((uint32_t)0x00780000) /*!< External Event 9 filter mask */
MartinJohnson 0:404f5a4f1385 1919 #define HRTIM_EEFR2_EE9FLTR_0 ((uint32_t)0x00080000) /*!< External Event 9 bit 0 */
MartinJohnson 0:404f5a4f1385 1920 #define HRTIM_EEFR2_EE9FLTR_1 ((uint32_t)0x00100000) /*!< External Event 9 bit 1*/
MartinJohnson 0:404f5a4f1385 1921 #define HRTIM_EEFR2_EE9FLTR_2 ((uint32_t)0x00200000) /*!< External Event 9 bit 2 */
MartinJohnson 0:404f5a4f1385 1922 #define HRTIM_EEFR2_EE9FLTR_3 ((uint32_t)0x00400000) /*!< External Event 9 bit 3 */
MartinJohnson 0:404f5a4f1385 1923
MartinJohnson 0:404f5a4f1385 1924 #define HRTIM_EEFR2_EE10LTCH ((uint32_t)0x01000000) /*!< External Event 10 latch */
MartinJohnson 0:404f5a4f1385 1925 #define HRTIM_EEFR2_EE10FLTR ((uint32_t)0x1E000000) /*!< External Event 10 filter mask */
MartinJohnson 0:404f5a4f1385 1926 #define HRTIM_EEFR2_EE10FLTR_0 ((uint32_t)0x02000000) /*!< External Event 10 bit 0 */
MartinJohnson 0:404f5a4f1385 1927 #define HRTIM_EEFR2_EE10FLTR_1 ((uint32_t)0x04000000) /*!< External Event 10 bit 1*/
MartinJohnson 0:404f5a4f1385 1928 #define HRTIM_EEFR2_EE10FLTR_2 ((uint32_t)0x08000000) /*!< External Event 10 bit 2 */
MartinJohnson 0:404f5a4f1385 1929 #define HRTIM_EEFR2_EE10FLTR_3 ((uint32_t)0x10000000) /*!< External Event 10 bit 3 */
MartinJohnson 0:404f5a4f1385 1930
MartinJohnson 0:404f5a4f1385 1931 /**** Bit definition for Slave Timer reset register ***************************/
MartinJohnson 0:404f5a4f1385 1932 #define HRTIM_RSTR_UPDATE ((uint32_t)0x00000002) /*!< Timer update */
MartinJohnson 0:404f5a4f1385 1933 #define HRTIM_RSTR_CMP2 ((uint32_t)0x00000004) /*!< Timer compare2 */
MartinJohnson 0:404f5a4f1385 1934 #define HRTIM_RSTR_CMP4 ((uint32_t)0x00000008) /*!< Timer compare4 */
MartinJohnson 0:404f5a4f1385 1935
MartinJohnson 0:404f5a4f1385 1936 #define HRTIM_RSTR_MSTPER ((uint32_t)0x00000010) /*!< Master period */
MartinJohnson 0:404f5a4f1385 1937 #define HRTIM_RSTR_MSTCMP1 ((uint32_t)0x00000020) /*!< Master compare1 */
MartinJohnson 0:404f5a4f1385 1938 #define HRTIM_RSTR_MSTCMP2 ((uint32_t)0x00000040) /*!< Master compare2 */
MartinJohnson 0:404f5a4f1385 1939 #define HRTIM_RSTR_MSTCMP3 ((uint32_t)0x00000080) /*!< Master compare3 */
MartinJohnson 0:404f5a4f1385 1940 #define HRTIM_RSTR_MSTCMP4 ((uint32_t)0x00000100) /*!< Master compare4 */
MartinJohnson 0:404f5a4f1385 1941
MartinJohnson 0:404f5a4f1385 1942 #define HRTIM_RSTR_EXTEVNT1 ((uint32_t)0x00000200) /*!< External event 1 */
MartinJohnson 0:404f5a4f1385 1943 #define HRTIM_RSTR_EXTEVNT2 ((uint32_t)0x00000400) /*!< External event 2 */
MartinJohnson 0:404f5a4f1385 1944 #define HRTIM_RSTR_EXTEVNT3 ((uint32_t)0x00000800) /*!< External event 3 */
MartinJohnson 0:404f5a4f1385 1945 #define HRTIM_RSTR_EXTEVNT4 ((uint32_t)0x00001000) /*!< External event 4 */
MartinJohnson 0:404f5a4f1385 1946 #define HRTIM_RSTR_EXTEVNT5 ((uint32_t)0x00002000) /*!< External event 5 */
MartinJohnson 0:404f5a4f1385 1947 #define HRTIM_RSTR_EXTEVNT6 ((uint32_t)0x00004000) /*!< External event 6 */
MartinJohnson 0:404f5a4f1385 1948 #define HRTIM_RSTR_EXTEVNT7 ((uint32_t)0x00008000) /*!< External event 7 */
MartinJohnson 0:404f5a4f1385 1949 #define HRTIM_RSTR_EXTEVNT8 ((uint32_t)0x00010000) /*!< External event 8 */
MartinJohnson 0:404f5a4f1385 1950 #define HRTIM_RSTR_EXTEVNT9 ((uint32_t)0x00020000) /*!< External event 9 */
MartinJohnson 0:404f5a4f1385 1951 #define HRTIM_RSTR_EXTEVNT10 ((uint32_t)0x00040000) /*!< External event 10 */
MartinJohnson 0:404f5a4f1385 1952
MartinJohnson 0:404f5a4f1385 1953 #define HRTIM_RSTR_TIMBCMP1 ((uint32_t)0x00080000) /*!< Timer B compare 1 */
MartinJohnson 0:404f5a4f1385 1954 #define HRTIM_RSTR_TIMBCMP2 ((uint32_t)0x00100000) /*!< Timer B compare 2 */
MartinJohnson 0:404f5a4f1385 1955 #define HRTIM_RSTR_TIMBCMP4 ((uint32_t)0x00200000) /*!< Timer B compare 4 */
MartinJohnson 0:404f5a4f1385 1956
MartinJohnson 0:404f5a4f1385 1957 #define HRTIM_RSTR_TIMCCMP1 ((uint32_t)0x00400000) /*!< Timer C compare 1 */
MartinJohnson 0:404f5a4f1385 1958 #define HRTIM_RSTR_TIMCCMP2 ((uint32_t)0x00800000) /*!< Timer C compare 2 */
MartinJohnson 0:404f5a4f1385 1959 #define HRTIM_RSTR_TIMCCMP4 ((uint32_t)0x01000000) /*!< Timer C compare 4 */
MartinJohnson 0:404f5a4f1385 1960
MartinJohnson 0:404f5a4f1385 1961 #define HRTIM_RSTR_TIMDCMP1 ((uint32_t)0x02000000) /*!< Timer D compare 1 */
MartinJohnson 0:404f5a4f1385 1962 #define HRTIM_RSTR_TIMDCMP2 ((uint32_t)0x04000000) /*!< Timer D compare 2 */
MartinJohnson 0:404f5a4f1385 1963 #define HRTIM_RSTR_TIMDCMP4 ((uint32_t)0x08000000) /*!< Timer D compare 4 */
MartinJohnson 0:404f5a4f1385 1964
MartinJohnson 0:404f5a4f1385 1965 #define HRTIM_RSTR_TIMECMP1 ((uint32_t)0x10000000) /*!< Timer E compare 1 */
MartinJohnson 0:404f5a4f1385 1966 #define HRTIM_RSTR_TIMECMP2 ((uint32_t)0x20000000) /*!< Timer E compare 2 */
MartinJohnson 0:404f5a4f1385 1967 #define HRTIM_RSTR_TIMECMP4 ((uint32_t)0x40000000) /*!< Timer E compare 4 */
MartinJohnson 0:404f5a4f1385 1968
MartinJohnson 0:404f5a4f1385 1969 /**** Bit definition for Slave Timer Chopper register *************************/
MartinJohnson 0:404f5a4f1385 1970 #define HRTIM_CHPR_CARFRQ ((uint32_t)0x0000000F) /*!< Timer carrier frequency value */
MartinJohnson 0:404f5a4f1385 1971 #define HRTIM_CHPR_CARFRQ_0 ((uint32_t)0x00000001) /*!< Timer carrier frequency value bit 0 */
MartinJohnson 0:404f5a4f1385 1972 #define HRTIM_CHPR_CARFRQ_1 ((uint32_t)0x00000002) /*!< Timer carrier frequency value bit 1 */
MartinJohnson 0:404f5a4f1385 1973 #define HRTIM_CHPR_CARFRQ_2 ((uint32_t)0x00000004) /*!< Timer carrier frequency value bit 2 */
MartinJohnson 0:404f5a4f1385 1974 #define HRTIM_CHPR_CARFRQ_3 ((uint32_t)0x00000008) /*!< Timer carrier frequency value bit 3 */
MartinJohnson 0:404f5a4f1385 1975
MartinJohnson 0:404f5a4f1385 1976 #define HRTIM_CHPR_CARDTY ((uint32_t)0x00000070) /*!< Timer chopper duty cycle value */
MartinJohnson 0:404f5a4f1385 1977 #define HRTIM_CHPR_CARDTY_0 ((uint32_t)0x00000010) /*!< Timer chopper duty cycle value bit 0 */
MartinJohnson 0:404f5a4f1385 1978 #define HRTIM_CHPR_CARDTY_1 ((uint32_t)0x00000020) /*!< Timer chopper duty cycle value bit 1 */
MartinJohnson 0:404f5a4f1385 1979 #define HRTIM_CHPR_CARDTY_2 ((uint32_t)0x00000040) /*!< Timer chopper duty cycle value bit 2 */
MartinJohnson 0:404f5a4f1385 1980
MartinJohnson 0:404f5a4f1385 1981 #define HRTIM_CHPR_STRPW ((uint32_t)0x00000780) /*!< Timer start pulse width value */
MartinJohnson 0:404f5a4f1385 1982 #define HRTIM_CHPR_STRPW_0 ((uint32_t)0x00000080) /*!< Timer start pulse width value bit 0 */
MartinJohnson 0:404f5a4f1385 1983 #define HRTIM_CHPR_STRPW_1 ((uint32_t)0x00000100) /*!< Timer start pulse width value bit 1 */
MartinJohnson 0:404f5a4f1385 1984 #define HRTIM_CHPR_STRPW_2 ((uint32_t)0x00000200) /*!< Timer start pulse width value bit 2 */
MartinJohnson 0:404f5a4f1385 1985 #define HRTIM_CHPR_STRPW_3 ((uint32_t)0x00000400) /*!< Timer start pulse width value bit 3 */
MartinJohnson 0:404f5a4f1385 1986
MartinJohnson 0:404f5a4f1385 1987 /**** Bit definition for Slave Timer Capture 1 control register ***************/
MartinJohnson 0:404f5a4f1385 1988 #define HRTIM_CPT1CR_SWCPT ((uint32_t)0x00000001) /*!< Software capture */
MartinJohnson 0:404f5a4f1385 1989 #define HRTIM_CPT1CR_UPDCPT ((uint32_t)0x00000002) /*!< Update capture */
MartinJohnson 0:404f5a4f1385 1990 #define HRTIM_CPT1CR_EXEV1CPT ((uint32_t)0x00000004) /*!< External event 1 capture */
MartinJohnson 0:404f5a4f1385 1991 #define HRTIM_CPT1CR_EXEV2CPT ((uint32_t)0x00000008) /*!< External event 2 capture */
MartinJohnson 0:404f5a4f1385 1992 #define HRTIM_CPT1CR_EXEV3CPT ((uint32_t)0x00000010) /*!< External event 3 capture */
MartinJohnson 0:404f5a4f1385 1993 #define HRTIM_CPT1CR_EXEV4CPT ((uint32_t)0x00000020) /*!< External event 4 capture */
MartinJohnson 0:404f5a4f1385 1994 #define HRTIM_CPT1CR_EXEV5CPT ((uint32_t)0x00000040) /*!< External event 5 capture */
MartinJohnson 0:404f5a4f1385 1995 #define HRTIM_CPT1CR_EXEV6CPT ((uint32_t)0x00000080) /*!< External event 6 capture */
MartinJohnson 0:404f5a4f1385 1996 #define HRTIM_CPT1CR_EXEV7CPT ((uint32_t)0x00000100) /*!< External event 7 capture */
MartinJohnson 0:404f5a4f1385 1997 #define HRTIM_CPT1CR_EXEV8CPT ((uint32_t)0x00000200) /*!< External event 8 capture */
MartinJohnson 0:404f5a4f1385 1998 #define HRTIM_CPT1CR_EXEV9CPT ((uint32_t)0x00000400) /*!< External event 9 capture */
MartinJohnson 0:404f5a4f1385 1999 #define HRTIM_CPT1CR_EXEV10CPT ((uint32_t)0x00000800) /*!< External event 10 capture */
MartinJohnson 0:404f5a4f1385 2000
MartinJohnson 0:404f5a4f1385 2001 #define HRTIM_CPT1CR_TA1SET ((uint32_t)0x00001000) /*!< Timer A output 1 set */
MartinJohnson 0:404f5a4f1385 2002 #define HRTIM_CPT1CR_TA1RST ((uint32_t)0x00002000) /*!< Timer A output 1 reset */
MartinJohnson 0:404f5a4f1385 2003 #define HRTIM_CPT1CR_TA1CMP1 ((uint32_t)0x00004000) /*!< Timer A compare 1 */
MartinJohnson 0:404f5a4f1385 2004 #define HRTIM_CPT1CR_TA1CMP2 ((uint32_t)0x00008000) /*!< Timer A compare 2 */
MartinJohnson 0:404f5a4f1385 2005
MartinJohnson 0:404f5a4f1385 2006 #define HRTIM_CPT1CR_TB1SET ((uint32_t)0x00010000) /*!< Timer B output 1 set */
MartinJohnson 0:404f5a4f1385 2007 #define HRTIM_CPT1CR_TB1RST ((uint32_t)0x00020000) /*!< Timer B output 1 reset */
MartinJohnson 0:404f5a4f1385 2008 #define HRTIM_CPT1CR_TB1CMP1 ((uint32_t)0x00040000) /*!< Timer B compare 1 */
MartinJohnson 0:404f5a4f1385 2009 #define HRTIM_CPT1CR_TB1CMP2 ((uint32_t)0x00080000) /*!< Timer B compare 2 */
MartinJohnson 0:404f5a4f1385 2010
MartinJohnson 0:404f5a4f1385 2011 #define HRTIM_CPT1CR_TC1SET ((uint32_t)0x00100000) /*!< Timer C output 1 set */
MartinJohnson 0:404f5a4f1385 2012 #define HRTIM_CPT1CR_TC1RST ((uint32_t)0x00200000) /*!< Timer C output 1 reset */
MartinJohnson 0:404f5a4f1385 2013 #define HRTIM_CPT1CR_TC1CMP1 ((uint32_t)0x00400000) /*!< Timer C compare 1 */
MartinJohnson 0:404f5a4f1385 2014 #define HRTIM_CPT1CR_TC1CMP2 ((uint32_t)0x00800000) /*!< Timer C compare 2 */
MartinJohnson 0:404f5a4f1385 2015
MartinJohnson 0:404f5a4f1385 2016 #define HRTIM_CPT1CR_TD1SET ((uint32_t)0x01000000) /*!< Timer D output 1 set */
MartinJohnson 0:404f5a4f1385 2017 #define HRTIM_CPT1CR_TD1RST ((uint32_t)0x02000000) /*!< Timer D output 1 reset */
MartinJohnson 0:404f5a4f1385 2018 #define HRTIM_CPT1CR_TD1CMP1 ((uint32_t)0x04000000) /*!< Timer D compare 1 */
MartinJohnson 0:404f5a4f1385 2019 #define HRTIM_CPT1CR_TD1CMP2 ((uint32_t)0x08000000) /*!< Timer D compare 2 */
MartinJohnson 0:404f5a4f1385 2020
MartinJohnson 0:404f5a4f1385 2021 #define HRTIM_CPT1CR_TE1SET ((uint32_t)0x10000000) /*!< Timer E output 1 set */
MartinJohnson 0:404f5a4f1385 2022 #define HRTIM_CPT1CR_TE1RST ((uint32_t)0x20000000) /*!< Timer E output 1 reset */
MartinJohnson 0:404f5a4f1385 2023 #define HRTIM_CPT1CR_TE1CMP1 ((uint32_t)0x40000000) /*!< Timer E compare 1 */
MartinJohnson 0:404f5a4f1385 2024 #define HRTIM_CPT1CR_TE1CMP2 ((uint32_t)0x80000000) /*!< Timer E compare 2 */
MartinJohnson 0:404f5a4f1385 2025
MartinJohnson 0:404f5a4f1385 2026 /**** Bit definition for Slave Timer Capture 2 control register ***************/
MartinJohnson 0:404f5a4f1385 2027 #define HRTIM_CPT2CR_SWCPT ((uint32_t)0x00000001) /*!< Software capture */
MartinJohnson 0:404f5a4f1385 2028 #define HRTIM_CPT2CR_UPDCPT ((uint32_t)0x00000002) /*!< Update capture */
MartinJohnson 0:404f5a4f1385 2029 #define HRTIM_CPT2CR_EXEV1CPT ((uint32_t)0x00000004) /*!< External event 1 capture */
MartinJohnson 0:404f5a4f1385 2030 #define HRTIM_CPT2CR_EXEV2CPT ((uint32_t)0x00000008) /*!< External event 2 capture */
MartinJohnson 0:404f5a4f1385 2031 #define HRTIM_CPT2CR_EXEV3CPT ((uint32_t)0x00000010) /*!< External event 3 capture */
MartinJohnson 0:404f5a4f1385 2032 #define HRTIM_CPT2CR_EXEV4CPT ((uint32_t)0x00000020) /*!< External event 4 capture */
MartinJohnson 0:404f5a4f1385 2033 #define HRTIM_CPT2CR_EXEV5CPT ((uint32_t)0x00000040) /*!< External event 5 capture */
MartinJohnson 0:404f5a4f1385 2034 #define HRTIM_CPT2CR_EXEV6CPT ((uint32_t)0x00000080) /*!< External event 6 capture */
MartinJohnson 0:404f5a4f1385 2035 #define HRTIM_CPT2CR_EXEV7CPT ((uint32_t)0x00000100) /*!< External event 7 capture */
MartinJohnson 0:404f5a4f1385 2036 #define HRTIM_CPT2CR_EXEV8CPT ((uint32_t)0x00000200) /*!< External event 8 capture */
MartinJohnson 0:404f5a4f1385 2037 #define HRTIM_CPT2CR_EXEV9CPT ((uint32_t)0x00000400) /*!< External event 9 capture */
MartinJohnson 0:404f5a4f1385 2038 #define HRTIM_CPT2CR_EXEV10CPT ((uint32_t)0x00000800) /*!< External event 10 capture */
MartinJohnson 0:404f5a4f1385 2039
MartinJohnson 0:404f5a4f1385 2040 #define HRTIM_CPT2CR_TA1SET ((uint32_t)0x00001000) /*!< Timer A output 1 set */
MartinJohnson 0:404f5a4f1385 2041 #define HRTIM_CPT2CR_TA1RST ((uint32_t)0x00002000) /*!< Timer A output 1 reset */
MartinJohnson 0:404f5a4f1385 2042 #define HRTIM_CPT2CR_TA1CMP1 ((uint32_t)0x00004000) /*!< Timer A compare 1 */
MartinJohnson 0:404f5a4f1385 2043 #define HRTIM_CPT2CR_TA1CMP2 ((uint32_t)0x00008000) /*!< Timer A compare 2 */
MartinJohnson 0:404f5a4f1385 2044
MartinJohnson 0:404f5a4f1385 2045 #define HRTIM_CPT2CR_TB1SET ((uint32_t)0x00010000) /*!< Timer B output 1 set */
MartinJohnson 0:404f5a4f1385 2046 #define HRTIM_CPT2CR_TB1RST ((uint32_t)0x00020000) /*!< Timer B output 1 reset */
MartinJohnson 0:404f5a4f1385 2047 #define HRTIM_CPT2CR_TB1CMP1 ((uint32_t)0x00040000) /*!< Timer B compare 1 */
MartinJohnson 0:404f5a4f1385 2048 #define HRTIM_CPT2CR_TB1CMP2 ((uint32_t)0x00080000) /*!< Timer B compare 2 */
MartinJohnson 0:404f5a4f1385 2049
MartinJohnson 0:404f5a4f1385 2050 #define HRTIM_CPT2CR_TC1SET ((uint32_t)0x00100000) /*!< Timer C output 1 set */
MartinJohnson 0:404f5a4f1385 2051 #define HRTIM_CPT2CR_TC1RST ((uint32_t)0x00200000) /*!< Timer C output 1 reset */
MartinJohnson 0:404f5a4f1385 2052 #define HRTIM_CPT2CR_TC1CMP1 ((uint32_t)0x00400000) /*!< Timer C compare 1 */
MartinJohnson 0:404f5a4f1385 2053 #define HRTIM_CPT2CR_TC1CMP2 ((uint32_t)0x00800000) /*!< Timer C compare 2 */
MartinJohnson 0:404f5a4f1385 2054
MartinJohnson 0:404f5a4f1385 2055 #define HRTIM_CPT2CR_TD1SET ((uint32_t)0x01000000) /*!< Timer D output 1 set */
MartinJohnson 0:404f5a4f1385 2056 #define HRTIM_CPT2CR_TD1RST ((uint32_t)0x02000000) /*!< Timer D output 1 reset */
MartinJohnson 0:404f5a4f1385 2057 #define HRTIM_CPT2CR_TD1CMP1 ((uint32_t)0x04000000) /*!< Timer D compare 1 */
MartinJohnson 0:404f5a4f1385 2058 #define HRTIM_CPT2CR_TD1CMP2 ((uint32_t)0x08000000) /*!< Timer D compare 2 */
MartinJohnson 0:404f5a4f1385 2059
MartinJohnson 0:404f5a4f1385 2060 #define HRTIM_CPT2CR_TE1SET ((uint32_t)0x10000000) /*!< Timer E output 1 set */
MartinJohnson 0:404f5a4f1385 2061 #define HRTIM_CPT2CR_TE1RST ((uint32_t)0x20000000) /*!< Timer E output 1 reset */
MartinJohnson 0:404f5a4f1385 2062 #define HRTIM_CPT2CR_TE1CMP1 ((uint32_t)0x40000000) /*!< Timer E compare 1 */
MartinJohnson 0:404f5a4f1385 2063 #define HRTIM_CPT2CR_TE1CMP2 ((uint32_t)0x80000000) /*!< Timer E compare 2 */
MartinJohnson 0:404f5a4f1385 2064
MartinJohnson 0:404f5a4f1385 2065 /**** Bit definition for Slave Timer Output register **************************/
MartinJohnson 0:404f5a4f1385 2066 #define HRTIM_OUTR_POL1 ((uint32_t)0x00000002) /*!< Slave output 1 polarity */
MartinJohnson 0:404f5a4f1385 2067 #define HRTIM_OUTR_IDLM1 ((uint32_t)0x00000004) /*!< Slave output 1 idle mode */
MartinJohnson 0:404f5a4f1385 2068 #define HRTIM_OUTR_IDLES1 ((uint32_t)0x00000008) /*!< Slave output 1 idle state */
MartinJohnson 0:404f5a4f1385 2069 #define HRTIM_OUTR_FAULT1 ((uint32_t)0x00000030) /*!< Slave output 1 fault state */
MartinJohnson 0:404f5a4f1385 2070 #define HRTIM_OUTR_FAULT1_0 ((uint32_t)0x00000010) /*!< Slave output 1 fault state bit 0 */
MartinJohnson 0:404f5a4f1385 2071 #define HRTIM_OUTR_FAULT1_1 ((uint32_t)0x00000020) /*!< Slave output 1 fault state bit 1 */
MartinJohnson 0:404f5a4f1385 2072 #define HRTIM_OUTR_CHP1 ((uint32_t)0x00000040) /*!< Slave output 1 chopper enable */
MartinJohnson 0:404f5a4f1385 2073 #define HRTIM_OUTR_DIDL1 ((uint32_t)0x00000080) /*!< Slave output 1 dead time idle */
MartinJohnson 0:404f5a4f1385 2074
MartinJohnson 0:404f5a4f1385 2075 #define HRTIM_OUTR_DTEN ((uint32_t)0x00000100) /*!< Slave output deadtime enable */
MartinJohnson 0:404f5a4f1385 2076 #define HRTIM_OUTR_DLYPRTEN ((uint32_t)0x00000200) /*!< Slave output delay protection enable */
MartinJohnson 0:404f5a4f1385 2077 #define HRTIM_OUTR_DLYPRT ((uint32_t)0x00001C00) /*!< Slave output delay protection */
MartinJohnson 0:404f5a4f1385 2078 #define HRTIM_OUTR_DLYPRT_0 ((uint32_t)0x00000400) /*!< Slave output delay protection bit 0 */
MartinJohnson 0:404f5a4f1385 2079 #define HRTIM_OUTR_DLYPRT_1 ((uint32_t)0x00000800) /*!< Slave output delay protection bit 1 */
MartinJohnson 0:404f5a4f1385 2080 #define HRTIM_OUTR_DLYPRT_2 ((uint32_t)0x00001000) /*!< Slave output delay protection bit 2 */
MartinJohnson 0:404f5a4f1385 2081
MartinJohnson 0:404f5a4f1385 2082 #define HRTIM_OUTR_POL2 ((uint32_t)0x00020000) /*!< Slave output 2 polarity */
MartinJohnson 0:404f5a4f1385 2083 #define HRTIM_OUTR_IDLM2 ((uint32_t)0x00040000) /*!< Slave output 2 idle mode */
MartinJohnson 0:404f5a4f1385 2084 #define HRTIM_OUTR_IDLES2 ((uint32_t)0x00080000) /*!< Slave output 2 idle state */
MartinJohnson 0:404f5a4f1385 2085 #define HRTIM_OUTR_FAULT2 ((uint32_t)0x00300000) /*!< Slave output 2 fault state */
MartinJohnson 0:404f5a4f1385 2086 #define HRTIM_OUTR_FAULT2_0 ((uint32_t)0x00100000) /*!< Slave output 2 fault state bit 0 */
MartinJohnson 0:404f5a4f1385 2087 #define HRTIM_OUTR_FAULT2_1 ((uint32_t)0x00200000) /*!< Slave output 2 fault state bit 1 */
MartinJohnson 0:404f5a4f1385 2088 #define HRTIM_OUTR_CHP2 ((uint32_t)0x00400000) /*!< Slave output 2 chopper enable */
MartinJohnson 0:404f5a4f1385 2089 #define HRTIM_OUTR_DIDL2 ((uint32_t)0x00800000) /*!< Slave output 2 dead time idle */
MartinJohnson 0:404f5a4f1385 2090
MartinJohnson 0:404f5a4f1385 2091 /**** Bit definition for Slave Timer Fault register ***************************/
MartinJohnson 0:404f5a4f1385 2092 #define HRTIM_FLTR_FLT1EN ((uint32_t)0x00000001) /*!< Fault 1 enable */
MartinJohnson 0:404f5a4f1385 2093 #define HRTIM_FLTR_FLT2EN ((uint32_t)0x00000002) /*!< Fault 2 enable */
MartinJohnson 0:404f5a4f1385 2094 #define HRTIM_FLTR_FLT3EN ((uint32_t)0x00000004) /*!< Fault 3 enable */
MartinJohnson 0:404f5a4f1385 2095 #define HRTIM_FLTR_FLT4EN ((uint32_t)0x00000008) /*!< Fault 4 enable */
MartinJohnson 0:404f5a4f1385 2096 #define HRTIM_FLTR_FLT5EN ((uint32_t)0x00000010) /*!< Fault 5 enable */
MartinJohnson 0:404f5a4f1385 2097 #define HRTIM_FLTR_FLTCLK ((uint32_t)0x80000000) /*!< Fault sources lock */
MartinJohnson 0:404f5a4f1385 2098
MartinJohnson 0:404f5a4f1385 2099 /**** Bit definition for Common HRTIM Timer control register 1 ****************/
MartinJohnson 0:404f5a4f1385 2100 #define HRTIM_CR1_MUDIS ((uint32_t)0x00000001) /*!< Master update disable*/
MartinJohnson 0:404f5a4f1385 2101 #define HRTIM_CR1_TAUDIS ((uint32_t)0x00000002) /*!< Timer A update disable*/
MartinJohnson 0:404f5a4f1385 2102 #define HRTIM_CR1_TBUDIS ((uint32_t)0x00000004) /*!< Timer B update disable*/
MartinJohnson 0:404f5a4f1385 2103 #define HRTIM_CR1_TCUDIS ((uint32_t)0x00000008) /*!< Timer C update disable*/
MartinJohnson 0:404f5a4f1385 2104 #define HRTIM_CR1_TDUDIS ((uint32_t)0x00000010) /*!< Timer D update disable*/
MartinJohnson 0:404f5a4f1385 2105 #define HRTIM_CR1_TEUDIS ((uint32_t)0x00000020) /*!< Timer E update disable*/
MartinJohnson 0:404f5a4f1385 2106 #define HRTIM_CR1_ADC1USRC ((uint32_t)0x00070000) /*!< ADC Trigger 1 update source */
MartinJohnson 0:404f5a4f1385 2107 #define HRTIM_CR1_ADC1USRC_0 ((uint32_t)0x00010000) /*!< ADC Trigger 1 update source bit 0 */
MartinJohnson 0:404f5a4f1385 2108 #define HRTIM_CR1_ADC1USRC_1 ((uint32_t)0x00020000) /*!< ADC Trigger 1 update source bit 1 */
MartinJohnson 0:404f5a4f1385 2109 #define HRTIM_CR1_ADC1USRC_2 ((uint32_t)0x00040000) /*!< ADC Trigger 1 update source bit 2 */
MartinJohnson 0:404f5a4f1385 2110 #define HRTIM_CR1_ADC2USRC ((uint32_t)0x00380000) /*!< ADC Trigger 2 update source */
MartinJohnson 0:404f5a4f1385 2111 #define HRTIM_CR1_ADC2USRC_0 ((uint32_t)0x00080000) /*!< ADC Trigger 2 update source bit 0 */
MartinJohnson 0:404f5a4f1385 2112 #define HRTIM_CR1_ADC2USRC_1 ((uint32_t)0x00100000) /*!< ADC Trigger 2 update source bit 1 */
MartinJohnson 0:404f5a4f1385 2113 #define HRTIM_CR1_ADC2USRC_2 ((uint32_t)0x00200000) /*!< ADC Trigger 2 update source bit 2 */
MartinJohnson 0:404f5a4f1385 2114 #define HRTIM_CR1_ADC3USRC ((uint32_t)0x01C00000) /*!< ADC Trigger 3 update source */
MartinJohnson 0:404f5a4f1385 2115 #define HRTIM_CR1_ADC3USRC_0 ((uint32_t)0x00400000) /*!< ADC Trigger 3 update source bit 0 */
MartinJohnson 0:404f5a4f1385 2116 #define HRTIM_CR1_ADC3USRC_1 ((uint32_t)0x00800000) /*!< ADC Trigger 3 update source bit 1 */
MartinJohnson 0:404f5a4f1385 2117 #define HRTIM_CR1_ADC3USRC_2 ((uint32_t)0x01000000) /*!< ADC Trigger 3 update source bit 2 */
MartinJohnson 0:404f5a4f1385 2118 #define HRTIM_CR1_ADC4USRC ((uint32_t)0x0E000000) /*!< ADC Trigger 4 update source */
MartinJohnson 0:404f5a4f1385 2119 #define HRTIM_CR1_ADC4USRC_0 ((uint32_t)0x02000000) /*!< ADC Trigger 4 update source bit 0 */
MartinJohnson 0:404f5a4f1385 2120 #define HRTIM_CR1_ADC4USRC_1 ((uint32_t)0x04000000) /*!< ADC Trigger 4 update source bit 1 */
MartinJohnson 0:404f5a4f1385 2121 #define HRTIM_CR1_ADC4USRC_2 ((uint32_t)0x0800000) /*!< ADC Trigger 4 update source bit 2 */
MartinJohnson 0:404f5a4f1385 2122
MartinJohnson 0:404f5a4f1385 2123 /**** Bit definition for Common HRTIM Timer control register 2 ****************/
MartinJohnson 0:404f5a4f1385 2124 #define HRTIM_CR2_MSWU ((uint32_t)0x00000001) /*!< Master software update */
MartinJohnson 0:404f5a4f1385 2125 #define HRTIM_CR2_TASWU ((uint32_t)0x00000002) /*!< Timer A software update */
MartinJohnson 0:404f5a4f1385 2126 #define HRTIM_CR2_TBSWU ((uint32_t)0x00000004) /*!< Timer B software update */
MartinJohnson 0:404f5a4f1385 2127 #define HRTIM_CR2_TCSWU ((uint32_t)0x00000008) /*!< Timer C software update */
MartinJohnson 0:404f5a4f1385 2128 #define HRTIM_CR2_TDSWU ((uint32_t)0x00000010) /*!< Timer D software update */
MartinJohnson 0:404f5a4f1385 2129 #define HRTIM_CR2_TESWU ((uint32_t)0x00000020) /*!< Timer E software update */
MartinJohnson 0:404f5a4f1385 2130 #define HRTIM_CR2_MRST ((uint32_t)0x00000100) /*!< Master count software reset */
MartinJohnson 0:404f5a4f1385 2131 #define HRTIM_CR2_TARST ((uint32_t)0x00000200) /*!< Timer A count software reset */
MartinJohnson 0:404f5a4f1385 2132 #define HRTIM_CR2_TBRST ((uint32_t)0x00000400) /*!< Timer B count software reset */
MartinJohnson 0:404f5a4f1385 2133 #define HRTIM_CR2_TCRST ((uint32_t)0x00000800) /*!< Timer C count software reset */
MartinJohnson 0:404f5a4f1385 2134 #define HRTIM_CR2_TDRST ((uint32_t)0x00001000) /*!< Timer D count software reset */
MartinJohnson 0:404f5a4f1385 2135 #define HRTIM_CR2_TERST ((uint32_t)0x00002000) /*!< Timer E count software reset */
MartinJohnson 0:404f5a4f1385 2136
MartinJohnson 0:404f5a4f1385 2137 /**** Bit definition for Common HRTIM Timer interrupt status register *********/
MartinJohnson 0:404f5a4f1385 2138 #define HRTIM_ISR_FLT1 ((uint32_t)0x00000001) /*!< Fault 1 interrupt flag */
MartinJohnson 0:404f5a4f1385 2139 #define HRTIM_ISR_FLT2 ((uint32_t)0x00000002) /*!< Fault 2 interrupt flag */
MartinJohnson 0:404f5a4f1385 2140 #define HRTIM_ISR_FLT3 ((uint32_t)0x00000004) /*!< Fault 3 interrupt flag */
MartinJohnson 0:404f5a4f1385 2141 #define HRTIM_ISR_FLT4 ((uint32_t)0x00000008) /*!< Fault 4 interrupt flag */
MartinJohnson 0:404f5a4f1385 2142 #define HRTIM_ISR_FLT5 ((uint32_t)0x00000010) /*!< Fault 5 interrupt flag */
MartinJohnson 0:404f5a4f1385 2143 #define HRTIM_ISR_SYSFLT ((uint32_t)0x00000020) /*!< System Fault interrupt flag */
MartinJohnson 0:404f5a4f1385 2144 #define HRTIM_ISR_DLLRDY ((uint32_t)0x00010000) /*!< DLL ready interrupt flag */
MartinJohnson 0:404f5a4f1385 2145 #define HRTIM_ISR_BMPER ((uint32_t)0x00020000) /*!< Burst mode period interrupt flag */
MartinJohnson 0:404f5a4f1385 2146
MartinJohnson 0:404f5a4f1385 2147 /**** Bit definition for Common HRTIM Timer interrupt clear register **********/
MartinJohnson 0:404f5a4f1385 2148 #define HRTIM_ICR_FLT1C ((uint32_t)0x00000001) /*!< Fault 1 interrupt flag clear */
MartinJohnson 0:404f5a4f1385 2149 #define HRTIM_ICR_FLT2C ((uint32_t)0x00000002) /*!< Fault 2 interrupt flag clear */
MartinJohnson 0:404f5a4f1385 2150 #define HRTIM_ICR_FLT3C ((uint32_t)0x00000004) /*!< Fault 3 interrupt flag clear */
MartinJohnson 0:404f5a4f1385 2151 #define HRTIM_ICR_FLT4C ((uint32_t)0x00000008) /*!< Fault 4 interrupt flag clear */
MartinJohnson 0:404f5a4f1385 2152 #define HRTIM_ICR_FLT5C ((uint32_t)0x00000010) /*!< Fault 5 interrupt flag clear */
MartinJohnson 0:404f5a4f1385 2153 #define HRTIM_ICR_SYSFLTC ((uint32_t)0x00000020) /*!< System Fault interrupt flag clear */
MartinJohnson 0:404f5a4f1385 2154 #define HRTIM_ICR_DLLRDYC ((uint32_t)0x00010000) /*!< DLL ready interrupt flag clear */
MartinJohnson 0:404f5a4f1385 2155 #define HRTIM_ICR_BMPERC ((uint32_t)0x00020000) /*!< Burst mode period interrupt flag clear */
MartinJohnson 0:404f5a4f1385 2156
MartinJohnson 0:404f5a4f1385 2157 /**** Bit definition for Common HRTIM Timer interrupt enable register *********/
MartinJohnson 0:404f5a4f1385 2158 #define HRTIM_IER_FLT1 ((uint32_t)0x00000001) /*!< Fault 1 interrupt enable */
MartinJohnson 0:404f5a4f1385 2159 #define HRTIM_IER_FLT2 ((uint32_t)0x00000002) /*!< Fault 2 interrupt enable */
MartinJohnson 0:404f5a4f1385 2160 #define HRTIM_IER_FLT3 ((uint32_t)0x00000004) /*!< Fault 3 interrupt enable */
MartinJohnson 0:404f5a4f1385 2161 #define HRTIM_IER_FLT4 ((uint32_t)0x00000008) /*!< Fault 4 interrupt enable */
MartinJohnson 0:404f5a4f1385 2162 #define HRTIM_IER_FLT5 ((uint32_t)0x00000010) /*!< Fault 5 interrupt enable */
MartinJohnson 0:404f5a4f1385 2163 #define HRTIM_IER_SYSFLT ((uint32_t)0x00000020) /*!< System Fault interrupt enable */
MartinJohnson 0:404f5a4f1385 2164 #define HRTIM_IER_DLLRDY ((uint32_t)0x00010000) /*!< DLL ready interrupt enable */
MartinJohnson 0:404f5a4f1385 2165 #define HRTIM_IER_BMPER ((uint32_t)0x00020000) /*!< Burst mode period interrupt enable */
MartinJohnson 0:404f5a4f1385 2166
MartinJohnson 0:404f5a4f1385 2167 /**** Bit definition for Common HRTIM Timer output enable register ************/
MartinJohnson 0:404f5a4f1385 2168 #define HRTIM_OENR_TA1OEN ((uint32_t)0x00000001) /*!< Timer A Output 1 enable */
MartinJohnson 0:404f5a4f1385 2169 #define HRTIM_OENR_TA2OEN ((uint32_t)0x00000002) /*!< Timer A Output 2 enable */
MartinJohnson 0:404f5a4f1385 2170 #define HRTIM_OENR_TB1OEN ((uint32_t)0x00000004) /*!< Timer B Output 1 enable */
MartinJohnson 0:404f5a4f1385 2171 #define HRTIM_OENR_TB2OEN ((uint32_t)0x00000008) /*!< Timer B Output 2 enable */
MartinJohnson 0:404f5a4f1385 2172 #define HRTIM_OENR_TC1OEN ((uint32_t)0x00000010) /*!< Timer C Output 1 enable */
MartinJohnson 0:404f5a4f1385 2173 #define HRTIM_OENR_TC2OEN ((uint32_t)0x00000020) /*!< Timer C Output 2 enable */
MartinJohnson 0:404f5a4f1385 2174 #define HRTIM_OENR_TD1OEN ((uint32_t)0x00000040) /*!< Timer D Output 1 enable */
MartinJohnson 0:404f5a4f1385 2175 #define HRTIM_OENR_TD2OEN ((uint32_t)0x00000080) /*!< Timer D Output 2 enable */
MartinJohnson 0:404f5a4f1385 2176 #define HRTIM_OENR_TE1OEN ((uint32_t)0x00000100) /*!< Timer E Output 1 enable */
MartinJohnson 0:404f5a4f1385 2177 #define HRTIM_OENR_TE2OEN ((uint32_t)0x00000200) /*!< Timer E Output 2 enable */
MartinJohnson 0:404f5a4f1385 2178
MartinJohnson 0:404f5a4f1385 2179 /**** Bit definition for Common HRTIM Timer output disable register ***********/
MartinJohnson 0:404f5a4f1385 2180 #define HRTIM_ODISR_TA1ODIS ((uint32_t)0x00000001) /*!< Timer A Output 1 disable */
MartinJohnson 0:404f5a4f1385 2181 #define HRTIM_ODISR_TA2ODIS ((uint32_t)0x00000002) /*!< Timer A Output 2 disable */
MartinJohnson 0:404f5a4f1385 2182 #define HRTIM_ODISR_TB1ODIS ((uint32_t)0x00000004) /*!< Timer B Output 1 disable */
MartinJohnson 0:404f5a4f1385 2183 #define HRTIM_ODISR_TB2ODIS ((uint32_t)0x00000008) /*!< Timer B Output 2 disable */
MartinJohnson 0:404f5a4f1385 2184 #define HRTIM_ODISR_TC1ODIS ((uint32_t)0x00000010) /*!< Timer C Output 1 disable */
MartinJohnson 0:404f5a4f1385 2185 #define HRTIM_ODISR_TC2ODIS ((uint32_t)0x00000020) /*!< Timer C Output 2 disable */
MartinJohnson 0:404f5a4f1385 2186 #define HRTIM_ODISR_TD1ODIS ((uint32_t)0x00000040) /*!< Timer D Output 1 disable */
MartinJohnson 0:404f5a4f1385 2187 #define HRTIM_ODISR_TD2ODIS ((uint32_t)0x00000080) /*!< Timer D Output 2 disable */
MartinJohnson 0:404f5a4f1385 2188 #define HRTIM_ODISR_TE1ODIS ((uint32_t)0x00000100) /*!< Timer E Output 1 disable */
MartinJohnson 0:404f5a4f1385 2189 #define HRTIM_ODISR_TE2ODIS ((uint32_t)0x00000200) /*!< Timer E Output 2 disable */
MartinJohnson 0:404f5a4f1385 2190
MartinJohnson 0:404f5a4f1385 2191 /**** Bit definition for Common HRTIM Timer output disable status register *****/
MartinJohnson 0:404f5a4f1385 2192 #define HRTIM_ODSR_TA1ODS ((uint32_t)0x00000001) /*!< Timer A Output 1 disable status */
MartinJohnson 0:404f5a4f1385 2193 #define HRTIM_ODSR_TA2ODS ((uint32_t)0x00000002) /*!< Timer A Output 2 disable status */
MartinJohnson 0:404f5a4f1385 2194 #define HRTIM_ODSR_TB1ODS ((uint32_t)0x00000004) /*!< Timer B Output 1 disable status */
MartinJohnson 0:404f5a4f1385 2195 #define HRTIM_ODSR_TB2ODS ((uint32_t)0x00000008) /*!< Timer B Output 2 disable status */
MartinJohnson 0:404f5a4f1385 2196 #define HRTIM_ODSR_TC1ODS ((uint32_t)0x00000010) /*!< Timer C Output 1 disable status */
MartinJohnson 0:404f5a4f1385 2197 #define HRTIM_ODSR_TC2ODS ((uint32_t)0x00000020) /*!< Timer C Output 2 disable status */
MartinJohnson 0:404f5a4f1385 2198 #define HRTIM_ODSR_TD1ODS ((uint32_t)0x00000040) /*!< Timer D Output 1 disable status */
MartinJohnson 0:404f5a4f1385 2199 #define HRTIM_ODSR_TD2ODS ((uint32_t)0x00000080) /*!< Timer D Output 2 disable status */
MartinJohnson 0:404f5a4f1385 2200 #define HRTIM_ODSR_TE1ODS ((uint32_t)0x00000100) /*!< Timer E Output 1 disable status */
MartinJohnson 0:404f5a4f1385 2201 #define HRTIM_ODSR_TE2ODS ((uint32_t)0x00000200) /*!< Timer E Output 2 disable status */
MartinJohnson 0:404f5a4f1385 2202
MartinJohnson 0:404f5a4f1385 2203 /**** Bit definition for Common HRTIM Timer Burst mode control register ********/
MartinJohnson 0:404f5a4f1385 2204 #define HRTIM_BMCR_BME ((uint32_t)0x00000001) /*!< Burst mode enable */
MartinJohnson 0:404f5a4f1385 2205 #define HRTIM_BMCR_BMOM ((uint32_t)0x00000002) /*!< Burst mode operating mode */
MartinJohnson 0:404f5a4f1385 2206 #define HRTIM_BMCR_BMCLK ((uint32_t)0x0000003C) /*!< Burst mode clock source */
MartinJohnson 0:404f5a4f1385 2207 #define HRTIM_BMCR_BMCLK_0 ((uint32_t)0x00000004) /*!< Burst mode clock source bit 0 */
MartinJohnson 0:404f5a4f1385 2208 #define HRTIM_BMCR_BMCLK_1 ((uint32_t)0x00000008) /*!< Burst mode clock source bit 1 */
MartinJohnson 0:404f5a4f1385 2209 #define HRTIM_BMCR_BMCLK_2 ((uint32_t)0x00000010) /*!< Burst mode clock source bit 2 */
MartinJohnson 0:404f5a4f1385 2210 #define HRTIM_BMCR_BMCLK_3 ((uint32_t)0x00000020) /*!< Burst mode clock source bit 3 */
MartinJohnson 0:404f5a4f1385 2211 #define HRTIM_BMCR_BMPSC ((uint32_t)0x000003C0) /*!< Burst mode prescaler */
MartinJohnson 0:404f5a4f1385 2212 #define HRTIM_BMCR_BMPSC_0 ((uint32_t)0x00000040) /*!< Burst mode prescaler bit 0 */
MartinJohnson 0:404f5a4f1385 2213 #define HRTIM_BMCR_BMPSC_1 ((uint32_t)0x00000080) /*!< Burst mode prescaler bit 1 */
MartinJohnson 0:404f5a4f1385 2214 #define HRTIM_BMCR_BMPSC_2 ((uint32_t)0x00000100) /*!< Burst mode prescaler bit 2 */
MartinJohnson 0:404f5a4f1385 2215 #define HRTIM_BMCR_BMPSC_3 ((uint32_t)0x00000200) /*!< Burst mode prescaler bit 3 */
MartinJohnson 0:404f5a4f1385 2216 #define HRTIM_BMCR_BMPREN ((uint32_t)0x00000400) /*!< Burst mode Preload bit */
MartinJohnson 0:404f5a4f1385 2217 #define HRTIM_BMCR_MTBM ((uint32_t)0x00010000) /*!< Master Timer Burst mode */
MartinJohnson 0:404f5a4f1385 2218 #define HRTIM_BMCR_TABM ((uint32_t)0x00020000) /*!< Timer A Burst mode */
MartinJohnson 0:404f5a4f1385 2219 #define HRTIM_BMCR_TBBM ((uint32_t)0x00040000) /*!< Timer B Burst mode */
MartinJohnson 0:404f5a4f1385 2220 #define HRTIM_BMCR_TCBM ((uint32_t)0x00080000) /*!< Timer C Burst mode */
MartinJohnson 0:404f5a4f1385 2221 #define HRTIM_BMCR_TDBM ((uint32_t)0x00100000) /*!< Timer D Burst mode */
MartinJohnson 0:404f5a4f1385 2222 #define HRTIM_BMCR_TEBM ((uint32_t)0x00200000) /*!< Timer E Burst mode */
MartinJohnson 0:404f5a4f1385 2223 #define HRTIM_BMCR_BMSTAT ((uint32_t)0x80000000) /*!< Burst mode status */
MartinJohnson 0:404f5a4f1385 2224
MartinJohnson 0:404f5a4f1385 2225 /**** Bit definition for Common HRTIM Timer Burst mode Trigger register *******/
MartinJohnson 0:404f5a4f1385 2226 #define HRTIM_BMTRGR_SW ((uint32_t)0x00000001) /*!< Software start */
MartinJohnson 0:404f5a4f1385 2227 #define HRTIM_BMTRGR_MSTRST ((uint32_t)0x00000002) /*!< Master reset */
MartinJohnson 0:404f5a4f1385 2228 #define HRTIM_BMTRGR_MSTREP ((uint32_t)0x00000004) /*!< Master repetition */
MartinJohnson 0:404f5a4f1385 2229 #define HRTIM_BMTRGR_MSTCMP1 ((uint32_t)0x00000008) /*!< Master compare 1 */
MartinJohnson 0:404f5a4f1385 2230 #define HRTIM_BMTRGR_MSTCMP2 ((uint32_t)0x00000010) /*!< Master compare 2 */
MartinJohnson 0:404f5a4f1385 2231 #define HRTIM_BMTRGR_MSTCMP3 ((uint32_t)0x00000020) /*!< Master compare 3 */
MartinJohnson 0:404f5a4f1385 2232 #define HRTIM_BMTRGR_MSTCMP4 ((uint32_t)0x00000040) /*!< Master compare 4 */
MartinJohnson 0:404f5a4f1385 2233 #define HRTIM_BMTRGR_TARST ((uint32_t)0x00000080) /*!< Timer A reset */
MartinJohnson 0:404f5a4f1385 2234 #define HRTIM_BMTRGR_TAREP ((uint32_t)0x00000100) /*!< Timer A repetition */
MartinJohnson 0:404f5a4f1385 2235 #define HRTIM_BMTRGR_TACMP1 ((uint32_t)0x00000200) /*!< Timer A compare 1 */
MartinJohnson 0:404f5a4f1385 2236 #define HRTIM_BMTRGR_TACMP2 ((uint32_t)0x00000400) /*!< Timer A compare 2 */
MartinJohnson 0:404f5a4f1385 2237 #define HRTIM_BMTRGR_TBRST ((uint32_t)0x00000800) /*!< Timer B reset */
MartinJohnson 0:404f5a4f1385 2238 #define HRTIM_BMTRGR_TBREP ((uint32_t)0x00001000) /*!< Timer B repetition */
MartinJohnson 0:404f5a4f1385 2239 #define HRTIM_BMTRGR_TBCMP1 ((uint32_t)0x00002000) /*!< Timer B compare 1 */
MartinJohnson 0:404f5a4f1385 2240 #define HRTIM_BMTRGR_TBCMP2 ((uint32_t)0x00004000) /*!< Timer B compare 2 */
MartinJohnson 0:404f5a4f1385 2241 #define HRTIM_BMTRGR_TCRST ((uint32_t)0x00008000) /*!< Timer C reset */
MartinJohnson 0:404f5a4f1385 2242 #define HRTIM_BMTRGR_TCREP ((uint32_t)0x00010000) /*!< Timer C repetition */
MartinJohnson 0:404f5a4f1385 2243 #define HRTIM_BMTRGR_TCCMP1 ((uint32_t)0x00020000) /*!< Timer C compare 1 */
MartinJohnson 0:404f5a4f1385 2244 #define HRTIM_BMTRGR_TCCMP2 ((uint32_t)0x00040000) /*!< Timer C compare 2 */
MartinJohnson 0:404f5a4f1385 2245 #define HRTIM_BMTRGR_TDRST ((uint32_t)0x00080000) /*!< Timer D reset */
MartinJohnson 0:404f5a4f1385 2246 #define HRTIM_BMTRGR_TDREP ((uint32_t)0x00100000) /*!< Timer D repetition */
MartinJohnson 0:404f5a4f1385 2247 #define HRTIM_BMTRGR_TDCMP1 ((uint32_t)0x00200000) /*!< Timer D compare 1 */
MartinJohnson 0:404f5a4f1385 2248 #define HRTIM_BMTRGR_TDCMP2 ((uint32_t)0x00400000) /*!< Timer D compare 2 */
MartinJohnson 0:404f5a4f1385 2249 #define HRTIM_BMTRGR_TERST ((uint32_t)0x00800000) /*!< Timer E reset */
MartinJohnson 0:404f5a4f1385 2250 #define HRTIM_BMTRGR_TEREP ((uint32_t)0x01000000) /*!< Timer E repetition */
MartinJohnson 0:404f5a4f1385 2251 #define HRTIM_BMTRGR_TECMP1 ((uint32_t)0x02000000) /*!< Timer E compare 1 */
MartinJohnson 0:404f5a4f1385 2252 #define HRTIM_BMTRGR_TECMP2 ((uint32_t)0x04000000) /*!< Timer E compare 2 */
MartinJohnson 0:404f5a4f1385 2253 #define HRTIM_BMTRGR_TAEEV7 ((uint32_t)0x08000000) /*!< Timer A period following External Event7 */
MartinJohnson 0:404f5a4f1385 2254 #define HRTIM_BMTRGR_TDEEV8 ((uint32_t)0x10000000) /*!< Timer D period following External Event8 */
MartinJohnson 0:404f5a4f1385 2255 #define HRTIM_BMTRGR_EEV7 ((uint32_t)0x20000000) /*!< External Event 7 */
MartinJohnson 0:404f5a4f1385 2256 #define HRTIM_BMTRGR_EEV8 ((uint32_t)0x40000000) /*!< External Event 8 */
MartinJohnson 0:404f5a4f1385 2257 #define HRTIM_BMTRGR_OCHPEV ((uint32_t)0x80000000) /*!< on-chip Event */
MartinJohnson 0:404f5a4f1385 2258
MartinJohnson 0:404f5a4f1385 2259 /******************* Bit definition for HRTIM_BMCMPR register ***************/
MartinJohnson 0:404f5a4f1385 2260 #define HRTIM_BMCMPR_BMCMPR ((uint32_t)0x0000FFFF) /*!<!<Burst Compare Value */
MartinJohnson 0:404f5a4f1385 2261
MartinJohnson 0:404f5a4f1385 2262 /******************* Bit definition for HRTIM_BMPER register ****************/
MartinJohnson 0:404f5a4f1385 2263 #define HRTIM_BMPER_BMPER ((uint32_t)0x0000FFFF) /*!<!<Burst period Value */
MartinJohnson 0:404f5a4f1385 2264
MartinJohnson 0:404f5a4f1385 2265 /******************* Bit definition for HRTIM_EECR1 register ****************/
MartinJohnson 0:404f5a4f1385 2266 #define HRTIM_EECR1_EE1SRC ((uint32_t)0x00000003) /*!< External event 1 source */
MartinJohnson 0:404f5a4f1385 2267 #define HRTIM_EECR1_EE1SRC_0 ((uint32_t)0x00000001) /*!< External event 1 source bit 0 */
MartinJohnson 0:404f5a4f1385 2268 #define HRTIM_EECR1_EE1SRC_1 ((uint32_t)0x00000002) /*!< External event 1 source bit 1 */
MartinJohnson 0:404f5a4f1385 2269 #define HRTIM_EECR1_EE1POL ((uint32_t)0x00000004) /*!< External event 1 Polarity */
MartinJohnson 0:404f5a4f1385 2270 #define HRTIM_EECR1_EE1SNS ((uint32_t)0x00000018) /*!< External event 1 sensitivity */
MartinJohnson 0:404f5a4f1385 2271 #define HRTIM_EECR1_EE1SNS_0 ((uint32_t)0x00000008) /*!< External event 1 sensitivity bit 0 */
MartinJohnson 0:404f5a4f1385 2272 #define HRTIM_EECR1_EE1SNS_1 ((uint32_t)0x00000010) /*!< External event 1 sensitivity bit 1 */
MartinJohnson 0:404f5a4f1385 2273 #define HRTIM_EECR1_EE1FAST ((uint32_t)0x00000020) /*!< External event 1 Fast mode */
MartinJohnson 0:404f5a4f1385 2274
MartinJohnson 0:404f5a4f1385 2275 #define HRTIM_EECR1_EE2SRC ((uint32_t)0x000000C0) /*!< External event 2 source */
MartinJohnson 0:404f5a4f1385 2276 #define HRTIM_EECR1_EE2SRC_0 ((uint32_t)0x00000040) /*!< External event 2 source bit 0 */
MartinJohnson 0:404f5a4f1385 2277 #define HRTIM_EECR1_EE2SRC_1 ((uint32_t)0x00000080) /*!< External event 2 source bit 1 */
MartinJohnson 0:404f5a4f1385 2278 #define HRTIM_EECR1_EE2POL ((uint32_t)0x00000100) /*!< External event 2 Polarity */
MartinJohnson 0:404f5a4f1385 2279 #define HRTIM_EECR1_EE2SNS ((uint32_t)0x00000600) /*!< External event 2 sensitivity */
MartinJohnson 0:404f5a4f1385 2280 #define HRTIM_EECR1_EE2SNS_0 ((uint32_t)0x00000200) /*!< External event 2 sensitivity bit 0 */
MartinJohnson 0:404f5a4f1385 2281 #define HRTIM_EECR1_EE2SNS_1 ((uint32_t)0x00000400) /*!< External event 2 sensitivity bit 1 */
MartinJohnson 0:404f5a4f1385 2282 #define HRTIM_EECR1_EE2FAST ((uint32_t)0x00000800) /*!< External event 2 Fast mode */
MartinJohnson 0:404f5a4f1385 2283
MartinJohnson 0:404f5a4f1385 2284 #define HRTIM_EECR1_EE3SRC ((uint32_t)0x00003000) /*!< External event 3 source */
MartinJohnson 0:404f5a4f1385 2285 #define HRTIM_EECR1_EE3SRC_0 ((uint32_t)0x00001000) /*!< External event 3 source bit 0 */
MartinJohnson 0:404f5a4f1385 2286 #define HRTIM_EECR1_EE3SRC_1 ((uint32_t)0x00002000) /*!< External event 3 source bit 1 */
MartinJohnson 0:404f5a4f1385 2287 #define HRTIM_EECR1_EE3POL ((uint32_t)0x00004000) /*!< External event 3 Polarity */
MartinJohnson 0:404f5a4f1385 2288 #define HRTIM_EECR1_EE3SNS ((uint32_t)0x00018000) /*!< External event 3 sensitivity */
MartinJohnson 0:404f5a4f1385 2289 #define HRTIM_EECR1_EE3SNS_0 ((uint32_t)0x00008000) /*!< External event 3 sensitivity bit 0 */
MartinJohnson 0:404f5a4f1385 2290 #define HRTIM_EECR1_EE3SNS_1 ((uint32_t)0x00010000) /*!< External event 3 sensitivity bit 1 */
MartinJohnson 0:404f5a4f1385 2291 #define HRTIM_EECR1_EE3FAST ((uint32_t)0x00020000) /*!< External event 3 Fast mode */
MartinJohnson 0:404f5a4f1385 2292
MartinJohnson 0:404f5a4f1385 2293 #define HRTIM_EECR1_EE4SRC ((uint32_t)0x000C0000) /*!< External event 4 source */
MartinJohnson 0:404f5a4f1385 2294 #define HRTIM_EECR1_EE4SRC_0 ((uint32_t)0x00040000) /*!< External event 4 source bit 0 */
MartinJohnson 0:404f5a4f1385 2295 #define HRTIM_EECR1_EE4SRC_1 ((uint32_t)0x00080000) /*!< External event 4 source bit 1 */
MartinJohnson 0:404f5a4f1385 2296 #define HRTIM_EECR1_EE4POL ((uint32_t)0x00100000) /*!< External event 4 Polarity */
MartinJohnson 0:404f5a4f1385 2297 #define HRTIM_EECR1_EE4SNS ((uint32_t)0x00600000) /*!< External event 4 sensitivity */
MartinJohnson 0:404f5a4f1385 2298 #define HRTIM_EECR1_EE4SNS_0 ((uint32_t)0x00200000) /*!< External event 4 sensitivity bit 0 */
MartinJohnson 0:404f5a4f1385 2299 #define HRTIM_EECR1_EE4SNS_1 ((uint32_t)0x00400000) /*!< External event 4 sensitivity bit 1 */
MartinJohnson 0:404f5a4f1385 2300 #define HRTIM_EECR1_EE4FAST ((uint32_t)0x00800000) /*!< External event 4 Fast mode */
MartinJohnson 0:404f5a4f1385 2301
MartinJohnson 0:404f5a4f1385 2302 #define HRTIM_EECR1_EE5SRC ((uint32_t)0x03000000) /*!< External event 5 source */
MartinJohnson 0:404f5a4f1385 2303 #define HRTIM_EECR1_EE5SRC_0 ((uint32_t)0x01000000) /*!< External event 5 source bit 0 */
MartinJohnson 0:404f5a4f1385 2304 #define HRTIM_EECR1_EE5SRC_1 ((uint32_t)0x02000000) /*!< External event 5 source bit 1 */
MartinJohnson 0:404f5a4f1385 2305 #define HRTIM_EECR1_EE5POL ((uint32_t)0x04000000) /*!< External event 5 Polarity */
MartinJohnson 0:404f5a4f1385 2306 #define HRTIM_EECR1_EE5SNS ((uint32_t)0x18000000) /*!< External event 5 sensitivity */
MartinJohnson 0:404f5a4f1385 2307 #define HRTIM_EECR1_EE5SNS_0 ((uint32_t)0x08000000) /*!< External event 5 sensitivity bit 0 */
MartinJohnson 0:404f5a4f1385 2308 #define HRTIM_EECR1_EE5SNS_1 ((uint32_t)0x10000000) /*!< External event 5 sensitivity bit 1 */
MartinJohnson 0:404f5a4f1385 2309 #define HRTIM_EECR1_EE5FAST ((uint32_t)0x20000000) /*!< External event 5 Fast mode */
MartinJohnson 0:404f5a4f1385 2310
MartinJohnson 0:404f5a4f1385 2311 /******************* Bit definition for HRTIM_EECR2 register ****************/
MartinJohnson 0:404f5a4f1385 2312 #define HRTIM_EECR2_EE6SRC ((uint32_t)0x00000003) /*!< External event 6 source */
MartinJohnson 0:404f5a4f1385 2313 #define HRTIM_EECR2_EE6SRC_0 ((uint32_t)0x00000001) /*!< External event 6 source bit 0 */
MartinJohnson 0:404f5a4f1385 2314 #define HRTIM_EECR2_EE6SRC_1 ((uint32_t)0x00000002) /*!< External event 6 source bit 1 */
MartinJohnson 0:404f5a4f1385 2315 #define HRTIM_EECR2_EE6POL ((uint32_t)0x00000004) /*!< External event 6 Polarity */
MartinJohnson 0:404f5a4f1385 2316 #define HRTIM_EECR2_EE6SNS ((uint32_t)0x00000018) /*!< External event 6 sensitivity */
MartinJohnson 0:404f5a4f1385 2317 #define HRTIM_EECR2_EE6SNS_0 ((uint32_t)0x00000008) /*!< External event 6 sensitivity bit 0 */
MartinJohnson 0:404f5a4f1385 2318 #define HRTIM_EECR2_EE6SNS_1 ((uint32_t)0x00000010) /*!< External event 6 sensitivity bit 1 */
MartinJohnson 0:404f5a4f1385 2319
MartinJohnson 0:404f5a4f1385 2320 #define HRTIM_EECR2_EE7SRC ((uint32_t)0x000000C0) /*!< External event 7 source */
MartinJohnson 0:404f5a4f1385 2321 #define HRTIM_EECR2_EE7SRC_0 ((uint32_t)0x00000040) /*!< External event 7 source bit 0 */
MartinJohnson 0:404f5a4f1385 2322 #define HRTIM_EECR2_EE7SRC_1 ((uint32_t)0x00000080) /*!< External event 7 source bit 1 */
MartinJohnson 0:404f5a4f1385 2323 #define HRTIM_EECR2_EE7POL ((uint32_t)0x00000100) /*!< External event 7 Polarity */
MartinJohnson 0:404f5a4f1385 2324 #define HRTIM_EECR2_EE7SNS ((uint32_t)0x00000600) /*!< External event 7 sensitivity */
MartinJohnson 0:404f5a4f1385 2325 #define HRTIM_EECR2_EE7SNS_0 ((uint32_t)0x00000200) /*!< External event 7 sensitivity bit 0 */
MartinJohnson 0:404f5a4f1385 2326 #define HRTIM_EECR2_EE7SNS_1 ((uint32_t)0x00000400) /*!< External event 7 sensitivity bit 1 */
MartinJohnson 0:404f5a4f1385 2327
MartinJohnson 0:404f5a4f1385 2328 #define HRTIM_EECR2_EE8SRC ((uint32_t)0x00003000) /*!< External event 8 source */
MartinJohnson 0:404f5a4f1385 2329 #define HRTIM_EECR2_EE8SRC_0 ((uint32_t)0x00001000) /*!< External event 8 source bit 0 */
MartinJohnson 0:404f5a4f1385 2330 #define HRTIM_EECR2_EE8SRC_1 ((uint32_t)0x00002000) /*!< External event 8 source bit 1 */
MartinJohnson 0:404f5a4f1385 2331 #define HRTIM_EECR2_EE8POL ((uint32_t)0x00004000) /*!< External event 8 Polarity */
MartinJohnson 0:404f5a4f1385 2332 #define HRTIM_EECR2_EE8SNS ((uint32_t)0x00018000) /*!< External event 8 sensitivity */
MartinJohnson 0:404f5a4f1385 2333 #define HRTIM_EECR2_EE8SNS_0 ((uint32_t)0x00008000) /*!< External event 8 sensitivity bit 0 */
MartinJohnson 0:404f5a4f1385 2334 #define HRTIM_EECR2_EE8SNS_1 ((uint32_t)0x00010000) /*!< External event 8 sensitivity bit 1 */
MartinJohnson 0:404f5a4f1385 2335
MartinJohnson 0:404f5a4f1385 2336 #define HRTIM_EECR2_EE9SRC ((uint32_t)0x000C0000) /*!< External event 9 source */
MartinJohnson 0:404f5a4f1385 2337 #define HRTIM_EECR2_EE9SRC_0 ((uint32_t)0x00040000) /*!< External event 9 source bit 0 */
MartinJohnson 0:404f5a4f1385 2338 #define HRTIM_EECR2_EE9SRC_1 ((uint32_t)0x00080000) /*!< External event 9 source bit 1 */
MartinJohnson 0:404f5a4f1385 2339 #define HRTIM_EECR2_EE9POL ((uint32_t)0x00100000) /*!< External event 9 Polarity */
MartinJohnson 0:404f5a4f1385 2340 #define HRTIM_EECR2_EE9SNS ((uint32_t)0x00600000) /*!< External event 9 sensitivity */
MartinJohnson 0:404f5a4f1385 2341 #define HRTIM_EECR2_EE9SNS_0 ((uint32_t)0x00200000) /*!< External event 9 sensitivity bit 0 */
MartinJohnson 0:404f5a4f1385 2342 #define HRTIM_EECR2_EE9SNS_1 ((uint32_t)0x00400000) /*!< External event 9 sensitivity bit 1 */
MartinJohnson 0:404f5a4f1385 2343
MartinJohnson 0:404f5a4f1385 2344 #define HRTIM_EECR2_EE10SRC ((uint32_t)0x03000000) /*!< External event 10 source */
MartinJohnson 0:404f5a4f1385 2345 #define HRTIM_EECR2_EE10SRC_0 ((uint32_t)0x01000000) /*!< External event 10 source bit 0 */
MartinJohnson 0:404f5a4f1385 2346 #define HRTIM_EECR2_EE10SRC_1 ((uint32_t)0x02000000) /*!< External event 10 source bit 1 */
MartinJohnson 0:404f5a4f1385 2347 #define HRTIM_EECR2_EE10POL ((uint32_t)0x04000000) /*!< External event 10 Polarity */
MartinJohnson 0:404f5a4f1385 2348 #define HRTIM_EECR2_EE10SNS ((uint32_t)0x18000000) /*!< External event 10 sensitivity */
MartinJohnson 0:404f5a4f1385 2349 #define HRTIM_EECR2_EE10SNS_0 ((uint32_t)0x08000000) /*!< External event 10 sensitivity bit 0 */
MartinJohnson 0:404f5a4f1385 2350 #define HRTIM_EECR2_EE10SNS_1 ((uint32_t)0x10000000) /*!< External event 10 sensitivity bit 1 */
MartinJohnson 0:404f5a4f1385 2351
MartinJohnson 0:404f5a4f1385 2352 /******************* Bit definition for HRTIM_EECR3 register ****************/
MartinJohnson 0:404f5a4f1385 2353 #define HRTIM_EECR3_EE6F ((uint32_t)0x0000000F) /*!< External event 6 filter */
MartinJohnson 0:404f5a4f1385 2354 #define HRTIM_EECR3_EE6F_0 ((uint32_t)0x00000001) /*!< External event 6 filter bit 0 */
MartinJohnson 0:404f5a4f1385 2355 #define HRTIM_EECR3_EE6F_1 ((uint32_t)0x00000002) /*!< External event 6 filter bit 1 */
MartinJohnson 0:404f5a4f1385 2356 #define HRTIM_EECR3_EE6F_2 ((uint32_t)0x00000004) /*!< External event 6 filter bit 2 */
MartinJohnson 0:404f5a4f1385 2357 #define HRTIM_EECR3_EE6F_3 ((uint32_t)0x00000008) /*!< External event 6 filter bit 3 */
MartinJohnson 0:404f5a4f1385 2358 #define HRTIM_EECR3_EE7F ((uint32_t)0x000003C0) /*!< External event 7 filter */
MartinJohnson 0:404f5a4f1385 2359 #define HRTIM_EECR3_EE7F_0 ((uint32_t)0x00000040) /*!< External event 7 filter bit 0 */
MartinJohnson 0:404f5a4f1385 2360 #define HRTIM_EECR3_EE7F_1 ((uint32_t)0x00000080) /*!< External event 7 filter bit 1 */
MartinJohnson 0:404f5a4f1385 2361 #define HRTIM_EECR3_EE7F_2 ((uint32_t)0x00000100) /*!< External event 7 filter bit 2 */
MartinJohnson 0:404f5a4f1385 2362 #define HRTIM_EECR3_EE7F_3 ((uint32_t)0x00000200) /*!< External event 7 filter bit 3 */
MartinJohnson 0:404f5a4f1385 2363 #define HRTIM_EECR3_EE8F ((uint32_t)0x0000F000) /*!< External event 8 filter */
MartinJohnson 0:404f5a4f1385 2364 #define HRTIM_EECR3_EE8F_0 ((uint32_t)0x00001000) /*!< External event 8 filter bit 0 */
MartinJohnson 0:404f5a4f1385 2365 #define HRTIM_EECR3_EE8F_1 ((uint32_t)0x00002000) /*!< External event 8 filter bit 1 */
MartinJohnson 0:404f5a4f1385 2366 #define HRTIM_EECR3_EE8F_2 ((uint32_t)0x00004000) /*!< External event 8 filter bit 2 */
MartinJohnson 0:404f5a4f1385 2367 #define HRTIM_EECR3_EE8F_3 ((uint32_t)0x00008000) /*!< External event 8 filter bit 3 */
MartinJohnson 0:404f5a4f1385 2368 #define HRTIM_EECR3_EE9F ((uint32_t)0x003C0000) /*!< External event 9 filter */
MartinJohnson 0:404f5a4f1385 2369 #define HRTIM_EECR3_EE9F_0 ((uint32_t)0x00040000) /*!< External event 9 filter bit 0 */
MartinJohnson 0:404f5a4f1385 2370 #define HRTIM_EECR3_EE9F_1 ((uint32_t)0x00080000) /*!< External event 9 filter bit 1 */
MartinJohnson 0:404f5a4f1385 2371 #define HRTIM_EECR3_EE9F_2 ((uint32_t)0x00100000) /*!< External event 9 filter bit 2 */
MartinJohnson 0:404f5a4f1385 2372 #define HRTIM_EECR3_EE9F_3 ((uint32_t)0x00200000) /*!< External event 9 filter bit 3 */
MartinJohnson 0:404f5a4f1385 2373 #define HRTIM_EECR3_EE10F ((uint32_t)0x0F000000) /*!< External event 10 filter */
MartinJohnson 0:404f5a4f1385 2374 #define HRTIM_EECR3_EE10F_0 ((uint32_t)0x01000000) /*!< External event 10 filter bit 0 */
MartinJohnson 0:404f5a4f1385 2375 #define HRTIM_EECR3_EE10F_1 ((uint32_t)0x02000000) /*!< External event 10 filter bit 1 */
MartinJohnson 0:404f5a4f1385 2376 #define HRTIM_EECR3_EE10F_2 ((uint32_t)0x04000000) /*!< External event 10 filter bit 2 */
MartinJohnson 0:404f5a4f1385 2377 #define HRTIM_EECR3_EE10F_3 ((uint32_t)0x08000000) /*!< External event 10 filter bit 3 */
MartinJohnson 0:404f5a4f1385 2378 #define HRTIM_EECR3_EEVSD ((uint32_t)0xC0000000) /*!< External event sampling clock division */
MartinJohnson 0:404f5a4f1385 2379 #define HRTIM_EECR3_EEVSD_0 ((uint32_t)0x40000000) /*!< External event sampling clock division bit 0 */
MartinJohnson 0:404f5a4f1385 2380 #define HRTIM_EECR3_EEVSD_1 ((uint32_t)0x80000000) /*!< External event sampling clock division bit 1 */
MartinJohnson 0:404f5a4f1385 2381
MartinJohnson 0:404f5a4f1385 2382 /******************* Bit definition for HRTIM_ADC1R register ****************/
MartinJohnson 0:404f5a4f1385 2383 #define HRTIM_ADC1R_AD1MC1 ((uint32_t)0x00000001) /*!< ADC Trigger 1 on master compare 1 */
MartinJohnson 0:404f5a4f1385 2384 #define HRTIM_ADC1R_AD1MC2 ((uint32_t)0x00000002) /*!< ADC Trigger 1 on master compare 2 */
MartinJohnson 0:404f5a4f1385 2385 #define HRTIM_ADC1R_AD1MC3 ((uint32_t)0x00000004) /*!< ADC Trigger 1 on master compare 3 */
MartinJohnson 0:404f5a4f1385 2386 #define HRTIM_ADC1R_AD1MC4 ((uint32_t)0x00000008) /*!< ADC Trigger 1 on master compare 4 */
MartinJohnson 0:404f5a4f1385 2387 #define HRTIM_ADC1R_AD1MPER ((uint32_t)0x00000010) /*!< ADC Trigger 1 on master period */
MartinJohnson 0:404f5a4f1385 2388 #define HRTIM_ADC1R_AD1EEV1 ((uint32_t)0x00000020) /*!< ADC Trigger 1 on external event 1 */
MartinJohnson 0:404f5a4f1385 2389 #define HRTIM_ADC1R_AD1EEV2 ((uint32_t)0x00000040) /*!< ADC Trigger 1 on external event 2 */
MartinJohnson 0:404f5a4f1385 2390 #define HRTIM_ADC1R_AD1EEV3 ((uint32_t)0x00000080) /*!< ADC Trigger 1 on external event 3 */
MartinJohnson 0:404f5a4f1385 2391 #define HRTIM_ADC1R_AD1EEV4 ((uint32_t)0x00000100) /*!< ADC Trigger 1 on external event 4 */
MartinJohnson 0:404f5a4f1385 2392 #define HRTIM_ADC1R_AD1EEV5 ((uint32_t)0x00000200) /*!< ADC Trigger 1 on external event 5 */
MartinJohnson 0:404f5a4f1385 2393 #define HRTIM_ADC1R_AD1TAC2 ((uint32_t)0x00000400) /*!< ADC Trigger 1 on Timer A compare 2 */
MartinJohnson 0:404f5a4f1385 2394 #define HRTIM_ADC1R_AD1TAC3 ((uint32_t)0x00000800) /*!< ADC Trigger 1 on Timer A compare 3 */
MartinJohnson 0:404f5a4f1385 2395 #define HRTIM_ADC1R_AD1TAC4 ((uint32_t)0x00001000) /*!< ADC Trigger 1 on Timer A compare 4 */
MartinJohnson 0:404f5a4f1385 2396 #define HRTIM_ADC1R_AD1TAPER ((uint32_t)0x00002000) /*!< ADC Trigger 1 on Timer A period */
MartinJohnson 0:404f5a4f1385 2397 #define HRTIM_ADC1R_AD1TARST ((uint32_t)0x00004000) /*!< ADC Trigger 1 on Timer A reset */
MartinJohnson 0:404f5a4f1385 2398 #define HRTIM_ADC1R_AD1TBC2 ((uint32_t)0x00008000) /*!< ADC Trigger 1 on Timer B compare 2 */
MartinJohnson 0:404f5a4f1385 2399 #define HRTIM_ADC1R_AD1TBC3 ((uint32_t)0x00010000) /*!< ADC Trigger 1 on Timer B compare 3 */
MartinJohnson 0:404f5a4f1385 2400 #define HRTIM_ADC1R_AD1TBC4 ((uint32_t)0x00020000) /*!< ADC Trigger 1 on Timer B compare 4 */
MartinJohnson 0:404f5a4f1385 2401 #define HRTIM_ADC1R_AD1TBPER ((uint32_t)0x00040000) /*!< ADC Trigger 1 on Timer B period */
MartinJohnson 0:404f5a4f1385 2402 #define HRTIM_ADC1R_AD1TBRST ((uint32_t)0x00080000) /*!< ADC Trigger 1 on Timer B reset */
MartinJohnson 0:404f5a4f1385 2403 #define HRTIM_ADC1R_AD1TCC2 ((uint32_t)0x00100000) /*!< ADC Trigger 1 on Timer C compare 2 */
MartinJohnson 0:404f5a4f1385 2404 #define HRTIM_ADC1R_AD1TCC3 ((uint32_t)0x00200000) /*!< ADC Trigger 1 on Timer C compare 3 */
MartinJohnson 0:404f5a4f1385 2405 #define HRTIM_ADC1R_AD1TCC4 ((uint32_t)0x00400000) /*!< ADC Trigger 1 on Timer C compare 4 */
MartinJohnson 0:404f5a4f1385 2406 #define HRTIM_ADC1R_AD1TCPER ((uint32_t)0x00800000) /*!< ADC Trigger 1 on Timer C period */
MartinJohnson 0:404f5a4f1385 2407 #define HRTIM_ADC1R_AD1TDC2 ((uint32_t)0x01000000) /*!< ADC Trigger 1 on Timer D compare 2 */
MartinJohnson 0:404f5a4f1385 2408 #define HRTIM_ADC1R_AD1TDC3 ((uint32_t)0x02000000) /*!< ADC Trigger 1 on Timer D compare 3 */
MartinJohnson 0:404f5a4f1385 2409 #define HRTIM_ADC1R_AD1TDC4 ((uint32_t)0x04000000) /*!< ADC Trigger 1 on Timer D compare 4 */
MartinJohnson 0:404f5a4f1385 2410 #define HRTIM_ADC1R_AD1TDPER ((uint32_t)0x08000000) /*!< ADC Trigger 1 on Timer D period */
MartinJohnson 0:404f5a4f1385 2411 #define HRTIM_ADC1R_AD1TEC2 ((uint32_t)0x10000000) /*!< ADC Trigger 1 on Timer E compare 2 */
MartinJohnson 0:404f5a4f1385 2412 #define HRTIM_ADC1R_AD1TEC3 ((uint32_t)0x20000000) /*!< ADC Trigger 1 on Timer E compare 3 */
MartinJohnson 0:404f5a4f1385 2413 #define HRTIM_ADC1R_AD1TEC4 ((uint32_t)0x40000000) /*!< ADC Trigger 1 on Timer E compare 4 */
MartinJohnson 0:404f5a4f1385 2414 #define HRTIM_ADC1R_AD1TEPER ((uint32_t)0x80000000) /*!< ADC Trigger 1 on Timer E period */
MartinJohnson 0:404f5a4f1385 2415
MartinJohnson 0:404f5a4f1385 2416 /******************* Bit definition for HRTIM_ADC2R register ****************/
MartinJohnson 0:404f5a4f1385 2417 #define HRTIM_ADC2R_AD2MC1 ((uint32_t)0x00000001) /*!< ADC Trigger 2 on master compare 1 */
MartinJohnson 0:404f5a4f1385 2418 #define HRTIM_ADC2R_AD2MC2 ((uint32_t)0x00000002) /*!< ADC Trigger 2 on master compare 2 */
MartinJohnson 0:404f5a4f1385 2419 #define HRTIM_ADC2R_AD2MC3 ((uint32_t)0x00000004) /*!< ADC Trigger 2 on master compare 3 */
MartinJohnson 0:404f5a4f1385 2420 #define HRTIM_ADC2R_AD2MC4 ((uint32_t)0x00000008) /*!< ADC Trigger 2 on master compare 4 */
MartinJohnson 0:404f5a4f1385 2421 #define HRTIM_ADC2R_AD2MPER ((uint32_t)0x00000010) /*!< ADC Trigger 2 on master period */
MartinJohnson 0:404f5a4f1385 2422 #define HRTIM_ADC2R_AD2EEV6 ((uint32_t)0x00000020) /*!< ADC Trigger 2 on external event 6 */
MartinJohnson 0:404f5a4f1385 2423 #define HRTIM_ADC2R_AD2EEV7 ((uint32_t)0x00000040) /*!< ADC Trigger 2 on external event 7 */
MartinJohnson 0:404f5a4f1385 2424 #define HRTIM_ADC2R_AD2EEV8 ((uint32_t)0x00000080) /*!< ADC Trigger 2 on external event 8 */
MartinJohnson 0:404f5a4f1385 2425 #define HRTIM_ADC2R_AD2EEV9 ((uint32_t)0x00000100) /*!< ADC Trigger 2 on external event 9 */
MartinJohnson 0:404f5a4f1385 2426 #define HRTIM_ADC2R_AD2EEV10 ((uint32_t)0x00000200) /*!< ADC Trigger 2 on external event 10 */
MartinJohnson 0:404f5a4f1385 2427 #define HRTIM_ADC2R_AD2TAC2 ((uint32_t)0x00000400) /*!< ADC Trigger 2 on Timer A compare 2 */
MartinJohnson 0:404f5a4f1385 2428 #define HRTIM_ADC2R_AD2TAC3 ((uint32_t)0x00000800) /*!< ADC Trigger 2 on Timer A compare 3 */
MartinJohnson 0:404f5a4f1385 2429 #define HRTIM_ADC2R_AD2TAC4 ((uint32_t)0x00001000) /*!< ADC Trigger 2 on Timer A compare 4*/
MartinJohnson 0:404f5a4f1385 2430 #define HRTIM_ADC2R_AD2TAPER ((uint32_t)0x00002000) /*!< ADC Trigger 2 on Timer A period */
MartinJohnson 0:404f5a4f1385 2431 #define HRTIM_ADC2R_AD2TBC2 ((uint32_t)0x00004000) /*!< ADC Trigger 2 on Timer B compare 2 */
MartinJohnson 0:404f5a4f1385 2432 #define HRTIM_ADC2R_AD2TBC3 ((uint32_t)0x00008000) /*!< ADC Trigger 2 on Timer B compare 3 */
MartinJohnson 0:404f5a4f1385 2433 #define HRTIM_ADC2R_AD2TBC4 ((uint32_t)0x00010000) /*!< ADC Trigger 2 on Timer B compare 4 */
MartinJohnson 0:404f5a4f1385 2434 #define HRTIM_ADC2R_AD2TBPER ((uint32_t)0x00020000) /*!< ADC Trigger 2 on Timer B period */
MartinJohnson 0:404f5a4f1385 2435 #define HRTIM_ADC2R_AD2TCC2 ((uint32_t)0x00040000) /*!< ADC Trigger 2 on Timer C compare 2 */
MartinJohnson 0:404f5a4f1385 2436 #define HRTIM_ADC2R_AD2TCC3 ((uint32_t)0x00080000) /*!< ADC Trigger 2 on Timer C compare 3 */
MartinJohnson 0:404f5a4f1385 2437 #define HRTIM_ADC2R_AD2TCC4 ((uint32_t)0x00100000) /*!< ADC Trigger 2 on Timer C compare 4 */
MartinJohnson 0:404f5a4f1385 2438 #define HRTIM_ADC2R_AD2TCPER ((uint32_t)0x00200000) /*!< ADC Trigger 2 on Timer C period */
MartinJohnson 0:404f5a4f1385 2439 #define HRTIM_ADC2R_AD2TCRST ((uint32_t)0x00400000) /*!< ADC Trigger 2 on Timer C reset */
MartinJohnson 0:404f5a4f1385 2440 #define HRTIM_ADC2R_AD2TDC2 ((uint32_t)0x00800000) /*!< ADC Trigger 2 on Timer D compare 2 */
MartinJohnson 0:404f5a4f1385 2441 #define HRTIM_ADC2R_AD2TDC3 ((uint32_t)0x01000000) /*!< ADC Trigger 2 on Timer D compare 3 */
MartinJohnson 0:404f5a4f1385 2442 #define HRTIM_ADC2R_AD2TDC4 ((uint32_t)0x02000000) /*!< ADC Trigger 2 on Timer D compare 4*/
MartinJohnson 0:404f5a4f1385 2443 #define HRTIM_ADC2R_AD2TDPER ((uint32_t)0x04000000) /*!< ADC Trigger 2 on Timer D period */
MartinJohnson 0:404f5a4f1385 2444 #define HRTIM_ADC2R_AD2TDRST ((uint32_t)0x08000000) /*!< ADC Trigger 2 on Timer D reset */
MartinJohnson 0:404f5a4f1385 2445 #define HRTIM_ADC2R_AD2TEC2 ((uint32_t)0x10000000) /*!< ADC Trigger 2 on Timer E compare 2 */
MartinJohnson 0:404f5a4f1385 2446 #define HRTIM_ADC2R_AD2TEC3 ((uint32_t)0x20000000) /*!< ADC Trigger 2 on Timer E compare 3 */
MartinJohnson 0:404f5a4f1385 2447 #define HRTIM_ADC2R_AD2TEC4 ((uint32_t)0x40000000) /*!< ADC Trigger 2 on Timer E compare 4 */
MartinJohnson 0:404f5a4f1385 2448 #define HRTIM_ADC2R_AD2TERST ((uint32_t)0x80000000) /*!< ADC Trigger 2 on Timer E reset */
MartinJohnson 0:404f5a4f1385 2449
MartinJohnson 0:404f5a4f1385 2450 /******************* Bit definition for HRTIM_ADC3R register ****************/
MartinJohnson 0:404f5a4f1385 2451 #define HRTIM_ADC3R_AD3MC1 ((uint32_t)0x00000001) /*!< ADC Trigger 3 on master compare 1 */
MartinJohnson 0:404f5a4f1385 2452 #define HRTIM_ADC3R_AD3MC2 ((uint32_t)0x00000002) /*!< ADC Trigger 3 on master compare 2 */
MartinJohnson 0:404f5a4f1385 2453 #define HRTIM_ADC3R_AD3MC3 ((uint32_t)0x00000004) /*!< ADC Trigger 3 on master compare 3 */
MartinJohnson 0:404f5a4f1385 2454 #define HRTIM_ADC3R_AD3MC4 ((uint32_t)0x00000008) /*!< ADC Trigger 3 on master compare 4 */
MartinJohnson 0:404f5a4f1385 2455 #define HRTIM_ADC3R_AD3MPER ((uint32_t)0x00000010) /*!< ADC Trigger 3 on master period */
MartinJohnson 0:404f5a4f1385 2456 #define HRTIM_ADC3R_AD3EEV1 ((uint32_t)0x00000020) /*!< ADC Trigger 3 on external event 1 */
MartinJohnson 0:404f5a4f1385 2457 #define HRTIM_ADC3R_AD3EEV2 ((uint32_t)0x00000040) /*!< ADC Trigger 3 on external event 2 */
MartinJohnson 0:404f5a4f1385 2458 #define HRTIM_ADC3R_AD3EEV3 ((uint32_t)0x00000080) /*!< ADC Trigger 3 on external event 3 */
MartinJohnson 0:404f5a4f1385 2459 #define HRTIM_ADC3R_AD3EEV4 ((uint32_t)0x00000100) /*!< ADC Trigger 3 on external event 4 */
MartinJohnson 0:404f5a4f1385 2460 #define HRTIM_ADC3R_AD3EEV5 ((uint32_t)0x00000200) /*!< ADC Trigger 3 on external event 5 */
MartinJohnson 0:404f5a4f1385 2461 #define HRTIM_ADC3R_AD3TAC2 ((uint32_t)0x00000400) /*!< ADC Trigger 3 on Timer A compare 2 */
MartinJohnson 0:404f5a4f1385 2462 #define HRTIM_ADC3R_AD3TAC3 ((uint32_t)0x00000800) /*!< ADC Trigger 3 on Timer A compare 3 */
MartinJohnson 0:404f5a4f1385 2463 #define HRTIM_ADC3R_AD3TAC4 ((uint32_t)0x00001000) /*!< ADC Trigger 3 on Timer A compare 4 */
MartinJohnson 0:404f5a4f1385 2464 #define HRTIM_ADC3R_AD3TAPER ((uint32_t)0x00002000) /*!< ADC Trigger 3 on Timer A period */
MartinJohnson 0:404f5a4f1385 2465 #define HRTIM_ADC3R_AD3TARST ((uint32_t)0x00004000) /*!< ADC Trigger 3 on Timer A reset */
MartinJohnson 0:404f5a4f1385 2466 #define HRTIM_ADC3R_AD3TBC2 ((uint32_t)0x00008000) /*!< ADC Trigger 3 on Timer B compare 2 */
MartinJohnson 0:404f5a4f1385 2467 #define HRTIM_ADC3R_AD3TBC3 ((uint32_t)0x00010000) /*!< ADC Trigger 3 on Timer B compare 3 */
MartinJohnson 0:404f5a4f1385 2468 #define HRTIM_ADC3R_AD3TBC4 ((uint32_t)0x00020000) /*!< ADC Trigger 3 on Timer B compare 4 */
MartinJohnson 0:404f5a4f1385 2469 #define HRTIM_ADC3R_AD3TBPER ((uint32_t)0x00040000) /*!< ADC Trigger 3 on Timer B period */
MartinJohnson 0:404f5a4f1385 2470 #define HRTIM_ADC3R_AD3TBRST ((uint32_t)0x00080000) /*!< ADC Trigger 3 on Timer B reset */
MartinJohnson 0:404f5a4f1385 2471 #define HRTIM_ADC3R_AD3TCC2 ((uint32_t)0x00100000) /*!< ADC Trigger 3 on Timer C compare 2 */
MartinJohnson 0:404f5a4f1385 2472 #define HRTIM_ADC3R_AD3TCC3 ((uint32_t)0x00200000) /*!< ADC Trigger 3 on Timer C compare 3 */
MartinJohnson 0:404f5a4f1385 2473 #define HRTIM_ADC3R_AD3TCC4 ((uint32_t)0x00400000) /*!< ADC Trigger 3 on Timer C compare 4 */
MartinJohnson 0:404f5a4f1385 2474 #define HRTIM_ADC3R_AD3TCPER ((uint32_t)0x00800000) /*!< ADC Trigger 3 on Timer C period */
MartinJohnson 0:404f5a4f1385 2475 #define HRTIM_ADC3R_AD3TDC2 ((uint32_t)0x01000000) /*!< ADC Trigger 3 on Timer D compare 2 */
MartinJohnson 0:404f5a4f1385 2476 #define HRTIM_ADC3R_AD3TDC3 ((uint32_t)0x02000000) /*!< ADC Trigger 3 on Timer D compare 3 */
MartinJohnson 0:404f5a4f1385 2477 #define HRTIM_ADC3R_AD3TDC4 ((uint32_t)0x04000000) /*!< ADC Trigger 3 on Timer D compare 4 */
MartinJohnson 0:404f5a4f1385 2478 #define HRTIM_ADC3R_AD3TDPER ((uint32_t)0x08000000) /*!< ADC Trigger 3 on Timer D period */
MartinJohnson 0:404f5a4f1385 2479 #define HRTIM_ADC3R_AD3TEC2 ((uint32_t)0x10000000) /*!< ADC Trigger 3 on Timer E compare 2 */
MartinJohnson 0:404f5a4f1385 2480 #define HRTIM_ADC3R_AD3TEC3 ((uint32_t)0x20000000) /*!< ADC Trigger 3 on Timer E compare 3 */
MartinJohnson 0:404f5a4f1385 2481 #define HRTIM_ADC3R_AD3TEC4 ((uint32_t)0x40000000) /*!< ADC Trigger 3 on Timer E compare 4 */
MartinJohnson 0:404f5a4f1385 2482 #define HRTIM_ADC3R_AD3TEPER ((uint32_t)0x80000000) /*!< ADC Trigger 3 on Timer E period */
MartinJohnson 0:404f5a4f1385 2483
MartinJohnson 0:404f5a4f1385 2484 /******************* Bit definition for HRTIM_ADC4R register ****************/
MartinJohnson 0:404f5a4f1385 2485 #define HRTIM_ADC4R_AD4MC1 ((uint32_t)0x00000001) /*!< ADC Trigger 4 on master compare 1 */
MartinJohnson 0:404f5a4f1385 2486 #define HRTIM_ADC4R_AD4MC2 ((uint32_t)0x00000002) /*!< ADC Trigger 4 on master compare 2 */
MartinJohnson 0:404f5a4f1385 2487 #define HRTIM_ADC4R_AD4MC3 ((uint32_t)0x00000004) /*!< ADC Trigger 4 on master compare 3 */
MartinJohnson 0:404f5a4f1385 2488 #define HRTIM_ADC4R_AD4MC4 ((uint32_t)0x00000008) /*!< ADC Trigger 4 on master compare 4 */
MartinJohnson 0:404f5a4f1385 2489 #define HRTIM_ADC4R_AD4MPER ((uint32_t)0x00000010) /*!< ADC Trigger 4 on master period */
MartinJohnson 0:404f5a4f1385 2490 #define HRTIM_ADC4R_AD4EEV6 ((uint32_t)0x00000020) /*!< ADC Trigger 4 on external event 6 */
MartinJohnson 0:404f5a4f1385 2491 #define HRTIM_ADC4R_AD4EEV7 ((uint32_t)0x00000040) /*!< ADC Trigger 4 on external event 7 */
MartinJohnson 0:404f5a4f1385 2492 #define HRTIM_ADC4R_AD4EEV8 ((uint32_t)0x00000080) /*!< ADC Trigger 4 on external event 8 */
MartinJohnson 0:404f5a4f1385 2493 #define HRTIM_ADC4R_AD4EEV9 ((uint32_t)0x00000100) /*!< ADC Trigger 4 on external event 9 */
MartinJohnson 0:404f5a4f1385 2494 #define HRTIM_ADC4R_AD4EEV10 ((uint32_t)0x00000200) /*!< ADC Trigger 4 on external event 10 */
MartinJohnson 0:404f5a4f1385 2495 #define HRTIM_ADC4R_AD4TAC2 ((uint32_t)0x00000400) /*!< ADC Trigger 4 on Timer A compare 2 */
MartinJohnson 0:404f5a4f1385 2496 #define HRTIM_ADC4R_AD4TAC3 ((uint32_t)0x00000800) /*!< ADC Trigger 4 on Timer A compare 3 */
MartinJohnson 0:404f5a4f1385 2497 #define HRTIM_ADC4R_AD4TAC4 ((uint32_t)0x00001000) /*!< ADC Trigger 4 on Timer A compare 4*/
MartinJohnson 0:404f5a4f1385 2498 #define HRTIM_ADC4R_AD4TAPER ((uint32_t)0x00002000) /*!< ADC Trigger 4 on Timer A period */
MartinJohnson 0:404f5a4f1385 2499 #define HRTIM_ADC4R_AD4TBC2 ((uint32_t)0x00004000) /*!< ADC Trigger 4 on Timer B compare 2 */
MartinJohnson 0:404f5a4f1385 2500 #define HRTIM_ADC4R_AD4TBC3 ((uint32_t)0x00008000) /*!< ADC Trigger 4 on Timer B compare 3 */
MartinJohnson 0:404f5a4f1385 2501 #define HRTIM_ADC4R_AD4TBC4 ((uint32_t)0x00010000) /*!< ADC Trigger 4 on Timer B compare 4 */
MartinJohnson 0:404f5a4f1385 2502 #define HRTIM_ADC4R_AD4TBPER ((uint32_t)0x00020000) /*!< ADC Trigger 4 on Timer B period */
MartinJohnson 0:404f5a4f1385 2503 #define HRTIM_ADC4R_AD4TCC2 ((uint32_t)0x00040000) /*!< ADC Trigger 4 on Timer C compare 2 */
MartinJohnson 0:404f5a4f1385 2504 #define HRTIM_ADC4R_AD4TCC3 ((uint32_t)0x00080000) /*!< ADC Trigger 4 on Timer C compare 3 */
MartinJohnson 0:404f5a4f1385 2505 #define HRTIM_ADC4R_AD4TCC4 ((uint32_t)0x00100000) /*!< ADC Trigger 4 on Timer C compare 4 */
MartinJohnson 0:404f5a4f1385 2506 #define HRTIM_ADC4R_AD4TCPER ((uint32_t)0x00200000) /*!< ADC Trigger 4 on Timer C period */
MartinJohnson 0:404f5a4f1385 2507 #define HRTIM_ADC4R_AD4TCRST ((uint32_t)0x00400000) /*!< ADC Trigger 4 on Timer C reset */
MartinJohnson 0:404f5a4f1385 2508 #define HRTIM_ADC4R_AD4TDC2 ((uint32_t)0x00800000) /*!< ADC Trigger 4 on Timer D compare 2 */
MartinJohnson 0:404f5a4f1385 2509 #define HRTIM_ADC4R_AD4TDC3 ((uint32_t)0x01000000) /*!< ADC Trigger 4 on Timer D compare 3 */
MartinJohnson 0:404f5a4f1385 2510 #define HRTIM_ADC4R_AD4TDC4 ((uint32_t)0x02000000) /*!< ADC Trigger 4 on Timer D compare 4*/
MartinJohnson 0:404f5a4f1385 2511 #define HRTIM_ADC4R_AD4TDPER ((uint32_t)0x04000000) /*!< ADC Trigger 4 on Timer D period */
MartinJohnson 0:404f5a4f1385 2512 #define HRTIM_ADC4R_AD4TDRST ((uint32_t)0x08000000) /*!< ADC Trigger 4 on Timer D reset */
MartinJohnson 0:404f5a4f1385 2513 #define HRTIM_ADC4R_AD4TEC2 ((uint32_t)0x10000000) /*!< ADC Trigger 4 on Timer E compare 2 */
MartinJohnson 0:404f5a4f1385 2514 #define HRTIM_ADC4R_AD4TEC3 ((uint32_t)0x20000000) /*!< ADC Trigger 4 on Timer E compare 3 */
MartinJohnson 0:404f5a4f1385 2515 #define HRTIM_ADC4R_AD4TEC4 ((uint32_t)0x40000000) /*!< ADC Trigger 4 on Timer E compare 4 */
MartinJohnson 0:404f5a4f1385 2516 #define HRTIM_ADC4R_AD4TERST ((uint32_t)0x80000000) /*!< ADC Trigger 4 on Timer E reset */
MartinJohnson 0:404f5a4f1385 2517
MartinJohnson 0:404f5a4f1385 2518 /******************* Bit definition for HRTIM_DLLCR register ****************/
MartinJohnson 0:404f5a4f1385 2519 #define HRTIM_DLLCR_CAL ((uint32_t)0x00000001) /*!< DLL calibration start */
MartinJohnson 0:404f5a4f1385 2520 #define HRTIM_DLLCR_CALEN ((uint32_t)0x00000002) /*!< DLL calibration enable */
MartinJohnson 0:404f5a4f1385 2521 #define HRTIM_DLLCR_CALRTE ((uint32_t)0x0000000C) /*!< DLL calibration rate */
MartinJohnson 0:404f5a4f1385 2522 #define HRTIM_DLLCR_CALRTE_0 ((uint32_t)0x00000004) /*!< DLL calibration rate bit 0 */
MartinJohnson 0:404f5a4f1385 2523 #define HRTIM_DLLCR_CALRTE_1 ((uint32_t)0x00000008) /*!< DLL calibration rate bit 1 */
MartinJohnson 0:404f5a4f1385 2524
MartinJohnson 0:404f5a4f1385 2525 /******************* Bit definition for HRTIM_FLTINR1 register ***************/
MartinJohnson 0:404f5a4f1385 2526 #define HRTIM_FLTINR1_FLT1E ((uint32_t)0x00000001) /*!< Fault 1 enable */
MartinJohnson 0:404f5a4f1385 2527 #define HRTIM_FLTINR1_FLT1P ((uint32_t)0x00000002) /*!< Fault 1 polarity */
MartinJohnson 0:404f5a4f1385 2528 #define HRTIM_FLTINR1_FLT1SRC ((uint32_t)0x00000004) /*!< Fault 1 source */
MartinJohnson 0:404f5a4f1385 2529 #define HRTIM_FLTINR1_FLT1F ((uint32_t)0x00000078) /*!< Fault 1 filter */
MartinJohnson 0:404f5a4f1385 2530 #define HRTIM_FLTINR1_FLT1F_0 ((uint32_t)0x00000008) /*!< Fault 1 filter bit 0 */
MartinJohnson 0:404f5a4f1385 2531 #define HRTIM_FLTINR1_FLT1F_1 ((uint32_t)0x00000010) /*!< Fault 1 filter bit 1 */
MartinJohnson 0:404f5a4f1385 2532 #define HRTIM_FLTINR1_FLT1F_2 ((uint32_t)0x00000020) /*!< Fault 1 filter bit 2 */
MartinJohnson 0:404f5a4f1385 2533 #define HRTIM_FLTINR1_FLT1F_3 ((uint32_t)0x00000040) /*!< Fault 1 filter bit 3 */
MartinJohnson 0:404f5a4f1385 2534 #define HRTIM_FLTINR1_FLT1LCK ((uint32_t)0x00000080) /*!< Fault 1 lock */
MartinJohnson 0:404f5a4f1385 2535
MartinJohnson 0:404f5a4f1385 2536 #define HRTIM_FLTINR1_FLT2E ((uint32_t)0x00000100) /*!< Fault 2 enable */
MartinJohnson 0:404f5a4f1385 2537 #define HRTIM_FLTINR1_FLT2P ((uint32_t)0x00000200) /*!< Fault 2 polarity */
MartinJohnson 0:404f5a4f1385 2538 #define HRTIM_FLTINR1_FLT2SRC ((uint32_t)0x00000400) /*!< Fault 2 source */
MartinJohnson 0:404f5a4f1385 2539 #define HRTIM_FLTINR1_FLT2F ((uint32_t)0x00007800) /*!< Fault 2 filter */
MartinJohnson 0:404f5a4f1385 2540 #define HRTIM_FLTINR1_FLT2F_0 ((uint32_t)0x00000800) /*!< Fault 2 filter bit 0 */
MartinJohnson 0:404f5a4f1385 2541 #define HRTIM_FLTINR1_FLT2F_1 ((uint32_t)0x00001000) /*!< Fault 2 filter bit 1 */
MartinJohnson 0:404f5a4f1385 2542 #define HRTIM_FLTINR1_FLT2F_2 ((uint32_t)0x00002000) /*!< Fault 2 filter bit 2 */
MartinJohnson 0:404f5a4f1385 2543 #define HRTIM_FLTINR1_FLT2F_3 ((uint32_t)0x00004000) /*!< Fault 2 filter bit 3 */
MartinJohnson 0:404f5a4f1385 2544 #define HRTIM_FLTINR1_FLT2LCK ((uint32_t)0x00008000) /*!< Fault 2 lock */
MartinJohnson 0:404f5a4f1385 2545
MartinJohnson 0:404f5a4f1385 2546 #define HRTIM_FLTINR1_FLT3E ((uint32_t)0x00010000) /*!< Fault 3 enable */
MartinJohnson 0:404f5a4f1385 2547 #define HRTIM_FLTINR1_FLT3P ((uint32_t)0x00020000) /*!< Fault 3 polarity */
MartinJohnson 0:404f5a4f1385 2548 #define HRTIM_FLTINR1_FLT3SRC ((uint32_t)0x00040000) /*!< Fault 3 source */
MartinJohnson 0:404f5a4f1385 2549 #define HRTIM_FLTINR1_FLT3F ((uint32_t)0x00780000) /*!< Fault 3 filter */
MartinJohnson 0:404f5a4f1385 2550 #define HRTIM_FLTINR1_FLT3F_0 ((uint32_t)0x00080000) /*!< Fault 3 filter bit 0 */
MartinJohnson 0:404f5a4f1385 2551 #define HRTIM_FLTINR1_FLT3F_1 ((uint32_t)0x00100000) /*!< Fault 3 filter bit 1 */
MartinJohnson 0:404f5a4f1385 2552 #define HRTIM_FLTINR1_FLT3F_2 ((uint32_t)0x00200000) /*!< Fault 3 filter bit 2 */
MartinJohnson 0:404f5a4f1385 2553 #define HRTIM_FLTINR1_FLT3F_3 ((uint32_t)0x00400000) /*!< Fault 3 filter bit 3 */
MartinJohnson 0:404f5a4f1385 2554 #define HRTIM_FLTINR1_FLT3LCK ((uint32_t)0x00800000) /*!< Fault 3 lock */
MartinJohnson 0:404f5a4f1385 2555
MartinJohnson 0:404f5a4f1385 2556 #define HRTIM_FLTINR1_FLT4E ((uint32_t)0x01000000) /*!< Fault 4 enable */
MartinJohnson 0:404f5a4f1385 2557 #define HRTIM_FLTINR1_FLT4P ((uint32_t)0x02000000) /*!< Fault 4 polarity */
MartinJohnson 0:404f5a4f1385 2558 #define HRTIM_FLTINR1_FLT4SRC ((uint32_t)0x04000000) /*!< Fault 4 source */
MartinJohnson 0:404f5a4f1385 2559 #define HRTIM_FLTINR1_FLT4F ((uint32_t)0x78000000) /*!< Fault 4 filter */
MartinJohnson 0:404f5a4f1385 2560 #define HRTIM_FLTINR1_FLT4F_0 ((uint32_t)0x08000000) /*!< Fault 4 filter bit 0 */
MartinJohnson 0:404f5a4f1385 2561 #define HRTIM_FLTINR1_FLT4F_1 ((uint32_t)0x10000000) /*!< Fault 4 filter bit 1 */
MartinJohnson 0:404f5a4f1385 2562 #define HRTIM_FLTINR1_FLT4F_2 ((uint32_t)0x20000000) /*!< Fault 4 filter bit 2 */
MartinJohnson 0:404f5a4f1385 2563 #define HRTIM_FLTINR1_FLT4F_3 ((uint32_t)0x40000000) /*!< Fault 4 filter bit 3 */
MartinJohnson 0:404f5a4f1385 2564 #define HRTIM_FLTINR1_FLT4LCK ((uint32_t)0x80000000) /*!< Fault 4 lock */
MartinJohnson 0:404f5a4f1385 2565
MartinJohnson 0:404f5a4f1385 2566 /******************* Bit definition for HRTIM_FLTINR2 register ***************/
MartinJohnson 0:404f5a4f1385 2567 #define HRTIM_FLTINR2_FLT5E ((uint32_t)0x00000001) /*!< Fault 5 enable */
MartinJohnson 0:404f5a4f1385 2568 #define HRTIM_FLTINR2_FLT5P ((uint32_t)0x00000002) /*!< Fault 5 polarity */
MartinJohnson 0:404f5a4f1385 2569 #define HRTIM_FLTINR2_FLT5SRC ((uint32_t)0x00000004) /*!< Fault 5 source */
MartinJohnson 0:404f5a4f1385 2570 #define HRTIM_FLTINR2_FLT5F ((uint32_t)0x00000078) /*!< Fault 5 filter */
MartinJohnson 0:404f5a4f1385 2571 #define HRTIM_FLTINR2_FLT5F_0 ((uint32_t)0x00000008) /*!< Fault 5 filter bit 0 */
MartinJohnson 0:404f5a4f1385 2572 #define HRTIM_FLTINR2_FLT5F_1 ((uint32_t)0x00000010) /*!< Fault 5 filter bit 1 */
MartinJohnson 0:404f5a4f1385 2573 #define HRTIM_FLTINR2_FLT5F_2 ((uint32_t)0x00000020) /*!< Fault 5 filter bit 2 */
MartinJohnson 0:404f5a4f1385 2574 #define HRTIM_FLTINR2_FLT5F_3 ((uint32_t)0x00000040) /*!< Fault 5 filter bit 3 */
MartinJohnson 0:404f5a4f1385 2575 #define HRTIM_FLTINR2_FLT5LCK ((uint32_t)0x00000080) /*!< Fault 5 lock */
MartinJohnson 0:404f5a4f1385 2576 #define HRTIM_FLTINR2_FLTSD ((uint32_t)0x03000000) /*!< Fault sampling clock division */
MartinJohnson 0:404f5a4f1385 2577 #define HRTIM_FLTINR2_FLTSD_0 ((uint32_t)0x01000000) /*!< Fault sampling clock division bit 0 */
MartinJohnson 0:404f5a4f1385 2578 #define HRTIM_FLTINR2_FLTSD_1 ((uint32_t)0x02000000) /*!< Fault sampling clock division bit 1 */
MartinJohnson 0:404f5a4f1385 2579
MartinJohnson 0:404f5a4f1385 2580 /******************* Bit definition for HRTIM_BDMUPR register ***************/
MartinJohnson 0:404f5a4f1385 2581 #define HRTIM_BDMUPR_MCR ((uint32_t)0x00000001) /*!< MCR register update enable */
MartinJohnson 0:404f5a4f1385 2582 #define HRTIM_BDMUPR_MICR ((uint32_t)0x00000002) /*!< MICR register update enable */
MartinJohnson 0:404f5a4f1385 2583 #define HRTIM_BDMUPR_MDIER ((uint32_t)0x00000004) /*!< MDIER register update enable */
MartinJohnson 0:404f5a4f1385 2584 #define HRTIM_BDMUPR_MCNT ((uint32_t)0x00000008) /*!< MCNT register update enable */
MartinJohnson 0:404f5a4f1385 2585 #define HRTIM_BDMUPR_MPER ((uint32_t)0x00000010) /*!< MPER register update enable */
MartinJohnson 0:404f5a4f1385 2586 #define HRTIM_BDMUPR_MREP ((uint32_t)0x00000020) /*!< MREP register update enable */
MartinJohnson 0:404f5a4f1385 2587 #define HRTIM_BDMUPR_MCMP1 ((uint32_t)0x00000040) /*!< MCMP1 register update enable */
MartinJohnson 0:404f5a4f1385 2588 #define HRTIM_BDMUPR_MCMP2 ((uint32_t)0x00000080) /*!< MCMP2 register update enable */
MartinJohnson 0:404f5a4f1385 2589 #define HRTIM_BDMUPR_MCMP3 ((uint32_t)0x00000100) /*!< MCMP3 register update enable */
MartinJohnson 0:404f5a4f1385 2590 #define HRTIM_BDMUPR_MCMP4 ((uint32_t)0x00000200) /*!< MPCMP4 register update enable */
MartinJohnson 0:404f5a4f1385 2591
MartinJohnson 0:404f5a4f1385 2592 /******************* Bit definition for HRTIM_BDTUPR register ***************/
MartinJohnson 0:404f5a4f1385 2593 #define HRTIM_BDTUPR_TIMCR ((uint32_t)0x00000001) /*!< TIMCR register update enable */
MartinJohnson 0:404f5a4f1385 2594 #define HRTIM_BDTUPR_TIMICR ((uint32_t)0x00000002) /*!< TIMICR register update enable */
MartinJohnson 0:404f5a4f1385 2595 #define HRTIM_BDTUPR_TIMDIER ((uint32_t)0x00000004) /*!< TIMDIER register update enable */
MartinJohnson 0:404f5a4f1385 2596 #define HRTIM_BDTUPR_TIMCNT ((uint32_t)0x00000008) /*!< TIMCNT register update enable */
MartinJohnson 0:404f5a4f1385 2597 #define HRTIM_BDTUPR_TIMPER ((uint32_t)0x00000010) /*!< TIMPER register update enable */
MartinJohnson 0:404f5a4f1385 2598 #define HRTIM_BDTUPR_TIMREP ((uint32_t)0x00000020) /*!< TIMREP register update enable */
MartinJohnson 0:404f5a4f1385 2599 #define HRTIM_BDTUPR_TIMCMP1 ((uint32_t)0x00000040) /*!< TIMCMP1 register update enable */
MartinJohnson 0:404f5a4f1385 2600 #define HRTIM_BDTUPR_TIMCMP2 ((uint32_t)0x00000080) /*!< TIMCMP2 register update enable */
MartinJohnson 0:404f5a4f1385 2601 #define HRTIM_BDTUPR_TIMCMP3 ((uint32_t)0x00000100) /*!< TIMCMP3 register update enable */
MartinJohnson 0:404f5a4f1385 2602 #define HRTIM_BDTUPR_TIMCMP4 ((uint32_t)0x00000200) /*!< TIMCMP4 register update enable */
MartinJohnson 0:404f5a4f1385 2603 #define HRTIM_BDTUPR_TIMDTR ((uint32_t)0x00000400) /*!< TIMDTR register update enable */
MartinJohnson 0:404f5a4f1385 2604 #define HRTIM_BDTUPR_TIMSET1R ((uint32_t)0x00000800) /*!< TIMSET1R register update enable */
MartinJohnson 0:404f5a4f1385 2605 #define HRTIM_BDTUPR_TIMRST1R ((uint32_t)0x00001000) /*!< TIMRST1R register update enable */
MartinJohnson 0:404f5a4f1385 2606 #define HRTIM_BDTUPR_TIMSET2R ((uint32_t)0x00002000) /*!< TIMSET2R register update enable */
MartinJohnson 0:404f5a4f1385 2607 #define HRTIM_BDTUPR_TIMRST2R ((uint32_t)0x00004000) /*!< TIMRST2R register update enable */
MartinJohnson 0:404f5a4f1385 2608 #define HRTIM_BDTUPR_TIMEEFR1 ((uint32_t)0x00008000) /*!< TIMEEFR1 register update enable */
MartinJohnson 0:404f5a4f1385 2609 #define HRTIM_BDTUPR_TIMEEFR2 ((uint32_t)0x00010000) /*!< TIMEEFR2 register update enable */
MartinJohnson 0:404f5a4f1385 2610 #define HRTIM_BDTUPR_TIMRSTR ((uint32_t)0x00020000) /*!< TIMRSTR register update enable */
MartinJohnson 0:404f5a4f1385 2611 #define HRTIM_BDTUPR_TIMCHPR ((uint32_t)0x00040000) /*!< TIMCHPR register update enable */
MartinJohnson 0:404f5a4f1385 2612 #define HRTIM_BDTUPR_TIMOUTR ((uint32_t)0x00080000) /*!< TIMOUTR register update enable */
MartinJohnson 0:404f5a4f1385 2613 #define HRTIM_BDTUPR_TIMFLTR ((uint32_t)0x00100000) /*!< TIMFLTR register update enable */
MartinJohnson 0:404f5a4f1385 2614
MartinJohnson 0:404f5a4f1385 2615 /******************* Bit definition for HRTIM_BDMADR register ***************/
MartinJohnson 0:404f5a4f1385 2616 #define HRTIM_BDMADR_BDMADR ((uint32_t)0xFFFFFFFF) /*!< Burst DMA Data register */
MartinJohnson 0:404f5a4f1385 2617
MartinJohnson 0:404f5a4f1385 2618 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 2619 /* */
MartinJohnson 0:404f5a4f1385 2620 /* Analog to Digital Converter SAR (ADC) */
MartinJohnson 0:404f5a4f1385 2621 /* */
MartinJohnson 0:404f5a4f1385 2622 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 2623 /******************** Bit definition for ADC_ISR register ********************/
MartinJohnson 0:404f5a4f1385 2624 #define ADC_ISR_ADRD ((uint32_t)0x00000001) /*!< ADC Ready (ADRDY) flag */
MartinJohnson 0:404f5a4f1385 2625 #define ADC_ISR_EOSMP ((uint32_t)0x00000002) /*!< ADC End of Sampling flag */
MartinJohnson 0:404f5a4f1385 2626 #define ADC_ISR_EOC ((uint32_t)0x00000004) /*!< ADC End of Regular Conversion flag */
MartinJohnson 0:404f5a4f1385 2627 #define ADC_ISR_EOS ((uint32_t)0x00000008) /*!< ADC End of Regular sequence of Conversions flag */
MartinJohnson 0:404f5a4f1385 2628 #define ADC_ISR_OVR ((uint32_t)0x00000010) /*!< ADC overrun flag */
MartinJohnson 0:404f5a4f1385 2629 #define ADC_ISR_JEOC ((uint32_t)0x00000020) /*!< ADC End of Injected Conversion flag */
MartinJohnson 0:404f5a4f1385 2630 #define ADC_ISR_JEOS ((uint32_t)0x00000040) /*!< ADC End of Injected sequence of Conversions flag */
MartinJohnson 0:404f5a4f1385 2631 #define ADC_ISR_AWD1 ((uint32_t)0x00000080) /*!< ADC Analog watchdog 1 flag */
MartinJohnson 0:404f5a4f1385 2632 #define ADC_ISR_AWD2 ((uint32_t)0x00000100) /*!< ADC Analog watchdog 2 flag */
MartinJohnson 0:404f5a4f1385 2633 #define ADC_ISR_AWD3 ((uint32_t)0x00000200) /*!< ADC Analog watchdog 3 flag */
MartinJohnson 0:404f5a4f1385 2634 #define ADC_ISR_JQOVF ((uint32_t)0x00000400) /*!< ADC Injected Context Queue Overflow flag */
MartinJohnson 0:404f5a4f1385 2635
MartinJohnson 0:404f5a4f1385 2636 /******************** Bit definition for ADC_IER register ********************/
MartinJohnson 0:404f5a4f1385 2637 #define ADC_IER_RDY ((uint32_t)0x00000001) /*!< ADC Ready (ADRDY) interrupt source */
MartinJohnson 0:404f5a4f1385 2638 #define ADC_IER_EOSMP ((uint32_t)0x00000002) /*!< ADC End of Sampling interrupt source */
MartinJohnson 0:404f5a4f1385 2639 #define ADC_IER_EOC ((uint32_t)0x00000004) /*!< ADC End of Regular Conversion interrupt source */
MartinJohnson 0:404f5a4f1385 2640 #define ADC_IER_EOS ((uint32_t)0x00000008) /*!< ADC End of Regular sequence of Conversions interrupt source */
MartinJohnson 0:404f5a4f1385 2641 #define ADC_IER_OVR ((uint32_t)0x00000010) /*!< ADC overrun interrupt source */
MartinJohnson 0:404f5a4f1385 2642 #define ADC_IER_JEOC ((uint32_t)0x00000020) /*!< ADC End of Injected Conversion interrupt source */
MartinJohnson 0:404f5a4f1385 2643 #define ADC_IER_JEOS ((uint32_t)0x00000040) /*!< ADC End of Injected sequence of Conversions interrupt source */
MartinJohnson 0:404f5a4f1385 2644 #define ADC_IER_AWD1 ((uint32_t)0x00000080) /*!< ADC Analog watchdog 1 interrupt source */
MartinJohnson 0:404f5a4f1385 2645 #define ADC_IER_AWD2 ((uint32_t)0x00000100) /*!< ADC Analog watchdog 2 interrupt source */
MartinJohnson 0:404f5a4f1385 2646 #define ADC_IER_AWD3 ((uint32_t)0x00000200) /*!< ADC Analog watchdog 3 interrupt source */
MartinJohnson 0:404f5a4f1385 2647 #define ADC_IER_JQOVF ((uint32_t)0x00000400) /*!< ADC Injected Context Queue Overflow interrupt source */
MartinJohnson 0:404f5a4f1385 2648
MartinJohnson 0:404f5a4f1385 2649 /******************** Bit definition for ADC_CR register ********************/
MartinJohnson 0:404f5a4f1385 2650 #define ADC_CR_ADEN ((uint32_t)0x00000001) /*!< ADC Enable control */
MartinJohnson 0:404f5a4f1385 2651 #define ADC_CR_ADDIS ((uint32_t)0x00000002) /*!< ADC Disable command */
MartinJohnson 0:404f5a4f1385 2652 #define ADC_CR_ADSTART ((uint32_t)0x00000004) /*!< ADC Start of Regular conversion */
MartinJohnson 0:404f5a4f1385 2653 #define ADC_CR_JADSTART ((uint32_t)0x00000008) /*!< ADC Start of injected conversion */
MartinJohnson 0:404f5a4f1385 2654 #define ADC_CR_ADSTP ((uint32_t)0x00000010) /*!< ADC Stop of Regular conversion */
MartinJohnson 0:404f5a4f1385 2655 #define ADC_CR_JADSTP ((uint32_t)0x00000020) /*!< ADC Stop of injected conversion */
MartinJohnson 0:404f5a4f1385 2656 #define ADC_CR_ADVREGEN ((uint32_t)0x30000000) /*!< ADC Voltage regulator Enable */
MartinJohnson 0:404f5a4f1385 2657 #define ADC_CR_ADVREGEN_0 ((uint32_t)0x10000000) /*!< ADC ADVREGEN bit 0 */
MartinJohnson 0:404f5a4f1385 2658 #define ADC_CR_ADVREGEN_1 ((uint32_t)0x20000000) /*!< ADC ADVREGEN bit 1 */
MartinJohnson 0:404f5a4f1385 2659 #define ADC_CR_ADCALDIF ((uint32_t)0x40000000) /*!< ADC Differential Mode for calibration */
MartinJohnson 0:404f5a4f1385 2660 #define ADC_CR_ADCAL ((uint32_t)0x80000000) /*!< ADC Calibration */
MartinJohnson 0:404f5a4f1385 2661
MartinJohnson 0:404f5a4f1385 2662 /******************** Bit definition for ADC_CFGR register ********************/
MartinJohnson 0:404f5a4f1385 2663 #define ADC_CFGR_DMAEN ((uint32_t)0x00000001) /*!< ADC DMA Enable */
MartinJohnson 0:404f5a4f1385 2664 #define ADC_CFGR_DMACFG ((uint32_t)0x00000002) /*!< ADC DMA configuration */
MartinJohnson 0:404f5a4f1385 2665
MartinJohnson 0:404f5a4f1385 2666 #define ADC_CFGR_RES ((uint32_t)0x00000018) /*!< ADC Data resolution */
MartinJohnson 0:404f5a4f1385 2667 #define ADC_CFGR_RES_0 ((uint32_t)0x00000008) /*!< ADC RES bit 0 */
MartinJohnson 0:404f5a4f1385 2668 #define ADC_CFGR_RES_1 ((uint32_t)0x00000010) /*!< ADC RES bit 1 */
MartinJohnson 0:404f5a4f1385 2669
MartinJohnson 0:404f5a4f1385 2670 #define ADC_CFGR_ALIGN ((uint32_t)0x00000020) /*!< ADC Data Alignment */
MartinJohnson 0:404f5a4f1385 2671
MartinJohnson 0:404f5a4f1385 2672 #define ADC_CFGR_EXTSEL ((uint32_t)0x000003C0) /*!< ADC External trigger selection for regular group */
MartinJohnson 0:404f5a4f1385 2673 #define ADC_CFGR_EXTSEL_0 ((uint32_t)0x00000040) /*!< ADC EXTSEL bit 0 */
MartinJohnson 0:404f5a4f1385 2674 #define ADC_CFGR_EXTSEL_1 ((uint32_t)0x00000080) /*!< ADC EXTSEL bit 1 */
MartinJohnson 0:404f5a4f1385 2675 #define ADC_CFGR_EXTSEL_2 ((uint32_t)0x00000100) /*!< ADC EXTSEL bit 2 */
MartinJohnson 0:404f5a4f1385 2676 #define ADC_CFGR_EXTSEL_3 ((uint32_t)0x00000200) /*!< ADC EXTSEL bit 3 */
MartinJohnson 0:404f5a4f1385 2677
MartinJohnson 0:404f5a4f1385 2678 #define ADC_CFGR_EXTEN ((uint32_t)0x00000C00) /*!< ADC External trigger enable and polarity selection for regular channels */
MartinJohnson 0:404f5a4f1385 2679 #define ADC_CFGR_EXTEN_0 ((uint32_t)0x00000400) /*!< ADC EXTEN bit 0 */
MartinJohnson 0:404f5a4f1385 2680 #define ADC_CFGR_EXTEN_1 ((uint32_t)0x00000800) /*!< ADC EXTEN bit 1 */
MartinJohnson 0:404f5a4f1385 2681
MartinJohnson 0:404f5a4f1385 2682 #define ADC_CFGR_OVRMOD ((uint32_t)0x00001000) /*!< ADC overrun mode */
MartinJohnson 0:404f5a4f1385 2683 #define ADC_CFGR_CONT ((uint32_t)0x00002000) /*!< ADC Single/continuous conversion mode for regular conversion */
MartinJohnson 0:404f5a4f1385 2684 #define ADC_CFGR_AUTDLY ((uint32_t)0x00004000) /*!< ADC Delayed conversion mode */
MartinJohnson 0:404f5a4f1385 2685 #define ADC_CFGR_DISCEN ((uint32_t)0x00010000) /*!< ADC Discontinuous mode for regular channels */
MartinJohnson 0:404f5a4f1385 2686
MartinJohnson 0:404f5a4f1385 2687 #define ADC_CFGR_DISCNUM ((uint32_t)0x000E0000) /*!< ADC Discontinuous mode channel count */
MartinJohnson 0:404f5a4f1385 2688 #define ADC_CFGR_DISCNUM_0 ((uint32_t)0x00020000) /*!< ADC DISCNUM bit 0 */
MartinJohnson 0:404f5a4f1385 2689 #define ADC_CFGR_DISCNUM_1 ((uint32_t)0x00040000) /*!< ADC DISCNUM bit 1 */
MartinJohnson 0:404f5a4f1385 2690 #define ADC_CFGR_DISCNUM_2 ((uint32_t)0x00080000) /*!< ADC DISCNUM bit 2 */
MartinJohnson 0:404f5a4f1385 2691
MartinJohnson 0:404f5a4f1385 2692 #define ADC_CFGR_JDISCEN ((uint32_t)0x00100000) /*!< ADC Discontinuous mode on injected channels */
MartinJohnson 0:404f5a4f1385 2693 #define ADC_CFGR_JQM ((uint32_t)0x00200000) /*!< ADC JSQR Queue mode */
MartinJohnson 0:404f5a4f1385 2694 #define ADC_CFGR_AWD1SGL ((uint32_t)0x00400000) /*!< Enable the watchdog 1 on a single channel or on all channels */
MartinJohnson 0:404f5a4f1385 2695 #define ADC_CFGR_AWD1EN ((uint32_t)0x00800000) /*!< ADC Analog watchdog 1 enable on regular Channels */
MartinJohnson 0:404f5a4f1385 2696 #define ADC_CFGR_JAWD1EN ((uint32_t)0x01000000) /*!< ADC Analog watchdog 1 enable on injected Channels */
MartinJohnson 0:404f5a4f1385 2697 #define ADC_CFGR_JAUTO ((uint32_t)0x02000000) /*!< ADC Automatic injected group conversion */
MartinJohnson 0:404f5a4f1385 2698
MartinJohnson 0:404f5a4f1385 2699 #define ADC_CFGR_AWD1CH ((uint32_t)0x7C000000) /*!< ADC Analog watchdog 1 Channel selection */
MartinJohnson 0:404f5a4f1385 2700 #define ADC_CFGR_AWD1CH_0 ((uint32_t)0x04000000) /*!< ADC AWD1CH bit 0 */
MartinJohnson 0:404f5a4f1385 2701 #define ADC_CFGR_AWD1CH_1 ((uint32_t)0x08000000) /*!< ADC AWD1CH bit 1 */
MartinJohnson 0:404f5a4f1385 2702 #define ADC_CFGR_AWD1CH_2 ((uint32_t)0x10000000) /*!< ADC AWD1CH bit 2 */
MartinJohnson 0:404f5a4f1385 2703 #define ADC_CFGR_AWD1CH_3 ((uint32_t)0x20000000) /*!< ADC AWD1CH bit 3 */
MartinJohnson 0:404f5a4f1385 2704 #define ADC_CFGR_AWD1CH_4 ((uint32_t)0x40000000) /*!< ADC AWD1CH bit 4 */
MartinJohnson 0:404f5a4f1385 2705
MartinJohnson 0:404f5a4f1385 2706 /******************** Bit definition for ADC_SMPR1 register ********************/
MartinJohnson 0:404f5a4f1385 2707 #define ADC_SMPR1_SMP0 ((uint32_t)0x00000007) /*!< ADC Channel 0 Sampling time selection */
MartinJohnson 0:404f5a4f1385 2708 #define ADC_SMPR1_SMP0_0 ((uint32_t)0x00000001) /*!< ADC SMP0 bit 0 */
MartinJohnson 0:404f5a4f1385 2709 #define ADC_SMPR1_SMP0_1 ((uint32_t)0x00000002) /*!< ADC SMP0 bit 1 */
MartinJohnson 0:404f5a4f1385 2710 #define ADC_SMPR1_SMP0_2 ((uint32_t)0x00000004) /*!< ADC SMP0 bit 2 */
MartinJohnson 0:404f5a4f1385 2711
MartinJohnson 0:404f5a4f1385 2712 #define ADC_SMPR1_SMP1 ((uint32_t)0x00000038) /*!< ADC Channel 1 Sampling time selection */
MartinJohnson 0:404f5a4f1385 2713 #define ADC_SMPR1_SMP1_0 ((uint32_t)0x00000008) /*!< ADC SMP1 bit 0 */
MartinJohnson 0:404f5a4f1385 2714 #define ADC_SMPR1_SMP1_1 ((uint32_t)0x00000010) /*!< ADC SMP1 bit 1 */
MartinJohnson 0:404f5a4f1385 2715 #define ADC_SMPR1_SMP1_2 ((uint32_t)0x00000020) /*!< ADC SMP1 bit 2 */
MartinJohnson 0:404f5a4f1385 2716
MartinJohnson 0:404f5a4f1385 2717 #define ADC_SMPR1_SMP2 ((uint32_t)0x000001C0) /*!< ADC Channel 2 Sampling time selection */
MartinJohnson 0:404f5a4f1385 2718 #define ADC_SMPR1_SMP2_0 ((uint32_t)0x00000040) /*!< ADC SMP2 bit 0 */
MartinJohnson 0:404f5a4f1385 2719 #define ADC_SMPR1_SMP2_1 ((uint32_t)0x00000080) /*!< ADC SMP2 bit 1 */
MartinJohnson 0:404f5a4f1385 2720 #define ADC_SMPR1_SMP2_2 ((uint32_t)0x00000100) /*!< ADC SMP2 bit 2 */
MartinJohnson 0:404f5a4f1385 2721
MartinJohnson 0:404f5a4f1385 2722 #define ADC_SMPR1_SMP3 ((uint32_t)0x00000E00) /*!< ADC Channel 3 Sampling time selection */
MartinJohnson 0:404f5a4f1385 2723 #define ADC_SMPR1_SMP3_0 ((uint32_t)0x00000200) /*!< ADC SMP3 bit 0 */
MartinJohnson 0:404f5a4f1385 2724 #define ADC_SMPR1_SMP3_1 ((uint32_t)0x00000400) /*!< ADC SMP3 bit 1 */
MartinJohnson 0:404f5a4f1385 2725 #define ADC_SMPR1_SMP3_2 ((uint32_t)0x00000800) /*!< ADC SMP3 bit 2 */
MartinJohnson 0:404f5a4f1385 2726
MartinJohnson 0:404f5a4f1385 2727 #define ADC_SMPR1_SMP4 ((uint32_t)0x00007000) /*!< ADC Channel 4 Sampling time selection */
MartinJohnson 0:404f5a4f1385 2728 #define ADC_SMPR1_SMP4_0 ((uint32_t)0x00001000) /*!< ADC SMP4 bit 0 */
MartinJohnson 0:404f5a4f1385 2729 #define ADC_SMPR1_SMP4_1 ((uint32_t)0x00002000) /*!< ADC SMP4 bit 1 */
MartinJohnson 0:404f5a4f1385 2730 #define ADC_SMPR1_SMP4_2 ((uint32_t)0x00004000) /*!< ADC SMP4 bit 2 */
MartinJohnson 0:404f5a4f1385 2731
MartinJohnson 0:404f5a4f1385 2732 #define ADC_SMPR1_SMP5 ((uint32_t)0x00038000) /*!< ADC Channel 5 Sampling time selection */
MartinJohnson 0:404f5a4f1385 2733 #define ADC_SMPR1_SMP5_0 ((uint32_t)0x00008000) /*!< ADC SMP5 bit 0 */
MartinJohnson 0:404f5a4f1385 2734 #define ADC_SMPR1_SMP5_1 ((uint32_t)0x00010000) /*!< ADC SMP5 bit 1 */
MartinJohnson 0:404f5a4f1385 2735 #define ADC_SMPR1_SMP5_2 ((uint32_t)0x00020000) /*!< ADC SMP5 bit 2 */
MartinJohnson 0:404f5a4f1385 2736
MartinJohnson 0:404f5a4f1385 2737 #define ADC_SMPR1_SMP6 ((uint32_t)0x001C0000) /*!< ADC Channel 6 Sampling time selection */
MartinJohnson 0:404f5a4f1385 2738 #define ADC_SMPR1_SMP6_0 ((uint32_t)0x00040000) /*!< ADC SMP6 bit 0 */
MartinJohnson 0:404f5a4f1385 2739 #define ADC_SMPR1_SMP6_1 ((uint32_t)0x00080000) /*!< ADC SMP6 bit 1 */
MartinJohnson 0:404f5a4f1385 2740 #define ADC_SMPR1_SMP6_2 ((uint32_t)0x00100000) /*!< ADC SMP6 bit 2 */
MartinJohnson 0:404f5a4f1385 2741
MartinJohnson 0:404f5a4f1385 2742 #define ADC_SMPR1_SMP7 ((uint32_t)0x00E00000) /*!< ADC Channel 7 Sampling time selection */
MartinJohnson 0:404f5a4f1385 2743 #define ADC_SMPR1_SMP7_0 ((uint32_t)0x00200000) /*!< ADC SMP7 bit 0 */
MartinJohnson 0:404f5a4f1385 2744 #define ADC_SMPR1_SMP7_1 ((uint32_t)0x00400000) /*!< ADC SMP7 bit 1 */
MartinJohnson 0:404f5a4f1385 2745 #define ADC_SMPR1_SMP7_2 ((uint32_t)0x00800000) /*!< ADC SMP7 bit 2 */
MartinJohnson 0:404f5a4f1385 2746
MartinJohnson 0:404f5a4f1385 2747 #define ADC_SMPR1_SMP8 ((uint32_t)0x07000000) /*!< ADC Channel 8 Sampling time selection */
MartinJohnson 0:404f5a4f1385 2748 #define ADC_SMPR1_SMP8_0 ((uint32_t)0x01000000) /*!< ADC SMP8 bit 0 */
MartinJohnson 0:404f5a4f1385 2749 #define ADC_SMPR1_SMP8_1 ((uint32_t)0x02000000) /*!< ADC SMP8 bit 1 */
MartinJohnson 0:404f5a4f1385 2750 #define ADC_SMPR1_SMP8_2 ((uint32_t)0x04000000) /*!< ADC SMP8 bit 2 */
MartinJohnson 0:404f5a4f1385 2751
MartinJohnson 0:404f5a4f1385 2752 #define ADC_SMPR1_SMP9 ((uint32_t)0x38000000) /*!< ADC Channel 9 Sampling time selection */
MartinJohnson 0:404f5a4f1385 2753 #define ADC_SMPR1_SMP9_0 ((uint32_t)0x08000000) /*!< ADC SMP9 bit 0 */
MartinJohnson 0:404f5a4f1385 2754 #define ADC_SMPR1_SMP9_1 ((uint32_t)0x10000000) /*!< ADC SMP9 bit 1 */
MartinJohnson 0:404f5a4f1385 2755 #define ADC_SMPR1_SMP9_2 ((uint32_t)0x20000000) /*!< ADC SMP9 bit 2 */
MartinJohnson 0:404f5a4f1385 2756
MartinJohnson 0:404f5a4f1385 2757 /******************** Bit definition for ADC_SMPR2 register ********************/
MartinJohnson 0:404f5a4f1385 2758 #define ADC_SMPR2_SMP10 ((uint32_t)0x00000007) /*!< ADC Channel 10 Sampling time selection */
MartinJohnson 0:404f5a4f1385 2759 #define ADC_SMPR2_SMP10_0 ((uint32_t)0x00000001) /*!< ADC SMP10 bit 0 */
MartinJohnson 0:404f5a4f1385 2760 #define ADC_SMPR2_SMP10_1 ((uint32_t)0x00000002) /*!< ADC SMP10 bit 1 */
MartinJohnson 0:404f5a4f1385 2761 #define ADC_SMPR2_SMP10_2 ((uint32_t)0x00000004) /*!< ADC SMP10 bit 2 */
MartinJohnson 0:404f5a4f1385 2762
MartinJohnson 0:404f5a4f1385 2763 #define ADC_SMPR2_SMP11 ((uint32_t)0x00000038) /*!< ADC Channel 11 Sampling time selection */
MartinJohnson 0:404f5a4f1385 2764 #define ADC_SMPR2_SMP11_0 ((uint32_t)0x00000008) /*!< ADC SMP11 bit 0 */
MartinJohnson 0:404f5a4f1385 2765 #define ADC_SMPR2_SMP11_1 ((uint32_t)0x00000010) /*!< ADC SMP11 bit 1 */
MartinJohnson 0:404f5a4f1385 2766 #define ADC_SMPR2_SMP11_2 ((uint32_t)0x00000020) /*!< ADC SMP11 bit 2 */
MartinJohnson 0:404f5a4f1385 2767
MartinJohnson 0:404f5a4f1385 2768 #define ADC_SMPR2_SMP12 ((uint32_t)0x000001C0) /*!< ADC Channel 12 Sampling time selection */
MartinJohnson 0:404f5a4f1385 2769 #define ADC_SMPR2_SMP12_0 ((uint32_t)0x00000040) /*!< ADC SMP12 bit 0 */
MartinJohnson 0:404f5a4f1385 2770 #define ADC_SMPR2_SMP12_1 ((uint32_t)0x00000080) /*!< ADC SMP12 bit 1 */
MartinJohnson 0:404f5a4f1385 2771 #define ADC_SMPR2_SMP12_2 ((uint32_t)0x00000100) /*!< ADC SMP12 bit 2 */
MartinJohnson 0:404f5a4f1385 2772
MartinJohnson 0:404f5a4f1385 2773 #define ADC_SMPR2_SMP13 ((uint32_t)0x00000E00) /*!< ADC Channel 13 Sampling time selection */
MartinJohnson 0:404f5a4f1385 2774 #define ADC_SMPR2_SMP13_0 ((uint32_t)0x00000200) /*!< ADC SMP13 bit 0 */
MartinJohnson 0:404f5a4f1385 2775 #define ADC_SMPR2_SMP13_1 ((uint32_t)0x00000400) /*!< ADC SMP13 bit 1 */
MartinJohnson 0:404f5a4f1385 2776 #define ADC_SMPR2_SMP13_2 ((uint32_t)0x00000800) /*!< ADC SMP13 bit 2 */
MartinJohnson 0:404f5a4f1385 2777
MartinJohnson 0:404f5a4f1385 2778 #define ADC_SMPR2_SMP14 ((uint32_t)0x00007000) /*!< ADC Channel 14 Sampling time selection */
MartinJohnson 0:404f5a4f1385 2779 #define ADC_SMPR2_SMP14_0 ((uint32_t)0x00001000) /*!< ADC SMP14 bit 0 */
MartinJohnson 0:404f5a4f1385 2780 #define ADC_SMPR2_SMP14_1 ((uint32_t)0x00002000) /*!< ADC SMP14 bit 1 */
MartinJohnson 0:404f5a4f1385 2781 #define ADC_SMPR2_SMP14_2 ((uint32_t)0x00004000) /*!< ADC SMP14 bit 2 */
MartinJohnson 0:404f5a4f1385 2782
MartinJohnson 0:404f5a4f1385 2783 #define ADC_SMPR2_SMP15 ((uint32_t)0x00038000) /*!< ADC Channel 15 Sampling time selection */
MartinJohnson 0:404f5a4f1385 2784 #define ADC_SMPR2_SMP15_0 ((uint32_t)0x00008000) /*!< ADC SMP15 bit 0 */
MartinJohnson 0:404f5a4f1385 2785 #define ADC_SMPR2_SMP15_1 ((uint32_t)0x00010000) /*!< ADC SMP15 bit 1 */
MartinJohnson 0:404f5a4f1385 2786 #define ADC_SMPR2_SMP15_2 ((uint32_t)0x00020000) /*!< ADC SMP15 bit 2 */
MartinJohnson 0:404f5a4f1385 2787
MartinJohnson 0:404f5a4f1385 2788 #define ADC_SMPR2_SMP16 ((uint32_t)0x001C0000) /*!< ADC Channel 16 Sampling time selection */
MartinJohnson 0:404f5a4f1385 2789 #define ADC_SMPR2_SMP16_0 ((uint32_t)0x00040000) /*!< ADC SMP16 bit 0 */
MartinJohnson 0:404f5a4f1385 2790 #define ADC_SMPR2_SMP16_1 ((uint32_t)0x00080000) /*!< ADC SMP16 bit 1 */
MartinJohnson 0:404f5a4f1385 2791 #define ADC_SMPR2_SMP16_2 ((uint32_t)0x00100000) /*!< ADC SMP16 bit 2 */
MartinJohnson 0:404f5a4f1385 2792
MartinJohnson 0:404f5a4f1385 2793 #define ADC_SMPR2_SMP17 ((uint32_t)0x00E00000) /*!< ADC Channel 17 Sampling time selection */
MartinJohnson 0:404f5a4f1385 2794 #define ADC_SMPR2_SMP17_0 ((uint32_t)0x00200000) /*!< ADC SMP17 bit 0 */
MartinJohnson 0:404f5a4f1385 2795 #define ADC_SMPR2_SMP17_1 ((uint32_t)0x00400000) /*!< ADC SMP17 bit 1 */
MartinJohnson 0:404f5a4f1385 2796 #define ADC_SMPR2_SMP17_2 ((uint32_t)0x00800000) /*!< ADC SMP17 bit 2 */
MartinJohnson 0:404f5a4f1385 2797
MartinJohnson 0:404f5a4f1385 2798 #define ADC_SMPR2_SMP18 ((uint32_t)0x07000000) /*!< ADC Channel 18 Sampling time selection */
MartinJohnson 0:404f5a4f1385 2799 #define ADC_SMPR2_SMP18_0 ((uint32_t)0x01000000) /*!< ADC SMP18 bit 0 */
MartinJohnson 0:404f5a4f1385 2800 #define ADC_SMPR2_SMP18_1 ((uint32_t)0x02000000) /*!< ADC SMP18 bit 1 */
MartinJohnson 0:404f5a4f1385 2801 #define ADC_SMPR2_SMP18_2 ((uint32_t)0x04000000) /*!< ADC SMP18 bit 2 */
MartinJohnson 0:404f5a4f1385 2802
MartinJohnson 0:404f5a4f1385 2803 /******************** Bit definition for ADC_TR1 register ********************/
MartinJohnson 0:404f5a4f1385 2804 #define ADC_TR1_LT1 ((uint32_t)0x00000FFF) /*!< ADC Analog watchdog 1 lower threshold */
MartinJohnson 0:404f5a4f1385 2805 #define ADC_TR1_LT1_0 ((uint32_t)0x00000001) /*!< ADC LT1 bit 0 */
MartinJohnson 0:404f5a4f1385 2806 #define ADC_TR1_LT1_1 ((uint32_t)0x00000002) /*!< ADC LT1 bit 1 */
MartinJohnson 0:404f5a4f1385 2807 #define ADC_TR1_LT1_2 ((uint32_t)0x00000004) /*!< ADC LT1 bit 2 */
MartinJohnson 0:404f5a4f1385 2808 #define ADC_TR1_LT1_3 ((uint32_t)0x00000008) /*!< ADC LT1 bit 3 */
MartinJohnson 0:404f5a4f1385 2809 #define ADC_TR1_LT1_4 ((uint32_t)0x00000010) /*!< ADC LT1 bit 4 */
MartinJohnson 0:404f5a4f1385 2810 #define ADC_TR1_LT1_5 ((uint32_t)0x00000020) /*!< ADC LT1 bit 5 */
MartinJohnson 0:404f5a4f1385 2811 #define ADC_TR1_LT1_6 ((uint32_t)0x00000040) /*!< ADC LT1 bit 6 */
MartinJohnson 0:404f5a4f1385 2812 #define ADC_TR1_LT1_7 ((uint32_t)0x00000080) /*!< ADC LT1 bit 7 */
MartinJohnson 0:404f5a4f1385 2813 #define ADC_TR1_LT1_8 ((uint32_t)0x00000100) /*!< ADC LT1 bit 8 */
MartinJohnson 0:404f5a4f1385 2814 #define ADC_TR1_LT1_9 ((uint32_t)0x00000200) /*!< ADC LT1 bit 9 */
MartinJohnson 0:404f5a4f1385 2815 #define ADC_TR1_LT1_10 ((uint32_t)0x00000400) /*!< ADC LT1 bit 10 */
MartinJohnson 0:404f5a4f1385 2816 #define ADC_TR1_LT1_11 ((uint32_t)0x00000800) /*!< ADC LT1 bit 11 */
MartinJohnson 0:404f5a4f1385 2817
MartinJohnson 0:404f5a4f1385 2818 #define ADC_TR1_HT1 ((uint32_t)0x0FFF0000) /*!< ADC Analog watchdog 1 higher threshold */
MartinJohnson 0:404f5a4f1385 2819 #define ADC_TR1_HT1_0 ((uint32_t)0x00010000) /*!< ADC HT1 bit 0 */
MartinJohnson 0:404f5a4f1385 2820 #define ADC_TR1_HT1_1 ((uint32_t)0x00020000) /*!< ADC HT1 bit 1 */
MartinJohnson 0:404f5a4f1385 2821 #define ADC_TR1_HT1_2 ((uint32_t)0x00040000) /*!< ADC HT1 bit 2 */
MartinJohnson 0:404f5a4f1385 2822 #define ADC_TR1_HT1_3 ((uint32_t)0x00080000) /*!< ADC HT1 bit 3 */
MartinJohnson 0:404f5a4f1385 2823 #define ADC_TR1_HT1_4 ((uint32_t)0x00100000) /*!< ADC HT1 bit 4 */
MartinJohnson 0:404f5a4f1385 2824 #define ADC_TR1_HT1_5 ((uint32_t)0x00200000) /*!< ADC HT1 bit 5 */
MartinJohnson 0:404f5a4f1385 2825 #define ADC_TR1_HT1_6 ((uint32_t)0x00400000) /*!< ADC HT1 bit 6 */
MartinJohnson 0:404f5a4f1385 2826 #define ADC_TR1_HT1_7 ((uint32_t)0x00800000) /*!< ADC HT1 bit 7 */
MartinJohnson 0:404f5a4f1385 2827 #define ADC_TR1_HT1_8 ((uint32_t)0x01000000) /*!< ADC HT1 bit 8 */
MartinJohnson 0:404f5a4f1385 2828 #define ADC_TR1_HT1_9 ((uint32_t)0x02000000) /*!< ADC HT1 bit 9 */
MartinJohnson 0:404f5a4f1385 2829 #define ADC_TR1_HT1_10 ((uint32_t)0x04000000) /*!< ADC HT1 bit 10 */
MartinJohnson 0:404f5a4f1385 2830 #define ADC_TR1_HT1_11 ((uint32_t)0x08000000) /*!< ADC HT1 bit 11 */
MartinJohnson 0:404f5a4f1385 2831
MartinJohnson 0:404f5a4f1385 2832 /******************** Bit definition for ADC_TR2 register ********************/
MartinJohnson 0:404f5a4f1385 2833 #define ADC_TR2_LT2 ((uint32_t)0x000000FF) /*!< ADC Analog watchdog 2 lower threshold */
MartinJohnson 0:404f5a4f1385 2834 #define ADC_TR2_LT2_0 ((uint32_t)0x00000001) /*!< ADC LT2 bit 0 */
MartinJohnson 0:404f5a4f1385 2835 #define ADC_TR2_LT2_1 ((uint32_t)0x00000002) /*!< ADC LT2 bit 1 */
MartinJohnson 0:404f5a4f1385 2836 #define ADC_TR2_LT2_2 ((uint32_t)0x00000004) /*!< ADC LT2 bit 2 */
MartinJohnson 0:404f5a4f1385 2837 #define ADC_TR2_LT2_3 ((uint32_t)0x00000008) /*!< ADC LT2 bit 3 */
MartinJohnson 0:404f5a4f1385 2838 #define ADC_TR2_LT2_4 ((uint32_t)0x00000010) /*!< ADC LT2 bit 4 */
MartinJohnson 0:404f5a4f1385 2839 #define ADC_TR2_LT2_5 ((uint32_t)0x00000020) /*!< ADC LT2 bit 5 */
MartinJohnson 0:404f5a4f1385 2840 #define ADC_TR2_LT2_6 ((uint32_t)0x00000040) /*!< ADC LT2 bit 6 */
MartinJohnson 0:404f5a4f1385 2841 #define ADC_TR2_LT2_7 ((uint32_t)0x00000080) /*!< ADC LT2 bit 7 */
MartinJohnson 0:404f5a4f1385 2842
MartinJohnson 0:404f5a4f1385 2843 #define ADC_TR2_HT2 ((uint32_t)0x00FF0000) /*!< ADC Analog watchdog 2 higher threshold */
MartinJohnson 0:404f5a4f1385 2844 #define ADC_TR2_HT2_0 ((uint32_t)0x00010000) /*!< ADC HT2 bit 0 */
MartinJohnson 0:404f5a4f1385 2845 #define ADC_TR2_HT2_1 ((uint32_t)0x00020000) /*!< ADC HT2 bit 1 */
MartinJohnson 0:404f5a4f1385 2846 #define ADC_TR2_HT2_2 ((uint32_t)0x00040000) /*!< ADC HT2 bit 2 */
MartinJohnson 0:404f5a4f1385 2847 #define ADC_TR2_HT2_3 ((uint32_t)0x00080000) /*!< ADC HT2 bit 3 */
MartinJohnson 0:404f5a4f1385 2848 #define ADC_TR2_HT2_4 ((uint32_t)0x00100000) /*!< ADC HT2 bit 4 */
MartinJohnson 0:404f5a4f1385 2849 #define ADC_TR2_HT2_5 ((uint32_t)0x00200000) /*!< ADC HT2 bit 5 */
MartinJohnson 0:404f5a4f1385 2850 #define ADC_TR2_HT2_6 ((uint32_t)0x00400000) /*!< ADC HT2 bit 6 */
MartinJohnson 0:404f5a4f1385 2851 #define ADC_TR2_HT2_7 ((uint32_t)0x00800000) /*!< ADC HT2 bit 7 */
MartinJohnson 0:404f5a4f1385 2852
MartinJohnson 0:404f5a4f1385 2853 /******************** Bit definition for ADC_TR3 register ********************/
MartinJohnson 0:404f5a4f1385 2854 #define ADC_TR3_LT3 ((uint32_t)0x000000FF) /*!< ADC Analog watchdog 3 lower threshold */
MartinJohnson 0:404f5a4f1385 2855 #define ADC_TR3_LT3_0 ((uint32_t)0x00000001) /*!< ADC LT3 bit 0 */
MartinJohnson 0:404f5a4f1385 2856 #define ADC_TR3_LT3_1 ((uint32_t)0x00000002) /*!< ADC LT3 bit 1 */
MartinJohnson 0:404f5a4f1385 2857 #define ADC_TR3_LT3_2 ((uint32_t)0x00000004) /*!< ADC LT3 bit 2 */
MartinJohnson 0:404f5a4f1385 2858 #define ADC_TR3_LT3_3 ((uint32_t)0x00000008) /*!< ADC LT3 bit 3 */
MartinJohnson 0:404f5a4f1385 2859 #define ADC_TR3_LT3_4 ((uint32_t)0x00000010) /*!< ADC LT3 bit 4 */
MartinJohnson 0:404f5a4f1385 2860 #define ADC_TR3_LT3_5 ((uint32_t)0x00000020) /*!< ADC LT3 bit 5 */
MartinJohnson 0:404f5a4f1385 2861 #define ADC_TR3_LT3_6 ((uint32_t)0x00000040) /*!< ADC LT3 bit 6 */
MartinJohnson 0:404f5a4f1385 2862 #define ADC_TR3_LT3_7 ((uint32_t)0x00000080) /*!< ADC LT3 bit 7 */
MartinJohnson 0:404f5a4f1385 2863
MartinJohnson 0:404f5a4f1385 2864 #define ADC_TR3_HT3 ((uint32_t)0x00FF0000) /*!< ADC Analog watchdog 3 higher threshold */
MartinJohnson 0:404f5a4f1385 2865 #define ADC_TR3_HT3_0 ((uint32_t)0x00010000) /*!< ADC HT3 bit 0 */
MartinJohnson 0:404f5a4f1385 2866 #define ADC_TR3_HT3_1 ((uint32_t)0x00020000) /*!< ADC HT3 bit 1 */
MartinJohnson 0:404f5a4f1385 2867 #define ADC_TR3_HT3_2 ((uint32_t)0x00040000) /*!< ADC HT3 bit 2 */
MartinJohnson 0:404f5a4f1385 2868 #define ADC_TR3_HT3_3 ((uint32_t)0x00080000) /*!< ADC HT3 bit 3 */
MartinJohnson 0:404f5a4f1385 2869 #define ADC_TR3_HT3_4 ((uint32_t)0x00100000) /*!< ADC HT3 bit 4 */
MartinJohnson 0:404f5a4f1385 2870 #define ADC_TR3_HT3_5 ((uint32_t)0x00200000) /*!< ADC HT3 bit 5 */
MartinJohnson 0:404f5a4f1385 2871 #define ADC_TR3_HT3_6 ((uint32_t)0x00400000) /*!< ADC HT3 bit 6 */
MartinJohnson 0:404f5a4f1385 2872 #define ADC_TR3_HT3_7 ((uint32_t)0x00800000) /*!< ADC HT3 bit 7 */
MartinJohnson 0:404f5a4f1385 2873
MartinJohnson 0:404f5a4f1385 2874 /******************** Bit definition for ADC_SQR1 register ********************/
MartinJohnson 0:404f5a4f1385 2875 #define ADC_SQR1_L ((uint32_t)0x0000000F) /*!< ADC regular channel sequence length */
MartinJohnson 0:404f5a4f1385 2876 #define ADC_SQR1_L_0 ((uint32_t)0x00000001) /*!< ADC L bit 0 */
MartinJohnson 0:404f5a4f1385 2877 #define ADC_SQR1_L_1 ((uint32_t)0x00000002) /*!< ADC L bit 1 */
MartinJohnson 0:404f5a4f1385 2878 #define ADC_SQR1_L_2 ((uint32_t)0x00000004) /*!< ADC L bit 2 */
MartinJohnson 0:404f5a4f1385 2879 #define ADC_SQR1_L_3 ((uint32_t)0x00000008) /*!< ADC L bit 3 */
MartinJohnson 0:404f5a4f1385 2880
MartinJohnson 0:404f5a4f1385 2881 #define ADC_SQR1_SQ1 ((uint32_t)0x000007C0) /*!< ADC 1st conversion in regular sequence */
MartinJohnson 0:404f5a4f1385 2882 #define ADC_SQR1_SQ1_0 ((uint32_t)0x00000040) /*!< ADC SQ1 bit 0 */
MartinJohnson 0:404f5a4f1385 2883 #define ADC_SQR1_SQ1_1 ((uint32_t)0x00000080) /*!< ADC SQ1 bit 1 */
MartinJohnson 0:404f5a4f1385 2884 #define ADC_SQR1_SQ1_2 ((uint32_t)0x00000100) /*!< ADC SQ1 bit 2 */
MartinJohnson 0:404f5a4f1385 2885 #define ADC_SQR1_SQ1_3 ((uint32_t)0x00000200) /*!< ADC SQ1 bit 3 */
MartinJohnson 0:404f5a4f1385 2886 #define ADC_SQR1_SQ1_4 ((uint32_t)0x00000400) /*!< ADC SQ1 bit 4 */
MartinJohnson 0:404f5a4f1385 2887
MartinJohnson 0:404f5a4f1385 2888 #define ADC_SQR1_SQ2 ((uint32_t)0x0001F000) /*!< ADC 2nd conversion in regular sequence */
MartinJohnson 0:404f5a4f1385 2889 #define ADC_SQR1_SQ2_0 ((uint32_t)0x00001000) /*!< ADC SQ2 bit 0 */
MartinJohnson 0:404f5a4f1385 2890 #define ADC_SQR1_SQ2_1 ((uint32_t)0x00002000) /*!< ADC SQ2 bit 1 */
MartinJohnson 0:404f5a4f1385 2891 #define ADC_SQR1_SQ2_2 ((uint32_t)0x00004000) /*!< ADC SQ2 bit 2 */
MartinJohnson 0:404f5a4f1385 2892 #define ADC_SQR1_SQ2_3 ((uint32_t)0x00008000) /*!< ADC SQ2 bit 3 */
MartinJohnson 0:404f5a4f1385 2893 #define ADC_SQR1_SQ2_4 ((uint32_t)0x00010000) /*!< ADC SQ2 bit 4 */
MartinJohnson 0:404f5a4f1385 2894
MartinJohnson 0:404f5a4f1385 2895 #define ADC_SQR1_SQ3 ((uint32_t)0x007C0000) /*!< ADC 3rd conversion in regular sequence */
MartinJohnson 0:404f5a4f1385 2896 #define ADC_SQR1_SQ3_0 ((uint32_t)0x00040000) /*!< ADC SQ3 bit 0 */
MartinJohnson 0:404f5a4f1385 2897 #define ADC_SQR1_SQ3_1 ((uint32_t)0x00080000) /*!< ADC SQ3 bit 1 */
MartinJohnson 0:404f5a4f1385 2898 #define ADC_SQR1_SQ3_2 ((uint32_t)0x00100000) /*!< ADC SQ3 bit 2 */
MartinJohnson 0:404f5a4f1385 2899 #define ADC_SQR1_SQ3_3 ((uint32_t)0x00200000) /*!< ADC SQ3 bit 3 */
MartinJohnson 0:404f5a4f1385 2900 #define ADC_SQR1_SQ3_4 ((uint32_t)0x00400000) /*!< ADC SQ3 bit 4 */
MartinJohnson 0:404f5a4f1385 2901
MartinJohnson 0:404f5a4f1385 2902 #define ADC_SQR1_SQ4 ((uint32_t)0x1F000000) /*!< ADC 4th conversion in regular sequence */
MartinJohnson 0:404f5a4f1385 2903 #define ADC_SQR1_SQ4_0 ((uint32_t)0x01000000) /*!< ADC SQ4 bit 0 */
MartinJohnson 0:404f5a4f1385 2904 #define ADC_SQR1_SQ4_1 ((uint32_t)0x02000000) /*!< ADC SQ4 bit 1 */
MartinJohnson 0:404f5a4f1385 2905 #define ADC_SQR1_SQ4_2 ((uint32_t)0x04000000) /*!< ADC SQ4 bit 2 */
MartinJohnson 0:404f5a4f1385 2906 #define ADC_SQR1_SQ4_3 ((uint32_t)0x08000000) /*!< ADC SQ4 bit 3 */
MartinJohnson 0:404f5a4f1385 2907 #define ADC_SQR1_SQ4_4 ((uint32_t)0x10000000) /*!< ADC SQ4 bit 4 */
MartinJohnson 0:404f5a4f1385 2908
MartinJohnson 0:404f5a4f1385 2909 /******************** Bit definition for ADC_SQR2 register ********************/
MartinJohnson 0:404f5a4f1385 2910 #define ADC_SQR2_SQ5 ((uint32_t)0x0000001F) /*!< ADC 5th conversion in regular sequence */
MartinJohnson 0:404f5a4f1385 2911 #define ADC_SQR2_SQ5_0 ((uint32_t)0x00000001) /*!< ADC SQ5 bit 0 */
MartinJohnson 0:404f5a4f1385 2912 #define ADC_SQR2_SQ5_1 ((uint32_t)0x00000002) /*!< ADC SQ5 bit 1 */
MartinJohnson 0:404f5a4f1385 2913 #define ADC_SQR2_SQ5_2 ((uint32_t)0x00000004) /*!< ADC SQ5 bit 2 */
MartinJohnson 0:404f5a4f1385 2914 #define ADC_SQR2_SQ5_3 ((uint32_t)0x00000008) /*!< ADC SQ5 bit 3 */
MartinJohnson 0:404f5a4f1385 2915 #define ADC_SQR2_SQ5_4 ((uint32_t)0x00000010) /*!< ADC SQ5 bit 4 */
MartinJohnson 0:404f5a4f1385 2916
MartinJohnson 0:404f5a4f1385 2917 #define ADC_SQR2_SQ6 ((uint32_t)0x000007C0) /*!< ADC 6th conversion in regular sequence */
MartinJohnson 0:404f5a4f1385 2918 #define ADC_SQR2_SQ6_0 ((uint32_t)0x00000040) /*!< ADC SQ6 bit 0 */
MartinJohnson 0:404f5a4f1385 2919 #define ADC_SQR2_SQ6_1 ((uint32_t)0x00000080) /*!< ADC SQ6 bit 1 */
MartinJohnson 0:404f5a4f1385 2920 #define ADC_SQR2_SQ6_2 ((uint32_t)0x00000100) /*!< ADC SQ6 bit 2 */
MartinJohnson 0:404f5a4f1385 2921 #define ADC_SQR2_SQ6_3 ((uint32_t)0x00000200) /*!< ADC SQ6 bit 3 */
MartinJohnson 0:404f5a4f1385 2922 #define ADC_SQR2_SQ6_4 ((uint32_t)0x00000400) /*!< ADC SQ6 bit 4 */
MartinJohnson 0:404f5a4f1385 2923
MartinJohnson 0:404f5a4f1385 2924 #define ADC_SQR2_SQ7 ((uint32_t)0x0001F000) /*!< ADC 7th conversion in regular sequence */
MartinJohnson 0:404f5a4f1385 2925 #define ADC_SQR2_SQ7_0 ((uint32_t)0x00001000) /*!< ADC SQ7 bit 0 */
MartinJohnson 0:404f5a4f1385 2926 #define ADC_SQR2_SQ7_1 ((uint32_t)0x00002000) /*!< ADC SQ7 bit 1 */
MartinJohnson 0:404f5a4f1385 2927 #define ADC_SQR2_SQ7_2 ((uint32_t)0x00004000) /*!< ADC SQ7 bit 2 */
MartinJohnson 0:404f5a4f1385 2928 #define ADC_SQR2_SQ7_3 ((uint32_t)0x00008000) /*!< ADC SQ7 bit 3 */
MartinJohnson 0:404f5a4f1385 2929 #define ADC_SQR2_SQ7_4 ((uint32_t)0x00010000) /*!< ADC SQ7 bit 4 */
MartinJohnson 0:404f5a4f1385 2930
MartinJohnson 0:404f5a4f1385 2931 #define ADC_SQR2_SQ8 ((uint32_t)0x007C0000) /*!< ADC 8th conversion in regular sequence */
MartinJohnson 0:404f5a4f1385 2932 #define ADC_SQR2_SQ8_0 ((uint32_t)0x00040000) /*!< ADC SQ8 bit 0 */
MartinJohnson 0:404f5a4f1385 2933 #define ADC_SQR2_SQ8_1 ((uint32_t)0x00080000) /*!< ADC SQ8 bit 1 */
MartinJohnson 0:404f5a4f1385 2934 #define ADC_SQR2_SQ8_2 ((uint32_t)0x00100000) /*!< ADC SQ8 bit 2 */
MartinJohnson 0:404f5a4f1385 2935 #define ADC_SQR2_SQ8_3 ((uint32_t)0x00200000) /*!< ADC SQ8 bit 3 */
MartinJohnson 0:404f5a4f1385 2936 #define ADC_SQR2_SQ8_4 ((uint32_t)0x00400000) /*!< ADC SQ8 bit 4 */
MartinJohnson 0:404f5a4f1385 2937
MartinJohnson 0:404f5a4f1385 2938 #define ADC_SQR2_SQ9 ((uint32_t)0x1F000000) /*!< ADC 9th conversion in regular sequence */
MartinJohnson 0:404f5a4f1385 2939 #define ADC_SQR2_SQ9_0 ((uint32_t)0x01000000) /*!< ADC SQ9 bit 0 */
MartinJohnson 0:404f5a4f1385 2940 #define ADC_SQR2_SQ9_1 ((uint32_t)0x02000000) /*!< ADC SQ9 bit 1 */
MartinJohnson 0:404f5a4f1385 2941 #define ADC_SQR2_SQ9_2 ((uint32_t)0x04000000) /*!< ADC SQ9 bit 2 */
MartinJohnson 0:404f5a4f1385 2942 #define ADC_SQR2_SQ9_3 ((uint32_t)0x08000000) /*!< ADC SQ9 bit 3 */
MartinJohnson 0:404f5a4f1385 2943 #define ADC_SQR2_SQ9_4 ((uint32_t)0x10000000) /*!< ADC SQ9 bit 4 */
MartinJohnson 0:404f5a4f1385 2944
MartinJohnson 0:404f5a4f1385 2945 /******************** Bit definition for ADC_SQR3 register ********************/
MartinJohnson 0:404f5a4f1385 2946 #define ADC_SQR3_SQ10 ((uint32_t)0x0000001F) /*!< ADC 10th conversion in regular sequence */
MartinJohnson 0:404f5a4f1385 2947 #define ADC_SQR3_SQ10_0 ((uint32_t)0x00000001) /*!< ADC SQ10 bit 0 */
MartinJohnson 0:404f5a4f1385 2948 #define ADC_SQR3_SQ10_1 ((uint32_t)0x00000002) /*!< ADC SQ10 bit 1 */
MartinJohnson 0:404f5a4f1385 2949 #define ADC_SQR3_SQ10_2 ((uint32_t)0x00000004) /*!< ADC SQ10 bit 2 */
MartinJohnson 0:404f5a4f1385 2950 #define ADC_SQR3_SQ10_3 ((uint32_t)0x00000008) /*!< ADC SQ10 bit 3 */
MartinJohnson 0:404f5a4f1385 2951 #define ADC_SQR3_SQ10_4 ((uint32_t)0x00000010) /*!< ADC SQ10 bit 4 */
MartinJohnson 0:404f5a4f1385 2952
MartinJohnson 0:404f5a4f1385 2953 #define ADC_SQR3_SQ11 ((uint32_t)0x000007C0) /*!< ADC 11th conversion in regular sequence */
MartinJohnson 0:404f5a4f1385 2954 #define ADC_SQR3_SQ11_0 ((uint32_t)0x00000040) /*!< ADC SQ11 bit 0 */
MartinJohnson 0:404f5a4f1385 2955 #define ADC_SQR3_SQ11_1 ((uint32_t)0x00000080) /*!< ADC SQ11 bit 1 */
MartinJohnson 0:404f5a4f1385 2956 #define ADC_SQR3_SQ11_2 ((uint32_t)0x00000100) /*!< ADC SQ11 bit 2 */
MartinJohnson 0:404f5a4f1385 2957 #define ADC_SQR3_SQ11_3 ((uint32_t)0x00000200) /*!< ADC SQ11 bit 3 */
MartinJohnson 0:404f5a4f1385 2958 #define ADC_SQR3_SQ11_4 ((uint32_t)0x00000400) /*!< ADC SQ11 bit 4 */
MartinJohnson 0:404f5a4f1385 2959
MartinJohnson 0:404f5a4f1385 2960 #define ADC_SQR3_SQ12 ((uint32_t)0x0001F000) /*!< ADC 12th conversion in regular sequence */
MartinJohnson 0:404f5a4f1385 2961 #define ADC_SQR3_SQ12_0 ((uint32_t)0x00001000) /*!< ADC SQ12 bit 0 */
MartinJohnson 0:404f5a4f1385 2962 #define ADC_SQR3_SQ12_1 ((uint32_t)0x00002000) /*!< ADC SQ12 bit 1 */
MartinJohnson 0:404f5a4f1385 2963 #define ADC_SQR3_SQ12_2 ((uint32_t)0x00004000) /*!< ADC SQ12 bit 2 */
MartinJohnson 0:404f5a4f1385 2964 #define ADC_SQR3_SQ12_3 ((uint32_t)0x00008000) /*!< ADC SQ12 bit 3 */
MartinJohnson 0:404f5a4f1385 2965 #define ADC_SQR3_SQ12_4 ((uint32_t)0x00010000) /*!< ADC SQ12 bit 4 */
MartinJohnson 0:404f5a4f1385 2966
MartinJohnson 0:404f5a4f1385 2967 #define ADC_SQR3_SQ13 ((uint32_t)0x007C0000) /*!< ADC 13th conversion in regular sequence */
MartinJohnson 0:404f5a4f1385 2968 #define ADC_SQR3_SQ13_0 ((uint32_t)0x00040000) /*!< ADC SQ13 bit 0 */
MartinJohnson 0:404f5a4f1385 2969 #define ADC_SQR3_SQ13_1 ((uint32_t)0x00080000) /*!< ADC SQ13 bit 1 */
MartinJohnson 0:404f5a4f1385 2970 #define ADC_SQR3_SQ13_2 ((uint32_t)0x00100000) /*!< ADC SQ13 bit 2 */
MartinJohnson 0:404f5a4f1385 2971 #define ADC_SQR3_SQ13_3 ((uint32_t)0x00200000) /*!< ADC SQ13 bit 3 */
MartinJohnson 0:404f5a4f1385 2972 #define ADC_SQR3_SQ13_4 ((uint32_t)0x00400000) /*!< ADC SQ13 bit 4 */
MartinJohnson 0:404f5a4f1385 2973
MartinJohnson 0:404f5a4f1385 2974 #define ADC_SQR3_SQ14 ((uint32_t)0x1F000000) /*!< ADC 14th conversion in regular sequence */
MartinJohnson 0:404f5a4f1385 2975 #define ADC_SQR3_SQ14_0 ((uint32_t)0x01000000) /*!< ADC SQ14 bit 0 */
MartinJohnson 0:404f5a4f1385 2976 #define ADC_SQR3_SQ14_1 ((uint32_t)0x02000000) /*!< ADC SQ14 bit 1 */
MartinJohnson 0:404f5a4f1385 2977 #define ADC_SQR3_SQ14_2 ((uint32_t)0x04000000) /*!< ADC SQ14 bit 2 */
MartinJohnson 0:404f5a4f1385 2978 #define ADC_SQR3_SQ14_3 ((uint32_t)0x08000000) /*!< ADC SQ14 bit 3 */
MartinJohnson 0:404f5a4f1385 2979 #define ADC_SQR3_SQ14_4 ((uint32_t)0x10000000) /*!< ADC SQ14 bit 4 */
MartinJohnson 0:404f5a4f1385 2980
MartinJohnson 0:404f5a4f1385 2981 /******************** Bit definition for ADC_SQR4 register ********************/
MartinJohnson 0:404f5a4f1385 2982 #define ADC_SQR4_SQ15 ((uint32_t)0x0000001F) /*!< ADC 15th conversion in regular sequence */
MartinJohnson 0:404f5a4f1385 2983 #define ADC_SQR4_SQ15_0 ((uint32_t)0x00000001) /*!< ADC SQ15 bit 0 */
MartinJohnson 0:404f5a4f1385 2984 #define ADC_SQR4_SQ15_1 ((uint32_t)0x00000002) /*!< ADC SQ15 bit 1 */
MartinJohnson 0:404f5a4f1385 2985 #define ADC_SQR4_SQ15_2 ((uint32_t)0x00000004) /*!< ADC SQ15 bit 2 */
MartinJohnson 0:404f5a4f1385 2986 #define ADC_SQR4_SQ15_3 ((uint32_t)0x00000008) /*!< ADC SQ15 bit 3 */
MartinJohnson 0:404f5a4f1385 2987 #define ADC_SQR4_SQ15_4 ((uint32_t)0x00000010) /*!< ADC SQ105 bit 4 */
MartinJohnson 0:404f5a4f1385 2988
MartinJohnson 0:404f5a4f1385 2989 #define ADC_SQR4_SQ16 ((uint32_t)0x000007C0) /*!< ADC 16th conversion in regular sequence */
MartinJohnson 0:404f5a4f1385 2990 #define ADC_SQR4_SQ16_0 ((uint32_t)0x00000040) /*!< ADC SQ16 bit 0 */
MartinJohnson 0:404f5a4f1385 2991 #define ADC_SQR4_SQ16_1 ((uint32_t)0x00000080) /*!< ADC SQ16 bit 1 */
MartinJohnson 0:404f5a4f1385 2992 #define ADC_SQR4_SQ16_2 ((uint32_t)0x00000100) /*!< ADC SQ16 bit 2 */
MartinJohnson 0:404f5a4f1385 2993 #define ADC_SQR4_SQ16_3 ((uint32_t)0x00000200) /*!< ADC SQ16 bit 3 */
MartinJohnson 0:404f5a4f1385 2994 #define ADC_SQR4_SQ16_4 ((uint32_t)0x00000400) /*!< ADC SQ16 bit 4 */
MartinJohnson 0:404f5a4f1385 2995
MartinJohnson 0:404f5a4f1385 2996 /* these defines are maintained for legacy purpose */
MartinJohnson 0:404f5a4f1385 2997 #define ADC_SQR3_SQ15 ADC_SQR4_SQ15 /*!< ADC 15th conversion in regular sequence */
MartinJohnson 0:404f5a4f1385 2998 #define ADC_SQR3_SQ15_0 ADC_SQR4_SQ15_0 /*!< ADC SQ15 bit 0 */
MartinJohnson 0:404f5a4f1385 2999 #define ADC_SQR3_SQ15_1 ADC_SQR4_SQ15_1 /*!< ADC SQ15 bit 1 */
MartinJohnson 0:404f5a4f1385 3000 #define ADC_SQR3_SQ15_2 ADC_SQR4_SQ15_2 /*!< ADC SQ15 bit 2 */
MartinJohnson 0:404f5a4f1385 3001 #define ADC_SQR3_SQ15_3 ADC_SQR4_SQ15_3 /*!< ADC SQ15 bit 3 */
MartinJohnson 0:404f5a4f1385 3002 #define ADC_SQR3_SQ15_4 ADC_SQR4_SQ15_4 /*!< ADC SQ105 bit 4 */
MartinJohnson 0:404f5a4f1385 3003
MartinJohnson 0:404f5a4f1385 3004 #define ADC_SQR3_SQ16 ADC_SQR4_SQ16 /*!< ADC 16th conversion in regular sequence */
MartinJohnson 0:404f5a4f1385 3005 #define ADC_SQR3_SQ16_0 ADC_SQR4_SQ16_0 /*!< ADC SQ16 bit 0 */
MartinJohnson 0:404f5a4f1385 3006 #define ADC_SQR3_SQ16_1 ADC_SQR4_SQ16_1 /*!< ADC SQ16 bit 1 */
MartinJohnson 0:404f5a4f1385 3007 #define ADC_SQR3_SQ16_2 ADC_SQR4_SQ16_2 /*!< ADC SQ16 bit 2 */
MartinJohnson 0:404f5a4f1385 3008 #define ADC_SQR3_SQ16_3 ADC_SQR4_SQ16_3 /*!< ADC SQ16 bit 3 */
MartinJohnson 0:404f5a4f1385 3009 #define ADC_SQR3_SQ16_4 ADC_SQR4_SQ16_4 /*!< ADC SQ16 bit 4 */
MartinJohnson 0:404f5a4f1385 3010 /******************** Bit definition for ADC_DR register ********************/
MartinJohnson 0:404f5a4f1385 3011 #define ADC_DR_RDATA ((uint32_t)0x0000FFFF) /*!< ADC regular Data converted */
MartinJohnson 0:404f5a4f1385 3012 #define ADC_DR_RDATA_0 ((uint32_t)0x00000001) /*!< ADC RDATA bit 0 */
MartinJohnson 0:404f5a4f1385 3013 #define ADC_DR_RDATA_1 ((uint32_t)0x00000002) /*!< ADC RDATA bit 1 */
MartinJohnson 0:404f5a4f1385 3014 #define ADC_DR_RDATA_2 ((uint32_t)0x00000004) /*!< ADC RDATA bit 2 */
MartinJohnson 0:404f5a4f1385 3015 #define ADC_DR_RDATA_3 ((uint32_t)0x00000008) /*!< ADC RDATA bit 3 */
MartinJohnson 0:404f5a4f1385 3016 #define ADC_DR_RDATA_4 ((uint32_t)0x00000010) /*!< ADC RDATA bit 4 */
MartinJohnson 0:404f5a4f1385 3017 #define ADC_DR_RDATA_5 ((uint32_t)0x00000020) /*!< ADC RDATA bit 5 */
MartinJohnson 0:404f5a4f1385 3018 #define ADC_DR_RDATA_6 ((uint32_t)0x00000040) /*!< ADC RDATA bit 6 */
MartinJohnson 0:404f5a4f1385 3019 #define ADC_DR_RDATA_7 ((uint32_t)0x00000080) /*!< ADC RDATA bit 7 */
MartinJohnson 0:404f5a4f1385 3020 #define ADC_DR_RDATA_8 ((uint32_t)0x00000100) /*!< ADC RDATA bit 8 */
MartinJohnson 0:404f5a4f1385 3021 #define ADC_DR_RDATA_9 ((uint32_t)0x00000200) /*!< ADC RDATA bit 9 */
MartinJohnson 0:404f5a4f1385 3022 #define ADC_DR_RDATA_10 ((uint32_t)0x00000400) /*!< ADC RDATA bit 10 */
MartinJohnson 0:404f5a4f1385 3023 #define ADC_DR_RDATA_11 ((uint32_t)0x00000800) /*!< ADC RDATA bit 11 */
MartinJohnson 0:404f5a4f1385 3024 #define ADC_DR_RDATA_12 ((uint32_t)0x00001000) /*!< ADC RDATA bit 12 */
MartinJohnson 0:404f5a4f1385 3025 #define ADC_DR_RDATA_13 ((uint32_t)0x00002000) /*!< ADC RDATA bit 13 */
MartinJohnson 0:404f5a4f1385 3026 #define ADC_DR_RDATA_14 ((uint32_t)0x00004000) /*!< ADC RDATA bit 14 */
MartinJohnson 0:404f5a4f1385 3027 #define ADC_DR_RDATA_15 ((uint32_t)0x00008000) /*!< ADC RDATA bit 15 */
MartinJohnson 0:404f5a4f1385 3028
MartinJohnson 0:404f5a4f1385 3029 /******************** Bit definition for ADC_JSQR register ********************/
MartinJohnson 0:404f5a4f1385 3030 #define ADC_JSQR_JL ((uint32_t)0x00000003) /*!< ADC injected channel sequence length */
MartinJohnson 0:404f5a4f1385 3031 #define ADC_JSQR_JL_0 ((uint32_t)0x00000001) /*!< ADC JL bit 0 */
MartinJohnson 0:404f5a4f1385 3032 #define ADC_JSQR_JL_1 ((uint32_t)0x00000002) /*!< ADC JL bit 1 */
MartinJohnson 0:404f5a4f1385 3033
MartinJohnson 0:404f5a4f1385 3034 #define ADC_JSQR_JEXTSEL ((uint32_t)0x0000003C) /*!< ADC external trigger selection for injected group */
MartinJohnson 0:404f5a4f1385 3035 #define ADC_JSQR_JEXTSEL_0 ((uint32_t)0x00000004) /*!< ADC JEXTSEL bit 0 */
MartinJohnson 0:404f5a4f1385 3036 #define ADC_JSQR_JEXTSEL_1 ((uint32_t)0x00000008) /*!< ADC JEXTSEL bit 1 */
MartinJohnson 0:404f5a4f1385 3037 #define ADC_JSQR_JEXTSEL_2 ((uint32_t)0x00000010) /*!< ADC JEXTSEL bit 2 */
MartinJohnson 0:404f5a4f1385 3038 #define ADC_JSQR_JEXTSEL_3 ((uint32_t)0x00000020) /*!< ADC JEXTSEL bit 3 */
MartinJohnson 0:404f5a4f1385 3039
MartinJohnson 0:404f5a4f1385 3040 #define ADC_JSQR_JEXTEN ((uint32_t)0x000000C0) /*!< ADC external trigger enable and polarity selection for injected channels */
MartinJohnson 0:404f5a4f1385 3041 #define ADC_JSQR_JEXTEN_0 ((uint32_t)0x00000040) /*!< ADC JEXTEN bit 0 */
MartinJohnson 0:404f5a4f1385 3042 #define ADC_JSQR_JEXTEN_1 ((uint32_t)0x00000080) /*!< ADC JEXTEN bit 1 */
MartinJohnson 0:404f5a4f1385 3043
MartinJohnson 0:404f5a4f1385 3044 #define ADC_JSQR_JSQ1 ((uint32_t)0x00001F00) /*!< ADC 1st conversion in injected sequence */
MartinJohnson 0:404f5a4f1385 3045 #define ADC_JSQR_JSQ1_0 ((uint32_t)0x00000100) /*!< ADC JSQ1 bit 0 */
MartinJohnson 0:404f5a4f1385 3046 #define ADC_JSQR_JSQ1_1 ((uint32_t)0x00000200) /*!< ADC JSQ1 bit 1 */
MartinJohnson 0:404f5a4f1385 3047 #define ADC_JSQR_JSQ1_2 ((uint32_t)0x00000400) /*!< ADC JSQ1 bit 2 */
MartinJohnson 0:404f5a4f1385 3048 #define ADC_JSQR_JSQ1_3 ((uint32_t)0x00000800) /*!< ADC JSQ1 bit 3 */
MartinJohnson 0:404f5a4f1385 3049 #define ADC_JSQR_JSQ1_4 ((uint32_t)0x00001000) /*!< ADC JSQ1 bit 4 */
MartinJohnson 0:404f5a4f1385 3050
MartinJohnson 0:404f5a4f1385 3051 #define ADC_JSQR_JSQ2 ((uint32_t)0x0007C000) /*!< ADC 2nd conversion in injected sequence */
MartinJohnson 0:404f5a4f1385 3052 #define ADC_JSQR_JSQ2_0 ((uint32_t)0x00004000) /*!< ADC JSQ2 bit 0 */
MartinJohnson 0:404f5a4f1385 3053 #define ADC_JSQR_JSQ2_1 ((uint32_t)0x00008000) /*!< ADC JSQ2 bit 1 */
MartinJohnson 0:404f5a4f1385 3054 #define ADC_JSQR_JSQ2_2 ((uint32_t)0x00010000) /*!< ADC JSQ2 bit 2 */
MartinJohnson 0:404f5a4f1385 3055 #define ADC_JSQR_JSQ2_3 ((uint32_t)0x00020000) /*!< ADC JSQ2 bit 3 */
MartinJohnson 0:404f5a4f1385 3056 #define ADC_JSQR_JSQ2_4 ((uint32_t)0x00040000) /*!< ADC JSQ2 bit 4 */
MartinJohnson 0:404f5a4f1385 3057
MartinJohnson 0:404f5a4f1385 3058 #define ADC_JSQR_JSQ3 ((uint32_t)0x01F00000) /*!< ADC 3rd conversion in injected sequence */
MartinJohnson 0:404f5a4f1385 3059 #define ADC_JSQR_JSQ3_0 ((uint32_t)0x00100000) /*!< ADC JSQ3 bit 0 */
MartinJohnson 0:404f5a4f1385 3060 #define ADC_JSQR_JSQ3_1 ((uint32_t)0x00200000) /*!< ADC JSQ3 bit 1 */
MartinJohnson 0:404f5a4f1385 3061 #define ADC_JSQR_JSQ3_2 ((uint32_t)0x00400000) /*!< ADC JSQ3 bit 2 */
MartinJohnson 0:404f5a4f1385 3062 #define ADC_JSQR_JSQ3_3 ((uint32_t)0x00800000) /*!< ADC JSQ3 bit 3 */
MartinJohnson 0:404f5a4f1385 3063 #define ADC_JSQR_JSQ3_4 ((uint32_t)0x01000000) /*!< ADC JSQ3 bit 4 */
MartinJohnson 0:404f5a4f1385 3064
MartinJohnson 0:404f5a4f1385 3065 #define ADC_JSQR_JSQ4 ((uint32_t)0x7C000000) /*!< ADC 4th conversion in injected sequence */
MartinJohnson 0:404f5a4f1385 3066 #define ADC_JSQR_JSQ4_0 ((uint32_t)0x04000000) /*!< ADC JSQ4 bit 0 */
MartinJohnson 0:404f5a4f1385 3067 #define ADC_JSQR_JSQ4_1 ((uint32_t)0x08000000) /*!< ADC JSQ4 bit 1 */
MartinJohnson 0:404f5a4f1385 3068 #define ADC_JSQR_JSQ4_2 ((uint32_t)0x10000000) /*!< ADC JSQ4 bit 2 */
MartinJohnson 0:404f5a4f1385 3069 #define ADC_JSQR_JSQ4_3 ((uint32_t)0x20000000) /*!< ADC JSQ4 bit 3 */
MartinJohnson 0:404f5a4f1385 3070 #define ADC_JSQR_JSQ4_4 ((uint32_t)0x40000000) /*!< ADC JSQ4 bit 4 */
MartinJohnson 0:404f5a4f1385 3071
MartinJohnson 0:404f5a4f1385 3072 /******************** Bit definition for ADC_OFR1 register ********************/
MartinJohnson 0:404f5a4f1385 3073 #define ADC_OFR1_OFFSET1 ((uint32_t)0x00000FFF) /*!< ADC data offset 1 for channel programmed into bits OFFSET1_CH[4:0] */
MartinJohnson 0:404f5a4f1385 3074 #define ADC_OFR1_OFFSET1_0 ((uint32_t)0x00000001) /*!< ADC OFFSET1 bit 0 */
MartinJohnson 0:404f5a4f1385 3075 #define ADC_OFR1_OFFSET1_1 ((uint32_t)0x00000002) /*!< ADC OFFSET1 bit 1 */
MartinJohnson 0:404f5a4f1385 3076 #define ADC_OFR1_OFFSET1_2 ((uint32_t)0x00000004) /*!< ADC OFFSET1 bit 2 */
MartinJohnson 0:404f5a4f1385 3077 #define ADC_OFR1_OFFSET1_3 ((uint32_t)0x00000008) /*!< ADC OFFSET1 bit 3 */
MartinJohnson 0:404f5a4f1385 3078 #define ADC_OFR1_OFFSET1_4 ((uint32_t)0x00000010) /*!< ADC OFFSET1 bit 4 */
MartinJohnson 0:404f5a4f1385 3079 #define ADC_OFR1_OFFSET1_5 ((uint32_t)0x00000020) /*!< ADC OFFSET1 bit 5 */
MartinJohnson 0:404f5a4f1385 3080 #define ADC_OFR1_OFFSET1_6 ((uint32_t)0x00000040) /*!< ADC OFFSET1 bit 6 */
MartinJohnson 0:404f5a4f1385 3081 #define ADC_OFR1_OFFSET1_7 ((uint32_t)0x00000080) /*!< ADC OFFSET1 bit 7 */
MartinJohnson 0:404f5a4f1385 3082 #define ADC_OFR1_OFFSET1_8 ((uint32_t)0x00000100) /*!< ADC OFFSET1 bit 8 */
MartinJohnson 0:404f5a4f1385 3083 #define ADC_OFR1_OFFSET1_9 ((uint32_t)0x00000200) /*!< ADC OFFSET1 bit 9 */
MartinJohnson 0:404f5a4f1385 3084 #define ADC_OFR1_OFFSET1_10 ((uint32_t)0x00000400) /*!< ADC OFFSET1 bit 10 */
MartinJohnson 0:404f5a4f1385 3085 #define ADC_OFR1_OFFSET1_11 ((uint32_t)0x00000800) /*!< ADC OFFSET1 bit 11 */
MartinJohnson 0:404f5a4f1385 3086
MartinJohnson 0:404f5a4f1385 3087 #define ADC_OFR1_OFFSET1_CH ((uint32_t)0x7C000000) /*!< ADC Channel selection for the data offset 1 */
MartinJohnson 0:404f5a4f1385 3088 #define ADC_OFR1_OFFSET1_CH_0 ((uint32_t)0x04000000) /*!< ADC OFFSET1_CH bit 0 */
MartinJohnson 0:404f5a4f1385 3089 #define ADC_OFR1_OFFSET1_CH_1 ((uint32_t)0x08000000) /*!< ADC OFFSET1_CH bit 1 */
MartinJohnson 0:404f5a4f1385 3090 #define ADC_OFR1_OFFSET1_CH_2 ((uint32_t)0x10000000) /*!< ADC OFFSET1_CH bit 2 */
MartinJohnson 0:404f5a4f1385 3091 #define ADC_OFR1_OFFSET1_CH_3 ((uint32_t)0x20000000) /*!< ADC OFFSET1_CH bit 3 */
MartinJohnson 0:404f5a4f1385 3092 #define ADC_OFR1_OFFSET1_CH_4 ((uint32_t)0x40000000) /*!< ADC OFFSET1_CH bit 4 */
MartinJohnson 0:404f5a4f1385 3093
MartinJohnson 0:404f5a4f1385 3094 #define ADC_OFR1_OFFSET1_EN ((uint32_t)0x80000000) /*!< ADC offset 1 enable */
MartinJohnson 0:404f5a4f1385 3095
MartinJohnson 0:404f5a4f1385 3096 /******************** Bit definition for ADC_OFR2 register ********************/
MartinJohnson 0:404f5a4f1385 3097 #define ADC_OFR2_OFFSET2 ((uint32_t)0x00000FFF) /*!< ADC data offset 2 for channel programmed into bits OFFSET2_CH[4:0] */
MartinJohnson 0:404f5a4f1385 3098 #define ADC_OFR2_OFFSET2_0 ((uint32_t)0x00000001) /*!< ADC OFFSET2 bit 0 */
MartinJohnson 0:404f5a4f1385 3099 #define ADC_OFR2_OFFSET2_1 ((uint32_t)0x00000002) /*!< ADC OFFSET2 bit 1 */
MartinJohnson 0:404f5a4f1385 3100 #define ADC_OFR2_OFFSET2_2 ((uint32_t)0x00000004) /*!< ADC OFFSET2 bit 2 */
MartinJohnson 0:404f5a4f1385 3101 #define ADC_OFR2_OFFSET2_3 ((uint32_t)0x00000008) /*!< ADC OFFSET2 bit 3 */
MartinJohnson 0:404f5a4f1385 3102 #define ADC_OFR2_OFFSET2_4 ((uint32_t)0x00000010) /*!< ADC OFFSET2 bit 4 */
MartinJohnson 0:404f5a4f1385 3103 #define ADC_OFR2_OFFSET2_5 ((uint32_t)0x00000020) /*!< ADC OFFSET2 bit 5 */
MartinJohnson 0:404f5a4f1385 3104 #define ADC_OFR2_OFFSET2_6 ((uint32_t)0x00000040) /*!< ADC OFFSET2 bit 6 */
MartinJohnson 0:404f5a4f1385 3105 #define ADC_OFR2_OFFSET2_7 ((uint32_t)0x00000080) /*!< ADC OFFSET2 bit 7 */
MartinJohnson 0:404f5a4f1385 3106 #define ADC_OFR2_OFFSET2_8 ((uint32_t)0x00000100) /*!< ADC OFFSET2 bit 8 */
MartinJohnson 0:404f5a4f1385 3107 #define ADC_OFR2_OFFSET2_9 ((uint32_t)0x00000200) /*!< ADC OFFSET2 bit 9 */
MartinJohnson 0:404f5a4f1385 3108 #define ADC_OFR2_OFFSET2_10 ((uint32_t)0x00000400) /*!< ADC OFFSET2 bit 10 */
MartinJohnson 0:404f5a4f1385 3109 #define ADC_OFR2_OFFSET2_11 ((uint32_t)0x00000800) /*!< ADC OFFSET2 bit 11 */
MartinJohnson 0:404f5a4f1385 3110
MartinJohnson 0:404f5a4f1385 3111 #define ADC_OFR2_OFFSET2_CH ((uint32_t)0x7C000000) /*!< ADC Channel selection for the data offset 2 */
MartinJohnson 0:404f5a4f1385 3112 #define ADC_OFR2_OFFSET2_CH_0 ((uint32_t)0x04000000) /*!< ADC OFFSET2_CH bit 0 */
MartinJohnson 0:404f5a4f1385 3113 #define ADC_OFR2_OFFSET2_CH_1 ((uint32_t)0x08000000) /*!< ADC OFFSET2_CH bit 1 */
MartinJohnson 0:404f5a4f1385 3114 #define ADC_OFR2_OFFSET2_CH_2 ((uint32_t)0x10000000) /*!< ADC OFFSET2_CH bit 2 */
MartinJohnson 0:404f5a4f1385 3115 #define ADC_OFR2_OFFSET2_CH_3 ((uint32_t)0x20000000) /*!< ADC OFFSET2_CH bit 3 */
MartinJohnson 0:404f5a4f1385 3116 #define ADC_OFR2_OFFSET2_CH_4 ((uint32_t)0x40000000) /*!< ADC OFFSET2_CH bit 4 */
MartinJohnson 0:404f5a4f1385 3117
MartinJohnson 0:404f5a4f1385 3118 #define ADC_OFR2_OFFSET2_EN ((uint32_t)0x80000000) /*!< ADC offset 2 enable */
MartinJohnson 0:404f5a4f1385 3119
MartinJohnson 0:404f5a4f1385 3120 /******************** Bit definition for ADC_OFR3 register ********************/
MartinJohnson 0:404f5a4f1385 3121 #define ADC_OFR3_OFFSET3 ((uint32_t)0x00000FFF) /*!< ADC data offset 3 for channel programmed into bits OFFSET3_CH[4:0] */
MartinJohnson 0:404f5a4f1385 3122 #define ADC_OFR3_OFFSET3_0 ((uint32_t)0x00000001) /*!< ADC OFFSET3 bit 0 */
MartinJohnson 0:404f5a4f1385 3123 #define ADC_OFR3_OFFSET3_1 ((uint32_t)0x00000002) /*!< ADC OFFSET3 bit 1 */
MartinJohnson 0:404f5a4f1385 3124 #define ADC_OFR3_OFFSET3_2 ((uint32_t)0x00000004) /*!< ADC OFFSET3 bit 2 */
MartinJohnson 0:404f5a4f1385 3125 #define ADC_OFR3_OFFSET3_3 ((uint32_t)0x00000008) /*!< ADC OFFSET3 bit 3 */
MartinJohnson 0:404f5a4f1385 3126 #define ADC_OFR3_OFFSET3_4 ((uint32_t)0x00000010) /*!< ADC OFFSET3 bit 4 */
MartinJohnson 0:404f5a4f1385 3127 #define ADC_OFR3_OFFSET3_5 ((uint32_t)0x00000020) /*!< ADC OFFSET3 bit 5 */
MartinJohnson 0:404f5a4f1385 3128 #define ADC_OFR3_OFFSET3_6 ((uint32_t)0x00000040) /*!< ADC OFFSET3 bit 6 */
MartinJohnson 0:404f5a4f1385 3129 #define ADC_OFR3_OFFSET3_7 ((uint32_t)0x00000080) /*!< ADC OFFSET3 bit 7 */
MartinJohnson 0:404f5a4f1385 3130 #define ADC_OFR3_OFFSET3_8 ((uint32_t)0x00000100) /*!< ADC OFFSET3 bit 8 */
MartinJohnson 0:404f5a4f1385 3131 #define ADC_OFR3_OFFSET3_9 ((uint32_t)0x00000200) /*!< ADC OFFSET3 bit 9 */
MartinJohnson 0:404f5a4f1385 3132 #define ADC_OFR3_OFFSET3_10 ((uint32_t)0x00000400) /*!< ADC OFFSET3 bit 10 */
MartinJohnson 0:404f5a4f1385 3133 #define ADC_OFR3_OFFSET3_11 ((uint32_t)0x00000800) /*!< ADC OFFSET3 bit 11 */
MartinJohnson 0:404f5a4f1385 3134
MartinJohnson 0:404f5a4f1385 3135 #define ADC_OFR3_OFFSET3_CH ((uint32_t)0x7C000000) /*!< ADC Channel selection for the data offset 3 */
MartinJohnson 0:404f5a4f1385 3136 #define ADC_OFR3_OFFSET3_CH_0 ((uint32_t)0x04000000) /*!< ADC OFFSET3_CH bit 0 */
MartinJohnson 0:404f5a4f1385 3137 #define ADC_OFR3_OFFSET3_CH_1 ((uint32_t)0x08000000) /*!< ADC OFFSET3_CH bit 1 */
MartinJohnson 0:404f5a4f1385 3138 #define ADC_OFR3_OFFSET3_CH_2 ((uint32_t)0x10000000) /*!< ADC OFFSET3_CH bit 2 */
MartinJohnson 0:404f5a4f1385 3139 #define ADC_OFR3_OFFSET3_CH_3 ((uint32_t)0x20000000) /*!< ADC OFFSET3_CH bit 3 */
MartinJohnson 0:404f5a4f1385 3140 #define ADC_OFR3_OFFSET3_CH_4 ((uint32_t)0x40000000) /*!< ADC OFFSET3_CH bit 4 */
MartinJohnson 0:404f5a4f1385 3141
MartinJohnson 0:404f5a4f1385 3142 #define ADC_OFR3_OFFSET3_EN ((uint32_t)0x80000000) /*!< ADC offset 3 enable */
MartinJohnson 0:404f5a4f1385 3143
MartinJohnson 0:404f5a4f1385 3144 /******************** Bit definition for ADC_OFR4 register ********************/
MartinJohnson 0:404f5a4f1385 3145 #define ADC_OFR4_OFFSET4 ((uint32_t)0x00000FFF) /*!< ADC data offset 4 for channel programmed into bits OFFSET4_CH[4:0] */
MartinJohnson 0:404f5a4f1385 3146 #define ADC_OFR4_OFFSET4_0 ((uint32_t)0x00000001) /*!< ADC OFFSET4 bit 0 */
MartinJohnson 0:404f5a4f1385 3147 #define ADC_OFR4_OFFSET4_1 ((uint32_t)0x00000002) /*!< ADC OFFSET4 bit 1 */
MartinJohnson 0:404f5a4f1385 3148 #define ADC_OFR4_OFFSET4_2 ((uint32_t)0x00000004) /*!< ADC OFFSET4 bit 2 */
MartinJohnson 0:404f5a4f1385 3149 #define ADC_OFR4_OFFSET4_3 ((uint32_t)0x00000008) /*!< ADC OFFSET4 bit 3 */
MartinJohnson 0:404f5a4f1385 3150 #define ADC_OFR4_OFFSET4_4 ((uint32_t)0x00000010) /*!< ADC OFFSET4 bit 4 */
MartinJohnson 0:404f5a4f1385 3151 #define ADC_OFR4_OFFSET4_5 ((uint32_t)0x00000020) /*!< ADC OFFSET4 bit 5 */
MartinJohnson 0:404f5a4f1385 3152 #define ADC_OFR4_OFFSET4_6 ((uint32_t)0x00000040) /*!< ADC OFFSET4 bit 6 */
MartinJohnson 0:404f5a4f1385 3153 #define ADC_OFR4_OFFSET4_7 ((uint32_t)0x00000080) /*!< ADC OFFSET4 bit 7 */
MartinJohnson 0:404f5a4f1385 3154 #define ADC_OFR4_OFFSET4_8 ((uint32_t)0x00000100) /*!< ADC OFFSET4 bit 8 */
MartinJohnson 0:404f5a4f1385 3155 #define ADC_OFR4_OFFSET4_9 ((uint32_t)0x00000200) /*!< ADC OFFSET4 bit 9 */
MartinJohnson 0:404f5a4f1385 3156 #define ADC_OFR4_OFFSET4_10 ((uint32_t)0x00000400) /*!< ADC OFFSET4 bit 10 */
MartinJohnson 0:404f5a4f1385 3157 #define ADC_OFR4_OFFSET4_11 ((uint32_t)0x00000800) /*!< ADC OFFSET4 bit 11 */
MartinJohnson 0:404f5a4f1385 3158
MartinJohnson 0:404f5a4f1385 3159 #define ADC_OFR4_OFFSET4_CH ((uint32_t)0x7C000000) /*!< ADC Channel selection for the data offset 4 */
MartinJohnson 0:404f5a4f1385 3160 #define ADC_OFR4_OFFSET4_CH_0 ((uint32_t)0x04000000) /*!< ADC OFFSET4_CH bit 0 */
MartinJohnson 0:404f5a4f1385 3161 #define ADC_OFR4_OFFSET4_CH_1 ((uint32_t)0x08000000) /*!< ADC OFFSET4_CH bit 1 */
MartinJohnson 0:404f5a4f1385 3162 #define ADC_OFR4_OFFSET4_CH_2 ((uint32_t)0x10000000) /*!< ADC OFFSET4_CH bit 2 */
MartinJohnson 0:404f5a4f1385 3163 #define ADC_OFR4_OFFSET4_CH_3 ((uint32_t)0x20000000) /*!< ADC OFFSET4_CH bit 3 */
MartinJohnson 0:404f5a4f1385 3164 #define ADC_OFR4_OFFSET4_CH_4 ((uint32_t)0x40000000) /*!< ADC OFFSET4_CH bit 4 */
MartinJohnson 0:404f5a4f1385 3165
MartinJohnson 0:404f5a4f1385 3166 #define ADC_OFR4_OFFSET4_EN ((uint32_t)0x80000000) /*!< ADC offset 4 enable */
MartinJohnson 0:404f5a4f1385 3167
MartinJohnson 0:404f5a4f1385 3168 /******************** Bit definition for ADC_JDR1 register ********************/
MartinJohnson 0:404f5a4f1385 3169 #define ADC_JDR1_JDATA ((uint32_t)0x0000FFFF) /*!< ADC Injected DATA */
MartinJohnson 0:404f5a4f1385 3170 #define ADC_JDR1_JDATA_0 ((uint32_t)0x00000001) /*!< ADC JDATA bit 0 */
MartinJohnson 0:404f5a4f1385 3171 #define ADC_JDR1_JDATA_1 ((uint32_t)0x00000002) /*!< ADC JDATA bit 1 */
MartinJohnson 0:404f5a4f1385 3172 #define ADC_JDR1_JDATA_2 ((uint32_t)0x00000004) /*!< ADC JDATA bit 2 */
MartinJohnson 0:404f5a4f1385 3173 #define ADC_JDR1_JDATA_3 ((uint32_t)0x00000008) /*!< ADC JDATA bit 3 */
MartinJohnson 0:404f5a4f1385 3174 #define ADC_JDR1_JDATA_4 ((uint32_t)0x00000010) /*!< ADC JDATA bit 4 */
MartinJohnson 0:404f5a4f1385 3175 #define ADC_JDR1_JDATA_5 ((uint32_t)0x00000020) /*!< ADC JDATA bit 5 */
MartinJohnson 0:404f5a4f1385 3176 #define ADC_JDR1_JDATA_6 ((uint32_t)0x00000040) /*!< ADC JDATA bit 6 */
MartinJohnson 0:404f5a4f1385 3177 #define ADC_JDR1_JDATA_7 ((uint32_t)0x00000080) /*!< ADC JDATA bit 7 */
MartinJohnson 0:404f5a4f1385 3178 #define ADC_JDR1_JDATA_8 ((uint32_t)0x00000100) /*!< ADC JDATA bit 8 */
MartinJohnson 0:404f5a4f1385 3179 #define ADC_JDR1_JDATA_9 ((uint32_t)0x00000200) /*!< ADC JDATA bit 9 */
MartinJohnson 0:404f5a4f1385 3180 #define ADC_JDR1_JDATA_10 ((uint32_t)0x00000400) /*!< ADC JDATA bit 10 */
MartinJohnson 0:404f5a4f1385 3181 #define ADC_JDR1_JDATA_11 ((uint32_t)0x00000800) /*!< ADC JDATA bit 11 */
MartinJohnson 0:404f5a4f1385 3182 #define ADC_JDR1_JDATA_12 ((uint32_t)0x00001000) /*!< ADC JDATA bit 12 */
MartinJohnson 0:404f5a4f1385 3183 #define ADC_JDR1_JDATA_13 ((uint32_t)0x00002000) /*!< ADC JDATA bit 13 */
MartinJohnson 0:404f5a4f1385 3184 #define ADC_JDR1_JDATA_14 ((uint32_t)0x00004000) /*!< ADC JDATA bit 14 */
MartinJohnson 0:404f5a4f1385 3185 #define ADC_JDR1_JDATA_15 ((uint32_t)0x00008000) /*!< ADC JDATA bit 15 */
MartinJohnson 0:404f5a4f1385 3186
MartinJohnson 0:404f5a4f1385 3187 /******************** Bit definition for ADC_JDR2 register ********************/
MartinJohnson 0:404f5a4f1385 3188 #define ADC_JDR2_JDATA ((uint32_t)0x0000FFFF) /*!< ADC Injected DATA */
MartinJohnson 0:404f5a4f1385 3189 #define ADC_JDR2_JDATA_0 ((uint32_t)0x00000001) /*!< ADC JDATA bit 0 */
MartinJohnson 0:404f5a4f1385 3190 #define ADC_JDR2_JDATA_1 ((uint32_t)0x00000002) /*!< ADC JDATA bit 1 */
MartinJohnson 0:404f5a4f1385 3191 #define ADC_JDR2_JDATA_2 ((uint32_t)0x00000004) /*!< ADC JDATA bit 2 */
MartinJohnson 0:404f5a4f1385 3192 #define ADC_JDR2_JDATA_3 ((uint32_t)0x00000008) /*!< ADC JDATA bit 3 */
MartinJohnson 0:404f5a4f1385 3193 #define ADC_JDR2_JDATA_4 ((uint32_t)0x00000010) /*!< ADC JDATA bit 4 */
MartinJohnson 0:404f5a4f1385 3194 #define ADC_JDR2_JDATA_5 ((uint32_t)0x00000020) /*!< ADC JDATA bit 5 */
MartinJohnson 0:404f5a4f1385 3195 #define ADC_JDR2_JDATA_6 ((uint32_t)0x00000040) /*!< ADC JDATA bit 6 */
MartinJohnson 0:404f5a4f1385 3196 #define ADC_JDR2_JDATA_7 ((uint32_t)0x00000080) /*!< ADC JDATA bit 7 */
MartinJohnson 0:404f5a4f1385 3197 #define ADC_JDR2_JDATA_8 ((uint32_t)0x00000100) /*!< ADC JDATA bit 8 */
MartinJohnson 0:404f5a4f1385 3198 #define ADC_JDR2_JDATA_9 ((uint32_t)0x00000200) /*!< ADC JDATA bit 9 */
MartinJohnson 0:404f5a4f1385 3199 #define ADC_JDR2_JDATA_10 ((uint32_t)0x00000400) /*!< ADC JDATA bit 10 */
MartinJohnson 0:404f5a4f1385 3200 #define ADC_JDR2_JDATA_11 ((uint32_t)0x00000800) /*!< ADC JDATA bit 11 */
MartinJohnson 0:404f5a4f1385 3201 #define ADC_JDR2_JDATA_12 ((uint32_t)0x00001000) /*!< ADC JDATA bit 12 */
MartinJohnson 0:404f5a4f1385 3202 #define ADC_JDR2_JDATA_13 ((uint32_t)0x00002000) /*!< ADC JDATA bit 13 */
MartinJohnson 0:404f5a4f1385 3203 #define ADC_JDR2_JDATA_14 ((uint32_t)0x00004000) /*!< ADC JDATA bit 14 */
MartinJohnson 0:404f5a4f1385 3204 #define ADC_JDR2_JDATA_15 ((uint32_t)0x00008000) /*!< ADC JDATA bit 15 */
MartinJohnson 0:404f5a4f1385 3205
MartinJohnson 0:404f5a4f1385 3206 /******************** Bit definition for ADC_JDR3 register ********************/
MartinJohnson 0:404f5a4f1385 3207 #define ADC_JDR3_JDATA ((uint32_t)0x0000FFFF) /*!< ADC Injected DATA */
MartinJohnson 0:404f5a4f1385 3208 #define ADC_JDR3_JDATA_0 ((uint32_t)0x00000001) /*!< ADC JDATA bit 0 */
MartinJohnson 0:404f5a4f1385 3209 #define ADC_JDR3_JDATA_1 ((uint32_t)0x00000002) /*!< ADC JDATA bit 1 */
MartinJohnson 0:404f5a4f1385 3210 #define ADC_JDR3_JDATA_2 ((uint32_t)0x00000004) /*!< ADC JDATA bit 2 */
MartinJohnson 0:404f5a4f1385 3211 #define ADC_JDR3_JDATA_3 ((uint32_t)0x00000008) /*!< ADC JDATA bit 3 */
MartinJohnson 0:404f5a4f1385 3212 #define ADC_JDR3_JDATA_4 ((uint32_t)0x00000010) /*!< ADC JDATA bit 4 */
MartinJohnson 0:404f5a4f1385 3213 #define ADC_JDR3_JDATA_5 ((uint32_t)0x00000020) /*!< ADC JDATA bit 5 */
MartinJohnson 0:404f5a4f1385 3214 #define ADC_JDR3_JDATA_6 ((uint32_t)0x00000040) /*!< ADC JDATA bit 6 */
MartinJohnson 0:404f5a4f1385 3215 #define ADC_JDR3_JDATA_7 ((uint32_t)0x00000080) /*!< ADC JDATA bit 7 */
MartinJohnson 0:404f5a4f1385 3216 #define ADC_JDR3_JDATA_8 ((uint32_t)0x00000100) /*!< ADC JDATA bit 8 */
MartinJohnson 0:404f5a4f1385 3217 #define ADC_JDR3_JDATA_9 ((uint32_t)0x00000200) /*!< ADC JDATA bit 9 */
MartinJohnson 0:404f5a4f1385 3218 #define ADC_JDR3_JDATA_10 ((uint32_t)0x00000400) /*!< ADC JDATA bit 10 */
MartinJohnson 0:404f5a4f1385 3219 #define ADC_JDR3_JDATA_11 ((uint32_t)0x00000800) /*!< ADC JDATA bit 11 */
MartinJohnson 0:404f5a4f1385 3220 #define ADC_JDR3_JDATA_12 ((uint32_t)0x00001000) /*!< ADC JDATA bit 12 */
MartinJohnson 0:404f5a4f1385 3221 #define ADC_JDR3_JDATA_13 ((uint32_t)0x00002000) /*!< ADC JDATA bit 13 */
MartinJohnson 0:404f5a4f1385 3222 #define ADC_JDR3_JDATA_14 ((uint32_t)0x00004000) /*!< ADC JDATA bit 14 */
MartinJohnson 0:404f5a4f1385 3223 #define ADC_JDR3_JDATA_15 ((uint32_t)0x00008000) /*!< ADC JDATA bit 15 */
MartinJohnson 0:404f5a4f1385 3224
MartinJohnson 0:404f5a4f1385 3225 /******************** Bit definition for ADC_JDR4 register ********************/
MartinJohnson 0:404f5a4f1385 3226 #define ADC_JDR4_JDATA ((uint32_t)0x0000FFFF) /*!< ADC Injected DATA */
MartinJohnson 0:404f5a4f1385 3227 #define ADC_JDR4_JDATA_0 ((uint32_t)0x00000001) /*!< ADC JDATA bit 0 */
MartinJohnson 0:404f5a4f1385 3228 #define ADC_JDR4_JDATA_1 ((uint32_t)0x00000002) /*!< ADC JDATA bit 1 */
MartinJohnson 0:404f5a4f1385 3229 #define ADC_JDR4_JDATA_2 ((uint32_t)0x00000004) /*!< ADC JDATA bit 2 */
MartinJohnson 0:404f5a4f1385 3230 #define ADC_JDR4_JDATA_3 ((uint32_t)0x00000008) /*!< ADC JDATA bit 3 */
MartinJohnson 0:404f5a4f1385 3231 #define ADC_JDR4_JDATA_4 ((uint32_t)0x00000010) /*!< ADC JDATA bit 4 */
MartinJohnson 0:404f5a4f1385 3232 #define ADC_JDR4_JDATA_5 ((uint32_t)0x00000020) /*!< ADC JDATA bit 5 */
MartinJohnson 0:404f5a4f1385 3233 #define ADC_JDR4_JDATA_6 ((uint32_t)0x00000040) /*!< ADC JDATA bit 6 */
MartinJohnson 0:404f5a4f1385 3234 #define ADC_JDR4_JDATA_7 ((uint32_t)0x00000080) /*!< ADC JDATA bit 7 */
MartinJohnson 0:404f5a4f1385 3235 #define ADC_JDR4_JDATA_8 ((uint32_t)0x00000100) /*!< ADC JDATA bit 8 */
MartinJohnson 0:404f5a4f1385 3236 #define ADC_JDR4_JDATA_9 ((uint32_t)0x00000200) /*!< ADC JDATA bit 9 */
MartinJohnson 0:404f5a4f1385 3237 #define ADC_JDR4_JDATA_10 ((uint32_t)0x00000400) /*!< ADC JDATA bit 10 */
MartinJohnson 0:404f5a4f1385 3238 #define ADC_JDR4_JDATA_11 ((uint32_t)0x00000800) /*!< ADC JDATA bit 11 */
MartinJohnson 0:404f5a4f1385 3239 #define ADC_JDR4_JDATA_12 ((uint32_t)0x00001000) /*!< ADC JDATA bit 12 */
MartinJohnson 0:404f5a4f1385 3240 #define ADC_JDR4_JDATA_13 ((uint32_t)0x00002000) /*!< ADC JDATA bit 13 */
MartinJohnson 0:404f5a4f1385 3241 #define ADC_JDR4_JDATA_14 ((uint32_t)0x00004000) /*!< ADC JDATA bit 14 */
MartinJohnson 0:404f5a4f1385 3242 #define ADC_JDR4_JDATA_15 ((uint32_t)0x00008000) /*!< ADC JDATA bit 15 */
MartinJohnson 0:404f5a4f1385 3243
MartinJohnson 0:404f5a4f1385 3244 /******************** Bit definition for ADC_AWD2CR register ********************/
MartinJohnson 0:404f5a4f1385 3245 #define ADC_AWD2CR_AWD2CH ((uint32_t)0x0007FFFE) /*!< ADC Analog watchdog 2 channel selection */
MartinJohnson 0:404f5a4f1385 3246 #define ADC_AWD2CR_AWD2CH_0 ((uint32_t)0x00000002) /*!< ADC AWD2CH bit 0 */
MartinJohnson 0:404f5a4f1385 3247 #define ADC_AWD2CR_AWD2CH_1 ((uint32_t)0x00000004) /*!< ADC AWD2CH bit 1 */
MartinJohnson 0:404f5a4f1385 3248 #define ADC_AWD2CR_AWD2CH_2 ((uint32_t)0x00000008) /*!< ADC AWD2CH bit 2 */
MartinJohnson 0:404f5a4f1385 3249 #define ADC_AWD2CR_AWD2CH_3 ((uint32_t)0x00000010) /*!< ADC AWD2CH bit 3 */
MartinJohnson 0:404f5a4f1385 3250 #define ADC_AWD2CR_AWD2CH_4 ((uint32_t)0x00000020) /*!< ADC AWD2CH bit 4 */
MartinJohnson 0:404f5a4f1385 3251 #define ADC_AWD2CR_AWD2CH_5 ((uint32_t)0x00000040) /*!< ADC AWD2CH bit 5 */
MartinJohnson 0:404f5a4f1385 3252 #define ADC_AWD2CR_AWD2CH_6 ((uint32_t)0x00000080) /*!< ADC AWD2CH bit 6 */
MartinJohnson 0:404f5a4f1385 3253 #define ADC_AWD2CR_AWD2CH_7 ((uint32_t)0x00000100) /*!< ADC AWD2CH bit 7 */
MartinJohnson 0:404f5a4f1385 3254 #define ADC_AWD2CR_AWD2CH_8 ((uint32_t)0x00000200) /*!< ADC AWD2CH bit 8 */
MartinJohnson 0:404f5a4f1385 3255 #define ADC_AWD2CR_AWD2CH_9 ((uint32_t)0x00000400) /*!< ADC AWD2CH bit 9 */
MartinJohnson 0:404f5a4f1385 3256 #define ADC_AWD2CR_AWD2CH_10 ((uint32_t)0x00000800) /*!< ADC AWD2CH bit 10 */
MartinJohnson 0:404f5a4f1385 3257 #define ADC_AWD2CR_AWD2CH_11 ((uint32_t)0x00001000) /*!< ADC AWD2CH bit 11 */
MartinJohnson 0:404f5a4f1385 3258 #define ADC_AWD2CR_AWD2CH_12 ((uint32_t)0x00002000) /*!< ADC AWD2CH bit 12 */
MartinJohnson 0:404f5a4f1385 3259 #define ADC_AWD2CR_AWD2CH_13 ((uint32_t)0x00004000) /*!< ADC AWD2CH bit 13 */
MartinJohnson 0:404f5a4f1385 3260 #define ADC_AWD2CR_AWD2CH_14 ((uint32_t)0x00008000) /*!< ADC AWD2CH bit 14 */
MartinJohnson 0:404f5a4f1385 3261 #define ADC_AWD2CR_AWD2CH_15 ((uint32_t)0x00010000) /*!< ADC AWD2CH bit 15 */
MartinJohnson 0:404f5a4f1385 3262 #define ADC_AWD2CR_AWD2CH_16 ((uint32_t)0x00020000) /*!< ADC AWD2CH bit 16 */
MartinJohnson 0:404f5a4f1385 3263 #define ADC_AWD2CR_AWD2CH_17 ((uint32_t)0x00030000) /*!< ADC AWD2CH bit 17 */
MartinJohnson 0:404f5a4f1385 3264
MartinJohnson 0:404f5a4f1385 3265 /******************** Bit definition for ADC_AWD3CR register ********************/
MartinJohnson 0:404f5a4f1385 3266 #define ADC_AWD3CR_AWD3CH ((uint32_t)0x0007FFFE) /*!< ADC Analog watchdog 2 channel selection */
MartinJohnson 0:404f5a4f1385 3267 #define ADC_AWD3CR_AWD3CH_0 ((uint32_t)0x00000002) /*!< ADC AWD3CH bit 0 */
MartinJohnson 0:404f5a4f1385 3268 #define ADC_AWD3CR_AWD3CH_1 ((uint32_t)0x00000004) /*!< ADC AWD3CH bit 1 */
MartinJohnson 0:404f5a4f1385 3269 #define ADC_AWD3CR_AWD3CH_2 ((uint32_t)0x00000008) /*!< ADC AWD3CH bit 2 */
MartinJohnson 0:404f5a4f1385 3270 #define ADC_AWD3CR_AWD3CH_3 ((uint32_t)0x00000010) /*!< ADC AWD3CH bit 3 */
MartinJohnson 0:404f5a4f1385 3271 #define ADC_AWD3CR_AWD3CH_4 ((uint32_t)0x00000020) /*!< ADC AWD3CH bit 4 */
MartinJohnson 0:404f5a4f1385 3272 #define ADC_AWD3CR_AWD3CH_5 ((uint32_t)0x00000040) /*!< ADC AWD3CH bit 5 */
MartinJohnson 0:404f5a4f1385 3273 #define ADC_AWD3CR_AWD3CH_6 ((uint32_t)0x00000080) /*!< ADC AWD3CH bit 6 */
MartinJohnson 0:404f5a4f1385 3274 #define ADC_AWD3CR_AWD3CH_7 ((uint32_t)0x00000100) /*!< ADC AWD3CH bit 7 */
MartinJohnson 0:404f5a4f1385 3275 #define ADC_AWD3CR_AWD3CH_8 ((uint32_t)0x00000200) /*!< ADC AWD3CH bit 8 */
MartinJohnson 0:404f5a4f1385 3276 #define ADC_AWD3CR_AWD3CH_9 ((uint32_t)0x00000400) /*!< ADC AWD3CH bit 9 */
MartinJohnson 0:404f5a4f1385 3277 #define ADC_AWD3CR_AWD3CH_10 ((uint32_t)0x00000800) /*!< ADC AWD3CH bit 10 */
MartinJohnson 0:404f5a4f1385 3278 #define ADC_AWD3CR_AWD3CH_11 ((uint32_t)0x00001000) /*!< ADC AWD3CH bit 11 */
MartinJohnson 0:404f5a4f1385 3279 #define ADC_AWD3CR_AWD3CH_12 ((uint32_t)0x00002000) /*!< ADC AWD3CH bit 12 */
MartinJohnson 0:404f5a4f1385 3280 #define ADC_AWD3CR_AWD3CH_13 ((uint32_t)0x00004000) /*!< ADC AWD3CH bit 13 */
MartinJohnson 0:404f5a4f1385 3281 #define ADC_AWD3CR_AWD3CH_14 ((uint32_t)0x00008000) /*!< ADC AWD3CH bit 14 */
MartinJohnson 0:404f5a4f1385 3282 #define ADC_AWD3CR_AWD3CH_15 ((uint32_t)0x00010000) /*!< ADC AWD3CH bit 15 */
MartinJohnson 0:404f5a4f1385 3283 #define ADC_AWD3CR_AWD3CH_16 ((uint32_t)0x00020000) /*!< ADC AWD3CH bit 16 */
MartinJohnson 0:404f5a4f1385 3284 #define ADC_AWD3CR_AWD3CH_17 ((uint32_t)0x00030000) /*!< ADC AWD3CH bit 17 */
MartinJohnson 0:404f5a4f1385 3285
MartinJohnson 0:404f5a4f1385 3286 /******************** Bit definition for ADC_DIFSEL register ********************/
MartinJohnson 0:404f5a4f1385 3287 #define ADC_DIFSEL_DIFSEL ((uint32_t)0x0007FFFE) /*!< ADC differential modes for channels 1 to 18 */
MartinJohnson 0:404f5a4f1385 3288 #define ADC_DIFSEL_DIFSEL_0 ((uint32_t)0x00000002) /*!< ADC DIFSEL bit 0 */
MartinJohnson 0:404f5a4f1385 3289 #define ADC_DIFSEL_DIFSEL_1 ((uint32_t)0x00000004) /*!< ADC DIFSEL bit 1 */
MartinJohnson 0:404f5a4f1385 3290 #define ADC_DIFSEL_DIFSEL_2 ((uint32_t)0x00000008) /*!< ADC DIFSEL bit 2 */
MartinJohnson 0:404f5a4f1385 3291 #define ADC_DIFSEL_DIFSEL_3 ((uint32_t)0x00000010) /*!< ADC DIFSEL bit 3 */
MartinJohnson 0:404f5a4f1385 3292 #define ADC_DIFSEL_DIFSEL_4 ((uint32_t)0x00000020) /*!< ADC DIFSEL bit 4 */
MartinJohnson 0:404f5a4f1385 3293 #define ADC_DIFSEL_DIFSEL_5 ((uint32_t)0x00000040) /*!< ADC DIFSEL bit 5 */
MartinJohnson 0:404f5a4f1385 3294 #define ADC_DIFSEL_DIFSEL_6 ((uint32_t)0x00000080) /*!< ADC DIFSEL bit 6 */
MartinJohnson 0:404f5a4f1385 3295 #define ADC_DIFSEL_DIFSEL_7 ((uint32_t)0x00000100) /*!< ADC DIFSEL bit 7 */
MartinJohnson 0:404f5a4f1385 3296 #define ADC_DIFSEL_DIFSEL_8 ((uint32_t)0x00000200) /*!< ADC DIFSEL bit 8 */
MartinJohnson 0:404f5a4f1385 3297 #define ADC_DIFSEL_DIFSEL_9 ((uint32_t)0x00000400) /*!< ADC DIFSEL bit 9 */
MartinJohnson 0:404f5a4f1385 3298 #define ADC_DIFSEL_DIFSEL_10 ((uint32_t)0x00000800) /*!< ADC DIFSEL bit 10 */
MartinJohnson 0:404f5a4f1385 3299 #define ADC_DIFSEL_DIFSEL_11 ((uint32_t)0x00001000) /*!< ADC DIFSEL bit 11 */
MartinJohnson 0:404f5a4f1385 3300 #define ADC_DIFSEL_DIFSEL_12 ((uint32_t)0x00002000) /*!< ADC DIFSEL bit 12 */
MartinJohnson 0:404f5a4f1385 3301 #define ADC_DIFSEL_DIFSEL_13 ((uint32_t)0x00004000) /*!< ADC DIFSEL bit 13 */
MartinJohnson 0:404f5a4f1385 3302 #define ADC_DIFSEL_DIFSEL_14 ((uint32_t)0x00008000) /*!< ADC DIFSEL bit 14 */
MartinJohnson 0:404f5a4f1385 3303 #define ADC_DIFSEL_DIFSEL_15 ((uint32_t)0x00010000) /*!< ADC DIFSEL bit 15 */
MartinJohnson 0:404f5a4f1385 3304 #define ADC_DIFSEL_DIFSEL_16 ((uint32_t)0x00020000) /*!< ADC DIFSEL bit 16 */
MartinJohnson 0:404f5a4f1385 3305 #define ADC_DIFSEL_DIFSEL_17 ((uint32_t)0x00030000) /*!< ADC DIFSEL bit 17 */
MartinJohnson 0:404f5a4f1385 3306
MartinJohnson 0:404f5a4f1385 3307 /******************** Bit definition for ADC_CALFACT register ********************/
MartinJohnson 0:404f5a4f1385 3308 #define ADC_CALFACT_CALFACT_S ((uint32_t)0x0000007F) /*!< ADC calibration factors in single-ended mode */
MartinJohnson 0:404f5a4f1385 3309 #define ADC_CALFACT_CALFACT_S_0 ((uint32_t)0x00000001) /*!< ADC CALFACT_S bit 0 */
MartinJohnson 0:404f5a4f1385 3310 #define ADC_CALFACT_CALFACT_S_1 ((uint32_t)0x00000002) /*!< ADC CALFACT_S bit 1 */
MartinJohnson 0:404f5a4f1385 3311 #define ADC_CALFACT_CALFACT_S_2 ((uint32_t)0x00000004) /*!< ADC CALFACT_S bit 2 */
MartinJohnson 0:404f5a4f1385 3312 #define ADC_CALFACT_CALFACT_S_3 ((uint32_t)0x00000008) /*!< ADC CALFACT_S bit 3 */
MartinJohnson 0:404f5a4f1385 3313 #define ADC_CALFACT_CALFACT_S_4 ((uint32_t)0x00000010) /*!< ADC CALFACT_S bit 4 */
MartinJohnson 0:404f5a4f1385 3314 #define ADC_CALFACT_CALFACT_S_5 ((uint32_t)0x00000020) /*!< ADC CALFACT_S bit 5 */
MartinJohnson 0:404f5a4f1385 3315 #define ADC_CALFACT_CALFACT_S_6 ((uint32_t)0x00000040) /*!< ADC CALFACT_S bit 6 */
MartinJohnson 0:404f5a4f1385 3316 #define ADC_CALFACT_CALFACT_D ((uint32_t)0x007F0000) /*!< ADC calibration factors in differential mode */
MartinJohnson 0:404f5a4f1385 3317 #define ADC_CALFACT_CALFACT_D_0 ((uint32_t)0x00010000) /*!< ADC CALFACT_D bit 0 */
MartinJohnson 0:404f5a4f1385 3318 #define ADC_CALFACT_CALFACT_D_1 ((uint32_t)0x00020000) /*!< ADC CALFACT_D bit 1 */
MartinJohnson 0:404f5a4f1385 3319 #define ADC_CALFACT_CALFACT_D_2 ((uint32_t)0x00040000) /*!< ADC CALFACT_D bit 2 */
MartinJohnson 0:404f5a4f1385 3320 #define ADC_CALFACT_CALFACT_D_3 ((uint32_t)0x00080000) /*!< ADC CALFACT_D bit 3 */
MartinJohnson 0:404f5a4f1385 3321 #define ADC_CALFACT_CALFACT_D_4 ((uint32_t)0x00100000) /*!< ADC CALFACT_D bit 4 */
MartinJohnson 0:404f5a4f1385 3322 #define ADC_CALFACT_CALFACT_D_5 ((uint32_t)0x00200000) /*!< ADC CALFACT_D bit 5 */
MartinJohnson 0:404f5a4f1385 3323 #define ADC_CALFACT_CALFACT_D_6 ((uint32_t)0x00400000) /*!< ADC CALFACT_D bit 6 */
MartinJohnson 0:404f5a4f1385 3324
MartinJohnson 0:404f5a4f1385 3325 /************************* ADC Common registers *****************************/
MartinJohnson 0:404f5a4f1385 3326 /******************** Bit definition for ADC12_CSR register ********************/
MartinJohnson 0:404f5a4f1385 3327 #define ADC12_CSR_ADRDY_MST ((uint32_t)0x00000001) /*!< Master ADC ready */
MartinJohnson 0:404f5a4f1385 3328 #define ADC12_CSR_ADRDY_EOSMP_MST ((uint32_t)0x00000002) /*!< End of sampling phase flag of the master ADC */
MartinJohnson 0:404f5a4f1385 3329 #define ADC12_CSR_ADRDY_EOC_MST ((uint32_t)0x00000004) /*!< End of regular conversion of the master ADC */
MartinJohnson 0:404f5a4f1385 3330 #define ADC12_CSR_ADRDY_EOS_MST ((uint32_t)0x00000008) /*!< End of regular sequence flag of the master ADC */
MartinJohnson 0:404f5a4f1385 3331 #define ADC12_CSR_ADRDY_OVR_MST ((uint32_t)0x00000010) /*!< Overrun flag of the master ADC */
MartinJohnson 0:404f5a4f1385 3332 #define ADC12_CSR_ADRDY_JEOC_MST ((uint32_t)0x00000020) /*!< End of injected conversion of the master ADC */
MartinJohnson 0:404f5a4f1385 3333 #define ADC12_CSR_ADRDY_JEOS_MST ((uint32_t)0x00000040) /*!< End of injected sequence flag of the master ADC */
MartinJohnson 0:404f5a4f1385 3334 #define ADC12_CSR_AWD1_MST ((uint32_t)0x00000080) /*!< Analog watchdog 1 flag of the master ADC */
MartinJohnson 0:404f5a4f1385 3335 #define ADC12_CSR_AWD2_MST ((uint32_t)0x00000100) /*!< Analog watchdog 2 flag of the master ADC */
MartinJohnson 0:404f5a4f1385 3336 #define ADC12_CSR_AWD3_MST ((uint32_t)0x00000200) /*!< Analog watchdog 3 flag of the master ADC */
MartinJohnson 0:404f5a4f1385 3337 #define ADC12_CSR_JQOVF_MST ((uint32_t)0x00000400) /*!< Injected context queue overflow flag of the master ADC */
MartinJohnson 0:404f5a4f1385 3338 #define ADC12_CSR_ADRDY_SLV ((uint32_t)0x00010000) /*!< Slave ADC ready */
MartinJohnson 0:404f5a4f1385 3339 #define ADC12_CSR_ADRDY_EOSMP_SLV ((uint32_t)0x00020000) /*!< End of sampling phase flag of the slave ADC */
MartinJohnson 0:404f5a4f1385 3340 #define ADC12_CSR_ADRDY_EOC_SLV ((uint32_t)0x00040000) /*!< End of regular conversion of the slave ADC */
MartinJohnson 0:404f5a4f1385 3341 #define ADC12_CSR_ADRDY_EOS_SLV ((uint32_t)0x00080000) /*!< End of regular sequence flag of the slave ADC */
MartinJohnson 0:404f5a4f1385 3342 #define ADC12_CSR_ADRDY_OVR_SLV ((uint32_t)0x00100000) /*!< Overrun flag of the slave ADC */
MartinJohnson 0:404f5a4f1385 3343 #define ADC12_CSR_ADRDY_JEOC_SLV ((uint32_t)0x00200000) /*!< End of injected conversion of the slave ADC */
MartinJohnson 0:404f5a4f1385 3344 #define ADC12_CSR_ADRDY_JEOS_SLV ((uint32_t)0x00400000) /*!< End of injected sequence flag of the slave ADC */
MartinJohnson 0:404f5a4f1385 3345 #define ADC12_CSR_AWD1_SLV ((uint32_t)0x00800000) /*!< Analog watchdog 1 flag of the slave ADC */
MartinJohnson 0:404f5a4f1385 3346 #define ADC12_CSR_AWD2_SLV ((uint32_t)0x01000000) /*!< Analog watchdog 2 flag of the slave ADC */
MartinJohnson 0:404f5a4f1385 3347 #define ADC12_CSR_AWD3_SLV ((uint32_t)0x02000000) /*!< Analog watchdog 3 flag of the slave ADC */
MartinJohnson 0:404f5a4f1385 3348 #define ADC12_CSR_JQOVF_SLV ((uint32_t)0x04000000) /*!< Injected context queue overflow flag of the slave ADC */
MartinJohnson 0:404f5a4f1385 3349
MartinJohnson 0:404f5a4f1385 3350 /******************** Bit definition for ADC34_CSR register ********************/
MartinJohnson 0:404f5a4f1385 3351 #define ADC34_CSR_ADRDY_MST ((uint32_t)0x00000001) /*!< Master ADC ready */
MartinJohnson 0:404f5a4f1385 3352 #define ADC34_CSR_ADRDY_EOSMP_MST ((uint32_t)0x00000002) /*!< End of sampling phase flag of the master ADC */
MartinJohnson 0:404f5a4f1385 3353 #define ADC34_CSR_ADRDY_EOC_MST ((uint32_t)0x00000004) /*!< End of regular conversion of the master ADC */
MartinJohnson 0:404f5a4f1385 3354 #define ADC34_CSR_ADRDY_EOS_MST ((uint32_t)0x00000008) /*!< End of regular sequence flag of the master ADC */
MartinJohnson 0:404f5a4f1385 3355 #define ADC34_CSR_ADRDY_OVR_MST ((uint32_t)0x00000010) /*!< Overrun flag of the master ADC */
MartinJohnson 0:404f5a4f1385 3356 #define ADC34_CSR_ADRDY_JEOC_MST ((uint32_t)0x00000020) /*!< End of injected conversion of the master ADC */
MartinJohnson 0:404f5a4f1385 3357 #define ADC34_CSR_ADRDY_JEOS_MST ((uint32_t)0x00000040) /*!< End of injected sequence flag of the master ADC */
MartinJohnson 0:404f5a4f1385 3358 #define ADC34_CSR_AWD1_MST ((uint32_t)0x00000080) /*!< Analog watchdog 1 flag of the master ADC */
MartinJohnson 0:404f5a4f1385 3359 #define ADC34_CSR_AWD2_MST ((uint32_t)0x00000100) /*!< Analog watchdog 2 flag of the master ADC */
MartinJohnson 0:404f5a4f1385 3360 #define ADC34_CSR_AWD3_MST ((uint32_t)0x00000200) /*!< Analog watchdog 3 flag of the master ADC */
MartinJohnson 0:404f5a4f1385 3361 #define ADC34_CSR_JQOVF_MST ((uint32_t)0x00000400) /*!< Injected context queue overflow flag of the master ADC */
MartinJohnson 0:404f5a4f1385 3362 #define ADC34_CSR_ADRDY_SLV ((uint32_t)0x00010000) /*!< Slave ADC ready */
MartinJohnson 0:404f5a4f1385 3363 #define ADC34_CSR_ADRDY_EOSMP_SLV ((uint32_t)0x00020000) /*!< End of sampling phase flag of the slave ADC */
MartinJohnson 0:404f5a4f1385 3364 #define ADC34_CSR_ADRDY_EOC_SLV ((uint32_t)0x00040000) /*!< End of regular conversion of the slave ADC */
MartinJohnson 0:404f5a4f1385 3365 #define ADC34_CSR_ADRDY_EOS_SLV ((uint32_t)0x00080000) /*!< End of regular sequence flag of the slave ADC */
MartinJohnson 0:404f5a4f1385 3366 #define ADC12_CSR_ADRDY_OVR_SLV ((uint32_t)0x00100000) /*!< Overrun flag of the slave ADC */
MartinJohnson 0:404f5a4f1385 3367 #define ADC34_CSR_ADRDY_JEOC_SLV ((uint32_t)0x00200000) /*!< End of injected conversion of the slave ADC */
MartinJohnson 0:404f5a4f1385 3368 #define ADC34_CSR_ADRDY_JEOS_SLV ((uint32_t)0x00400000) /*!< End of injected sequence flag of the slave ADC */
MartinJohnson 0:404f5a4f1385 3369 #define ADC34_CSR_AWD1_SLV ((uint32_t)0x00800000) /*!< Analog watchdog 1 flag of the slave ADC */
MartinJohnson 0:404f5a4f1385 3370 #define ADC34_CSR_AWD2_SLV ((uint32_t)0x01000000) /*!< Analog watchdog 2 flag of the slave ADC */
MartinJohnson 0:404f5a4f1385 3371 #define ADC34_CSR_AWD3_SLV ((uint32_t)0x02000000) /*!< Analog watchdog 3 flag of the slave ADC */
MartinJohnson 0:404f5a4f1385 3372 #define ADC34_CSR_JQOVF_SLV ((uint32_t)0x04000000) /*!< Injected context queue overflow flag of the slave ADC */
MartinJohnson 0:404f5a4f1385 3373
MartinJohnson 0:404f5a4f1385 3374 /******************** Bit definition for ADC_CCR register ********************/
MartinJohnson 0:404f5a4f1385 3375 #define ADC12_CCR_MULTI ((uint32_t)0x0000001F) /*!< Multi ADC mode selection */
MartinJohnson 0:404f5a4f1385 3376 #define ADC12_CCR_MULTI_0 ((uint32_t)0x00000001) /*!< MULTI bit 0 */
MartinJohnson 0:404f5a4f1385 3377 #define ADC12_CCR_MULTI_1 ((uint32_t)0x00000002) /*!< MULTI bit 1 */
MartinJohnson 0:404f5a4f1385 3378 #define ADC12_CCR_MULTI_2 ((uint32_t)0x00000004) /*!< MULTI bit 2 */
MartinJohnson 0:404f5a4f1385 3379 #define ADC12_CCR_MULTI_3 ((uint32_t)0x00000008) /*!< MULTI bit 3 */
MartinJohnson 0:404f5a4f1385 3380 #define ADC12_CCR_MULTI_4 ((uint32_t)0x00000010) /*!< MULTI bit 4 */
MartinJohnson 0:404f5a4f1385 3381 #define ADC12_CCR_DELAY ((uint32_t)0x00000F00) /*!< Delay between 2 sampling phases */
MartinJohnson 0:404f5a4f1385 3382 #define ADC12_CCR_DELAY_0 ((uint32_t)0x00000100) /*!< DELAY bit 0 */
MartinJohnson 0:404f5a4f1385 3383 #define ADC12_CCR_DELAY_1 ((uint32_t)0x00000200) /*!< DELAY bit 1 */
MartinJohnson 0:404f5a4f1385 3384 #define ADC12_CCR_DELAY_2 ((uint32_t)0x00000400) /*!< DELAY bit 2 */
MartinJohnson 0:404f5a4f1385 3385 #define ADC12_CCR_DELAY_3 ((uint32_t)0x00000800) /*!< DELAY bit 3 */
MartinJohnson 0:404f5a4f1385 3386 #define ADC12_CCR_DMACFG ((uint32_t)0x00002000) /*!< DMA configuration for multi-ADC mode */
MartinJohnson 0:404f5a4f1385 3387 #define ADC12_CCR_MDMA ((uint32_t)0x0000C000) /*!< DMA mode for multi-ADC mode */
MartinJohnson 0:404f5a4f1385 3388 #define ADC12_CCR_MDMA_0 ((uint32_t)0x00004000) /*!< MDMA bit 0 */
MartinJohnson 0:404f5a4f1385 3389 #define ADC12_CCR_MDMA_1 ((uint32_t)0x00008000) /*!< MDMA bit 1 */
MartinJohnson 0:404f5a4f1385 3390 #define ADC12_CCR_CKMODE ((uint32_t)0x00030000) /*!< ADC clock mode */
MartinJohnson 0:404f5a4f1385 3391 #define ADC12_CCR_CKMODE_0 ((uint32_t)0x00010000) /*!< CKMODE bit 0 */
MartinJohnson 0:404f5a4f1385 3392 #define ADC12_CCR_CKMODE_1 ((uint32_t)0x00020000) /*!< CKMODE bit 1 */
MartinJohnson 0:404f5a4f1385 3393 #define ADC12_CCR_VREFEN ((uint32_t)0x00400000) /*!< VREFINT enable */
MartinJohnson 0:404f5a4f1385 3394 #define ADC12_CCR_TSEN ((uint32_t)0x00800000) /*!< Temperature sensor enable */
MartinJohnson 0:404f5a4f1385 3395 #define ADC12_CCR_VBATEN ((uint32_t)0x01000000) /*!< VBAT enable */
MartinJohnson 0:404f5a4f1385 3396
MartinJohnson 0:404f5a4f1385 3397 /******************** Bit definition for ADC_CCR register ********************/
MartinJohnson 0:404f5a4f1385 3398 #define ADC34_CCR_MULTI ((uint32_t)0x0000001F) /*!< Multi ADC mode selection */
MartinJohnson 0:404f5a4f1385 3399 #define ADC34_CCR_MULTI_0 ((uint32_t)0x00000001) /*!< MULTI bit 0 */
MartinJohnson 0:404f5a4f1385 3400 #define ADC34_CCR_MULTI_1 ((uint32_t)0x00000002) /*!< MULTI bit 1 */
MartinJohnson 0:404f5a4f1385 3401 #define ADC34_CCR_MULTI_2 ((uint32_t)0x00000004) /*!< MULTI bit 2 */
MartinJohnson 0:404f5a4f1385 3402 #define ADC34_CCR_MULTI_3 ((uint32_t)0x00000008) /*!< MULTI bit 3 */
MartinJohnson 0:404f5a4f1385 3403 #define ADC34_CCR_MULTI_4 ((uint32_t)0x00000010) /*!< MULTI bit 4 */
MartinJohnson 0:404f5a4f1385 3404
MartinJohnson 0:404f5a4f1385 3405 #define ADC34_CCR_DELAY ((uint32_t)0x00000F00) /*!< Delay between 2 sampling phases */
MartinJohnson 0:404f5a4f1385 3406 #define ADC34_CCR_DELAY_0 ((uint32_t)0x00000100) /*!< DELAY bit 0 */
MartinJohnson 0:404f5a4f1385 3407 #define ADC34_CCR_DELAY_1 ((uint32_t)0x00000200) /*!< DELAY bit 1 */
MartinJohnson 0:404f5a4f1385 3408 #define ADC34_CCR_DELAY_2 ((uint32_t)0x00000400) /*!< DELAY bit 2 */
MartinJohnson 0:404f5a4f1385 3409 #define ADC34_CCR_DELAY_3 ((uint32_t)0x00000800) /*!< DELAY bit 3 */
MartinJohnson 0:404f5a4f1385 3410
MartinJohnson 0:404f5a4f1385 3411 #define ADC34_CCR_DMACFG ((uint32_t)0x00002000) /*!< DMA configuration for multi-ADC mode */
MartinJohnson 0:404f5a4f1385 3412 #define ADC34_CCR_MDMA ((uint32_t)0x0000C000) /*!< DMA mode for multi-ADC mode */
MartinJohnson 0:404f5a4f1385 3413 #define ADC34_CCR_MDMA_0 ((uint32_t)0x00004000) /*!< MDMA bit 0 */
MartinJohnson 0:404f5a4f1385 3414 #define ADC34_CCR_MDMA_1 ((uint32_t)0x00008000) /*!< MDMA bit 1 */
MartinJohnson 0:404f5a4f1385 3415
MartinJohnson 0:404f5a4f1385 3416 #define ADC34_CCR_CKMODE ((uint32_t)0x00030000) /*!< ADC clock mode */
MartinJohnson 0:404f5a4f1385 3417 #define ADC34_CCR_CKMODE_0 ((uint32_t)0x00010000) /*!< CKMODE bit 0 */
MartinJohnson 0:404f5a4f1385 3418 #define ADC34_CCR_CKMODE_1 ((uint32_t)0x00020000) /*!< CKMODE bit 1 */
MartinJohnson 0:404f5a4f1385 3419
MartinJohnson 0:404f5a4f1385 3420 #define ADC34_CCR_VREFEN ((uint32_t)0x00400000) /*!< VREFINT enable */
MartinJohnson 0:404f5a4f1385 3421
MartinJohnson 0:404f5a4f1385 3422 /******************** Bit definition for ADC_CDR register ********************/
MartinJohnson 0:404f5a4f1385 3423 #define ADC12_CDR_RDATA_MST ((uint32_t)0x0000FFFF) /*!< Regular Data of the master ADC */
MartinJohnson 0:404f5a4f1385 3424 #define ADC12_CDR_RDATA_MST_0 ((uint32_t)0x00000001) /*!< RDATA_MST bit 0 */
MartinJohnson 0:404f5a4f1385 3425 #define ADC12_CDR_RDATA_MST_1 ((uint32_t)0x00000002) /*!< RDATA_MST bit 1 */
MartinJohnson 0:404f5a4f1385 3426 #define ADC12_CDR_RDATA_MST_2 ((uint32_t)0x00000004) /*!< RDATA_MST bit 2 */
MartinJohnson 0:404f5a4f1385 3427 #define ADC12_CDR_RDATA_MST_3 ((uint32_t)0x00000008) /*!< RDATA_MST bit 3 */
MartinJohnson 0:404f5a4f1385 3428 #define ADC12_CDR_RDATA_MST_4 ((uint32_t)0x00000010) /*!< RDATA_MST bit 4 */
MartinJohnson 0:404f5a4f1385 3429 #define ADC12_CDR_RDATA_MST_5 ((uint32_t)0x00000020) /*!< RDATA_MST bit 5 */
MartinJohnson 0:404f5a4f1385 3430 #define ADC12_CDR_RDATA_MST_6 ((uint32_t)0x00000040) /*!< RDATA_MST bit 6 */
MartinJohnson 0:404f5a4f1385 3431 #define ADC12_CDR_RDATA_MST_7 ((uint32_t)0x00000080) /*!< RDATA_MST bit 7 */
MartinJohnson 0:404f5a4f1385 3432 #define ADC12_CDR_RDATA_MST_8 ((uint32_t)0x00000100) /*!< RDATA_MST bit 8 */
MartinJohnson 0:404f5a4f1385 3433 #define ADC12_CDR_RDATA_MST_9 ((uint32_t)0x00000200) /*!< RDATA_MST bit 9 */
MartinJohnson 0:404f5a4f1385 3434 #define ADC12_CDR_RDATA_MST_10 ((uint32_t)0x00000400) /*!< RDATA_MST bit 10 */
MartinJohnson 0:404f5a4f1385 3435 #define ADC12_CDR_RDATA_MST_11 ((uint32_t)0x00000800) /*!< RDATA_MST bit 11 */
MartinJohnson 0:404f5a4f1385 3436 #define ADC12_CDR_RDATA_MST_12 ((uint32_t)0x00001000) /*!< RDATA_MST bit 12 */
MartinJohnson 0:404f5a4f1385 3437 #define ADC12_CDR_RDATA_MST_13 ((uint32_t)0x00002000) /*!< RDATA_MST bit 13 */
MartinJohnson 0:404f5a4f1385 3438 #define ADC12_CDR_RDATA_MST_14 ((uint32_t)0x00004000) /*!< RDATA_MST bit 14 */
MartinJohnson 0:404f5a4f1385 3439 #define ADC12_CDR_RDATA_MST_15 ((uint32_t)0x00008000) /*!< RDATA_MST bit 15 */
MartinJohnson 0:404f5a4f1385 3440
MartinJohnson 0:404f5a4f1385 3441 #define ADC12_CDR_RDATA_SLV ((uint32_t)0xFFFF0000) /*!< Regular Data of the master ADC */
MartinJohnson 0:404f5a4f1385 3442 #define ADC12_CDR_RDATA_SLV_0 ((uint32_t)0x00010000) /*!< RDATA_SLV bit 0 */
MartinJohnson 0:404f5a4f1385 3443 #define ADC12_CDR_RDATA_SLV_1 ((uint32_t)0x00020000) /*!< RDATA_SLV bit 1 */
MartinJohnson 0:404f5a4f1385 3444 #define ADC12_CDR_RDATA_SLV_2 ((uint32_t)0x00040000) /*!< RDATA_SLV bit 2 */
MartinJohnson 0:404f5a4f1385 3445 #define ADC12_CDR_RDATA_SLV_3 ((uint32_t)0x00080000) /*!< RDATA_SLV bit 3 */
MartinJohnson 0:404f5a4f1385 3446 #define ADC12_CDR_RDATA_SLV_4 ((uint32_t)0x00100000) /*!< RDATA_SLV bit 4 */
MartinJohnson 0:404f5a4f1385 3447 #define ADC12_CDR_RDATA_SLV_5 ((uint32_t)0x00200000) /*!< RDATA_SLV bit 5 */
MartinJohnson 0:404f5a4f1385 3448 #define ADC12_CDR_RDATA_SLV_6 ((uint32_t)0x00400000) /*!< RDATA_SLV bit 6 */
MartinJohnson 0:404f5a4f1385 3449 #define ADC12_CDR_RDATA_SLV_7 ((uint32_t)0x00800000) /*!< RDATA_SLV bit 7 */
MartinJohnson 0:404f5a4f1385 3450 #define ADC12_CDR_RDATA_SLV_8 ((uint32_t)0x01000000) /*!< RDATA_SLV bit 8 */
MartinJohnson 0:404f5a4f1385 3451 #define ADC12_CDR_RDATA_SLV_9 ((uint32_t)0x02000000) /*!< RDATA_SLV bit 9 */
MartinJohnson 0:404f5a4f1385 3452 #define ADC12_CDR_RDATA_SLV_10 ((uint32_t)0x04000000) /*!< RDATA_SLV bit 10 */
MartinJohnson 0:404f5a4f1385 3453 #define ADC12_CDR_RDATA_SLV_11 ((uint32_t)0x08000000) /*!< RDATA_SLV bit 11 */
MartinJohnson 0:404f5a4f1385 3454 #define ADC12_CDR_RDATA_SLV_12 ((uint32_t)0x10000000) /*!< RDATA_SLV bit 12 */
MartinJohnson 0:404f5a4f1385 3455 #define ADC12_CDR_RDATA_SLV_13 ((uint32_t)0x20000000) /*!< RDATA_SLV bit 13 */
MartinJohnson 0:404f5a4f1385 3456 #define ADC12_CDR_RDATA_SLV_14 ((uint32_t)0x40000000) /*!< RDATA_SLV bit 14 */
MartinJohnson 0:404f5a4f1385 3457 #define ADC12_CDR_RDATA_SLV_15 ((uint32_t)0x80000000) /*!< RDATA_SLV bit 15 */
MartinJohnson 0:404f5a4f1385 3458
MartinJohnson 0:404f5a4f1385 3459 /******************** Bit definition for ADC_CDR register ********************/
MartinJohnson 0:404f5a4f1385 3460 #define ADC34_CDR_RDATA_MST ((uint32_t)0x0000FFFF) /*!< Regular Data of the master ADC */
MartinJohnson 0:404f5a4f1385 3461 #define ADC34_CDR_RDATA_MST_0 ((uint32_t)0x00000001) /*!< RDATA_MST bit 0 */
MartinJohnson 0:404f5a4f1385 3462 #define ADC34_CDR_RDATA_MST_1 ((uint32_t)0x00000002) /*!< RDATA_MST bit 1 */
MartinJohnson 0:404f5a4f1385 3463 #define ADC34_CDR_RDATA_MST_2 ((uint32_t)0x00000004) /*!< RDATA_MST bit 2 */
MartinJohnson 0:404f5a4f1385 3464 #define ADC34_CDR_RDATA_MST_3 ((uint32_t)0x00000008) /*!< RDATA_MST bit 3 */
MartinJohnson 0:404f5a4f1385 3465 #define ADC34_CDR_RDATA_MST_4 ((uint32_t)0x00000010) /*!< RDATA_MST bit 4 */
MartinJohnson 0:404f5a4f1385 3466 #define ADC34_CDR_RDATA_MST_5 ((uint32_t)0x00000020) /*!< RDATA_MST bit 5 */
MartinJohnson 0:404f5a4f1385 3467 #define ADC34_CDR_RDATA_MST_6 ((uint32_t)0x00000040) /*!< RDATA_MST bit 6 */
MartinJohnson 0:404f5a4f1385 3468 #define ADC34_CDR_RDATA_MST_7 ((uint32_t)0x00000080) /*!< RDATA_MST bit 7 */
MartinJohnson 0:404f5a4f1385 3469 #define ADC34_CDR_RDATA_MST_8 ((uint32_t)0x00000100) /*!< RDATA_MST bit 8 */
MartinJohnson 0:404f5a4f1385 3470 #define ADC34_CDR_RDATA_MST_9 ((uint32_t)0x00000200) /*!< RDATA_MST bit 9 */
MartinJohnson 0:404f5a4f1385 3471 #define ADC34_CDR_RDATA_MST_10 ((uint32_t)0x00000400) /*!< RDATA_MST bit 10 */
MartinJohnson 0:404f5a4f1385 3472 #define ADC34_CDR_RDATA_MST_11 ((uint32_t)0x00000800) /*!< RDATA_MST bit 11 */
MartinJohnson 0:404f5a4f1385 3473 #define ADC34_CDR_RDATA_MST_12 ((uint32_t)0x00001000) /*!< RDATA_MST bit 12 */
MartinJohnson 0:404f5a4f1385 3474 #define ADC34_CDR_RDATA_MST_13 ((uint32_t)0x00002000) /*!< RDATA_MST bit 13 */
MartinJohnson 0:404f5a4f1385 3475 #define ADC34_CDR_RDATA_MST_14 ((uint32_t)0x00004000) /*!< RDATA_MST bit 14 */
MartinJohnson 0:404f5a4f1385 3476 #define ADC34_CDR_RDATA_MST_15 ((uint32_t)0x00008000) /*!< RDATA_MST bit 15 */
MartinJohnson 0:404f5a4f1385 3477
MartinJohnson 0:404f5a4f1385 3478 #define ADC34_CDR_RDATA_SLV ((uint32_t)0xFFFF0000) /*!< Regular Data of the master ADC */
MartinJohnson 0:404f5a4f1385 3479 #define ADC34_CDR_RDATA_SLV_0 ((uint32_t)0x00010000) /*!< RDATA_SLV bit 0 */
MartinJohnson 0:404f5a4f1385 3480 #define ADC34_CDR_RDATA_SLV_1 ((uint32_t)0x00020000) /*!< RDATA_SLV bit 1 */
MartinJohnson 0:404f5a4f1385 3481 #define ADC34_CDR_RDATA_SLV_2 ((uint32_t)0x00040000) /*!< RDATA_SLV bit 2 */
MartinJohnson 0:404f5a4f1385 3482 #define ADC34_CDR_RDATA_SLV_3 ((uint32_t)0x00080000) /*!< RDATA_SLV bit 3 */
MartinJohnson 0:404f5a4f1385 3483 #define ADC34_CDR_RDATA_SLV_4 ((uint32_t)0x00100000) /*!< RDATA_SLV bit 4 */
MartinJohnson 0:404f5a4f1385 3484 #define ADC34_CDR_RDATA_SLV_5 ((uint32_t)0x00200000) /*!< RDATA_SLV bit 5 */
MartinJohnson 0:404f5a4f1385 3485 #define ADC34_CDR_RDATA_SLV_6 ((uint32_t)0x00400000) /*!< RDATA_SLV bit 6 */
MartinJohnson 0:404f5a4f1385 3486 #define ADC34_CDR_RDATA_SLV_7 ((uint32_t)0x00800000) /*!< RDATA_SLV bit 7 */
MartinJohnson 0:404f5a4f1385 3487 #define ADC34_CDR_RDATA_SLV_8 ((uint32_t)0x01000000) /*!< RDATA_SLV bit 8 */
MartinJohnson 0:404f5a4f1385 3488 #define ADC34_CDR_RDATA_SLV_9 ((uint32_t)0x02000000) /*!< RDATA_SLV bit 9 */
MartinJohnson 0:404f5a4f1385 3489 #define ADC34_CDR_RDATA_SLV_10 ((uint32_t)0x04000000) /*!< RDATA_SLV bit 10 */
MartinJohnson 0:404f5a4f1385 3490 #define ADC34_CDR_RDATA_SLV_11 ((uint32_t)0x08000000) /*!< RDATA_SLV bit 11 */
MartinJohnson 0:404f5a4f1385 3491 #define ADC34_CDR_RDATA_SLV_12 ((uint32_t)0x10000000) /*!< RDATA_SLV bit 12 */
MartinJohnson 0:404f5a4f1385 3492 #define ADC34_CDR_RDATA_SLV_13 ((uint32_t)0x20000000) /*!< RDATA_SLV bit 13 */
MartinJohnson 0:404f5a4f1385 3493 #define ADC34_CDR_RDATA_SLV_14 ((uint32_t)0x40000000) /*!< RDATA_SLV bit 14 */
MartinJohnson 0:404f5a4f1385 3494 #define ADC34_CDR_RDATA_SLV_15 ((uint32_t)0x80000000) /*!< RDATA_SLV bit 15 */
MartinJohnson 0:404f5a4f1385 3495
MartinJohnson 0:404f5a4f1385 3496 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 3497 /* */
MartinJohnson 0:404f5a4f1385 3498 /* Analog Comparators (COMP) */
MartinJohnson 0:404f5a4f1385 3499 /* */
MartinJohnson 0:404f5a4f1385 3500 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 3501 /********************** Bit definition for COMP1_CSR register ***************/
MartinJohnson 0:404f5a4f1385 3502 #define COMP1_CSR_COMP1EN ((uint32_t)0x00000001) /*!< COMP1 enable */
MartinJohnson 0:404f5a4f1385 3503 #define COMP1_CSR_COMP1SW1 ((uint32_t)0x00000002) /*!< COMP1 SW1 switch control */
MartinJohnson 0:404f5a4f1385 3504 #define COMP1_CSR_COMP1MODE ((uint32_t)0x0000000C) /*!< COMP1 power mode */
MartinJohnson 0:404f5a4f1385 3505 #define COMP1_CSR_COMP1MODE_0 ((uint32_t)0x00000004) /*!< COMP1 power mode bit 0 */
MartinJohnson 0:404f5a4f1385 3506 #define COMP1_CSR_COMP1MODE_1 ((uint32_t)0x00000008) /*!< COMP1 power mode bit 1 */
MartinJohnson 0:404f5a4f1385 3507 #define COMP1_CSR_COMP1INSEL ((uint32_t)0x00000070) /*!< COMP1 inverting input select */
MartinJohnson 0:404f5a4f1385 3508 #define COMP1_CSR_COMP1INSEL_0 ((uint32_t)0x00000010) /*!< COMP1 inverting input select bit 0 */
MartinJohnson 0:404f5a4f1385 3509 #define COMP1_CSR_COMP1INSEL_1 ((uint32_t)0x00000020) /*!< COMP1 inverting input select bit 1 */
MartinJohnson 0:404f5a4f1385 3510 #define COMP1_CSR_COMP1INSEL_2 ((uint32_t)0x00000040) /*!< COMP1 inverting input select bit 2 */
MartinJohnson 0:404f5a4f1385 3511 #define COMP1_CSR_COMP1NONINSEL ((uint32_t)0x00000080) /*!< COMP1 non inverting input select */
MartinJohnson 0:404f5a4f1385 3512 #define COMP1_CSR_COMP1OUTSEL ((uint32_t)0x00003C00) /*!< COMP1 output select */
MartinJohnson 0:404f5a4f1385 3513 #define COMP1_CSR_COMP1OUTSEL_0 ((uint32_t)0x00000400) /*!< COMP1 output select bit 0 */
MartinJohnson 0:404f5a4f1385 3514 #define COMP1_CSR_COMP1OUTSEL_1 ((uint32_t)0x00000800) /*!< COMP1 output select bit 1 */
MartinJohnson 0:404f5a4f1385 3515 #define COMP1_CSR_COMP1OUTSEL_2 ((uint32_t)0x00001000) /*!< COMP1 output select bit 2 */
MartinJohnson 0:404f5a4f1385 3516 #define COMP1_CSR_COMP1OUTSEL_3 ((uint32_t)0x00002000) /*!< COMP1 output select bit 3 */
MartinJohnson 0:404f5a4f1385 3517 #define COMP1_CSR_COMP1POL ((uint32_t)0x00008000) /*!< COMP1 output polarity */
MartinJohnson 0:404f5a4f1385 3518 #define COMP1_CSR_COMP1HYST ((uint32_t)0x00030000) /*!< COMP1 hysteresis */
MartinJohnson 0:404f5a4f1385 3519 #define COMP1_CSR_COMP1HYST_0 ((uint32_t)0x00010000) /*!< COMP1 hysteresis bit 0 */
MartinJohnson 0:404f5a4f1385 3520 #define COMP1_CSR_COMP1HYST_1 ((uint32_t)0x00020000) /*!< COMP1 hysteresis bit 1 */
MartinJohnson 0:404f5a4f1385 3521 #define COMP1_CSR_COMP1BLANKING ((uint32_t)0x000C0000) /*!< COMP1 blanking */
MartinJohnson 0:404f5a4f1385 3522 #define COMP1_CSR_COMP1BLANKING_0 ((uint32_t)0x00040000) /*!< COMP1 blanking bit 0 */
MartinJohnson 0:404f5a4f1385 3523 #define COMP1_CSR_COMP1BLANKING_1 ((uint32_t)0x00080000) /*!< COMP1 blanking bit 1 */
MartinJohnson 0:404f5a4f1385 3524 #define COMP1_CSR_COMP1BLANKING_2 ((uint32_t)0x00100000) /*!< COMP1 blanking bit 2 */
MartinJohnson 0:404f5a4f1385 3525 #define COMP1_CSR_COMP1OUT ((uint32_t)0x40000000) /*!< COMP1 output level */
MartinJohnson 0:404f5a4f1385 3526 #define COMP1_CSR_COMP1LOCK ((uint32_t)0x80000000) /*!< COMP1 lock */
MartinJohnson 0:404f5a4f1385 3527
MartinJohnson 0:404f5a4f1385 3528 /********************** Bit definition for COMP2_CSR register ***************/
MartinJohnson 0:404f5a4f1385 3529 #define COMP2_CSR_COMP2EN ((uint32_t)0x00000001) /*!< COMP2 enable */
MartinJohnson 0:404f5a4f1385 3530 #define COMP2_CSR_COMP2MODE ((uint32_t)0x0000000C) /*!< COMP2 power mode */
MartinJohnson 0:404f5a4f1385 3531 #define COMP2_CSR_COMP2MODE_0 ((uint32_t)0x00000004) /*!< COMP2 power mode bit 0 */
MartinJohnson 0:404f5a4f1385 3532 #define COMP2_CSR_COMP2MODE_1 ((uint32_t)0x00000008) /*!< COMP2 power mode bit 1 */
MartinJohnson 0:404f5a4f1385 3533 #define COMP2_CSR_COMP2INSEL ((uint32_t)0x00000070) /*!< COMP2 inverting input select */
MartinJohnson 0:404f5a4f1385 3534 #define COMP2_CSR_COMP2INSEL_0 ((uint32_t)0x00000010) /*!< COMP2 inverting input select bit 0 */
MartinJohnson 0:404f5a4f1385 3535 #define COMP2_CSR_COMP2INSEL_1 ((uint32_t)0x00000020) /*!< COMP2 inverting input select bit 1 */
MartinJohnson 0:404f5a4f1385 3536 #define COMP2_CSR_COMP2INSEL_2 ((uint32_t)0x00000040) /*!< COMP2 inverting input select bit 2 */
MartinJohnson 0:404f5a4f1385 3537 #define COMP2_CSR_COMP2NONINSEL ((uint32_t)0x00000080) /*!< COMP2 non inverting input select */
MartinJohnson 0:404f5a4f1385 3538 #define COMP2_CSR_COMP2WNDWEN ((uint32_t)0x00000200) /*!< COMP2 window mode enable */
MartinJohnson 0:404f5a4f1385 3539 #define COMP2_CSR_COMP2OUTSEL ((uint32_t)0x00003C00) /*!< COMP2 output select */
MartinJohnson 0:404f5a4f1385 3540 #define COMP2_CSR_COMP2OUTSEL_0 ((uint32_t)0x00000400) /*!< COMP2 output select bit 0 */
MartinJohnson 0:404f5a4f1385 3541 #define COMP2_CSR_COMP2OUTSEL_1 ((uint32_t)0x00000800) /*!< COMP2 output select bit 1 */
MartinJohnson 0:404f5a4f1385 3542 #define COMP2_CSR_COMP2OUTSEL_2 ((uint32_t)0x00001000) /*!< COMP2 output select bit 2 */
MartinJohnson 0:404f5a4f1385 3543 #define COMP2_CSR_COMP2OUTSEL_3 ((uint32_t)0x00002000) /*!< COMP2 output select bit 3 */
MartinJohnson 0:404f5a4f1385 3544 #define COMP2_CSR_COMP2POL ((uint32_t)0x00008000) /*!< COMP2 output polarity */
MartinJohnson 0:404f5a4f1385 3545 #define COMP2_CSR_COMP2HYST ((uint32_t)0x00030000) /*!< COMP2 hysteresis */
MartinJohnson 0:404f5a4f1385 3546 #define COMP2_CSR_COMP2HYST_0 ((uint32_t)0x00010000) /*!< COMP2 hysteresis bit 0 */
MartinJohnson 0:404f5a4f1385 3547 #define COMP2_CSR_COMP2HYST_1 ((uint32_t)0x00020000) /*!< COMP2 hysteresis bit 1 */
MartinJohnson 0:404f5a4f1385 3548 #define COMP2_CSR_COMP2BLANKING ((uint32_t)0x000C0000) /*!< COMP2 blanking */
MartinJohnson 0:404f5a4f1385 3549 #define COMP2_CSR_COMP2BLANKING_0 ((uint32_t)0x00040000) /*!< COMP2 blanking bit 0 */
MartinJohnson 0:404f5a4f1385 3550 #define COMP2_CSR_COMP2BLANKING_1 ((uint32_t)0x00080000) /*!< COMP2 blanking bit 1 */
MartinJohnson 0:404f5a4f1385 3551 #define COMP2_CSR_COMP2BLANKING_2 ((uint32_t)0x00100000) /*!< COMP2 blanking bit 2 */
MartinJohnson 0:404f5a4f1385 3552 #define COMP2_CSR_COMP2OUT ((uint32_t)0x40000000) /*!< COMP2 output level */
MartinJohnson 0:404f5a4f1385 3553 #define COMP2_CSR_COMP2LOCK ((uint32_t)0x80000000) /*!< COMP2 lock */
MartinJohnson 0:404f5a4f1385 3554
MartinJohnson 0:404f5a4f1385 3555 /********************** Bit definition for COMP3_CSR register ***************/
MartinJohnson 0:404f5a4f1385 3556 #define COMP3_CSR_COMP3EN ((uint32_t)0x00000001) /*!< COMP3 enable */
MartinJohnson 0:404f5a4f1385 3557 #define COMP3_CSR_COMP3MODE ((uint32_t)0x0000000C) /*!< COMP3 power mode */
MartinJohnson 0:404f5a4f1385 3558 #define COMP3_CSR_COMP3MODE_0 ((uint32_t)0x00000004) /*!< COMP3 power mode bit 0 */
MartinJohnson 0:404f5a4f1385 3559 #define COMP3_CSR_COMP3MODE_1 ((uint32_t)0x00000008) /*!< COMP3 power mode bit 1 */
MartinJohnson 0:404f5a4f1385 3560 #define COMP3_CSR_COMP3INSEL ((uint32_t)0x00000070) /*!< COMP3 inverting input select */
MartinJohnson 0:404f5a4f1385 3561 #define COMP3_CSR_COMP3INSEL_0 ((uint32_t)0x00000010) /*!< COMP3 inverting input select bit 0 */
MartinJohnson 0:404f5a4f1385 3562 #define COMP3_CSR_COMP3INSEL_1 ((uint32_t)0x00000020) /*!< COMP3 inverting input select bit 1 */
MartinJohnson 0:404f5a4f1385 3563 #define COMP3_CSR_COMP3INSEL_2 ((uint32_t)0x00000040) /*!< COMP3 inverting input select bit 2 */
MartinJohnson 0:404f5a4f1385 3564 #define COMP3_CSR_COMP3NONINSEL ((uint32_t)0x00000080) /*!< COMP3 non inverting input select */
MartinJohnson 0:404f5a4f1385 3565 #define COMP3_CSR_COMP3OUTSEL ((uint32_t)0x00003C00) /*!< COMP3 output select */
MartinJohnson 0:404f5a4f1385 3566 #define COMP3_CSR_COMP3OUTSEL_0 ((uint32_t)0x00000400) /*!< COMP3 output select bit 0 */
MartinJohnson 0:404f5a4f1385 3567 #define COMP3_CSR_COMP3OUTSEL_1 ((uint32_t)0x00000800) /*!< COMP3 output select bit 1 */
MartinJohnson 0:404f5a4f1385 3568 #define COMP3_CSR_COMP3OUTSEL_2 ((uint32_t)0x00001000) /*!< COMP3 output select bit 2 */
MartinJohnson 0:404f5a4f1385 3569 #define COMP3_CSR_COMP3OUTSEL_3 ((uint32_t)0x00002000) /*!< COMP3 output select bit 3 */
MartinJohnson 0:404f5a4f1385 3570 #define COMP3_CSR_COMP3POL ((uint32_t)0x00008000) /*!< COMP3 output polarity */
MartinJohnson 0:404f5a4f1385 3571 #define COMP3_CSR_COMP3HYST ((uint32_t)0x00030000) /*!< COMP3 hysteresis */
MartinJohnson 0:404f5a4f1385 3572 #define COMP3_CSR_COMP3HYST_0 ((uint32_t)0x00010000) /*!< COMP3 hysteresis bit 0 */
MartinJohnson 0:404f5a4f1385 3573 #define COMP3_CSR_COMP3HYST_1 ((uint32_t)0x00020000) /*!< COMP3 hysteresis bit 1 */
MartinJohnson 0:404f5a4f1385 3574 #define COMP3_CSR_COMP3BLANKING ((uint32_t)0x000C0000) /*!< COMP3 blanking */
MartinJohnson 0:404f5a4f1385 3575 #define COMP3_CSR_COMP3BLANKING_0 ((uint32_t)0x00040000) /*!< COMP3 blanking bit 0 */
MartinJohnson 0:404f5a4f1385 3576 #define COMP3_CSR_COMP3BLANKING_1 ((uint32_t)0x00080000) /*!< COMP3 blanking bit 1 */
MartinJohnson 0:404f5a4f1385 3577 #define COMP3_CSR_COMP3BLANKING_2 ((uint32_t)0x00100000) /*!< COMP3 blanking bit 2 */
MartinJohnson 0:404f5a4f1385 3578 #define COMP3_CSR_COMP3OUT ((uint32_t)0x40000000) /*!< COMP3 output level */
MartinJohnson 0:404f5a4f1385 3579 #define COMP3_CSR_COMP3LOCK ((uint32_t)0x80000000) /*!< COMP3 lock */
MartinJohnson 0:404f5a4f1385 3580
MartinJohnson 0:404f5a4f1385 3581 /********************** Bit definition for COMP4_CSR register ***************/
MartinJohnson 0:404f5a4f1385 3582 #define COMP4_CSR_COMP4EN ((uint32_t)0x00000001) /*!< COMP4 enable */
MartinJohnson 0:404f5a4f1385 3583 #define COMP4_CSR_COMP4MODE ((uint32_t)0x0000000C) /*!< COMP4 power mode */
MartinJohnson 0:404f5a4f1385 3584 #define COMP4_CSR_COMP4MODE_0 ((uint32_t)0x00000004) /*!< COMP4 power mode bit 0 */
MartinJohnson 0:404f5a4f1385 3585 #define COMP4_CSR_COMP4MODE_1 ((uint32_t)0x00000008) /*!< COMP4 power mode bit 1 */
MartinJohnson 0:404f5a4f1385 3586 #define COMP4_CSR_COMP4INSEL ((uint32_t)0x00000070) /*!< COMP4 inverting input select */
MartinJohnson 0:404f5a4f1385 3587 #define COMP4_CSR_COMP4INSEL_0 ((uint32_t)0x00000010) /*!< COMP4 inverting input select bit 0 */
MartinJohnson 0:404f5a4f1385 3588 #define COMP4_CSR_COMP4INSEL_1 ((uint32_t)0x00000020) /*!< COMP4 inverting input select bit 1 */
MartinJohnson 0:404f5a4f1385 3589 #define COMP4_CSR_COMP4INSEL_2 ((uint32_t)0x00000040) /*!< COMP4 inverting input select bit 2 */
MartinJohnson 0:404f5a4f1385 3590 #define COMP4_CSR_COMP4NONINSEL ((uint32_t)0x00000080) /*!< COMP4 non inverting input select */
MartinJohnson 0:404f5a4f1385 3591 #define COMP4_CSR_COMP4WNDWEN ((uint32_t)0x00000200) /*!< COMP4 window mode enable */
MartinJohnson 0:404f5a4f1385 3592 #define COMP4_CSR_COMP4OUTSEL ((uint32_t)0x00003C00) /*!< COMP4 output select */
MartinJohnson 0:404f5a4f1385 3593 #define COMP4_CSR_COMP4OUTSEL_0 ((uint32_t)0x00000400) /*!< COMP4 output select bit 0 */
MartinJohnson 0:404f5a4f1385 3594 #define COMP4_CSR_COMP4OUTSEL_1 ((uint32_t)0x00000800) /*!< COMP4 output select bit 1 */
MartinJohnson 0:404f5a4f1385 3595 #define COMP4_CSR_COMP4OUTSEL_2 ((uint32_t)0x00001000) /*!< COMP4 output select bit 2 */
MartinJohnson 0:404f5a4f1385 3596 #define COMP4_CSR_COMP4OUTSEL_3 ((uint32_t)0x00002000) /*!< COMP4 output select bit 3 */
MartinJohnson 0:404f5a4f1385 3597 #define COMP4_CSR_COMP4POL ((uint32_t)0x00008000) /*!< COMP4 output polarity */
MartinJohnson 0:404f5a4f1385 3598 #define COMP4_CSR_COMP4HYST ((uint32_t)0x00030000) /*!< COMP4 hysteresis */
MartinJohnson 0:404f5a4f1385 3599 #define COMP4_CSR_COMP4HYST_0 ((uint32_t)0x00010000) /*!< COMP4 hysteresis bit 0 */
MartinJohnson 0:404f5a4f1385 3600 #define COMP4_CSR_COMP4HYST_1 ((uint32_t)0x00020000) /*!< COMP4 hysteresis bit 1 */
MartinJohnson 0:404f5a4f1385 3601 #define COMP4_CSR_COMP4BLANKING ((uint32_t)0x000C0000) /*!< COMP4 blanking */
MartinJohnson 0:404f5a4f1385 3602 #define COMP4_CSR_COMP4BLANKING_0 ((uint32_t)0x00040000) /*!< COMP4 blanking bit 0 */
MartinJohnson 0:404f5a4f1385 3603 #define COMP4_CSR_COMP4BLANKING_1 ((uint32_t)0x00080000) /*!< COMP4 blanking bit 1 */
MartinJohnson 0:404f5a4f1385 3604 #define COMP4_CSR_COMP4BLANKING_2 ((uint32_t)0x00100000) /*!< COMP4 blanking bit 2 */
MartinJohnson 0:404f5a4f1385 3605 #define COMP4_CSR_COMP4OUT ((uint32_t)0x40000000) /*!< COMP4 output level */
MartinJohnson 0:404f5a4f1385 3606 #define COMP4_CSR_COMP4LOCK ((uint32_t)0x80000000) /*!< COMP4 lock */
MartinJohnson 0:404f5a4f1385 3607
MartinJohnson 0:404f5a4f1385 3608 /********************** Bit definition for COMP5_CSR register ***************/
MartinJohnson 0:404f5a4f1385 3609 #define COMP5_CSR_COMP5EN ((uint32_t)0x00000001) /*!< COMP5 enable */
MartinJohnson 0:404f5a4f1385 3610 #define COMP5_CSR_COMP5MODE ((uint32_t)0x0000000C) /*!< COMP5 power mode */
MartinJohnson 0:404f5a4f1385 3611 #define COMP5_CSR_COMP5MODE_0 ((uint32_t)0x00000004) /*!< COMP5 power mode bit 0 */
MartinJohnson 0:404f5a4f1385 3612 #define COMP5_CSR_COMP5MODE_1 ((uint32_t)0x00000008) /*!< COMP5 power mode bit 1 */
MartinJohnson 0:404f5a4f1385 3613 #define COMP5_CSR_COMP5INSEL ((uint32_t)0x00000070) /*!< COMP5 inverting input select */
MartinJohnson 0:404f5a4f1385 3614 #define COMP5_CSR_COMP5INSEL_0 ((uint32_t)0x00000010) /*!< COMP5 inverting input select bit 0 */
MartinJohnson 0:404f5a4f1385 3615 #define COMP5_CSR_COMP5INSEL_1 ((uint32_t)0x00000020) /*!< COMP5 inverting input select bit 1 */
MartinJohnson 0:404f5a4f1385 3616 #define COMP5_CSR_COMP5INSEL_2 ((uint32_t)0x00000040) /*!< COMP5 inverting input select bit 2 */
MartinJohnson 0:404f5a4f1385 3617 #define COMP5_CSR_COMP5NONINSEL ((uint32_t)0x00000080) /*!< COMP5 non inverting input select */
MartinJohnson 0:404f5a4f1385 3618 #define COMP5_CSR_COMP5OUTSEL ((uint32_t)0x00003C00) /*!< COMP5 output select */
MartinJohnson 0:404f5a4f1385 3619 #define COMP5_CSR_COMP5OUTSEL_0 ((uint32_t)0x00000400) /*!< COMP5 output select bit 0 */
MartinJohnson 0:404f5a4f1385 3620 #define COMP5_CSR_COMP5OUTSEL_1 ((uint32_t)0x00000800) /*!< COMP5 output select bit 1 */
MartinJohnson 0:404f5a4f1385 3621 #define COMP5_CSR_COMP5OUTSEL_2 ((uint32_t)0x00001000) /*!< COMP5 output select bit 2 */
MartinJohnson 0:404f5a4f1385 3622 #define COMP5_CSR_COMP5OUTSEL_3 ((uint32_t)0x00002000) /*!< COMP5 output select bit 3 */
MartinJohnson 0:404f5a4f1385 3623 #define COMP5_CSR_COMP5POL ((uint32_t)0x00008000) /*!< COMP5 output polarity */
MartinJohnson 0:404f5a4f1385 3624 #define COMP5_CSR_COMP5HYST ((uint32_t)0x00030000) /*!< COMP5 hysteresis */
MartinJohnson 0:404f5a4f1385 3625 #define COMP5_CSR_COMP5HYST_0 ((uint32_t)0x00010000) /*!< COMP5 hysteresis bit 0 */
MartinJohnson 0:404f5a4f1385 3626 #define COMP5_CSR_COMP5HYST_1 ((uint32_t)0x00020000) /*!< COMP5 hysteresis bit 1 */
MartinJohnson 0:404f5a4f1385 3627 #define COMP5_CSR_COMP5BLANKING ((uint32_t)0x000C0000) /*!< COMP5 blanking */
MartinJohnson 0:404f5a4f1385 3628 #define COMP5_CSR_COMP5BLANKING_0 ((uint32_t)0x00040000) /*!< COMP5 blanking bit 0 */
MartinJohnson 0:404f5a4f1385 3629 #define COMP5_CSR_COMP5BLANKING_1 ((uint32_t)0x00080000) /*!< COMP5 blanking bit 1 */
MartinJohnson 0:404f5a4f1385 3630 #define COMP5_CSR_COMP5BLANKING_2 ((uint32_t)0x00100000) /*!< COMP5 blanking bit 2 */
MartinJohnson 0:404f5a4f1385 3631 #define COMP5_CSR_COMP5OUT ((uint32_t)0x40000000) /*!< COMP5 output level */
MartinJohnson 0:404f5a4f1385 3632 #define COMP5_CSR_COMP5LOCK ((uint32_t)0x80000000) /*!< COMP5 lock */
MartinJohnson 0:404f5a4f1385 3633
MartinJohnson 0:404f5a4f1385 3634 /********************** Bit definition for COMP6_CSR register ***************/
MartinJohnson 0:404f5a4f1385 3635 #define COMP6_CSR_COMP6EN ((uint32_t)0x00000001) /*!< COMP6 enable */
MartinJohnson 0:404f5a4f1385 3636 #define COMP6_CSR_COMP6MODE ((uint32_t)0x0000000C) /*!< COMP6 power mode */
MartinJohnson 0:404f5a4f1385 3637 #define COMP6_CSR_COMP6MODE_0 ((uint32_t)0x00000004) /*!< COMP6 power mode bit 0 */
MartinJohnson 0:404f5a4f1385 3638 #define COMP6_CSR_COMP6MODE_1 ((uint32_t)0x00000008) /*!< COMP6 power mode bit 1 */
MartinJohnson 0:404f5a4f1385 3639 #define COMP6_CSR_COMP6INSEL ((uint32_t)0x00000070) /*!< COMP6 inverting input select */
MartinJohnson 0:404f5a4f1385 3640 #define COMP6_CSR_COMP6INSEL_0 ((uint32_t)0x00000010) /*!< COMP6 inverting input select bit 0 */
MartinJohnson 0:404f5a4f1385 3641 #define COMP6_CSR_COMP6INSEL_1 ((uint32_t)0x00000020) /*!< COMP6 inverting input select bit 1 */
MartinJohnson 0:404f5a4f1385 3642 #define COMP6_CSR_COMP6INSEL_2 ((uint32_t)0x00000040) /*!< COMP6 inverting input select bit 2 */
MartinJohnson 0:404f5a4f1385 3643 #define COMP6_CSR_COMP6NONINSEL ((uint32_t)0x00000080) /*!< COMP6 non inverting input select */
MartinJohnson 0:404f5a4f1385 3644 #define COMP6_CSR_COMP6WNDWEN ((uint32_t)0x00000200) /*!< COMP6 window mode enable */
MartinJohnson 0:404f5a4f1385 3645 #define COMP6_CSR_COMP6OUTSEL ((uint32_t)0x00003C00) /*!< COMP6 output select */
MartinJohnson 0:404f5a4f1385 3646 #define COMP6_CSR_COMP6OUTSEL_0 ((uint32_t)0x00000400) /*!< COMP6 output select bit 0 */
MartinJohnson 0:404f5a4f1385 3647 #define COMP6_CSR_COMP6OUTSEL_1 ((uint32_t)0x00000800) /*!< COMP6 output select bit 1 */
MartinJohnson 0:404f5a4f1385 3648 #define COMP6_CSR_COMP6OUTSEL_2 ((uint32_t)0x00001000) /*!< COMP6 output select bit 2 */
MartinJohnson 0:404f5a4f1385 3649 #define COMP6_CSR_COMP6OUTSEL_3 ((uint32_t)0x00002000) /*!< COMP6 output select bit 3 */
MartinJohnson 0:404f5a4f1385 3650 #define COMP6_CSR_COMP6POL ((uint32_t)0x00008000) /*!< COMP6 output polarity */
MartinJohnson 0:404f5a4f1385 3651 #define COMP6_CSR_COMP6HYST ((uint32_t)0x00030000) /*!< COMP6 hysteresis */
MartinJohnson 0:404f5a4f1385 3652 #define COMP6_CSR_COMP6HYST_0 ((uint32_t)0x00010000) /*!< COMP6 hysteresis bit 0 */
MartinJohnson 0:404f5a4f1385 3653 #define COMP6_CSR_COMP6HYST_1 ((uint32_t)0x00020000) /*!< COMP6 hysteresis bit 1 */
MartinJohnson 0:404f5a4f1385 3654 #define COMP6_CSR_COMP6BLANKING ((uint32_t)0x000C0000) /*!< COMP6 blanking */
MartinJohnson 0:404f5a4f1385 3655 #define COMP6_CSR_COMP6BLANKING_0 ((uint32_t)0x00040000) /*!< COMP6 blanking bit 0 */
MartinJohnson 0:404f5a4f1385 3656 #define COMP6_CSR_COMP6BLANKING_1 ((uint32_t)0x00080000) /*!< COMP6 blanking bit 1 */
MartinJohnson 0:404f5a4f1385 3657 #define COMP6_CSR_COMP6BLANKING_2 ((uint32_t)0x00100000) /*!< COMP6 blanking bit 2 */
MartinJohnson 0:404f5a4f1385 3658 #define COMP6_CSR_COMP6OUT ((uint32_t)0x40000000) /*!< COMP6 output level */
MartinJohnson 0:404f5a4f1385 3659 #define COMP6_CSR_COMP6LOCK ((uint32_t)0x80000000) /*!< COMP6 lock */
MartinJohnson 0:404f5a4f1385 3660
MartinJohnson 0:404f5a4f1385 3661 /********************** Bit definition for COMP7_CSR register ***************/
MartinJohnson 0:404f5a4f1385 3662 #define COMP7_CSR_COMP7EN ((uint32_t)0x00000001) /*!< COMP7 enable */
MartinJohnson 0:404f5a4f1385 3663 #define COMP7_CSR_COMP7MODE ((uint32_t)0x0000000C) /*!< COMP7 power mode */
MartinJohnson 0:404f5a4f1385 3664 #define COMP7_CSR_COMP7MODE_0 ((uint32_t)0x00000004) /*!< COMP7 power mode bit 0 */
MartinJohnson 0:404f5a4f1385 3665 #define COMP7_CSR_COMP7MODE_1 ((uint32_t)0x00000008) /*!< COMP7 power mode bit 1 */
MartinJohnson 0:404f5a4f1385 3666 #define COMP7_CSR_COMP7INSEL ((uint32_t)0x00000070) /*!< COMP7 inverting input select */
MartinJohnson 0:404f5a4f1385 3667 #define COMP7_CSR_COMP7INSEL_0 ((uint32_t)0x00000010) /*!< COMP7 inverting input select bit 0 */
MartinJohnson 0:404f5a4f1385 3668 #define COMP7_CSR_COMP7INSEL_1 ((uint32_t)0x00000020) /*!< COMP7 inverting input select bit 1 */
MartinJohnson 0:404f5a4f1385 3669 #define COMP7_CSR_COMP7INSEL_2 ((uint32_t)0x00000040) /*!< COMP7 inverting input select bit 2 */
MartinJohnson 0:404f5a4f1385 3670 #define COMP7_CSR_COMP7NONINSEL ((uint32_t)0x00000080) /*!< COMP7 non inverting input select */
MartinJohnson 0:404f5a4f1385 3671 #define COMP7_CSR_COMP7OUTSEL ((uint32_t)0x00003C00) /*!< COMP7 output select */
MartinJohnson 0:404f5a4f1385 3672 #define COMP7_CSR_COMP7OUTSEL_0 ((uint32_t)0x00000400) /*!< COMP7 output select bit 0 */
MartinJohnson 0:404f5a4f1385 3673 #define COMP7_CSR_COMP7OUTSEL_1 ((uint32_t)0x00000800) /*!< COMP7 output select bit 1 */
MartinJohnson 0:404f5a4f1385 3674 #define COMP7_CSR_COMP7OUTSEL_2 ((uint32_t)0x00001000) /*!< COMP7 output select bit 2 */
MartinJohnson 0:404f5a4f1385 3675 #define COMP7_CSR_COMP7OUTSEL_3 ((uint32_t)0x00002000) /*!< COMP7 output select bit 3 */
MartinJohnson 0:404f5a4f1385 3676 #define COMP7_CSR_COMP7POL ((uint32_t)0x00008000) /*!< COMP7 output polarity */
MartinJohnson 0:404f5a4f1385 3677 #define COMP7_CSR_COMP7HYST ((uint32_t)0x00030000) /*!< COMP7 hysteresis */
MartinJohnson 0:404f5a4f1385 3678 #define COMP7_CSR_COMP7HYST_0 ((uint32_t)0x00010000) /*!< COMP7 hysteresis bit 0 */
MartinJohnson 0:404f5a4f1385 3679 #define COMP7_CSR_COMP7HYST_1 ((uint32_t)0x00020000) /*!< COMP7 hysteresis bit 1 */
MartinJohnson 0:404f5a4f1385 3680 #define COMP7_CSR_COMP7BLANKING ((uint32_t)0x000C0000) /*!< COMP7 blanking */
MartinJohnson 0:404f5a4f1385 3681 #define COMP7_CSR_COMP7BLANKING_0 ((uint32_t)0x00040000) /*!< COMP7 blanking bit 0 */
MartinJohnson 0:404f5a4f1385 3682 #define COMP7_CSR_COMP7BLANKING_1 ((uint32_t)0x00080000) /*!< COMP7 blanking bit 1 */
MartinJohnson 0:404f5a4f1385 3683 #define COMP7_CSR_COMP7BLANKING_2 ((uint32_t)0x00100000) /*!< COMP7 blanking bit 2 */
MartinJohnson 0:404f5a4f1385 3684 #define COMP7_CSR_COMP7OUT ((uint32_t)0x40000000) /*!< COMP7 output level */
MartinJohnson 0:404f5a4f1385 3685 #define COMP7_CSR_COMP7LOCK ((uint32_t)0x80000000) /*!< COMP7 lock */
MartinJohnson 0:404f5a4f1385 3686
MartinJohnson 0:404f5a4f1385 3687 /********************** Bit definition for COMP_CSR register ****************/
MartinJohnson 0:404f5a4f1385 3688 #define COMP_CSR_COMPxEN ((uint32_t)0x00000001) /*!< COMPx enable */
MartinJohnson 0:404f5a4f1385 3689 #define COMP_CSR_COMP1SW1 ((uint32_t)0x00000002) /*!< COMP1 SW1 switch control */
MartinJohnson 0:404f5a4f1385 3690 #define COMP_CSR_COMPxMODE ((uint32_t)0x0000000C) /*!< COMPx power mode */
MartinJohnson 0:404f5a4f1385 3691 #define COMP_CSR_COMPxMODE_0 ((uint32_t)0x00000004) /*!< COMPx power mode bit 0 */
MartinJohnson 0:404f5a4f1385 3692 #define COMP_CSR_COMPxMODE_1 ((uint32_t)0x00000008) /*!< COMPx power mode bit 1 */
MartinJohnson 0:404f5a4f1385 3693 #define COMP_CSR_COMPxINSEL ((uint32_t)0x00000070) /*!< COMPx inverting input select */
MartinJohnson 0:404f5a4f1385 3694 #define COMP_CSR_COMPxINSEL_0 ((uint32_t)0x00000010) /*!< COMPx inverting input select bit 0 */
MartinJohnson 0:404f5a4f1385 3695 #define COMP_CSR_COMPxINSEL_1 ((uint32_t)0x00000020) /*!< COMPx inverting input select bit 1 */
MartinJohnson 0:404f5a4f1385 3696 #define COMP_CSR_COMPxINSEL_2 ((uint32_t)0x00000040) /*!< COMPx inverting input select bit 2 */
MartinJohnson 0:404f5a4f1385 3697 #define COMP_CSR_COMPxNONINSEL ((uint32_t)0x00000080) /*!< COMPx non inverting input select */
MartinJohnson 0:404f5a4f1385 3698 #define COMP_CSR_COMPxWNDWEN ((uint32_t)0x00000200) /*!< COMPx window mode enable */
MartinJohnson 0:404f5a4f1385 3699 #define COMP_CSR_COMPxOUTSEL ((uint32_t)0x00003C00) /*!< COMPx output select */
MartinJohnson 0:404f5a4f1385 3700 #define COMP_CSR_COMPxOUTSEL_0 ((uint32_t)0x00000400) /*!< COMPx output select bit 0 */
MartinJohnson 0:404f5a4f1385 3701 #define COMP_CSR_COMPxOUTSEL_1 ((uint32_t)0x00000800) /*!< COMPx output select bit 1 */
MartinJohnson 0:404f5a4f1385 3702 #define COMP_CSR_COMPxOUTSEL_2 ((uint32_t)0x00001000) /*!< COMPx output select bit 2 */
MartinJohnson 0:404f5a4f1385 3703 #define COMP_CSR_COMPxOUTSEL_3 ((uint32_t)0x00002000) /*!< COMPx output select bit 3 */
MartinJohnson 0:404f5a4f1385 3704 #define COMP_CSR_COMPxPOL ((uint32_t)0x00008000) /*!< COMPx output polarity */
MartinJohnson 0:404f5a4f1385 3705 #define COMP_CSR_COMPxHYST ((uint32_t)0x00030000) /*!< COMPx hysteresis */
MartinJohnson 0:404f5a4f1385 3706 #define COMP_CSR_COMPxHYST_0 ((uint32_t)0x00010000) /*!< COMPx hysteresis bit 0 */
MartinJohnson 0:404f5a4f1385 3707 #define COMP_CSR_COMPxHYST_1 ((uint32_t)0x00020000) /*!< COMPx hysteresis bit 1 */
MartinJohnson 0:404f5a4f1385 3708 #define COMP_CSR_COMPxBLANKING ((uint32_t)0x000C0000) /*!< COMPx blanking */
MartinJohnson 0:404f5a4f1385 3709 #define COMP_CSR_COMPxBLANKING_0 ((uint32_t)0x00040000) /*!< COMPx blanking bit 0 */
MartinJohnson 0:404f5a4f1385 3710 #define COMP_CSR_COMPxBLANKING_1 ((uint32_t)0x00080000) /*!< COMPx blanking bit 1 */
MartinJohnson 0:404f5a4f1385 3711 #define COMP_CSR_COMPxBLANKING_2 ((uint32_t)0x00100000) /*!< COMPx blanking bit 2 */
MartinJohnson 0:404f5a4f1385 3712 #define COMP_CSR_COMPxINSEL_3 ((uint32_t)0x00400000) /*!< COMPx inverting input select bit 3 */
MartinJohnson 0:404f5a4f1385 3713 #define COMP_CSR_COMPxOUT ((uint32_t)0x40000000) /*!< COMPx output level */
MartinJohnson 0:404f5a4f1385 3714 #define COMP_CSR_COMPxLOCK ((uint32_t)0x80000000) /*!< COMPx lock */
MartinJohnson 0:404f5a4f1385 3715
MartinJohnson 0:404f5a4f1385 3716 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 3717 /* */
MartinJohnson 0:404f5a4f1385 3718 /* Operational Amplifier (OPAMP) */
MartinJohnson 0:404f5a4f1385 3719 /* */
MartinJohnson 0:404f5a4f1385 3720 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 3721 /********************* Bit definition for OPAMP1_CSR register ***************/
MartinJohnson 0:404f5a4f1385 3722 #define OPAMP1_CSR_OPAMP1EN ((uint32_t)0x00000001) /*!< OPAMP1 enable */
MartinJohnson 0:404f5a4f1385 3723 #define OPAMP1_CSR_FORCEVP ((uint32_t)0x00000002) /*!< Connect the internal references to the plus input of the OPAMPX */
MartinJohnson 0:404f5a4f1385 3724 #define OPAMP1_CSR_VPSEL ((uint32_t)0x0000000C) /*!< Non inverting input selection */
MartinJohnson 0:404f5a4f1385 3725 #define OPAMP1_CSR_VPSEL_0 ((uint32_t)0x00000004) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 3726 #define OPAMP1_CSR_VPSEL_1 ((uint32_t)0x00000008) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 3727 #define OPAMP1_CSR_VMSEL ((uint32_t)0x00000060) /*!< Inverting input selection */
MartinJohnson 0:404f5a4f1385 3728 #define OPAMP1_CSR_VMSEL_0 ((uint32_t)0x00000020) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 3729 #define OPAMP1_CSR_VMSEL_1 ((uint32_t)0x00000040) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 3730 #define OPAMP1_CSR_TCMEN ((uint32_t)0x00000080) /*!< Timer-Controlled Mux mode enable */
MartinJohnson 0:404f5a4f1385 3731 #define OPAMP1_CSR_VMSSEL ((uint32_t)0x00000100) /*!< Inverting input secondary selection */
MartinJohnson 0:404f5a4f1385 3732 #define OPAMP1_CSR_VPSSEL ((uint32_t)0x00000600) /*!< Non inverting input secondary selection */
MartinJohnson 0:404f5a4f1385 3733 #define OPAMP1_CSR_VPSSEL_0 ((uint32_t)0x00000200) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 3734 #define OPAMP1_CSR_VPSSEL_1 ((uint32_t)0x00000400) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 3735 #define OPAMP1_CSR_CALON ((uint32_t)0x00000800) /*!< Calibration mode enable */
MartinJohnson 0:404f5a4f1385 3736 #define OPAMP1_CSR_CALSEL ((uint32_t)0x00003000) /*!< Calibration selection */
MartinJohnson 0:404f5a4f1385 3737 #define OPAMP1_CSR_CALSEL_0 ((uint32_t)0x00001000) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 3738 #define OPAMP1_CSR_CALSEL_1 ((uint32_t)0x00002000) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 3739 #define OPAMP1_CSR_PGGAIN ((uint32_t)0x0003C000) /*!< Gain in PGA mode */
MartinJohnson 0:404f5a4f1385 3740 #define OPAMP1_CSR_PGGAIN_0 ((uint32_t)0x00004000) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 3741 #define OPAMP1_CSR_PGGAIN_1 ((uint32_t)0x00008000) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 3742 #define OPAMP1_CSR_PGGAIN_2 ((uint32_t)0x00010000) /*!< Bit 2 */
MartinJohnson 0:404f5a4f1385 3743 #define OPAMP1_CSR_PGGAIN_3 ((uint32_t)0x00020000) /*!< Bit 3 */
MartinJohnson 0:404f5a4f1385 3744 #define OPAMP1_CSR_USERTRIM ((uint32_t)0x00040000) /*!< User trimming enable */
MartinJohnson 0:404f5a4f1385 3745 #define OPAMP1_CSR_TRIMOFFSETP ((uint32_t)0x00F80000) /*!< Offset trimming value (PMOS) */
MartinJohnson 0:404f5a4f1385 3746 #define OPAMP1_CSR_TRIMOFFSETN ((uint32_t)0x1F000000) /*!< Offset trimming value (NMOS) */
MartinJohnson 0:404f5a4f1385 3747 #define OPAMP1_CSR_TSTREF ((uint32_t)0x20000000) /*!< It enables the switch to put out the internal reference */
MartinJohnson 0:404f5a4f1385 3748 #define OPAMP1_CSR_OUTCAL ((uint32_t)0x40000000) /*!< OPAMP output status flag */
MartinJohnson 0:404f5a4f1385 3749 #define OPAMP1_CSR_LOCK ((uint32_t)0x80000000) /*!< OPAMP lock */
MartinJohnson 0:404f5a4f1385 3750
MartinJohnson 0:404f5a4f1385 3751 /********************* Bit definition for OPAMP2_CSR register ***************/
MartinJohnson 0:404f5a4f1385 3752 #define OPAMP2_CSR_OPAMP2EN ((uint32_t)0x00000001) /*!< OPAMP2 enable */
MartinJohnson 0:404f5a4f1385 3753 #define OPAMP2_CSR_FORCEVP ((uint32_t)0x00000002) /*!< Connect the internal references to the plus input of the OPAMPX */
MartinJohnson 0:404f5a4f1385 3754 #define OPAMP2_CSR_VPSEL ((uint32_t)0x0000000C) /*!< Non inverting input selection */
MartinJohnson 0:404f5a4f1385 3755 #define OPAMP2_CSR_VPSEL_0 ((uint32_t)0x00000004) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 3756 #define OPAMP2_CSR_VPSEL_1 ((uint32_t)0x00000008) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 3757 #define OPAMP2_CSR_VMSEL ((uint32_t)0x00000060) /*!< Inverting input selection */
MartinJohnson 0:404f5a4f1385 3758 #define OPAMP2_CSR_VMSEL_0 ((uint32_t)0x00000020) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 3759 #define OPAMP2_CSR_VMSEL_1 ((uint32_t)0x00000040) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 3760 #define OPAMP2_CSR_TCMEN ((uint32_t)0x00000080) /*!< Timer-Controlled Mux mode enable */
MartinJohnson 0:404f5a4f1385 3761 #define OPAMP2_CSR_VMSSEL ((uint32_t)0x00000100) /*!< Inverting input secondary selection */
MartinJohnson 0:404f5a4f1385 3762 #define OPAMP2_CSR_VPSSEL ((uint32_t)0x00000600) /*!< Non inverting input secondary selection */
MartinJohnson 0:404f5a4f1385 3763 #define OPAMP2_CSR_VPSSEL_0 ((uint32_t)0x00000200) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 3764 #define OPAMP2_CSR_VPSSEL_1 ((uint32_t)0x00000400) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 3765 #define OPAMP2_CSR_CALON ((uint32_t)0x00000800) /*!< Calibration mode enable */
MartinJohnson 0:404f5a4f1385 3766 #define OPAMP2_CSR_CALSEL ((uint32_t)0x00003000) /*!< Calibration selection */
MartinJohnson 0:404f5a4f1385 3767 #define OPAMP2_CSR_CALSEL_0 ((uint32_t)0x00001000) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 3768 #define OPAMP2_CSR_CALSEL_1 ((uint32_t)0x00002000) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 3769 #define OPAMP2_CSR_PGGAIN ((uint32_t)0x0003C000) /*!< Gain in PGA mode */
MartinJohnson 0:404f5a4f1385 3770 #define OPAMP2_CSR_PGGAIN_0 ((uint32_t)0x00004000) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 3771 #define OPAMP2_CSR_PGGAIN_1 ((uint32_t)0x00008000) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 3772 #define OPAMP2_CSR_PGGAIN_2 ((uint32_t)0x00010000) /*!< Bit 2 */
MartinJohnson 0:404f5a4f1385 3773 #define OPAMP2_CSR_PGGAIN_3 ((uint32_t)0x00020000) /*!< Bit 3 */
MartinJohnson 0:404f5a4f1385 3774 #define OPAMP2_CSR_USERTRIM ((uint32_t)0x00040000) /*!< User trimming enable */
MartinJohnson 0:404f5a4f1385 3775 #define OPAMP2_CSR_TRIMOFFSETP ((uint32_t)0x00F80000) /*!< Offset trimming value (PMOS) */
MartinJohnson 0:404f5a4f1385 3776 #define OPAMP2_CSR_TRIMOFFSETN ((uint32_t)0x1F000000) /*!< Offset trimming value (NMOS) */
MartinJohnson 0:404f5a4f1385 3777 #define OPAMP2_CSR_TSTREF ((uint32_t)0x20000000) /*!< It enables the switch to put out the internal reference */
MartinJohnson 0:404f5a4f1385 3778 #define OPAMP2_CSR_OUTCAL ((uint32_t)0x40000000) /*!< OPAMP output status flag */
MartinJohnson 0:404f5a4f1385 3779 #define OPAMP2_CSR_LOCK ((uint32_t)0x80000000) /*!< OPAMP lock */
MartinJohnson 0:404f5a4f1385 3780
MartinJohnson 0:404f5a4f1385 3781 /********************* Bit definition for OPAMP3_CSR register ***************/
MartinJohnson 0:404f5a4f1385 3782 #define OPAMP3_CSR_OPAMP3EN ((uint32_t)0x00000001) /*!< OPAMP3 enable */
MartinJohnson 0:404f5a4f1385 3783 #define OPAMP3_CSR_FORCEVP ((uint32_t)0x00000002) /*!< Connect the internal references to the plus input of the OPAMPX */
MartinJohnson 0:404f5a4f1385 3784 #define OPAMP3_CSR_VPSEL ((uint32_t)0x0000000C) /*!< Non inverting input selection */
MartinJohnson 0:404f5a4f1385 3785 #define OPAMP3_CSR_VPSEL_0 ((uint32_t)0x00000004) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 3786 #define OPAMP3_CSR_VPSEL_1 ((uint32_t)0x00000008) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 3787 #define OPAMP3_CSR_VMSEL ((uint32_t)0x00000060) /*!< Inverting input selection */
MartinJohnson 0:404f5a4f1385 3788 #define OPAMP3_CSR_VMSEL_0 ((uint32_t)0x00000020) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 3789 #define OPAMP3_CSR_VMSEL_1 ((uint32_t)0x00000040) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 3790 #define OPAMP3_CSR_TCMEN ((uint32_t)0x00000080) /*!< Timer-Controlled Mux mode enable */
MartinJohnson 0:404f5a4f1385 3791 #define OPAMP3_CSR_VMSSEL ((uint32_t)0x00000100) /*!< Inverting input secondary selection */
MartinJohnson 0:404f5a4f1385 3792 #define OPAMP3_CSR_VPSSEL ((uint32_t)0x00000600) /*!< Non inverting input secondary selection */
MartinJohnson 0:404f5a4f1385 3793 #define OPAMP3_CSR_VPSSEL_0 ((uint32_t)0x00000200) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 3794 #define OPAMP3_CSR_VPSSEL_1 ((uint32_t)0x00000400) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 3795 #define OPAMP3_CSR_CALON ((uint32_t)0x00000800) /*!< Calibration mode enable */
MartinJohnson 0:404f5a4f1385 3796 #define OPAMP3_CSR_CALSEL ((uint32_t)0x00003000) /*!< Calibration selection */
MartinJohnson 0:404f5a4f1385 3797 #define OPAMP3_CSR_CALSEL_0 ((uint32_t)0x00001000) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 3798 #define OPAMP3_CSR_CALSEL_1 ((uint32_t)0x00002000) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 3799 #define OPAMP3_CSR_PGGAIN ((uint32_t)0x0003C000) /*!< Gain in PGA mode */
MartinJohnson 0:404f5a4f1385 3800 #define OPAMP3_CSR_PGGAIN_0 ((uint32_t)0x00004000) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 3801 #define OPAMP3_CSR_PGGAIN_1 ((uint32_t)0x00008000) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 3802 #define OPAMP3_CSR_PGGAIN_2 ((uint32_t)0x00010000) /*!< Bit 2 */
MartinJohnson 0:404f5a4f1385 3803 #define OPAMP3_CSR_PGGAIN_3 ((uint32_t)0x00020000) /*!< Bit 3 */
MartinJohnson 0:404f5a4f1385 3804 #define OPAMP3_CSR_USERTRIM ((uint32_t)0x00040000) /*!< User trimming enable */
MartinJohnson 0:404f5a4f1385 3805 #define OPAMP3_CSR_TRIMOFFSETP ((uint32_t)0x00F80000) /*!< Offset trimming value (PMOS) */
MartinJohnson 0:404f5a4f1385 3806 #define OPAMP3_CSR_TRIMOFFSETN ((uint32_t)0x1F000000) /*!< Offset trimming value (NMOS) */
MartinJohnson 0:404f5a4f1385 3807 #define OPAMP3_CSR_TSTREF ((uint32_t)0x20000000) /*!< It enables the switch to put out the internal reference */
MartinJohnson 0:404f5a4f1385 3808 #define OPAMP3_CSR_OUTCAL ((uint32_t)0x40000000) /*!< OPAMP output status flag */
MartinJohnson 0:404f5a4f1385 3809 #define OPAMP3_CSR_LOCK ((uint32_t)0x80000000) /*!< OPAMP lock */
MartinJohnson 0:404f5a4f1385 3810
MartinJohnson 0:404f5a4f1385 3811 /********************* Bit definition for OPAMP4_CSR register ***************/
MartinJohnson 0:404f5a4f1385 3812 #define OPAMP4_CSR_OPAMP4EN ((uint32_t)0x00000001) /*!< OPAMP4 enable */
MartinJohnson 0:404f5a4f1385 3813 #define OPAMP4_CSR_FORCEVP ((uint32_t)0x00000002) /*!< Connect the internal references to the plus input of the OPAMPX */
MartinJohnson 0:404f5a4f1385 3814 #define OPAMP4_CSR_VPSEL ((uint32_t)0x0000000C) /*!< Non inverting input selection */
MartinJohnson 0:404f5a4f1385 3815 #define OPAMP4_CSR_VPSEL_0 ((uint32_t)0x00000004) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 3816 #define OPAMP4_CSR_VPSEL_1 ((uint32_t)0x00000008) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 3817 #define OPAMP4_CSR_VMSEL ((uint32_t)0x00000060) /*!< Inverting input selection */
MartinJohnson 0:404f5a4f1385 3818 #define OPAMP4_CSR_VMSEL_0 ((uint32_t)0x00000020) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 3819 #define OPAMP4_CSR_VMSEL_1 ((uint32_t)0x00000040) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 3820 #define OPAMP4_CSR_TCMEN ((uint32_t)0x00000080) /*!< Timer-Controlled Mux mode enable */
MartinJohnson 0:404f5a4f1385 3821 #define OPAMP4_CSR_VMSSEL ((uint32_t)0x00000100) /*!< Inverting input secondary selection */
MartinJohnson 0:404f5a4f1385 3822 #define OPAMP4_CSR_VPSSEL ((uint32_t)0x00000600) /*!< Non inverting input secondary selection */
MartinJohnson 0:404f5a4f1385 3823 #define OPAMP4_CSR_VPSSEL_0 ((uint32_t)0x00000200) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 3824 #define OPAMP4_CSR_VPSSEL_1 ((uint32_t)0x00000400) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 3825 #define OPAMP4_CSR_CALON ((uint32_t)0x00000800) /*!< Calibration mode enable */
MartinJohnson 0:404f5a4f1385 3826 #define OPAMP4_CSR_CALSEL ((uint32_t)0x00003000) /*!< Calibration selection */
MartinJohnson 0:404f5a4f1385 3827 #define OPAMP4_CSR_CALSEL_0 ((uint32_t)0x00001000) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 3828 #define OPAMP4_CSR_CALSEL_1 ((uint32_t)0x00002000) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 3829 #define OPAMP4_CSR_PGGAIN ((uint32_t)0x0003C000) /*!< Gain in PGA mode */
MartinJohnson 0:404f5a4f1385 3830 #define OPAMP4_CSR_PGGAIN_0 ((uint32_t)0x00004000) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 3831 #define OPAMP4_CSR_PGGAIN_1 ((uint32_t)0x00008000) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 3832 #define OPAMP4_CSR_PGGAIN_2 ((uint32_t)0x00010000) /*!< Bit 2 */
MartinJohnson 0:404f5a4f1385 3833 #define OPAMP4_CSR_PGGAIN_3 ((uint32_t)0x00020000) /*!< Bit 3 */
MartinJohnson 0:404f5a4f1385 3834 #define OPAMP4_CSR_USERTRIM ((uint32_t)0x00040000) /*!< User trimming enable */
MartinJohnson 0:404f5a4f1385 3835 #define OPAMP4_CSR_TRIMOFFSETP ((uint32_t)0x00F80000) /*!< Offset trimming value (PMOS) */
MartinJohnson 0:404f5a4f1385 3836 #define OPAMP4_CSR_TRIMOFFSETN ((uint32_t)0x1F000000) /*!< Offset trimming value (NMOS) */
MartinJohnson 0:404f5a4f1385 3837 #define OPAMP4_CSR_TSTREF ((uint32_t)0x20000000) /*!< It enables the switch to put out the internal reference */
MartinJohnson 0:404f5a4f1385 3838 #define OPAMP4_CSR_OUTCAL ((uint32_t)0x40000000) /*!< OPAMP output status flag */
MartinJohnson 0:404f5a4f1385 3839 #define OPAMP4_CSR_LOCK ((uint32_t)0x80000000) /*!< OPAMP lock */
MartinJohnson 0:404f5a4f1385 3840
MartinJohnson 0:404f5a4f1385 3841 /********************* Bit definition for OPAMPx_CSR register ***************/
MartinJohnson 0:404f5a4f1385 3842 #define OPAMP_CSR_OPAMPxEN ((uint32_t)0x00000001) /*!< OPAMP enable */
MartinJohnson 0:404f5a4f1385 3843 #define OPAMP_CSR_FORCEVP ((uint32_t)0x00000002) /*!< Connect the internal references to the plus input of the OPAMPX */
MartinJohnson 0:404f5a4f1385 3844 #define OPAMP_CSR_VPSEL ((uint32_t)0x0000000C) /*!< Non inverting input selection */
MartinJohnson 0:404f5a4f1385 3845 #define OPAMP_CSR_VPSEL_0 ((uint32_t)0x00000004) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 3846 #define OPAMP_CSR_VPSEL_1 ((uint32_t)0x00000008) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 3847 #define OPAMP_CSR_VMSEL ((uint32_t)0x00000060) /*!< Inverting input selection */
MartinJohnson 0:404f5a4f1385 3848 #define OPAMP_CSR_VMSEL_0 ((uint32_t)0x00000020) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 3849 #define OPAMP_CSR_VMSEL_1 ((uint32_t)0x00000040) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 3850 #define OPAMP_CSR_TCMEN ((uint32_t)0x00000080) /*!< Timer-Controlled Mux mode enable */
MartinJohnson 0:404f5a4f1385 3851 #define OPAMP_CSR_VMSSEL ((uint32_t)0x00000100) /*!< Inverting input secondary selection */
MartinJohnson 0:404f5a4f1385 3852 #define OPAMP_CSR_VPSSEL ((uint32_t)0x00000600) /*!< Non inverting input secondary selection */
MartinJohnson 0:404f5a4f1385 3853 #define OPAMP_CSR_VPSSEL_0 ((uint32_t)0x00000200) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 3854 #define OPAMP_CSR_VPSSEL_1 ((uint32_t)0x00000400) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 3855 #define OPAMP_CSR_CALON ((uint32_t)0x00000800) /*!< Calibration mode enable */
MartinJohnson 0:404f5a4f1385 3856 #define OPAMP_CSR_CALSEL ((uint32_t)0x00003000) /*!< Calibration selection */
MartinJohnson 0:404f5a4f1385 3857 #define OPAMP_CSR_CALSEL_0 ((uint32_t)0x00001000) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 3858 #define OPAMP_CSR_CALSEL_1 ((uint32_t)0x00002000) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 3859 #define OPAMP_CSR_PGGAIN ((uint32_t)0x0003C000) /*!< Gain in PGA mode */
MartinJohnson 0:404f5a4f1385 3860 #define OPAMP_CSR_PGGAIN_0 ((uint32_t)0x00004000) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 3861 #define OPAMP_CSR_PGGAIN_1 ((uint32_t)0x00008000) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 3862 #define OPAMP_CSR_PGGAIN_2 ((uint32_t)0x00010000) /*!< Bit 2 */
MartinJohnson 0:404f5a4f1385 3863 #define OPAMP_CSR_PGGAIN_3 ((uint32_t)0x00020000) /*!< Bit 3 */
MartinJohnson 0:404f5a4f1385 3864 #define OPAMP_CSR_USERTRIM ((uint32_t)0x00040000) /*!< User trimming enable */
MartinJohnson 0:404f5a4f1385 3865 #define OPAMP_CSR_TRIMOFFSETP ((uint32_t)0x00F80000) /*!< Offset trimming value (PMOS) */
MartinJohnson 0:404f5a4f1385 3866 #define OPAMP_CSR_TRIMOFFSETN ((uint32_t)0x1F000000) /*!< Offset trimming value (NMOS) */
MartinJohnson 0:404f5a4f1385 3867 #define OPAMP_CSR_TSTREF ((uint32_t)0x20000000) /*!< It enables the switch to put out the internal reference */
MartinJohnson 0:404f5a4f1385 3868 #define OPAMP_CSR_OUTCAL ((uint32_t)0x40000000) /*!< OPAMP output status flag */
MartinJohnson 0:404f5a4f1385 3869 #define OPAMP_CSR_LOCK ((uint32_t)0x80000000) /*!< OPAMP lock */
MartinJohnson 0:404f5a4f1385 3870
MartinJohnson 0:404f5a4f1385 3871
MartinJohnson 0:404f5a4f1385 3872 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 3873 /* */
MartinJohnson 0:404f5a4f1385 3874 /* Controller Area Network (CAN ) */
MartinJohnson 0:404f5a4f1385 3875 /* */
MartinJohnson 0:404f5a4f1385 3876 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 3877 /*!<CAN control and status registers */
MartinJohnson 0:404f5a4f1385 3878 /******************* Bit definition for CAN_MCR register ********************/
MartinJohnson 0:404f5a4f1385 3879 #define CAN_MCR_INRQ ((uint16_t)0x0001) /*!<Initialization Request */
MartinJohnson 0:404f5a4f1385 3880 #define CAN_MCR_SLEEP ((uint16_t)0x0002) /*!<Sleep Mode Request */
MartinJohnson 0:404f5a4f1385 3881 #define CAN_MCR_TXFP ((uint16_t)0x0004) /*!<Transmit FIFO Priority */
MartinJohnson 0:404f5a4f1385 3882 #define CAN_MCR_RFLM ((uint16_t)0x0008) /*!<Receive FIFO Locked Mode */
MartinJohnson 0:404f5a4f1385 3883 #define CAN_MCR_NART ((uint16_t)0x0010) /*!<No Automatic Retransmission */
MartinJohnson 0:404f5a4f1385 3884 #define CAN_MCR_AWUM ((uint16_t)0x0020) /*!<Automatic Wakeup Mode */
MartinJohnson 0:404f5a4f1385 3885 #define CAN_MCR_ABOM ((uint16_t)0x0040) /*!<Automatic Bus-Off Management */
MartinJohnson 0:404f5a4f1385 3886 #define CAN_MCR_TTCM ((uint16_t)0x0080) /*!<Time Triggered Communication Mode */
MartinJohnson 0:404f5a4f1385 3887 #define CAN_MCR_RESET ((uint16_t)0x8000) /*!<bxCAN software master reset */
MartinJohnson 0:404f5a4f1385 3888
MartinJohnson 0:404f5a4f1385 3889 /******************* Bit definition for CAN_MSR register ********************/
MartinJohnson 0:404f5a4f1385 3890 #define CAN_MSR_INAK ((uint16_t)0x0001) /*!<Initialization Acknowledge */
MartinJohnson 0:404f5a4f1385 3891 #define CAN_MSR_SLAK ((uint16_t)0x0002) /*!<Sleep Acknowledge */
MartinJohnson 0:404f5a4f1385 3892 #define CAN_MSR_ERRI ((uint16_t)0x0004) /*!<Error Interrupt */
MartinJohnson 0:404f5a4f1385 3893 #define CAN_MSR_WKUI ((uint16_t)0x0008) /*!<Wakeup Interrupt */
MartinJohnson 0:404f5a4f1385 3894 #define CAN_MSR_SLAKI ((uint16_t)0x0010) /*!<Sleep Acknowledge Interrupt */
MartinJohnson 0:404f5a4f1385 3895 #define CAN_MSR_TXM ((uint16_t)0x0100) /*!<Transmit Mode */
MartinJohnson 0:404f5a4f1385 3896 #define CAN_MSR_RXM ((uint16_t)0x0200) /*!<Receive Mode */
MartinJohnson 0:404f5a4f1385 3897 #define CAN_MSR_SAMP ((uint16_t)0x0400) /*!<Last Sample Point */
MartinJohnson 0:404f5a4f1385 3898 #define CAN_MSR_RX ((uint16_t)0x0800) /*!<CAN Rx Signal */
MartinJohnson 0:404f5a4f1385 3899
MartinJohnson 0:404f5a4f1385 3900 /******************* Bit definition for CAN_TSR register ********************/
MartinJohnson 0:404f5a4f1385 3901 #define CAN_TSR_RQCP0 ((uint32_t)0x00000001) /*!<Request Completed Mailbox0 */
MartinJohnson 0:404f5a4f1385 3902 #define CAN_TSR_TXOK0 ((uint32_t)0x00000002) /*!<Transmission OK of Mailbox0 */
MartinJohnson 0:404f5a4f1385 3903 #define CAN_TSR_ALST0 ((uint32_t)0x00000004) /*!<Arbitration Lost for Mailbox0 */
MartinJohnson 0:404f5a4f1385 3904 #define CAN_TSR_TERR0 ((uint32_t)0x00000008) /*!<Transmission Error of Mailbox0 */
MartinJohnson 0:404f5a4f1385 3905 #define CAN_TSR_ABRQ0 ((uint32_t)0x00000080) /*!<Abort Request for Mailbox0 */
MartinJohnson 0:404f5a4f1385 3906 #define CAN_TSR_RQCP1 ((uint32_t)0x00000100) /*!<Request Completed Mailbox1 */
MartinJohnson 0:404f5a4f1385 3907 #define CAN_TSR_TXOK1 ((uint32_t)0x00000200) /*!<Transmission OK of Mailbox1 */
MartinJohnson 0:404f5a4f1385 3908 #define CAN_TSR_ALST1 ((uint32_t)0x00000400) /*!<Arbitration Lost for Mailbox1 */
MartinJohnson 0:404f5a4f1385 3909 #define CAN_TSR_TERR1 ((uint32_t)0x00000800) /*!<Transmission Error of Mailbox1 */
MartinJohnson 0:404f5a4f1385 3910 #define CAN_TSR_ABRQ1 ((uint32_t)0x00008000) /*!<Abort Request for Mailbox 1 */
MartinJohnson 0:404f5a4f1385 3911 #define CAN_TSR_RQCP2 ((uint32_t)0x00010000) /*!<Request Completed Mailbox2 */
MartinJohnson 0:404f5a4f1385 3912 #define CAN_TSR_TXOK2 ((uint32_t)0x00020000) /*!<Transmission OK of Mailbox 2 */
MartinJohnson 0:404f5a4f1385 3913 #define CAN_TSR_ALST2 ((uint32_t)0x00040000) /*!<Arbitration Lost for mailbox 2 */
MartinJohnson 0:404f5a4f1385 3914 #define CAN_TSR_TERR2 ((uint32_t)0x00080000) /*!<Transmission Error of Mailbox 2 */
MartinJohnson 0:404f5a4f1385 3915 #define CAN_TSR_ABRQ2 ((uint32_t)0x00800000) /*!<Abort Request for Mailbox 2 */
MartinJohnson 0:404f5a4f1385 3916 #define CAN_TSR_CODE ((uint32_t)0x03000000) /*!<Mailbox Code */
MartinJohnson 0:404f5a4f1385 3917
MartinJohnson 0:404f5a4f1385 3918 #define CAN_TSR_TME ((uint32_t)0x1C000000) /*!<TME[2:0] bits */
MartinJohnson 0:404f5a4f1385 3919 #define CAN_TSR_TME0 ((uint32_t)0x04000000) /*!<Transmit Mailbox 0 Empty */
MartinJohnson 0:404f5a4f1385 3920 #define CAN_TSR_TME1 ((uint32_t)0x08000000) /*!<Transmit Mailbox 1 Empty */
MartinJohnson 0:404f5a4f1385 3921 #define CAN_TSR_TME2 ((uint32_t)0x10000000) /*!<Transmit Mailbox 2 Empty */
MartinJohnson 0:404f5a4f1385 3922
MartinJohnson 0:404f5a4f1385 3923 #define CAN_TSR_LOW ((uint32_t)0xE0000000) /*!<LOW[2:0] bits */
MartinJohnson 0:404f5a4f1385 3924 #define CAN_TSR_LOW0 ((uint32_t)0x20000000) /*!<Lowest Priority Flag for Mailbox 0 */
MartinJohnson 0:404f5a4f1385 3925 #define CAN_TSR_LOW1 ((uint32_t)0x40000000) /*!<Lowest Priority Flag for Mailbox 1 */
MartinJohnson 0:404f5a4f1385 3926 #define CAN_TSR_LOW2 ((uint32_t)0x80000000) /*!<Lowest Priority Flag for Mailbox 2 */
MartinJohnson 0:404f5a4f1385 3927
MartinJohnson 0:404f5a4f1385 3928 /******************* Bit definition for CAN_RF0R register *******************/
MartinJohnson 0:404f5a4f1385 3929 #define CAN_RF0R_FMP0 ((uint8_t)0x03) /*!<FIFO 0 Message Pending */
MartinJohnson 0:404f5a4f1385 3930 #define CAN_RF0R_FULL0 ((uint8_t)0x08) /*!<FIFO 0 Full */
MartinJohnson 0:404f5a4f1385 3931 #define CAN_RF0R_FOVR0 ((uint8_t)0x10) /*!<FIFO 0 Overrun */
MartinJohnson 0:404f5a4f1385 3932 #define CAN_RF0R_RFOM0 ((uint8_t)0x20) /*!<Release FIFO 0 Output Mailbox */
MartinJohnson 0:404f5a4f1385 3933
MartinJohnson 0:404f5a4f1385 3934 /******************* Bit definition for CAN_RF1R register *******************/
MartinJohnson 0:404f5a4f1385 3935 #define CAN_RF1R_FMP1 ((uint8_t)0x03) /*!<FIFO 1 Message Pending */
MartinJohnson 0:404f5a4f1385 3936 #define CAN_RF1R_FULL1 ((uint8_t)0x08) /*!<FIFO 1 Full */
MartinJohnson 0:404f5a4f1385 3937 #define CAN_RF1R_FOVR1 ((uint8_t)0x10) /*!<FIFO 1 Overrun */
MartinJohnson 0:404f5a4f1385 3938 #define CAN_RF1R_RFOM1 ((uint8_t)0x20) /*!<Release FIFO 1 Output Mailbox */
MartinJohnson 0:404f5a4f1385 3939
MartinJohnson 0:404f5a4f1385 3940 /******************** Bit definition for CAN_IER register *******************/
MartinJohnson 0:404f5a4f1385 3941 #define CAN_IER_TMEIE ((uint32_t)0x00000001) /*!<Transmit Mailbox Empty Interrupt Enable */
MartinJohnson 0:404f5a4f1385 3942 #define CAN_IER_FMPIE0 ((uint32_t)0x00000002) /*!<FIFO Message Pending Interrupt Enable */
MartinJohnson 0:404f5a4f1385 3943 #define CAN_IER_FFIE0 ((uint32_t)0x00000004) /*!<FIFO Full Interrupt Enable */
MartinJohnson 0:404f5a4f1385 3944 #define CAN_IER_FOVIE0 ((uint32_t)0x00000008) /*!<FIFO Overrun Interrupt Enable */
MartinJohnson 0:404f5a4f1385 3945 #define CAN_IER_FMPIE1 ((uint32_t)0x00000010) /*!<FIFO Message Pending Interrupt Enable */
MartinJohnson 0:404f5a4f1385 3946 #define CAN_IER_FFIE1 ((uint32_t)0x00000020) /*!<FIFO Full Interrupt Enable */
MartinJohnson 0:404f5a4f1385 3947 #define CAN_IER_FOVIE1 ((uint32_t)0x00000040) /*!<FIFO Overrun Interrupt Enable */
MartinJohnson 0:404f5a4f1385 3948 #define CAN_IER_EWGIE ((uint32_t)0x00000100) /*!<Error Warning Interrupt Enable */
MartinJohnson 0:404f5a4f1385 3949 #define CAN_IER_EPVIE ((uint32_t)0x00000200) /*!<Error Passive Interrupt Enable */
MartinJohnson 0:404f5a4f1385 3950 #define CAN_IER_BOFIE ((uint32_t)0x00000400) /*!<Bus-Off Interrupt Enable */
MartinJohnson 0:404f5a4f1385 3951 #define CAN_IER_LECIE ((uint32_t)0x00000800) /*!<Last Error Code Interrupt Enable */
MartinJohnson 0:404f5a4f1385 3952 #define CAN_IER_ERRIE ((uint32_t)0x00008000) /*!<Error Interrupt Enable */
MartinJohnson 0:404f5a4f1385 3953 #define CAN_IER_WKUIE ((uint32_t)0x00010000) /*!<Wakeup Interrupt Enable */
MartinJohnson 0:404f5a4f1385 3954 #define CAN_IER_SLKIE ((uint32_t)0x00020000) /*!<Sleep Interrupt Enable */
MartinJohnson 0:404f5a4f1385 3955
MartinJohnson 0:404f5a4f1385 3956 /******************** Bit definition for CAN_ESR register *******************/
MartinJohnson 0:404f5a4f1385 3957 #define CAN_ESR_EWGF ((uint32_t)0x00000001) /*!<Error Warning Flag */
MartinJohnson 0:404f5a4f1385 3958 #define CAN_ESR_EPVF ((uint32_t)0x00000002) /*!<Error Passive Flag */
MartinJohnson 0:404f5a4f1385 3959 #define CAN_ESR_BOFF ((uint32_t)0x00000004) /*!<Bus-Off Flag */
MartinJohnson 0:404f5a4f1385 3960
MartinJohnson 0:404f5a4f1385 3961 #define CAN_ESR_LEC ((uint32_t)0x00000070) /*!<LEC[2:0] bits (Last Error Code) */
MartinJohnson 0:404f5a4f1385 3962 #define CAN_ESR_LEC_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 3963 #define CAN_ESR_LEC_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 3964 #define CAN_ESR_LEC_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 3965
MartinJohnson 0:404f5a4f1385 3966 #define CAN_ESR_TEC ((uint32_t)0x00FF0000) /*!<Least significant byte of the 9-bit Transmit Error Counter */
MartinJohnson 0:404f5a4f1385 3967 #define CAN_ESR_REC ((uint32_t)0xFF000000) /*!<Receive Error Counter */
MartinJohnson 0:404f5a4f1385 3968
MartinJohnson 0:404f5a4f1385 3969 /******************* Bit definition for CAN_BTR register ********************/
MartinJohnson 0:404f5a4f1385 3970 #define CAN_BTR_BRP ((uint32_t)0x000003FF) /*!<Baud Rate Prescaler */
MartinJohnson 0:404f5a4f1385 3971 #define CAN_BTR_TS1 ((uint32_t)0x000F0000) /*!<Time Segment 1 */
MartinJohnson 0:404f5a4f1385 3972 #define CAN_BTR_TS2 ((uint32_t)0x00700000) /*!<Time Segment 2 */
MartinJohnson 0:404f5a4f1385 3973 #define CAN_BTR_SJW ((uint32_t)0x03000000) /*!<Resynchronization Jump Width */
MartinJohnson 0:404f5a4f1385 3974 #define CAN_BTR_LBKM ((uint32_t)0x40000000) /*!<Loop Back Mode (Debug) */
MartinJohnson 0:404f5a4f1385 3975 #define CAN_BTR_SILM ((uint32_t)0x80000000) /*!<Silent Mode */
MartinJohnson 0:404f5a4f1385 3976
MartinJohnson 0:404f5a4f1385 3977 /*!<Mailbox registers */
MartinJohnson 0:404f5a4f1385 3978 /****************** Bit definition for CAN_TI0R register ********************/
MartinJohnson 0:404f5a4f1385 3979 #define CAN_TI0R_TXRQ ((uint32_t)0x00000001) /*!<Transmit Mailbox Request */
MartinJohnson 0:404f5a4f1385 3980 #define CAN_TI0R_RTR ((uint32_t)0x00000002) /*!<Remote Transmission Request */
MartinJohnson 0:404f5a4f1385 3981 #define CAN_TI0R_IDE ((uint32_t)0x00000004) /*!<Identifier Extension */
MartinJohnson 0:404f5a4f1385 3982 #define CAN_TI0R_EXID ((uint32_t)0x001FFFF8) /*!<Extended Identifier */
MartinJohnson 0:404f5a4f1385 3983 #define CAN_TI0R_STID ((uint32_t)0xFFE00000) /*!<Standard Identifier or Extended Identifier */
MartinJohnson 0:404f5a4f1385 3984
MartinJohnson 0:404f5a4f1385 3985 /****************** Bit definition for CAN_TDT0R register *******************/
MartinJohnson 0:404f5a4f1385 3986 #define CAN_TDT0R_DLC ((uint32_t)0x0000000F) /*!<Data Length Code */
MartinJohnson 0:404f5a4f1385 3987 #define CAN_TDT0R_TGT ((uint32_t)0x00000100) /*!<Transmit Global Time */
MartinJohnson 0:404f5a4f1385 3988 #define CAN_TDT0R_TIME ((uint32_t)0xFFFF0000) /*!<Message Time Stamp */
MartinJohnson 0:404f5a4f1385 3989
MartinJohnson 0:404f5a4f1385 3990 /****************** Bit definition for CAN_TDL0R register *******************/
MartinJohnson 0:404f5a4f1385 3991 #define CAN_TDL0R_DATA0 ((uint32_t)0x000000FF) /*!<Data byte 0 */
MartinJohnson 0:404f5a4f1385 3992 #define CAN_TDL0R_DATA1 ((uint32_t)0x0000FF00) /*!<Data byte 1 */
MartinJohnson 0:404f5a4f1385 3993 #define CAN_TDL0R_DATA2 ((uint32_t)0x00FF0000) /*!<Data byte 2 */
MartinJohnson 0:404f5a4f1385 3994 #define CAN_TDL0R_DATA3 ((uint32_t)0xFF000000) /*!<Data byte 3 */
MartinJohnson 0:404f5a4f1385 3995
MartinJohnson 0:404f5a4f1385 3996 /****************** Bit definition for CAN_TDH0R register *******************/
MartinJohnson 0:404f5a4f1385 3997 #define CAN_TDH0R_DATA4 ((uint32_t)0x000000FF) /*!<Data byte 4 */
MartinJohnson 0:404f5a4f1385 3998 #define CAN_TDH0R_DATA5 ((uint32_t)0x0000FF00) /*!<Data byte 5 */
MartinJohnson 0:404f5a4f1385 3999 #define CAN_TDH0R_DATA6 ((uint32_t)0x00FF0000) /*!<Data byte 6 */
MartinJohnson 0:404f5a4f1385 4000 #define CAN_TDH0R_DATA7 ((uint32_t)0xFF000000) /*!<Data byte 7 */
MartinJohnson 0:404f5a4f1385 4001
MartinJohnson 0:404f5a4f1385 4002 /******************* Bit definition for CAN_TI1R register *******************/
MartinJohnson 0:404f5a4f1385 4003 #define CAN_TI1R_TXRQ ((uint32_t)0x00000001) /*!<Transmit Mailbox Request */
MartinJohnson 0:404f5a4f1385 4004 #define CAN_TI1R_RTR ((uint32_t)0x00000002) /*!<Remote Transmission Request */
MartinJohnson 0:404f5a4f1385 4005 #define CAN_TI1R_IDE ((uint32_t)0x00000004) /*!<Identifier Extension */
MartinJohnson 0:404f5a4f1385 4006 #define CAN_TI1R_EXID ((uint32_t)0x001FFFF8) /*!<Extended Identifier */
MartinJohnson 0:404f5a4f1385 4007 #define CAN_TI1R_STID ((uint32_t)0xFFE00000) /*!<Standard Identifier or Extended Identifier */
MartinJohnson 0:404f5a4f1385 4008
MartinJohnson 0:404f5a4f1385 4009 /******************* Bit definition for CAN_TDT1R register ******************/
MartinJohnson 0:404f5a4f1385 4010 #define CAN_TDT1R_DLC ((uint32_t)0x0000000F) /*!<Data Length Code */
MartinJohnson 0:404f5a4f1385 4011 #define CAN_TDT1R_TGT ((uint32_t)0x00000100) /*!<Transmit Global Time */
MartinJohnson 0:404f5a4f1385 4012 #define CAN_TDT1R_TIME ((uint32_t)0xFFFF0000) /*!<Message Time Stamp */
MartinJohnson 0:404f5a4f1385 4013
MartinJohnson 0:404f5a4f1385 4014 /******************* Bit definition for CAN_TDL1R register ******************/
MartinJohnson 0:404f5a4f1385 4015 #define CAN_TDL1R_DATA0 ((uint32_t)0x000000FF) /*!<Data byte 0 */
MartinJohnson 0:404f5a4f1385 4016 #define CAN_TDL1R_DATA1 ((uint32_t)0x0000FF00) /*!<Data byte 1 */
MartinJohnson 0:404f5a4f1385 4017 #define CAN_TDL1R_DATA2 ((uint32_t)0x00FF0000) /*!<Data byte 2 */
MartinJohnson 0:404f5a4f1385 4018 #define CAN_TDL1R_DATA3 ((uint32_t)0xFF000000) /*!<Data byte 3 */
MartinJohnson 0:404f5a4f1385 4019
MartinJohnson 0:404f5a4f1385 4020 /******************* Bit definition for CAN_TDH1R register ******************/
MartinJohnson 0:404f5a4f1385 4021 #define CAN_TDH1R_DATA4 ((uint32_t)0x000000FF) /*!<Data byte 4 */
MartinJohnson 0:404f5a4f1385 4022 #define CAN_TDH1R_DATA5 ((uint32_t)0x0000FF00) /*!<Data byte 5 */
MartinJohnson 0:404f5a4f1385 4023 #define CAN_TDH1R_DATA6 ((uint32_t)0x00FF0000) /*!<Data byte 6 */
MartinJohnson 0:404f5a4f1385 4024 #define CAN_TDH1R_DATA7 ((uint32_t)0xFF000000) /*!<Data byte 7 */
MartinJohnson 0:404f5a4f1385 4025
MartinJohnson 0:404f5a4f1385 4026 /******************* Bit definition for CAN_TI2R register *******************/
MartinJohnson 0:404f5a4f1385 4027 #define CAN_TI2R_TXRQ ((uint32_t)0x00000001) /*!<Transmit Mailbox Request */
MartinJohnson 0:404f5a4f1385 4028 #define CAN_TI2R_RTR ((uint32_t)0x00000002) /*!<Remote Transmission Request */
MartinJohnson 0:404f5a4f1385 4029 #define CAN_TI2R_IDE ((uint32_t)0x00000004) /*!<Identifier Extension */
MartinJohnson 0:404f5a4f1385 4030 #define CAN_TI2R_EXID ((uint32_t)0x001FFFF8) /*!<Extended identifier */
MartinJohnson 0:404f5a4f1385 4031 #define CAN_TI2R_STID ((uint32_t)0xFFE00000) /*!<Standard Identifier or Extended Identifier */
MartinJohnson 0:404f5a4f1385 4032
MartinJohnson 0:404f5a4f1385 4033 /******************* Bit definition for CAN_TDT2R register ******************/
MartinJohnson 0:404f5a4f1385 4034 #define CAN_TDT2R_DLC ((uint32_t)0x0000000F) /*!<Data Length Code */
MartinJohnson 0:404f5a4f1385 4035 #define CAN_TDT2R_TGT ((uint32_t)0x00000100) /*!<Transmit Global Time */
MartinJohnson 0:404f5a4f1385 4036 #define CAN_TDT2R_TIME ((uint32_t)0xFFFF0000) /*!<Message Time Stamp */
MartinJohnson 0:404f5a4f1385 4037
MartinJohnson 0:404f5a4f1385 4038 /******************* Bit definition for CAN_TDL2R register ******************/
MartinJohnson 0:404f5a4f1385 4039 #define CAN_TDL2R_DATA0 ((uint32_t)0x000000FF) /*!<Data byte 0 */
MartinJohnson 0:404f5a4f1385 4040 #define CAN_TDL2R_DATA1 ((uint32_t)0x0000FF00) /*!<Data byte 1 */
MartinJohnson 0:404f5a4f1385 4041 #define CAN_TDL2R_DATA2 ((uint32_t)0x00FF0000) /*!<Data byte 2 */
MartinJohnson 0:404f5a4f1385 4042 #define CAN_TDL2R_DATA3 ((uint32_t)0xFF000000) /*!<Data byte 3 */
MartinJohnson 0:404f5a4f1385 4043
MartinJohnson 0:404f5a4f1385 4044 /******************* Bit definition for CAN_TDH2R register ******************/
MartinJohnson 0:404f5a4f1385 4045 #define CAN_TDH2R_DATA4 ((uint32_t)0x000000FF) /*!<Data byte 4 */
MartinJohnson 0:404f5a4f1385 4046 #define CAN_TDH2R_DATA5 ((uint32_t)0x0000FF00) /*!<Data byte 5 */
MartinJohnson 0:404f5a4f1385 4047 #define CAN_TDH2R_DATA6 ((uint32_t)0x00FF0000) /*!<Data byte 6 */
MartinJohnson 0:404f5a4f1385 4048 #define CAN_TDH2R_DATA7 ((uint32_t)0xFF000000) /*!<Data byte 7 */
MartinJohnson 0:404f5a4f1385 4049
MartinJohnson 0:404f5a4f1385 4050 /******************* Bit definition for CAN_RI0R register *******************/
MartinJohnson 0:404f5a4f1385 4051 #define CAN_RI0R_RTR ((uint32_t)0x00000002) /*!<Remote Transmission Request */
MartinJohnson 0:404f5a4f1385 4052 #define CAN_RI0R_IDE ((uint32_t)0x00000004) /*!<Identifier Extension */
MartinJohnson 0:404f5a4f1385 4053 #define CAN_RI0R_EXID ((uint32_t)0x001FFFF8) /*!<Extended Identifier */
MartinJohnson 0:404f5a4f1385 4054 #define CAN_RI0R_STID ((uint32_t)0xFFE00000) /*!<Standard Identifier or Extended Identifier */
MartinJohnson 0:404f5a4f1385 4055
MartinJohnson 0:404f5a4f1385 4056 /******************* Bit definition for CAN_RDT0R register ******************/
MartinJohnson 0:404f5a4f1385 4057 #define CAN_RDT0R_DLC ((uint32_t)0x0000000F) /*!<Data Length Code */
MartinJohnson 0:404f5a4f1385 4058 #define CAN_RDT0R_FMI ((uint32_t)0x0000FF00) /*!<Filter Match Index */
MartinJohnson 0:404f5a4f1385 4059 #define CAN_RDT0R_TIME ((uint32_t)0xFFFF0000) /*!<Message Time Stamp */
MartinJohnson 0:404f5a4f1385 4060
MartinJohnson 0:404f5a4f1385 4061 /******************* Bit definition for CAN_RDL0R register ******************/
MartinJohnson 0:404f5a4f1385 4062 #define CAN_RDL0R_DATA0 ((uint32_t)0x000000FF) /*!<Data byte 0 */
MartinJohnson 0:404f5a4f1385 4063 #define CAN_RDL0R_DATA1 ((uint32_t)0x0000FF00) /*!<Data byte 1 */
MartinJohnson 0:404f5a4f1385 4064 #define CAN_RDL0R_DATA2 ((uint32_t)0x00FF0000) /*!<Data byte 2 */
MartinJohnson 0:404f5a4f1385 4065 #define CAN_RDL0R_DATA3 ((uint32_t)0xFF000000) /*!<Data byte 3 */
MartinJohnson 0:404f5a4f1385 4066
MartinJohnson 0:404f5a4f1385 4067 /******************* Bit definition for CAN_RDH0R register ******************/
MartinJohnson 0:404f5a4f1385 4068 #define CAN_RDH0R_DATA4 ((uint32_t)0x000000FF) /*!<Data byte 4 */
MartinJohnson 0:404f5a4f1385 4069 #define CAN_RDH0R_DATA5 ((uint32_t)0x0000FF00) /*!<Data byte 5 */
MartinJohnson 0:404f5a4f1385 4070 #define CAN_RDH0R_DATA6 ((uint32_t)0x00FF0000) /*!<Data byte 6 */
MartinJohnson 0:404f5a4f1385 4071 #define CAN_RDH0R_DATA7 ((uint32_t)0xFF000000) /*!<Data byte 7 */
MartinJohnson 0:404f5a4f1385 4072
MartinJohnson 0:404f5a4f1385 4073 /******************* Bit definition for CAN_RI1R register *******************/
MartinJohnson 0:404f5a4f1385 4074 #define CAN_RI1R_RTR ((uint32_t)0x00000002) /*!<Remote Transmission Request */
MartinJohnson 0:404f5a4f1385 4075 #define CAN_RI1R_IDE ((uint32_t)0x00000004) /*!<Identifier Extension */
MartinJohnson 0:404f5a4f1385 4076 #define CAN_RI1R_EXID ((uint32_t)0x001FFFF8) /*!<Extended identifier */
MartinJohnson 0:404f5a4f1385 4077 #define CAN_RI1R_STID ((uint32_t)0xFFE00000) /*!<Standard Identifier or Extended Identifier */
MartinJohnson 0:404f5a4f1385 4078
MartinJohnson 0:404f5a4f1385 4079 /******************* Bit definition for CAN_RDT1R register ******************/
MartinJohnson 0:404f5a4f1385 4080 #define CAN_RDT1R_DLC ((uint32_t)0x0000000F) /*!<Data Length Code */
MartinJohnson 0:404f5a4f1385 4081 #define CAN_RDT1R_FMI ((uint32_t)0x0000FF00) /*!<Filter Match Index */
MartinJohnson 0:404f5a4f1385 4082 #define CAN_RDT1R_TIME ((uint32_t)0xFFFF0000) /*!<Message Time Stamp */
MartinJohnson 0:404f5a4f1385 4083
MartinJohnson 0:404f5a4f1385 4084 /******************* Bit definition for CAN_RDL1R register ******************/
MartinJohnson 0:404f5a4f1385 4085 #define CAN_RDL1R_DATA0 ((uint32_t)0x000000FF) /*!<Data byte 0 */
MartinJohnson 0:404f5a4f1385 4086 #define CAN_RDL1R_DATA1 ((uint32_t)0x0000FF00) /*!<Data byte 1 */
MartinJohnson 0:404f5a4f1385 4087 #define CAN_RDL1R_DATA2 ((uint32_t)0x00FF0000) /*!<Data byte 2 */
MartinJohnson 0:404f5a4f1385 4088 #define CAN_RDL1R_DATA3 ((uint32_t)0xFF000000) /*!<Data byte 3 */
MartinJohnson 0:404f5a4f1385 4089
MartinJohnson 0:404f5a4f1385 4090 /******************* Bit definition for CAN_RDH1R register ******************/
MartinJohnson 0:404f5a4f1385 4091 #define CAN_RDH1R_DATA4 ((uint32_t)0x000000FF) /*!<Data byte 4 */
MartinJohnson 0:404f5a4f1385 4092 #define CAN_RDH1R_DATA5 ((uint32_t)0x0000FF00) /*!<Data byte 5 */
MartinJohnson 0:404f5a4f1385 4093 #define CAN_RDH1R_DATA6 ((uint32_t)0x00FF0000) /*!<Data byte 6 */
MartinJohnson 0:404f5a4f1385 4094 #define CAN_RDH1R_DATA7 ((uint32_t)0xFF000000) /*!<Data byte 7 */
MartinJohnson 0:404f5a4f1385 4095
MartinJohnson 0:404f5a4f1385 4096 /*!<CAN filter registers */
MartinJohnson 0:404f5a4f1385 4097 /******************* Bit definition for CAN_FMR register ********************/
MartinJohnson 0:404f5a4f1385 4098 #define CAN_FMR_FINIT ((uint8_t)0x01) /*!<Filter Init Mode */
MartinJohnson 0:404f5a4f1385 4099
MartinJohnson 0:404f5a4f1385 4100 /******************* Bit definition for CAN_FM1R register *******************/
MartinJohnson 0:404f5a4f1385 4101 #define CAN_FM1R_FBM ((uint16_t)0x3FFF) /*!<Filter Mode */
MartinJohnson 0:404f5a4f1385 4102 #define CAN_FM1R_FBM0 ((uint16_t)0x0001) /*!<Filter Init Mode bit 0 */
MartinJohnson 0:404f5a4f1385 4103 #define CAN_FM1R_FBM1 ((uint16_t)0x0002) /*!<Filter Init Mode bit 1 */
MartinJohnson 0:404f5a4f1385 4104 #define CAN_FM1R_FBM2 ((uint16_t)0x0004) /*!<Filter Init Mode bit 2 */
MartinJohnson 0:404f5a4f1385 4105 #define CAN_FM1R_FBM3 ((uint16_t)0x0008) /*!<Filter Init Mode bit 3 */
MartinJohnson 0:404f5a4f1385 4106 #define CAN_FM1R_FBM4 ((uint16_t)0x0010) /*!<Filter Init Mode bit 4 */
MartinJohnson 0:404f5a4f1385 4107 #define CAN_FM1R_FBM5 ((uint16_t)0x0020) /*!<Filter Init Mode bit 5 */
MartinJohnson 0:404f5a4f1385 4108 #define CAN_FM1R_FBM6 ((uint16_t)0x0040) /*!<Filter Init Mode bit 6 */
MartinJohnson 0:404f5a4f1385 4109 #define CAN_FM1R_FBM7 ((uint16_t)0x0080) /*!<Filter Init Mode bit 7 */
MartinJohnson 0:404f5a4f1385 4110 #define CAN_FM1R_FBM8 ((uint16_t)0x0100) /*!<Filter Init Mode bit 8 */
MartinJohnson 0:404f5a4f1385 4111 #define CAN_FM1R_FBM9 ((uint16_t)0x0200) /*!<Filter Init Mode bit 9 */
MartinJohnson 0:404f5a4f1385 4112 #define CAN_FM1R_FBM10 ((uint16_t)0x0400) /*!<Filter Init Mode bit 10 */
MartinJohnson 0:404f5a4f1385 4113 #define CAN_FM1R_FBM11 ((uint16_t)0x0800) /*!<Filter Init Mode bit 11 */
MartinJohnson 0:404f5a4f1385 4114 #define CAN_FM1R_FBM12 ((uint16_t)0x1000) /*!<Filter Init Mode bit 12 */
MartinJohnson 0:404f5a4f1385 4115 #define CAN_FM1R_FBM13 ((uint16_t)0x2000) /*!<Filter Init Mode bit 13 */
MartinJohnson 0:404f5a4f1385 4116
MartinJohnson 0:404f5a4f1385 4117 /******************* Bit definition for CAN_FS1R register *******************/
MartinJohnson 0:404f5a4f1385 4118 #define CAN_FS1R_FSC ((uint16_t)0x3FFF) /*!<Filter Scale Configuration */
MartinJohnson 0:404f5a4f1385 4119 #define CAN_FS1R_FSC0 ((uint16_t)0x0001) /*!<Filter Scale Configuration bit 0 */
MartinJohnson 0:404f5a4f1385 4120 #define CAN_FS1R_FSC1 ((uint16_t)0x0002) /*!<Filter Scale Configuration bit 1 */
MartinJohnson 0:404f5a4f1385 4121 #define CAN_FS1R_FSC2 ((uint16_t)0x0004) /*!<Filter Scale Configuration bit 2 */
MartinJohnson 0:404f5a4f1385 4122 #define CAN_FS1R_FSC3 ((uint16_t)0x0008) /*!<Filter Scale Configuration bit 3 */
MartinJohnson 0:404f5a4f1385 4123 #define CAN_FS1R_FSC4 ((uint16_t)0x0010) /*!<Filter Scale Configuration bit 4 */
MartinJohnson 0:404f5a4f1385 4124 #define CAN_FS1R_FSC5 ((uint16_t)0x0020) /*!<Filter Scale Configuration bit 5 */
MartinJohnson 0:404f5a4f1385 4125 #define CAN_FS1R_FSC6 ((uint16_t)0x0040) /*!<Filter Scale Configuration bit 6 */
MartinJohnson 0:404f5a4f1385 4126 #define CAN_FS1R_FSC7 ((uint16_t)0x0080) /*!<Filter Scale Configuration bit 7 */
MartinJohnson 0:404f5a4f1385 4127 #define CAN_FS1R_FSC8 ((uint16_t)0x0100) /*!<Filter Scale Configuration bit 8 */
MartinJohnson 0:404f5a4f1385 4128 #define CAN_FS1R_FSC9 ((uint16_t)0x0200) /*!<Filter Scale Configuration bit 9 */
MartinJohnson 0:404f5a4f1385 4129 #define CAN_FS1R_FSC10 ((uint16_t)0x0400) /*!<Filter Scale Configuration bit 10 */
MartinJohnson 0:404f5a4f1385 4130 #define CAN_FS1R_FSC11 ((uint16_t)0x0800) /*!<Filter Scale Configuration bit 11 */
MartinJohnson 0:404f5a4f1385 4131 #define CAN_FS1R_FSC12 ((uint16_t)0x1000) /*!<Filter Scale Configuration bit 12 */
MartinJohnson 0:404f5a4f1385 4132 #define CAN_FS1R_FSC13 ((uint16_t)0x2000) /*!<Filter Scale Configuration bit 13 */
MartinJohnson 0:404f5a4f1385 4133
MartinJohnson 0:404f5a4f1385 4134 /****************** Bit definition for CAN_FFA1R register *******************/
MartinJohnson 0:404f5a4f1385 4135 #define CAN_FFA1R_FFA ((uint16_t)0x3FFF) /*!<Filter FIFO Assignment */
MartinJohnson 0:404f5a4f1385 4136 #define CAN_FFA1R_FFA0 ((uint16_t)0x0001) /*!<Filter FIFO Assignment for Filter 0 */
MartinJohnson 0:404f5a4f1385 4137 #define CAN_FFA1R_FFA1 ((uint16_t)0x0002) /*!<Filter FIFO Assignment for Filter 1 */
MartinJohnson 0:404f5a4f1385 4138 #define CAN_FFA1R_FFA2 ((uint16_t)0x0004) /*!<Filter FIFO Assignment for Filter 2 */
MartinJohnson 0:404f5a4f1385 4139 #define CAN_FFA1R_FFA3 ((uint16_t)0x0008) /*!<Filter FIFO Assignment for Filter 3 */
MartinJohnson 0:404f5a4f1385 4140 #define CAN_FFA1R_FFA4 ((uint16_t)0x0010) /*!<Filter FIFO Assignment for Filter 4 */
MartinJohnson 0:404f5a4f1385 4141 #define CAN_FFA1R_FFA5 ((uint16_t)0x0020) /*!<Filter FIFO Assignment for Filter 5 */
MartinJohnson 0:404f5a4f1385 4142 #define CAN_FFA1R_FFA6 ((uint16_t)0x0040) /*!<Filter FIFO Assignment for Filter 6 */
MartinJohnson 0:404f5a4f1385 4143 #define CAN_FFA1R_FFA7 ((uint16_t)0x0080) /*!<Filter FIFO Assignment for Filter 7 */
MartinJohnson 0:404f5a4f1385 4144 #define CAN_FFA1R_FFA8 ((uint16_t)0x0100) /*!<Filter FIFO Assignment for Filter 8 */
MartinJohnson 0:404f5a4f1385 4145 #define CAN_FFA1R_FFA9 ((uint16_t)0x0200) /*!<Filter FIFO Assignment for Filter 9 */
MartinJohnson 0:404f5a4f1385 4146 #define CAN_FFA1R_FFA10 ((uint16_t)0x0400) /*!<Filter FIFO Assignment for Filter 10 */
MartinJohnson 0:404f5a4f1385 4147 #define CAN_FFA1R_FFA11 ((uint16_t)0x0800) /*!<Filter FIFO Assignment for Filter 11 */
MartinJohnson 0:404f5a4f1385 4148 #define CAN_FFA1R_FFA12 ((uint16_t)0x1000) /*!<Filter FIFO Assignment for Filter 12 */
MartinJohnson 0:404f5a4f1385 4149 #define CAN_FFA1R_FFA13 ((uint16_t)0x2000) /*!<Filter FIFO Assignment for Filter 13 */
MartinJohnson 0:404f5a4f1385 4150
MartinJohnson 0:404f5a4f1385 4151 /******************* Bit definition for CAN_FA1R register *******************/
MartinJohnson 0:404f5a4f1385 4152 #define CAN_FA1R_FACT ((uint16_t)0x3FFF) /*!<Filter Active */
MartinJohnson 0:404f5a4f1385 4153 #define CAN_FA1R_FACT0 ((uint16_t)0x0001) /*!<Filter 0 Active */
MartinJohnson 0:404f5a4f1385 4154 #define CAN_FA1R_FACT1 ((uint16_t)0x0002) /*!<Filter 1 Active */
MartinJohnson 0:404f5a4f1385 4155 #define CAN_FA1R_FACT2 ((uint16_t)0x0004) /*!<Filter 2 Active */
MartinJohnson 0:404f5a4f1385 4156 #define CAN_FA1R_FACT3 ((uint16_t)0x0008) /*!<Filter 3 Active */
MartinJohnson 0:404f5a4f1385 4157 #define CAN_FA1R_FACT4 ((uint16_t)0x0010) /*!<Filter 4 Active */
MartinJohnson 0:404f5a4f1385 4158 #define CAN_FA1R_FACT5 ((uint16_t)0x0020) /*!<Filter 5 Active */
MartinJohnson 0:404f5a4f1385 4159 #define CAN_FA1R_FACT6 ((uint16_t)0x0040) /*!<Filter 6 Active */
MartinJohnson 0:404f5a4f1385 4160 #define CAN_FA1R_FACT7 ((uint16_t)0x0080) /*!<Filter 7 Active */
MartinJohnson 0:404f5a4f1385 4161 #define CAN_FA1R_FACT8 ((uint16_t)0x0100) /*!<Filter 8 Active */
MartinJohnson 0:404f5a4f1385 4162 #define CAN_FA1R_FACT9 ((uint16_t)0x0200) /*!<Filter 9 Active */
MartinJohnson 0:404f5a4f1385 4163 #define CAN_FA1R_FACT10 ((uint16_t)0x0400) /*!<Filter 10 Active */
MartinJohnson 0:404f5a4f1385 4164 #define CAN_FA1R_FACT11 ((uint16_t)0x0800) /*!<Filter 11 Active */
MartinJohnson 0:404f5a4f1385 4165 #define CAN_FA1R_FACT12 ((uint16_t)0x1000) /*!<Filter 12 Active */
MartinJohnson 0:404f5a4f1385 4166 #define CAN_FA1R_FACT13 ((uint16_t)0x2000) /*!<Filter 13 Active */
MartinJohnson 0:404f5a4f1385 4167
MartinJohnson 0:404f5a4f1385 4168 /******************* Bit definition for CAN_F0R1 register *******************/
MartinJohnson 0:404f5a4f1385 4169 #define CAN_F0R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:404f5a4f1385 4170 #define CAN_F0R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:404f5a4f1385 4171 #define CAN_F0R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:404f5a4f1385 4172 #define CAN_F0R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:404f5a4f1385 4173 #define CAN_F0R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:404f5a4f1385 4174 #define CAN_F0R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:404f5a4f1385 4175 #define CAN_F0R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:404f5a4f1385 4176 #define CAN_F0R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:404f5a4f1385 4177 #define CAN_F0R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:404f5a4f1385 4178 #define CAN_F0R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:404f5a4f1385 4179 #define CAN_F0R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:404f5a4f1385 4180 #define CAN_F0R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:404f5a4f1385 4181 #define CAN_F0R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:404f5a4f1385 4182 #define CAN_F0R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:404f5a4f1385 4183 #define CAN_F0R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:404f5a4f1385 4184 #define CAN_F0R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:404f5a4f1385 4185 #define CAN_F0R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:404f5a4f1385 4186 #define CAN_F0R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:404f5a4f1385 4187 #define CAN_F0R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:404f5a4f1385 4188 #define CAN_F0R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:404f5a4f1385 4189 #define CAN_F0R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:404f5a4f1385 4190 #define CAN_F0R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:404f5a4f1385 4191 #define CAN_F0R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:404f5a4f1385 4192 #define CAN_F0R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:404f5a4f1385 4193 #define CAN_F0R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:404f5a4f1385 4194 #define CAN_F0R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:404f5a4f1385 4195 #define CAN_F0R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:404f5a4f1385 4196 #define CAN_F0R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:404f5a4f1385 4197 #define CAN_F0R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:404f5a4f1385 4198 #define CAN_F0R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:404f5a4f1385 4199 #define CAN_F0R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:404f5a4f1385 4200 #define CAN_F0R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:404f5a4f1385 4201
MartinJohnson 0:404f5a4f1385 4202 /******************* Bit definition for CAN_F1R1 register *******************/
MartinJohnson 0:404f5a4f1385 4203 #define CAN_F1R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:404f5a4f1385 4204 #define CAN_F1R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:404f5a4f1385 4205 #define CAN_F1R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:404f5a4f1385 4206 #define CAN_F1R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:404f5a4f1385 4207 #define CAN_F1R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:404f5a4f1385 4208 #define CAN_F1R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:404f5a4f1385 4209 #define CAN_F1R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:404f5a4f1385 4210 #define CAN_F1R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:404f5a4f1385 4211 #define CAN_F1R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:404f5a4f1385 4212 #define CAN_F1R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:404f5a4f1385 4213 #define CAN_F1R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:404f5a4f1385 4214 #define CAN_F1R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:404f5a4f1385 4215 #define CAN_F1R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:404f5a4f1385 4216 #define CAN_F1R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:404f5a4f1385 4217 #define CAN_F1R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:404f5a4f1385 4218 #define CAN_F1R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:404f5a4f1385 4219 #define CAN_F1R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:404f5a4f1385 4220 #define CAN_F1R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:404f5a4f1385 4221 #define CAN_F1R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:404f5a4f1385 4222 #define CAN_F1R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:404f5a4f1385 4223 #define CAN_F1R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:404f5a4f1385 4224 #define CAN_F1R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:404f5a4f1385 4225 #define CAN_F1R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:404f5a4f1385 4226 #define CAN_F1R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:404f5a4f1385 4227 #define CAN_F1R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:404f5a4f1385 4228 #define CAN_F1R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:404f5a4f1385 4229 #define CAN_F1R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:404f5a4f1385 4230 #define CAN_F1R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:404f5a4f1385 4231 #define CAN_F1R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:404f5a4f1385 4232 #define CAN_F1R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:404f5a4f1385 4233 #define CAN_F1R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:404f5a4f1385 4234 #define CAN_F1R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:404f5a4f1385 4235
MartinJohnson 0:404f5a4f1385 4236 /******************* Bit definition for CAN_F2R1 register *******************/
MartinJohnson 0:404f5a4f1385 4237 #define CAN_F2R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:404f5a4f1385 4238 #define CAN_F2R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:404f5a4f1385 4239 #define CAN_F2R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:404f5a4f1385 4240 #define CAN_F2R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:404f5a4f1385 4241 #define CAN_F2R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:404f5a4f1385 4242 #define CAN_F2R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:404f5a4f1385 4243 #define CAN_F2R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:404f5a4f1385 4244 #define CAN_F2R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:404f5a4f1385 4245 #define CAN_F2R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:404f5a4f1385 4246 #define CAN_F2R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:404f5a4f1385 4247 #define CAN_F2R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:404f5a4f1385 4248 #define CAN_F2R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:404f5a4f1385 4249 #define CAN_F2R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:404f5a4f1385 4250 #define CAN_F2R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:404f5a4f1385 4251 #define CAN_F2R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:404f5a4f1385 4252 #define CAN_F2R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:404f5a4f1385 4253 #define CAN_F2R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:404f5a4f1385 4254 #define CAN_F2R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:404f5a4f1385 4255 #define CAN_F2R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:404f5a4f1385 4256 #define CAN_F2R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:404f5a4f1385 4257 #define CAN_F2R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:404f5a4f1385 4258 #define CAN_F2R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:404f5a4f1385 4259 #define CAN_F2R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:404f5a4f1385 4260 #define CAN_F2R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:404f5a4f1385 4261 #define CAN_F2R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:404f5a4f1385 4262 #define CAN_F2R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:404f5a4f1385 4263 #define CAN_F2R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:404f5a4f1385 4264 #define CAN_F2R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:404f5a4f1385 4265 #define CAN_F2R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:404f5a4f1385 4266 #define CAN_F2R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:404f5a4f1385 4267 #define CAN_F2R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:404f5a4f1385 4268 #define CAN_F2R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:404f5a4f1385 4269
MartinJohnson 0:404f5a4f1385 4270 /******************* Bit definition for CAN_F3R1 register *******************/
MartinJohnson 0:404f5a4f1385 4271 #define CAN_F3R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:404f5a4f1385 4272 #define CAN_F3R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:404f5a4f1385 4273 #define CAN_F3R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:404f5a4f1385 4274 #define CAN_F3R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:404f5a4f1385 4275 #define CAN_F3R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:404f5a4f1385 4276 #define CAN_F3R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:404f5a4f1385 4277 #define CAN_F3R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:404f5a4f1385 4278 #define CAN_F3R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:404f5a4f1385 4279 #define CAN_F3R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:404f5a4f1385 4280 #define CAN_F3R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:404f5a4f1385 4281 #define CAN_F3R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:404f5a4f1385 4282 #define CAN_F3R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:404f5a4f1385 4283 #define CAN_F3R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:404f5a4f1385 4284 #define CAN_F3R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:404f5a4f1385 4285 #define CAN_F3R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:404f5a4f1385 4286 #define CAN_F3R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:404f5a4f1385 4287 #define CAN_F3R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:404f5a4f1385 4288 #define CAN_F3R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:404f5a4f1385 4289 #define CAN_F3R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:404f5a4f1385 4290 #define CAN_F3R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:404f5a4f1385 4291 #define CAN_F3R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:404f5a4f1385 4292 #define CAN_F3R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:404f5a4f1385 4293 #define CAN_F3R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:404f5a4f1385 4294 #define CAN_F3R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:404f5a4f1385 4295 #define CAN_F3R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:404f5a4f1385 4296 #define CAN_F3R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:404f5a4f1385 4297 #define CAN_F3R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:404f5a4f1385 4298 #define CAN_F3R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:404f5a4f1385 4299 #define CAN_F3R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:404f5a4f1385 4300 #define CAN_F3R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:404f5a4f1385 4301 #define CAN_F3R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:404f5a4f1385 4302 #define CAN_F3R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:404f5a4f1385 4303
MartinJohnson 0:404f5a4f1385 4304 /******************* Bit definition for CAN_F4R1 register *******************/
MartinJohnson 0:404f5a4f1385 4305 #define CAN_F4R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:404f5a4f1385 4306 #define CAN_F4R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:404f5a4f1385 4307 #define CAN_F4R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:404f5a4f1385 4308 #define CAN_F4R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:404f5a4f1385 4309 #define CAN_F4R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:404f5a4f1385 4310 #define CAN_F4R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:404f5a4f1385 4311 #define CAN_F4R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:404f5a4f1385 4312 #define CAN_F4R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:404f5a4f1385 4313 #define CAN_F4R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:404f5a4f1385 4314 #define CAN_F4R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:404f5a4f1385 4315 #define CAN_F4R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:404f5a4f1385 4316 #define CAN_F4R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:404f5a4f1385 4317 #define CAN_F4R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:404f5a4f1385 4318 #define CAN_F4R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:404f5a4f1385 4319 #define CAN_F4R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:404f5a4f1385 4320 #define CAN_F4R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:404f5a4f1385 4321 #define CAN_F4R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:404f5a4f1385 4322 #define CAN_F4R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:404f5a4f1385 4323 #define CAN_F4R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:404f5a4f1385 4324 #define CAN_F4R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:404f5a4f1385 4325 #define CAN_F4R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:404f5a4f1385 4326 #define CAN_F4R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:404f5a4f1385 4327 #define CAN_F4R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:404f5a4f1385 4328 #define CAN_F4R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:404f5a4f1385 4329 #define CAN_F4R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:404f5a4f1385 4330 #define CAN_F4R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:404f5a4f1385 4331 #define CAN_F4R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:404f5a4f1385 4332 #define CAN_F4R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:404f5a4f1385 4333 #define CAN_F4R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:404f5a4f1385 4334 #define CAN_F4R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:404f5a4f1385 4335 #define CAN_F4R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:404f5a4f1385 4336 #define CAN_F4R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:404f5a4f1385 4337
MartinJohnson 0:404f5a4f1385 4338 /******************* Bit definition for CAN_F5R1 register *******************/
MartinJohnson 0:404f5a4f1385 4339 #define CAN_F5R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:404f5a4f1385 4340 #define CAN_F5R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:404f5a4f1385 4341 #define CAN_F5R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:404f5a4f1385 4342 #define CAN_F5R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:404f5a4f1385 4343 #define CAN_F5R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:404f5a4f1385 4344 #define CAN_F5R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:404f5a4f1385 4345 #define CAN_F5R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:404f5a4f1385 4346 #define CAN_F5R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:404f5a4f1385 4347 #define CAN_F5R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:404f5a4f1385 4348 #define CAN_F5R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:404f5a4f1385 4349 #define CAN_F5R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:404f5a4f1385 4350 #define CAN_F5R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:404f5a4f1385 4351 #define CAN_F5R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:404f5a4f1385 4352 #define CAN_F5R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:404f5a4f1385 4353 #define CAN_F5R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:404f5a4f1385 4354 #define CAN_F5R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:404f5a4f1385 4355 #define CAN_F5R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:404f5a4f1385 4356 #define CAN_F5R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:404f5a4f1385 4357 #define CAN_F5R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:404f5a4f1385 4358 #define CAN_F5R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:404f5a4f1385 4359 #define CAN_F5R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:404f5a4f1385 4360 #define CAN_F5R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:404f5a4f1385 4361 #define CAN_F5R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:404f5a4f1385 4362 #define CAN_F5R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:404f5a4f1385 4363 #define CAN_F5R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:404f5a4f1385 4364 #define CAN_F5R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:404f5a4f1385 4365 #define CAN_F5R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:404f5a4f1385 4366 #define CAN_F5R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:404f5a4f1385 4367 #define CAN_F5R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:404f5a4f1385 4368 #define CAN_F5R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:404f5a4f1385 4369 #define CAN_F5R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:404f5a4f1385 4370 #define CAN_F5R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:404f5a4f1385 4371
MartinJohnson 0:404f5a4f1385 4372 /******************* Bit definition for CAN_F6R1 register *******************/
MartinJohnson 0:404f5a4f1385 4373 #define CAN_F6R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:404f5a4f1385 4374 #define CAN_F6R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:404f5a4f1385 4375 #define CAN_F6R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:404f5a4f1385 4376 #define CAN_F6R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:404f5a4f1385 4377 #define CAN_F6R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:404f5a4f1385 4378 #define CAN_F6R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:404f5a4f1385 4379 #define CAN_F6R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:404f5a4f1385 4380 #define CAN_F6R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:404f5a4f1385 4381 #define CAN_F6R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:404f5a4f1385 4382 #define CAN_F6R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:404f5a4f1385 4383 #define CAN_F6R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:404f5a4f1385 4384 #define CAN_F6R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:404f5a4f1385 4385 #define CAN_F6R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:404f5a4f1385 4386 #define CAN_F6R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:404f5a4f1385 4387 #define CAN_F6R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:404f5a4f1385 4388 #define CAN_F6R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:404f5a4f1385 4389 #define CAN_F6R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:404f5a4f1385 4390 #define CAN_F6R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:404f5a4f1385 4391 #define CAN_F6R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:404f5a4f1385 4392 #define CAN_F6R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:404f5a4f1385 4393 #define CAN_F6R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:404f5a4f1385 4394 #define CAN_F6R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:404f5a4f1385 4395 #define CAN_F6R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:404f5a4f1385 4396 #define CAN_F6R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:404f5a4f1385 4397 #define CAN_F6R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:404f5a4f1385 4398 #define CAN_F6R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:404f5a4f1385 4399 #define CAN_F6R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:404f5a4f1385 4400 #define CAN_F6R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:404f5a4f1385 4401 #define CAN_F6R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:404f5a4f1385 4402 #define CAN_F6R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:404f5a4f1385 4403 #define CAN_F6R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:404f5a4f1385 4404 #define CAN_F6R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:404f5a4f1385 4405
MartinJohnson 0:404f5a4f1385 4406 /******************* Bit definition for CAN_F7R1 register *******************/
MartinJohnson 0:404f5a4f1385 4407 #define CAN_F7R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:404f5a4f1385 4408 #define CAN_F7R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:404f5a4f1385 4409 #define CAN_F7R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:404f5a4f1385 4410 #define CAN_F7R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:404f5a4f1385 4411 #define CAN_F7R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:404f5a4f1385 4412 #define CAN_F7R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:404f5a4f1385 4413 #define CAN_F7R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:404f5a4f1385 4414 #define CAN_F7R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:404f5a4f1385 4415 #define CAN_F7R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:404f5a4f1385 4416 #define CAN_F7R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:404f5a4f1385 4417 #define CAN_F7R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:404f5a4f1385 4418 #define CAN_F7R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:404f5a4f1385 4419 #define CAN_F7R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:404f5a4f1385 4420 #define CAN_F7R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:404f5a4f1385 4421 #define CAN_F7R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:404f5a4f1385 4422 #define CAN_F7R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:404f5a4f1385 4423 #define CAN_F7R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:404f5a4f1385 4424 #define CAN_F7R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:404f5a4f1385 4425 #define CAN_F7R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:404f5a4f1385 4426 #define CAN_F7R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:404f5a4f1385 4427 #define CAN_F7R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:404f5a4f1385 4428 #define CAN_F7R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:404f5a4f1385 4429 #define CAN_F7R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:404f5a4f1385 4430 #define CAN_F7R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:404f5a4f1385 4431 #define CAN_F7R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:404f5a4f1385 4432 #define CAN_F7R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:404f5a4f1385 4433 #define CAN_F7R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:404f5a4f1385 4434 #define CAN_F7R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:404f5a4f1385 4435 #define CAN_F7R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:404f5a4f1385 4436 #define CAN_F7R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:404f5a4f1385 4437 #define CAN_F7R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:404f5a4f1385 4438 #define CAN_F7R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:404f5a4f1385 4439
MartinJohnson 0:404f5a4f1385 4440 /******************* Bit definition for CAN_F8R1 register *******************/
MartinJohnson 0:404f5a4f1385 4441 #define CAN_F8R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:404f5a4f1385 4442 #define CAN_F8R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:404f5a4f1385 4443 #define CAN_F8R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:404f5a4f1385 4444 #define CAN_F8R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:404f5a4f1385 4445 #define CAN_F8R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:404f5a4f1385 4446 #define CAN_F8R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:404f5a4f1385 4447 #define CAN_F8R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:404f5a4f1385 4448 #define CAN_F8R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:404f5a4f1385 4449 #define CAN_F8R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:404f5a4f1385 4450 #define CAN_F8R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:404f5a4f1385 4451 #define CAN_F8R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:404f5a4f1385 4452 #define CAN_F8R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:404f5a4f1385 4453 #define CAN_F8R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:404f5a4f1385 4454 #define CAN_F8R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:404f5a4f1385 4455 #define CAN_F8R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:404f5a4f1385 4456 #define CAN_F8R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:404f5a4f1385 4457 #define CAN_F8R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:404f5a4f1385 4458 #define CAN_F8R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:404f5a4f1385 4459 #define CAN_F8R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:404f5a4f1385 4460 #define CAN_F8R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:404f5a4f1385 4461 #define CAN_F8R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:404f5a4f1385 4462 #define CAN_F8R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:404f5a4f1385 4463 #define CAN_F8R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:404f5a4f1385 4464 #define CAN_F8R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:404f5a4f1385 4465 #define CAN_F8R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:404f5a4f1385 4466 #define CAN_F8R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:404f5a4f1385 4467 #define CAN_F8R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:404f5a4f1385 4468 #define CAN_F8R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:404f5a4f1385 4469 #define CAN_F8R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:404f5a4f1385 4470 #define CAN_F8R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:404f5a4f1385 4471 #define CAN_F8R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:404f5a4f1385 4472 #define CAN_F8R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:404f5a4f1385 4473
MartinJohnson 0:404f5a4f1385 4474 /******************* Bit definition for CAN_F9R1 register *******************/
MartinJohnson 0:404f5a4f1385 4475 #define CAN_F9R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:404f5a4f1385 4476 #define CAN_F9R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:404f5a4f1385 4477 #define CAN_F9R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:404f5a4f1385 4478 #define CAN_F9R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:404f5a4f1385 4479 #define CAN_F9R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:404f5a4f1385 4480 #define CAN_F9R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:404f5a4f1385 4481 #define CAN_F9R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:404f5a4f1385 4482 #define CAN_F9R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:404f5a4f1385 4483 #define CAN_F9R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:404f5a4f1385 4484 #define CAN_F9R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:404f5a4f1385 4485 #define CAN_F9R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:404f5a4f1385 4486 #define CAN_F9R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:404f5a4f1385 4487 #define CAN_F9R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:404f5a4f1385 4488 #define CAN_F9R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:404f5a4f1385 4489 #define CAN_F9R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:404f5a4f1385 4490 #define CAN_F9R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:404f5a4f1385 4491 #define CAN_F9R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:404f5a4f1385 4492 #define CAN_F9R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:404f5a4f1385 4493 #define CAN_F9R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:404f5a4f1385 4494 #define CAN_F9R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:404f5a4f1385 4495 #define CAN_F9R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:404f5a4f1385 4496 #define CAN_F9R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:404f5a4f1385 4497 #define CAN_F9R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:404f5a4f1385 4498 #define CAN_F9R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:404f5a4f1385 4499 #define CAN_F9R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:404f5a4f1385 4500 #define CAN_F9R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:404f5a4f1385 4501 #define CAN_F9R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:404f5a4f1385 4502 #define CAN_F9R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:404f5a4f1385 4503 #define CAN_F9R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:404f5a4f1385 4504 #define CAN_F9R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:404f5a4f1385 4505 #define CAN_F9R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:404f5a4f1385 4506 #define CAN_F9R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:404f5a4f1385 4507
MartinJohnson 0:404f5a4f1385 4508 /******************* Bit definition for CAN_F10R1 register ******************/
MartinJohnson 0:404f5a4f1385 4509 #define CAN_F10R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:404f5a4f1385 4510 #define CAN_F10R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:404f5a4f1385 4511 #define CAN_F10R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:404f5a4f1385 4512 #define CAN_F10R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:404f5a4f1385 4513 #define CAN_F10R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:404f5a4f1385 4514 #define CAN_F10R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:404f5a4f1385 4515 #define CAN_F10R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:404f5a4f1385 4516 #define CAN_F10R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:404f5a4f1385 4517 #define CAN_F10R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:404f5a4f1385 4518 #define CAN_F10R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:404f5a4f1385 4519 #define CAN_F10R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:404f5a4f1385 4520 #define CAN_F10R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:404f5a4f1385 4521 #define CAN_F10R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:404f5a4f1385 4522 #define CAN_F10R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:404f5a4f1385 4523 #define CAN_F10R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:404f5a4f1385 4524 #define CAN_F10R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:404f5a4f1385 4525 #define CAN_F10R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:404f5a4f1385 4526 #define CAN_F10R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:404f5a4f1385 4527 #define CAN_F10R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:404f5a4f1385 4528 #define CAN_F10R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:404f5a4f1385 4529 #define CAN_F10R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:404f5a4f1385 4530 #define CAN_F10R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:404f5a4f1385 4531 #define CAN_F10R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:404f5a4f1385 4532 #define CAN_F10R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:404f5a4f1385 4533 #define CAN_F10R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:404f5a4f1385 4534 #define CAN_F10R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:404f5a4f1385 4535 #define CAN_F10R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:404f5a4f1385 4536 #define CAN_F10R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:404f5a4f1385 4537 #define CAN_F10R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:404f5a4f1385 4538 #define CAN_F10R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:404f5a4f1385 4539 #define CAN_F10R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:404f5a4f1385 4540 #define CAN_F10R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:404f5a4f1385 4541
MartinJohnson 0:404f5a4f1385 4542 /******************* Bit definition for CAN_F11R1 register ******************/
MartinJohnson 0:404f5a4f1385 4543 #define CAN_F11R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:404f5a4f1385 4544 #define CAN_F11R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:404f5a4f1385 4545 #define CAN_F11R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:404f5a4f1385 4546 #define CAN_F11R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:404f5a4f1385 4547 #define CAN_F11R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:404f5a4f1385 4548 #define CAN_F11R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:404f5a4f1385 4549 #define CAN_F11R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:404f5a4f1385 4550 #define CAN_F11R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:404f5a4f1385 4551 #define CAN_F11R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:404f5a4f1385 4552 #define CAN_F11R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:404f5a4f1385 4553 #define CAN_F11R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:404f5a4f1385 4554 #define CAN_F11R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:404f5a4f1385 4555 #define CAN_F11R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:404f5a4f1385 4556 #define CAN_F11R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:404f5a4f1385 4557 #define CAN_F11R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:404f5a4f1385 4558 #define CAN_F11R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:404f5a4f1385 4559 #define CAN_F11R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:404f5a4f1385 4560 #define CAN_F11R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:404f5a4f1385 4561 #define CAN_F11R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:404f5a4f1385 4562 #define CAN_F11R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:404f5a4f1385 4563 #define CAN_F11R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:404f5a4f1385 4564 #define CAN_F11R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:404f5a4f1385 4565 #define CAN_F11R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:404f5a4f1385 4566 #define CAN_F11R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:404f5a4f1385 4567 #define CAN_F11R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:404f5a4f1385 4568 #define CAN_F11R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:404f5a4f1385 4569 #define CAN_F11R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:404f5a4f1385 4570 #define CAN_F11R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:404f5a4f1385 4571 #define CAN_F11R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:404f5a4f1385 4572 #define CAN_F11R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:404f5a4f1385 4573 #define CAN_F11R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:404f5a4f1385 4574 #define CAN_F11R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:404f5a4f1385 4575
MartinJohnson 0:404f5a4f1385 4576 /******************* Bit definition for CAN_F12R1 register ******************/
MartinJohnson 0:404f5a4f1385 4577 #define CAN_F12R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:404f5a4f1385 4578 #define CAN_F12R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:404f5a4f1385 4579 #define CAN_F12R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:404f5a4f1385 4580 #define CAN_F12R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:404f5a4f1385 4581 #define CAN_F12R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:404f5a4f1385 4582 #define CAN_F12R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:404f5a4f1385 4583 #define CAN_F12R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:404f5a4f1385 4584 #define CAN_F12R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:404f5a4f1385 4585 #define CAN_F12R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:404f5a4f1385 4586 #define CAN_F12R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:404f5a4f1385 4587 #define CAN_F12R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:404f5a4f1385 4588 #define CAN_F12R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:404f5a4f1385 4589 #define CAN_F12R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:404f5a4f1385 4590 #define CAN_F12R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:404f5a4f1385 4591 #define CAN_F12R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:404f5a4f1385 4592 #define CAN_F12R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:404f5a4f1385 4593 #define CAN_F12R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:404f5a4f1385 4594 #define CAN_F12R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:404f5a4f1385 4595 #define CAN_F12R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:404f5a4f1385 4596 #define CAN_F12R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:404f5a4f1385 4597 #define CAN_F12R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:404f5a4f1385 4598 #define CAN_F12R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:404f5a4f1385 4599 #define CAN_F12R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:404f5a4f1385 4600 #define CAN_F12R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:404f5a4f1385 4601 #define CAN_F12R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:404f5a4f1385 4602 #define CAN_F12R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:404f5a4f1385 4603 #define CAN_F12R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:404f5a4f1385 4604 #define CAN_F12R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:404f5a4f1385 4605 #define CAN_F12R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:404f5a4f1385 4606 #define CAN_F12R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:404f5a4f1385 4607 #define CAN_F12R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:404f5a4f1385 4608 #define CAN_F12R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:404f5a4f1385 4609
MartinJohnson 0:404f5a4f1385 4610 /******************* Bit definition for CAN_F13R1 register ******************/
MartinJohnson 0:404f5a4f1385 4611 #define CAN_F13R1_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:404f5a4f1385 4612 #define CAN_F13R1_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:404f5a4f1385 4613 #define CAN_F13R1_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:404f5a4f1385 4614 #define CAN_F13R1_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:404f5a4f1385 4615 #define CAN_F13R1_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:404f5a4f1385 4616 #define CAN_F13R1_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:404f5a4f1385 4617 #define CAN_F13R1_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:404f5a4f1385 4618 #define CAN_F13R1_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:404f5a4f1385 4619 #define CAN_F13R1_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:404f5a4f1385 4620 #define CAN_F13R1_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:404f5a4f1385 4621 #define CAN_F13R1_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:404f5a4f1385 4622 #define CAN_F13R1_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:404f5a4f1385 4623 #define CAN_F13R1_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:404f5a4f1385 4624 #define CAN_F13R1_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:404f5a4f1385 4625 #define CAN_F13R1_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:404f5a4f1385 4626 #define CAN_F13R1_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:404f5a4f1385 4627 #define CAN_F13R1_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:404f5a4f1385 4628 #define CAN_F13R1_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:404f5a4f1385 4629 #define CAN_F13R1_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:404f5a4f1385 4630 #define CAN_F13R1_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:404f5a4f1385 4631 #define CAN_F13R1_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:404f5a4f1385 4632 #define CAN_F13R1_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:404f5a4f1385 4633 #define CAN_F13R1_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:404f5a4f1385 4634 #define CAN_F13R1_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:404f5a4f1385 4635 #define CAN_F13R1_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:404f5a4f1385 4636 #define CAN_F13R1_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:404f5a4f1385 4637 #define CAN_F13R1_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:404f5a4f1385 4638 #define CAN_F13R1_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:404f5a4f1385 4639 #define CAN_F13R1_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:404f5a4f1385 4640 #define CAN_F13R1_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:404f5a4f1385 4641 #define CAN_F13R1_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:404f5a4f1385 4642 #define CAN_F13R1_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:404f5a4f1385 4643
MartinJohnson 0:404f5a4f1385 4644 /******************* Bit definition for CAN_F0R2 register *******************/
MartinJohnson 0:404f5a4f1385 4645 #define CAN_F0R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:404f5a4f1385 4646 #define CAN_F0R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:404f5a4f1385 4647 #define CAN_F0R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:404f5a4f1385 4648 #define CAN_F0R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:404f5a4f1385 4649 #define CAN_F0R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:404f5a4f1385 4650 #define CAN_F0R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:404f5a4f1385 4651 #define CAN_F0R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:404f5a4f1385 4652 #define CAN_F0R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:404f5a4f1385 4653 #define CAN_F0R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:404f5a4f1385 4654 #define CAN_F0R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:404f5a4f1385 4655 #define CAN_F0R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:404f5a4f1385 4656 #define CAN_F0R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:404f5a4f1385 4657 #define CAN_F0R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:404f5a4f1385 4658 #define CAN_F0R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:404f5a4f1385 4659 #define CAN_F0R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:404f5a4f1385 4660 #define CAN_F0R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:404f5a4f1385 4661 #define CAN_F0R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:404f5a4f1385 4662 #define CAN_F0R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:404f5a4f1385 4663 #define CAN_F0R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:404f5a4f1385 4664 #define CAN_F0R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:404f5a4f1385 4665 #define CAN_F0R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:404f5a4f1385 4666 #define CAN_F0R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:404f5a4f1385 4667 #define CAN_F0R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:404f5a4f1385 4668 #define CAN_F0R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:404f5a4f1385 4669 #define CAN_F0R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:404f5a4f1385 4670 #define CAN_F0R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:404f5a4f1385 4671 #define CAN_F0R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:404f5a4f1385 4672 #define CAN_F0R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:404f5a4f1385 4673 #define CAN_F0R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:404f5a4f1385 4674 #define CAN_F0R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:404f5a4f1385 4675 #define CAN_F0R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:404f5a4f1385 4676 #define CAN_F0R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:404f5a4f1385 4677
MartinJohnson 0:404f5a4f1385 4678 /******************* Bit definition for CAN_F1R2 register *******************/
MartinJohnson 0:404f5a4f1385 4679 #define CAN_F1R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:404f5a4f1385 4680 #define CAN_F1R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:404f5a4f1385 4681 #define CAN_F1R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:404f5a4f1385 4682 #define CAN_F1R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:404f5a4f1385 4683 #define CAN_F1R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:404f5a4f1385 4684 #define CAN_F1R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:404f5a4f1385 4685 #define CAN_F1R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:404f5a4f1385 4686 #define CAN_F1R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:404f5a4f1385 4687 #define CAN_F1R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:404f5a4f1385 4688 #define CAN_F1R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:404f5a4f1385 4689 #define CAN_F1R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:404f5a4f1385 4690 #define CAN_F1R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:404f5a4f1385 4691 #define CAN_F1R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:404f5a4f1385 4692 #define CAN_F1R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:404f5a4f1385 4693 #define CAN_F1R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:404f5a4f1385 4694 #define CAN_F1R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:404f5a4f1385 4695 #define CAN_F1R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:404f5a4f1385 4696 #define CAN_F1R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:404f5a4f1385 4697 #define CAN_F1R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:404f5a4f1385 4698 #define CAN_F1R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:404f5a4f1385 4699 #define CAN_F1R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:404f5a4f1385 4700 #define CAN_F1R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:404f5a4f1385 4701 #define CAN_F1R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:404f5a4f1385 4702 #define CAN_F1R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:404f5a4f1385 4703 #define CAN_F1R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:404f5a4f1385 4704 #define CAN_F1R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:404f5a4f1385 4705 #define CAN_F1R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:404f5a4f1385 4706 #define CAN_F1R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:404f5a4f1385 4707 #define CAN_F1R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:404f5a4f1385 4708 #define CAN_F1R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:404f5a4f1385 4709 #define CAN_F1R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:404f5a4f1385 4710 #define CAN_F1R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:404f5a4f1385 4711
MartinJohnson 0:404f5a4f1385 4712 /******************* Bit definition for CAN_F2R2 register *******************/
MartinJohnson 0:404f5a4f1385 4713 #define CAN_F2R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:404f5a4f1385 4714 #define CAN_F2R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:404f5a4f1385 4715 #define CAN_F2R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:404f5a4f1385 4716 #define CAN_F2R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:404f5a4f1385 4717 #define CAN_F2R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:404f5a4f1385 4718 #define CAN_F2R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:404f5a4f1385 4719 #define CAN_F2R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:404f5a4f1385 4720 #define CAN_F2R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:404f5a4f1385 4721 #define CAN_F2R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:404f5a4f1385 4722 #define CAN_F2R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:404f5a4f1385 4723 #define CAN_F2R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:404f5a4f1385 4724 #define CAN_F2R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:404f5a4f1385 4725 #define CAN_F2R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:404f5a4f1385 4726 #define CAN_F2R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:404f5a4f1385 4727 #define CAN_F2R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:404f5a4f1385 4728 #define CAN_F2R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:404f5a4f1385 4729 #define CAN_F2R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:404f5a4f1385 4730 #define CAN_F2R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:404f5a4f1385 4731 #define CAN_F2R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:404f5a4f1385 4732 #define CAN_F2R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:404f5a4f1385 4733 #define CAN_F2R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:404f5a4f1385 4734 #define CAN_F2R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:404f5a4f1385 4735 #define CAN_F2R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:404f5a4f1385 4736 #define CAN_F2R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:404f5a4f1385 4737 #define CAN_F2R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:404f5a4f1385 4738 #define CAN_F2R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:404f5a4f1385 4739 #define CAN_F2R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:404f5a4f1385 4740 #define CAN_F2R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:404f5a4f1385 4741 #define CAN_F2R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:404f5a4f1385 4742 #define CAN_F2R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:404f5a4f1385 4743 #define CAN_F2R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:404f5a4f1385 4744 #define CAN_F2R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:404f5a4f1385 4745
MartinJohnson 0:404f5a4f1385 4746 /******************* Bit definition for CAN_F3R2 register *******************/
MartinJohnson 0:404f5a4f1385 4747 #define CAN_F3R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:404f5a4f1385 4748 #define CAN_F3R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:404f5a4f1385 4749 #define CAN_F3R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:404f5a4f1385 4750 #define CAN_F3R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:404f5a4f1385 4751 #define CAN_F3R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:404f5a4f1385 4752 #define CAN_F3R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:404f5a4f1385 4753 #define CAN_F3R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:404f5a4f1385 4754 #define CAN_F3R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:404f5a4f1385 4755 #define CAN_F3R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:404f5a4f1385 4756 #define CAN_F3R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:404f5a4f1385 4757 #define CAN_F3R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:404f5a4f1385 4758 #define CAN_F3R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:404f5a4f1385 4759 #define CAN_F3R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:404f5a4f1385 4760 #define CAN_F3R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:404f5a4f1385 4761 #define CAN_F3R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:404f5a4f1385 4762 #define CAN_F3R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:404f5a4f1385 4763 #define CAN_F3R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:404f5a4f1385 4764 #define CAN_F3R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:404f5a4f1385 4765 #define CAN_F3R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:404f5a4f1385 4766 #define CAN_F3R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:404f5a4f1385 4767 #define CAN_F3R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:404f5a4f1385 4768 #define CAN_F3R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:404f5a4f1385 4769 #define CAN_F3R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:404f5a4f1385 4770 #define CAN_F3R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:404f5a4f1385 4771 #define CAN_F3R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:404f5a4f1385 4772 #define CAN_F3R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:404f5a4f1385 4773 #define CAN_F3R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:404f5a4f1385 4774 #define CAN_F3R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:404f5a4f1385 4775 #define CAN_F3R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:404f5a4f1385 4776 #define CAN_F3R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:404f5a4f1385 4777 #define CAN_F3R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:404f5a4f1385 4778 #define CAN_F3R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:404f5a4f1385 4779
MartinJohnson 0:404f5a4f1385 4780 /******************* Bit definition for CAN_F4R2 register *******************/
MartinJohnson 0:404f5a4f1385 4781 #define CAN_F4R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:404f5a4f1385 4782 #define CAN_F4R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:404f5a4f1385 4783 #define CAN_F4R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:404f5a4f1385 4784 #define CAN_F4R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:404f5a4f1385 4785 #define CAN_F4R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:404f5a4f1385 4786 #define CAN_F4R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:404f5a4f1385 4787 #define CAN_F4R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:404f5a4f1385 4788 #define CAN_F4R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:404f5a4f1385 4789 #define CAN_F4R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:404f5a4f1385 4790 #define CAN_F4R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:404f5a4f1385 4791 #define CAN_F4R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:404f5a4f1385 4792 #define CAN_F4R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:404f5a4f1385 4793 #define CAN_F4R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:404f5a4f1385 4794 #define CAN_F4R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:404f5a4f1385 4795 #define CAN_F4R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:404f5a4f1385 4796 #define CAN_F4R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:404f5a4f1385 4797 #define CAN_F4R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:404f5a4f1385 4798 #define CAN_F4R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:404f5a4f1385 4799 #define CAN_F4R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:404f5a4f1385 4800 #define CAN_F4R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:404f5a4f1385 4801 #define CAN_F4R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:404f5a4f1385 4802 #define CAN_F4R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:404f5a4f1385 4803 #define CAN_F4R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:404f5a4f1385 4804 #define CAN_F4R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:404f5a4f1385 4805 #define CAN_F4R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:404f5a4f1385 4806 #define CAN_F4R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:404f5a4f1385 4807 #define CAN_F4R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:404f5a4f1385 4808 #define CAN_F4R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:404f5a4f1385 4809 #define CAN_F4R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:404f5a4f1385 4810 #define CAN_F4R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:404f5a4f1385 4811 #define CAN_F4R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:404f5a4f1385 4812 #define CAN_F4R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:404f5a4f1385 4813
MartinJohnson 0:404f5a4f1385 4814 /******************* Bit definition for CAN_F5R2 register *******************/
MartinJohnson 0:404f5a4f1385 4815 #define CAN_F5R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:404f5a4f1385 4816 #define CAN_F5R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:404f5a4f1385 4817 #define CAN_F5R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:404f5a4f1385 4818 #define CAN_F5R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:404f5a4f1385 4819 #define CAN_F5R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:404f5a4f1385 4820 #define CAN_F5R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:404f5a4f1385 4821 #define CAN_F5R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:404f5a4f1385 4822 #define CAN_F5R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:404f5a4f1385 4823 #define CAN_F5R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:404f5a4f1385 4824 #define CAN_F5R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:404f5a4f1385 4825 #define CAN_F5R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:404f5a4f1385 4826 #define CAN_F5R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:404f5a4f1385 4827 #define CAN_F5R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:404f5a4f1385 4828 #define CAN_F5R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:404f5a4f1385 4829 #define CAN_F5R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:404f5a4f1385 4830 #define CAN_F5R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:404f5a4f1385 4831 #define CAN_F5R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:404f5a4f1385 4832 #define CAN_F5R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:404f5a4f1385 4833 #define CAN_F5R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:404f5a4f1385 4834 #define CAN_F5R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:404f5a4f1385 4835 #define CAN_F5R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:404f5a4f1385 4836 #define CAN_F5R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:404f5a4f1385 4837 #define CAN_F5R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:404f5a4f1385 4838 #define CAN_F5R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:404f5a4f1385 4839 #define CAN_F5R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:404f5a4f1385 4840 #define CAN_F5R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:404f5a4f1385 4841 #define CAN_F5R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:404f5a4f1385 4842 #define CAN_F5R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:404f5a4f1385 4843 #define CAN_F5R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:404f5a4f1385 4844 #define CAN_F5R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:404f5a4f1385 4845 #define CAN_F5R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:404f5a4f1385 4846 #define CAN_F5R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:404f5a4f1385 4847
MartinJohnson 0:404f5a4f1385 4848 /******************* Bit definition for CAN_F6R2 register *******************/
MartinJohnson 0:404f5a4f1385 4849 #define CAN_F6R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:404f5a4f1385 4850 #define CAN_F6R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:404f5a4f1385 4851 #define CAN_F6R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:404f5a4f1385 4852 #define CAN_F6R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:404f5a4f1385 4853 #define CAN_F6R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:404f5a4f1385 4854 #define CAN_F6R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:404f5a4f1385 4855 #define CAN_F6R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:404f5a4f1385 4856 #define CAN_F6R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:404f5a4f1385 4857 #define CAN_F6R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:404f5a4f1385 4858 #define CAN_F6R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:404f5a4f1385 4859 #define CAN_F6R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:404f5a4f1385 4860 #define CAN_F6R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:404f5a4f1385 4861 #define CAN_F6R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:404f5a4f1385 4862 #define CAN_F6R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:404f5a4f1385 4863 #define CAN_F6R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:404f5a4f1385 4864 #define CAN_F6R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:404f5a4f1385 4865 #define CAN_F6R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:404f5a4f1385 4866 #define CAN_F6R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:404f5a4f1385 4867 #define CAN_F6R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:404f5a4f1385 4868 #define CAN_F6R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:404f5a4f1385 4869 #define CAN_F6R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:404f5a4f1385 4870 #define CAN_F6R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:404f5a4f1385 4871 #define CAN_F6R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:404f5a4f1385 4872 #define CAN_F6R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:404f5a4f1385 4873 #define CAN_F6R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:404f5a4f1385 4874 #define CAN_F6R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:404f5a4f1385 4875 #define CAN_F6R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:404f5a4f1385 4876 #define CAN_F6R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:404f5a4f1385 4877 #define CAN_F6R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:404f5a4f1385 4878 #define CAN_F6R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:404f5a4f1385 4879 #define CAN_F6R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:404f5a4f1385 4880 #define CAN_F6R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:404f5a4f1385 4881
MartinJohnson 0:404f5a4f1385 4882 /******************* Bit definition for CAN_F7R2 register *******************/
MartinJohnson 0:404f5a4f1385 4883 #define CAN_F7R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:404f5a4f1385 4884 #define CAN_F7R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:404f5a4f1385 4885 #define CAN_F7R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:404f5a4f1385 4886 #define CAN_F7R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:404f5a4f1385 4887 #define CAN_F7R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:404f5a4f1385 4888 #define CAN_F7R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:404f5a4f1385 4889 #define CAN_F7R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:404f5a4f1385 4890 #define CAN_F7R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:404f5a4f1385 4891 #define CAN_F7R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:404f5a4f1385 4892 #define CAN_F7R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:404f5a4f1385 4893 #define CAN_F7R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:404f5a4f1385 4894 #define CAN_F7R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:404f5a4f1385 4895 #define CAN_F7R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:404f5a4f1385 4896 #define CAN_F7R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:404f5a4f1385 4897 #define CAN_F7R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:404f5a4f1385 4898 #define CAN_F7R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:404f5a4f1385 4899 #define CAN_F7R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:404f5a4f1385 4900 #define CAN_F7R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:404f5a4f1385 4901 #define CAN_F7R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:404f5a4f1385 4902 #define CAN_F7R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:404f5a4f1385 4903 #define CAN_F7R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:404f5a4f1385 4904 #define CAN_F7R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:404f5a4f1385 4905 #define CAN_F7R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:404f5a4f1385 4906 #define CAN_F7R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:404f5a4f1385 4907 #define CAN_F7R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:404f5a4f1385 4908 #define CAN_F7R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:404f5a4f1385 4909 #define CAN_F7R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:404f5a4f1385 4910 #define CAN_F7R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:404f5a4f1385 4911 #define CAN_F7R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:404f5a4f1385 4912 #define CAN_F7R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:404f5a4f1385 4913 #define CAN_F7R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:404f5a4f1385 4914 #define CAN_F7R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:404f5a4f1385 4915
MartinJohnson 0:404f5a4f1385 4916 /******************* Bit definition for CAN_F8R2 register *******************/
MartinJohnson 0:404f5a4f1385 4917 #define CAN_F8R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:404f5a4f1385 4918 #define CAN_F8R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:404f5a4f1385 4919 #define CAN_F8R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:404f5a4f1385 4920 #define CAN_F8R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:404f5a4f1385 4921 #define CAN_F8R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:404f5a4f1385 4922 #define CAN_F8R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:404f5a4f1385 4923 #define CAN_F8R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:404f5a4f1385 4924 #define CAN_F8R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:404f5a4f1385 4925 #define CAN_F8R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:404f5a4f1385 4926 #define CAN_F8R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:404f5a4f1385 4927 #define CAN_F8R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:404f5a4f1385 4928 #define CAN_F8R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:404f5a4f1385 4929 #define CAN_F8R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:404f5a4f1385 4930 #define CAN_F8R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:404f5a4f1385 4931 #define CAN_F8R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:404f5a4f1385 4932 #define CAN_F8R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:404f5a4f1385 4933 #define CAN_F8R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:404f5a4f1385 4934 #define CAN_F8R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:404f5a4f1385 4935 #define CAN_F8R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:404f5a4f1385 4936 #define CAN_F8R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:404f5a4f1385 4937 #define CAN_F8R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:404f5a4f1385 4938 #define CAN_F8R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:404f5a4f1385 4939 #define CAN_F8R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:404f5a4f1385 4940 #define CAN_F8R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:404f5a4f1385 4941 #define CAN_F8R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:404f5a4f1385 4942 #define CAN_F8R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:404f5a4f1385 4943 #define CAN_F8R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:404f5a4f1385 4944 #define CAN_F8R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:404f5a4f1385 4945 #define CAN_F8R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:404f5a4f1385 4946 #define CAN_F8R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:404f5a4f1385 4947 #define CAN_F8R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:404f5a4f1385 4948 #define CAN_F8R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:404f5a4f1385 4949
MartinJohnson 0:404f5a4f1385 4950 /******************* Bit definition for CAN_F9R2 register *******************/
MartinJohnson 0:404f5a4f1385 4951 #define CAN_F9R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:404f5a4f1385 4952 #define CAN_F9R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:404f5a4f1385 4953 #define CAN_F9R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:404f5a4f1385 4954 #define CAN_F9R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:404f5a4f1385 4955 #define CAN_F9R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:404f5a4f1385 4956 #define CAN_F9R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:404f5a4f1385 4957 #define CAN_F9R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:404f5a4f1385 4958 #define CAN_F9R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:404f5a4f1385 4959 #define CAN_F9R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:404f5a4f1385 4960 #define CAN_F9R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:404f5a4f1385 4961 #define CAN_F9R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:404f5a4f1385 4962 #define CAN_F9R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:404f5a4f1385 4963 #define CAN_F9R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:404f5a4f1385 4964 #define CAN_F9R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:404f5a4f1385 4965 #define CAN_F9R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:404f5a4f1385 4966 #define CAN_F9R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:404f5a4f1385 4967 #define CAN_F9R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:404f5a4f1385 4968 #define CAN_F9R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:404f5a4f1385 4969 #define CAN_F9R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:404f5a4f1385 4970 #define CAN_F9R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:404f5a4f1385 4971 #define CAN_F9R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:404f5a4f1385 4972 #define CAN_F9R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:404f5a4f1385 4973 #define CAN_F9R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:404f5a4f1385 4974 #define CAN_F9R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:404f5a4f1385 4975 #define CAN_F9R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:404f5a4f1385 4976 #define CAN_F9R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:404f5a4f1385 4977 #define CAN_F9R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:404f5a4f1385 4978 #define CAN_F9R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:404f5a4f1385 4979 #define CAN_F9R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:404f5a4f1385 4980 #define CAN_F9R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:404f5a4f1385 4981 #define CAN_F9R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:404f5a4f1385 4982 #define CAN_F9R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:404f5a4f1385 4983
MartinJohnson 0:404f5a4f1385 4984 /******************* Bit definition for CAN_F10R2 register ******************/
MartinJohnson 0:404f5a4f1385 4985 #define CAN_F10R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:404f5a4f1385 4986 #define CAN_F10R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:404f5a4f1385 4987 #define CAN_F10R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:404f5a4f1385 4988 #define CAN_F10R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:404f5a4f1385 4989 #define CAN_F10R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:404f5a4f1385 4990 #define CAN_F10R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:404f5a4f1385 4991 #define CAN_F10R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:404f5a4f1385 4992 #define CAN_F10R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:404f5a4f1385 4993 #define CAN_F10R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:404f5a4f1385 4994 #define CAN_F10R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:404f5a4f1385 4995 #define CAN_F10R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:404f5a4f1385 4996 #define CAN_F10R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:404f5a4f1385 4997 #define CAN_F10R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:404f5a4f1385 4998 #define CAN_F10R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:404f5a4f1385 4999 #define CAN_F10R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:404f5a4f1385 5000 #define CAN_F10R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:404f5a4f1385 5001 #define CAN_F10R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:404f5a4f1385 5002 #define CAN_F10R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:404f5a4f1385 5003 #define CAN_F10R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:404f5a4f1385 5004 #define CAN_F10R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:404f5a4f1385 5005 #define CAN_F10R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:404f5a4f1385 5006 #define CAN_F10R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:404f5a4f1385 5007 #define CAN_F10R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:404f5a4f1385 5008 #define CAN_F10R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:404f5a4f1385 5009 #define CAN_F10R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:404f5a4f1385 5010 #define CAN_F10R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:404f5a4f1385 5011 #define CAN_F10R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:404f5a4f1385 5012 #define CAN_F10R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:404f5a4f1385 5013 #define CAN_F10R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:404f5a4f1385 5014 #define CAN_F10R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:404f5a4f1385 5015 #define CAN_F10R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:404f5a4f1385 5016 #define CAN_F10R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:404f5a4f1385 5017
MartinJohnson 0:404f5a4f1385 5018 /******************* Bit definition for CAN_F11R2 register ******************/
MartinJohnson 0:404f5a4f1385 5019 #define CAN_F11R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:404f5a4f1385 5020 #define CAN_F11R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:404f5a4f1385 5021 #define CAN_F11R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:404f5a4f1385 5022 #define CAN_F11R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:404f5a4f1385 5023 #define CAN_F11R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:404f5a4f1385 5024 #define CAN_F11R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:404f5a4f1385 5025 #define CAN_F11R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:404f5a4f1385 5026 #define CAN_F11R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:404f5a4f1385 5027 #define CAN_F11R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:404f5a4f1385 5028 #define CAN_F11R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:404f5a4f1385 5029 #define CAN_F11R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:404f5a4f1385 5030 #define CAN_F11R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:404f5a4f1385 5031 #define CAN_F11R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:404f5a4f1385 5032 #define CAN_F11R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:404f5a4f1385 5033 #define CAN_F11R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:404f5a4f1385 5034 #define CAN_F11R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:404f5a4f1385 5035 #define CAN_F11R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:404f5a4f1385 5036 #define CAN_F11R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:404f5a4f1385 5037 #define CAN_F11R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:404f5a4f1385 5038 #define CAN_F11R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:404f5a4f1385 5039 #define CAN_F11R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:404f5a4f1385 5040 #define CAN_F11R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:404f5a4f1385 5041 #define CAN_F11R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:404f5a4f1385 5042 #define CAN_F11R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:404f5a4f1385 5043 #define CAN_F11R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:404f5a4f1385 5044 #define CAN_F11R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:404f5a4f1385 5045 #define CAN_F11R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:404f5a4f1385 5046 #define CAN_F11R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:404f5a4f1385 5047 #define CAN_F11R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:404f5a4f1385 5048 #define CAN_F11R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:404f5a4f1385 5049 #define CAN_F11R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:404f5a4f1385 5050 #define CAN_F11R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:404f5a4f1385 5051
MartinJohnson 0:404f5a4f1385 5052 /******************* Bit definition for CAN_F12R2 register ******************/
MartinJohnson 0:404f5a4f1385 5053 #define CAN_F12R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:404f5a4f1385 5054 #define CAN_F12R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:404f5a4f1385 5055 #define CAN_F12R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:404f5a4f1385 5056 #define CAN_F12R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:404f5a4f1385 5057 #define CAN_F12R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:404f5a4f1385 5058 #define CAN_F12R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:404f5a4f1385 5059 #define CAN_F12R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:404f5a4f1385 5060 #define CAN_F12R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:404f5a4f1385 5061 #define CAN_F12R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:404f5a4f1385 5062 #define CAN_F12R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:404f5a4f1385 5063 #define CAN_F12R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:404f5a4f1385 5064 #define CAN_F12R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:404f5a4f1385 5065 #define CAN_F12R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:404f5a4f1385 5066 #define CAN_F12R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:404f5a4f1385 5067 #define CAN_F12R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:404f5a4f1385 5068 #define CAN_F12R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:404f5a4f1385 5069 #define CAN_F12R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:404f5a4f1385 5070 #define CAN_F12R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:404f5a4f1385 5071 #define CAN_F12R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:404f5a4f1385 5072 #define CAN_F12R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:404f5a4f1385 5073 #define CAN_F12R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:404f5a4f1385 5074 #define CAN_F12R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:404f5a4f1385 5075 #define CAN_F12R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:404f5a4f1385 5076 #define CAN_F12R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:404f5a4f1385 5077 #define CAN_F12R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:404f5a4f1385 5078 #define CAN_F12R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:404f5a4f1385 5079 #define CAN_F12R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:404f5a4f1385 5080 #define CAN_F12R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:404f5a4f1385 5081 #define CAN_F12R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:404f5a4f1385 5082 #define CAN_F12R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:404f5a4f1385 5083 #define CAN_F12R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:404f5a4f1385 5084 #define CAN_F12R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:404f5a4f1385 5085
MartinJohnson 0:404f5a4f1385 5086 /******************* Bit definition for CAN_F13R2 register ******************/
MartinJohnson 0:404f5a4f1385 5087 #define CAN_F13R2_FB0 ((uint32_t)0x00000001) /*!<Filter bit 0 */
MartinJohnson 0:404f5a4f1385 5088 #define CAN_F13R2_FB1 ((uint32_t)0x00000002) /*!<Filter bit 1 */
MartinJohnson 0:404f5a4f1385 5089 #define CAN_F13R2_FB2 ((uint32_t)0x00000004) /*!<Filter bit 2 */
MartinJohnson 0:404f5a4f1385 5090 #define CAN_F13R2_FB3 ((uint32_t)0x00000008) /*!<Filter bit 3 */
MartinJohnson 0:404f5a4f1385 5091 #define CAN_F13R2_FB4 ((uint32_t)0x00000010) /*!<Filter bit 4 */
MartinJohnson 0:404f5a4f1385 5092 #define CAN_F13R2_FB5 ((uint32_t)0x00000020) /*!<Filter bit 5 */
MartinJohnson 0:404f5a4f1385 5093 #define CAN_F13R2_FB6 ((uint32_t)0x00000040) /*!<Filter bit 6 */
MartinJohnson 0:404f5a4f1385 5094 #define CAN_F13R2_FB7 ((uint32_t)0x00000080) /*!<Filter bit 7 */
MartinJohnson 0:404f5a4f1385 5095 #define CAN_F13R2_FB8 ((uint32_t)0x00000100) /*!<Filter bit 8 */
MartinJohnson 0:404f5a4f1385 5096 #define CAN_F13R2_FB9 ((uint32_t)0x00000200) /*!<Filter bit 9 */
MartinJohnson 0:404f5a4f1385 5097 #define CAN_F13R2_FB10 ((uint32_t)0x00000400) /*!<Filter bit 10 */
MartinJohnson 0:404f5a4f1385 5098 #define CAN_F13R2_FB11 ((uint32_t)0x00000800) /*!<Filter bit 11 */
MartinJohnson 0:404f5a4f1385 5099 #define CAN_F13R2_FB12 ((uint32_t)0x00001000) /*!<Filter bit 12 */
MartinJohnson 0:404f5a4f1385 5100 #define CAN_F13R2_FB13 ((uint32_t)0x00002000) /*!<Filter bit 13 */
MartinJohnson 0:404f5a4f1385 5101 #define CAN_F13R2_FB14 ((uint32_t)0x00004000) /*!<Filter bit 14 */
MartinJohnson 0:404f5a4f1385 5102 #define CAN_F13R2_FB15 ((uint32_t)0x00008000) /*!<Filter bit 15 */
MartinJohnson 0:404f5a4f1385 5103 #define CAN_F13R2_FB16 ((uint32_t)0x00010000) /*!<Filter bit 16 */
MartinJohnson 0:404f5a4f1385 5104 #define CAN_F13R2_FB17 ((uint32_t)0x00020000) /*!<Filter bit 17 */
MartinJohnson 0:404f5a4f1385 5105 #define CAN_F13R2_FB18 ((uint32_t)0x00040000) /*!<Filter bit 18 */
MartinJohnson 0:404f5a4f1385 5106 #define CAN_F13R2_FB19 ((uint32_t)0x00080000) /*!<Filter bit 19 */
MartinJohnson 0:404f5a4f1385 5107 #define CAN_F13R2_FB20 ((uint32_t)0x00100000) /*!<Filter bit 20 */
MartinJohnson 0:404f5a4f1385 5108 #define CAN_F13R2_FB21 ((uint32_t)0x00200000) /*!<Filter bit 21 */
MartinJohnson 0:404f5a4f1385 5109 #define CAN_F13R2_FB22 ((uint32_t)0x00400000) /*!<Filter bit 22 */
MartinJohnson 0:404f5a4f1385 5110 #define CAN_F13R2_FB23 ((uint32_t)0x00800000) /*!<Filter bit 23 */
MartinJohnson 0:404f5a4f1385 5111 #define CAN_F13R2_FB24 ((uint32_t)0x01000000) /*!<Filter bit 24 */
MartinJohnson 0:404f5a4f1385 5112 #define CAN_F13R2_FB25 ((uint32_t)0x02000000) /*!<Filter bit 25 */
MartinJohnson 0:404f5a4f1385 5113 #define CAN_F13R2_FB26 ((uint32_t)0x04000000) /*!<Filter bit 26 */
MartinJohnson 0:404f5a4f1385 5114 #define CAN_F13R2_FB27 ((uint32_t)0x08000000) /*!<Filter bit 27 */
MartinJohnson 0:404f5a4f1385 5115 #define CAN_F13R2_FB28 ((uint32_t)0x10000000) /*!<Filter bit 28 */
MartinJohnson 0:404f5a4f1385 5116 #define CAN_F13R2_FB29 ((uint32_t)0x20000000) /*!<Filter bit 29 */
MartinJohnson 0:404f5a4f1385 5117 #define CAN_F13R2_FB30 ((uint32_t)0x40000000) /*!<Filter bit 30 */
MartinJohnson 0:404f5a4f1385 5118 #define CAN_F13R2_FB31 ((uint32_t)0x80000000) /*!<Filter bit 31 */
MartinJohnson 0:404f5a4f1385 5119
MartinJohnson 0:404f5a4f1385 5120 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 5121 /* */
MartinJohnson 0:404f5a4f1385 5122 /* CRC calculation unit (CRC) */
MartinJohnson 0:404f5a4f1385 5123 /* */
MartinJohnson 0:404f5a4f1385 5124 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 5125 /******************* Bit definition for CRC_DR register *********************/
MartinJohnson 0:404f5a4f1385 5126 #define CRC_DR_DR ((uint32_t)0xFFFFFFFF) /*!< Data register bits */
MartinJohnson 0:404f5a4f1385 5127
MartinJohnson 0:404f5a4f1385 5128 /******************* Bit definition for CRC_IDR register ********************/
MartinJohnson 0:404f5a4f1385 5129 #define CRC_IDR_IDR ((uint8_t)0xFF) /*!< General-purpose 8-bit data register bits */
MartinJohnson 0:404f5a4f1385 5130
MartinJohnson 0:404f5a4f1385 5131 /******************** Bit definition for CRC_CR register ********************/
MartinJohnson 0:404f5a4f1385 5132 #define CRC_CR_RESET ((uint32_t)0x00000001) /*!< RESET the CRC computation unit bit */
MartinJohnson 0:404f5a4f1385 5133 #define CRC_CR_POLSIZE ((uint32_t)0x00000018) /*!< Polynomial size bits */
MartinJohnson 0:404f5a4f1385 5134 #define CRC_CR_POLSIZE_0 ((uint32_t)0x00000008) /*!< Polynomial size bit 0 */
MartinJohnson 0:404f5a4f1385 5135 #define CRC_CR_POLSIZE_1 ((uint32_t)0x00000010) /*!< Polynomial size bit 1 */
MartinJohnson 0:404f5a4f1385 5136 #define CRC_CR_REV_IN ((uint32_t)0x00000060) /*!< REV_IN Reverse Input Data bits */
MartinJohnson 0:404f5a4f1385 5137 #define CRC_CR_REV_IN_0 ((uint32_t)0x00000020) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 5138 #define CRC_CR_REV_IN_1 ((uint32_t)0x00000040) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 5139 #define CRC_CR_REV_OUT ((uint32_t)0x00000080) /*!< REV_OUT Reverse Output Data bits */
MartinJohnson 0:404f5a4f1385 5140
MartinJohnson 0:404f5a4f1385 5141 /******************* Bit definition for CRC_INIT register *******************/
MartinJohnson 0:404f5a4f1385 5142 #define CRC_INIT_INIT ((uint32_t)0xFFFFFFFF) /*!< Initial CRC value bits */
MartinJohnson 0:404f5a4f1385 5143
MartinJohnson 0:404f5a4f1385 5144 /******************* Bit definition for CRC_POL register ********************/
MartinJohnson 0:404f5a4f1385 5145 #define CRC_POL_POL ((uint32_t)0xFFFFFFFF) /*!< Coefficients of the polynomial */
MartinJohnson 0:404f5a4f1385 5146 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 5147 /* */
MartinJohnson 0:404f5a4f1385 5148 /* Digital to Analog Converter (DAC) */
MartinJohnson 0:404f5a4f1385 5149 /* */
MartinJohnson 0:404f5a4f1385 5150 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 5151 /******************** Bit definition for DAC_CR register ********************/
MartinJohnson 0:404f5a4f1385 5152 #define DAC_CR_EN1 ((uint32_t)0x00000001) /*!< DAC channel1 enable */
MartinJohnson 0:404f5a4f1385 5153 #define DAC_CR_BOFF1 ((uint32_t)0x00000002) /*!< DAC channel1 output buffer disable */
MartinJohnson 0:404f5a4f1385 5154 #define DAC_CR_TEN1 ((uint32_t)0x00000004) /*!< DAC channel1 Trigger enable */
MartinJohnson 0:404f5a4f1385 5155
MartinJohnson 0:404f5a4f1385 5156 #define DAC_CR_TSEL1 ((uint32_t)0x00000038) /*!< TSEL1[2:0] (DAC channel1 Trigger selection) */
MartinJohnson 0:404f5a4f1385 5157 #define DAC_CR_TSEL1_0 ((uint32_t)0x00000008) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 5158 #define DAC_CR_TSEL1_1 ((uint32_t)0x00000010) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 5159 #define DAC_CR_TSEL1_2 ((uint32_t)0x00000020) /*!< Bit 2 */
MartinJohnson 0:404f5a4f1385 5160
MartinJohnson 0:404f5a4f1385 5161 #define DAC_CR_WAVE1 ((uint32_t)0x000000C0) /*!< WAVE1[1:0] (DAC channel1 noise/triangle wave generation enable) */
MartinJohnson 0:404f5a4f1385 5162 #define DAC_CR_WAVE1_0 ((uint32_t)0x00000040) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 5163 #define DAC_CR_WAVE1_1 ((uint32_t)0x00000080) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 5164
MartinJohnson 0:404f5a4f1385 5165 #define DAC_CR_MAMP1 ((uint32_t)0x00000F00) /*!< MAMP1[3:0] (DAC channel1 Mask/Amplitude selector) */
MartinJohnson 0:404f5a4f1385 5166 #define DAC_CR_MAMP1_0 ((uint32_t)0x00000100) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 5167 #define DAC_CR_MAMP1_1 ((uint32_t)0x00000200) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 5168 #define DAC_CR_MAMP1_2 ((uint32_t)0x00000400) /*!< Bit 2 */
MartinJohnson 0:404f5a4f1385 5169 #define DAC_CR_MAMP1_3 ((uint32_t)0x00000800) /*!< Bit 3 */
MartinJohnson 0:404f5a4f1385 5170
MartinJohnson 0:404f5a4f1385 5171 #define DAC_CR_DMAEN1 ((uint32_t)0x00001000) /*!< DAC channel1 DMA enable */
MartinJohnson 0:404f5a4f1385 5172 #define DAC_CR_DMAUDRIE1 ((uint32_t)0x00002000) /*!< DAC channel1 DMA underrun IT enable */
MartinJohnson 0:404f5a4f1385 5173 #define DAC_CR_EN2 ((uint32_t)0x00010000) /*!< DAC channel2 enable */
MartinJohnson 0:404f5a4f1385 5174 #define DAC_CR_BOFF2 ((uint32_t)0x00020000) /*!< DAC channel2 output buffer disable */
MartinJohnson 0:404f5a4f1385 5175 #define DAC_CR_TEN2 ((uint32_t)0x00040000) /*!< DAC channel2 Trigger enable */
MartinJohnson 0:404f5a4f1385 5176
MartinJohnson 0:404f5a4f1385 5177 #define DAC_CR_TSEL2 ((uint32_t)0x00380000) /*!< TSEL2[2:0] (DAC channel2 Trigger selection) */
MartinJohnson 0:404f5a4f1385 5178 #define DAC_CR_TSEL2_0 ((uint32_t)0x00080000) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 5179 #define DAC_CR_TSEL2_1 ((uint32_t)0x00100000) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 5180 #define DAC_CR_TSEL2_2 ((uint32_t)0x00200000) /*!< Bit 2 */
MartinJohnson 0:404f5a4f1385 5181
MartinJohnson 0:404f5a4f1385 5182 #define DAC_CR_WAVE2 ((uint32_t)0x00C00000) /*!< WAVE2[1:0] (DAC channel2 noise/triangle wave generation enable) */
MartinJohnson 0:404f5a4f1385 5183 #define DAC_CR_WAVE2_0 ((uint32_t)0x00400000) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 5184 #define DAC_CR_WAVE2_1 ((uint32_t)0x00800000) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 5185
MartinJohnson 0:404f5a4f1385 5186 #define DAC_CR_MAMP2 ((uint32_t)0x0F000000) /*!< MAMP2[3:0] (DAC channel2 Mask/Amplitude selector) */
MartinJohnson 0:404f5a4f1385 5187 #define DAC_CR_MAMP2_0 ((uint32_t)0x01000000) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 5188 #define DAC_CR_MAMP2_1 ((uint32_t)0x02000000) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 5189 #define DAC_CR_MAMP2_2 ((uint32_t)0x04000000) /*!< Bit 2 */
MartinJohnson 0:404f5a4f1385 5190 #define DAC_CR_MAMP2_3 ((uint32_t)0x08000000) /*!< Bit 3 */
MartinJohnson 0:404f5a4f1385 5191
MartinJohnson 0:404f5a4f1385 5192 #define DAC_CR_DMAEN2 ((uint32_t)0x10000000) /*!< DAC channel2 DMA enabled */
MartinJohnson 0:404f5a4f1385 5193 #define DAC_CR_DMAUDRIE2 ((uint32_t)0x20000000) /*!< DAC channel2 DMA underrun IT enable */
MartinJohnson 0:404f5a4f1385 5194
MartinJohnson 0:404f5a4f1385 5195 /***************** Bit definition for DAC_SWTRIGR register ******************/
MartinJohnson 0:404f5a4f1385 5196 #define DAC_SWTRIGR_SWTRIG1 ((uint8_t)0x01) /*!< DAC channel1 software trigger */
MartinJohnson 0:404f5a4f1385 5197 #define DAC_SWTRIGR_SWTRIG2 ((uint8_t)0x02) /*!< DAC channel2 software trigger */
MartinJohnson 0:404f5a4f1385 5198
MartinJohnson 0:404f5a4f1385 5199 /***************** Bit definition for DAC_DHR12R1 register ******************/
MartinJohnson 0:404f5a4f1385 5200 #define DAC_DHR12R1_DACC1DHR ((uint16_t)0x0FFF) /*!< DAC channel1 12-bit Right aligned data */
MartinJohnson 0:404f5a4f1385 5201
MartinJohnson 0:404f5a4f1385 5202 /***************** Bit definition for DAC_DHR12L1 register ******************/
MartinJohnson 0:404f5a4f1385 5203 #define DAC_DHR12L1_DACC1DHR ((uint16_t)0xFFF0) /*!< DAC channel1 12-bit Left aligned data */
MartinJohnson 0:404f5a4f1385 5204
MartinJohnson 0:404f5a4f1385 5205 /****************** Bit definition for DAC_DHR8R1 register ******************/
MartinJohnson 0:404f5a4f1385 5206 #define DAC_DHR8R1_DACC1DHR ((uint8_t)0xFF) /*!< DAC channel1 8-bit Right aligned data */
MartinJohnson 0:404f5a4f1385 5207
MartinJohnson 0:404f5a4f1385 5208 /***************** Bit definition for DAC_DHR12R2 register ******************/
MartinJohnson 0:404f5a4f1385 5209 #define DAC_DHR12R2_DACC2DHR ((uint16_t)0x0FFF) /*!< DAC channel2 12-bit Right aligned data */
MartinJohnson 0:404f5a4f1385 5210
MartinJohnson 0:404f5a4f1385 5211 /***************** Bit definition for DAC_DHR12L2 register ******************/
MartinJohnson 0:404f5a4f1385 5212 #define DAC_DHR12L2_DACC2DHR ((uint16_t)0xFFF0) /*!< DAC channel2 12-bit Left aligned data */
MartinJohnson 0:404f5a4f1385 5213
MartinJohnson 0:404f5a4f1385 5214 /****************** Bit definition for DAC_DHR8R2 register ******************/
MartinJohnson 0:404f5a4f1385 5215 #define DAC_DHR8R2_DACC2DHR ((uint8_t)0xFF) /*!< DAC channel2 8-bit Right aligned data */
MartinJohnson 0:404f5a4f1385 5216
MartinJohnson 0:404f5a4f1385 5217 /***************** Bit definition for DAC_DHR12RD register ******************/
MartinJohnson 0:404f5a4f1385 5218 #define DAC_DHR12RD_DACC1DHR ((uint32_t)0x00000FFF) /*!< DAC channel1 12-bit Right aligned data */
MartinJohnson 0:404f5a4f1385 5219 #define DAC_DHR12RD_DACC2DHR ((uint32_t)0x0FFF0000) /*!< DAC channel2 12-bit Right aligned data */
MartinJohnson 0:404f5a4f1385 5220
MartinJohnson 0:404f5a4f1385 5221 /***************** Bit definition for DAC_DHR12LD register ******************/
MartinJohnson 0:404f5a4f1385 5222 #define DAC_DHR12LD_DACC1DHR ((uint32_t)0x0000FFF0) /*!< DAC channel1 12-bit Left aligned data */
MartinJohnson 0:404f5a4f1385 5223 #define DAC_DHR12LD_DACC2DHR ((uint32_t)0xFFF00000) /*!< DAC channel2 12-bit Left aligned data */
MartinJohnson 0:404f5a4f1385 5224
MartinJohnson 0:404f5a4f1385 5225 /****************** Bit definition for DAC_DHR8RD register ******************/
MartinJohnson 0:404f5a4f1385 5226 #define DAC_DHR8RD_DACC1DHR ((uint16_t)0x00FF) /*!< DAC channel1 8-bit Right aligned data */
MartinJohnson 0:404f5a4f1385 5227 #define DAC_DHR8RD_DACC2DHR ((uint16_t)0xFF00) /*!< DAC channel2 8-bit Right aligned data */
MartinJohnson 0:404f5a4f1385 5228
MartinJohnson 0:404f5a4f1385 5229 /******************* Bit definition for DAC_DOR1 register *******************/
MartinJohnson 0:404f5a4f1385 5230 #define DAC_DOR1_DACC1DOR ((uint16_t)0x0FFF) /*!< DAC channel1 data output */
MartinJohnson 0:404f5a4f1385 5231
MartinJohnson 0:404f5a4f1385 5232 /******************* Bit definition for DAC_DOR2 register *******************/
MartinJohnson 0:404f5a4f1385 5233 #define DAC_DOR2_DACC2DOR ((uint16_t)0x0FFF) /*!< DAC channel2 data output */
MartinJohnson 0:404f5a4f1385 5234
MartinJohnson 0:404f5a4f1385 5235 /******************** Bit definition for DAC_SR register ********************/
MartinJohnson 0:404f5a4f1385 5236 #define DAC_SR_DMAUDR1 ((uint32_t)0x00002000) /*!< DAC channel1 DMA underrun flag */
MartinJohnson 0:404f5a4f1385 5237 #define DAC_SR_DMAUDR2 ((uint32_t)0x20000000) /*!< DAC channel2 DMA underrun flag */
MartinJohnson 0:404f5a4f1385 5238
MartinJohnson 0:404f5a4f1385 5239 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 5240 /* */
MartinJohnson 0:404f5a4f1385 5241 /* Debug MCU (DBGMCU) */
MartinJohnson 0:404f5a4f1385 5242 /* */
MartinJohnson 0:404f5a4f1385 5243 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 5244 /******************** Bit definition for DBGMCU_IDCODE register *************/
MartinJohnson 0:404f5a4f1385 5245 #define DBGMCU_IDCODE_DEV_ID ((uint32_t)0x00000FFF)
MartinJohnson 0:404f5a4f1385 5246 #define DBGMCU_IDCODE_REV_ID ((uint32_t)0xFFFF0000)
MartinJohnson 0:404f5a4f1385 5247
MartinJohnson 0:404f5a4f1385 5248 /******************** Bit definition for DBGMCU_CR register *****************/
MartinJohnson 0:404f5a4f1385 5249 #define DBGMCU_CR_DBG_SLEEP ((uint32_t)0x00000001)
MartinJohnson 0:404f5a4f1385 5250 #define DBGMCU_CR_DBG_STOP ((uint32_t)0x00000002)
MartinJohnson 0:404f5a4f1385 5251 #define DBGMCU_CR_DBG_STANDBY ((uint32_t)0x00000004)
MartinJohnson 0:404f5a4f1385 5252 #define DBGMCU_CR_TRACE_IOEN ((uint32_t)0x00000020)
MartinJohnson 0:404f5a4f1385 5253
MartinJohnson 0:404f5a4f1385 5254 #define DBGMCU_CR_TRACE_MODE ((uint32_t)0x000000C0)
MartinJohnson 0:404f5a4f1385 5255 #define DBGMCU_CR_TRACE_MODE_0 ((uint32_t)0x00000040)/*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5256 #define DBGMCU_CR_TRACE_MODE_1 ((uint32_t)0x00000080)/*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5257
MartinJohnson 0:404f5a4f1385 5258 /******************** Bit definition for DBGMCU_APB1_FZ register ************/
MartinJohnson 0:404f5a4f1385 5259 #define DBGMCU_APB1_FZ_DBG_TIM2_STOP ((uint32_t)0x00000001)
MartinJohnson 0:404f5a4f1385 5260 #define DBGMCU_APB1_FZ_DBG_TIM3_STOP ((uint32_t)0x00000002)
MartinJohnson 0:404f5a4f1385 5261 #define DBGMCU_APB1_FZ_DBG_TIM4_STOP ((uint32_t)0x00000004)
MartinJohnson 0:404f5a4f1385 5262 #define DBGMCU_APB1_FZ_DBG_TIM6_STOP ((uint32_t)0x00000010)
MartinJohnson 0:404f5a4f1385 5263 #define DBGMCU_APB1_FZ_DBG_TIM7_STOP ((uint32_t)0x00000020)
MartinJohnson 0:404f5a4f1385 5264 #define DBGMCU_APB1_FZ_DBG_RTC_STOP ((uint32_t)0x00000400)
MartinJohnson 0:404f5a4f1385 5265 #define DBGMCU_APB1_FZ_DBG_WWDG_STOP ((uint32_t)0x00000800)
MartinJohnson 0:404f5a4f1385 5266 #define DBGMCU_APB1_FZ_DBG_IWDG_STOP ((uint32_t)0x00001000)
MartinJohnson 0:404f5a4f1385 5267 #define DBGMCU_APB1_FZ_DBG_I2C1_SMBUS_TIMEOUT ((uint32_t)0x00200000)
MartinJohnson 0:404f5a4f1385 5268 #define DBGMCU_APB1_FZ_DBG_I2C2_SMBUS_TIMEOUT ((uint32_t)0x00400000)
MartinJohnson 0:404f5a4f1385 5269 #define DBGMCU_APB1_FZ_DBG_CAN1_STOP ((uint32_t)0x02000000)
MartinJohnson 0:404f5a4f1385 5270 #define DBGMCU_APB1_FZ_DBG_I2C3_SMBUS_TIMEOUT ((uint32_t)0x04000000)
MartinJohnson 0:404f5a4f1385 5271
MartinJohnson 0:404f5a4f1385 5272 /******************** Bit definition for DBGMCU_APB2_FZ register ************/
MartinJohnson 0:404f5a4f1385 5273 #define DBGMCU_APB2_FZ_DBG_TIM1_STOP ((uint32_t)0x00000001)
MartinJohnson 0:404f5a4f1385 5274 #define DBGMCU_APB2_FZ_DBG_TIM8_STOP ((uint32_t)0x00000002)
MartinJohnson 0:404f5a4f1385 5275 #define DBGMCU_APB2_FZ_DBG_TIM15_STOP ((uint32_t)0x00000004)
MartinJohnson 0:404f5a4f1385 5276 #define DBGMCU_APB2_FZ_DBG_TIM16_STOP ((uint32_t)0x00000008)
MartinJohnson 0:404f5a4f1385 5277 #define DBGMCU_APB2_FZ_DBG_TIM17_STOP ((uint32_t)0x00000010)
MartinJohnson 0:404f5a4f1385 5278 #define DBGMCU_APB2_FZ_DBG_TIM20_STOP ((uint32_t)0x00000020)
MartinJohnson 0:404f5a4f1385 5279
MartinJohnson 0:404f5a4f1385 5280 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 5281 /* */
MartinJohnson 0:404f5a4f1385 5282 /* DMA Controller (DMA) */
MartinJohnson 0:404f5a4f1385 5283 /* */
MartinJohnson 0:404f5a4f1385 5284 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 5285 /******************* Bit definition for DMA_ISR register ********************/
MartinJohnson 0:404f5a4f1385 5286 #define DMA_ISR_GIF1 ((uint32_t)0x00000001) /*!< Channel 1 Global interrupt flag */
MartinJohnson 0:404f5a4f1385 5287 #define DMA_ISR_TCIF1 ((uint32_t)0x00000002) /*!< Channel 1 Transfer Complete flag */
MartinJohnson 0:404f5a4f1385 5288 #define DMA_ISR_HTIF1 ((uint32_t)0x00000004) /*!< Channel 1 Half Transfer flag */
MartinJohnson 0:404f5a4f1385 5289 #define DMA_ISR_TEIF1 ((uint32_t)0x00000008) /*!< Channel 1 Transfer Error flag */
MartinJohnson 0:404f5a4f1385 5290 #define DMA_ISR_GIF2 ((uint32_t)0x00000010) /*!< Channel 2 Global interrupt flag */
MartinJohnson 0:404f5a4f1385 5291 #define DMA_ISR_TCIF2 ((uint32_t)0x00000020) /*!< Channel 2 Transfer Complete flag */
MartinJohnson 0:404f5a4f1385 5292 #define DMA_ISR_HTIF2 ((uint32_t)0x00000040) /*!< Channel 2 Half Transfer flag */
MartinJohnson 0:404f5a4f1385 5293 #define DMA_ISR_TEIF2 ((uint32_t)0x00000080) /*!< Channel 2 Transfer Error flag */
MartinJohnson 0:404f5a4f1385 5294 #define DMA_ISR_GIF3 ((uint32_t)0x00000100) /*!< Channel 3 Global interrupt flag */
MartinJohnson 0:404f5a4f1385 5295 #define DMA_ISR_TCIF3 ((uint32_t)0x00000200) /*!< Channel 3 Transfer Complete flag */
MartinJohnson 0:404f5a4f1385 5296 #define DMA_ISR_HTIF3 ((uint32_t)0x00000400) /*!< Channel 3 Half Transfer flag */
MartinJohnson 0:404f5a4f1385 5297 #define DMA_ISR_TEIF3 ((uint32_t)0x00000800) /*!< Channel 3 Transfer Error flag */
MartinJohnson 0:404f5a4f1385 5298 #define DMA_ISR_GIF4 ((uint32_t)0x00001000) /*!< Channel 4 Global interrupt flag */
MartinJohnson 0:404f5a4f1385 5299 #define DMA_ISR_TCIF4 ((uint32_t)0x00002000) /*!< Channel 4 Transfer Complete flag */
MartinJohnson 0:404f5a4f1385 5300 #define DMA_ISR_HTIF4 ((uint32_t)0x00004000) /*!< Channel 4 Half Transfer flag */
MartinJohnson 0:404f5a4f1385 5301 #define DMA_ISR_TEIF4 ((uint32_t)0x00008000) /*!< Channel 4 Transfer Error flag */
MartinJohnson 0:404f5a4f1385 5302 #define DMA_ISR_GIF5 ((uint32_t)0x00010000) /*!< Channel 5 Global interrupt flag */
MartinJohnson 0:404f5a4f1385 5303 #define DMA_ISR_TCIF5 ((uint32_t)0x00020000) /*!< Channel 5 Transfer Complete flag */
MartinJohnson 0:404f5a4f1385 5304 #define DMA_ISR_HTIF5 ((uint32_t)0x00040000) /*!< Channel 5 Half Transfer flag */
MartinJohnson 0:404f5a4f1385 5305 #define DMA_ISR_TEIF5 ((uint32_t)0x00080000) /*!< Channel 5 Transfer Error flag */
MartinJohnson 0:404f5a4f1385 5306 #define DMA_ISR_GIF6 ((uint32_t)0x00100000) /*!< Channel 6 Global interrupt flag */
MartinJohnson 0:404f5a4f1385 5307 #define DMA_ISR_TCIF6 ((uint32_t)0x00200000) /*!< Channel 6 Transfer Complete flag */
MartinJohnson 0:404f5a4f1385 5308 #define DMA_ISR_HTIF6 ((uint32_t)0x00400000) /*!< Channel 6 Half Transfer flag */
MartinJohnson 0:404f5a4f1385 5309 #define DMA_ISR_TEIF6 ((uint32_t)0x00800000) /*!< Channel 6 Transfer Error flag */
MartinJohnson 0:404f5a4f1385 5310 #define DMA_ISR_GIF7 ((uint32_t)0x01000000) /*!< Channel 7 Global interrupt flag */
MartinJohnson 0:404f5a4f1385 5311 #define DMA_ISR_TCIF7 ((uint32_t)0x02000000) /*!< Channel 7 Transfer Complete flag */
MartinJohnson 0:404f5a4f1385 5312 #define DMA_ISR_HTIF7 ((uint32_t)0x04000000) /*!< Channel 7 Half Transfer flag */
MartinJohnson 0:404f5a4f1385 5313 #define DMA_ISR_TEIF7 ((uint32_t)0x08000000) /*!< Channel 7 Transfer Error flag */
MartinJohnson 0:404f5a4f1385 5314
MartinJohnson 0:404f5a4f1385 5315 /******************* Bit definition for DMA_IFCR register *******************/
MartinJohnson 0:404f5a4f1385 5316 #define DMA_IFCR_CGIF1 ((uint32_t)0x00000001) /*!< Channel 1 Global interrupt clear */
MartinJohnson 0:404f5a4f1385 5317 #define DMA_IFCR_CTCIF1 ((uint32_t)0x00000002) /*!< Channel 1 Transfer Complete clear */
MartinJohnson 0:404f5a4f1385 5318 #define DMA_IFCR_CHTIF1 ((uint32_t)0x00000004) /*!< Channel 1 Half Transfer clear */
MartinJohnson 0:404f5a4f1385 5319 #define DMA_IFCR_CTEIF1 ((uint32_t)0x00000008) /*!< Channel 1 Transfer Error clear */
MartinJohnson 0:404f5a4f1385 5320 #define DMA_IFCR_CGIF2 ((uint32_t)0x00000010) /*!< Channel 2 Global interrupt clear */
MartinJohnson 0:404f5a4f1385 5321 #define DMA_IFCR_CTCIF2 ((uint32_t)0x00000020) /*!< Channel 2 Transfer Complete clear */
MartinJohnson 0:404f5a4f1385 5322 #define DMA_IFCR_CHTIF2 ((uint32_t)0x00000040) /*!< Channel 2 Half Transfer clear */
MartinJohnson 0:404f5a4f1385 5323 #define DMA_IFCR_CTEIF2 ((uint32_t)0x00000080) /*!< Channel 2 Transfer Error clear */
MartinJohnson 0:404f5a4f1385 5324 #define DMA_IFCR_CGIF3 ((uint32_t)0x00000100) /*!< Channel 3 Global interrupt clear */
MartinJohnson 0:404f5a4f1385 5325 #define DMA_IFCR_CTCIF3 ((uint32_t)0x00000200) /*!< Channel 3 Transfer Complete clear */
MartinJohnson 0:404f5a4f1385 5326 #define DMA_IFCR_CHTIF3 ((uint32_t)0x00000400) /*!< Channel 3 Half Transfer clear */
MartinJohnson 0:404f5a4f1385 5327 #define DMA_IFCR_CTEIF3 ((uint32_t)0x00000800) /*!< Channel 3 Transfer Error clear */
MartinJohnson 0:404f5a4f1385 5328 #define DMA_IFCR_CGIF4 ((uint32_t)0x00001000) /*!< Channel 4 Global interrupt clear */
MartinJohnson 0:404f5a4f1385 5329 #define DMA_IFCR_CTCIF4 ((uint32_t)0x00002000) /*!< Channel 4 Transfer Complete clear */
MartinJohnson 0:404f5a4f1385 5330 #define DMA_IFCR_CHTIF4 ((uint32_t)0x00004000) /*!< Channel 4 Half Transfer clear */
MartinJohnson 0:404f5a4f1385 5331 #define DMA_IFCR_CTEIF4 ((uint32_t)0x00008000) /*!< Channel 4 Transfer Error clear */
MartinJohnson 0:404f5a4f1385 5332 #define DMA_IFCR_CGIF5 ((uint32_t)0x00010000) /*!< Channel 5 Global interrupt clear */
MartinJohnson 0:404f5a4f1385 5333 #define DMA_IFCR_CTCIF5 ((uint32_t)0x00020000) /*!< Channel 5 Transfer Complete clear */
MartinJohnson 0:404f5a4f1385 5334 #define DMA_IFCR_CHTIF5 ((uint32_t)0x00040000) /*!< Channel 5 Half Transfer clear */
MartinJohnson 0:404f5a4f1385 5335 #define DMA_IFCR_CTEIF5 ((uint32_t)0x00080000) /*!< Channel 5 Transfer Error clear */
MartinJohnson 0:404f5a4f1385 5336 #define DMA_IFCR_CGIF6 ((uint32_t)0x00100000) /*!< Channel 6 Global interrupt clear */
MartinJohnson 0:404f5a4f1385 5337 #define DMA_IFCR_CTCIF6 ((uint32_t)0x00200000) /*!< Channel 6 Transfer Complete clear */
MartinJohnson 0:404f5a4f1385 5338 #define DMA_IFCR_CHTIF6 ((uint32_t)0x00400000) /*!< Channel 6 Half Transfer clear */
MartinJohnson 0:404f5a4f1385 5339 #define DMA_IFCR_CTEIF6 ((uint32_t)0x00800000) /*!< Channel 6 Transfer Error clear */
MartinJohnson 0:404f5a4f1385 5340 #define DMA_IFCR_CGIF7 ((uint32_t)0x01000000) /*!< Channel 7 Global interrupt clear */
MartinJohnson 0:404f5a4f1385 5341 #define DMA_IFCR_CTCIF7 ((uint32_t)0x02000000) /*!< Channel 7 Transfer Complete clear */
MartinJohnson 0:404f5a4f1385 5342 #define DMA_IFCR_CHTIF7 ((uint32_t)0x04000000) /*!< Channel 7 Half Transfer clear */
MartinJohnson 0:404f5a4f1385 5343 #define DMA_IFCR_CTEIF7 ((uint32_t)0x08000000) /*!< Channel 7 Transfer Error clear */
MartinJohnson 0:404f5a4f1385 5344
MartinJohnson 0:404f5a4f1385 5345 /******************* Bit definition for DMA_CCR register ********************/
MartinJohnson 0:404f5a4f1385 5346 #define DMA_CCR_EN ((uint32_t)0x00000001) /*!< Channel enable */
MartinJohnson 0:404f5a4f1385 5347 #define DMA_CCR_TCIE ((uint32_t)0x00000002) /*!< Transfer complete interrupt enable */
MartinJohnson 0:404f5a4f1385 5348 #define DMA_CCR_HTIE ((uint32_t)0x00000004) /*!< Half Transfer interrupt enable */
MartinJohnson 0:404f5a4f1385 5349 #define DMA_CCR_TEIE ((uint32_t)0x00000008) /*!< Transfer error interrupt enable */
MartinJohnson 0:404f5a4f1385 5350 #define DMA_CCR_DIR ((uint32_t)0x00000010) /*!< Data transfer direction */
MartinJohnson 0:404f5a4f1385 5351 #define DMA_CCR_CIRC ((uint32_t)0x00000020) /*!< Circular mode */
MartinJohnson 0:404f5a4f1385 5352 #define DMA_CCR_PINC ((uint32_t)0x00000040) /*!< Peripheral increment mode */
MartinJohnson 0:404f5a4f1385 5353 #define DMA_CCR_MINC ((uint32_t)0x00000080) /*!< Memory increment mode */
MartinJohnson 0:404f5a4f1385 5354
MartinJohnson 0:404f5a4f1385 5355 #define DMA_CCR_PSIZE ((uint32_t)0x00000300) /*!< PSIZE[1:0] bits (Peripheral size) */
MartinJohnson 0:404f5a4f1385 5356 #define DMA_CCR_PSIZE_0 ((uint32_t)0x00000100) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 5357 #define DMA_CCR_PSIZE_1 ((uint32_t)0x00000200) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 5358
MartinJohnson 0:404f5a4f1385 5359 #define DMA_CCR_MSIZE ((uint32_t)0x00000C00) /*!< MSIZE[1:0] bits (Memory size) */
MartinJohnson 0:404f5a4f1385 5360 #define DMA_CCR_MSIZE_0 ((uint32_t)0x00000400) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 5361 #define DMA_CCR_MSIZE_1 ((uint32_t)0x00000800) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 5362
MartinJohnson 0:404f5a4f1385 5363 #define DMA_CCR_PL ((uint32_t)0x00003000) /*!< PL[1:0] bits(Channel Priority level)*/
MartinJohnson 0:404f5a4f1385 5364 #define DMA_CCR_PL_0 ((uint32_t)0x00001000) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 5365 #define DMA_CCR_PL_1 ((uint32_t)0x00002000) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 5366
MartinJohnson 0:404f5a4f1385 5367 #define DMA_CCR_MEM2MEM ((uint32_t)0x00004000) /*!< Memory to memory mode */
MartinJohnson 0:404f5a4f1385 5368
MartinJohnson 0:404f5a4f1385 5369 /****************** Bit definition for DMA_CNDTR register *******************/
MartinJohnson 0:404f5a4f1385 5370 #define DMA_CNDTR_NDT ((uint32_t)0x0000FFFF) /*!< Number of data to Transfer */
MartinJohnson 0:404f5a4f1385 5371
MartinJohnson 0:404f5a4f1385 5372 /****************** Bit definition for DMA_CPAR register ********************/
MartinJohnson 0:404f5a4f1385 5373 #define DMA_CPAR_PA ((uint32_t)0xFFFFFFFF) /*!< Peripheral Address */
MartinJohnson 0:404f5a4f1385 5374
MartinJohnson 0:404f5a4f1385 5375 /****************** Bit definition for DMA_CMAR register ********************/
MartinJohnson 0:404f5a4f1385 5376 #define DMA_CMAR_MA ((uint32_t)0xFFFFFFFF) /*!< Memory Address */
MartinJohnson 0:404f5a4f1385 5377
MartinJohnson 0:404f5a4f1385 5378 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 5379 /* */
MartinJohnson 0:404f5a4f1385 5380 /* External Interrupt/Event Controller (EXTI) */
MartinJohnson 0:404f5a4f1385 5381 /* */
MartinJohnson 0:404f5a4f1385 5382 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 5383 /******************* Bit definition for EXTI_IMR register *******************/
MartinJohnson 0:404f5a4f1385 5384 #define EXTI_IMR_MR0 ((uint32_t)0x00000001) /*!< Interrupt Mask on line 0 */
MartinJohnson 0:404f5a4f1385 5385 #define EXTI_IMR_MR1 ((uint32_t)0x00000002) /*!< Interrupt Mask on line 1 */
MartinJohnson 0:404f5a4f1385 5386 #define EXTI_IMR_MR2 ((uint32_t)0x00000004) /*!< Interrupt Mask on line 2 */
MartinJohnson 0:404f5a4f1385 5387 #define EXTI_IMR_MR3 ((uint32_t)0x00000008) /*!< Interrupt Mask on line 3 */
MartinJohnson 0:404f5a4f1385 5388 #define EXTI_IMR_MR4 ((uint32_t)0x00000010) /*!< Interrupt Mask on line 4 */
MartinJohnson 0:404f5a4f1385 5389 #define EXTI_IMR_MR5 ((uint32_t)0x00000020) /*!< Interrupt Mask on line 5 */
MartinJohnson 0:404f5a4f1385 5390 #define EXTI_IMR_MR6 ((uint32_t)0x00000040) /*!< Interrupt Mask on line 6 */
MartinJohnson 0:404f5a4f1385 5391 #define EXTI_IMR_MR7 ((uint32_t)0x00000080) /*!< Interrupt Mask on line 7 */
MartinJohnson 0:404f5a4f1385 5392 #define EXTI_IMR_MR8 ((uint32_t)0x00000100) /*!< Interrupt Mask on line 8 */
MartinJohnson 0:404f5a4f1385 5393 #define EXTI_IMR_MR9 ((uint32_t)0x00000200) /*!< Interrupt Mask on line 9 */
MartinJohnson 0:404f5a4f1385 5394 #define EXTI_IMR_MR10 ((uint32_t)0x00000400) /*!< Interrupt Mask on line 10 */
MartinJohnson 0:404f5a4f1385 5395 #define EXTI_IMR_MR11 ((uint32_t)0x00000800) /*!< Interrupt Mask on line 11 */
MartinJohnson 0:404f5a4f1385 5396 #define EXTI_IMR_MR12 ((uint32_t)0x00001000) /*!< Interrupt Mask on line 12 */
MartinJohnson 0:404f5a4f1385 5397 #define EXTI_IMR_MR13 ((uint32_t)0x00002000) /*!< Interrupt Mask on line 13 */
MartinJohnson 0:404f5a4f1385 5398 #define EXTI_IMR_MR14 ((uint32_t)0x00004000) /*!< Interrupt Mask on line 14 */
MartinJohnson 0:404f5a4f1385 5399 #define EXTI_IMR_MR15 ((uint32_t)0x00008000) /*!< Interrupt Mask on line 15 */
MartinJohnson 0:404f5a4f1385 5400 #define EXTI_IMR_MR16 ((uint32_t)0x00010000) /*!< Interrupt Mask on line 16 */
MartinJohnson 0:404f5a4f1385 5401 #define EXTI_IMR_MR17 ((uint32_t)0x00020000) /*!< Interrupt Mask on line 17 */
MartinJohnson 0:404f5a4f1385 5402 #define EXTI_IMR_MR18 ((uint32_t)0x00040000) /*!< Interrupt Mask on line 18 */
MartinJohnson 0:404f5a4f1385 5403 #define EXTI_IMR_MR19 ((uint32_t)0x00080000) /*!< Interrupt Mask on line 19 */
MartinJohnson 0:404f5a4f1385 5404 #define EXTI_IMR_MR20 ((uint32_t)0x00100000) /*!< Interrupt Mask on line 20 */
MartinJohnson 0:404f5a4f1385 5405 #define EXTI_IMR_MR21 ((uint32_t)0x00200000) /*!< Interrupt Mask on line 21 */
MartinJohnson 0:404f5a4f1385 5406 #define EXTI_IMR_MR22 ((uint32_t)0x00400000) /*!< Interrupt Mask on line 22 */
MartinJohnson 0:404f5a4f1385 5407 #define EXTI_IMR_MR23 ((uint32_t)0x00800000) /*!< Interrupt Mask on line 23 */
MartinJohnson 0:404f5a4f1385 5408 #define EXTI_IMR_MR24 ((uint32_t)0x01000000) /*!< Interrupt Mask on line 24 */
MartinJohnson 0:404f5a4f1385 5409 #define EXTI_IMR_MR25 ((uint32_t)0x02000000) /*!< Interrupt Mask on line 25 */
MartinJohnson 0:404f5a4f1385 5410 #define EXTI_IMR_MR26 ((uint32_t)0x04000000) /*!< Interrupt Mask on line 26 */
MartinJohnson 0:404f5a4f1385 5411 #define EXTI_IMR_MR27 ((uint32_t)0x08000000) /*!< Interrupt Mask on line 27 */
MartinJohnson 0:404f5a4f1385 5412 #define EXTI_IMR_MR28 ((uint32_t)0x10000000) /*!< Interrupt Mask on line 28 */
MartinJohnson 0:404f5a4f1385 5413 #define EXTI_IMR_MR29 ((uint32_t)0x20000000) /*!< Interrupt Mask on line 29 */
MartinJohnson 0:404f5a4f1385 5414 #define EXTI_IMR_MR30 ((uint32_t)0x40000000) /*!< Interrupt Mask on line 30 */
MartinJohnson 0:404f5a4f1385 5415 #define EXTI_IMR_MR31 ((uint32_t)0x80000000) /*!< Interrupt Mask on line 31 */
MartinJohnson 0:404f5a4f1385 5416 /******************* Bit definition for EXTI_EMR register *******************/
MartinJohnson 0:404f5a4f1385 5417 #define EXTI_EMR_MR0 ((uint32_t)0x00000001) /*!< Event Mask on line 0 */
MartinJohnson 0:404f5a4f1385 5418 #define EXTI_EMR_MR1 ((uint32_t)0x00000002) /*!< Event Mask on line 1 */
MartinJohnson 0:404f5a4f1385 5419 #define EXTI_EMR_MR2 ((uint32_t)0x00000004) /*!< Event Mask on line 2 */
MartinJohnson 0:404f5a4f1385 5420 #define EXTI_EMR_MR3 ((uint32_t)0x00000008) /*!< Event Mask on line 3 */
MartinJohnson 0:404f5a4f1385 5421 #define EXTI_EMR_MR4 ((uint32_t)0x00000010) /*!< Event Mask on line 4 */
MartinJohnson 0:404f5a4f1385 5422 #define EXTI_EMR_MR5 ((uint32_t)0x00000020) /*!< Event Mask on line 5 */
MartinJohnson 0:404f5a4f1385 5423 #define EXTI_EMR_MR6 ((uint32_t)0x00000040) /*!< Event Mask on line 6 */
MartinJohnson 0:404f5a4f1385 5424 #define EXTI_EMR_MR7 ((uint32_t)0x00000080) /*!< Event Mask on line 7 */
MartinJohnson 0:404f5a4f1385 5425 #define EXTI_EMR_MR8 ((uint32_t)0x00000100) /*!< Event Mask on line 8 */
MartinJohnson 0:404f5a4f1385 5426 #define EXTI_EMR_MR9 ((uint32_t)0x00000200) /*!< Event Mask on line 9 */
MartinJohnson 0:404f5a4f1385 5427 #define EXTI_EMR_MR10 ((uint32_t)0x00000400) /*!< Event Mask on line 10 */
MartinJohnson 0:404f5a4f1385 5428 #define EXTI_EMR_MR11 ((uint32_t)0x00000800) /*!< Event Mask on line 11 */
MartinJohnson 0:404f5a4f1385 5429 #define EXTI_EMR_MR12 ((uint32_t)0x00001000) /*!< Event Mask on line 12 */
MartinJohnson 0:404f5a4f1385 5430 #define EXTI_EMR_MR13 ((uint32_t)0x00002000) /*!< Event Mask on line 13 */
MartinJohnson 0:404f5a4f1385 5431 #define EXTI_EMR_MR14 ((uint32_t)0x00004000) /*!< Event Mask on line 14 */
MartinJohnson 0:404f5a4f1385 5432 #define EXTI_EMR_MR15 ((uint32_t)0x00008000) /*!< Event Mask on line 15 */
MartinJohnson 0:404f5a4f1385 5433 #define EXTI_EMR_MR16 ((uint32_t)0x00010000) /*!< Event Mask on line 16 */
MartinJohnson 0:404f5a4f1385 5434 #define EXTI_EMR_MR17 ((uint32_t)0x00020000) /*!< Event Mask on line 17 */
MartinJohnson 0:404f5a4f1385 5435 #define EXTI_EMR_MR18 ((uint32_t)0x00040000) /*!< Event Mask on line 18 */
MartinJohnson 0:404f5a4f1385 5436 #define EXTI_EMR_MR19 ((uint32_t)0x00080000) /*!< Event Mask on line 19 */
MartinJohnson 0:404f5a4f1385 5437 #define EXTI_EMR_MR20 ((uint32_t)0x00100000) /*!< Event Mask on line 20 */
MartinJohnson 0:404f5a4f1385 5438 #define EXTI_EMR_MR21 ((uint32_t)0x00200000) /*!< Event Mask on line 21 */
MartinJohnson 0:404f5a4f1385 5439 #define EXTI_EMR_MR22 ((uint32_t)0x00400000) /*!< Event Mask on line 22 */
MartinJohnson 0:404f5a4f1385 5440 #define EXTI_EMR_MR23 ((uint32_t)0x00800000) /*!< Event Mask on line 23 */
MartinJohnson 0:404f5a4f1385 5441 #define EXTI_EMR_MR24 ((uint32_t)0x01000000) /*!< Event Mask on line 24 */
MartinJohnson 0:404f5a4f1385 5442 #define EXTI_EMR_MR25 ((uint32_t)0x02000000) /*!< Event Mask on line 25 */
MartinJohnson 0:404f5a4f1385 5443 #define EXTI_EMR_MR26 ((uint32_t)0x04000000) /*!< Event Mask on line 26 */
MartinJohnson 0:404f5a4f1385 5444 #define EXTI_EMR_MR27 ((uint32_t)0x08000000) /*!< Event Mask on line 27 */
MartinJohnson 0:404f5a4f1385 5445 #define EXTI_EMR_MR28 ((uint32_t)0x10000000) /*!< Event Mask on line 28 */
MartinJohnson 0:404f5a4f1385 5446 #define EXTI_EMR_MR29 ((uint32_t)0x20000000) /*!< Event Mask on line 29 */
MartinJohnson 0:404f5a4f1385 5447 #define EXTI_EMR_MR30 ((uint32_t)0x40000000) /*!< Event Mask on line 30 */
MartinJohnson 0:404f5a4f1385 5448 #define EXTI_EMR_MR31 ((uint32_t)0x80000000) /*!< Event Mask on line 31 */
MartinJohnson 0:404f5a4f1385 5449 /****************** Bit definition for EXTI_RTSR register *******************/
MartinJohnson 0:404f5a4f1385 5450 #define EXTI_RTSR_TR0 ((uint32_t)0x00000001) /*!< Rising trigger event configuration bit of line 0 */
MartinJohnson 0:404f5a4f1385 5451 #define EXTI_RTSR_TR1 ((uint32_t)0x00000002) /*!< Rising trigger event configuration bit of line 1 */
MartinJohnson 0:404f5a4f1385 5452 #define EXTI_RTSR_TR2 ((uint32_t)0x00000004) /*!< Rising trigger event configuration bit of line 2 */
MartinJohnson 0:404f5a4f1385 5453 #define EXTI_RTSR_TR3 ((uint32_t)0x00000008) /*!< Rising trigger event configuration bit of line 3 */
MartinJohnson 0:404f5a4f1385 5454 #define EXTI_RTSR_TR4 ((uint32_t)0x00000010) /*!< Rising trigger event configuration bit of line 4 */
MartinJohnson 0:404f5a4f1385 5455 #define EXTI_RTSR_TR5 ((uint32_t)0x00000020) /*!< Rising trigger event configuration bit of line 5 */
MartinJohnson 0:404f5a4f1385 5456 #define EXTI_RTSR_TR6 ((uint32_t)0x00000040) /*!< Rising trigger event configuration bit of line 6 */
MartinJohnson 0:404f5a4f1385 5457 #define EXTI_RTSR_TR7 ((uint32_t)0x00000080) /*!< Rising trigger event configuration bit of line 7 */
MartinJohnson 0:404f5a4f1385 5458 #define EXTI_RTSR_TR8 ((uint32_t)0x00000100) /*!< Rising trigger event configuration bit of line 8 */
MartinJohnson 0:404f5a4f1385 5459 #define EXTI_RTSR_TR9 ((uint32_t)0x00000200) /*!< Rising trigger event configuration bit of line 9 */
MartinJohnson 0:404f5a4f1385 5460 #define EXTI_RTSR_TR10 ((uint32_t)0x00000400) /*!< Rising trigger event configuration bit of line 10 */
MartinJohnson 0:404f5a4f1385 5461 #define EXTI_RTSR_TR11 ((uint32_t)0x00000800) /*!< Rising trigger event configuration bit of line 11 */
MartinJohnson 0:404f5a4f1385 5462 #define EXTI_RTSR_TR12 ((uint32_t)0x00001000) /*!< Rising trigger event configuration bit of line 12 */
MartinJohnson 0:404f5a4f1385 5463 #define EXTI_RTSR_TR13 ((uint32_t)0x00002000) /*!< Rising trigger event configuration bit of line 13 */
MartinJohnson 0:404f5a4f1385 5464 #define EXTI_RTSR_TR14 ((uint32_t)0x00004000) /*!< Rising trigger event configuration bit of line 14 */
MartinJohnson 0:404f5a4f1385 5465 #define EXTI_RTSR_TR15 ((uint32_t)0x00008000) /*!< Rising trigger event configuration bit of line 15 */
MartinJohnson 0:404f5a4f1385 5466 #define EXTI_RTSR_TR16 ((uint32_t)0x00010000) /*!< Rising trigger event configuration bit of line 16 */
MartinJohnson 0:404f5a4f1385 5467 #define EXTI_RTSR_TR17 ((uint32_t)0x00020000) /*!< Rising trigger event configuration bit of line 17 */
MartinJohnson 0:404f5a4f1385 5468 #define EXTI_RTSR_TR18 ((uint32_t)0x00040000) /*!< Rising trigger event configuration bit of line 18 */
MartinJohnson 0:404f5a4f1385 5469 #define EXTI_RTSR_TR19 ((uint32_t)0x00080000) /*!< Rising trigger event configuration bit of line 19 */
MartinJohnson 0:404f5a4f1385 5470 #define EXTI_RTSR_TR20 ((uint32_t)0x00100000) /*!< Rising trigger event configuration bit of line 20 */
MartinJohnson 0:404f5a4f1385 5471 #define EXTI_RTSR_TR21 ((uint32_t)0x00200000) /*!< Rising trigger event configuration bit of line 21 */
MartinJohnson 0:404f5a4f1385 5472 #define EXTI_RTSR_TR22 ((uint32_t)0x00400000) /*!< Rising trigger event configuration bit of line 22 */
MartinJohnson 0:404f5a4f1385 5473 #define EXTI_RTSR_TR23 ((uint32_t)0x00800000) /*!< Rising trigger event configuration bit of line 23 */
MartinJohnson 0:404f5a4f1385 5474 #define EXTI_RTSR_TR24 ((uint32_t)0x01000000) /*!< Rising trigger event configuration bit of line 24 */
MartinJohnson 0:404f5a4f1385 5475 #define EXTI_RTSR_TR25 ((uint32_t)0x02000000) /*!< Rising trigger event configuration bit of line 25 */
MartinJohnson 0:404f5a4f1385 5476 #define EXTI_RTSR_TR26 ((uint32_t)0x04000000) /*!< Rising trigger event configuration bit of line 26 */
MartinJohnson 0:404f5a4f1385 5477 #define EXTI_RTSR_TR27 ((uint32_t)0x08000000) /*!< Rising trigger event configuration bit of line 27 */
MartinJohnson 0:404f5a4f1385 5478 #define EXTI_RTSR_TR28 ((uint32_t)0x10000000) /*!< Rising trigger event configuration bit of line 28 */
MartinJohnson 0:404f5a4f1385 5479 #define EXTI_RTSR_TR29 ((uint32_t)0x20000000) /*!< Rising trigger event configuration bit of line 29 */
MartinJohnson 0:404f5a4f1385 5480 #define EXTI_RTSR_TR30 ((uint32_t)0x40000000) /*!< Rising trigger event configuration bit of line 30 */
MartinJohnson 0:404f5a4f1385 5481 #define EXTI_RTSR_TR31 ((uint32_t)0x80000000) /*!< Rising trigger event configuration bit of line 31 */
MartinJohnson 0:404f5a4f1385 5482 /****************** Bit definition for EXTI_FTSR register *******************/
MartinJohnson 0:404f5a4f1385 5483 #define EXTI_FTSR_TR0 ((uint32_t)0x00000001) /*!< Falling trigger event configuration bit of line 0 */
MartinJohnson 0:404f5a4f1385 5484 #define EXTI_FTSR_TR1 ((uint32_t)0x00000002) /*!< Falling trigger event configuration bit of line 1 */
MartinJohnson 0:404f5a4f1385 5485 #define EXTI_FTSR_TR2 ((uint32_t)0x00000004) /*!< Falling trigger event configuration bit of line 2 */
MartinJohnson 0:404f5a4f1385 5486 #define EXTI_FTSR_TR3 ((uint32_t)0x00000008) /*!< Falling trigger event configuration bit of line 3 */
MartinJohnson 0:404f5a4f1385 5487 #define EXTI_FTSR_TR4 ((uint32_t)0x00000010) /*!< Falling trigger event configuration bit of line 4 */
MartinJohnson 0:404f5a4f1385 5488 #define EXTI_FTSR_TR5 ((uint32_t)0x00000020) /*!< Falling trigger event configuration bit of line 5 */
MartinJohnson 0:404f5a4f1385 5489 #define EXTI_FTSR_TR6 ((uint32_t)0x00000040) /*!< Falling trigger event configuration bit of line 6 */
MartinJohnson 0:404f5a4f1385 5490 #define EXTI_FTSR_TR7 ((uint32_t)0x00000080) /*!< Falling trigger event configuration bit of line 7 */
MartinJohnson 0:404f5a4f1385 5491 #define EXTI_FTSR_TR8 ((uint32_t)0x00000100) /*!< Falling trigger event configuration bit of line 8 */
MartinJohnson 0:404f5a4f1385 5492 #define EXTI_FTSR_TR9 ((uint32_t)0x00000200) /*!< Falling trigger event configuration bit of line 9 */
MartinJohnson 0:404f5a4f1385 5493 #define EXTI_FTSR_TR10 ((uint32_t)0x00000400) /*!< Falling trigger event configuration bit of line 10 */
MartinJohnson 0:404f5a4f1385 5494 #define EXTI_FTSR_TR11 ((uint32_t)0x00000800) /*!< Falling trigger event configuration bit of line 11 */
MartinJohnson 0:404f5a4f1385 5495 #define EXTI_FTSR_TR12 ((uint32_t)0x00001000) /*!< Falling trigger event configuration bit of line 12 */
MartinJohnson 0:404f5a4f1385 5496 #define EXTI_FTSR_TR13 ((uint32_t)0x00002000) /*!< Falling trigger event configuration bit of line 13 */
MartinJohnson 0:404f5a4f1385 5497 #define EXTI_FTSR_TR14 ((uint32_t)0x00004000) /*!< Falling trigger event configuration bit of line 14 */
MartinJohnson 0:404f5a4f1385 5498 #define EXTI_FTSR_TR15 ((uint32_t)0x00008000) /*!< Falling trigger event configuration bit of line 15 */
MartinJohnson 0:404f5a4f1385 5499 #define EXTI_FTSR_TR16 ((uint32_t)0x00010000) /*!< Falling trigger event configuration bit of line 16 */
MartinJohnson 0:404f5a4f1385 5500 #define EXTI_FTSR_TR17 ((uint32_t)0x00020000) /*!< Falling trigger event configuration bit of line 17 */
MartinJohnson 0:404f5a4f1385 5501 #define EXTI_FTSR_TR18 ((uint32_t)0x00040000) /*!< Falling trigger event configuration bit of line 18 */
MartinJohnson 0:404f5a4f1385 5502 #define EXTI_FTSR_TR19 ((uint32_t)0x00080000) /*!< Falling trigger event configuration bit of line 19 */
MartinJohnson 0:404f5a4f1385 5503 #define EXTI_FTSR_TR20 ((uint32_t)0x00100000) /*!< Falling trigger event configuration bit of line 20 */
MartinJohnson 0:404f5a4f1385 5504 #define EXTI_FTSR_TR21 ((uint32_t)0x00200000) /*!< Falling trigger event configuration bit of line 21 */
MartinJohnson 0:404f5a4f1385 5505 #define EXTI_FTSR_TR22 ((uint32_t)0x00400000) /*!< Falling trigger event configuration bit of line 22 */
MartinJohnson 0:404f5a4f1385 5506 #define EXTI_FTSR_TR23 ((uint32_t)0x00800000) /*!< Falling trigger event configuration bit of line 23 */
MartinJohnson 0:404f5a4f1385 5507 #define EXTI_FTSR_TR24 ((uint32_t)0x01000000) /*!< Falling trigger event configuration bit of line 24 */
MartinJohnson 0:404f5a4f1385 5508 #define EXTI_FTSR_TR25 ((uint32_t)0x02000000) /*!< Falling trigger event configuration bit of line 25 */
MartinJohnson 0:404f5a4f1385 5509 #define EXTI_FTSR_TR26 ((uint32_t)0x04000000) /*!< Falling trigger event configuration bit of line 26 */
MartinJohnson 0:404f5a4f1385 5510 #define EXTI_FTSR_TR27 ((uint32_t)0x08000000) /*!< Falling trigger event configuration bit of line 27 */
MartinJohnson 0:404f5a4f1385 5511 #define EXTI_FTSR_TR28 ((uint32_t)0x10000000) /*!< Falling trigger event configuration bit of line 28 */
MartinJohnson 0:404f5a4f1385 5512 #define EXTI_FTSR_TR29 ((uint32_t)0x20000000) /*!< Falling trigger event configuration bit of line 29 */
MartinJohnson 0:404f5a4f1385 5513 #define EXTI_FTSR_TR30 ((uint32_t)0x40000000) /*!< Falling trigger event configuration bit of line 30 */
MartinJohnson 0:404f5a4f1385 5514 #define EXTI_FTSR_TR31 ((uint32_t)0x80000000) /*!< Falling trigger event configuration bit of line 31 */
MartinJohnson 0:404f5a4f1385 5515 /****************** Bit definition for EXTI_SWIER register ******************/
MartinJohnson 0:404f5a4f1385 5516 #define EXTI_SWIER_SWIER0 ((uint32_t)0x00000001) /*!< Software Interrupt on line 0 */
MartinJohnson 0:404f5a4f1385 5517 #define EXTI_SWIER_SWIER1 ((uint32_t)0x00000002) /*!< Software Interrupt on line 1 */
MartinJohnson 0:404f5a4f1385 5518 #define EXTI_SWIER_SWIER2 ((uint32_t)0x00000004) /*!< Software Interrupt on line 2 */
MartinJohnson 0:404f5a4f1385 5519 #define EXTI_SWIER_SWIER3 ((uint32_t)0x00000008) /*!< Software Interrupt on line 3 */
MartinJohnson 0:404f5a4f1385 5520 #define EXTI_SWIER_SWIER4 ((uint32_t)0x00000010) /*!< Software Interrupt on line 4 */
MartinJohnson 0:404f5a4f1385 5521 #define EXTI_SWIER_SWIER5 ((uint32_t)0x00000020) /*!< Software Interrupt on line 5 */
MartinJohnson 0:404f5a4f1385 5522 #define EXTI_SWIER_SWIER6 ((uint32_t)0x00000040) /*!< Software Interrupt on line 6 */
MartinJohnson 0:404f5a4f1385 5523 #define EXTI_SWIER_SWIER7 ((uint32_t)0x00000080) /*!< Software Interrupt on line 7 */
MartinJohnson 0:404f5a4f1385 5524 #define EXTI_SWIER_SWIER8 ((uint32_t)0x00000100) /*!< Software Interrupt on line 8 */
MartinJohnson 0:404f5a4f1385 5525 #define EXTI_SWIER_SWIER9 ((uint32_t)0x00000200) /*!< Software Interrupt on line 9 */
MartinJohnson 0:404f5a4f1385 5526 #define EXTI_SWIER_SWIER10 ((uint32_t)0x00000400) /*!< Software Interrupt on line 10 */
MartinJohnson 0:404f5a4f1385 5527 #define EXTI_SWIER_SWIER11 ((uint32_t)0x00000800) /*!< Software Interrupt on line 11 */
MartinJohnson 0:404f5a4f1385 5528 #define EXTI_SWIER_SWIER12 ((uint32_t)0x00001000) /*!< Software Interrupt on line 12 */
MartinJohnson 0:404f5a4f1385 5529 #define EXTI_SWIER_SWIER13 ((uint32_t)0x00002000) /*!< Software Interrupt on line 13 */
MartinJohnson 0:404f5a4f1385 5530 #define EXTI_SWIER_SWIER14 ((uint32_t)0x00004000) /*!< Software Interrupt on line 14 */
MartinJohnson 0:404f5a4f1385 5531 #define EXTI_SWIER_SWIER15 ((uint32_t)0x00008000) /*!< Software Interrupt on line 15 */
MartinJohnson 0:404f5a4f1385 5532 #define EXTI_SWIER_SWIER16 ((uint32_t)0x00010000) /*!< Software Interrupt on line 16 */
MartinJohnson 0:404f5a4f1385 5533 #define EXTI_SWIER_SWIER17 ((uint32_t)0x00020000) /*!< Software Interrupt on line 17 */
MartinJohnson 0:404f5a4f1385 5534 #define EXTI_SWIER_SWIER18 ((uint32_t)0x00040000) /*!< Software Interrupt on line 18 */
MartinJohnson 0:404f5a4f1385 5535 #define EXTI_SWIER_SWIER19 ((uint32_t)0x00080000) /*!< Software Interrupt on line 19 */
MartinJohnson 0:404f5a4f1385 5536 #define EXTI_SWIER_SWIER20 ((uint32_t)0x00100000) /*!< Software Interrupt on line 20 */
MartinJohnson 0:404f5a4f1385 5537 #define EXTI_SWIER_SWIER21 ((uint32_t)0x00200000) /*!< Software Interrupt on line 21 */
MartinJohnson 0:404f5a4f1385 5538 #define EXTI_SWIER_SWIER22 ((uint32_t)0x00400000) /*!< Software Interrupt on line 22 */
MartinJohnson 0:404f5a4f1385 5539 #define EXTI_SWIER_SWIER23 ((uint32_t)0x00800000) /*!< Software Interrupt on line 23 */
MartinJohnson 0:404f5a4f1385 5540 #define EXTI_SWIER_SWIER24 ((uint32_t)0x01000000) /*!< Software Interrupt on line 24 */
MartinJohnson 0:404f5a4f1385 5541 #define EXTI_SWIER_SWIER25 ((uint32_t)0x02000000) /*!< Software Interrupt on line 25 */
MartinJohnson 0:404f5a4f1385 5542 #define EXTI_SWIER_SWIER26 ((uint32_t)0x04000000) /*!< Software Interrupt on line 26 */
MartinJohnson 0:404f5a4f1385 5543 #define EXTI_SWIER_SWIER27 ((uint32_t)0x08000000) /*!< Software Interrupt on line 27 */
MartinJohnson 0:404f5a4f1385 5544 #define EXTI_SWIER_SWIER28 ((uint32_t)0x10000000) /*!< Software Interrupt on line 28 */
MartinJohnson 0:404f5a4f1385 5545 #define EXTI_SWIER_SWIER29 ((uint32_t)0x20000000) /*!< Software Interrupt on line 29 */
MartinJohnson 0:404f5a4f1385 5546 #define EXTI_SWIER_SWIER30 ((uint32_t)0x40000000) /*!< Software Interrupt on line 30 */
MartinJohnson 0:404f5a4f1385 5547 #define EXTI_SWIER_SWIER31 ((uint32_t)0x80000000) /*!< Software Interrupt on line 31 */
MartinJohnson 0:404f5a4f1385 5548 /******************* Bit definition for EXTI_PR register ********************/
MartinJohnson 0:404f5a4f1385 5549 #define EXTI_PR_PR0 ((uint32_t)0x00000001) /*!< Pending bit for line 0 */
MartinJohnson 0:404f5a4f1385 5550 #define EXTI_PR_PR1 ((uint32_t)0x00000002) /*!< Pending bit for line 1 */
MartinJohnson 0:404f5a4f1385 5551 #define EXTI_PR_PR2 ((uint32_t)0x00000004) /*!< Pending bit for line 2 */
MartinJohnson 0:404f5a4f1385 5552 #define EXTI_PR_PR3 ((uint32_t)0x00000008) /*!< Pending bit for line 3 */
MartinJohnson 0:404f5a4f1385 5553 #define EXTI_PR_PR4 ((uint32_t)0x00000010) /*!< Pending bit for line 4 */
MartinJohnson 0:404f5a4f1385 5554 #define EXTI_PR_PR5 ((uint32_t)0x00000020) /*!< Pending bit for line 5 */
MartinJohnson 0:404f5a4f1385 5555 #define EXTI_PR_PR6 ((uint32_t)0x00000040) /*!< Pending bit for line 6 */
MartinJohnson 0:404f5a4f1385 5556 #define EXTI_PR_PR7 ((uint32_t)0x00000080) /*!< Pending bit for line 7 */
MartinJohnson 0:404f5a4f1385 5557 #define EXTI_PR_PR8 ((uint32_t)0x00000100) /*!< Pending bit for line 8 */
MartinJohnson 0:404f5a4f1385 5558 #define EXTI_PR_PR9 ((uint32_t)0x00000200) /*!< Pending bit for line 9 */
MartinJohnson 0:404f5a4f1385 5559 #define EXTI_PR_PR10 ((uint32_t)0x00000400) /*!< Pending bit for line 10 */
MartinJohnson 0:404f5a4f1385 5560 #define EXTI_PR_PR11 ((uint32_t)0x00000800) /*!< Pending bit for line 11 */
MartinJohnson 0:404f5a4f1385 5561 #define EXTI_PR_PR12 ((uint32_t)0x00001000) /*!< Pending bit for line 12 */
MartinJohnson 0:404f5a4f1385 5562 #define EXTI_PR_PR13 ((uint32_t)0x00002000) /*!< Pending bit for line 13 */
MartinJohnson 0:404f5a4f1385 5563 #define EXTI_PR_PR14 ((uint32_t)0x00004000) /*!< Pending bit for line 14 */
MartinJohnson 0:404f5a4f1385 5564 #define EXTI_PR_PR15 ((uint32_t)0x00008000) /*!< Pending bit for line 15 */
MartinJohnson 0:404f5a4f1385 5565 #define EXTI_PR_PR16 ((uint32_t)0x00010000) /*!< Pending bit for line 16 */
MartinJohnson 0:404f5a4f1385 5566 #define EXTI_PR_PR17 ((uint32_t)0x00020000) /*!< Pending bit for line 17 */
MartinJohnson 0:404f5a4f1385 5567 #define EXTI_PR_PR18 ((uint32_t)0x00040000) /*!< Pending bit for line 18 */
MartinJohnson 0:404f5a4f1385 5568 #define EXTI_PR_PR19 ((uint32_t)0x00080000) /*!< Pending bit for line 19 */
MartinJohnson 0:404f5a4f1385 5569 #define EXTI_PR_PR20 ((uint32_t)0x00100000) /*!< Pending bit for line 20 */
MartinJohnson 0:404f5a4f1385 5570 #define EXTI_PR_PR21 ((uint32_t)0x00200000) /*!< Pending bit for line 21 */
MartinJohnson 0:404f5a4f1385 5571 #define EXTI_PR_PR22 ((uint32_t)0x00400000) /*!< Pending bit for line 22 */
MartinJohnson 0:404f5a4f1385 5572 #define EXTI_PR_PR23 ((uint32_t)0x00800000) /*!< Pending bit for line 23 */
MartinJohnson 0:404f5a4f1385 5573 #define EXTI_PR_PR24 ((uint32_t)0x01000000) /*!< Pending bit for line 24 */
MartinJohnson 0:404f5a4f1385 5574 #define EXTI_PR_PR25 ((uint32_t)0x02000000) /*!< Pending bit for line 25 */
MartinJohnson 0:404f5a4f1385 5575 #define EXTI_PR_PR26 ((uint32_t)0x04000000) /*!< Pending bit for line 26 */
MartinJohnson 0:404f5a4f1385 5576 #define EXTI_PR_PR27 ((uint32_t)0x08000000) /*!< Pending bit for line 27 */
MartinJohnson 0:404f5a4f1385 5577 #define EXTI_PR_PR28 ((uint32_t)0x10000000) /*!< Pending bit for line 28 */
MartinJohnson 0:404f5a4f1385 5578 #define EXTI_PR_PR29 ((uint32_t)0x20000000) /*!< Pending bit for line 29 */
MartinJohnson 0:404f5a4f1385 5579 #define EXTI_PR_PR30 ((uint32_t)0x40000000) /*!< Pending bit for line 30 */
MartinJohnson 0:404f5a4f1385 5580 #define EXTI_PR_PR31 ((uint32_t)0x80000000) /*!< Pending bit for line 31 */
MartinJohnson 0:404f5a4f1385 5581 /******************* Bit definition for EXTI_IMR2 register ******************/
MartinJohnson 0:404f5a4f1385 5582 #define EXTI_IMR2_MR32 ((uint32_t)0x00000001) /*!< Interrupt Mask on line 32 */
MartinJohnson 0:404f5a4f1385 5583 #define EXTI_IMR2_MR33 ((uint32_t)0x00000002) /*!< Interrupt Mask on line 33 */
MartinJohnson 0:404f5a4f1385 5584 #define EXTI_IMR2_MR34 ((uint32_t)0x00000004) /*!< Interrupt Mask on line 34 */
MartinJohnson 0:404f5a4f1385 5585 #define EXTI_IMR2_MR35 ((uint32_t)0x00000008) /*!< Interrupt Mask on line 35 */
MartinJohnson 0:404f5a4f1385 5586 /******************* Bit definition for EXTI_EMR2 register ******************/
MartinJohnson 0:404f5a4f1385 5587 #define EXTI_EMR2_MR32 ((uint32_t)0x00000001) /*!< Event Mask on line 32 */
MartinJohnson 0:404f5a4f1385 5588 #define EXTI_EMR2_MR33 ((uint32_t)0x00000002) /*!< Event Mask on line 33 */
MartinJohnson 0:404f5a4f1385 5589 #define EXTI_EMR2_MR34 ((uint32_t)0x00000004) /*!< Event Mask on line 34 */
MartinJohnson 0:404f5a4f1385 5590 #define EXTI_EMR2_MR35 ((uint32_t)0x00000008) /*!< Event Mask on line 35 */
MartinJohnson 0:404f5a4f1385 5591 /****************** Bit definition for EXTI_RTSR2 register ******************/
MartinJohnson 0:404f5a4f1385 5592 #define EXTI_RTSR2_TR32 ((uint32_t)0x00000001) /*!< Rising trigger event configuration bit of line 32 */
MartinJohnson 0:404f5a4f1385 5593 #define EXTI_RTSR2_TR33 ((uint32_t)0x00000002) /*!< Rising trigger event configuration bit of line 33 */
MartinJohnson 0:404f5a4f1385 5594 /****************** Bit definition for EXTI_FTSR2 register ******************/
MartinJohnson 0:404f5a4f1385 5595 #define EXTI_FTSR2_TR32 ((uint32_t)0x00000001) /*!< Falling trigger event configuration bit of line 32 */
MartinJohnson 0:404f5a4f1385 5596 #define EXTI_FTSR2_TR33 ((uint32_t)0x00000002) /*!< Falling trigger event configuration bit of line 32 */
MartinJohnson 0:404f5a4f1385 5597 /****************** Bit definition for EXTI_SWIER2 register *****************/
MartinJohnson 0:404f5a4f1385 5598 #define EXTI_SWIER2_SWIER32 ((uint32_t)0x00000001) /*!< Software Interrupt on line 32 */
MartinJohnson 0:404f5a4f1385 5599 #define EXTI_SWIER2_SWIER33 ((uint32_t)0x00000002) /*!< Software Interrupt on line 32 */
MartinJohnson 0:404f5a4f1385 5600 /******************* Bit definition for EXTI_PR2 register *******************/
MartinJohnson 0:404f5a4f1385 5601 #define EXTI_PR2_PR32 ((uint32_t)0x00000001) /*!< Pending bit for line 32 */
MartinJohnson 0:404f5a4f1385 5602 #define EXTI_PR2_PR33 ((uint32_t)0x00000002) /*!< Pending bit for line 32 */
MartinJohnson 0:404f5a4f1385 5603
MartinJohnson 0:404f5a4f1385 5604 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 5605 /* */
MartinJohnson 0:404f5a4f1385 5606 /* FLASH */
MartinJohnson 0:404f5a4f1385 5607 /* */
MartinJohnson 0:404f5a4f1385 5608 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 5609 /******************* Bit definition for FLASH_ACR register ******************/
MartinJohnson 0:404f5a4f1385 5610 #define FLASH_ACR_LATENCY ((uint8_t)0x03) /*!< LATENCY[2:0] bits (Latency) */
MartinJohnson 0:404f5a4f1385 5611 #define FLASH_ACR_LATENCY_0 ((uint8_t)0x01) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 5612 #define FLASH_ACR_LATENCY_1 ((uint8_t)0x02) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 5613
MartinJohnson 0:404f5a4f1385 5614 #define FLASH_ACR_HLFCYA ((uint8_t)0x08) /*!< Flash Half Cycle Access Enable */
MartinJohnson 0:404f5a4f1385 5615 #define FLASH_ACR_PRFTBE ((uint8_t)0x10) /*!< Prefetch Buffer Enable */
MartinJohnson 0:404f5a4f1385 5616 #define FLASH_ACR_PRFTBS ((uint8_t)0x20)
MartinJohnson 0:404f5a4f1385 5617
MartinJohnson 0:404f5a4f1385 5618 /****************** Bit definition for FLASH_KEYR register ******************/
MartinJohnson 0:404f5a4f1385 5619 #define FLASH_KEYR_FKEYR ((uint32_t)0xFFFFFFFF) /*!< FPEC Key */
MartinJohnson 0:404f5a4f1385 5620
MartinJohnson 0:404f5a4f1385 5621 #define RDP_KEY ((uint16_t)0x00A5) /*!< RDP Key */
MartinJohnson 0:404f5a4f1385 5622 #define FLASH_KEY1 ((uint32_t)0x45670123) /*!< FPEC Key1 */
MartinJohnson 0:404f5a4f1385 5623 #define FLASH_KEY2 ((uint32_t)0xCDEF89AB) /*!< FPEC Key2 */
MartinJohnson 0:404f5a4f1385 5624
MartinJohnson 0:404f5a4f1385 5625 /***************** Bit definition for FLASH_OPTKEYR register ****************/
MartinJohnson 0:404f5a4f1385 5626 #define FLASH_OPTKEYR_OPTKEYR ((uint32_t)0xFFFFFFFF) /*!< Option Byte Key */
MartinJohnson 0:404f5a4f1385 5627
MartinJohnson 0:404f5a4f1385 5628 #define FLASH_OPTKEY1 FLASH_KEY1 /*!< Option Byte Key1 */
MartinJohnson 0:404f5a4f1385 5629 #define FLASH_OPTKEY2 FLASH_KEY2 /*!< Option Byte Key2 */
MartinJohnson 0:404f5a4f1385 5630
MartinJohnson 0:404f5a4f1385 5631 /****************** Bit definition for FLASH_SR register *******************/
MartinJohnson 0:404f5a4f1385 5632 #define FLASH_SR_BSY ((uint32_t)0x00000001) /*!< Busy */
MartinJohnson 0:404f5a4f1385 5633 #define FLASH_SR_PGERR ((uint32_t)0x00000004) /*!< Programming Error */
MartinJohnson 0:404f5a4f1385 5634 #define FLASH_SR_WRPERR ((uint32_t)0x00000010) /*!< Write Protection Error */
MartinJohnson 0:404f5a4f1385 5635 #define FLASH_SR_EOP ((uint32_t)0x00000020) /*!< End of operation */
MartinJohnson 0:404f5a4f1385 5636
MartinJohnson 0:404f5a4f1385 5637 /******************* Bit definition for FLASH_CR register *******************/
MartinJohnson 0:404f5a4f1385 5638 #define FLASH_CR_PG ((uint32_t)0x00000001) /*!< Programming */
MartinJohnson 0:404f5a4f1385 5639 #define FLASH_CR_PER ((uint32_t)0x00000002) /*!< Page Erase */
MartinJohnson 0:404f5a4f1385 5640 #define FLASH_CR_MER ((uint32_t)0x00000004) /*!< Mass Erase */
MartinJohnson 0:404f5a4f1385 5641 #define FLASH_CR_OPTPG ((uint32_t)0x00000010) /*!< Option Byte Programming */
MartinJohnson 0:404f5a4f1385 5642 #define FLASH_CR_OPTER ((uint32_t)0x00000020) /*!< Option Byte Erase */
MartinJohnson 0:404f5a4f1385 5643 #define FLASH_CR_STRT ((uint32_t)0x00000040) /*!< Start */
MartinJohnson 0:404f5a4f1385 5644 #define FLASH_CR_LOCK ((uint32_t)0x00000080) /*!< Lock */
MartinJohnson 0:404f5a4f1385 5645 #define FLASH_CR_OPTWRE ((uint32_t)0x00000200) /*!< Option Bytes Write Enable */
MartinJohnson 0:404f5a4f1385 5646 #define FLASH_CR_ERRIE ((uint32_t)0x00000400) /*!< Error Interrupt Enable */
MartinJohnson 0:404f5a4f1385 5647 #define FLASH_CR_EOPIE ((uint32_t)0x00001000) /*!< End of operation interrupt enable */
MartinJohnson 0:404f5a4f1385 5648 #define FLASH_CR_OBL_LAUNCH ((uint32_t)0x00002000) /*!< OptionBytes Loader Launch */
MartinJohnson 0:404f5a4f1385 5649
MartinJohnson 0:404f5a4f1385 5650 /******************* Bit definition for FLASH_AR register *******************/
MartinJohnson 0:404f5a4f1385 5651 #define FLASH_AR_FAR ((uint32_t)0xFFFFFFFF) /*!< Flash Address */
MartinJohnson 0:404f5a4f1385 5652
MartinJohnson 0:404f5a4f1385 5653 /****************** Bit definition for FLASH_OBR register *******************/
MartinJohnson 0:404f5a4f1385 5654 #define FLASH_OBR_OPTERR ((uint32_t)0x00000001) /*!< Option Byte Error */
MartinJohnson 0:404f5a4f1385 5655 #define FLASH_OBR_RDPRT1 ((uint32_t)0x00000002) /*!< Read protection Level 1 */
MartinJohnson 0:404f5a4f1385 5656 #define FLASH_OBR_RDPRT2 ((uint32_t)0x00000004) /*!< Read protection Level 2 */
MartinJohnson 0:404f5a4f1385 5657
MartinJohnson 0:404f5a4f1385 5658 #ifdef STM32F303xE
MartinJohnson 0:404f5a4f1385 5659 #define FLASH_OBR_USER ((uint32_t)0x00007700) /*!< User Option Bytes */
MartinJohnson 0:404f5a4f1385 5660 #else
MartinJohnson 0:404f5a4f1385 5661 #define FLASH_OBR_USER ((uint32_t)0x00003700) /*!< User Option Bytes */
MartinJohnson 0:404f5a4f1385 5662 #endif /* STM32F303xE */
MartinJohnson 0:404f5a4f1385 5663
MartinJohnson 0:404f5a4f1385 5664 #define FLASH_OBR_IWDG_SW ((uint32_t)0x00000100) /*!< IWDG SW */
MartinJohnson 0:404f5a4f1385 5665 #define FLASH_OBR_nRST_STOP ((uint32_t)0x00000200) /*!< nRST_STOP */
MartinJohnson 0:404f5a4f1385 5666 #define FLASH_OBR_nRST_STDBY ((uint32_t)0x00000400) /*!< nRST_STDBY */
MartinJohnson 0:404f5a4f1385 5667 #define FLASH_OBR_nBOOT1 ((uint32_t)0x00001000) /*!< nBOOT1 */
MartinJohnson 0:404f5a4f1385 5668 #define FLASH_OBR_VDDA_MONITOR ((uint32_t)0x00002000) /*!< VDDA_MONITOR */
MartinJohnson 0:404f5a4f1385 5669 #define FLASH_OBR_SRAM_PE ((uint32_t)0x00004000) /*!< SRAM_PE */
MartinJohnson 0:404f5a4f1385 5670
MartinJohnson 0:404f5a4f1385 5671
MartinJohnson 0:404f5a4f1385 5672 /****************** Bit definition for FLASH_WRPR register ******************/
MartinJohnson 0:404f5a4f1385 5673 #define FLASH_WRPR_WRP ((uint32_t)0xFFFFFFFF) /*!< Write Protect */
MartinJohnson 0:404f5a4f1385 5674
MartinJohnson 0:404f5a4f1385 5675 /*----------------------------------------------------------------------------*/
MartinJohnson 0:404f5a4f1385 5676
MartinJohnson 0:404f5a4f1385 5677 /****************** Bit definition for OB_RDP register **********************/
MartinJohnson 0:404f5a4f1385 5678 #define OB_RDP_RDP ((uint32_t)0x000000FF) /*!< Read protection option byte */
MartinJohnson 0:404f5a4f1385 5679 #define OB_RDP_nRDP ((uint32_t)0x0000FF00) /*!< Read protection complemented option byte */
MartinJohnson 0:404f5a4f1385 5680
MartinJohnson 0:404f5a4f1385 5681 /****************** Bit definition for OB_USER register *********************/
MartinJohnson 0:404f5a4f1385 5682 #define OB_USER_USER ((uint32_t)0x00FF0000) /*!< User option byte */
MartinJohnson 0:404f5a4f1385 5683 #define OB_USER_nUSER ((uint32_t)0xFF000000) /*!< User complemented option byte */
MartinJohnson 0:404f5a4f1385 5684
MartinJohnson 0:404f5a4f1385 5685 /****************** Bit definition for FLASH_WRP0 register ******************/
MartinJohnson 0:404f5a4f1385 5686 #define OB_WRP0_WRP0 ((uint32_t)0x000000FF) /*!< Flash memory write protection option bytes */
MartinJohnson 0:404f5a4f1385 5687 #define OB_WRP0_nWRP0 ((uint32_t)0x0000FF00) /*!< Flash memory write protection complemented option bytes */
MartinJohnson 0:404f5a4f1385 5688
MartinJohnson 0:404f5a4f1385 5689 /****************** Bit definition for FLASH_WRP1 register ******************/
MartinJohnson 0:404f5a4f1385 5690 #define OB_WRP1_WRP1 ((uint32_t)0x00FF0000) /*!< Flash memory write protection option bytes */
MartinJohnson 0:404f5a4f1385 5691 #define OB_WRP1_nWRP1 ((uint32_t)0xFF000000) /*!< Flash memory write protection complemented option bytes */
MartinJohnson 0:404f5a4f1385 5692
MartinJohnson 0:404f5a4f1385 5693 /****************** Bit definition for FLASH_WRP2 register ******************/
MartinJohnson 0:404f5a4f1385 5694 #define OB_WRP2_WRP2 ((uint32_t)0x000000FF) /*!< Flash memory write protection option bytes */
MartinJohnson 0:404f5a4f1385 5695 #define OB_WRP2_nWRP2 ((uint32_t)0x0000FF00) /*!< Flash memory write protection complemented option bytes */
MartinJohnson 0:404f5a4f1385 5696
MartinJohnson 0:404f5a4f1385 5697 /****************** Bit definition for FLASH_WRP3 register ******************/
MartinJohnson 0:404f5a4f1385 5698 #define OB_WRP3_WRP3 ((uint32_t)0x00FF0000) /*!< Flash memory write protection option bytes */
MartinJohnson 0:404f5a4f1385 5699 #define OB_WRP3_nWRP3 ((uint32_t)0xFF000000) /*!< Flash memory write protection complemented option bytes */
MartinJohnson 0:404f5a4f1385 5700
MartinJohnson 0:404f5a4f1385 5701 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 5702 /* */
MartinJohnson 0:404f5a4f1385 5703 /* Flexible Memory Controller */
MartinJohnson 0:404f5a4f1385 5704 /* */
MartinJohnson 0:404f5a4f1385 5705 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 5706 /****************** Bit definition for FMC_BCR1 register *******************/
MartinJohnson 0:404f5a4f1385 5707 #define FMC_BCR1_MBKEN ((uint32_t)0x00000001) /*!<Memory bank enable bit */
MartinJohnson 0:404f5a4f1385 5708 #define FMC_BCR1_MUXEN ((uint32_t)0x00000002) /*!<Address/data multiplexing enable bit */
MartinJohnson 0:404f5a4f1385 5709
MartinJohnson 0:404f5a4f1385 5710 #define FMC_BCR1_MTYP ((uint32_t)0x0000000C) /*!<MTYP[1:0] bits (Memory type) */
MartinJohnson 0:404f5a4f1385 5711 #define FMC_BCR1_MTYP_0 ((uint32_t)0x00000004) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5712 #define FMC_BCR1_MTYP_1 ((uint32_t)0x00000008) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5713
MartinJohnson 0:404f5a4f1385 5714 #define FMC_BCR1_MWID ((uint32_t)0x00000030) /*!<MWID[1:0] bits (Memory data bus width) */
MartinJohnson 0:404f5a4f1385 5715 #define FMC_BCR1_MWID_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5716 #define FMC_BCR1_MWID_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5717
MartinJohnson 0:404f5a4f1385 5718 #define FMC_BCR1_FACCEN ((uint32_t)0x00000040) /*!<Flash access enable */
MartinJohnson 0:404f5a4f1385 5719 #define FMC_BCR1_BURSTEN ((uint32_t)0x00000100) /*!<Burst enable bit */
MartinJohnson 0:404f5a4f1385 5720 #define FMC_BCR1_WAITPOL ((uint32_t)0x00000200) /*!<Wait signal polarity bit */
MartinJohnson 0:404f5a4f1385 5721 #define FMC_BCR1_WRAPMOD ((uint32_t)0x00000400) /*!<Wrapped burst mode support */
MartinJohnson 0:404f5a4f1385 5722 #define FMC_BCR1_WAITCFG ((uint32_t)0x00000800) /*!<Wait timing configuration */
MartinJohnson 0:404f5a4f1385 5723 #define FMC_BCR1_WREN ((uint32_t)0x00001000) /*!<Write enable bit */
MartinJohnson 0:404f5a4f1385 5724 #define FMC_BCR1_WAITEN ((uint32_t)0x00002000) /*!<Wait enable bit */
MartinJohnson 0:404f5a4f1385 5725 #define FMC_BCR1_EXTMOD ((uint32_t)0x00004000) /*!<Extended mode enable */
MartinJohnson 0:404f5a4f1385 5726 #define FMC_BCR1_ASYNCWAIT ((uint32_t)0x00008000) /*!<Asynchronous wait */
MartinJohnson 0:404f5a4f1385 5727 #define FMC_BCR1_CBURSTRW ((uint32_t)0x00080000) /*!<Write burst enable */
MartinJohnson 0:404f5a4f1385 5728 #define FMC_BCR1_CCLKEN ((uint32_t)0x00100000) /*!<Conitnuous clock enable */
MartinJohnson 0:404f5a4f1385 5729
MartinJohnson 0:404f5a4f1385 5730 /****************** Bit definition for FMC_BCR2 register *******************/
MartinJohnson 0:404f5a4f1385 5731 #define FMC_BCR2_MBKEN ((uint32_t)0x00000001) /*!<Memory bank enable bit */
MartinJohnson 0:404f5a4f1385 5732 #define FMC_BCR2_MUXEN ((uint32_t)0x00000002) /*!<Address/data multiplexing enable bit */
MartinJohnson 0:404f5a4f1385 5733
MartinJohnson 0:404f5a4f1385 5734 #define FMC_BCR2_MTYP ((uint32_t)0x0000000C) /*!<MTYP[1:0] bits (Memory type) */
MartinJohnson 0:404f5a4f1385 5735 #define FMC_BCR2_MTYP_0 ((uint32_t)0x00000004) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5736 #define FMC_BCR2_MTYP_1 ((uint32_t)0x00000008) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5737
MartinJohnson 0:404f5a4f1385 5738 #define FMC_BCR2_MWID ((uint32_t)0x00000030) /*!<MWID[1:0] bits (Memory data bus width) */
MartinJohnson 0:404f5a4f1385 5739 #define FMC_BCR2_MWID_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5740 #define FMC_BCR2_MWID_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5741
MartinJohnson 0:404f5a4f1385 5742 #define FMC_BCR2_FACCEN ((uint32_t)0x00000040) /*!<Flash access enable */
MartinJohnson 0:404f5a4f1385 5743 #define FMC_BCR2_BURSTEN ((uint32_t)0x00000100) /*!<Burst enable bit */
MartinJohnson 0:404f5a4f1385 5744 #define FMC_BCR2_WAITPOL ((uint32_t)0x00000200) /*!<Wait signal polarity bit */
MartinJohnson 0:404f5a4f1385 5745 #define FMC_BCR2_WRAPMOD ((uint32_t)0x00000400) /*!<Wrapped burst mode support */
MartinJohnson 0:404f5a4f1385 5746 #define FMC_BCR2_WAITCFG ((uint32_t)0x00000800) /*!<Wait timing configuration */
MartinJohnson 0:404f5a4f1385 5747 #define FMC_BCR2_WREN ((uint32_t)0x00001000) /*!<Write enable bit */
MartinJohnson 0:404f5a4f1385 5748 #define FMC_BCR2_WAITEN ((uint32_t)0x00002000) /*!<Wait enable bit */
MartinJohnson 0:404f5a4f1385 5749 #define FMC_BCR2_EXTMOD ((uint32_t)0x00004000) /*!<Extended mode enable */
MartinJohnson 0:404f5a4f1385 5750 #define FMC_BCR2_ASYNCWAIT ((uint32_t)0x00008000) /*!<Asynchronous wait */
MartinJohnson 0:404f5a4f1385 5751 #define FMC_BCR2_CBURSTRW ((uint32_t)0x00080000) /*!<Write burst enable */
MartinJohnson 0:404f5a4f1385 5752
MartinJohnson 0:404f5a4f1385 5753 /****************** Bit definition for FMC_BCR3 register *******************/
MartinJohnson 0:404f5a4f1385 5754 #define FMC_BCR3_MBKEN ((uint32_t)0x00000001) /*!<Memory bank enable bit */
MartinJohnson 0:404f5a4f1385 5755 #define FMC_BCR3_MUXEN ((uint32_t)0x00000002) /*!<Address/data multiplexing enable bit */
MartinJohnson 0:404f5a4f1385 5756
MartinJohnson 0:404f5a4f1385 5757 #define FMC_BCR3_MTYP ((uint32_t)0x0000000C) /*!<MTYP[1:0] bits (Memory type) */
MartinJohnson 0:404f5a4f1385 5758 #define FMC_BCR3_MTYP_0 ((uint32_t)0x00000004) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5759 #define FMC_BCR3_MTYP_1 ((uint32_t)0x00000008) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5760
MartinJohnson 0:404f5a4f1385 5761 #define FMC_BCR3_MWID ((uint32_t)0x00000030) /*!<MWID[1:0] bits (Memory data bus width) */
MartinJohnson 0:404f5a4f1385 5762 #define FMC_BCR3_MWID_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5763 #define FMC_BCR3_MWID_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5764
MartinJohnson 0:404f5a4f1385 5765 #define FMC_BCR3_FACCEN ((uint32_t)0x00000040) /*!<Flash access enable */
MartinJohnson 0:404f5a4f1385 5766 #define FMC_BCR3_BURSTEN ((uint32_t)0x00000100) /*!<Burst enable bit */
MartinJohnson 0:404f5a4f1385 5767 #define FMC_BCR3_WAITPOL ((uint32_t)0x00000200) /*!<Wait signal polarity bit */
MartinJohnson 0:404f5a4f1385 5768 #define FMC_BCR3_WRAPMOD ((uint32_t)0x00000400) /*!<Wrapped burst mode support */
MartinJohnson 0:404f5a4f1385 5769 #define FMC_BCR3_WAITCFG ((uint32_t)0x00000800) /*!<Wait timing configuration */
MartinJohnson 0:404f5a4f1385 5770 #define FMC_BCR3_WREN ((uint32_t)0x00001000) /*!<Write enable bit */
MartinJohnson 0:404f5a4f1385 5771 #define FMC_BCR3_WAITEN ((uint32_t)0x00002000) /*!<Wait enable bit */
MartinJohnson 0:404f5a4f1385 5772 #define FMC_BCR3_EXTMOD ((uint32_t)0x00004000) /*!<Extended mode enable */
MartinJohnson 0:404f5a4f1385 5773 #define FMC_BCR3_ASYNCWAIT ((uint32_t)0x00008000) /*!<Asynchronous wait */
MartinJohnson 0:404f5a4f1385 5774 #define FMC_BCR3_CBURSTRW ((uint32_t)0x00080000) /*!<Write burst enable */
MartinJohnson 0:404f5a4f1385 5775
MartinJohnson 0:404f5a4f1385 5776 /****************** Bit definition for FMC_BCR4 register *******************/
MartinJohnson 0:404f5a4f1385 5777 #define FMC_BCR4_MBKEN ((uint32_t)0x00000001) /*!<Memory bank enable bit */
MartinJohnson 0:404f5a4f1385 5778 #define FMC_BCR4_MUXEN ((uint32_t)0x00000002) /*!<Address/data multiplexing enable bit */
MartinJohnson 0:404f5a4f1385 5779
MartinJohnson 0:404f5a4f1385 5780 #define FMC_BCR4_MTYP ((uint32_t)0x0000000C) /*!<MTYP[1:0] bits (Memory type) */
MartinJohnson 0:404f5a4f1385 5781 #define FMC_BCR4_MTYP_0 ((uint32_t)0x00000004) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5782 #define FMC_BCR4_MTYP_1 ((uint32_t)0x00000008) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5783
MartinJohnson 0:404f5a4f1385 5784 #define FMC_BCR4_MWID ((uint32_t)0x00000030) /*!<MWID[1:0] bits (Memory data bus width) */
MartinJohnson 0:404f5a4f1385 5785 #define FMC_BCR4_MWID_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5786 #define FMC_BCR4_MWID_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5787
MartinJohnson 0:404f5a4f1385 5788 #define FMC_BCR4_FACCEN ((uint32_t)0x00000040) /*!<Flash access enable */
MartinJohnson 0:404f5a4f1385 5789 #define FMC_BCR4_BURSTEN ((uint32_t)0x00000100) /*!<Burst enable bit */
MartinJohnson 0:404f5a4f1385 5790 #define FMC_BCR4_WAITPOL ((uint32_t)0x00000200) /*!<Wait signal polarity bit */
MartinJohnson 0:404f5a4f1385 5791 #define FMC_BCR4_WRAPMOD ((uint32_t)0x00000400) /*!<Wrapped burst mode support */
MartinJohnson 0:404f5a4f1385 5792 #define FMC_BCR4_WAITCFG ((uint32_t)0x00000800) /*!<Wait timing configuration */
MartinJohnson 0:404f5a4f1385 5793 #define FMC_BCR4_WREN ((uint32_t)0x00001000) /*!<Write enable bit */
MartinJohnson 0:404f5a4f1385 5794 #define FMC_BCR4_WAITEN ((uint32_t)0x00002000) /*!<Wait enable bit */
MartinJohnson 0:404f5a4f1385 5795 #define FMC_BCR4_EXTMOD ((uint32_t)0x00004000) /*!<Extended mode enable */
MartinJohnson 0:404f5a4f1385 5796 #define FMC_BCR4_ASYNCWAIT ((uint32_t)0x00008000) /*!<Asynchronous wait */
MartinJohnson 0:404f5a4f1385 5797 #define FMC_BCR4_CBURSTRW ((uint32_t)0x00080000) /*!<Write burst enable */
MartinJohnson 0:404f5a4f1385 5798
MartinJohnson 0:404f5a4f1385 5799 /****************** Bit definition for FMC_BTR1 register ******************/
MartinJohnson 0:404f5a4f1385 5800 #define FMC_BTR1_ADDSET ((uint32_t)0x0000000F) /*!<ADDSET[3:0] bits (Address setup phase duration) */
MartinJohnson 0:404f5a4f1385 5801 #define FMC_BTR1_ADDSET_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5802 #define FMC_BTR1_ADDSET_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5803 #define FMC_BTR1_ADDSET_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 5804 #define FMC_BTR1_ADDSET_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 5805
MartinJohnson 0:404f5a4f1385 5806 #define FMC_BTR1_ADDHLD ((uint32_t)0x000000F0) /*!<ADDHLD[3:0] bits (Address-hold phase duration) */
MartinJohnson 0:404f5a4f1385 5807 #define FMC_BTR1_ADDHLD_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5808 #define FMC_BTR1_ADDHLD_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5809 #define FMC_BTR1_ADDHLD_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 5810 #define FMC_BTR1_ADDHLD_3 ((uint32_t)0x00000080) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 5811
MartinJohnson 0:404f5a4f1385 5812 #define FMC_BTR1_DATAST ((uint32_t)0x0000FF00) /*!<DATAST [3:0] bits (Data-phase duration) */
MartinJohnson 0:404f5a4f1385 5813 #define FMC_BTR1_DATAST_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5814 #define FMC_BTR1_DATAST_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5815 #define FMC_BTR1_DATAST_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 5816 #define FMC_BTR1_DATAST_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 5817 #define FMC_BTR1_DATAST_4 ((uint32_t)0x00001000) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 5818 #define FMC_BTR1_DATAST_5 ((uint32_t)0x00002000) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 5819 #define FMC_BTR1_DATAST_6 ((uint32_t)0x00004000) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 5820 #define FMC_BTR1_DATAST_7 ((uint32_t)0x00008000) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 5821
MartinJohnson 0:404f5a4f1385 5822 #define FMC_BTR1_BUSTURN ((uint32_t)0x000F0000) /*!<BUSTURN[3:0] bits (Bus turnaround phase duration) */
MartinJohnson 0:404f5a4f1385 5823 #define FMC_BTR1_BUSTURN_0 ((uint32_t)0x00010000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5824 #define FMC_BTR1_BUSTURN_1 ((uint32_t)0x00020000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5825 #define FMC_BTR1_BUSTURN_2 ((uint32_t)0x00040000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 5826 #define FMC_BTR1_BUSTURN_3 ((uint32_t)0x00080000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 5827
MartinJohnson 0:404f5a4f1385 5828 #define FMC_BTR1_CLKDIV ((uint32_t)0x00F00000) /*!<CLKDIV[3:0] bits (Clock divide ratio) */
MartinJohnson 0:404f5a4f1385 5829 #define FMC_BTR1_CLKDIV_0 ((uint32_t)0x00100000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5830 #define FMC_BTR1_CLKDIV_1 ((uint32_t)0x00200000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5831 #define FMC_BTR1_CLKDIV_2 ((uint32_t)0x00400000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 5832 #define FMC_BTR1_CLKDIV_3 ((uint32_t)0x00800000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 5833
MartinJohnson 0:404f5a4f1385 5834 #define FMC_BTR1_DATLAT ((uint32_t)0x0F000000) /*!<DATLA[3:0] bits (Data latency) */
MartinJohnson 0:404f5a4f1385 5835 #define FMC_BTR1_DATLAT_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5836 #define FMC_BTR1_DATLAT_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5837 #define FMC_BTR1_DATLAT_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 5838 #define FMC_BTR1_DATLAT_3 ((uint32_t)0x08000000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 5839
MartinJohnson 0:404f5a4f1385 5840 #define FMC_BTR1_ACCMOD ((uint32_t)0x30000000) /*!<ACCMOD[1:0] bits (Access mode) */
MartinJohnson 0:404f5a4f1385 5841 #define FMC_BTR1_ACCMOD_0 ((uint32_t)0x10000000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5842 #define FMC_BTR1_ACCMOD_1 ((uint32_t)0x20000000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5843
MartinJohnson 0:404f5a4f1385 5844 /****************** Bit definition for FMC_BTR2 register *******************/
MartinJohnson 0:404f5a4f1385 5845 #define FMC_BTR2_ADDSET ((uint32_t)0x0000000F) /*!<ADDSET[3:0] bits (Address setup phase duration) */
MartinJohnson 0:404f5a4f1385 5846 #define FMC_BTR2_ADDSET_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5847 #define FMC_BTR2_ADDSET_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5848 #define FMC_BTR2_ADDSET_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 5849 #define FMC_BTR2_ADDSET_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 5850
MartinJohnson 0:404f5a4f1385 5851 #define FMC_BTR2_ADDHLD ((uint32_t)0x000000F0) /*!<ADDHLD[3:0] bits (Address-hold phase duration) */
MartinJohnson 0:404f5a4f1385 5852 #define FMC_BTR2_ADDHLD_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5853 #define FMC_BTR2_ADDHLD_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5854 #define FMC_BTR2_ADDHLD_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 5855 #define FMC_BTR2_ADDHLD_3 ((uint32_t)0x00000080) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 5856
MartinJohnson 0:404f5a4f1385 5857 #define FMC_BTR2_DATAST ((uint32_t)0x0000FF00) /*!<DATAST [3:0] bits (Data-phase duration) */
MartinJohnson 0:404f5a4f1385 5858 #define FMC_BTR2_DATAST_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5859 #define FMC_BTR2_DATAST_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5860 #define FMC_BTR2_DATAST_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 5861 #define FMC_BTR2_DATAST_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 5862 #define FMC_BTR2_DATAST_4 ((uint32_t)0x00001000) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 5863 #define FMC_BTR2_DATAST_5 ((uint32_t)0x00002000) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 5864 #define FMC_BTR2_DATAST_6 ((uint32_t)0x00004000) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 5865 #define FMC_BTR2_DATAST_7 ((uint32_t)0x00008000) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 5866
MartinJohnson 0:404f5a4f1385 5867 #define FMC_BTR2_BUSTURN ((uint32_t)0x000F0000) /*!<BUSTURN[3:0] bits (Bus turnaround phase duration) */
MartinJohnson 0:404f5a4f1385 5868 #define FMC_BTR2_BUSTURN_0 ((uint32_t)0x00010000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5869 #define FMC_BTR2_BUSTURN_1 ((uint32_t)0x00020000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5870 #define FMC_BTR2_BUSTURN_2 ((uint32_t)0x00040000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 5871 #define FMC_BTR2_BUSTURN_3 ((uint32_t)0x00080000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 5872
MartinJohnson 0:404f5a4f1385 5873 #define FMC_BTR2_CLKDIV ((uint32_t)0x00F00000) /*!<CLKDIV[3:0] bits (Clock divide ratio) */
MartinJohnson 0:404f5a4f1385 5874 #define FMC_BTR2_CLKDIV_0 ((uint32_t)0x00100000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5875 #define FMC_BTR2_CLKDIV_1 ((uint32_t)0x00200000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5876 #define FMC_BTR2_CLKDIV_2 ((uint32_t)0x00400000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 5877 #define FMC_BTR2_CLKDIV_3 ((uint32_t)0x00800000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 5878
MartinJohnson 0:404f5a4f1385 5879 #define FMC_BTR2_DATLAT ((uint32_t)0x0F000000) /*!<DATLA[3:0] bits (Data latency) */
MartinJohnson 0:404f5a4f1385 5880 #define FMC_BTR2_DATLAT_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5881 #define FMC_BTR2_DATLAT_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5882 #define FMC_BTR2_DATLAT_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 5883 #define FMC_BTR2_DATLAT_3 ((uint32_t)0x08000000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 5884
MartinJohnson 0:404f5a4f1385 5885 #define FMC_BTR2_ACCMOD ((uint32_t)0x30000000) /*!<ACCMOD[1:0] bits (Access mode) */
MartinJohnson 0:404f5a4f1385 5886 #define FMC_BTR2_ACCMOD_0 ((uint32_t)0x10000000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5887 #define FMC_BTR2_ACCMOD_1 ((uint32_t)0x20000000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5888
MartinJohnson 0:404f5a4f1385 5889 /******************* Bit definition for FMC_BTR3 register *******************/
MartinJohnson 0:404f5a4f1385 5890 #define FMC_BTR3_ADDSET ((uint32_t)0x0000000F) /*!<ADDSET[3:0] bits (Address setup phase duration) */
MartinJohnson 0:404f5a4f1385 5891 #define FMC_BTR3_ADDSET_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5892 #define FMC_BTR3_ADDSET_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5893 #define FMC_BTR3_ADDSET_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 5894 #define FMC_BTR3_ADDSET_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 5895
MartinJohnson 0:404f5a4f1385 5896 #define FMC_BTR3_ADDHLD ((uint32_t)0x000000F0) /*!<ADDHLD[3:0] bits (Address-hold phase duration) */
MartinJohnson 0:404f5a4f1385 5897 #define FMC_BTR3_ADDHLD_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5898 #define FMC_BTR3_ADDHLD_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5899 #define FMC_BTR3_ADDHLD_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 5900 #define FMC_BTR3_ADDHLD_3 ((uint32_t)0x00000080) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 5901
MartinJohnson 0:404f5a4f1385 5902 #define FMC_BTR3_DATAST ((uint32_t)0x0000FF00) /*!<DATAST [3:0] bits (Data-phase duration) */
MartinJohnson 0:404f5a4f1385 5903 #define FMC_BTR3_DATAST_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5904 #define FMC_BTR3_DATAST_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5905 #define FMC_BTR3_DATAST_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 5906 #define FMC_BTR3_DATAST_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 5907 #define FMC_BTR3_DATAST_4 ((uint32_t)0x00001000) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 5908 #define FMC_BTR3_DATAST_5 ((uint32_t)0x00002000) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 5909 #define FMC_BTR3_DATAST_6 ((uint32_t)0x00004000) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 5910 #define FMC_BTR3_DATAST_7 ((uint32_t)0x00008000) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 5911
MartinJohnson 0:404f5a4f1385 5912 #define FMC_BTR3_BUSTURN ((uint32_t)0x000F0000) /*!<BUSTURN[3:0] bits (Bus turnaround phase duration) */
MartinJohnson 0:404f5a4f1385 5913 #define FMC_BTR3_BUSTURN_0 ((uint32_t)0x00010000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5914 #define FMC_BTR3_BUSTURN_1 ((uint32_t)0x00020000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5915 #define FMC_BTR3_BUSTURN_2 ((uint32_t)0x00040000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 5916 #define FMC_BTR3_BUSTURN_3 ((uint32_t)0x00080000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 5917
MartinJohnson 0:404f5a4f1385 5918 #define FMC_BTR3_CLKDIV ((uint32_t)0x00F00000) /*!<CLKDIV[3:0] bits (Clock divide ratio) */
MartinJohnson 0:404f5a4f1385 5919 #define FMC_BTR3_CLKDIV_0 ((uint32_t)0x00100000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5920 #define FMC_BTR3_CLKDIV_1 ((uint32_t)0x00200000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5921 #define FMC_BTR3_CLKDIV_2 ((uint32_t)0x00400000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 5922 #define FMC_BTR3_CLKDIV_3 ((uint32_t)0x00800000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 5923
MartinJohnson 0:404f5a4f1385 5924 #define FMC_BTR3_DATLAT ((uint32_t)0x0F000000) /*!<DATLA[3:0] bits (Data latency) */
MartinJohnson 0:404f5a4f1385 5925 #define FMC_BTR3_DATLAT_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5926 #define FMC_BTR3_DATLAT_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5927 #define FMC_BTR3_DATLAT_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 5928 #define FMC_BTR3_DATLAT_3 ((uint32_t)0x08000000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 5929
MartinJohnson 0:404f5a4f1385 5930 #define FMC_BTR3_ACCMOD ((uint32_t)0x30000000) /*!<ACCMOD[1:0] bits (Access mode) */
MartinJohnson 0:404f5a4f1385 5931 #define FMC_BTR3_ACCMOD_0 ((uint32_t)0x10000000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5932 #define FMC_BTR3_ACCMOD_1 ((uint32_t)0x20000000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5933
MartinJohnson 0:404f5a4f1385 5934 /****************** Bit definition for FMC_BTR4 register *******************/
MartinJohnson 0:404f5a4f1385 5935 #define FMC_BTR4_ADDSET ((uint32_t)0x0000000F) /*!<ADDSET[3:0] bits (Address setup phase duration) */
MartinJohnson 0:404f5a4f1385 5936 #define FMC_BTR4_ADDSET_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5937 #define FMC_BTR4_ADDSET_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5938 #define FMC_BTR4_ADDSET_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 5939 #define FMC_BTR4_ADDSET_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 5940
MartinJohnson 0:404f5a4f1385 5941 #define FMC_BTR4_ADDHLD ((uint32_t)0x000000F0) /*!<ADDHLD[3:0] bits (Address-hold phase duration) */
MartinJohnson 0:404f5a4f1385 5942 #define FMC_BTR4_ADDHLD_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5943 #define FMC_BTR4_ADDHLD_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5944 #define FMC_BTR4_ADDHLD_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 5945 #define FMC_BTR4_ADDHLD_3 ((uint32_t)0x00000080) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 5946
MartinJohnson 0:404f5a4f1385 5947 #define FMC_BTR4_DATAST ((uint32_t)0x0000FF00) /*!<DATAST [3:0] bits (Data-phase duration) */
MartinJohnson 0:404f5a4f1385 5948 #define FMC_BTR4_DATAST_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5949 #define FMC_BTR4_DATAST_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5950 #define FMC_BTR4_DATAST_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 5951 #define FMC_BTR4_DATAST_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 5952 #define FMC_BTR4_DATAST_4 ((uint32_t)0x00001000) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 5953 #define FMC_BTR4_DATAST_5 ((uint32_t)0x00002000) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 5954 #define FMC_BTR4_DATAST_6 ((uint32_t)0x00004000) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 5955 #define FMC_BTR4_DATAST_7 ((uint32_t)0x00008000) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 5956
MartinJohnson 0:404f5a4f1385 5957 #define FMC_BTR4_BUSTURN ((uint32_t)0x000F0000) /*!<BUSTURN[3:0] bits (Bus turnaround phase duration) */
MartinJohnson 0:404f5a4f1385 5958 #define FMC_BTR4_BUSTURN_0 ((uint32_t)0x00010000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5959 #define FMC_BTR4_BUSTURN_1 ((uint32_t)0x00020000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5960 #define FMC_BTR4_BUSTURN_2 ((uint32_t)0x00040000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 5961 #define FMC_BTR4_BUSTURN_3 ((uint32_t)0x00080000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 5962
MartinJohnson 0:404f5a4f1385 5963 #define FMC_BTR4_CLKDIV ((uint32_t)0x00F00000) /*!<CLKDIV[3:0] bits (Clock divide ratio) */
MartinJohnson 0:404f5a4f1385 5964 #define FMC_BTR4_CLKDIV_0 ((uint32_t)0x00100000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5965 #define FMC_BTR4_CLKDIV_1 ((uint32_t)0x00200000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5966 #define FMC_BTR4_CLKDIV_2 ((uint32_t)0x00400000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 5967 #define FMC_BTR4_CLKDIV_3 ((uint32_t)0x00800000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 5968
MartinJohnson 0:404f5a4f1385 5969 #define FMC_BTR4_DATLAT ((uint32_t)0x0F000000) /*!<DATLA[3:0] bits (Data latency) */
MartinJohnson 0:404f5a4f1385 5970 #define FMC_BTR4_DATLAT_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5971 #define FMC_BTR4_DATLAT_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5972 #define FMC_BTR4_DATLAT_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 5973 #define FMC_BTR4_DATLAT_3 ((uint32_t)0x08000000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 5974
MartinJohnson 0:404f5a4f1385 5975 #define FMC_BTR4_ACCMOD ((uint32_t)0x30000000) /*!<ACCMOD[1:0] bits (Access mode) */
MartinJohnson 0:404f5a4f1385 5976 #define FMC_BTR4_ACCMOD_0 ((uint32_t)0x10000000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5977 #define FMC_BTR4_ACCMOD_1 ((uint32_t)0x20000000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5978
MartinJohnson 0:404f5a4f1385 5979 /****************** Bit definition for FMC_BWTR1 register ******************/
MartinJohnson 0:404f5a4f1385 5980 #define FMC_BWTR1_ADDSET ((uint32_t)0x0000000F) /*!<ADDSET[3:0] bits (Address setup phase duration) */
MartinJohnson 0:404f5a4f1385 5981 #define FMC_BWTR1_ADDSET_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5982 #define FMC_BWTR1_ADDSET_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5983 #define FMC_BWTR1_ADDSET_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 5984 #define FMC_BWTR1_ADDSET_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 5985
MartinJohnson 0:404f5a4f1385 5986 #define FMC_BWTR1_ADDHLD ((uint32_t)0x000000F0) /*!<ADDHLD[3:0] bits (Address-hold phase duration) */
MartinJohnson 0:404f5a4f1385 5987 #define FMC_BWTR1_ADDHLD_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5988 #define FMC_BWTR1_ADDHLD_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5989 #define FMC_BWTR1_ADDHLD_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 5990 #define FMC_BWTR1_ADDHLD_3 ((uint32_t)0x00000080) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 5991
MartinJohnson 0:404f5a4f1385 5992 #define FMC_BWTR1_DATAST ((uint32_t)0x0000FF00) /*!<DATAST [3:0] bits (Data-phase duration) */
MartinJohnson 0:404f5a4f1385 5993 #define FMC_BWTR1_DATAST_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 5994 #define FMC_BWTR1_DATAST_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 5995 #define FMC_BWTR1_DATAST_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 5996 #define FMC_BWTR1_DATAST_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 5997 #define FMC_BWTR1_DATAST_4 ((uint32_t)0x00001000) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 5998 #define FMC_BWTR1_DATAST_5 ((uint32_t)0x00002000) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 5999 #define FMC_BWTR1_DATAST_6 ((uint32_t)0x00004000) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 6000 #define FMC_BWTR1_DATAST_7 ((uint32_t)0x00008000) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 6001
MartinJohnson 0:404f5a4f1385 6002 #define FMC_BWTR1_CLKDIV ((uint32_t)0x00F00000) /*!<CLKDIV[3:0] bits (Clock divide ratio) */
MartinJohnson 0:404f5a4f1385 6003 #define FMC_BWTR1_CLKDIV_0 ((uint32_t)0x00100000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6004 #define FMC_BWTR1_CLKDIV_1 ((uint32_t)0x00200000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6005 #define FMC_BWTR1_CLKDIV_2 ((uint32_t)0x00400000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6006 #define FMC_BWTR1_CLKDIV_3 ((uint32_t)0x00800000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6007
MartinJohnson 0:404f5a4f1385 6008 #define FMC_BWTR1_DATLAT ((uint32_t)0x0F000000) /*!<DATLA[3:0] bits (Data latency) */
MartinJohnson 0:404f5a4f1385 6009 #define FMC_BWTR1_DATLAT_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6010 #define FMC_BWTR1_DATLAT_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6011 #define FMC_BWTR1_DATLAT_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6012 #define FMC_BWTR1_DATLAT_3 ((uint32_t)0x08000000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6013
MartinJohnson 0:404f5a4f1385 6014 #define FMC_BWTR1_ACCMOD ((uint32_t)0x30000000) /*!<ACCMOD[1:0] bits (Access mode) */
MartinJohnson 0:404f5a4f1385 6015 #define FMC_BWTR1_ACCMOD_0 ((uint32_t)0x10000000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6016 #define FMC_BWTR1_ACCMOD_1 ((uint32_t)0x20000000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6017
MartinJohnson 0:404f5a4f1385 6018 /****************** Bit definition for FMC_BWTR2 register ******************/
MartinJohnson 0:404f5a4f1385 6019 #define FMC_BWTR2_ADDSET ((uint32_t)0x0000000F) /*!<ADDSET[3:0] bits (Address setup phase duration) */
MartinJohnson 0:404f5a4f1385 6020 #define FMC_BWTR2_ADDSET_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6021 #define FMC_BWTR2_ADDSET_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6022 #define FMC_BWTR2_ADDSET_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6023 #define FMC_BWTR2_ADDSET_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6024
MartinJohnson 0:404f5a4f1385 6025 #define FMC_BWTR2_ADDHLD ((uint32_t)0x000000F0) /*!<ADDHLD[3:0] bits (Address-hold phase duration) */
MartinJohnson 0:404f5a4f1385 6026 #define FMC_BWTR2_ADDHLD_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6027 #define FMC_BWTR2_ADDHLD_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6028 #define FMC_BWTR2_ADDHLD_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6029 #define FMC_BWTR2_ADDHLD_3 ((uint32_t)0x00000080) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6030
MartinJohnson 0:404f5a4f1385 6031 #define FMC_BWTR2_DATAST ((uint32_t)0x0000FF00) /*!<DATAST [3:0] bits (Data-phase duration) */
MartinJohnson 0:404f5a4f1385 6032 #define FMC_BWTR2_DATAST_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6033 #define FMC_BWTR2_DATAST_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6034 #define FMC_BWTR2_DATAST_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6035 #define FMC_BWTR2_DATAST_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6036 #define FMC_BWTR2_DATAST_4 ((uint32_t)0x00001000) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 6037 #define FMC_BWTR2_DATAST_5 ((uint32_t)0x00002000) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 6038 #define FMC_BWTR2_DATAST_6 ((uint32_t)0x00004000) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 6039 #define FMC_BWTR2_DATAST_7 ((uint32_t)0x00008000) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 6040
MartinJohnson 0:404f5a4f1385 6041 #define FMC_BWTR2_CLKDIV ((uint32_t)0x00F00000) /*!<CLKDIV[3:0] bits (Clock divide ratio) */
MartinJohnson 0:404f5a4f1385 6042 #define FMC_BWTR2_CLKDIV_0 ((uint32_t)0x00100000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6043 #define FMC_BWTR2_CLKDIV_1 ((uint32_t)0x00200000) /*!<Bit 1*/
MartinJohnson 0:404f5a4f1385 6044 #define FMC_BWTR2_CLKDIV_2 ((uint32_t)0x00400000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6045 #define FMC_BWTR2_CLKDIV_3 ((uint32_t)0x00800000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6046
MartinJohnson 0:404f5a4f1385 6047 #define FMC_BWTR2_DATLAT ((uint32_t)0x0F000000) /*!<DATLA[3:0] bits (Data latency) */
MartinJohnson 0:404f5a4f1385 6048 #define FMC_BWTR2_DATLAT_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6049 #define FMC_BWTR2_DATLAT_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6050 #define FMC_BWTR2_DATLAT_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6051 #define FMC_BWTR2_DATLAT_3 ((uint32_t)0x08000000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6052
MartinJohnson 0:404f5a4f1385 6053 #define FMC_BWTR2_ACCMOD ((uint32_t)0x30000000) /*!<ACCMOD[1:0] bits (Access mode) */
MartinJohnson 0:404f5a4f1385 6054 #define FMC_BWTR2_ACCMOD_0 ((uint32_t)0x10000000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6055 #define FMC_BWTR2_ACCMOD_1 ((uint32_t)0x20000000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6056
MartinJohnson 0:404f5a4f1385 6057 /****************** Bit definition for FMC_BWTR3 register ******************/
MartinJohnson 0:404f5a4f1385 6058 #define FMC_BWTR3_ADDSET ((uint32_t)0x0000000F) /*!<ADDSET[3:0] bits (Address setup phase duration) */
MartinJohnson 0:404f5a4f1385 6059 #define FMC_BWTR3_ADDSET_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6060 #define FMC_BWTR3_ADDSET_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6061 #define FMC_BWTR3_ADDSET_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6062 #define FMC_BWTR3_ADDSET_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6063
MartinJohnson 0:404f5a4f1385 6064 #define FMC_BWTR3_ADDHLD ((uint32_t)0x000000F0) /*!<ADDHLD[3:0] bits (Address-hold phase duration) */
MartinJohnson 0:404f5a4f1385 6065 #define FMC_BWTR3_ADDHLD_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6066 #define FMC_BWTR3_ADDHLD_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6067 #define FMC_BWTR3_ADDHLD_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6068 #define FMC_BWTR3_ADDHLD_3 ((uint32_t)0x00000080) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6069
MartinJohnson 0:404f5a4f1385 6070 #define FMC_BWTR3_DATAST ((uint32_t)0x0000FF00) /*!<DATAST [3:0] bits (Data-phase duration) */
MartinJohnson 0:404f5a4f1385 6071 #define FMC_BWTR3_DATAST_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6072 #define FMC_BWTR3_DATAST_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6073 #define FMC_BWTR3_DATAST_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6074 #define FMC_BWTR3_DATAST_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6075 #define FMC_BWTR3_DATAST_4 ((uint32_t)0x00001000) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 6076 #define FMC_BWTR3_DATAST_5 ((uint32_t)0x00002000) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 6077 #define FMC_BWTR3_DATAST_6 ((uint32_t)0x00004000) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 6078 #define FMC_BWTR3_DATAST_7 ((uint32_t)0x00008000) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 6079
MartinJohnson 0:404f5a4f1385 6080 #define FMC_BWTR3_CLKDIV ((uint32_t)0x00F00000) /*!<CLKDIV[3:0] bits (Clock divide ratio) */
MartinJohnson 0:404f5a4f1385 6081 #define FMC_BWTR3_CLKDIV_0 ((uint32_t)0x00100000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6082 #define FMC_BWTR3_CLKDIV_1 ((uint32_t)0x00200000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6083 #define FMC_BWTR3_CLKDIV_2 ((uint32_t)0x00400000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6084 #define FMC_BWTR3_CLKDIV_3 ((uint32_t)0x00800000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6085
MartinJohnson 0:404f5a4f1385 6086 #define FMC_BWTR3_DATLAT ((uint32_t)0x0F000000) /*!<DATLA[3:0] bits (Data latency) */
MartinJohnson 0:404f5a4f1385 6087 #define FMC_BWTR3_DATLAT_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6088 #define FMC_BWTR3_DATLAT_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6089 #define FMC_BWTR3_DATLAT_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6090 #define FMC_BWTR3_DATLAT_3 ((uint32_t)0x08000000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6091
MartinJohnson 0:404f5a4f1385 6092 #define FMC_BWTR3_ACCMOD ((uint32_t)0x30000000) /*!<ACCMOD[1:0] bits (Access mode) */
MartinJohnson 0:404f5a4f1385 6093 #define FMC_BWTR3_ACCMOD_0 ((uint32_t)0x10000000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6094 #define FMC_BWTR3_ACCMOD_1 ((uint32_t)0x20000000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6095
MartinJohnson 0:404f5a4f1385 6096 /****************** Bit definition for FMC_BWTR4 register ******************/
MartinJohnson 0:404f5a4f1385 6097 #define FMC_BWTR4_ADDSET ((uint32_t)0x0000000F) /*!<ADDSET[3:0] bits (Address setup phase duration) */
MartinJohnson 0:404f5a4f1385 6098 #define FMC_BWTR4_ADDSET_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6099 #define FMC_BWTR4_ADDSET_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6100 #define FMC_BWTR4_ADDSET_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6101 #define FMC_BWTR4_ADDSET_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6102
MartinJohnson 0:404f5a4f1385 6103 #define FMC_BWTR4_ADDHLD ((uint32_t)0x000000F0) /*!<ADDHLD[3:0] bits (Address-hold phase duration) */
MartinJohnson 0:404f5a4f1385 6104 #define FMC_BWTR4_ADDHLD_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6105 #define FMC_BWTR4_ADDHLD_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6106 #define FMC_BWTR4_ADDHLD_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6107 #define FMC_BWTR4_ADDHLD_3 ((uint32_t)0x00000080) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6108
MartinJohnson 0:404f5a4f1385 6109 #define FMC_BWTR4_DATAST ((uint32_t)0x0000FF00) /*!<DATAST [3:0] bits (Data-phase duration) */
MartinJohnson 0:404f5a4f1385 6110 #define FMC_BWTR4_DATAST_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6111 #define FMC_BWTR4_DATAST_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6112 #define FMC_BWTR4_DATAST_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6113 #define FMC_BWTR4_DATAST_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6114 #define FMC_BWTR4_DATAST_4 ((uint32_t)0x00001000) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 6115 #define FMC_BWTR4_DATAST_5 ((uint32_t)0x00002000) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 6116 #define FMC_BWTR4_DATAST_6 ((uint32_t)0x00004000) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 6117 #define FMC_BWTR4_DATAST_7 ((uint32_t)0x00008000) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 6118
MartinJohnson 0:404f5a4f1385 6119 #define FMC_BWTR4_CLKDIV ((uint32_t)0x00F00000) /*!<CLKDIV[3:0] bits (Clock divide ratio) */
MartinJohnson 0:404f5a4f1385 6120 #define FMC_BWTR4_CLKDIV_0 ((uint32_t)0x00100000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6121 #define FMC_BWTR4_CLKDIV_1 ((uint32_t)0x00200000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6122 #define FMC_BWTR4_CLKDIV_2 ((uint32_t)0x00400000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6123 #define FMC_BWTR4_CLKDIV_3 ((uint32_t)0x00800000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6124
MartinJohnson 0:404f5a4f1385 6125 #define FMC_BWTR4_DATLAT ((uint32_t)0x0F000000) /*!<DATLA[3:0] bits (Data latency) */
MartinJohnson 0:404f5a4f1385 6126 #define FMC_BWTR4_DATLAT_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6127 #define FMC_BWTR4_DATLAT_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6128 #define FMC_BWTR4_DATLAT_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6129 #define FMC_BWTR4_DATLAT_3 ((uint32_t)0x08000000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6130
MartinJohnson 0:404f5a4f1385 6131 #define FMC_BWTR4_ACCMOD ((uint32_t)0x30000000) /*!<ACCMOD[1:0] bits (Access mode) */
MartinJohnson 0:404f5a4f1385 6132 #define FMC_BWTR4_ACCMOD_0 ((uint32_t)0x10000000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6133 #define FMC_BWTR4_ACCMOD_1 ((uint32_t)0x20000000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6134
MartinJohnson 0:404f5a4f1385 6135 /****************** Bit definition for FMC_PCR2 register *******************/
MartinJohnson 0:404f5a4f1385 6136 #define FMC_PCR2_PWAITEN ((uint32_t)0x00000002) /*!<Wait feature enable bit */
MartinJohnson 0:404f5a4f1385 6137 #define FMC_PCR2_PBKEN ((uint32_t)0x00000004) /*!<PC Card/NAND Flash memory bank enable bit */
MartinJohnson 0:404f5a4f1385 6138 #define FMC_PCR2_PTYP ((uint32_t)0x00000008) /*!<Memory type */
MartinJohnson 0:404f5a4f1385 6139
MartinJohnson 0:404f5a4f1385 6140 #define FMC_PCR2_PWID ((uint32_t)0x00000030) /*!<PWID[1:0] bits (NAND Flash databus width) */
MartinJohnson 0:404f5a4f1385 6141 #define FMC_PCR2_PWID_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6142 #define FMC_PCR2_PWID_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6143
MartinJohnson 0:404f5a4f1385 6144 #define FMC_PCR2_ECCEN ((uint32_t)0x00000040) /*!<ECC computation logic enable bit */
MartinJohnson 0:404f5a4f1385 6145
MartinJohnson 0:404f5a4f1385 6146 #define FMC_PCR2_TCLR ((uint32_t)0x00001E00) /*!<TCLR[3:0] bits (CLE to RE delay) */
MartinJohnson 0:404f5a4f1385 6147 #define FMC_PCR2_TCLR_0 ((uint32_t)0x00000200) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6148 #define FMC_PCR2_TCLR_1 ((uint32_t)0x00000400) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6149 #define FMC_PCR2_TCLR_2 ((uint32_t)0x00000800) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6150 #define FMC_PCR2_TCLR_3 ((uint32_t)0x00001000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6151
MartinJohnson 0:404f5a4f1385 6152 #define FMC_PCR2_TAR ((uint32_t)0x0001E000) /*!<TAR[3:0] bits (ALE to RE delay) */
MartinJohnson 0:404f5a4f1385 6153 #define FMC_PCR2_TAR_0 ((uint32_t)0x00002000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6154 #define FMC_PCR2_TAR_1 ((uint32_t)0x00004000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6155 #define FMC_PCR2_TAR_2 ((uint32_t)0x00008000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6156 #define FMC_PCR2_TAR_3 ((uint32_t)0x00010000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6157
MartinJohnson 0:404f5a4f1385 6158 #define FMC_PCR2_ECCPS ((uint32_t)0x000E0000) /*!<ECCPS[1:0] bits (ECC page size) */
MartinJohnson 0:404f5a4f1385 6159 #define FMC_PCR2_ECCPS_0 ((uint32_t)0x00020000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6160 #define FMC_PCR2_ECCPS_1 ((uint32_t)0x00040000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6161 #define FMC_PCR2_ECCPS_2 ((uint32_t)0x00080000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6162
MartinJohnson 0:404f5a4f1385 6163 /****************** Bit definition for FMC_PCR3 register *******************/
MartinJohnson 0:404f5a4f1385 6164 #define FMC_PCR3_PWAITEN ((uint32_t)0x00000002) /*!<Wait feature enable bit */
MartinJohnson 0:404f5a4f1385 6165 #define FMC_PCR3_PBKEN ((uint32_t)0x00000004) /*!<PC Card/NAND Flash memory bank enable bit */
MartinJohnson 0:404f5a4f1385 6166 #define FMC_PCR3_PTYP ((uint32_t)0x00000008) /*!<Memory type */
MartinJohnson 0:404f5a4f1385 6167
MartinJohnson 0:404f5a4f1385 6168 #define FMC_PCR3_PWID ((uint32_t)0x00000030) /*!<PWID[1:0] bits (NAND Flash databus width) */
MartinJohnson 0:404f5a4f1385 6169 #define FMC_PCR3_PWID_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6170 #define FMC_PCR3_PWID_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6171
MartinJohnson 0:404f5a4f1385 6172 #define FMC_PCR3_ECCEN ((uint32_t)0x00000040) /*!<ECC computation logic enable bit */
MartinJohnson 0:404f5a4f1385 6173
MartinJohnson 0:404f5a4f1385 6174 #define FMC_PCR3_TCLR ((uint32_t)0x00001E00) /*!<TCLR[3:0] bits (CLE to RE delay) */
MartinJohnson 0:404f5a4f1385 6175 #define FMC_PCR3_TCLR_0 ((uint32_t)0x00000200) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6176 #define FMC_PCR3_TCLR_1 ((uint32_t)0x00000400) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6177 #define FMC_PCR3_TCLR_2 ((uint32_t)0x00000800) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6178 #define FMC_PCR3_TCLR_3 ((uint32_t)0x00001000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6179
MartinJohnson 0:404f5a4f1385 6180 #define FMC_PCR3_TAR ((uint32_t)0x0001E000) /*!<TAR[3:0] bits (ALE to RE delay) */
MartinJohnson 0:404f5a4f1385 6181 #define FMC_PCR3_TAR_0 ((uint32_t)0x00002000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6182 #define FMC_PCR3_TAR_1 ((uint32_t)0x00004000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6183 #define FMC_PCR3_TAR_2 ((uint32_t)0x00008000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6184 #define FMC_PCR3_TAR_3 ((uint32_t)0x00010000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6185
MartinJohnson 0:404f5a4f1385 6186 #define FMC_PCR3_ECCPS ((uint32_t)0x000E0000) /*!<ECCPS[2:0] bits (ECC page size) */
MartinJohnson 0:404f5a4f1385 6187 #define FMC_PCR3_ECCPS_0 ((uint32_t)0x00020000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6188 #define FMC_PCR3_ECCPS_1 ((uint32_t)0x00040000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6189 #define FMC_PCR3_ECCPS_2 ((uint32_t)0x00080000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6190
MartinJohnson 0:404f5a4f1385 6191 /****************** Bit definition for FMC_PCR4 register *******************/
MartinJohnson 0:404f5a4f1385 6192 #define FMC_PCR4_PWAITEN ((uint32_t)0x00000002) /*!<Wait feature enable bit */
MartinJohnson 0:404f5a4f1385 6193 #define FMC_PCR4_PBKEN ((uint32_t)0x00000004) /*!<PC Card/NAND Flash memory bank enable bit */
MartinJohnson 0:404f5a4f1385 6194 #define FMC_PCR4_PTYP ((uint32_t)0x00000008) /*!<Memory type */
MartinJohnson 0:404f5a4f1385 6195
MartinJohnson 0:404f5a4f1385 6196 #define FMC_PCR4_PWID ((uint32_t)0x00000030) /*!<PWID[1:0] bits (NAND Flash databus width) */
MartinJohnson 0:404f5a4f1385 6197 #define FMC_PCR4_PWID_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6198 #define FMC_PCR4_PWID_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6199
MartinJohnson 0:404f5a4f1385 6200 #define FMC_PCR4_ECCEN ((uint32_t)0x00000040) /*!<ECC computation logic enable bit */
MartinJohnson 0:404f5a4f1385 6201
MartinJohnson 0:404f5a4f1385 6202 #define FMC_PCR4_TCLR ((uint32_t)0x00001E00) /*!<TCLR[3:0] bits (CLE to RE delay) */
MartinJohnson 0:404f5a4f1385 6203 #define FMC_PCR4_TCLR_0 ((uint32_t)0x00000200) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6204 #define FMC_PCR4_TCLR_1 ((uint32_t)0x00000400) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6205 #define FMC_PCR4_TCLR_2 ((uint32_t)0x00000800) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6206 #define FMC_PCR4_TCLR_3 ((uint32_t)0x00001000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6207
MartinJohnson 0:404f5a4f1385 6208 #define FMC_PCR4_TAR ((uint32_t)0x0001E000) /*!<TAR[3:0] bits (ALE to RE delay) */
MartinJohnson 0:404f5a4f1385 6209 #define FMC_PCR4_TAR_0 ((uint32_t)0x00002000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6210 #define FMC_PCR4_TAR_1 ((uint32_t)0x00004000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6211 #define FMC_PCR4_TAR_2 ((uint32_t)0x00008000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6212 #define FMC_PCR4_TAR_3 ((uint32_t)0x00010000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6213
MartinJohnson 0:404f5a4f1385 6214 #define FMC_PCR4_ECCPS ((uint32_t)0x000E0000) /*!<ECCPS[2:0] bits (ECC page size) */
MartinJohnson 0:404f5a4f1385 6215 #define FMC_PCR4_ECCPS_0 ((uint32_t)0x00020000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6216 #define FMC_PCR4_ECCPS_1 ((uint32_t)0x00040000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6217 #define FMC_PCR4_ECCPS_2 ((uint32_t)0x00080000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6218
MartinJohnson 0:404f5a4f1385 6219 /******************* Bit definition for FMC_SR2 register *******************/
MartinJohnson 0:404f5a4f1385 6220 #define FMC_SR2_IRS ((uint32_t)0x01) /*!<Interrupt Rising Edge status */
MartinJohnson 0:404f5a4f1385 6221 #define FMC_SR2_ILS ((uint32_t)0x02) /*!<Interrupt Level status */
MartinJohnson 0:404f5a4f1385 6222 #define FMC_SR2_IFS ((uint32_t)0x04) /*!<Interrupt Falling Edge status */
MartinJohnson 0:404f5a4f1385 6223 #define FMC_SR2_IREN ((uint32_t)0x08) /*!<Interrupt Rising Edge detection Enable bit */
MartinJohnson 0:404f5a4f1385 6224 #define FMC_SR2_ILEN ((uint32_t)0x10) /*!<Interrupt Level detection Enable bit */
MartinJohnson 0:404f5a4f1385 6225 #define FMC_SR2_IFEN ((uint32_t)0x20) /*!<Interrupt Falling Edge detection Enable bit */
MartinJohnson 0:404f5a4f1385 6226 #define FMC_SR2_FEMPT ((uint32_t)0x40) /*!<FIFO empty */
MartinJohnson 0:404f5a4f1385 6227
MartinJohnson 0:404f5a4f1385 6228 /******************* Bit definition for FMC_SR3 register *******************/
MartinJohnson 0:404f5a4f1385 6229 #define FMC_SR3_IRS ((uint32_t)0x01) /*!<Interrupt Rising Edge status */
MartinJohnson 0:404f5a4f1385 6230 #define FMC_SR3_ILS ((uint32_t)0x02) /*!<Interrupt Level status */
MartinJohnson 0:404f5a4f1385 6231 #define FMC_SR3_IFS ((uint32_t)0x04) /*!<Interrupt Falling Edge status */
MartinJohnson 0:404f5a4f1385 6232 #define FMC_SR3_IREN ((uint32_t)0x08) /*!<Interrupt Rising Edge detection Enable bit */
MartinJohnson 0:404f5a4f1385 6233 #define FMC_SR3_ILEN ((uint32_t)0x10) /*!<Interrupt Level detection Enable bit */
MartinJohnson 0:404f5a4f1385 6234 #define FMC_SR3_IFEN ((uint32_t)0x20) /*!<Interrupt Falling Edge detection Enable bit */
MartinJohnson 0:404f5a4f1385 6235 #define FMC_SR3_FEMPT ((uint32_t)0x40) /*!<FIFO empty */
MartinJohnson 0:404f5a4f1385 6236
MartinJohnson 0:404f5a4f1385 6237 /******************* Bit definition for FMC_SR4 register *******************/
MartinJohnson 0:404f5a4f1385 6238 #define FMC_SR4_IRS ((uint32_t)0x01) /*!<Interrupt Rising Edge status */
MartinJohnson 0:404f5a4f1385 6239 #define FMC_SR4_ILS ((uint32_t)0x02) /*!<Interrupt Level status */
MartinJohnson 0:404f5a4f1385 6240 #define FMC_SR4_IFS ((uint32_t)0x04) /*!<Interrupt Falling Edge status */
MartinJohnson 0:404f5a4f1385 6241 #define FMC_SR4_IREN ((uint32_t)0x08) /*!<Interrupt Rising Edge detection Enable bit */
MartinJohnson 0:404f5a4f1385 6242 #define FMC_SR4_ILEN ((uint32_t)0x10) /*!<Interrupt Level detection Enable bit */
MartinJohnson 0:404f5a4f1385 6243 #define FMC_SR4_IFEN ((uint32_t)0x20) /*!<Interrupt Falling Edge detection Enable bit */
MartinJohnson 0:404f5a4f1385 6244 #define FMC_SR4_FEMPT ((uint32_t)0x40) /*!<FIFO empty */
MartinJohnson 0:404f5a4f1385 6245
MartinJohnson 0:404f5a4f1385 6246 /****************** Bit definition for FMC_PMEM2 register ******************/
MartinJohnson 0:404f5a4f1385 6247 #define FMC_PMEM2_MEMSET2 ((uint32_t)0x000000FF) /*!<MEMSET2[7:0] bits (Common memory 2 setup time) */
MartinJohnson 0:404f5a4f1385 6248 #define FMC_PMEM2_MEMSET2_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6249 #define FMC_PMEM2_MEMSET2_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6250 #define FMC_PMEM2_MEMSET2_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6251 #define FMC_PMEM2_MEMSET2_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6252 #define FMC_PMEM2_MEMSET2_4 ((uint32_t)0x00000010) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 6253 #define FMC_PMEM2_MEMSET2_5 ((uint32_t)0x00000020) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 6254 #define FMC_PMEM2_MEMSET2_6 ((uint32_t)0x00000040) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 6255 #define FMC_PMEM2_MEMSET2_7 ((uint32_t)0x00000080) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 6256
MartinJohnson 0:404f5a4f1385 6257 #define FMC_PMEM2_MEMWAIT2 ((uint32_t)0x0000FF00) /*!<MEMWAIT2[7:0] bits (Common memory 2 wait time) */
MartinJohnson 0:404f5a4f1385 6258 #define FMC_PMEM2_MEMWAIT2_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6259 #define FMC_PMEM2_MEMWAIT2_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6260 #define FMC_PMEM2_MEMWAIT2_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6261 #define FMC_PMEM2_MEMWAIT2_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6262 #define FMC_PMEM2_MEMWAIT2_4 ((uint32_t)0x00001000) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 6263 #define FMC_PMEM2_MEMWAIT2_5 ((uint32_t)0x00002000) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 6264 #define FMC_PMEM2_MEMWAIT2_6 ((uint32_t)0x00004000) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 6265 #define FMC_PMEM2_MEMWAIT2_7 ((uint32_t)0x00008000) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 6266
MartinJohnson 0:404f5a4f1385 6267 #define FMC_PMEM2_MEMHOLD2 ((uint32_t)0x00FF0000) /*!<MEMHOLD2[7:0] bits (Common memory 2 hold time) */
MartinJohnson 0:404f5a4f1385 6268 #define FMC_PMEM2_MEMHOLD2_0 ((uint32_t)0x00010000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6269 #define FMC_PMEM2_MEMHOLD2_1 ((uint32_t)0x00020000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6270 #define FMC_PMEM2_MEMHOLD2_2 ((uint32_t)0x00040000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6271 #define FMC_PMEM2_MEMHOLD2_3 ((uint32_t)0x00080000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6272 #define FMC_PMEM2_MEMHOLD2_4 ((uint32_t)0x00100000) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 6273 #define FMC_PMEM2_MEMHOLD2_5 ((uint32_t)0x00200000) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 6274 #define FMC_PMEM2_MEMHOLD2_6 ((uint32_t)0x00400000) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 6275 #define FMC_PMEM2_MEMHOLD2_7 ((uint32_t)0x00800000) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 6276
MartinJohnson 0:404f5a4f1385 6277 #define FMC_PMEM2_MEMHIZ2 ((uint32_t)0xFF000000) /*!<MEMHIZ2[7:0] bits (Common memory 2 databus HiZ time) */
MartinJohnson 0:404f5a4f1385 6278 #define FMC_PMEM2_MEMHIZ2_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6279 #define FMC_PMEM2_MEMHIZ2_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6280 #define FMC_PMEM2_MEMHIZ2_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6281 #define FMC_PMEM2_MEMHIZ2_3 ((uint32_t)0x08000000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6282 #define FMC_PMEM2_MEMHIZ2_4 ((uint32_t)0x10000000) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 6283 #define FMC_PMEM2_MEMHIZ2_5 ((uint32_t)0x20000000) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 6284 #define FMC_PMEM2_MEMHIZ2_6 ((uint32_t)0x40000000) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 6285 #define FMC_PMEM2_MEMHIZ2_7 ((uint32_t)0x80000000) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 6286
MartinJohnson 0:404f5a4f1385 6287 /****************** Bit definition for FMC_PMEM3 register ******************/
MartinJohnson 0:404f5a4f1385 6288 #define FMC_PMEM3_MEMSET3 ((uint32_t)0x000000FF) /*!<MEMSET3[7:0] bits (Common memory 3 setup time) */
MartinJohnson 0:404f5a4f1385 6289 #define FMC_PMEM3_MEMSET3_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6290 #define FMC_PMEM3_MEMSET3_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6291 #define FMC_PMEM3_MEMSET3_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6292 #define FMC_PMEM3_MEMSET3_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6293 #define FMC_PMEM3_MEMSET3_4 ((uint32_t)0x00000010) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 6294 #define FMC_PMEM3_MEMSET3_5 ((uint32_t)0x00000020) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 6295 #define FMC_PMEM3_MEMSET3_6 ((uint32_t)0x00000040) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 6296 #define FMC_PMEM3_MEMSET3_7 ((uint32_t)0x00000080) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 6297
MartinJohnson 0:404f5a4f1385 6298 #define FMC_PMEM3_MEMWAIT3 ((uint32_t)0x0000FF00) /*!<MEMWAIT3[7:0] bits (Common memory 3 wait time) */
MartinJohnson 0:404f5a4f1385 6299 #define FMC_PMEM3_MEMWAIT3_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6300 #define FMC_PMEM3_MEMWAIT3_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6301 #define FMC_PMEM3_MEMWAIT3_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6302 #define FMC_PMEM3_MEMWAIT3_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6303 #define FMC_PMEM3_MEMWAIT3_4 ((uint32_t)0x00001000) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 6304 #define FMC_PMEM3_MEMWAIT3_5 ((uint32_t)0x00002000) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 6305 #define FMC_PMEM3_MEMWAIT3_6 ((uint32_t)0x00004000) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 6306 #define FMC_PMEM3_MEMWAIT3_7 ((uint32_t)0x00008000) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 6307
MartinJohnson 0:404f5a4f1385 6308 #define FMC_PMEM3_MEMHOLD3 ((uint32_t)0x00FF0000) /*!<MEMHOLD3[7:0] bits (Common memory 3 hold time) */
MartinJohnson 0:404f5a4f1385 6309 #define FMC_PMEM3_MEMHOLD3_0 ((uint32_t)0x00010000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6310 #define FMC_PMEM3_MEMHOLD3_1 ((uint32_t)0x00020000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6311 #define FMC_PMEM3_MEMHOLD3_2 ((uint32_t)0x00040000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6312 #define FMC_PMEM3_MEMHOLD3_3 ((uint32_t)0x00080000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6313 #define FMC_PMEM3_MEMHOLD3_4 ((uint32_t)0x00100000) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 6314 #define FMC_PMEM3_MEMHOLD3_5 ((uint32_t)0x00200000) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 6315 #define FMC_PMEM3_MEMHOLD3_6 ((uint32_t)0x00400000) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 6316 #define FMC_PMEM3_MEMHOLD3_7 ((uint32_t)0x00800000) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 6317
MartinJohnson 0:404f5a4f1385 6318 #define FMC_PMEM3_MEMHIZ3 ((uint32_t)0xFF000000) /*!<MEMHIZ3[7:0] bits (Common memory 3 databus HiZ time) */
MartinJohnson 0:404f5a4f1385 6319 #define FMC_PMEM3_MEMHIZ3_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6320 #define FMC_PMEM3_MEMHIZ3_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6321 #define FMC_PMEM3_MEMHIZ3_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6322 #define FMC_PMEM3_MEMHIZ3_3 ((uint32_t)0x08000000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6323 #define FMC_PMEM3_MEMHIZ3_4 ((uint32_t)0x10000000) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 6324 #define FMC_PMEM3_MEMHIZ3_5 ((uint32_t)0x20000000) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 6325 #define FMC_PMEM3_MEMHIZ3_6 ((uint32_t)0x40000000) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 6326 #define FMC_PMEM3_MEMHIZ3_7 ((uint32_t)0x80000000) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 6327
MartinJohnson 0:404f5a4f1385 6328 /****************** Bit definition for FMC_PMEM4 register ******************/
MartinJohnson 0:404f5a4f1385 6329 #define FMC_PMEM4_MEMSET4 ((uint32_t)0x000000FF) /*!<MEMSET4[7:0] bits (Common memory 4 setup time) */
MartinJohnson 0:404f5a4f1385 6330 #define FMC_PMEM4_MEMSET4_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6331 #define FMC_PMEM4_MEMSET4_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6332 #define FMC_PMEM4_MEMSET4_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6333 #define FMC_PMEM4_MEMSET4_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6334 #define FMC_PMEM4_MEMSET4_4 ((uint32_t)0x00000010) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 6335 #define FMC_PMEM4_MEMSET4_5 ((uint32_t)0x00000020) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 6336 #define FMC_PMEM4_MEMSET4_6 ((uint32_t)0x00000040) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 6337 #define FMC_PMEM4_MEMSET4_7 ((uint32_t)0x00000080) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 6338
MartinJohnson 0:404f5a4f1385 6339 #define FMC_PMEM4_MEMWAIT4 ((uint32_t)0x0000FF00) /*!<MEMWAIT4[7:0] bits (Common memory 4 wait time) */
MartinJohnson 0:404f5a4f1385 6340 #define FMC_PMEM4_MEMWAIT4_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6341 #define FMC_PMEM4_MEMWAIT4_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6342 #define FMC_PMEM4_MEMWAIT4_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6343 #define FMC_PMEM4_MEMWAIT4_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6344 #define FMC_PMEM4_MEMWAIT4_4 ((uint32_t)0x00001000) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 6345 #define FMC_PMEM4_MEMWAIT4_5 ((uint32_t)0x00002000) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 6346 #define FMC_PMEM4_MEMWAIT4_6 ((uint32_t)0x00004000) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 6347 #define FMC_PMEM4_MEMWAIT4_7 ((uint32_t)0x00008000) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 6348
MartinJohnson 0:404f5a4f1385 6349 #define FMC_PMEM4_MEMHOLD4 ((uint32_t)0x00FF0000) /*!<MEMHOLD4[7:0] bits (Common memory 4 hold time) */
MartinJohnson 0:404f5a4f1385 6350 #define FMC_PMEM4_MEMHOLD4_0 ((uint32_t)0x00010000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6351 #define FMC_PMEM4_MEMHOLD4_1 ((uint32_t)0x00020000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6352 #define FMC_PMEM4_MEMHOLD4_2 ((uint32_t)0x00040000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6353 #define FMC_PMEM4_MEMHOLD4_3 ((uint32_t)0x00080000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6354 #define FMC_PMEM4_MEMHOLD4_4 ((uint32_t)0x00100000) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 6355 #define FMC_PMEM4_MEMHOLD4_5 ((uint32_t)0x00200000) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 6356 #define FMC_PMEM4_MEMHOLD4_6 ((uint32_t)0x00400000) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 6357 #define FMC_PMEM4_MEMHOLD4_7 ((uint32_t)0x00800000) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 6358
MartinJohnson 0:404f5a4f1385 6359 #define FMC_PMEM4_MEMHIZ4 ((uint32_t)0xFF000000) /*!<MEMHIZ4[7:0] bits (Common memory 4 databus HiZ time) */
MartinJohnson 0:404f5a4f1385 6360 #define FMC_PMEM4_MEMHIZ4_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6361 #define FMC_PMEM4_MEMHIZ4_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6362 #define FMC_PMEM4_MEMHIZ4_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6363 #define FMC_PMEM4_MEMHIZ4_3 ((uint32_t)0x08000000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6364 #define FMC_PMEM4_MEMHIZ4_4 ((uint32_t)0x10000000) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 6365 #define FMC_PMEM4_MEMHIZ4_5 ((uint32_t)0x20000000) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 6366 #define FMC_PMEM4_MEMHIZ4_6 ((uint32_t)0x40000000) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 6367 #define FMC_PMEM4_MEMHIZ4_7 ((uint32_t)0x80000000) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 6368
MartinJohnson 0:404f5a4f1385 6369 /****************** Bit definition for FMC_PATT2 register ******************/
MartinJohnson 0:404f5a4f1385 6370 #define FMC_PATT2_ATTSET2 ((uint32_t)0x000000FF) /*!<ATTSET2[7:0] bits (Attribute memory 2 setup time) */
MartinJohnson 0:404f5a4f1385 6371 #define FMC_PATT2_ATTSET2_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6372 #define FMC_PATT2_ATTSET2_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6373 #define FMC_PATT2_ATTSET2_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6374 #define FMC_PATT2_ATTSET2_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6375 #define FMC_PATT2_ATTSET2_4 ((uint32_t)0x00000010) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 6376 #define FMC_PATT2_ATTSET2_5 ((uint32_t)0x00000020) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 6377 #define FMC_PATT2_ATTSET2_6 ((uint32_t)0x00000040) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 6378 #define FMC_PATT2_ATTSET2_7 ((uint32_t)0x00000080) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 6379
MartinJohnson 0:404f5a4f1385 6380 #define FMC_PATT2_ATTWAIT2 ((uint32_t)0x0000FF00) /*!<ATTWAIT2[7:0] bits (Attribute memory 2 wait time) */
MartinJohnson 0:404f5a4f1385 6381 #define FMC_PATT2_ATTWAIT2_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6382 #define FMC_PATT2_ATTWAIT2_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6383 #define FMC_PATT2_ATTWAIT2_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6384 #define FMC_PATT2_ATTWAIT2_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6385 #define FMC_PATT2_ATTWAIT2_4 ((uint32_t)0x00001000) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 6386 #define FMC_PATT2_ATTWAIT2_5 ((uint32_t)0x00002000) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 6387 #define FMC_PATT2_ATTWAIT2_6 ((uint32_t)0x00004000) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 6388 #define FMC_PATT2_ATTWAIT2_7 ((uint32_t)0x00008000) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 6389
MartinJohnson 0:404f5a4f1385 6390 #define FMC_PATT2_ATTHOLD2 ((uint32_t)0x00FF0000) /*!<ATTHOLD2[7:0] bits (Attribute memory 2 hold time) */
MartinJohnson 0:404f5a4f1385 6391 #define FMC_PATT2_ATTHOLD2_0 ((uint32_t)0x00010000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6392 #define FMC_PATT2_ATTHOLD2_1 ((uint32_t)0x00020000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6393 #define FMC_PATT2_ATTHOLD2_2 ((uint32_t)0x00040000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6394 #define FMC_PATT2_ATTHOLD2_3 ((uint32_t)0x00080000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6395 #define FMC_PATT2_ATTHOLD2_4 ((uint32_t)0x00100000) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 6396 #define FMC_PATT2_ATTHOLD2_5 ((uint32_t)0x00200000) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 6397 #define FMC_PATT2_ATTHOLD2_6 ((uint32_t)0x00400000) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 6398 #define FMC_PATT2_ATTHOLD2_7 ((uint32_t)0x00800000) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 6399
MartinJohnson 0:404f5a4f1385 6400 #define FMC_PATT2_ATTHIZ2 ((uint32_t)0xFF000000) /*!<ATTHIZ2[7:0] bits (Attribute memory 2 databus HiZ time) */
MartinJohnson 0:404f5a4f1385 6401 #define FMC_PATT2_ATTHIZ2_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6402 #define FMC_PATT2_ATTHIZ2_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6403 #define FMC_PATT2_ATTHIZ2_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6404 #define FMC_PATT2_ATTHIZ2_3 ((uint32_t)0x08000000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6405 #define FMC_PATT2_ATTHIZ2_4 ((uint32_t)0x10000000) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 6406 #define FMC_PATT2_ATTHIZ2_5 ((uint32_t)0x20000000) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 6407 #define FMC_PATT2_ATTHIZ2_6 ((uint32_t)0x40000000) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 6408 #define FMC_PATT2_ATTHIZ2_7 ((uint32_t)0x80000000) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 6409
MartinJohnson 0:404f5a4f1385 6410 /****************** Bit definition for FMC_PATT3 register ******************/
MartinJohnson 0:404f5a4f1385 6411 #define FMC_PATT3_ATTSET3 ((uint32_t)0x000000FF) /*!<ATTSET3[7:0] bits (Attribute memory 3 setup time) */
MartinJohnson 0:404f5a4f1385 6412 #define FMC_PATT3_ATTSET3_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6413 #define FMC_PATT3_ATTSET3_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6414 #define FMC_PATT3_ATTSET3_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6415 #define FMC_PATT3_ATTSET3_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6416 #define FMC_PATT3_ATTSET3_4 ((uint32_t)0x00000010) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 6417 #define FMC_PATT3_ATTSET3_5 ((uint32_t)0x00000020) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 6418 #define FMC_PATT3_ATTSET3_6 ((uint32_t)0x00000040) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 6419 #define FMC_PATT3_ATTSET3_7 ((uint32_t)0x00000080) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 6420
MartinJohnson 0:404f5a4f1385 6421 #define FMC_PATT3_ATTWAIT3 ((uint32_t)0x0000FF00) /*!<ATTWAIT3[7:0] bits (Attribute memory 3 wait time) */
MartinJohnson 0:404f5a4f1385 6422 #define FMC_PATT3_ATTWAIT3_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6423 #define FMC_PATT3_ATTWAIT3_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6424 #define FMC_PATT3_ATTWAIT3_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6425 #define FMC_PATT3_ATTWAIT3_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6426 #define FMC_PATT3_ATTWAIT3_4 ((uint32_t)0x00001000) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 6427 #define FMC_PATT3_ATTWAIT3_5 ((uint32_t)0x00002000) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 6428 #define FMC_PATT3_ATTWAIT3_6 ((uint32_t)0x00004000) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 6429 #define FMC_PATT3_ATTWAIT3_7 ((uint32_t)0x00008000) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 6430
MartinJohnson 0:404f5a4f1385 6431 #define FMC_PATT3_ATTHOLD3 ((uint32_t)0x00FF0000) /*!<ATTHOLD3[7:0] bits (Attribute memory 3 hold time) */
MartinJohnson 0:404f5a4f1385 6432 #define FMC_PATT3_ATTHOLD3_0 ((uint32_t)0x00010000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6433 #define FMC_PATT3_ATTHOLD3_1 ((uint32_t)0x00020000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6434 #define FMC_PATT3_ATTHOLD3_2 ((uint32_t)0x00040000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6435 #define FMC_PATT3_ATTHOLD3_3 ((uint32_t)0x00080000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6436 #define FMC_PATT3_ATTHOLD3_4 ((uint32_t)0x00100000) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 6437 #define FMC_PATT3_ATTHOLD3_5 ((uint32_t)0x00200000) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 6438 #define FMC_PATT3_ATTHOLD3_6 ((uint32_t)0x00400000) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 6439 #define FMC_PATT3_ATTHOLD3_7 ((uint32_t)0x00800000) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 6440
MartinJohnson 0:404f5a4f1385 6441 #define FMC_PATT3_ATTHIZ3 ((uint32_t)0xFF000000) /*!<ATTHIZ3[7:0] bits (Attribute memory 3 databus HiZ time) */
MartinJohnson 0:404f5a4f1385 6442 #define FMC_PATT3_ATTHIZ3_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6443 #define FMC_PATT3_ATTHIZ3_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6444 #define FMC_PATT3_ATTHIZ3_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6445 #define FMC_PATT3_ATTHIZ3_3 ((uint32_t)0x08000000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6446 #define FMC_PATT3_ATTHIZ3_4 ((uint32_t)0x10000000) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 6447 #define FMC_PATT3_ATTHIZ3_5 ((uint32_t)0x20000000) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 6448 #define FMC_PATT3_ATTHIZ3_6 ((uint32_t)0x40000000) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 6449 #define FMC_PATT3_ATTHIZ3_7 ((uint32_t)0x80000000) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 6450
MartinJohnson 0:404f5a4f1385 6451 /****************** Bit definition for FMC_PATT4 register ******************/
MartinJohnson 0:404f5a4f1385 6452 #define FMC_PATT4_ATTSET4 ((uint32_t)0x000000FF) /*!<ATTSET4[7:0] bits (Attribute memory 4 setup time) */
MartinJohnson 0:404f5a4f1385 6453 #define FMC_PATT4_ATTSET4_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6454 #define FMC_PATT4_ATTSET4_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6455 #define FMC_PATT4_ATTSET4_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6456 #define FMC_PATT4_ATTSET4_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6457 #define FMC_PATT4_ATTSET4_4 ((uint32_t)0x00000010) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 6458 #define FMC_PATT4_ATTSET4_5 ((uint32_t)0x00000020) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 6459 #define FMC_PATT4_ATTSET4_6 ((uint32_t)0x00000040) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 6460 #define FMC_PATT4_ATTSET4_7 ((uint32_t)0x00000080) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 6461
MartinJohnson 0:404f5a4f1385 6462 #define FMC_PATT4_ATTWAIT4 ((uint32_t)0x0000FF00) /*!<ATTWAIT4[7:0] bits (Attribute memory 4 wait time) */
MartinJohnson 0:404f5a4f1385 6463 #define FMC_PATT4_ATTWAIT4_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6464 #define FMC_PATT4_ATTWAIT4_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6465 #define FMC_PATT4_ATTWAIT4_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6466 #define FMC_PATT4_ATTWAIT4_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6467 #define FMC_PATT4_ATTWAIT4_4 ((uint32_t)0x00001000) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 6468 #define FMC_PATT4_ATTWAIT4_5 ((uint32_t)0x00002000) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 6469 #define FMC_PATT4_ATTWAIT4_6 ((uint32_t)0x00004000) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 6470 #define FMC_PATT4_ATTWAIT4_7 ((uint32_t)0x00008000) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 6471
MartinJohnson 0:404f5a4f1385 6472 #define FMC_PATT4_ATTHOLD4 ((uint32_t)0x00FF0000) /*!<ATTHOLD4[7:0] bits (Attribute memory 4 hold time) */
MartinJohnson 0:404f5a4f1385 6473 #define FMC_PATT4_ATTHOLD4_0 ((uint32_t)0x00010000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6474 #define FMC_PATT4_ATTHOLD4_1 ((uint32_t)0x00020000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6475 #define FMC_PATT4_ATTHOLD4_2 ((uint32_t)0x00040000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6476 #define FMC_PATT4_ATTHOLD4_3 ((uint32_t)0x00080000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6477 #define FMC_PATT4_ATTHOLD4_4 ((uint32_t)0x00100000) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 6478 #define FMC_PATT4_ATTHOLD4_5 ((uint32_t)0x00200000) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 6479 #define FMC_PATT4_ATTHOLD4_6 ((uint32_t)0x00400000) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 6480 #define FMC_PATT4_ATTHOLD4_7 ((uint32_t)0x00800000) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 6481
MartinJohnson 0:404f5a4f1385 6482 #define FMC_PATT4_ATTHIZ4 ((uint32_t)0xFF000000) /*!<ATTHIZ4[7:0] bits (Attribute memory 4 databus HiZ time) */
MartinJohnson 0:404f5a4f1385 6483 #define FMC_PATT4_ATTHIZ4_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6484 #define FMC_PATT4_ATTHIZ4_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6485 #define FMC_PATT4_ATTHIZ4_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6486 #define FMC_PATT4_ATTHIZ4_3 ((uint32_t)0x08000000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6487 #define FMC_PATT4_ATTHIZ4_4 ((uint32_t)0x10000000) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 6488 #define FMC_PATT4_ATTHIZ4_5 ((uint32_t)0x20000000) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 6489 #define FMC_PATT4_ATTHIZ4_6 ((uint32_t)0x40000000) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 6490 #define FMC_PATT4_ATTHIZ4_7 ((uint32_t)0x80000000) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 6491
MartinJohnson 0:404f5a4f1385 6492 /****************** Bit definition for FMC_PIO4 register *******************/
MartinJohnson 0:404f5a4f1385 6493 #define FMC_PIO4_IOSET4 ((uint32_t)0x000000FF) /*!<IOSET4[7:0] bits (I/O 4 setup time) */
MartinJohnson 0:404f5a4f1385 6494 #define FMC_PIO4_IOSET4_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6495 #define FMC_PIO4_IOSET4_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6496 #define FMC_PIO4_IOSET4_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6497 #define FMC_PIO4_IOSET4_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6498 #define FMC_PIO4_IOSET4_4 ((uint32_t)0x00000010) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 6499 #define FMC_PIO4_IOSET4_5 ((uint32_t)0x00000020) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 6500 #define FMC_PIO4_IOSET4_6 ((uint32_t)0x00000040) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 6501 #define FMC_PIO4_IOSET4_7 ((uint32_t)0x00000080) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 6502
MartinJohnson 0:404f5a4f1385 6503 #define FMC_PIO4_IOWAIT4 ((uint32_t)0x0000FF00) /*!<IOWAIT4[7:0] bits (I/O 4 wait time) */
MartinJohnson 0:404f5a4f1385 6504 #define FMC_PIO4_IOWAIT4_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6505 #define FMC_PIO4_IOWAIT4_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6506 #define FMC_PIO4_IOWAIT4_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6507 #define FMC_PIO4_IOWAIT4_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6508 #define FMC_PIO4_IOWAIT4_4 ((uint32_t)0x00001000) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 6509 #define FMC_PIO4_IOWAIT4_5 ((uint32_t)0x00002000) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 6510 #define FMC_PIO4_IOWAIT4_6 ((uint32_t)0x00004000) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 6511 #define FMC_PIO4_IOWAIT4_7 ((uint32_t)0x00008000) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 6512
MartinJohnson 0:404f5a4f1385 6513 #define FMC_PIO4_IOHOLD4 ((uint32_t)0x00FF0000) /*!<IOHOLD4[7:0] bits (I/O 4 hold time) */
MartinJohnson 0:404f5a4f1385 6514 #define FMC_PIO4_IOHOLD4_0 ((uint32_t)0x00010000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6515 #define FMC_PIO4_IOHOLD4_1 ((uint32_t)0x00020000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6516 #define FMC_PIO4_IOHOLD4_2 ((uint32_t)0x00040000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6517 #define FMC_PIO4_IOHOLD4_3 ((uint32_t)0x00080000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6518 #define FMC_PIO4_IOHOLD4_4 ((uint32_t)0x00100000) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 6519 #define FMC_PIO4_IOHOLD4_5 ((uint32_t)0x00200000) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 6520 #define FMC_PIO4_IOHOLD4_6 ((uint32_t)0x00400000) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 6521 #define FMC_PIO4_IOHOLD4_7 ((uint32_t)0x00800000) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 6522
MartinJohnson 0:404f5a4f1385 6523 #define FMC_PIO4_IOHIZ4 ((uint32_t)0xFF000000) /*!<IOHIZ4[7:0] bits (I/O 4 databus HiZ time) */
MartinJohnson 0:404f5a4f1385 6524 #define FMC_PIO4_IOHIZ4_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6525 #define FMC_PIO4_IOHIZ4_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6526 #define FMC_PIO4_IOHIZ4_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6527 #define FMC_PIO4_IOHIZ4_3 ((uint32_t)0x08000000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6528 #define FMC_PIO4_IOHIZ4_4 ((uint32_t)0x10000000) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 6529 #define FMC_PIO4_IOHIZ4_5 ((uint32_t)0x20000000) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 6530 #define FMC_PIO4_IOHIZ4_6 ((uint32_t)0x40000000) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 6531 #define FMC_PIO4_IOHIZ4_7 ((uint32_t)0x80000000) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 6532
MartinJohnson 0:404f5a4f1385 6533 /****************** Bit definition for FMC_ECCR2 register ******************/
MartinJohnson 0:404f5a4f1385 6534 #define FMC_ECCR2_ECC2 ((uint32_t)0xFFFFFFFF) /*!<ECC result */
MartinJohnson 0:404f5a4f1385 6535
MartinJohnson 0:404f5a4f1385 6536 /****************** Bit definition for FMC_ECCR3 register ******************/
MartinJohnson 0:404f5a4f1385 6537 #define FMC_ECCR3_ECC3 ((uint32_t)0xFFFFFFFF) /*!<ECC result */
MartinJohnson 0:404f5a4f1385 6538
MartinJohnson 0:404f5a4f1385 6539 /****************** Bit definition for FMC_SDCR1 register ******************/
MartinJohnson 0:404f5a4f1385 6540 #define FMC_SDCR1_NC ((uint32_t)0x00000003) /*!<NC[1:0] bits (Number of column bits) */
MartinJohnson 0:404f5a4f1385 6541 #define FMC_SDCR1_NC_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6542 #define FMC_SDCR1_NC_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6543
MartinJohnson 0:404f5a4f1385 6544 #define FMC_SDCR1_NR ((uint32_t)0x0000000C) /*!<NR[1:0] bits (Number of row bits) */
MartinJohnson 0:404f5a4f1385 6545 #define FMC_SDCR1_NR_0 ((uint32_t)0x00000004) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6546 #define FMC_SDCR1_NR_1 ((uint32_t)0x00000008) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6547
MartinJohnson 0:404f5a4f1385 6548 #define FMC_SDCR1_MWID ((uint32_t)0x00000030) /*!<NR[1:0] bits (Number of row bits) */
MartinJohnson 0:404f5a4f1385 6549 #define FMC_SDCR1_MWID_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6550 #define FMC_SDCR1_MWID_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6551
MartinJohnson 0:404f5a4f1385 6552 #define FMC_SDCR1_NB ((uint32_t)0x00000040) /*!<Number of internal bank */
MartinJohnson 0:404f5a4f1385 6553
MartinJohnson 0:404f5a4f1385 6554 #define FMC_SDCR1_CAS ((uint32_t)0x00000180) /*!<CAS[1:0] bits (CAS latency) */
MartinJohnson 0:404f5a4f1385 6555 #define FMC_SDCR1_CAS_0 ((uint32_t)0x00000080) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6556 #define FMC_SDCR1_CAS_1 ((uint32_t)0x00000100) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6557
MartinJohnson 0:404f5a4f1385 6558 #define FMC_SDCR1_WP ((uint32_t)0x00000200) /*!<Write protection */
MartinJohnson 0:404f5a4f1385 6559
MartinJohnson 0:404f5a4f1385 6560 #define FMC_SDCR1_SDCLK ((uint32_t)0x00000C00) /*!<SDRAM clock configuration */
MartinJohnson 0:404f5a4f1385 6561 #define FMC_SDCR1_SDCLK_0 ((uint32_t)0x00000400) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6562 #define FMC_SDCR1_SDCLK_1 ((uint32_t)0x00000800) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6563
MartinJohnson 0:404f5a4f1385 6564 #define FMC_SDCR1_RBURST ((uint32_t)0x00001000) /*!<Read burst */
MartinJohnson 0:404f5a4f1385 6565
MartinJohnson 0:404f5a4f1385 6566 #define FMC_SDCR1_RPIPE ((uint32_t)0x00006000) /*!<Write protection */
MartinJohnson 0:404f5a4f1385 6567 #define FMC_SDCR1_RPIPE_0 ((uint32_t)0x00002000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6568 #define FMC_SDCR1_RPIPE_1 ((uint32_t)0x00004000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6569
MartinJohnson 0:404f5a4f1385 6570 /****************** Bit definition for FMC_SDCR2 register ******************/
MartinJohnson 0:404f5a4f1385 6571 #define FMC_SDCR2_NC ((uint32_t)0x00000003) /*!<NC[1:0] bits (Number of column bits) */
MartinJohnson 0:404f5a4f1385 6572 #define FMC_SDCR2_NC_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6573 #define FMC_SDCR2_NC_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6574
MartinJohnson 0:404f5a4f1385 6575 #define FMC_SDCR2_NR ((uint32_t)0x0000000C) /*!<NR[1:0] bits (Number of row bits) */
MartinJohnson 0:404f5a4f1385 6576 #define FMC_SDCR2_NR_0 ((uint32_t)0x00000004) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6577 #define FMC_SDCR2_NR_1 ((uint32_t)0x00000008) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6578
MartinJohnson 0:404f5a4f1385 6579 #define FMC_SDCR2_MWID ((uint32_t)0x00000030) /*!<NR[1:0] bits (Number of row bits) */
MartinJohnson 0:404f5a4f1385 6580 #define FMC_SDCR2_MWID_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6581 #define FMC_SDCR2_MWID_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6582
MartinJohnson 0:404f5a4f1385 6583 #define FMC_SDCR2_NB ((uint32_t)0x00000040) /*!<Number of internal bank */
MartinJohnson 0:404f5a4f1385 6584
MartinJohnson 0:404f5a4f1385 6585 #define FMC_SDCR2_CAS ((uint32_t)0x00000180) /*!<CAS[1:0] bits (CAS latency) */
MartinJohnson 0:404f5a4f1385 6586 #define FMC_SDCR2_CAS_0 ((uint32_t)0x00000080) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6587 #define FMC_SDCR2_CAS_1 ((uint32_t)0x00000100) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6588
MartinJohnson 0:404f5a4f1385 6589 #define FMC_SDCR2_WP ((uint32_t)0x00000200) /*!<Write protection */
MartinJohnson 0:404f5a4f1385 6590
MartinJohnson 0:404f5a4f1385 6591 #define FMC_SDCR2_SDCLK ((uint32_t)0x00000C00) /*!<SDCLK[1:0] (SDRAM clock configuration) */
MartinJohnson 0:404f5a4f1385 6592 #define FMC_SDCR2_SDCLK_0 ((uint32_t)0x00000400) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6593 #define FMC_SDCR2_SDCLK_1 ((uint32_t)0x00000800) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6594
MartinJohnson 0:404f5a4f1385 6595 #define FMC_SDCR2_RBURST ((uint32_t)0x00001000) /*!<Read burst */
MartinJohnson 0:404f5a4f1385 6596
MartinJohnson 0:404f5a4f1385 6597 #define FMC_SDCR2_RPIPE ((uint32_t)0x00006000) /*!<RPIPE[1:0](Read pipe) */
MartinJohnson 0:404f5a4f1385 6598 #define FMC_SDCR2_RPIPE_0 ((uint32_t)0x00002000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6599 #define FMC_SDCR2_RPIPE_1 ((uint32_t)0x00004000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6600
MartinJohnson 0:404f5a4f1385 6601 /****************** Bit definition for FMC_SDTR1 register ******************/
MartinJohnson 0:404f5a4f1385 6602 #define FMC_SDTR1_TMRD ((uint32_t)0x0000000F) /*!<TMRD[3:0] bits (Load mode register to active) */
MartinJohnson 0:404f5a4f1385 6603 #define FMC_SDTR1_TMRD_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6604 #define FMC_SDTR1_TMRD_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6605 #define FMC_SDTR1_TMRD_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6606 #define FMC_SDTR1_TMRD_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6607
MartinJohnson 0:404f5a4f1385 6608 #define FMC_SDTR1_TXSR ((uint32_t)0x000000F0) /*!<TXSR[3:0] bits (Exit self refresh) */
MartinJohnson 0:404f5a4f1385 6609 #define FMC_SDTR1_TXSR_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6610 #define FMC_SDTR1_TXSR_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6611 #define FMC_SDTR1_TXSR_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6612 #define FMC_SDTR1_TXSR_3 ((uint32_t)0x00000080) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6613
MartinJohnson 0:404f5a4f1385 6614 #define FMC_SDTR1_TRAS ((uint32_t)0x00000F00) /*!<TRAS[3:0] bits (Self refresh time) */
MartinJohnson 0:404f5a4f1385 6615 #define FMC_SDTR1_TRAS_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6616 #define FMC_SDTR1_TRAS_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6617 #define FMC_SDTR1_TRAS_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6618 #define FMC_SDTR1_TRAS_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6619
MartinJohnson 0:404f5a4f1385 6620 #define FMC_SDTR1_TRC ((uint32_t)0x0000F000) /*!<TRC[2:0] bits (Row cycle delay) */
MartinJohnson 0:404f5a4f1385 6621 #define FMC_SDTR1_TRC_0 ((uint32_t)0x00001000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6622 #define FMC_SDTR1_TRC_1 ((uint32_t)0x00002000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6623 #define FMC_SDTR1_TRC_2 ((uint32_t)0x00004000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6624
MartinJohnson 0:404f5a4f1385 6625 #define FMC_SDTR1_TWR ((uint32_t)0x000F0000) /*!<TRC[2:0] bits (Write recovery delay) */
MartinJohnson 0:404f5a4f1385 6626 #define FMC_SDTR1_TWR_0 ((uint32_t)0x00010000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6627 #define FMC_SDTR1_TWR_1 ((uint32_t)0x00020000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6628 #define FMC_SDTR1_TWR_2 ((uint32_t)0x00040000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6629
MartinJohnson 0:404f5a4f1385 6630 #define FMC_SDTR1_TRP ((uint32_t)0x00F00000) /*!<TRP[2:0] bits (Row precharge delay) */
MartinJohnson 0:404f5a4f1385 6631 #define FMC_SDTR1_TRP_0 ((uint32_t)0x00100000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6632 #define FMC_SDTR1_TRP_1 ((uint32_t)0x00200000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6633 #define FMC_SDTR1_TRP_2 ((uint32_t)0x00400000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6634
MartinJohnson 0:404f5a4f1385 6635 #define FMC_SDTR1_TRCD ((uint32_t)0x0F000000) /*!<TRP[2:0] bits (Row to column delay) */
MartinJohnson 0:404f5a4f1385 6636 #define FMC_SDTR1_TRCD_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6637 #define FMC_SDTR1_TRCD_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6638 #define FMC_SDTR1_TRCD_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6639
MartinJohnson 0:404f5a4f1385 6640 /****************** Bit definition for FMC_SDTR2 register ******************/
MartinJohnson 0:404f5a4f1385 6641 #define FMC_SDTR2_TMRD ((uint32_t)0x0000000F) /*!<TMRD[3:0] bits (Load mode register to active) */
MartinJohnson 0:404f5a4f1385 6642 #define FMC_SDTR2_TMRD_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6643 #define FMC_SDTR2_TMRD_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6644 #define FMC_SDTR2_TMRD_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6645 #define FMC_SDTR2_TMRD_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6646
MartinJohnson 0:404f5a4f1385 6647 #define FMC_SDTR2_TXSR ((uint32_t)0x000000F0) /*!<TXSR[3:0] bits (Exit self refresh) */
MartinJohnson 0:404f5a4f1385 6648 #define FMC_SDTR2_TXSR_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6649 #define FMC_SDTR2_TXSR_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6650 #define FMC_SDTR2_TXSR_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6651 #define FMC_SDTR2_TXSR_3 ((uint32_t)0x00000080) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6652
MartinJohnson 0:404f5a4f1385 6653 #define FMC_SDTR2_TRAS ((uint32_t)0x00000F00) /*!<TRAS[3:0] bits (Self refresh time) */
MartinJohnson 0:404f5a4f1385 6654 #define FMC_SDTR2_TRAS_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6655 #define FMC_SDTR2_TRAS_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6656 #define FMC_SDTR2_TRAS_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6657 #define FMC_SDTR2_TRAS_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6658
MartinJohnson 0:404f5a4f1385 6659 #define FMC_SDTR2_TRC ((uint32_t)0x0000F000) /*!<TRC[2:0] bits (Row cycle delay) */
MartinJohnson 0:404f5a4f1385 6660 #define FMC_SDTR2_TRC_0 ((uint32_t)0x00001000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6661 #define FMC_SDTR2_TRC_1 ((uint32_t)0x00002000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6662 #define FMC_SDTR2_TRC_2 ((uint32_t)0x00004000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6663
MartinJohnson 0:404f5a4f1385 6664 #define FMC_SDTR2_TWR ((uint32_t)0x000F0000) /*!<TRC[2:0] bits (Write recovery delay) */
MartinJohnson 0:404f5a4f1385 6665 #define FMC_SDTR2_TWR_0 ((uint32_t)0x00010000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6666 #define FMC_SDTR2_TWR_1 ((uint32_t)0x00020000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6667 #define FMC_SDTR2_TWR_2 ((uint32_t)0x00040000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6668
MartinJohnson 0:404f5a4f1385 6669 #define FMC_SDTR2_TRP ((uint32_t)0x00F00000) /*!<TRP[2:0] bits (Row precharge delay) */
MartinJohnson 0:404f5a4f1385 6670 #define FMC_SDTR2_TRP_0 ((uint32_t)0x00100000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6671 #define FMC_SDTR2_TRP_1 ((uint32_t)0x00200000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6672 #define FMC_SDTR2_TRP_2 ((uint32_t)0x00400000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6673
MartinJohnson 0:404f5a4f1385 6674 #define FMC_SDTR2_TRCD ((uint32_t)0x0F000000) /*!<TRP[2:0] bits (Row to column delay) */
MartinJohnson 0:404f5a4f1385 6675 #define FMC_SDTR2_TRCD_0 ((uint32_t)0x01000000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6676 #define FMC_SDTR2_TRCD_1 ((uint32_t)0x02000000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6677 #define FMC_SDTR2_TRCD_2 ((uint32_t)0x04000000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6678
MartinJohnson 0:404f5a4f1385 6679 /****************** Bit definition for FMC_SDCMR register ******************/
MartinJohnson 0:404f5a4f1385 6680 #define FMC_SDCMR_MODE ((uint32_t)0x00000007) /*!<MODE[2:0] bits (Command mode) */
MartinJohnson 0:404f5a4f1385 6681 #define FMC_SDCMR_MODE_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6682 #define FMC_SDCMR_MODE_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6683 #define FMC_SDCMR_MODE_2 ((uint32_t)0x00000003) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6684
MartinJohnson 0:404f5a4f1385 6685 #define FMC_SDCMR_CTB2 ((uint32_t)0x00000008) /*!<Command target 2 */
MartinJohnson 0:404f5a4f1385 6686
MartinJohnson 0:404f5a4f1385 6687 #define FMC_SDCMR_CTB1 ((uint32_t)0x00000010) /*!<Command target 1 */
MartinJohnson 0:404f5a4f1385 6688
MartinJohnson 0:404f5a4f1385 6689 #define FMC_SDCMR_NRFS ((uint32_t)0x000001E0) /*!<NRFS[3:0] bits (Number of auto-refresh) */
MartinJohnson 0:404f5a4f1385 6690 #define FMC_SDCMR_NRFS_0 ((uint32_t)0x00000020) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6691 #define FMC_SDCMR_NRFS_1 ((uint32_t)0x00000040) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6692 #define FMC_SDCMR_NRFS_2 ((uint32_t)0x00000080) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 6693 #define FMC_SDCMR_NRFS_3 ((uint32_t)0x00000100) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 6694
MartinJohnson 0:404f5a4f1385 6695 #define FMC_SDCMR_MRD ((uint32_t)0x003FFE00) /*!<MRD[12:0] bits (Mode register definition) */
MartinJohnson 0:404f5a4f1385 6696
MartinJohnson 0:404f5a4f1385 6697 /****************** Bit definition for FMC_SDRTR register ******************/
MartinJohnson 0:404f5a4f1385 6698 #define FMC_SDRTR_CRE ((uint32_t)0x00000001) /*!<Clear refresh error flag */
MartinJohnson 0:404f5a4f1385 6699
MartinJohnson 0:404f5a4f1385 6700 #define FMC_SDRTR_COUNT ((uint32_t)0x00003FFE) /*!<COUNT[12:0] bits (Refresh timer count) */
MartinJohnson 0:404f5a4f1385 6701
MartinJohnson 0:404f5a4f1385 6702 #define FMC_SDRTR_REIE ((uint32_t)0x00004000) /*!<RES interrupt enable */
MartinJohnson 0:404f5a4f1385 6703
MartinJohnson 0:404f5a4f1385 6704 /****************** Bit definition for FMC_SDSR register ******************/
MartinJohnson 0:404f5a4f1385 6705 #define FMC_SDSR_RE ((uint32_t)0x00000001) /*!<Refresh error flag */
MartinJohnson 0:404f5a4f1385 6706
MartinJohnson 0:404f5a4f1385 6707 #define FMC_SDSR_MODES1 ((uint32_t)0x00000006) /*!<MODES1[1:0]bits (Status mode for bank 1) */
MartinJohnson 0:404f5a4f1385 6708 #define FMC_SDSR_MODES1_0 ((uint32_t)0x00000002) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6709 #define FMC_SDSR_MODES1_1 ((uint32_t)0x00000004) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6710
MartinJohnson 0:404f5a4f1385 6711 #define FMC_SDSR_MODES2 ((uint32_t)0x00000018) /*!<MODES2[1:0]bits (Status mode for bank 2) */
MartinJohnson 0:404f5a4f1385 6712 #define FMC_SDSR_MODES2_0 ((uint32_t)0x00000008) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 6713 #define FMC_SDSR_MODES2_1 ((uint32_t)0x00000010) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 6714 #define FMC_SDSR_BUSY ((uint32_t)0x00000020) /*!<Busy status */
MartinJohnson 0:404f5a4f1385 6715
MartinJohnson 0:404f5a4f1385 6716 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 6717 /* */
MartinJohnson 0:404f5a4f1385 6718 /* General Purpose I/O (GPIO) */
MartinJohnson 0:404f5a4f1385 6719 /* */
MartinJohnson 0:404f5a4f1385 6720 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 6721 /******************* Bit definition for GPIO_MODER register *****************/
MartinJohnson 0:404f5a4f1385 6722 #define GPIO_MODER_MODER0 ((uint32_t)0x00000003)
MartinJohnson 0:404f5a4f1385 6723 #define GPIO_MODER_MODER0_0 ((uint32_t)0x00000001)
MartinJohnson 0:404f5a4f1385 6724 #define GPIO_MODER_MODER0_1 ((uint32_t)0x00000002)
MartinJohnson 0:404f5a4f1385 6725 #define GPIO_MODER_MODER1 ((uint32_t)0x0000000C)
MartinJohnson 0:404f5a4f1385 6726 #define GPIO_MODER_MODER1_0 ((uint32_t)0x00000004)
MartinJohnson 0:404f5a4f1385 6727 #define GPIO_MODER_MODER1_1 ((uint32_t)0x00000008)
MartinJohnson 0:404f5a4f1385 6728 #define GPIO_MODER_MODER2 ((uint32_t)0x00000030)
MartinJohnson 0:404f5a4f1385 6729 #define GPIO_MODER_MODER2_0 ((uint32_t)0x00000010)
MartinJohnson 0:404f5a4f1385 6730 #define GPIO_MODER_MODER2_1 ((uint32_t)0x00000020)
MartinJohnson 0:404f5a4f1385 6731 #define GPIO_MODER_MODER3 ((uint32_t)0x000000C0)
MartinJohnson 0:404f5a4f1385 6732 #define GPIO_MODER_MODER3_0 ((uint32_t)0x00000040)
MartinJohnson 0:404f5a4f1385 6733 #define GPIO_MODER_MODER3_1 ((uint32_t)0x00000080)
MartinJohnson 0:404f5a4f1385 6734 #define GPIO_MODER_MODER4 ((uint32_t)0x00000300)
MartinJohnson 0:404f5a4f1385 6735 #define GPIO_MODER_MODER4_0 ((uint32_t)0x00000100)
MartinJohnson 0:404f5a4f1385 6736 #define GPIO_MODER_MODER4_1 ((uint32_t)0x00000200)
MartinJohnson 0:404f5a4f1385 6737 #define GPIO_MODER_MODER5 ((uint32_t)0x00000C00)
MartinJohnson 0:404f5a4f1385 6738 #define GPIO_MODER_MODER5_0 ((uint32_t)0x00000400)
MartinJohnson 0:404f5a4f1385 6739 #define GPIO_MODER_MODER5_1 ((uint32_t)0x00000800)
MartinJohnson 0:404f5a4f1385 6740 #define GPIO_MODER_MODER6 ((uint32_t)0x00003000)
MartinJohnson 0:404f5a4f1385 6741 #define GPIO_MODER_MODER6_0 ((uint32_t)0x00001000)
MartinJohnson 0:404f5a4f1385 6742 #define GPIO_MODER_MODER6_1 ((uint32_t)0x00002000)
MartinJohnson 0:404f5a4f1385 6743 #define GPIO_MODER_MODER7 ((uint32_t)0x0000C000)
MartinJohnson 0:404f5a4f1385 6744 #define GPIO_MODER_MODER7_0 ((uint32_t)0x00004000)
MartinJohnson 0:404f5a4f1385 6745 #define GPIO_MODER_MODER7_1 ((uint32_t)0x00008000)
MartinJohnson 0:404f5a4f1385 6746 #define GPIO_MODER_MODER8 ((uint32_t)0x00030000)
MartinJohnson 0:404f5a4f1385 6747 #define GPIO_MODER_MODER8_0 ((uint32_t)0x00010000)
MartinJohnson 0:404f5a4f1385 6748 #define GPIO_MODER_MODER8_1 ((uint32_t)0x00020000)
MartinJohnson 0:404f5a4f1385 6749 #define GPIO_MODER_MODER9 ((uint32_t)0x000C0000)
MartinJohnson 0:404f5a4f1385 6750 #define GPIO_MODER_MODER9_0 ((uint32_t)0x00040000)
MartinJohnson 0:404f5a4f1385 6751 #define GPIO_MODER_MODER9_1 ((uint32_t)0x00080000)
MartinJohnson 0:404f5a4f1385 6752 #define GPIO_MODER_MODER10 ((uint32_t)0x00300000)
MartinJohnson 0:404f5a4f1385 6753 #define GPIO_MODER_MODER10_0 ((uint32_t)0x00100000)
MartinJohnson 0:404f5a4f1385 6754 #define GPIO_MODER_MODER10_1 ((uint32_t)0x00200000)
MartinJohnson 0:404f5a4f1385 6755 #define GPIO_MODER_MODER11 ((uint32_t)0x00C00000)
MartinJohnson 0:404f5a4f1385 6756 #define GPIO_MODER_MODER11_0 ((uint32_t)0x00400000)
MartinJohnson 0:404f5a4f1385 6757 #define GPIO_MODER_MODER11_1 ((uint32_t)0x00800000)
MartinJohnson 0:404f5a4f1385 6758 #define GPIO_MODER_MODER12 ((uint32_t)0x03000000)
MartinJohnson 0:404f5a4f1385 6759 #define GPIO_MODER_MODER12_0 ((uint32_t)0x01000000)
MartinJohnson 0:404f5a4f1385 6760 #define GPIO_MODER_MODER12_1 ((uint32_t)0x02000000)
MartinJohnson 0:404f5a4f1385 6761 #define GPIO_MODER_MODER13 ((uint32_t)0x0C000000)
MartinJohnson 0:404f5a4f1385 6762 #define GPIO_MODER_MODER13_0 ((uint32_t)0x04000000)
MartinJohnson 0:404f5a4f1385 6763 #define GPIO_MODER_MODER13_1 ((uint32_t)0x08000000)
MartinJohnson 0:404f5a4f1385 6764 #define GPIO_MODER_MODER14 ((uint32_t)0x30000000)
MartinJohnson 0:404f5a4f1385 6765 #define GPIO_MODER_MODER14_0 ((uint32_t)0x10000000)
MartinJohnson 0:404f5a4f1385 6766 #define GPIO_MODER_MODER14_1 ((uint32_t)0x20000000)
MartinJohnson 0:404f5a4f1385 6767 #define GPIO_MODER_MODER15 ((uint32_t)0xC0000000)
MartinJohnson 0:404f5a4f1385 6768 #define GPIO_MODER_MODER15_0 ((uint32_t)0x40000000)
MartinJohnson 0:404f5a4f1385 6769 #define GPIO_MODER_MODER15_1 ((uint32_t)0x80000000)
MartinJohnson 0:404f5a4f1385 6770
MartinJohnson 0:404f5a4f1385 6771
MartinJohnson 0:404f5a4f1385 6772 /****************** Bit definition for GPIO_OTYPER register *****************/
MartinJohnson 0:404f5a4f1385 6773 #define GPIO_OTYPER_OT_0 ((uint32_t)0x00000001)
MartinJohnson 0:404f5a4f1385 6774 #define GPIO_OTYPER_OT_1 ((uint32_t)0x00000002)
MartinJohnson 0:404f5a4f1385 6775 #define GPIO_OTYPER_OT_2 ((uint32_t)0x00000004)
MartinJohnson 0:404f5a4f1385 6776 #define GPIO_OTYPER_OT_3 ((uint32_t)0x00000008)
MartinJohnson 0:404f5a4f1385 6777 #define GPIO_OTYPER_OT_4 ((uint32_t)0x00000010)
MartinJohnson 0:404f5a4f1385 6778 #define GPIO_OTYPER_OT_5 ((uint32_t)0x00000020)
MartinJohnson 0:404f5a4f1385 6779 #define GPIO_OTYPER_OT_6 ((uint32_t)0x00000040)
MartinJohnson 0:404f5a4f1385 6780 #define GPIO_OTYPER_OT_7 ((uint32_t)0x00000080)
MartinJohnson 0:404f5a4f1385 6781 #define GPIO_OTYPER_OT_8 ((uint32_t)0x00000100)
MartinJohnson 0:404f5a4f1385 6782 #define GPIO_OTYPER_OT_9 ((uint32_t)0x00000200)
MartinJohnson 0:404f5a4f1385 6783 #define GPIO_OTYPER_OT_10 ((uint32_t)0x00000400)
MartinJohnson 0:404f5a4f1385 6784 #define GPIO_OTYPER_OT_11 ((uint32_t)0x00000800)
MartinJohnson 0:404f5a4f1385 6785 #define GPIO_OTYPER_OT_12 ((uint32_t)0x00001000)
MartinJohnson 0:404f5a4f1385 6786 #define GPIO_OTYPER_OT_13 ((uint32_t)0x00002000)
MartinJohnson 0:404f5a4f1385 6787 #define GPIO_OTYPER_OT_14 ((uint32_t)0x00004000)
MartinJohnson 0:404f5a4f1385 6788 #define GPIO_OTYPER_OT_15 ((uint32_t)0x00008000)
MartinJohnson 0:404f5a4f1385 6789
MartinJohnson 0:404f5a4f1385 6790
MartinJohnson 0:404f5a4f1385 6791 /**************** Bit definition for GPIO_OSPEEDR register ******************/
MartinJohnson 0:404f5a4f1385 6792 #define GPIO_OSPEEDER_OSPEEDR0 ((uint32_t)0x00000003)
MartinJohnson 0:404f5a4f1385 6793 #define GPIO_OSPEEDER_OSPEEDR0_0 ((uint32_t)0x00000001)
MartinJohnson 0:404f5a4f1385 6794 #define GPIO_OSPEEDER_OSPEEDR0_1 ((uint32_t)0x00000002)
MartinJohnson 0:404f5a4f1385 6795 #define GPIO_OSPEEDER_OSPEEDR1 ((uint32_t)0x0000000C)
MartinJohnson 0:404f5a4f1385 6796 #define GPIO_OSPEEDER_OSPEEDR1_0 ((uint32_t)0x00000004)
MartinJohnson 0:404f5a4f1385 6797 #define GPIO_OSPEEDER_OSPEEDR1_1 ((uint32_t)0x00000008)
MartinJohnson 0:404f5a4f1385 6798 #define GPIO_OSPEEDER_OSPEEDR2 ((uint32_t)0x00000030)
MartinJohnson 0:404f5a4f1385 6799 #define GPIO_OSPEEDER_OSPEEDR2_0 ((uint32_t)0x00000010)
MartinJohnson 0:404f5a4f1385 6800 #define GPIO_OSPEEDER_OSPEEDR2_1 ((uint32_t)0x00000020)
MartinJohnson 0:404f5a4f1385 6801 #define GPIO_OSPEEDER_OSPEEDR3 ((uint32_t)0x000000C0)
MartinJohnson 0:404f5a4f1385 6802 #define GPIO_OSPEEDER_OSPEEDR3_0 ((uint32_t)0x00000040)
MartinJohnson 0:404f5a4f1385 6803 #define GPIO_OSPEEDER_OSPEEDR3_1 ((uint32_t)0x00000080)
MartinJohnson 0:404f5a4f1385 6804 #define GPIO_OSPEEDER_OSPEEDR4 ((uint32_t)0x00000300)
MartinJohnson 0:404f5a4f1385 6805 #define GPIO_OSPEEDER_OSPEEDR4_0 ((uint32_t)0x00000100)
MartinJohnson 0:404f5a4f1385 6806 #define GPIO_OSPEEDER_OSPEEDR4_1 ((uint32_t)0x00000200)
MartinJohnson 0:404f5a4f1385 6807 #define GPIO_OSPEEDER_OSPEEDR5 ((uint32_t)0x00000C00)
MartinJohnson 0:404f5a4f1385 6808 #define GPIO_OSPEEDER_OSPEEDR5_0 ((uint32_t)0x00000400)
MartinJohnson 0:404f5a4f1385 6809 #define GPIO_OSPEEDER_OSPEEDR5_1 ((uint32_t)0x00000800)
MartinJohnson 0:404f5a4f1385 6810 #define GPIO_OSPEEDER_OSPEEDR6 ((uint32_t)0x00003000)
MartinJohnson 0:404f5a4f1385 6811 #define GPIO_OSPEEDER_OSPEEDR6_0 ((uint32_t)0x00001000)
MartinJohnson 0:404f5a4f1385 6812 #define GPIO_OSPEEDER_OSPEEDR6_1 ((uint32_t)0x00002000)
MartinJohnson 0:404f5a4f1385 6813 #define GPIO_OSPEEDER_OSPEEDR7 ((uint32_t)0x0000C000)
MartinJohnson 0:404f5a4f1385 6814 #define GPIO_OSPEEDER_OSPEEDR7_0 ((uint32_t)0x00004000)
MartinJohnson 0:404f5a4f1385 6815 #define GPIO_OSPEEDER_OSPEEDR7_1 ((uint32_t)0x00008000)
MartinJohnson 0:404f5a4f1385 6816 #define GPIO_OSPEEDER_OSPEEDR8 ((uint32_t)0x00030000)
MartinJohnson 0:404f5a4f1385 6817 #define GPIO_OSPEEDER_OSPEEDR8_0 ((uint32_t)0x00010000)
MartinJohnson 0:404f5a4f1385 6818 #define GPIO_OSPEEDER_OSPEEDR8_1 ((uint32_t)0x00020000)
MartinJohnson 0:404f5a4f1385 6819 #define GPIO_OSPEEDER_OSPEEDR9 ((uint32_t)0x000C0000)
MartinJohnson 0:404f5a4f1385 6820 #define GPIO_OSPEEDER_OSPEEDR9_0 ((uint32_t)0x00040000)
MartinJohnson 0:404f5a4f1385 6821 #define GPIO_OSPEEDER_OSPEEDR9_1 ((uint32_t)0x00080000)
MartinJohnson 0:404f5a4f1385 6822 #define GPIO_OSPEEDER_OSPEEDR10 ((uint32_t)0x00300000)
MartinJohnson 0:404f5a4f1385 6823 #define GPIO_OSPEEDER_OSPEEDR10_0 ((uint32_t)0x00100000)
MartinJohnson 0:404f5a4f1385 6824 #define GPIO_OSPEEDER_OSPEEDR10_1 ((uint32_t)0x00200000)
MartinJohnson 0:404f5a4f1385 6825 #define GPIO_OSPEEDER_OSPEEDR11 ((uint32_t)0x00C00000)
MartinJohnson 0:404f5a4f1385 6826 #define GPIO_OSPEEDER_OSPEEDR11_0 ((uint32_t)0x00400000)
MartinJohnson 0:404f5a4f1385 6827 #define GPIO_OSPEEDER_OSPEEDR11_1 ((uint32_t)0x00800000)
MartinJohnson 0:404f5a4f1385 6828 #define GPIO_OSPEEDER_OSPEEDR12 ((uint32_t)0x03000000)
MartinJohnson 0:404f5a4f1385 6829 #define GPIO_OSPEEDER_OSPEEDR12_0 ((uint32_t)0x01000000)
MartinJohnson 0:404f5a4f1385 6830 #define GPIO_OSPEEDER_OSPEEDR12_1 ((uint32_t)0x02000000)
MartinJohnson 0:404f5a4f1385 6831 #define GPIO_OSPEEDER_OSPEEDR13 ((uint32_t)0x0C000000)
MartinJohnson 0:404f5a4f1385 6832 #define GPIO_OSPEEDER_OSPEEDR13_0 ((uint32_t)0x04000000)
MartinJohnson 0:404f5a4f1385 6833 #define GPIO_OSPEEDER_OSPEEDR13_1 ((uint32_t)0x08000000)
MartinJohnson 0:404f5a4f1385 6834 #define GPIO_OSPEEDER_OSPEEDR14 ((uint32_t)0x30000000)
MartinJohnson 0:404f5a4f1385 6835 #define GPIO_OSPEEDER_OSPEEDR14_0 ((uint32_t)0x10000000)
MartinJohnson 0:404f5a4f1385 6836 #define GPIO_OSPEEDER_OSPEEDR14_1 ((uint32_t)0x20000000)
MartinJohnson 0:404f5a4f1385 6837 #define GPIO_OSPEEDER_OSPEEDR15 ((uint32_t)0xC0000000)
MartinJohnson 0:404f5a4f1385 6838 #define GPIO_OSPEEDER_OSPEEDR15_0 ((uint32_t)0x40000000)
MartinJohnson 0:404f5a4f1385 6839 #define GPIO_OSPEEDER_OSPEEDR15_1 ((uint32_t)0x80000000)
MartinJohnson 0:404f5a4f1385 6840
MartinJohnson 0:404f5a4f1385 6841 /******************* Bit definition for GPIO_PUPDR register ******************/
MartinJohnson 0:404f5a4f1385 6842 #define GPIO_PUPDR_PUPDR0 ((uint32_t)0x00000003)
MartinJohnson 0:404f5a4f1385 6843 #define GPIO_PUPDR_PUPDR0_0 ((uint32_t)0x00000001)
MartinJohnson 0:404f5a4f1385 6844 #define GPIO_PUPDR_PUPDR0_1 ((uint32_t)0x00000002)
MartinJohnson 0:404f5a4f1385 6845 #define GPIO_PUPDR_PUPDR1 ((uint32_t)0x0000000C)
MartinJohnson 0:404f5a4f1385 6846 #define GPIO_PUPDR_PUPDR1_0 ((uint32_t)0x00000004)
MartinJohnson 0:404f5a4f1385 6847 #define GPIO_PUPDR_PUPDR1_1 ((uint32_t)0x00000008)
MartinJohnson 0:404f5a4f1385 6848 #define GPIO_PUPDR_PUPDR2 ((uint32_t)0x00000030)
MartinJohnson 0:404f5a4f1385 6849 #define GPIO_PUPDR_PUPDR2_0 ((uint32_t)0x00000010)
MartinJohnson 0:404f5a4f1385 6850 #define GPIO_PUPDR_PUPDR2_1 ((uint32_t)0x00000020)
MartinJohnson 0:404f5a4f1385 6851 #define GPIO_PUPDR_PUPDR3 ((uint32_t)0x000000C0)
MartinJohnson 0:404f5a4f1385 6852 #define GPIO_PUPDR_PUPDR3_0 ((uint32_t)0x00000040)
MartinJohnson 0:404f5a4f1385 6853 #define GPIO_PUPDR_PUPDR3_1 ((uint32_t)0x00000080)
MartinJohnson 0:404f5a4f1385 6854 #define GPIO_PUPDR_PUPDR4 ((uint32_t)0x00000300)
MartinJohnson 0:404f5a4f1385 6855 #define GPIO_PUPDR_PUPDR4_0 ((uint32_t)0x00000100)
MartinJohnson 0:404f5a4f1385 6856 #define GPIO_PUPDR_PUPDR4_1 ((uint32_t)0x00000200)
MartinJohnson 0:404f5a4f1385 6857 #define GPIO_PUPDR_PUPDR5 ((uint32_t)0x00000C00)
MartinJohnson 0:404f5a4f1385 6858 #define GPIO_PUPDR_PUPDR5_0 ((uint32_t)0x00000400)
MartinJohnson 0:404f5a4f1385 6859 #define GPIO_PUPDR_PUPDR5_1 ((uint32_t)0x00000800)
MartinJohnson 0:404f5a4f1385 6860 #define GPIO_PUPDR_PUPDR6 ((uint32_t)0x00003000)
MartinJohnson 0:404f5a4f1385 6861 #define GPIO_PUPDR_PUPDR6_0 ((uint32_t)0x00001000)
MartinJohnson 0:404f5a4f1385 6862 #define GPIO_PUPDR_PUPDR6_1 ((uint32_t)0x00002000)
MartinJohnson 0:404f5a4f1385 6863 #define GPIO_PUPDR_PUPDR7 ((uint32_t)0x0000C000)
MartinJohnson 0:404f5a4f1385 6864 #define GPIO_PUPDR_PUPDR7_0 ((uint32_t)0x00004000)
MartinJohnson 0:404f5a4f1385 6865 #define GPIO_PUPDR_PUPDR7_1 ((uint32_t)0x00008000)
MartinJohnson 0:404f5a4f1385 6866 #define GPIO_PUPDR_PUPDR8 ((uint32_t)0x00030000)
MartinJohnson 0:404f5a4f1385 6867 #define GPIO_PUPDR_PUPDR8_0 ((uint32_t)0x00010000)
MartinJohnson 0:404f5a4f1385 6868 #define GPIO_PUPDR_PUPDR8_1 ((uint32_t)0x00020000)
MartinJohnson 0:404f5a4f1385 6869 #define GPIO_PUPDR_PUPDR9 ((uint32_t)0x000C0000)
MartinJohnson 0:404f5a4f1385 6870 #define GPIO_PUPDR_PUPDR9_0 ((uint32_t)0x00040000)
MartinJohnson 0:404f5a4f1385 6871 #define GPIO_PUPDR_PUPDR9_1 ((uint32_t)0x00080000)
MartinJohnson 0:404f5a4f1385 6872 #define GPIO_PUPDR_PUPDR10 ((uint32_t)0x00300000)
MartinJohnson 0:404f5a4f1385 6873 #define GPIO_PUPDR_PUPDR10_0 ((uint32_t)0x00100000)
MartinJohnson 0:404f5a4f1385 6874 #define GPIO_PUPDR_PUPDR10_1 ((uint32_t)0x00200000)
MartinJohnson 0:404f5a4f1385 6875 #define GPIO_PUPDR_PUPDR11 ((uint32_t)0x00C00000)
MartinJohnson 0:404f5a4f1385 6876 #define GPIO_PUPDR_PUPDR11_0 ((uint32_t)0x00400000)
MartinJohnson 0:404f5a4f1385 6877 #define GPIO_PUPDR_PUPDR11_1 ((uint32_t)0x00800000)
MartinJohnson 0:404f5a4f1385 6878 #define GPIO_PUPDR_PUPDR12 ((uint32_t)0x03000000)
MartinJohnson 0:404f5a4f1385 6879 #define GPIO_PUPDR_PUPDR12_0 ((uint32_t)0x01000000)
MartinJohnson 0:404f5a4f1385 6880 #define GPIO_PUPDR_PUPDR12_1 ((uint32_t)0x02000000)
MartinJohnson 0:404f5a4f1385 6881 #define GPIO_PUPDR_PUPDR13 ((uint32_t)0x0C000000)
MartinJohnson 0:404f5a4f1385 6882 #define GPIO_PUPDR_PUPDR13_0 ((uint32_t)0x04000000)
MartinJohnson 0:404f5a4f1385 6883 #define GPIO_PUPDR_PUPDR13_1 ((uint32_t)0x08000000)
MartinJohnson 0:404f5a4f1385 6884 #define GPIO_PUPDR_PUPDR14 ((uint32_t)0x30000000)
MartinJohnson 0:404f5a4f1385 6885 #define GPIO_PUPDR_PUPDR14_0 ((uint32_t)0x10000000)
MartinJohnson 0:404f5a4f1385 6886 #define GPIO_PUPDR_PUPDR14_1 ((uint32_t)0x20000000)
MartinJohnson 0:404f5a4f1385 6887 #define GPIO_PUPDR_PUPDR15 ((uint32_t)0xC0000000)
MartinJohnson 0:404f5a4f1385 6888 #define GPIO_PUPDR_PUPDR15_0 ((uint32_t)0x40000000)
MartinJohnson 0:404f5a4f1385 6889 #define GPIO_PUPDR_PUPDR15_1 ((uint32_t)0x80000000)
MartinJohnson 0:404f5a4f1385 6890
MartinJohnson 0:404f5a4f1385 6891 /******************* Bit definition for GPIO_IDR register *******************/
MartinJohnson 0:404f5a4f1385 6892 #define GPIO_IDR_0 ((uint32_t)0x00000001)
MartinJohnson 0:404f5a4f1385 6893 #define GPIO_IDR_1 ((uint32_t)0x00000002)
MartinJohnson 0:404f5a4f1385 6894 #define GPIO_IDR_2 ((uint32_t)0x00000004)
MartinJohnson 0:404f5a4f1385 6895 #define GPIO_IDR_3 ((uint32_t)0x00000008)
MartinJohnson 0:404f5a4f1385 6896 #define GPIO_IDR_4 ((uint32_t)0x00000010)
MartinJohnson 0:404f5a4f1385 6897 #define GPIO_IDR_5 ((uint32_t)0x00000020)
MartinJohnson 0:404f5a4f1385 6898 #define GPIO_IDR_6 ((uint32_t)0x00000040)
MartinJohnson 0:404f5a4f1385 6899 #define GPIO_IDR_7 ((uint32_t)0x00000080)
MartinJohnson 0:404f5a4f1385 6900 #define GPIO_IDR_8 ((uint32_t)0x00000100)
MartinJohnson 0:404f5a4f1385 6901 #define GPIO_IDR_9 ((uint32_t)0x00000200)
MartinJohnson 0:404f5a4f1385 6902 #define GPIO_IDR_10 ((uint32_t)0x00000400)
MartinJohnson 0:404f5a4f1385 6903 #define GPIO_IDR_11 ((uint32_t)0x00000800)
MartinJohnson 0:404f5a4f1385 6904 #define GPIO_IDR_12 ((uint32_t)0x00001000)
MartinJohnson 0:404f5a4f1385 6905 #define GPIO_IDR_13 ((uint32_t)0x00002000)
MartinJohnson 0:404f5a4f1385 6906 #define GPIO_IDR_14 ((uint32_t)0x00004000)
MartinJohnson 0:404f5a4f1385 6907 #define GPIO_IDR_15 ((uint32_t)0x00008000)
MartinJohnson 0:404f5a4f1385 6908
MartinJohnson 0:404f5a4f1385 6909 /****************** Bit definition for GPIO_ODR register ********************/
MartinJohnson 0:404f5a4f1385 6910 #define GPIO_ODR_0 ((uint32_t)0x00000001)
MartinJohnson 0:404f5a4f1385 6911 #define GPIO_ODR_1 ((uint32_t)0x00000002)
MartinJohnson 0:404f5a4f1385 6912 #define GPIO_ODR_2 ((uint32_t)0x00000004)
MartinJohnson 0:404f5a4f1385 6913 #define GPIO_ODR_3 ((uint32_t)0x00000008)
MartinJohnson 0:404f5a4f1385 6914 #define GPIO_ODR_4 ((uint32_t)0x00000010)
MartinJohnson 0:404f5a4f1385 6915 #define GPIO_ODR_5 ((uint32_t)0x00000020)
MartinJohnson 0:404f5a4f1385 6916 #define GPIO_ODR_6 ((uint32_t)0x00000040)
MartinJohnson 0:404f5a4f1385 6917 #define GPIO_ODR_7 ((uint32_t)0x00000080)
MartinJohnson 0:404f5a4f1385 6918 #define GPIO_ODR_8 ((uint32_t)0x00000100)
MartinJohnson 0:404f5a4f1385 6919 #define GPIO_ODR_9 ((uint32_t)0x00000200)
MartinJohnson 0:404f5a4f1385 6920 #define GPIO_ODR_10 ((uint32_t)0x00000400)
MartinJohnson 0:404f5a4f1385 6921 #define GPIO_ODR_11 ((uint32_t)0x00000800)
MartinJohnson 0:404f5a4f1385 6922 #define GPIO_ODR_12 ((uint32_t)0x00001000)
MartinJohnson 0:404f5a4f1385 6923 #define GPIO_ODR_13 ((uint32_t)0x00002000)
MartinJohnson 0:404f5a4f1385 6924 #define GPIO_ODR_14 ((uint32_t)0x00004000)
MartinJohnson 0:404f5a4f1385 6925 #define GPIO_ODR_15 ((uint32_t)0x00008000)
MartinJohnson 0:404f5a4f1385 6926
MartinJohnson 0:404f5a4f1385 6927 /****************** Bit definition for GPIO_BSRR register ********************/
MartinJohnson 0:404f5a4f1385 6928 #define GPIO_BSRR_BS_0 ((uint32_t)0x00000001)
MartinJohnson 0:404f5a4f1385 6929 #define GPIO_BSRR_BS_1 ((uint32_t)0x00000002)
MartinJohnson 0:404f5a4f1385 6930 #define GPIO_BSRR_BS_2 ((uint32_t)0x00000004)
MartinJohnson 0:404f5a4f1385 6931 #define GPIO_BSRR_BS_3 ((uint32_t)0x00000008)
MartinJohnson 0:404f5a4f1385 6932 #define GPIO_BSRR_BS_4 ((uint32_t)0x00000010)
MartinJohnson 0:404f5a4f1385 6933 #define GPIO_BSRR_BS_5 ((uint32_t)0x00000020)
MartinJohnson 0:404f5a4f1385 6934 #define GPIO_BSRR_BS_6 ((uint32_t)0x00000040)
MartinJohnson 0:404f5a4f1385 6935 #define GPIO_BSRR_BS_7 ((uint32_t)0x00000080)
MartinJohnson 0:404f5a4f1385 6936 #define GPIO_BSRR_BS_8 ((uint32_t)0x00000100)
MartinJohnson 0:404f5a4f1385 6937 #define GPIO_BSRR_BS_9 ((uint32_t)0x00000200)
MartinJohnson 0:404f5a4f1385 6938 #define GPIO_BSRR_BS_10 ((uint32_t)0x00000400)
MartinJohnson 0:404f5a4f1385 6939 #define GPIO_BSRR_BS_11 ((uint32_t)0x00000800)
MartinJohnson 0:404f5a4f1385 6940 #define GPIO_BSRR_BS_12 ((uint32_t)0x00001000)
MartinJohnson 0:404f5a4f1385 6941 #define GPIO_BSRR_BS_13 ((uint32_t)0x00002000)
MartinJohnson 0:404f5a4f1385 6942 #define GPIO_BSRR_BS_14 ((uint32_t)0x00004000)
MartinJohnson 0:404f5a4f1385 6943 #define GPIO_BSRR_BS_15 ((uint32_t)0x00008000)
MartinJohnson 0:404f5a4f1385 6944 #define GPIO_BSRR_BR_0 ((uint32_t)0x00010000)
MartinJohnson 0:404f5a4f1385 6945 #define GPIO_BSRR_BR_1 ((uint32_t)0x00020000)
MartinJohnson 0:404f5a4f1385 6946 #define GPIO_BSRR_BR_2 ((uint32_t)0x00040000)
MartinJohnson 0:404f5a4f1385 6947 #define GPIO_BSRR_BR_3 ((uint32_t)0x00080000)
MartinJohnson 0:404f5a4f1385 6948 #define GPIO_BSRR_BR_4 ((uint32_t)0x00100000)
MartinJohnson 0:404f5a4f1385 6949 #define GPIO_BSRR_BR_5 ((uint32_t)0x00200000)
MartinJohnson 0:404f5a4f1385 6950 #define GPIO_BSRR_BR_6 ((uint32_t)0x00400000)
MartinJohnson 0:404f5a4f1385 6951 #define GPIO_BSRR_BR_7 ((uint32_t)0x00800000)
MartinJohnson 0:404f5a4f1385 6952 #define GPIO_BSRR_BR_8 ((uint32_t)0x01000000)
MartinJohnson 0:404f5a4f1385 6953 #define GPIO_BSRR_BR_9 ((uint32_t)0x02000000)
MartinJohnson 0:404f5a4f1385 6954 #define GPIO_BSRR_BR_10 ((uint32_t)0x04000000)
MartinJohnson 0:404f5a4f1385 6955 #define GPIO_BSRR_BR_11 ((uint32_t)0x08000000)
MartinJohnson 0:404f5a4f1385 6956 #define GPIO_BSRR_BR_12 ((uint32_t)0x10000000)
MartinJohnson 0:404f5a4f1385 6957 #define GPIO_BSRR_BR_13 ((uint32_t)0x20000000)
MartinJohnson 0:404f5a4f1385 6958 #define GPIO_BSRR_BR_14 ((uint32_t)0x40000000)
MartinJohnson 0:404f5a4f1385 6959 #define GPIO_BSRR_BR_15 ((uint32_t)0x80000000)
MartinJohnson 0:404f5a4f1385 6960
MartinJohnson 0:404f5a4f1385 6961 /****************** Bit definition for GPIO_LCKR register ********************/
MartinJohnson 0:404f5a4f1385 6962 #define GPIO_LCKR_LCK0 ((uint32_t)0x00000001)
MartinJohnson 0:404f5a4f1385 6963 #define GPIO_LCKR_LCK1 ((uint32_t)0x00000002)
MartinJohnson 0:404f5a4f1385 6964 #define GPIO_LCKR_LCK2 ((uint32_t)0x00000004)
MartinJohnson 0:404f5a4f1385 6965 #define GPIO_LCKR_LCK3 ((uint32_t)0x00000008)
MartinJohnson 0:404f5a4f1385 6966 #define GPIO_LCKR_LCK4 ((uint32_t)0x00000010)
MartinJohnson 0:404f5a4f1385 6967 #define GPIO_LCKR_LCK5 ((uint32_t)0x00000020)
MartinJohnson 0:404f5a4f1385 6968 #define GPIO_LCKR_LCK6 ((uint32_t)0x00000040)
MartinJohnson 0:404f5a4f1385 6969 #define GPIO_LCKR_LCK7 ((uint32_t)0x00000080)
MartinJohnson 0:404f5a4f1385 6970 #define GPIO_LCKR_LCK8 ((uint32_t)0x00000100)
MartinJohnson 0:404f5a4f1385 6971 #define GPIO_LCKR_LCK9 ((uint32_t)0x00000200)
MartinJohnson 0:404f5a4f1385 6972 #define GPIO_LCKR_LCK10 ((uint32_t)0x00000400)
MartinJohnson 0:404f5a4f1385 6973 #define GPIO_LCKR_LCK11 ((uint32_t)0x00000800)
MartinJohnson 0:404f5a4f1385 6974 #define GPIO_LCKR_LCK12 ((uint32_t)0x00001000)
MartinJohnson 0:404f5a4f1385 6975 #define GPIO_LCKR_LCK13 ((uint32_t)0x00002000)
MartinJohnson 0:404f5a4f1385 6976 #define GPIO_LCKR_LCK14 ((uint32_t)0x00004000)
MartinJohnson 0:404f5a4f1385 6977 #define GPIO_LCKR_LCK15 ((uint32_t)0x00008000)
MartinJohnson 0:404f5a4f1385 6978 #define GPIO_LCKR_LCKK ((uint32_t)0x00010000)
MartinJohnson 0:404f5a4f1385 6979
MartinJohnson 0:404f5a4f1385 6980 /****************** Bit definition for GPIO_AFRL register ********************/
MartinJohnson 0:404f5a4f1385 6981 #define GPIO_AFRL_AFRL0 ((uint32_t)0x0000000F)
MartinJohnson 0:404f5a4f1385 6982 #define GPIO_AFRL_AFRL1 ((uint32_t)0x000000F0)
MartinJohnson 0:404f5a4f1385 6983 #define GPIO_AFRL_AFRL2 ((uint32_t)0x00000F00)
MartinJohnson 0:404f5a4f1385 6984 #define GPIO_AFRL_AFRL3 ((uint32_t)0x0000F000)
MartinJohnson 0:404f5a4f1385 6985 #define GPIO_AFRL_AFRL4 ((uint32_t)0x000F0000)
MartinJohnson 0:404f5a4f1385 6986 #define GPIO_AFRL_AFRL5 ((uint32_t)0x00F00000)
MartinJohnson 0:404f5a4f1385 6987 #define GPIO_AFRL_AFRL6 ((uint32_t)0x0F000000)
MartinJohnson 0:404f5a4f1385 6988 #define GPIO_AFRL_AFRL7 ((uint32_t)0xF0000000)
MartinJohnson 0:404f5a4f1385 6989
MartinJohnson 0:404f5a4f1385 6990 /****************** Bit definition for GPIO_AFRH register ********************/
MartinJohnson 0:404f5a4f1385 6991 #define GPIO_AFRH_AFRH0 ((uint32_t)0x0000000F)
MartinJohnson 0:404f5a4f1385 6992 #define GPIO_AFRH_AFRH1 ((uint32_t)0x000000F0)
MartinJohnson 0:404f5a4f1385 6993 #define GPIO_AFRH_AFRH2 ((uint32_t)0x00000F00)
MartinJohnson 0:404f5a4f1385 6994 #define GPIO_AFRH_AFRH3 ((uint32_t)0x0000F000)
MartinJohnson 0:404f5a4f1385 6995 #define GPIO_AFRH_AFRH4 ((uint32_t)0x000F0000)
MartinJohnson 0:404f5a4f1385 6996 #define GPIO_AFRH_AFRH5 ((uint32_t)0x00F00000)
MartinJohnson 0:404f5a4f1385 6997 #define GPIO_AFRH_AFRH6 ((uint32_t)0x0F000000)
MartinJohnson 0:404f5a4f1385 6998 #define GPIO_AFRH_AFRH7 ((uint32_t)0xF0000000)
MartinJohnson 0:404f5a4f1385 6999
MartinJohnson 0:404f5a4f1385 7000 /****************** Bit definition for GPIO_BRR register *********************/
MartinJohnson 0:404f5a4f1385 7001 #define GPIO_BRR_BR_0 ((uint32_t)0x00000001)
MartinJohnson 0:404f5a4f1385 7002 #define GPIO_BRR_BR_1 ((uint32_t)0x00000002)
MartinJohnson 0:404f5a4f1385 7003 #define GPIO_BRR_BR_2 ((uint32_t)0x00000004)
MartinJohnson 0:404f5a4f1385 7004 #define GPIO_BRR_BR_3 ((uint32_t)0x00000008)
MartinJohnson 0:404f5a4f1385 7005 #define GPIO_BRR_BR_4 ((uint32_t)0x00000010)
MartinJohnson 0:404f5a4f1385 7006 #define GPIO_BRR_BR_5 ((uint32_t)0x00000020)
MartinJohnson 0:404f5a4f1385 7007 #define GPIO_BRR_BR_6 ((uint32_t)0x00000040)
MartinJohnson 0:404f5a4f1385 7008 #define GPIO_BRR_BR_7 ((uint32_t)0x00000080)
MartinJohnson 0:404f5a4f1385 7009 #define GPIO_BRR_BR_8 ((uint32_t)0x00000100)
MartinJohnson 0:404f5a4f1385 7010 #define GPIO_BRR_BR_9 ((uint32_t)0x00000200)
MartinJohnson 0:404f5a4f1385 7011 #define GPIO_BRR_BR_10 ((uint32_t)0x00000400)
MartinJohnson 0:404f5a4f1385 7012 #define GPIO_BRR_BR_11 ((uint32_t)0x00000800)
MartinJohnson 0:404f5a4f1385 7013 #define GPIO_BRR_BR_12 ((uint32_t)0x00001000)
MartinJohnson 0:404f5a4f1385 7014 #define GPIO_BRR_BR_13 ((uint32_t)0x00002000)
MartinJohnson 0:404f5a4f1385 7015 #define GPIO_BRR_BR_14 ((uint32_t)0x00004000)
MartinJohnson 0:404f5a4f1385 7016 #define GPIO_BRR_BR_15 ((uint32_t)0x00008000)
MartinJohnson 0:404f5a4f1385 7017
MartinJohnson 0:404f5a4f1385 7018 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 7019 /* */
MartinJohnson 0:404f5a4f1385 7020 /* Inter-integrated Circuit Interface (I2C) */
MartinJohnson 0:404f5a4f1385 7021 /* */
MartinJohnson 0:404f5a4f1385 7022 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 7023 /******************* Bit definition for I2C_CR1 register *******************/
MartinJohnson 0:404f5a4f1385 7024 #define I2C_CR1_PE ((uint32_t)0x00000001) /*!< Peripheral enable */
MartinJohnson 0:404f5a4f1385 7025 #define I2C_CR1_TXIE ((uint32_t)0x00000002) /*!< TX interrupt enable */
MartinJohnson 0:404f5a4f1385 7026 #define I2C_CR1_RXIE ((uint32_t)0x00000004) /*!< RX interrupt enable */
MartinJohnson 0:404f5a4f1385 7027 #define I2C_CR1_ADDRIE ((uint32_t)0x00000008) /*!< Address match interrupt enable */
MartinJohnson 0:404f5a4f1385 7028 #define I2C_CR1_NACKIE ((uint32_t)0x00000010) /*!< NACK received interrupt enable */
MartinJohnson 0:404f5a4f1385 7029 #define I2C_CR1_STOPIE ((uint32_t)0x00000020) /*!< STOP detection interrupt enable */
MartinJohnson 0:404f5a4f1385 7030 #define I2C_CR1_TCIE ((uint32_t)0x00000040) /*!< Transfer complete interrupt enable */
MartinJohnson 0:404f5a4f1385 7031 #define I2C_CR1_ERRIE ((uint32_t)0x00000080) /*!< Errors interrupt enable */
MartinJohnson 0:404f5a4f1385 7032 #define I2C_CR1_DFN ((uint32_t)0x00000F00) /*!< Digital noise filter */
MartinJohnson 0:404f5a4f1385 7033 #define I2C_CR1_ANFOFF ((uint32_t)0x00001000) /*!< Analog noise filter OFF */
MartinJohnson 0:404f5a4f1385 7034 #define I2C_CR1_SWRST ((uint32_t)0x00002000) /*!< Software reset */
MartinJohnson 0:404f5a4f1385 7035 #define I2C_CR1_TXDMAEN ((uint32_t)0x00004000) /*!< DMA transmission requests enable */
MartinJohnson 0:404f5a4f1385 7036 #define I2C_CR1_RXDMAEN ((uint32_t)0x00008000) /*!< DMA reception requests enable */
MartinJohnson 0:404f5a4f1385 7037 #define I2C_CR1_SBC ((uint32_t)0x00010000) /*!< Slave byte control */
MartinJohnson 0:404f5a4f1385 7038 #define I2C_CR1_NOSTRETCH ((uint32_t)0x00020000) /*!< Clock stretching disable */
MartinJohnson 0:404f5a4f1385 7039 #define I2C_CR1_WUPEN ((uint32_t)0x00040000) /*!< Wakeup from STOP enable */
MartinJohnson 0:404f5a4f1385 7040 #define I2C_CR1_GCEN ((uint32_t)0x00080000) /*!< General call enable */
MartinJohnson 0:404f5a4f1385 7041 #define I2C_CR1_SMBHEN ((uint32_t)0x00100000) /*!< SMBus host address enable */
MartinJohnson 0:404f5a4f1385 7042 #define I2C_CR1_SMBDEN ((uint32_t)0x00200000) /*!< SMBus device default address enable */
MartinJohnson 0:404f5a4f1385 7043 #define I2C_CR1_ALERTEN ((uint32_t)0x00400000) /*!< SMBus alert enable */
MartinJohnson 0:404f5a4f1385 7044 #define I2C_CR1_PECEN ((uint32_t)0x00800000) /*!< PEC enable */
MartinJohnson 0:404f5a4f1385 7045
MartinJohnson 0:404f5a4f1385 7046 /****************** Bit definition for I2C_CR2 register ********************/
MartinJohnson 0:404f5a4f1385 7047 #define I2C_CR2_SADD ((uint32_t)0x000003FF) /*!< Slave address (master mode) */
MartinJohnson 0:404f5a4f1385 7048 #define I2C_CR2_RD_WRN ((uint32_t)0x00000400) /*!< Transfer direction (master mode) */
MartinJohnson 0:404f5a4f1385 7049 #define I2C_CR2_ADD10 ((uint32_t)0x00000800) /*!< 10-bit addressing mode (master mode) */
MartinJohnson 0:404f5a4f1385 7050 #define I2C_CR2_HEAD10R ((uint32_t)0x00001000) /*!< 10-bit address header only read direction (master mode) */
MartinJohnson 0:404f5a4f1385 7051 #define I2C_CR2_START ((uint32_t)0x00002000) /*!< START generation */
MartinJohnson 0:404f5a4f1385 7052 #define I2C_CR2_STOP ((uint32_t)0x00004000) /*!< STOP generation (master mode) */
MartinJohnson 0:404f5a4f1385 7053 #define I2C_CR2_NACK ((uint32_t)0x00008000) /*!< NACK generation (slave mode) */
MartinJohnson 0:404f5a4f1385 7054 #define I2C_CR2_NBYTES ((uint32_t)0x00FF0000) /*!< Number of bytes */
MartinJohnson 0:404f5a4f1385 7055 #define I2C_CR2_RELOAD ((uint32_t)0x01000000) /*!< NBYTES reload mode */
MartinJohnson 0:404f5a4f1385 7056 #define I2C_CR2_AUTOEND ((uint32_t)0x02000000) /*!< Automatic end mode (master mode) */
MartinJohnson 0:404f5a4f1385 7057 #define I2C_CR2_PECBYTE ((uint32_t)0x04000000) /*!< Packet error checking byte */
MartinJohnson 0:404f5a4f1385 7058
MartinJohnson 0:404f5a4f1385 7059 /******************* Bit definition for I2C_OAR1 register ******************/
MartinJohnson 0:404f5a4f1385 7060 #define I2C_OAR1_OA1 ((uint32_t)0x000003FF) /*!< Interface own address 1 */
MartinJohnson 0:404f5a4f1385 7061 #define I2C_OAR1_OA1MODE ((uint32_t)0x00000400) /*!< Own address 1 10-bit mode */
MartinJohnson 0:404f5a4f1385 7062 #define I2C_OAR1_OA1EN ((uint32_t)0x00008000) /*!< Own address 1 enable */
MartinJohnson 0:404f5a4f1385 7063
MartinJohnson 0:404f5a4f1385 7064 /******************* Bit definition for I2C_OAR2 register *******************/
MartinJohnson 0:404f5a4f1385 7065 #define I2C_OAR2_OA2 ((uint32_t)0x000000FE) /*!< Interface own address 2 */
MartinJohnson 0:404f5a4f1385 7066 #define I2C_OAR2_OA2MSK ((uint32_t)0x00000700) /*!< Own address 2 masks */
MartinJohnson 0:404f5a4f1385 7067 #define I2C_OAR2_OA2EN ((uint32_t)0x00008000) /*!< Own address 2 enable */
MartinJohnson 0:404f5a4f1385 7068
MartinJohnson 0:404f5a4f1385 7069 /******************* Bit definition for I2C_TIMINGR register *****************/
MartinJohnson 0:404f5a4f1385 7070 #define I2C_TIMINGR_SCLL ((uint32_t)0x000000FF) /*!< SCL low period (master mode) */
MartinJohnson 0:404f5a4f1385 7071 #define I2C_TIMINGR_SCLH ((uint32_t)0x0000FF00) /*!< SCL high period (master mode) */
MartinJohnson 0:404f5a4f1385 7072 #define I2C_TIMINGR_SDADEL ((uint32_t)0x000F0000) /*!< Data hold time */
MartinJohnson 0:404f5a4f1385 7073 #define I2C_TIMINGR_SCLDEL ((uint32_t)0x00F00000) /*!< Data setup time */
MartinJohnson 0:404f5a4f1385 7074 #define I2C_TIMINGR_PRESC ((uint32_t)0xF0000000) /*!< Timings prescaler */
MartinJohnson 0:404f5a4f1385 7075
MartinJohnson 0:404f5a4f1385 7076 /******************* Bit definition for I2C_TIMEOUTR register *****************/
MartinJohnson 0:404f5a4f1385 7077 #define I2C_TIMEOUTR_TIMEOUTA ((uint32_t)0x00000FFF) /*!< Bus timeout A */
MartinJohnson 0:404f5a4f1385 7078 #define I2C_TIMEOUTR_TIDLE ((uint32_t)0x00001000) /*!< Idle clock timeout detection */
MartinJohnson 0:404f5a4f1385 7079 #define I2C_TIMEOUTR_TIMOUTEN ((uint32_t)0x00008000) /*!< Clock timeout enable */
MartinJohnson 0:404f5a4f1385 7080 #define I2C_TIMEOUTR_TIMEOUTB ((uint32_t)0x0FFF0000) /*!< Bus timeout B*/
MartinJohnson 0:404f5a4f1385 7081 #define I2C_TIMEOUTR_TEXTEN ((uint32_t)0x80000000) /*!< Extended clock timeout enable */
MartinJohnson 0:404f5a4f1385 7082
MartinJohnson 0:404f5a4f1385 7083 /****************** Bit definition for I2C_ISR register *********************/
MartinJohnson 0:404f5a4f1385 7084 #define I2C_ISR_TXE ((uint32_t)0x00000001) /*!< Transmit data register empty */
MartinJohnson 0:404f5a4f1385 7085 #define I2C_ISR_TXIS ((uint32_t)0x00000002) /*!< Transmit interrupt status */
MartinJohnson 0:404f5a4f1385 7086 #define I2C_ISR_RXNE ((uint32_t)0x00000004) /*!< Receive data register not empty */
MartinJohnson 0:404f5a4f1385 7087 #define I2C_ISR_ADDR ((uint32_t)0x00000008) /*!< Address matched (slave mode)*/
MartinJohnson 0:404f5a4f1385 7088 #define I2C_ISR_NACKF ((uint32_t)0x00000010) /*!< NACK received flag */
MartinJohnson 0:404f5a4f1385 7089 #define I2C_ISR_STOPF ((uint32_t)0x00000020) /*!< STOP detection flag */
MartinJohnson 0:404f5a4f1385 7090 #define I2C_ISR_TC ((uint32_t)0x00000040) /*!< Transfer complete (master mode) */
MartinJohnson 0:404f5a4f1385 7091 #define I2C_ISR_TCR ((uint32_t)0x00000080) /*!< Transfer complete reload */
MartinJohnson 0:404f5a4f1385 7092 #define I2C_ISR_BERR ((uint32_t)0x00000100) /*!< Bus error */
MartinJohnson 0:404f5a4f1385 7093 #define I2C_ISR_ARLO ((uint32_t)0x00000200) /*!< Arbitration lost */
MartinJohnson 0:404f5a4f1385 7094 #define I2C_ISR_OVR ((uint32_t)0x00000400) /*!< Overrun/Underrun */
MartinJohnson 0:404f5a4f1385 7095 #define I2C_ISR_PECERR ((uint32_t)0x00000800) /*!< PEC error in reception */
MartinJohnson 0:404f5a4f1385 7096 #define I2C_ISR_TIMEOUT ((uint32_t)0x00001000) /*!< Timeout or Tlow detection flag */
MartinJohnson 0:404f5a4f1385 7097 #define I2C_ISR_ALERT ((uint32_t)0x00002000) /*!< SMBus alert */
MartinJohnson 0:404f5a4f1385 7098 #define I2C_ISR_BUSY ((uint32_t)0x00008000) /*!< Bus busy */
MartinJohnson 0:404f5a4f1385 7099 #define I2C_ISR_DIR ((uint32_t)0x00010000) /*!< Transfer direction (slave mode) */
MartinJohnson 0:404f5a4f1385 7100 #define I2C_ISR_ADDCODE ((uint32_t)0x00FE0000) /*!< Address match code (slave mode) */
MartinJohnson 0:404f5a4f1385 7101
MartinJohnson 0:404f5a4f1385 7102 /****************** Bit definition for I2C_ICR register *********************/
MartinJohnson 0:404f5a4f1385 7103 #define I2C_ICR_ADDRCF ((uint32_t)0x00000008) /*!< Address matched clear flag */
MartinJohnson 0:404f5a4f1385 7104 #define I2C_ICR_NACKCF ((uint32_t)0x00000010) /*!< NACK clear flag */
MartinJohnson 0:404f5a4f1385 7105 #define I2C_ICR_STOPCF ((uint32_t)0x00000020) /*!< STOP detection clear flag */
MartinJohnson 0:404f5a4f1385 7106 #define I2C_ICR_BERRCF ((uint32_t)0x00000100) /*!< Bus error clear flag */
MartinJohnson 0:404f5a4f1385 7107 #define I2C_ICR_ARLOCF ((uint32_t)0x00000200) /*!< Arbitration lost clear flag */
MartinJohnson 0:404f5a4f1385 7108 #define I2C_ICR_OVRCF ((uint32_t)0x00000400) /*!< Overrun/Underrun clear flag */
MartinJohnson 0:404f5a4f1385 7109 #define I2C_ICR_PECCF ((uint32_t)0x00000800) /*!< PAC error clear flag */
MartinJohnson 0:404f5a4f1385 7110 #define I2C_ICR_TIMOUTCF ((uint32_t)0x00001000) /*!< Timeout clear flag */
MartinJohnson 0:404f5a4f1385 7111 #define I2C_ICR_ALERTCF ((uint32_t)0x00002000) /*!< Alert clear flag */
MartinJohnson 0:404f5a4f1385 7112
MartinJohnson 0:404f5a4f1385 7113 /****************** Bit definition for I2C_PECR register ********************/
MartinJohnson 0:404f5a4f1385 7114 #define I2C_PECR_PEC ((uint32_t)0x000000FF) /*!< PEC register */
MartinJohnson 0:404f5a4f1385 7115
MartinJohnson 0:404f5a4f1385 7116 /****************** Bit definition for I2C_RXDR register *********************/
MartinJohnson 0:404f5a4f1385 7117 #define I2C_RXDR_RXDATA ((uint32_t)0x000000FF) /*!< 8-bit receive data */
MartinJohnson 0:404f5a4f1385 7118
MartinJohnson 0:404f5a4f1385 7119 /****************** Bit definition for I2C_TXDR register *********************/
MartinJohnson 0:404f5a4f1385 7120 #define I2C_TXDR_TXDATA ((uint32_t)0x000000FF) /*!< 8-bit transmit data */
MartinJohnson 0:404f5a4f1385 7121
MartinJohnson 0:404f5a4f1385 7122
MartinJohnson 0:404f5a4f1385 7123 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 7124 /* */
MartinJohnson 0:404f5a4f1385 7125 /* Independent WATCHDOG (IWDG) */
MartinJohnson 0:404f5a4f1385 7126 /* */
MartinJohnson 0:404f5a4f1385 7127 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 7128 /******************* Bit definition for IWDG_KR register ********************/
MartinJohnson 0:404f5a4f1385 7129 #define IWDG_KR_KEY ((uint16_t)0xFFFF) /*!< Key value (write only, read 0000h) */
MartinJohnson 0:404f5a4f1385 7130
MartinJohnson 0:404f5a4f1385 7131 /******************* Bit definition for IWDG_PR register ********************/
MartinJohnson 0:404f5a4f1385 7132 #define IWDG_PR_PR ((uint8_t)0x07) /*!< PR[2:0] (Prescaler divider) */
MartinJohnson 0:404f5a4f1385 7133 #define IWDG_PR_PR_0 ((uint8_t)0x01) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 7134 #define IWDG_PR_PR_1 ((uint8_t)0x02) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 7135 #define IWDG_PR_PR_2 ((uint8_t)0x04) /*!< Bit 2 */
MartinJohnson 0:404f5a4f1385 7136
MartinJohnson 0:404f5a4f1385 7137 /******************* Bit definition for IWDG_RLR register *******************/
MartinJohnson 0:404f5a4f1385 7138 #define IWDG_RLR_RL ((uint16_t)0x0FFF) /*!< Watchdog counter reload value */
MartinJohnson 0:404f5a4f1385 7139
MartinJohnson 0:404f5a4f1385 7140 /******************* Bit definition for IWDG_SR register ********************/
MartinJohnson 0:404f5a4f1385 7141 #define IWDG_SR_PVU ((uint8_t)0x01) /*!< Watchdog prescaler value update */
MartinJohnson 0:404f5a4f1385 7142 #define IWDG_SR_RVU ((uint8_t)0x02) /*!< Watchdog counter reload value update */
MartinJohnson 0:404f5a4f1385 7143 #define IWDG_SR_WVU ((uint8_t)0x04) /*!< Watchdog counter window value update */
MartinJohnson 0:404f5a4f1385 7144
MartinJohnson 0:404f5a4f1385 7145 /******************* Bit definition for IWDG_KR register ********************/
MartinJohnson 0:404f5a4f1385 7146 #define IWDG_WINR_WIN ((uint16_t)0x0FFF) /*!< Watchdog counter window value */
MartinJohnson 0:404f5a4f1385 7147
MartinJohnson 0:404f5a4f1385 7148 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 7149 /* */
MartinJohnson 0:404f5a4f1385 7150 /* Power Control */
MartinJohnson 0:404f5a4f1385 7151 /* */
MartinJohnson 0:404f5a4f1385 7152 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 7153 /******************** Bit definition for PWR_CR register ********************/
MartinJohnson 0:404f5a4f1385 7154 #define PWR_CR_LPSDSR ((uint16_t)0x0001) /*!< Low-power deepsleep/sleep/low power run */
MartinJohnson 0:404f5a4f1385 7155 #define PWR_CR_PDDS ((uint16_t)0x0002) /*!< Power Down Deepsleep */
MartinJohnson 0:404f5a4f1385 7156 #define PWR_CR_CWUF ((uint16_t)0x0004) /*!< Clear Wakeup Flag */
MartinJohnson 0:404f5a4f1385 7157 #define PWR_CR_CSBF ((uint16_t)0x0008) /*!< Clear Standby Flag */
MartinJohnson 0:404f5a4f1385 7158 #define PWR_CR_PVDE ((uint16_t)0x0010) /*!< Power Voltage Detector Enable */
MartinJohnson 0:404f5a4f1385 7159
MartinJohnson 0:404f5a4f1385 7160 #define PWR_CR_PLS ((uint16_t)0x00E0) /*!< PLS[2:0] bits (PVD Level Selection) */
MartinJohnson 0:404f5a4f1385 7161 #define PWR_CR_PLS_0 ((uint16_t)0x0020) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 7162 #define PWR_CR_PLS_1 ((uint16_t)0x0040) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 7163 #define PWR_CR_PLS_2 ((uint16_t)0x0080) /*!< Bit 2 */
MartinJohnson 0:404f5a4f1385 7164
MartinJohnson 0:404f5a4f1385 7165 /*!< PVD level configuration */
MartinJohnson 0:404f5a4f1385 7166 #define PWR_CR_PLS_LEV0 ((uint16_t)0x0000) /*!< PVD level 0 */
MartinJohnson 0:404f5a4f1385 7167 #define PWR_CR_PLS_LEV1 ((uint16_t)0x0020) /*!< PVD level 1 */
MartinJohnson 0:404f5a4f1385 7168 #define PWR_CR_PLS_LEV2 ((uint16_t)0x0040) /*!< PVD level 2 */
MartinJohnson 0:404f5a4f1385 7169 #define PWR_CR_PLS_LEV3 ((uint16_t)0x0060) /*!< PVD level 3 */
MartinJohnson 0:404f5a4f1385 7170 #define PWR_CR_PLS_LEV4 ((uint16_t)0x0080) /*!< PVD level 4 */
MartinJohnson 0:404f5a4f1385 7171 #define PWR_CR_PLS_LEV5 ((uint16_t)0x00A0) /*!< PVD level 5 */
MartinJohnson 0:404f5a4f1385 7172 #define PWR_CR_PLS_LEV6 ((uint16_t)0x00C0) /*!< PVD level 6 */
MartinJohnson 0:404f5a4f1385 7173 #define PWR_CR_PLS_LEV7 ((uint16_t)0x00E0) /*!< PVD level 7 */
MartinJohnson 0:404f5a4f1385 7174
MartinJohnson 0:404f5a4f1385 7175 #define PWR_CR_DBP ((uint16_t)0x0100) /*!< Disable Backup Domain write protection */
MartinJohnson 0:404f5a4f1385 7176
MartinJohnson 0:404f5a4f1385 7177 /******************* Bit definition for PWR_CSR register ********************/
MartinJohnson 0:404f5a4f1385 7178 #define PWR_CSR_WUF ((uint16_t)0x0001) /*!< Wakeup Flag */
MartinJohnson 0:404f5a4f1385 7179 #define PWR_CSR_SBF ((uint16_t)0x0002) /*!< Standby Flag */
MartinJohnson 0:404f5a4f1385 7180 #define PWR_CSR_PVDO ((uint16_t)0x0004) /*!< PVD Output */
MartinJohnson 0:404f5a4f1385 7181 #define PWR_CSR_VREFINTRDYF ((uint16_t)0x0008) /*!< Internal voltage reference (VREFINT) ready flag */
MartinJohnson 0:404f5a4f1385 7182
MartinJohnson 0:404f5a4f1385 7183 #define PWR_CSR_EWUP1 ((uint16_t)0x0100) /*!< Enable WKUP pin 1 */
MartinJohnson 0:404f5a4f1385 7184 #define PWR_CSR_EWUP2 ((uint16_t)0x0200) /*!< Enable WKUP pin 2 */
MartinJohnson 0:404f5a4f1385 7185 #define PWR_CSR_EWUP3 ((uint16_t)0x0400) /*!< Enable WKUP pin 3 */
MartinJohnson 0:404f5a4f1385 7186
MartinJohnson 0:404f5a4f1385 7187 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 7188 /* */
MartinJohnson 0:404f5a4f1385 7189 /* Reset and Clock Control */
MartinJohnson 0:404f5a4f1385 7190 /* */
MartinJohnson 0:404f5a4f1385 7191 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 7192 /******************** Bit definition for RCC_CR register ********************/
MartinJohnson 0:404f5a4f1385 7193 #define RCC_CR_HSION ((uint32_t)0x00000001)
MartinJohnson 0:404f5a4f1385 7194 #define RCC_CR_HSIRDY ((uint32_t)0x00000002)
MartinJohnson 0:404f5a4f1385 7195
MartinJohnson 0:404f5a4f1385 7196 #define RCC_CR_HSITRIM ((uint32_t)0x000000F8)
MartinJohnson 0:404f5a4f1385 7197 #define RCC_CR_HSITRIM_0 ((uint32_t)0x00000008)/*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 7198 #define RCC_CR_HSITRIM_1 ((uint32_t)0x00000010)/*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 7199 #define RCC_CR_HSITRIM_2 ((uint32_t)0x00000020)/*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 7200 #define RCC_CR_HSITRIM_3 ((uint32_t)0x00000040)/*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 7201 #define RCC_CR_HSITRIM_4 ((uint32_t)0x00000080)/*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 7202
MartinJohnson 0:404f5a4f1385 7203 #define RCC_CR_HSICAL ((uint32_t)0x0000FF00)
MartinJohnson 0:404f5a4f1385 7204 #define RCC_CR_HSICAL_0 ((uint32_t)0x00000100)/*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 7205 #define RCC_CR_HSICAL_1 ((uint32_t)0x00000200)/*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 7206 #define RCC_CR_HSICAL_2 ((uint32_t)0x00000400)/*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 7207 #define RCC_CR_HSICAL_3 ((uint32_t)0x00000800)/*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 7208 #define RCC_CR_HSICAL_4 ((uint32_t)0x00001000)/*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 7209 #define RCC_CR_HSICAL_5 ((uint32_t)0x00002000)/*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 7210 #define RCC_CR_HSICAL_6 ((uint32_t)0x00004000)/*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 7211 #define RCC_CR_HSICAL_7 ((uint32_t)0x00008000)/*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 7212
MartinJohnson 0:404f5a4f1385 7213 #define RCC_CR_HSEON ((uint32_t)0x00010000)
MartinJohnson 0:404f5a4f1385 7214 #define RCC_CR_HSERDY ((uint32_t)0x00020000)
MartinJohnson 0:404f5a4f1385 7215 #define RCC_CR_HSEBYP ((uint32_t)0x00040000)
MartinJohnson 0:404f5a4f1385 7216 #define RCC_CR_CSSON ((uint32_t)0x00080000)
MartinJohnson 0:404f5a4f1385 7217
MartinJohnson 0:404f5a4f1385 7218 #define RCC_CR_PLLON ((uint32_t)0x01000000)
MartinJohnson 0:404f5a4f1385 7219 #define RCC_CR_PLLRDY ((uint32_t)0x02000000)
MartinJohnson 0:404f5a4f1385 7220
MartinJohnson 0:404f5a4f1385 7221 /******************** Bit definition for RCC_CFGR register ******************/
MartinJohnson 0:404f5a4f1385 7222 /*!< SW configuration */
MartinJohnson 0:404f5a4f1385 7223 #define RCC_CFGR_SW ((uint32_t)0x00000003) /*!< SW[1:0] bits (System clock Switch) */
MartinJohnson 0:404f5a4f1385 7224 #define RCC_CFGR_SW_0 ((uint32_t)0x00000001) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 7225 #define RCC_CFGR_SW_1 ((uint32_t)0x00000002) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 7226
MartinJohnson 0:404f5a4f1385 7227 #define RCC_CFGR_SW_HSI ((uint32_t)0x00000000) /*!< HSI selected as system clock */
MartinJohnson 0:404f5a4f1385 7228 #define RCC_CFGR_SW_HSE ((uint32_t)0x00000001) /*!< HSE selected as system clock */
MartinJohnson 0:404f5a4f1385 7229 #define RCC_CFGR_SW_PLL ((uint32_t)0x00000002) /*!< PLL selected as system clock */
MartinJohnson 0:404f5a4f1385 7230
MartinJohnson 0:404f5a4f1385 7231 /*!< SWS configuration */
MartinJohnson 0:404f5a4f1385 7232 #define RCC_CFGR_SWS ((uint32_t)0x0000000C) /*!< SWS[1:0] bits (System Clock Switch Status) */
MartinJohnson 0:404f5a4f1385 7233 #define RCC_CFGR_SWS_0 ((uint32_t)0x00000004) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 7234 #define RCC_CFGR_SWS_1 ((uint32_t)0x00000008) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 7235
MartinJohnson 0:404f5a4f1385 7236 #define RCC_CFGR_SWS_HSI ((uint32_t)0x00000000) /*!< HSI oscillator used as system clock */
MartinJohnson 0:404f5a4f1385 7237 #define RCC_CFGR_SWS_HSE ((uint32_t)0x00000004) /*!< HSE oscillator used as system clock */
MartinJohnson 0:404f5a4f1385 7238 #define RCC_CFGR_SWS_PLL ((uint32_t)0x00000008) /*!< PLL used as system clock */
MartinJohnson 0:404f5a4f1385 7239
MartinJohnson 0:404f5a4f1385 7240 /*!< HPRE configuration */
MartinJohnson 0:404f5a4f1385 7241 #define RCC_CFGR_HPRE ((uint32_t)0x000000F0) /*!< HPRE[3:0] bits (AHB prescaler) */
MartinJohnson 0:404f5a4f1385 7242 #define RCC_CFGR_HPRE_0 ((uint32_t)0x00000010) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 7243 #define RCC_CFGR_HPRE_1 ((uint32_t)0x00000020) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 7244 #define RCC_CFGR_HPRE_2 ((uint32_t)0x00000040) /*!< Bit 2 */
MartinJohnson 0:404f5a4f1385 7245 #define RCC_CFGR_HPRE_3 ((uint32_t)0x00000080) /*!< Bit 3 */
MartinJohnson 0:404f5a4f1385 7246
MartinJohnson 0:404f5a4f1385 7247 #define RCC_CFGR_HPRE_DIV1 ((uint32_t)0x00000000) /*!< SYSCLK not divided */
MartinJohnson 0:404f5a4f1385 7248 #define RCC_CFGR_HPRE_DIV2 ((uint32_t)0x00000080) /*!< SYSCLK divided by 2 */
MartinJohnson 0:404f5a4f1385 7249 #define RCC_CFGR_HPRE_DIV4 ((uint32_t)0x00000090) /*!< SYSCLK divided by 4 */
MartinJohnson 0:404f5a4f1385 7250 #define RCC_CFGR_HPRE_DIV8 ((uint32_t)0x000000A0) /*!< SYSCLK divided by 8 */
MartinJohnson 0:404f5a4f1385 7251 #define RCC_CFGR_HPRE_DIV16 ((uint32_t)0x000000B0) /*!< SYSCLK divided by 16 */
MartinJohnson 0:404f5a4f1385 7252 #define RCC_CFGR_HPRE_DIV64 ((uint32_t)0x000000C0) /*!< SYSCLK divided by 64 */
MartinJohnson 0:404f5a4f1385 7253 #define RCC_CFGR_HPRE_DIV128 ((uint32_t)0x000000D0) /*!< SYSCLK divided by 128 */
MartinJohnson 0:404f5a4f1385 7254 #define RCC_CFGR_HPRE_DIV256 ((uint32_t)0x000000E0) /*!< SYSCLK divided by 256 */
MartinJohnson 0:404f5a4f1385 7255 #define RCC_CFGR_HPRE_DIV512 ((uint32_t)0x000000F0) /*!< SYSCLK divided by 512 */
MartinJohnson 0:404f5a4f1385 7256
MartinJohnson 0:404f5a4f1385 7257 /*!< PPRE1 configuration */
MartinJohnson 0:404f5a4f1385 7258 #define RCC_CFGR_PPRE1 ((uint32_t)0x00000700) /*!< PRE1[2:0] bits (APB1 prescaler) */
MartinJohnson 0:404f5a4f1385 7259 #define RCC_CFGR_PPRE1_0 ((uint32_t)0x00000100) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 7260 #define RCC_CFGR_PPRE1_1 ((uint32_t)0x00000200) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 7261 #define RCC_CFGR_PPRE1_2 ((uint32_t)0x00000400) /*!< Bit 2 */
MartinJohnson 0:404f5a4f1385 7262
MartinJohnson 0:404f5a4f1385 7263 #define RCC_CFGR_PPRE1_DIV1 ((uint32_t)0x00000000) /*!< HCLK not divided */
MartinJohnson 0:404f5a4f1385 7264 #define RCC_CFGR_PPRE1_DIV2 ((uint32_t)0x00000400) /*!< HCLK divided by 2 */
MartinJohnson 0:404f5a4f1385 7265 #define RCC_CFGR_PPRE1_DIV4 ((uint32_t)0x00000500) /*!< HCLK divided by 4 */
MartinJohnson 0:404f5a4f1385 7266 #define RCC_CFGR_PPRE1_DIV8 ((uint32_t)0x00000600) /*!< HCLK divided by 8 */
MartinJohnson 0:404f5a4f1385 7267 #define RCC_CFGR_PPRE1_DIV16 ((uint32_t)0x00000700) /*!< HCLK divided by 16 */
MartinJohnson 0:404f5a4f1385 7268
MartinJohnson 0:404f5a4f1385 7269 /*!< PPRE2 configuration */
MartinJohnson 0:404f5a4f1385 7270 #define RCC_CFGR_PPRE2 ((uint32_t)0x00003800) /*!< PRE2[2:0] bits (APB2 prescaler) */
MartinJohnson 0:404f5a4f1385 7271 #define RCC_CFGR_PPRE2_0 ((uint32_t)0x00000800) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 7272 #define RCC_CFGR_PPRE2_1 ((uint32_t)0x00001000) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 7273 #define RCC_CFGR_PPRE2_2 ((uint32_t)0x00002000) /*!< Bit 2 */
MartinJohnson 0:404f5a4f1385 7274
MartinJohnson 0:404f5a4f1385 7275 #define RCC_CFGR_PPRE2_DIV1 ((uint32_t)0x00000000) /*!< HCLK not divided */
MartinJohnson 0:404f5a4f1385 7276 #define RCC_CFGR_PPRE2_DIV2 ((uint32_t)0x00002000) /*!< HCLK divided by 2 */
MartinJohnson 0:404f5a4f1385 7277 #define RCC_CFGR_PPRE2_DIV4 ((uint32_t)0x00002800) /*!< HCLK divided by 4 */
MartinJohnson 0:404f5a4f1385 7278 #define RCC_CFGR_PPRE2_DIV8 ((uint32_t)0x00003000) /*!< HCLK divided by 8 */
MartinJohnson 0:404f5a4f1385 7279 #define RCC_CFGR_PPRE2_DIV16 ((uint32_t)0x00003800) /*!< HCLK divided by 16 */
MartinJohnson 0:404f5a4f1385 7280
MartinJohnson 0:404f5a4f1385 7281 #define RCC_CFGR_PLLSRC ((uint32_t)0x00010000) /*!< PLL entry clock source */
MartinJohnson 0:404f5a4f1385 7282
MartinJohnson 0:404f5a4f1385 7283 #define RCC_CFGR_PLLXTPRE ((uint32_t)0x00020000) /*!< HSE divider for PLL entry */
MartinJohnson 0:404f5a4f1385 7284
MartinJohnson 0:404f5a4f1385 7285 /*!< PLLMUL configuration */
MartinJohnson 0:404f5a4f1385 7286 #define RCC_CFGR_PLLMULL ((uint32_t)0x003C0000) /*!< PLLMUL[3:0] bits (PLL multiplication factor) */
MartinJohnson 0:404f5a4f1385 7287 #define RCC_CFGR_PLLMULL_0 ((uint32_t)0x00040000) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 7288 #define RCC_CFGR_PLLMULL_1 ((uint32_t)0x00080000) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 7289 #define RCC_CFGR_PLLMULL_2 ((uint32_t)0x00100000) /*!< Bit 2 */
MartinJohnson 0:404f5a4f1385 7290 #define RCC_CFGR_PLLMULL_3 ((uint32_t)0x00200000) /*!< Bit 3 */
MartinJohnson 0:404f5a4f1385 7291
MartinJohnson 0:404f5a4f1385 7292 #define RCC_CFGR_PLLSRC_HSI_Div2 ((uint32_t)0x00000000) /*!< HSI clock divided by 2 selected as PLL entry clock source */
MartinJohnson 0:404f5a4f1385 7293 #define RCC_CFGR_PLLSRC_HSI_PREDIV ((uint32_t)0x00008000) /*!< HSI PREDIV clock selected as PLL entry clock source
MartinJohnson 0:404f5a4f1385 7294 (This bit and configuration is only available for STM32F303xE devices)*/
MartinJohnson 0:404f5a4f1385 7295
MartinJohnson 0:404f5a4f1385 7296 #define RCC_CFGR_PLLSRC_PREDIV1 ((uint32_t)0x00010000) /*!< PREDIV1 clock selected as PLL entry clock source */
MartinJohnson 0:404f5a4f1385 7297
MartinJohnson 0:404f5a4f1385 7298 #define RCC_CFGR_PLLXTPRE_PREDIV1 ((uint32_t)0x00000000) /*!< PREDIV1 clock not divided for PLL entry */
MartinJohnson 0:404f5a4f1385 7299 #define RCC_CFGR_PLLXTPRE_PREDIV1_Div2 ((uint32_t)0x00020000) /*!< PREDIV1 clock divided by 2 for PLL entry */
MartinJohnson 0:404f5a4f1385 7300
MartinJohnson 0:404f5a4f1385 7301 #define RCC_CFGR_PLLMULL2 ((uint32_t)0x00000000) /*!< PLL input clock*2 */
MartinJohnson 0:404f5a4f1385 7302 #define RCC_CFGR_PLLMULL3 ((uint32_t)0x00040000) /*!< PLL input clock*3 */
MartinJohnson 0:404f5a4f1385 7303 #define RCC_CFGR_PLLMULL4 ((uint32_t)0x00080000) /*!< PLL input clock*4 */
MartinJohnson 0:404f5a4f1385 7304 #define RCC_CFGR_PLLMULL5 ((uint32_t)0x000C0000) /*!< PLL input clock*5 */
MartinJohnson 0:404f5a4f1385 7305 #define RCC_CFGR_PLLMULL6 ((uint32_t)0x00100000) /*!< PLL input clock*6 */
MartinJohnson 0:404f5a4f1385 7306 #define RCC_CFGR_PLLMULL7 ((uint32_t)0x00140000) /*!< PLL input clock*7 */
MartinJohnson 0:404f5a4f1385 7307 #define RCC_CFGR_PLLMULL8 ((uint32_t)0x00180000) /*!< PLL input clock*8 */
MartinJohnson 0:404f5a4f1385 7308 #define RCC_CFGR_PLLMULL9 ((uint32_t)0x001C0000) /*!< PLL input clock*9 */
MartinJohnson 0:404f5a4f1385 7309 #define RCC_CFGR_PLLMULL10 ((uint32_t)0x00200000) /*!< PLL input clock10 */
MartinJohnson 0:404f5a4f1385 7310 #define RCC_CFGR_PLLMULL11 ((uint32_t)0x00240000) /*!< PLL input clock*11 */
MartinJohnson 0:404f5a4f1385 7311 #define RCC_CFGR_PLLMULL12 ((uint32_t)0x00280000) /*!< PLL input clock*12 */
MartinJohnson 0:404f5a4f1385 7312 #define RCC_CFGR_PLLMULL13 ((uint32_t)0x002C0000) /*!< PLL input clock*13 */
MartinJohnson 0:404f5a4f1385 7313 #define RCC_CFGR_PLLMULL14 ((uint32_t)0x00300000) /*!< PLL input clock*14 */
MartinJohnson 0:404f5a4f1385 7314 #define RCC_CFGR_PLLMULL15 ((uint32_t)0x00340000) /*!< PLL input clock*15 */
MartinJohnson 0:404f5a4f1385 7315 #define RCC_CFGR_PLLMULL16 ((uint32_t)0x00380000) /*!< PLL input clock*16 */
MartinJohnson 0:404f5a4f1385 7316
MartinJohnson 0:404f5a4f1385 7317 /*!< USB configuration */
MartinJohnson 0:404f5a4f1385 7318 #define RCC_CFGR_USBPRE ((uint32_t)0x00400000) /*!< USB prescaler */
MartinJohnson 0:404f5a4f1385 7319
MartinJohnson 0:404f5a4f1385 7320 /*!< I2S configuration */
MartinJohnson 0:404f5a4f1385 7321 #define RCC_CFGR_I2SSRC ((uint32_t)0x00800000) /*!< I2S external clock source selection */
MartinJohnson 0:404f5a4f1385 7322
MartinJohnson 0:404f5a4f1385 7323 /*!< MCO configuration */
MartinJohnson 0:404f5a4f1385 7324 #define RCC_CFGR_MCO ((uint32_t)0x07000000) /*!< MCO[2:0] bits (Microcontroller Clock Output) */
MartinJohnson 0:404f5a4f1385 7325 #define RCC_CFGR_MCO_0 ((uint32_t)0x01000000) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 7326 #define RCC_CFGR_MCO_1 ((uint32_t)0x02000000) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 7327 #define RCC_CFGR_MCO_2 ((uint32_t)0x04000000) /*!< Bit 2 */
MartinJohnson 0:404f5a4f1385 7328
MartinJohnson 0:404f5a4f1385 7329 #define RCC_CFGR_MCO_NOCLOCK ((uint32_t)0x00000000) /*!< No clock */
MartinJohnson 0:404f5a4f1385 7330 #define RCC_CFGR_MCO_LSI ((uint32_t)0x02000000) /*!< LSI clock selected as MCO source */
MartinJohnson 0:404f5a4f1385 7331 #define RCC_CFGR_MCO_LSE ((uint32_t)0x03000000) /*!< LSE clock selected as MCO source */
MartinJohnson 0:404f5a4f1385 7332 #define RCC_CFGR_MCO_SYSCLK ((uint32_t)0x04000000) /*!< System clock selected as MCO source */
MartinJohnson 0:404f5a4f1385 7333 #define RCC_CFGR_MCO_HSI ((uint32_t)0x05000000) /*!< HSI clock selected as MCO source */
MartinJohnson 0:404f5a4f1385 7334 #define RCC_CFGR_MCO_HSE ((uint32_t)0x06000000) /*!< HSE clock selected as MCO source */
MartinJohnson 0:404f5a4f1385 7335 #define RCC_CFGR_MCO_PLL ((uint32_t)0x07000000) /*!< PLL clock divided by 2 selected as MCO source */
MartinJohnson 0:404f5a4f1385 7336
MartinJohnson 0:404f5a4f1385 7337 #define RCC_CFGR_MCOF ((uint32_t)0x10000000) /*!< Microcontroller Clock Output Flag */
MartinJohnson 0:404f5a4f1385 7338
MartinJohnson 0:404f5a4f1385 7339 #define RCC_CFGR_MCO_PRE ((uint32_t)0x70000000) /*!< MCO prescaler */
MartinJohnson 0:404f5a4f1385 7340 #define RCC_CFGR_MCO_PRE_1 ((uint32_t)0x00000000) /*!< MCO is divided by 1 */
MartinJohnson 0:404f5a4f1385 7341 #define RCC_CFGR_MCO_PRE_2 ((uint32_t)0x10000000) /*!< MCO is divided by 2 */
MartinJohnson 0:404f5a4f1385 7342 #define RCC_CFGR_MCO_PRE_4 ((uint32_t)0x20000000) /*!< MCO is divided by 4 */
MartinJohnson 0:404f5a4f1385 7343 #define RCC_CFGR_MCO_PRE_8 ((uint32_t)0x30000000) /*!< MCO is divided by 8 */
MartinJohnson 0:404f5a4f1385 7344 #define RCC_CFGR_MCO_PRE_16 ((uint32_t)0x40000000) /*!< MCO is divided by 16 */
MartinJohnson 0:404f5a4f1385 7345 #define RCC_CFGR_MCO_PRE_32 ((uint32_t)0x50000000) /*!< MCO is divided by 32 */
MartinJohnson 0:404f5a4f1385 7346 #define RCC_CFGR_MCO_PRE_64 ((uint32_t)0x60000000) /*!< MCO is divided by 64 */
MartinJohnson 0:404f5a4f1385 7347 #define RCC_CFGR_MCO_PRE_128 ((uint32_t)0x70000000) /*!< MCO is divided by 128 */
MartinJohnson 0:404f5a4f1385 7348
MartinJohnson 0:404f5a4f1385 7349 #define RCC_CFGR_PLLNODIV ((uint32_t)0x80000000) /*!< PLL is not divided to MCO */
MartinJohnson 0:404f5a4f1385 7350
MartinJohnson 0:404f5a4f1385 7351 /********************* Bit definition for RCC_CIR register ********************/
MartinJohnson 0:404f5a4f1385 7352 #define RCC_CIR_LSIRDYF ((uint32_t)0x00000001) /*!< LSI Ready Interrupt flag */
MartinJohnson 0:404f5a4f1385 7353 #define RCC_CIR_LSERDYF ((uint32_t)0x00000002) /*!< LSE Ready Interrupt flag */
MartinJohnson 0:404f5a4f1385 7354 #define RCC_CIR_HSIRDYF ((uint32_t)0x00000004) /*!< HSI Ready Interrupt flag */
MartinJohnson 0:404f5a4f1385 7355 #define RCC_CIR_HSERDYF ((uint32_t)0x00000008) /*!< HSE Ready Interrupt flag */
MartinJohnson 0:404f5a4f1385 7356 #define RCC_CIR_PLLRDYF ((uint32_t)0x00000010) /*!< PLL Ready Interrupt flag */
MartinJohnson 0:404f5a4f1385 7357 #define RCC_CIR_CSSF ((uint32_t)0x00000080) /*!< Clock Security System Interrupt flag */
MartinJohnson 0:404f5a4f1385 7358 #define RCC_CIR_LSIRDYIE ((uint32_t)0x00000100) /*!< LSI Ready Interrupt Enable */
MartinJohnson 0:404f5a4f1385 7359 #define RCC_CIR_LSERDYIE ((uint32_t)0x00000200) /*!< LSE Ready Interrupt Enable */
MartinJohnson 0:404f5a4f1385 7360 #define RCC_CIR_HSIRDYIE ((uint32_t)0x00000400) /*!< HSI Ready Interrupt Enable */
MartinJohnson 0:404f5a4f1385 7361 #define RCC_CIR_HSERDYIE ((uint32_t)0x00000800) /*!< HSE Ready Interrupt Enable */
MartinJohnson 0:404f5a4f1385 7362 #define RCC_CIR_PLLRDYIE ((uint32_t)0x00001000) /*!< PLL Ready Interrupt Enable */
MartinJohnson 0:404f5a4f1385 7363 #define RCC_CIR_LSIRDYC ((uint32_t)0x00010000) /*!< LSI Ready Interrupt Clear */
MartinJohnson 0:404f5a4f1385 7364 #define RCC_CIR_LSERDYC ((uint32_t)0x00020000) /*!< LSE Ready Interrupt Clear */
MartinJohnson 0:404f5a4f1385 7365 #define RCC_CIR_HSIRDYC ((uint32_t)0x00040000) /*!< HSI Ready Interrupt Clear */
MartinJohnson 0:404f5a4f1385 7366 #define RCC_CIR_HSERDYC ((uint32_t)0x00080000) /*!< HSE Ready Interrupt Clear */
MartinJohnson 0:404f5a4f1385 7367 #define RCC_CIR_PLLRDYC ((uint32_t)0x00100000) /*!< PLL Ready Interrupt Clear */
MartinJohnson 0:404f5a4f1385 7368 #define RCC_CIR_CSSC ((uint32_t)0x00800000) /*!< Clock Security System Interrupt Clear */
MartinJohnson 0:404f5a4f1385 7369
MartinJohnson 0:404f5a4f1385 7370 /****************** Bit definition for RCC_APB2RSTR register *****************/
MartinJohnson 0:404f5a4f1385 7371 #define RCC_APB2RSTR_SYSCFGRST ((uint32_t)0x00000001) /*!< SYSCFG reset */
MartinJohnson 0:404f5a4f1385 7372 #define RCC_APB2RSTR_TIM1RST ((uint32_t)0x00000200) /*!< TIM1 reset */
MartinJohnson 0:404f5a4f1385 7373 #define RCC_APB2RSTR_SPI1RST ((uint32_t)0x00001000) /*!< SPI1 reset */
MartinJohnson 0:404f5a4f1385 7374 #define RCC_APB2RSTR_TIM8RST ((uint32_t)0x00002000) /*!< TIM8 reset */
MartinJohnson 0:404f5a4f1385 7375 #define RCC_APB2RSTR_USART1RST ((uint32_t)0x00004000) /*!< USART1 reset */
MartinJohnson 0:404f5a4f1385 7376 #define RCC_APB2RSTR_SPI4RST ((uint32_t)0x00008000) /*!< SPI4 reset */
MartinJohnson 0:404f5a4f1385 7377 #define RCC_APB2RSTR_TIM15RST ((uint32_t)0x00010000) /*!< TIM15 reset */
MartinJohnson 0:404f5a4f1385 7378 #define RCC_APB2RSTR_TIM16RST ((uint32_t)0x00020000) /*!< TIM16 reset */
MartinJohnson 0:404f5a4f1385 7379 #define RCC_APB2RSTR_TIM17RST ((uint32_t)0x00040000) /*!< TIM17 reset */
MartinJohnson 0:404f5a4f1385 7380 #define RCC_APB2RSTR_TIM20RST ((uint32_t)0x00100000) /*!< TIM20 reset */
MartinJohnson 0:404f5a4f1385 7381 #define RCC_APB2RSTR_HRTIM1RST ((uint32_t)0x20000000) /*!< HRTIM1 reset */
MartinJohnson 0:404f5a4f1385 7382
MartinJohnson 0:404f5a4f1385 7383 /****************** Bit definition for RCC_APB1RSTR register ******************/
MartinJohnson 0:404f5a4f1385 7384 #define RCC_APB1RSTR_TIM2RST ((uint32_t)0x00000001) /*!< Timer 2 reset */
MartinJohnson 0:404f5a4f1385 7385 #define RCC_APB1RSTR_TIM3RST ((uint32_t)0x00000002) /*!< Timer 3 reset */
MartinJohnson 0:404f5a4f1385 7386 #define RCC_APB1RSTR_TIM4RST ((uint32_t)0x00000004) /*!< Timer 4 reset */
MartinJohnson 0:404f5a4f1385 7387 #define RCC_APB1RSTR_TIM6RST ((uint32_t)0x00000010) /*!< Timer 6 reset */
MartinJohnson 0:404f5a4f1385 7388 #define RCC_APB1RSTR_TIM7RST ((uint32_t)0x00000020) /*!< Timer 7 reset */
MartinJohnson 0:404f5a4f1385 7389 #define RCC_APB1RSTR_WWDGRST ((uint32_t)0x00000800) /*!< Window Watchdog reset */
MartinJohnson 0:404f5a4f1385 7390 #define RCC_APB1RSTR_SPI2RST ((uint32_t)0x00004000) /*!< SPI2 reset */
MartinJohnson 0:404f5a4f1385 7391 #define RCC_APB1RSTR_SPI3RST ((uint32_t)0x00008000) /*!< SPI3 reset */
MartinJohnson 0:404f5a4f1385 7392 #define RCC_APB1RSTR_USART2RST ((uint32_t)0x00020000) /*!< USART 2 reset */
MartinJohnson 0:404f5a4f1385 7393 #define RCC_APB1RSTR_USART3RST ((uint32_t)0x00040000) /*!< USART 3 reset */
MartinJohnson 0:404f5a4f1385 7394 #define RCC_APB1RSTR_UART4RST ((uint32_t)0x00080000) /*!< UART 4 reset */
MartinJohnson 0:404f5a4f1385 7395 #define RCC_APB1RSTR_UART5RST ((uint32_t)0x00100000) /*!< UART 5 reset */
MartinJohnson 0:404f5a4f1385 7396 #define RCC_APB1RSTR_I2C1RST ((uint32_t)0x00200000) /*!< I2C 1 reset */
MartinJohnson 0:404f5a4f1385 7397 #define RCC_APB1RSTR_I2C2RST ((uint32_t)0x00400000) /*!< I2C 2 reset */
MartinJohnson 0:404f5a4f1385 7398 #define RCC_APB1RSTR_USBRST ((uint32_t)0x00800000) /*!< USB reset */
MartinJohnson 0:404f5a4f1385 7399 #define RCC_APB1RSTR_CAN1RST ((uint32_t)0x02000000) /*!< CAN reset */
MartinJohnson 0:404f5a4f1385 7400 #define RCC_APB1RSTR_PWRRST ((uint32_t)0x10000000) /*!< PWR reset */
MartinJohnson 0:404f5a4f1385 7401 #define RCC_APB1RSTR_DAC1RST ((uint32_t)0x20000000) /*!< DAC 1 reset */
MartinJohnson 0:404f5a4f1385 7402 #define RCC_APB1RSTR_I2C3RST ((uint32_t)0x40000000) /*!< I2C 3 reset */
MartinJohnson 0:404f5a4f1385 7403 #define RCC_APB1RSTR_DAC2RST ((uint32_t)0x04000000) /*!< DAC 2 reset */
MartinJohnson 0:404f5a4f1385 7404 #define RCC_APB1RSTR_DACRST RCC_APB1RSTR_DAC1RST /*!< DAC reset */
MartinJohnson 0:404f5a4f1385 7405
MartinJohnson 0:404f5a4f1385 7406 /****************** Bit definition for RCC_AHBENR register ******************/
MartinJohnson 0:404f5a4f1385 7407 #define RCC_AHBENR_DMA1EN ((uint32_t)0x00000001) /*!< DMA1 clock enable */
MartinJohnson 0:404f5a4f1385 7408 #define RCC_AHBENR_DMA2EN ((uint32_t)0x00000002) /*!< DMA2 clock enable */
MartinJohnson 0:404f5a4f1385 7409 #define RCC_AHBENR_SRAMEN ((uint32_t)0x00000004) /*!< SRAM interface clock enable */
MartinJohnson 0:404f5a4f1385 7410 #define RCC_AHBENR_FLITFEN ((uint32_t)0x00000010) /*!< FLITF clock enable */
MartinJohnson 0:404f5a4f1385 7411 #define RCC_AHBENR_FMCEN ((uint32_t)0x00000020) /*!< FMC clock enable */
MartinJohnson 0:404f5a4f1385 7412 #define RCC_AHBENR_CRCEN ((uint32_t)0x00000040) /*!< CRC clock enable */
MartinJohnson 0:404f5a4f1385 7413 #define RCC_AHBENR_GPIOHEN ((uint32_t)0x00010000) /*!< GPIOH clock enable */
MartinJohnson 0:404f5a4f1385 7414 #define RCC_AHBENR_GPIOAEN ((uint32_t)0x00020000) /*!< GPIOA clock enable */
MartinJohnson 0:404f5a4f1385 7415 #define RCC_AHBENR_GPIOBEN ((uint32_t)0x00040000) /*!< GPIOB clock enable */
MartinJohnson 0:404f5a4f1385 7416 #define RCC_AHBENR_GPIOCEN ((uint32_t)0x00080000) /*!< GPIOC clock enable */
MartinJohnson 0:404f5a4f1385 7417 #define RCC_AHBENR_GPIODEN ((uint32_t)0x00100000) /*!< GPIOD clock enable */
MartinJohnson 0:404f5a4f1385 7418 #define RCC_AHBENR_GPIOEEN ((uint32_t)0x00200000) /*!< GPIOE clock enable */
MartinJohnson 0:404f5a4f1385 7419 #define RCC_AHBENR_GPIOFEN ((uint32_t)0x00400000) /*!< GPIOF clock enable */
MartinJohnson 0:404f5a4f1385 7420 #define RCC_AHBENR_GPIOGEN ((uint32_t)0x00800000) /*!< GPIOG clock enable */
MartinJohnson 0:404f5a4f1385 7421 #define RCC_AHBENR_TSEN ((uint32_t)0x01000000) /*!< TS clock enable */
MartinJohnson 0:404f5a4f1385 7422 #define RCC_AHBENR_ADC12EN ((uint32_t)0x10000000) /*!< ADC1/ ADC2 clock enable */
MartinJohnson 0:404f5a4f1385 7423 #define RCC_AHBENR_ADC34EN ((uint32_t)0x20000000) /*!< ADC1/ ADC2 clock enable */
MartinJohnson 0:404f5a4f1385 7424
MartinJohnson 0:404f5a4f1385 7425 /***************** Bit definition for RCC_APB2ENR register ******************/
MartinJohnson 0:404f5a4f1385 7426 #define RCC_APB2ENR_SYSCFGEN ((uint32_t)0x00000001) /*!< SYSCFG clock enable */
MartinJohnson 0:404f5a4f1385 7427 #define RCC_APB2ENR_TIM1EN ((uint32_t)0x00000800) /*!< TIM1 clock enable */
MartinJohnson 0:404f5a4f1385 7428 #define RCC_APB2ENR_SPI1EN ((uint32_t)0x00001000) /*!< SPI1 clock enable */
MartinJohnson 0:404f5a4f1385 7429 #define RCC_APB2ENR_TIM8EN ((uint32_t)0x00002000) /*!< TIM8 clock enable */
MartinJohnson 0:404f5a4f1385 7430 #define RCC_APB2ENR_USART1EN ((uint32_t)0x00004000) /*!< USART1 clock enable */
MartinJohnson 0:404f5a4f1385 7431 #define RCC_APB2ENR_SPI4EN ((uint32_t)0x00008000) /*!< SPI4 clock enable */
MartinJohnson 0:404f5a4f1385 7432 #define RCC_APB2ENR_TIM15EN ((uint32_t)0x00010000) /*!< TIM15 clock enable */
MartinJohnson 0:404f5a4f1385 7433 #define RCC_APB2ENR_TIM16EN ((uint32_t)0x00020000) /*!< TIM16 clock enable */
MartinJohnson 0:404f5a4f1385 7434 #define RCC_APB2ENR_TIM17EN ((uint32_t)0x00040000) /*!< TIM17 clock enable */
MartinJohnson 0:404f5a4f1385 7435 #define RCC_APB2ENR_TIM20EN ((uint32_t)0x00100000) /*!< TIM20 clock enable */
MartinJohnson 0:404f5a4f1385 7436 #define RCC_APB2ENR_HRTIM1 ((uint32_t)0x20000000) /*!< HRTIM1 clock enable */
MartinJohnson 0:404f5a4f1385 7437
MartinJohnson 0:404f5a4f1385 7438 /****************** Bit definition for RCC_APB1ENR register ******************/
MartinJohnson 0:404f5a4f1385 7439 #define RCC_APB1ENR_TIM2EN ((uint32_t)0x00000001) /*!< Timer 2 clock enable */
MartinJohnson 0:404f5a4f1385 7440 #define RCC_APB1ENR_TIM3EN ((uint32_t)0x00000002) /*!< Timer 3 clock enable */
MartinJohnson 0:404f5a4f1385 7441 #define RCC_APB1ENR_TIM4EN ((uint32_t)0x00000004) /*!< Timer 4 clock enable */
MartinJohnson 0:404f5a4f1385 7442 #define RCC_APB1ENR_TIM6EN ((uint32_t)0x00000010) /*!< Timer 6 clock enable */
MartinJohnson 0:404f5a4f1385 7443 #define RCC_APB1ENR_TIM7EN ((uint32_t)0x00000020) /*!< Timer 7 clock enable */
MartinJohnson 0:404f5a4f1385 7444 #define RCC_APB1ENR_WWDGEN ((uint32_t)0x00000800) /*!< Window Watchdog clock enable */
MartinJohnson 0:404f5a4f1385 7445 #define RCC_APB1ENR_SPI2EN ((uint32_t)0x00004000) /*!< SPI2 clock enable */
MartinJohnson 0:404f5a4f1385 7446 #define RCC_APB1ENR_SPI3EN ((uint32_t)0x00008000) /*!< SPI3 clock enable */
MartinJohnson 0:404f5a4f1385 7447 #define RCC_APB1ENR_USART2EN ((uint32_t)0x00020000) /*!< USART 2 clock enable */
MartinJohnson 0:404f5a4f1385 7448 #define RCC_APB1ENR_USART3EN ((uint32_t)0x00040000) /*!< USART 3 clock enable */
MartinJohnson 0:404f5a4f1385 7449 #define RCC_APB1ENR_UART4EN ((uint32_t)0x00080000) /*!< UART 4 clock enable */
MartinJohnson 0:404f5a4f1385 7450 #define RCC_APB1ENR_UART5EN ((uint32_t)0x00100000) /*!< UART 5 clock enable */
MartinJohnson 0:404f5a4f1385 7451 #define RCC_APB1ENR_I2C1EN ((uint32_t)0x00200000) /*!< I2C 1 clock enable */
MartinJohnson 0:404f5a4f1385 7452 #define RCC_APB1ENR_I2C2EN ((uint32_t)0x00400000) /*!< I2C 2 clock enable */
MartinJohnson 0:404f5a4f1385 7453 #define RCC_APB1ENR_USBEN ((uint32_t)0x00800000) /*!< USB clock enable */
MartinJohnson 0:404f5a4f1385 7454 #define RCC_APB1ENR_CAN1EN ((uint32_t)0x02000000) /*!< CAN clock enable */
MartinJohnson 0:404f5a4f1385 7455 #define RCC_APB1ENR_DAC2EN ((uint32_t)0x04000000) /*!< DAC 2 clock enable */
MartinJohnson 0:404f5a4f1385 7456 #define RCC_APB1ENR_PWREN ((uint32_t)0x10000000) /*!< PWR clock enable */
MartinJohnson 0:404f5a4f1385 7457 #define RCC_APB1ENR_DAC1EN ((uint32_t)0x20000000) /*!< DAC clock enable */
MartinJohnson 0:404f5a4f1385 7458 #define RCC_APB1ENR_I2C3EN ((uint32_t)0x40000000) /*!< I2C 3 clock enable */
MartinJohnson 0:404f5a4f1385 7459 #define RCC_APB1ENR_DACEN RCC_APB1ENR_DAC1EN
MartinJohnson 0:404f5a4f1385 7460
MartinJohnson 0:404f5a4f1385 7461 /******************** Bit definition for RCC_BDCR register ******************/
MartinJohnson 0:404f5a4f1385 7462 #define RCC_BDCR_LSEON ((uint32_t)0x00000001) /*!< External Low Speed oscillator enable */
MartinJohnson 0:404f5a4f1385 7463 #define RCC_BDCR_LSERDY ((uint32_t)0x00000002) /*!< External Low Speed oscillator Ready */
MartinJohnson 0:404f5a4f1385 7464 #define RCC_BDCR_LSEBYP ((uint32_t)0x00000004) /*!< External Low Speed oscillator Bypass */
MartinJohnson 0:404f5a4f1385 7465
MartinJohnson 0:404f5a4f1385 7466 #define RCC_BDCR_LSEDRV ((uint32_t)0x00000018) /*!< LSEDRV[1:0] bits (LSE Osc. drive capability) */
MartinJohnson 0:404f5a4f1385 7467 #define RCC_BDCR_LSEDRV_0 ((uint32_t)0x00000008) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 7468 #define RCC_BDCR_LSEDRV_1 ((uint32_t)0x00000010) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 7469
MartinJohnson 0:404f5a4f1385 7470
MartinJohnson 0:404f5a4f1385 7471 #define RCC_BDCR_RTCSEL ((uint32_t)0x00000300) /*!< RTCSEL[1:0] bits (RTC clock source selection) */
MartinJohnson 0:404f5a4f1385 7472 #define RCC_BDCR_RTCSEL_0 ((uint32_t)0x00000100) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 7473 #define RCC_BDCR_RTCSEL_1 ((uint32_t)0x00000200) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 7474
MartinJohnson 0:404f5a4f1385 7475 /*!< RTC configuration */
MartinJohnson 0:404f5a4f1385 7476 #define RCC_BDCR_RTCSEL_NOCLOCK ((uint32_t)0x00000000) /*!< No clock */
MartinJohnson 0:404f5a4f1385 7477 #define RCC_BDCR_RTCSEL_LSE ((uint32_t)0x00000100) /*!< LSE oscillator clock used as RTC clock */
MartinJohnson 0:404f5a4f1385 7478 #define RCC_BDCR_RTCSEL_LSI ((uint32_t)0x00000200) /*!< LSI oscillator clock used as RTC clock */
MartinJohnson 0:404f5a4f1385 7479 #define RCC_BDCR_RTCSEL_HSE ((uint32_t)0x00000300) /*!< HSE oscillator clock divided by 32 used as RTC clock */
MartinJohnson 0:404f5a4f1385 7480
MartinJohnson 0:404f5a4f1385 7481 #define RCC_BDCR_RTCEN ((uint32_t)0x00008000) /*!< RTC clock enable */
MartinJohnson 0:404f5a4f1385 7482 #define RCC_BDCR_BDRST ((uint32_t)0x00010000) /*!< Backup domain software reset */
MartinJohnson 0:404f5a4f1385 7483
MartinJohnson 0:404f5a4f1385 7484 /******************** Bit definition for RCC_CSR register *******************/
MartinJohnson 0:404f5a4f1385 7485 #define RCC_CSR_LSION ((uint32_t)0x00000001) /*!< Internal Low Speed oscillator enable */
MartinJohnson 0:404f5a4f1385 7486 #define RCC_CSR_LSIRDY ((uint32_t)0x00000002) /*!< Internal Low Speed oscillator Ready */
MartinJohnson 0:404f5a4f1385 7487 #define RCC_CSR_RMVF ((uint32_t)0x01000000) /*!< Remove reset flag */
MartinJohnson 0:404f5a4f1385 7488 #define RCC_CSR_OBLRSTF ((uint32_t)0x02000000) /*!< OBL reset flag */
MartinJohnson 0:404f5a4f1385 7489 #define RCC_CSR_PINRSTF ((uint32_t)0x04000000) /*!< PIN reset flag */
MartinJohnson 0:404f5a4f1385 7490 #define RCC_CSR_PORRSTF ((uint32_t)0x08000000) /*!< POR/PDR reset flag */
MartinJohnson 0:404f5a4f1385 7491 #define RCC_CSR_SFTRSTF ((uint32_t)0x10000000) /*!< Software Reset flag */
MartinJohnson 0:404f5a4f1385 7492 #define RCC_CSR_IWDGRSTF ((uint32_t)0x20000000) /*!< Independent Watchdog reset flag */
MartinJohnson 0:404f5a4f1385 7493 #define RCC_CSR_WWDGRSTF ((uint32_t)0x40000000) /*!< Window watchdog reset flag */
MartinJohnson 0:404f5a4f1385 7494 #define RCC_CSR_LPWRRSTF ((uint32_t)0x80000000) /*!< Low-Power reset flag */
MartinJohnson 0:404f5a4f1385 7495
MartinJohnson 0:404f5a4f1385 7496 /******************* Bit definition for RCC_AHBRSTR register ****************/
MartinJohnson 0:404f5a4f1385 7497 #define RCC_AHBRSTR_FMCRST ((uint32_t)0x00000020) /*!< FMC reset */
MartinJohnson 0:404f5a4f1385 7498 #define RCC_AHBRSTR_GPIOHRST ((uint32_t)0x00010000) /*!< GPIOH reset */
MartinJohnson 0:404f5a4f1385 7499 #define RCC_AHBRSTR_GPIOARST ((uint32_t)0x00020000) /*!< GPIOA reset */
MartinJohnson 0:404f5a4f1385 7500 #define RCC_AHBRSTR_GPIOBRST ((uint32_t)0x00040000) /*!< GPIOB reset */
MartinJohnson 0:404f5a4f1385 7501 #define RCC_AHBRSTR_GPIOCRST ((uint32_t)0x00080000) /*!< GPIOC reset */
MartinJohnson 0:404f5a4f1385 7502 #define RCC_AHBRSTR_GPIODRST ((uint32_t)0x00010000) /*!< GPIOD reset */
MartinJohnson 0:404f5a4f1385 7503 #define RCC_AHBRSTR_GPIOERST ((uint32_t)0x00200000) /*!< GPIOE reset */
MartinJohnson 0:404f5a4f1385 7504 #define RCC_AHBRSTR_GPIOFRST ((uint32_t)0x00400000) /*!< GPIOF reset */
MartinJohnson 0:404f5a4f1385 7505 #define RCC_AHBRSTR_GPIOGRST ((uint32_t)0x00800000) /*!< GPIOG reset */
MartinJohnson 0:404f5a4f1385 7506 #define RCC_AHBRSTR_TSRST ((uint32_t)0x00100000) /*!< TS reset */
MartinJohnson 0:404f5a4f1385 7507 #define RCC_AHBRSTR_ADC12RST ((uint32_t)0x01000000) /*!< ADC1 & ADC2 reset */
MartinJohnson 0:404f5a4f1385 7508 #define RCC_AHBRSTR_ADC34RST ((uint32_t)0x02000000) /*!< ADC3 & ADC4 reset */
MartinJohnson 0:404f5a4f1385 7509
MartinJohnson 0:404f5a4f1385 7510 /******************* Bit definition for RCC_CFGR2 register ******************/
MartinJohnson 0:404f5a4f1385 7511 /*!< PREDIV1 configuration */
MartinJohnson 0:404f5a4f1385 7512 #define RCC_CFGR2_PREDIV1 ((uint32_t)0x0000000F) /*!< PREDIV1[3:0] bits */
MartinJohnson 0:404f5a4f1385 7513 #define RCC_CFGR2_PREDIV1_0 ((uint32_t)0x00000001) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 7514 #define RCC_CFGR2_PREDIV1_1 ((uint32_t)0x00000002) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 7515 #define RCC_CFGR2_PREDIV1_2 ((uint32_t)0x00000004) /*!< Bit 2 */
MartinJohnson 0:404f5a4f1385 7516 #define RCC_CFGR2_PREDIV1_3 ((uint32_t)0x00000008) /*!< Bit 3 */
MartinJohnson 0:404f5a4f1385 7517
MartinJohnson 0:404f5a4f1385 7518 #define RCC_CFGR2_PREDIV1_DIV1 ((uint32_t)0x00000000) /*!< PREDIV1 input clock not divided */
MartinJohnson 0:404f5a4f1385 7519 #define RCC_CFGR2_PREDIV1_DIV2 ((uint32_t)0x00000001) /*!< PREDIV1 input clock divided by 2 */
MartinJohnson 0:404f5a4f1385 7520 #define RCC_CFGR2_PREDIV1_DIV3 ((uint32_t)0x00000002) /*!< PREDIV1 input clock divided by 3 */
MartinJohnson 0:404f5a4f1385 7521 #define RCC_CFGR2_PREDIV1_DIV4 ((uint32_t)0x00000003) /*!< PREDIV1 input clock divided by 4 */
MartinJohnson 0:404f5a4f1385 7522 #define RCC_CFGR2_PREDIV1_DIV5 ((uint32_t)0x00000004) /*!< PREDIV1 input clock divided by 5 */
MartinJohnson 0:404f5a4f1385 7523 #define RCC_CFGR2_PREDIV1_DIV6 ((uint32_t)0x00000005) /*!< PREDIV1 input clock divided by 6 */
MartinJohnson 0:404f5a4f1385 7524 #define RCC_CFGR2_PREDIV1_DIV7 ((uint32_t)0x00000006) /*!< PREDIV1 input clock divided by 7 */
MartinJohnson 0:404f5a4f1385 7525 #define RCC_CFGR2_PREDIV1_DIV8 ((uint32_t)0x00000007) /*!< PREDIV1 input clock divided by 8 */
MartinJohnson 0:404f5a4f1385 7526 #define RCC_CFGR2_PREDIV1_DIV9 ((uint32_t)0x00000008) /*!< PREDIV1 input clock divided by 9 */
MartinJohnson 0:404f5a4f1385 7527 #define RCC_CFGR2_PREDIV1_DIV10 ((uint32_t)0x00000009) /*!< PREDIV1 input clock divided by 10 */
MartinJohnson 0:404f5a4f1385 7528 #define RCC_CFGR2_PREDIV1_DIV11 ((uint32_t)0x0000000A) /*!< PREDIV1 input clock divided by 11 */
MartinJohnson 0:404f5a4f1385 7529 #define RCC_CFGR2_PREDIV1_DIV12 ((uint32_t)0x0000000B) /*!< PREDIV1 input clock divided by 12 */
MartinJohnson 0:404f5a4f1385 7530 #define RCC_CFGR2_PREDIV1_DIV13 ((uint32_t)0x0000000C) /*!< PREDIV1 input clock divided by 13 */
MartinJohnson 0:404f5a4f1385 7531 #define RCC_CFGR2_PREDIV1_DIV14 ((uint32_t)0x0000000D) /*!< PREDIV1 input clock divided by 14 */
MartinJohnson 0:404f5a4f1385 7532 #define RCC_CFGR2_PREDIV1_DIV15 ((uint32_t)0x0000000E) /*!< PREDIV1 input clock divided by 15 */
MartinJohnson 0:404f5a4f1385 7533 #define RCC_CFGR2_PREDIV1_DIV16 ((uint32_t)0x0000000F) /*!< PREDIV1 input clock divided by 16 */
MartinJohnson 0:404f5a4f1385 7534
MartinJohnson 0:404f5a4f1385 7535 /*!< ADCPRE12 configuration */
MartinJohnson 0:404f5a4f1385 7536 #define RCC_CFGR2_ADCPRE12 ((uint32_t)0x000001F0) /*!< ADCPRE12[8:4] bits */
MartinJohnson 0:404f5a4f1385 7537 #define RCC_CFGR2_ADCPRE12_0 ((uint32_t)0x00000010) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 7538 #define RCC_CFGR2_ADCPRE12_1 ((uint32_t)0x00000020) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 7539 #define RCC_CFGR2_ADCPRE12_2 ((uint32_t)0x00000040) /*!< Bit 2 */
MartinJohnson 0:404f5a4f1385 7540 #define RCC_CFGR2_ADCPRE12_3 ((uint32_t)0x00000080) /*!< Bit 3 */
MartinJohnson 0:404f5a4f1385 7541 #define RCC_CFGR2_ADCPRE12_4 ((uint32_t)0x00000100) /*!< Bit 4 */
MartinJohnson 0:404f5a4f1385 7542
MartinJohnson 0:404f5a4f1385 7543 #define RCC_CFGR2_ADCPRE12_NO ((uint32_t)0x00000000) /*!< ADC12 clock disabled, ADC12 can use AHB clock */
MartinJohnson 0:404f5a4f1385 7544 #define RCC_CFGR2_ADCPRE12_DIV1 ((uint32_t)0x00000100) /*!< ADC12 PLL clock divided by 1 */
MartinJohnson 0:404f5a4f1385 7545 #define RCC_CFGR2_ADCPRE12_DIV2 ((uint32_t)0x00000110) /*!< ADC12 PLL clock divided by 2 */
MartinJohnson 0:404f5a4f1385 7546 #define RCC_CFGR2_ADCPRE12_DIV4 ((uint32_t)0x00000120) /*!< ADC12 PLL clock divided by 4 */
MartinJohnson 0:404f5a4f1385 7547 #define RCC_CFGR2_ADCPRE12_DIV6 ((uint32_t)0x00000130) /*!< ADC12 PLL clock divided by 6 */
MartinJohnson 0:404f5a4f1385 7548 #define RCC_CFGR2_ADCPRE12_DIV8 ((uint32_t)0x00000140) /*!< ADC12 PLL clock divided by 8 */
MartinJohnson 0:404f5a4f1385 7549 #define RCC_CFGR2_ADCPRE12_DIV10 ((uint32_t)0x00000150) /*!< ADC12 PLL clock divided by 10 */
MartinJohnson 0:404f5a4f1385 7550 #define RCC_CFGR2_ADCPRE12_DIV12 ((uint32_t)0x00000160) /*!< ADC12 PLL clock divided by 12 */
MartinJohnson 0:404f5a4f1385 7551 #define RCC_CFGR2_ADCPRE12_DIV16 ((uint32_t)0x00000170) /*!< ADC12 PLL clock divided by 16 */
MartinJohnson 0:404f5a4f1385 7552 #define RCC_CFGR2_ADCPRE12_DIV32 ((uint32_t)0x00000180) /*!< ADC12 PLL clock divided by 32 */
MartinJohnson 0:404f5a4f1385 7553 #define RCC_CFGR2_ADCPRE12_DIV64 ((uint32_t)0x00000190) /*!< ADC12 PLL clock divided by 64 */
MartinJohnson 0:404f5a4f1385 7554 #define RCC_CFGR2_ADCPRE12_DIV128 ((uint32_t)0x000001A0) /*!< ADC12 PLL clock divided by 128 */
MartinJohnson 0:404f5a4f1385 7555 #define RCC_CFGR2_ADCPRE12_DIV256 ((uint32_t)0x000001B0) /*!< ADC12 PLL clock divided by 256 */
MartinJohnson 0:404f5a4f1385 7556
MartinJohnson 0:404f5a4f1385 7557 /*!< ADCPRE34 configuration */
MartinJohnson 0:404f5a4f1385 7558 #define RCC_CFGR2_ADCPRE34 ((uint32_t)0x00003E00) /*!< ADCPRE34[13:5] bits */
MartinJohnson 0:404f5a4f1385 7559 #define RCC_CFGR2_ADCPRE34_0 ((uint32_t)0x00000200) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 7560 #define RCC_CFGR2_ADCPRE34_1 ((uint32_t)0x00000400) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 7561 #define RCC_CFGR2_ADCPRE34_2 ((uint32_t)0x00000800) /*!< Bit 2 */
MartinJohnson 0:404f5a4f1385 7562 #define RCC_CFGR2_ADCPRE34_3 ((uint32_t)0x00001000) /*!< Bit 3 */
MartinJohnson 0:404f5a4f1385 7563 #define RCC_CFGR2_ADCPRE34_4 ((uint32_t)0x00002000) /*!< Bit 4 */
MartinJohnson 0:404f5a4f1385 7564
MartinJohnson 0:404f5a4f1385 7565 #define RCC_CFGR2_ADCPRE34_NO ((uint32_t)0x00000000) /*!< ADC34 clock disabled, ADC34 can use AHB clock */
MartinJohnson 0:404f5a4f1385 7566 #define RCC_CFGR2_ADCPRE34_DIV1 ((uint32_t)0x00002000) /*!< ADC34 PLL clock divided by 1 */
MartinJohnson 0:404f5a4f1385 7567 #define RCC_CFGR2_ADCPRE34_DIV2 ((uint32_t)0x00002200) /*!< ADC34 PLL clock divided by 2 */
MartinJohnson 0:404f5a4f1385 7568 #define RCC_CFGR2_ADCPRE34_DIV4 ((uint32_t)0x00002400) /*!< ADC34 PLL clock divided by 4 */
MartinJohnson 0:404f5a4f1385 7569 #define RCC_CFGR2_ADCPRE34_DIV6 ((uint32_t)0x00002600) /*!< ADC34 PLL clock divided by 6 */
MartinJohnson 0:404f5a4f1385 7570 #define RCC_CFGR2_ADCPRE34_DIV8 ((uint32_t)0x00002800) /*!< ADC34 PLL clock divided by 8 */
MartinJohnson 0:404f5a4f1385 7571 #define RCC_CFGR2_ADCPRE34_DIV10 ((uint32_t)0x00002A00) /*!< ADC34 PLL clock divided by 10 */
MartinJohnson 0:404f5a4f1385 7572 #define RCC_CFGR2_ADCPRE34_DIV12 ((uint32_t)0x00002C00) /*!< ADC34 PLL clock divided by 12 */
MartinJohnson 0:404f5a4f1385 7573 #define RCC_CFGR2_ADCPRE34_DIV16 ((uint32_t)0x00002E00) /*!< ADC34 PLL clock divided by 16 */
MartinJohnson 0:404f5a4f1385 7574 #define RCC_CFGR2_ADCPRE34_DIV32 ((uint32_t)0x00003000) /*!< ADC34 PLL clock divided by 32 */
MartinJohnson 0:404f5a4f1385 7575 #define RCC_CFGR2_ADCPRE34_DIV64 ((uint32_t)0x00003200) /*!< ADC34 PLL clock divided by 64 */
MartinJohnson 0:404f5a4f1385 7576 #define RCC_CFGR2_ADCPRE34_DIV128 ((uint32_t)0x00003400) /*!< ADC34 PLL clock divided by 128 */
MartinJohnson 0:404f5a4f1385 7577 #define RCC_CFGR2_ADCPRE34_DIV256 ((uint32_t)0x00003600) /*!< ADC34 PLL clock divided by 256 */
MartinJohnson 0:404f5a4f1385 7578
MartinJohnson 0:404f5a4f1385 7579 /******************* Bit definition for RCC_CFGR3 register ******************/
MartinJohnson 0:404f5a4f1385 7580 #define RCC_CFGR3_USART1SW ((uint32_t)0x00000003) /*!< USART1SW[1:0] bits */
MartinJohnson 0:404f5a4f1385 7581 #define RCC_CFGR3_USART1SW_0 ((uint32_t)0x00000001) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 7582 #define RCC_CFGR3_USART1SW_1 ((uint32_t)0x00000002) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 7583
MartinJohnson 0:404f5a4f1385 7584 #define RCC_CFGR3_I2CSW ((uint32_t)0x00000070) /*!< I2CSW bits */
MartinJohnson 0:404f5a4f1385 7585 #define RCC_CFGR3_I2C1SW ((uint32_t)0x00000010) /*!< I2C1SW bits */
MartinJohnson 0:404f5a4f1385 7586 #define RCC_CFGR3_I2C2SW ((uint32_t)0x00000020) /*!< I2C2SW bits */
MartinJohnson 0:404f5a4f1385 7587 #define RCC_CFGR3_I2C3SW ((uint32_t)0x00000040) /*!< I2C3SW bits */
MartinJohnson 0:404f5a4f1385 7588
MartinJohnson 0:404f5a4f1385 7589 #define RCC_CFGR3_TIMSW ((uint32_t)0x00002F00) /*!< TIMSW bits */
MartinJohnson 0:404f5a4f1385 7590 #define RCC_CFGR3_TIM1SW ((uint32_t)0x00000100) /*!< TIM1SW bits */
MartinJohnson 0:404f5a4f1385 7591 #define RCC_CFGR3_TIM8SW ((uint32_t)0x00000200) /*!< TIM8SW bits */
MartinJohnson 0:404f5a4f1385 7592 #define RCC_CFGR3_TIM15SW ((uint32_t)0x00000400) /*!< TIM15SW bits */
MartinJohnson 0:404f5a4f1385 7593 #define RCC_CFGR3_TIM16SW ((uint32_t)0x00000800) /*!< TIM16SW bits */
MartinJohnson 0:404f5a4f1385 7594 #define RCC_CFGR3_TIM17SW ((uint32_t)0x00002000) /*!< TIM17SW bits */
MartinJohnson 0:404f5a4f1385 7595 #define RCC_CFGR3_TIM20SW ((uint32_t)0x00008000) /*!< TIM20SW bits */
MartinJohnson 0:404f5a4f1385 7596 #define RCC_CFGR3_TIM2SW ((uint32_t)0x01000000) /*!< TIM3SW bits */
MartinJohnson 0:404f5a4f1385 7597 #define RCC_CFGR3_TIM3SW ((uint32_t)0x02000000) /*!< TIM2SW bits */
MartinJohnson 0:404f5a4f1385 7598
MartinJohnson 0:404f5a4f1385 7599
MartinJohnson 0:404f5a4f1385 7600 #define RCC_CFGR3_HRTIM1SW ((uint32_t)0x00001000) /*!< HRTIM1SW bits */
MartinJohnson 0:404f5a4f1385 7601
MartinJohnson 0:404f5a4f1385 7602 #define RCC_CFGR3_USART2SW ((uint32_t)0x00030000) /*!< USART2SW[1:0] bits */
MartinJohnson 0:404f5a4f1385 7603 #define RCC_CFGR3_USART2SW_0 ((uint32_t)0x00010000) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 7604 #define RCC_CFGR3_USART2SW_1 ((uint32_t)0x00020000) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 7605
MartinJohnson 0:404f5a4f1385 7606 #define RCC_CFGR3_USART3SW ((uint32_t)0x000C0000) /*!< USART3SW[1:0] bits */
MartinJohnson 0:404f5a4f1385 7607 #define RCC_CFGR3_USART3SW_0 ((uint32_t)0x00040000) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 7608 #define RCC_CFGR3_USART3SW_1 ((uint32_t)0x00080000) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 7609
MartinJohnson 0:404f5a4f1385 7610 #define RCC_CFGR3_UART4SW ((uint32_t)0x00300000) /*!< UART4SW[1:0] bits */
MartinJohnson 0:404f5a4f1385 7611 #define RCC_CFGR3_UART4SW_0 ((uint32_t)0x00100000) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 7612 #define RCC_CFGR3_UART4SW_1 ((uint32_t)0x00200000) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 7613
MartinJohnson 0:404f5a4f1385 7614 #define RCC_CFGR3_UART5SW ((uint32_t)0x00C00000) /*!< UART5SW[1:0] bits */
MartinJohnson 0:404f5a4f1385 7615 #define RCC_CFGR3_UART5SW_0 ((uint32_t)0x00400000) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 7616 #define RCC_CFGR3_UART5SW_1 ((uint32_t)0x00800000) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 7617
MartinJohnson 0:404f5a4f1385 7618 #define RCC_CFGR3_TIM2SW ((uint32_t)0x01000000) /*!< TIM3SW bits */
MartinJohnson 0:404f5a4f1385 7619 #define RCC_CFGR3_TIM3SW ((uint32_t)0x02000000) /*!< TIM2SW bits */
MartinJohnson 0:404f5a4f1385 7620
MartinJohnson 0:404f5a4f1385 7621 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 7622 /* */
MartinJohnson 0:404f5a4f1385 7623 /* Real-Time Clock (RTC) */
MartinJohnson 0:404f5a4f1385 7624 /* */
MartinJohnson 0:404f5a4f1385 7625 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 7626 /******************** Bits definition for RTC_TR register *******************/
MartinJohnson 0:404f5a4f1385 7627 #define RTC_TR_PM ((uint32_t)0x00400000)
MartinJohnson 0:404f5a4f1385 7628 #define RTC_TR_HT ((uint32_t)0x00300000)
MartinJohnson 0:404f5a4f1385 7629 #define RTC_TR_HT_0 ((uint32_t)0x00100000)
MartinJohnson 0:404f5a4f1385 7630 #define RTC_TR_HT_1 ((uint32_t)0x00200000)
MartinJohnson 0:404f5a4f1385 7631 #define RTC_TR_HU ((uint32_t)0x000F0000)
MartinJohnson 0:404f5a4f1385 7632 #define RTC_TR_HU_0 ((uint32_t)0x00010000)
MartinJohnson 0:404f5a4f1385 7633 #define RTC_TR_HU_1 ((uint32_t)0x00020000)
MartinJohnson 0:404f5a4f1385 7634 #define RTC_TR_HU_2 ((uint32_t)0x00040000)
MartinJohnson 0:404f5a4f1385 7635 #define RTC_TR_HU_3 ((uint32_t)0x00080000)
MartinJohnson 0:404f5a4f1385 7636 #define RTC_TR_MNT ((uint32_t)0x00007000)
MartinJohnson 0:404f5a4f1385 7637 #define RTC_TR_MNT_0 ((uint32_t)0x00001000)
MartinJohnson 0:404f5a4f1385 7638 #define RTC_TR_MNT_1 ((uint32_t)0x00002000)
MartinJohnson 0:404f5a4f1385 7639 #define RTC_TR_MNT_2 ((uint32_t)0x00004000)
MartinJohnson 0:404f5a4f1385 7640 #define RTC_TR_MNU ((uint32_t)0x00000F00)
MartinJohnson 0:404f5a4f1385 7641 #define RTC_TR_MNU_0 ((uint32_t)0x00000100)
MartinJohnson 0:404f5a4f1385 7642 #define RTC_TR_MNU_1 ((uint32_t)0x00000200)
MartinJohnson 0:404f5a4f1385 7643 #define RTC_TR_MNU_2 ((uint32_t)0x00000400)
MartinJohnson 0:404f5a4f1385 7644 #define RTC_TR_MNU_3 ((uint32_t)0x00000800)
MartinJohnson 0:404f5a4f1385 7645 #define RTC_TR_ST ((uint32_t)0x00000070)
MartinJohnson 0:404f5a4f1385 7646 #define RTC_TR_ST_0 ((uint32_t)0x00000010)
MartinJohnson 0:404f5a4f1385 7647 #define RTC_TR_ST_1 ((uint32_t)0x00000020)
MartinJohnson 0:404f5a4f1385 7648 #define RTC_TR_ST_2 ((uint32_t)0x00000040)
MartinJohnson 0:404f5a4f1385 7649 #define RTC_TR_SU ((uint32_t)0x0000000F)
MartinJohnson 0:404f5a4f1385 7650 #define RTC_TR_SU_0 ((uint32_t)0x00000001)
MartinJohnson 0:404f5a4f1385 7651 #define RTC_TR_SU_1 ((uint32_t)0x00000002)
MartinJohnson 0:404f5a4f1385 7652 #define RTC_TR_SU_2 ((uint32_t)0x00000004)
MartinJohnson 0:404f5a4f1385 7653 #define RTC_TR_SU_3 ((uint32_t)0x00000008)
MartinJohnson 0:404f5a4f1385 7654
MartinJohnson 0:404f5a4f1385 7655 /******************** Bits definition for RTC_DR register *******************/
MartinJohnson 0:404f5a4f1385 7656 #define RTC_DR_YT ((uint32_t)0x00F00000)
MartinJohnson 0:404f5a4f1385 7657 #define RTC_DR_YT_0 ((uint32_t)0x00100000)
MartinJohnson 0:404f5a4f1385 7658 #define RTC_DR_YT_1 ((uint32_t)0x00200000)
MartinJohnson 0:404f5a4f1385 7659 #define RTC_DR_YT_2 ((uint32_t)0x00400000)
MartinJohnson 0:404f5a4f1385 7660 #define RTC_DR_YT_3 ((uint32_t)0x00800000)
MartinJohnson 0:404f5a4f1385 7661 #define RTC_DR_YU ((uint32_t)0x000F0000)
MartinJohnson 0:404f5a4f1385 7662 #define RTC_DR_YU_0 ((uint32_t)0x00010000)
MartinJohnson 0:404f5a4f1385 7663 #define RTC_DR_YU_1 ((uint32_t)0x00020000)
MartinJohnson 0:404f5a4f1385 7664 #define RTC_DR_YU_2 ((uint32_t)0x00040000)
MartinJohnson 0:404f5a4f1385 7665 #define RTC_DR_YU_3 ((uint32_t)0x00080000)
MartinJohnson 0:404f5a4f1385 7666 #define RTC_DR_WDU ((uint32_t)0x0000E000)
MartinJohnson 0:404f5a4f1385 7667 #define RTC_DR_WDU_0 ((uint32_t)0x00002000)
MartinJohnson 0:404f5a4f1385 7668 #define RTC_DR_WDU_1 ((uint32_t)0x00004000)
MartinJohnson 0:404f5a4f1385 7669 #define RTC_DR_WDU_2 ((uint32_t)0x00008000)
MartinJohnson 0:404f5a4f1385 7670 #define RTC_DR_MT ((uint32_t)0x00001000)
MartinJohnson 0:404f5a4f1385 7671 #define RTC_DR_MU ((uint32_t)0x00000F00)
MartinJohnson 0:404f5a4f1385 7672 #define RTC_DR_MU_0 ((uint32_t)0x00000100)
MartinJohnson 0:404f5a4f1385 7673 #define RTC_DR_MU_1 ((uint32_t)0x00000200)
MartinJohnson 0:404f5a4f1385 7674 #define RTC_DR_MU_2 ((uint32_t)0x00000400)
MartinJohnson 0:404f5a4f1385 7675 #define RTC_DR_MU_3 ((uint32_t)0x00000800)
MartinJohnson 0:404f5a4f1385 7676 #define RTC_DR_DT ((uint32_t)0x00000030)
MartinJohnson 0:404f5a4f1385 7677 #define RTC_DR_DT_0 ((uint32_t)0x00000010)
MartinJohnson 0:404f5a4f1385 7678 #define RTC_DR_DT_1 ((uint32_t)0x00000020)
MartinJohnson 0:404f5a4f1385 7679 #define RTC_DR_DU ((uint32_t)0x0000000F)
MartinJohnson 0:404f5a4f1385 7680 #define RTC_DR_DU_0 ((uint32_t)0x00000001)
MartinJohnson 0:404f5a4f1385 7681 #define RTC_DR_DU_1 ((uint32_t)0x00000002)
MartinJohnson 0:404f5a4f1385 7682 #define RTC_DR_DU_2 ((uint32_t)0x00000004)
MartinJohnson 0:404f5a4f1385 7683 #define RTC_DR_DU_3 ((uint32_t)0x00000008)
MartinJohnson 0:404f5a4f1385 7684
MartinJohnson 0:404f5a4f1385 7685 /******************** Bits definition for RTC_CR register *******************/
MartinJohnson 0:404f5a4f1385 7686 #define RTC_CR_COE ((uint32_t)0x00800000)
MartinJohnson 0:404f5a4f1385 7687 #define RTC_CR_OSEL ((uint32_t)0x00600000)
MartinJohnson 0:404f5a4f1385 7688 #define RTC_CR_OSEL_0 ((uint32_t)0x00200000)
MartinJohnson 0:404f5a4f1385 7689 #define RTC_CR_OSEL_1 ((uint32_t)0x00400000)
MartinJohnson 0:404f5a4f1385 7690 #define RTC_CR_POL ((uint32_t)0x00100000)
MartinJohnson 0:404f5a4f1385 7691 #define RTC_CR_COSEL ((uint32_t)0x00080000)
MartinJohnson 0:404f5a4f1385 7692 #define RTC_CR_BCK ((uint32_t)0x00040000)
MartinJohnson 0:404f5a4f1385 7693 #define RTC_CR_SUB1H ((uint32_t)0x00020000)
MartinJohnson 0:404f5a4f1385 7694 #define RTC_CR_ADD1H ((uint32_t)0x00010000)
MartinJohnson 0:404f5a4f1385 7695 #define RTC_CR_TSIE ((uint32_t)0x00008000)
MartinJohnson 0:404f5a4f1385 7696 #define RTC_CR_WUTIE ((uint32_t)0x00004000)
MartinJohnson 0:404f5a4f1385 7697 #define RTC_CR_ALRBIE ((uint32_t)0x00002000)
MartinJohnson 0:404f5a4f1385 7698 #define RTC_CR_ALRAIE ((uint32_t)0x00001000)
MartinJohnson 0:404f5a4f1385 7699 #define RTC_CR_TSE ((uint32_t)0x00000800)
MartinJohnson 0:404f5a4f1385 7700 #define RTC_CR_WUTE ((uint32_t)0x00000400)
MartinJohnson 0:404f5a4f1385 7701 #define RTC_CR_ALRBE ((uint32_t)0x00000200)
MartinJohnson 0:404f5a4f1385 7702 #define RTC_CR_ALRAE ((uint32_t)0x00000100)
MartinJohnson 0:404f5a4f1385 7703 #define RTC_CR_FMT ((uint32_t)0x00000040)
MartinJohnson 0:404f5a4f1385 7704 #define RTC_CR_BYPSHAD ((uint32_t)0x00000020)
MartinJohnson 0:404f5a4f1385 7705 #define RTC_CR_REFCKON ((uint32_t)0x00000010)
MartinJohnson 0:404f5a4f1385 7706 #define RTC_CR_TSEDGE ((uint32_t)0x00000008)
MartinJohnson 0:404f5a4f1385 7707 #define RTC_CR_WUCKSEL ((uint32_t)0x00000007)
MartinJohnson 0:404f5a4f1385 7708 #define RTC_CR_WUCKSEL_0 ((uint32_t)0x00000001)
MartinJohnson 0:404f5a4f1385 7709 #define RTC_CR_WUCKSEL_1 ((uint32_t)0x00000002)
MartinJohnson 0:404f5a4f1385 7710 #define RTC_CR_WUCKSEL_2 ((uint32_t)0x00000004)
MartinJohnson 0:404f5a4f1385 7711
MartinJohnson 0:404f5a4f1385 7712 /******************** Bits definition for RTC_ISR register ******************/
MartinJohnson 0:404f5a4f1385 7713 #define RTC_ISR_RECALPF ((uint32_t)0x00010000)
MartinJohnson 0:404f5a4f1385 7714 #define RTC_ISR_TAMP3F ((uint32_t)0x00008000)
MartinJohnson 0:404f5a4f1385 7715 #define RTC_ISR_TAMP2F ((uint32_t)0x00004000)
MartinJohnson 0:404f5a4f1385 7716 #define RTC_ISR_TAMP1F ((uint32_t)0x00002000)
MartinJohnson 0:404f5a4f1385 7717 #define RTC_ISR_TSOVF ((uint32_t)0x00001000)
MartinJohnson 0:404f5a4f1385 7718 #define RTC_ISR_TSF ((uint32_t)0x00000800)
MartinJohnson 0:404f5a4f1385 7719 #define RTC_ISR_WUTF ((uint32_t)0x00000400)
MartinJohnson 0:404f5a4f1385 7720 #define RTC_ISR_ALRBF ((uint32_t)0x00000200)
MartinJohnson 0:404f5a4f1385 7721 #define RTC_ISR_ALRAF ((uint32_t)0x00000100)
MartinJohnson 0:404f5a4f1385 7722 #define RTC_ISR_INIT ((uint32_t)0x00000080)
MartinJohnson 0:404f5a4f1385 7723 #define RTC_ISR_INITF ((uint32_t)0x00000040)
MartinJohnson 0:404f5a4f1385 7724 #define RTC_ISR_RSF ((uint32_t)0x00000020)
MartinJohnson 0:404f5a4f1385 7725 #define RTC_ISR_INITS ((uint32_t)0x00000010)
MartinJohnson 0:404f5a4f1385 7726 #define RTC_ISR_SHPF ((uint32_t)0x00000008)
MartinJohnson 0:404f5a4f1385 7727 #define RTC_ISR_WUTWF ((uint32_t)0x00000004)
MartinJohnson 0:404f5a4f1385 7728 #define RTC_ISR_ALRBWF ((uint32_t)0x00000002)
MartinJohnson 0:404f5a4f1385 7729 #define RTC_ISR_ALRAWF ((uint32_t)0x00000001)
MartinJohnson 0:404f5a4f1385 7730
MartinJohnson 0:404f5a4f1385 7731 /******************** Bits definition for RTC_PRER register *****************/
MartinJohnson 0:404f5a4f1385 7732 #define RTC_PRER_PREDIV_A ((uint32_t)0x007F0000)
MartinJohnson 0:404f5a4f1385 7733 #define RTC_PRER_PREDIV_S ((uint32_t)0x00007FFF)
MartinJohnson 0:404f5a4f1385 7734
MartinJohnson 0:404f5a4f1385 7735 /******************** Bits definition for RTC_WUTR register *****************/
MartinJohnson 0:404f5a4f1385 7736 #define RTC_WUTR_WUT ((uint32_t)0x0000FFFF)
MartinJohnson 0:404f5a4f1385 7737
MartinJohnson 0:404f5a4f1385 7738 /******************** Bits definition for RTC_ALRMAR register ***************/
MartinJohnson 0:404f5a4f1385 7739 #define RTC_ALRMAR_MSK4 ((uint32_t)0x80000000)
MartinJohnson 0:404f5a4f1385 7740 #define RTC_ALRMAR_WDSEL ((uint32_t)0x40000000)
MartinJohnson 0:404f5a4f1385 7741 #define RTC_ALRMAR_DT ((uint32_t)0x30000000)
MartinJohnson 0:404f5a4f1385 7742 #define RTC_ALRMAR_DT_0 ((uint32_t)0x10000000)
MartinJohnson 0:404f5a4f1385 7743 #define RTC_ALRMAR_DT_1 ((uint32_t)0x20000000)
MartinJohnson 0:404f5a4f1385 7744 #define RTC_ALRMAR_DU ((uint32_t)0x0F000000)
MartinJohnson 0:404f5a4f1385 7745 #define RTC_ALRMAR_DU_0 ((uint32_t)0x01000000)
MartinJohnson 0:404f5a4f1385 7746 #define RTC_ALRMAR_DU_1 ((uint32_t)0x02000000)
MartinJohnson 0:404f5a4f1385 7747 #define RTC_ALRMAR_DU_2 ((uint32_t)0x04000000)
MartinJohnson 0:404f5a4f1385 7748 #define RTC_ALRMAR_DU_3 ((uint32_t)0x08000000)
MartinJohnson 0:404f5a4f1385 7749 #define RTC_ALRMAR_MSK3 ((uint32_t)0x00800000)
MartinJohnson 0:404f5a4f1385 7750 #define RTC_ALRMAR_PM ((uint32_t)0x00400000)
MartinJohnson 0:404f5a4f1385 7751 #define RTC_ALRMAR_HT ((uint32_t)0x00300000)
MartinJohnson 0:404f5a4f1385 7752 #define RTC_ALRMAR_HT_0 ((uint32_t)0x00100000)
MartinJohnson 0:404f5a4f1385 7753 #define RTC_ALRMAR_HT_1 ((uint32_t)0x00200000)
MartinJohnson 0:404f5a4f1385 7754 #define RTC_ALRMAR_HU ((uint32_t)0x000F0000)
MartinJohnson 0:404f5a4f1385 7755 #define RTC_ALRMAR_HU_0 ((uint32_t)0x00010000)
MartinJohnson 0:404f5a4f1385 7756 #define RTC_ALRMAR_HU_1 ((uint32_t)0x00020000)
MartinJohnson 0:404f5a4f1385 7757 #define RTC_ALRMAR_HU_2 ((uint32_t)0x00040000)
MartinJohnson 0:404f5a4f1385 7758 #define RTC_ALRMAR_HU_3 ((uint32_t)0x00080000)
MartinJohnson 0:404f5a4f1385 7759 #define RTC_ALRMAR_MSK2 ((uint32_t)0x00008000)
MartinJohnson 0:404f5a4f1385 7760 #define RTC_ALRMAR_MNT ((uint32_t)0x00007000)
MartinJohnson 0:404f5a4f1385 7761 #define RTC_ALRMAR_MNT_0 ((uint32_t)0x00001000)
MartinJohnson 0:404f5a4f1385 7762 #define RTC_ALRMAR_MNT_1 ((uint32_t)0x00002000)
MartinJohnson 0:404f5a4f1385 7763 #define RTC_ALRMAR_MNT_2 ((uint32_t)0x00004000)
MartinJohnson 0:404f5a4f1385 7764 #define RTC_ALRMAR_MNU ((uint32_t)0x00000F00)
MartinJohnson 0:404f5a4f1385 7765 #define RTC_ALRMAR_MNU_0 ((uint32_t)0x00000100)
MartinJohnson 0:404f5a4f1385 7766 #define RTC_ALRMAR_MNU_1 ((uint32_t)0x00000200)
MartinJohnson 0:404f5a4f1385 7767 #define RTC_ALRMAR_MNU_2 ((uint32_t)0x00000400)
MartinJohnson 0:404f5a4f1385 7768 #define RTC_ALRMAR_MNU_3 ((uint32_t)0x00000800)
MartinJohnson 0:404f5a4f1385 7769 #define RTC_ALRMAR_MSK1 ((uint32_t)0x00000080)
MartinJohnson 0:404f5a4f1385 7770 #define RTC_ALRMAR_ST ((uint32_t)0x00000070)
MartinJohnson 0:404f5a4f1385 7771 #define RTC_ALRMAR_ST_0 ((uint32_t)0x00000010)
MartinJohnson 0:404f5a4f1385 7772 #define RTC_ALRMAR_ST_1 ((uint32_t)0x00000020)
MartinJohnson 0:404f5a4f1385 7773 #define RTC_ALRMAR_ST_2 ((uint32_t)0x00000040)
MartinJohnson 0:404f5a4f1385 7774 #define RTC_ALRMAR_SU ((uint32_t)0x0000000F)
MartinJohnson 0:404f5a4f1385 7775 #define RTC_ALRMAR_SU_0 ((uint32_t)0x00000001)
MartinJohnson 0:404f5a4f1385 7776 #define RTC_ALRMAR_SU_1 ((uint32_t)0x00000002)
MartinJohnson 0:404f5a4f1385 7777 #define RTC_ALRMAR_SU_2 ((uint32_t)0x00000004)
MartinJohnson 0:404f5a4f1385 7778 #define RTC_ALRMAR_SU_3 ((uint32_t)0x00000008)
MartinJohnson 0:404f5a4f1385 7779
MartinJohnson 0:404f5a4f1385 7780 /******************** Bits definition for RTC_ALRMBR register ***************/
MartinJohnson 0:404f5a4f1385 7781 #define RTC_ALRMBR_MSK4 ((uint32_t)0x80000000)
MartinJohnson 0:404f5a4f1385 7782 #define RTC_ALRMBR_WDSEL ((uint32_t)0x40000000)
MartinJohnson 0:404f5a4f1385 7783 #define RTC_ALRMBR_DT ((uint32_t)0x30000000)
MartinJohnson 0:404f5a4f1385 7784 #define RTC_ALRMBR_DT_0 ((uint32_t)0x10000000)
MartinJohnson 0:404f5a4f1385 7785 #define RTC_ALRMBR_DT_1 ((uint32_t)0x20000000)
MartinJohnson 0:404f5a4f1385 7786 #define RTC_ALRMBR_DU ((uint32_t)0x0F000000)
MartinJohnson 0:404f5a4f1385 7787 #define RTC_ALRMBR_DU_0 ((uint32_t)0x01000000)
MartinJohnson 0:404f5a4f1385 7788 #define RTC_ALRMBR_DU_1 ((uint32_t)0x02000000)
MartinJohnson 0:404f5a4f1385 7789 #define RTC_ALRMBR_DU_2 ((uint32_t)0x04000000)
MartinJohnson 0:404f5a4f1385 7790 #define RTC_ALRMBR_DU_3 ((uint32_t)0x08000000)
MartinJohnson 0:404f5a4f1385 7791 #define RTC_ALRMBR_MSK3 ((uint32_t)0x00800000)
MartinJohnson 0:404f5a4f1385 7792 #define RTC_ALRMBR_PM ((uint32_t)0x00400000)
MartinJohnson 0:404f5a4f1385 7793 #define RTC_ALRMBR_HT ((uint32_t)0x00300000)
MartinJohnson 0:404f5a4f1385 7794 #define RTC_ALRMBR_HT_0 ((uint32_t)0x00100000)
MartinJohnson 0:404f5a4f1385 7795 #define RTC_ALRMBR_HT_1 ((uint32_t)0x00200000)
MartinJohnson 0:404f5a4f1385 7796 #define RTC_ALRMBR_HU ((uint32_t)0x000F0000)
MartinJohnson 0:404f5a4f1385 7797 #define RTC_ALRMBR_HU_0 ((uint32_t)0x00010000)
MartinJohnson 0:404f5a4f1385 7798 #define RTC_ALRMBR_HU_1 ((uint32_t)0x00020000)
MartinJohnson 0:404f5a4f1385 7799 #define RTC_ALRMBR_HU_2 ((uint32_t)0x00040000)
MartinJohnson 0:404f5a4f1385 7800 #define RTC_ALRMBR_HU_3 ((uint32_t)0x00080000)
MartinJohnson 0:404f5a4f1385 7801 #define RTC_ALRMBR_MSK2 ((uint32_t)0x00008000)
MartinJohnson 0:404f5a4f1385 7802 #define RTC_ALRMBR_MNT ((uint32_t)0x00007000)
MartinJohnson 0:404f5a4f1385 7803 #define RTC_ALRMBR_MNT_0 ((uint32_t)0x00001000)
MartinJohnson 0:404f5a4f1385 7804 #define RTC_ALRMBR_MNT_1 ((uint32_t)0x00002000)
MartinJohnson 0:404f5a4f1385 7805 #define RTC_ALRMBR_MNT_2 ((uint32_t)0x00004000)
MartinJohnson 0:404f5a4f1385 7806 #define RTC_ALRMBR_MNU ((uint32_t)0x00000F00)
MartinJohnson 0:404f5a4f1385 7807 #define RTC_ALRMBR_MNU_0 ((uint32_t)0x00000100)
MartinJohnson 0:404f5a4f1385 7808 #define RTC_ALRMBR_MNU_1 ((uint32_t)0x00000200)
MartinJohnson 0:404f5a4f1385 7809 #define RTC_ALRMBR_MNU_2 ((uint32_t)0x00000400)
MartinJohnson 0:404f5a4f1385 7810 #define RTC_ALRMBR_MNU_3 ((uint32_t)0x00000800)
MartinJohnson 0:404f5a4f1385 7811 #define RTC_ALRMBR_MSK1 ((uint32_t)0x00000080)
MartinJohnson 0:404f5a4f1385 7812 #define RTC_ALRMBR_ST ((uint32_t)0x00000070)
MartinJohnson 0:404f5a4f1385 7813 #define RTC_ALRMBR_ST_0 ((uint32_t)0x00000010)
MartinJohnson 0:404f5a4f1385 7814 #define RTC_ALRMBR_ST_1 ((uint32_t)0x00000020)
MartinJohnson 0:404f5a4f1385 7815 #define RTC_ALRMBR_ST_2 ((uint32_t)0x00000040)
MartinJohnson 0:404f5a4f1385 7816 #define RTC_ALRMBR_SU ((uint32_t)0x0000000F)
MartinJohnson 0:404f5a4f1385 7817 #define RTC_ALRMBR_SU_0 ((uint32_t)0x00000001)
MartinJohnson 0:404f5a4f1385 7818 #define RTC_ALRMBR_SU_1 ((uint32_t)0x00000002)
MartinJohnson 0:404f5a4f1385 7819 #define RTC_ALRMBR_SU_2 ((uint32_t)0x00000004)
MartinJohnson 0:404f5a4f1385 7820 #define RTC_ALRMBR_SU_3 ((uint32_t)0x00000008)
MartinJohnson 0:404f5a4f1385 7821
MartinJohnson 0:404f5a4f1385 7822 /******************** Bits definition for RTC_WPR register ******************/
MartinJohnson 0:404f5a4f1385 7823 #define RTC_WPR_KEY ((uint32_t)0x000000FF)
MartinJohnson 0:404f5a4f1385 7824
MartinJohnson 0:404f5a4f1385 7825 /******************** Bits definition for RTC_SSR register ******************/
MartinJohnson 0:404f5a4f1385 7826 #define RTC_SSR_SS ((uint32_t)0x0000FFFF)
MartinJohnson 0:404f5a4f1385 7827
MartinJohnson 0:404f5a4f1385 7828 /******************** Bits definition for RTC_SHIFTR register ***************/
MartinJohnson 0:404f5a4f1385 7829 #define RTC_SHIFTR_SUBFS ((uint32_t)0x00007FFF)
MartinJohnson 0:404f5a4f1385 7830 #define RTC_SHIFTR_ADD1S ((uint32_t)0x80000000)
MartinJohnson 0:404f5a4f1385 7831
MartinJohnson 0:404f5a4f1385 7832 /******************** Bits definition for RTC_TSTR register *****************/
MartinJohnson 0:404f5a4f1385 7833 #define RTC_TSTR_PM ((uint32_t)0x00400000)
MartinJohnson 0:404f5a4f1385 7834 #define RTC_TSTR_HT ((uint32_t)0x00300000)
MartinJohnson 0:404f5a4f1385 7835 #define RTC_TSTR_HT_0 ((uint32_t)0x00100000)
MartinJohnson 0:404f5a4f1385 7836 #define RTC_TSTR_HT_1 ((uint32_t)0x00200000)
MartinJohnson 0:404f5a4f1385 7837 #define RTC_TSTR_HU ((uint32_t)0x000F0000)
MartinJohnson 0:404f5a4f1385 7838 #define RTC_TSTR_HU_0 ((uint32_t)0x00010000)
MartinJohnson 0:404f5a4f1385 7839 #define RTC_TSTR_HU_1 ((uint32_t)0x00020000)
MartinJohnson 0:404f5a4f1385 7840 #define RTC_TSTR_HU_2 ((uint32_t)0x00040000)
MartinJohnson 0:404f5a4f1385 7841 #define RTC_TSTR_HU_3 ((uint32_t)0x00080000)
MartinJohnson 0:404f5a4f1385 7842 #define RTC_TSTR_MNT ((uint32_t)0x00007000)
MartinJohnson 0:404f5a4f1385 7843 #define RTC_TSTR_MNT_0 ((uint32_t)0x00001000)
MartinJohnson 0:404f5a4f1385 7844 #define RTC_TSTR_MNT_1 ((uint32_t)0x00002000)
MartinJohnson 0:404f5a4f1385 7845 #define RTC_TSTR_MNT_2 ((uint32_t)0x00004000)
MartinJohnson 0:404f5a4f1385 7846 #define RTC_TSTR_MNU ((uint32_t)0x00000F00)
MartinJohnson 0:404f5a4f1385 7847 #define RTC_TSTR_MNU_0 ((uint32_t)0x00000100)
MartinJohnson 0:404f5a4f1385 7848 #define RTC_TSTR_MNU_1 ((uint32_t)0x00000200)
MartinJohnson 0:404f5a4f1385 7849 #define RTC_TSTR_MNU_2 ((uint32_t)0x00000400)
MartinJohnson 0:404f5a4f1385 7850 #define RTC_TSTR_MNU_3 ((uint32_t)0x00000800)
MartinJohnson 0:404f5a4f1385 7851 #define RTC_TSTR_ST ((uint32_t)0x00000070)
MartinJohnson 0:404f5a4f1385 7852 #define RTC_TSTR_ST_0 ((uint32_t)0x00000010)
MartinJohnson 0:404f5a4f1385 7853 #define RTC_TSTR_ST_1 ((uint32_t)0x00000020)
MartinJohnson 0:404f5a4f1385 7854 #define RTC_TSTR_ST_2 ((uint32_t)0x00000040)
MartinJohnson 0:404f5a4f1385 7855 #define RTC_TSTR_SU ((uint32_t)0x0000000F)
MartinJohnson 0:404f5a4f1385 7856 #define RTC_TSTR_SU_0 ((uint32_t)0x00000001)
MartinJohnson 0:404f5a4f1385 7857 #define RTC_TSTR_SU_1 ((uint32_t)0x00000002)
MartinJohnson 0:404f5a4f1385 7858 #define RTC_TSTR_SU_2 ((uint32_t)0x00000004)
MartinJohnson 0:404f5a4f1385 7859 #define RTC_TSTR_SU_3 ((uint32_t)0x00000008)
MartinJohnson 0:404f5a4f1385 7860
MartinJohnson 0:404f5a4f1385 7861 /******************** Bits definition for RTC_TSDR register *****************/
MartinJohnson 0:404f5a4f1385 7862 #define RTC_TSDR_WDU ((uint32_t)0x0000E000)
MartinJohnson 0:404f5a4f1385 7863 #define RTC_TSDR_WDU_0 ((uint32_t)0x00002000)
MartinJohnson 0:404f5a4f1385 7864 #define RTC_TSDR_WDU_1 ((uint32_t)0x00004000)
MartinJohnson 0:404f5a4f1385 7865 #define RTC_TSDR_WDU_2 ((uint32_t)0x00008000)
MartinJohnson 0:404f5a4f1385 7866 #define RTC_TSDR_MT ((uint32_t)0x00001000)
MartinJohnson 0:404f5a4f1385 7867 #define RTC_TSDR_MU ((uint32_t)0x00000F00)
MartinJohnson 0:404f5a4f1385 7868 #define RTC_TSDR_MU_0 ((uint32_t)0x00000100)
MartinJohnson 0:404f5a4f1385 7869 #define RTC_TSDR_MU_1 ((uint32_t)0x00000200)
MartinJohnson 0:404f5a4f1385 7870 #define RTC_TSDR_MU_2 ((uint32_t)0x00000400)
MartinJohnson 0:404f5a4f1385 7871 #define RTC_TSDR_MU_3 ((uint32_t)0x00000800)
MartinJohnson 0:404f5a4f1385 7872 #define RTC_TSDR_DT ((uint32_t)0x00000030)
MartinJohnson 0:404f5a4f1385 7873 #define RTC_TSDR_DT_0 ((uint32_t)0x00000010)
MartinJohnson 0:404f5a4f1385 7874 #define RTC_TSDR_DT_1 ((uint32_t)0x00000020)
MartinJohnson 0:404f5a4f1385 7875 #define RTC_TSDR_DU ((uint32_t)0x0000000F)
MartinJohnson 0:404f5a4f1385 7876 #define RTC_TSDR_DU_0 ((uint32_t)0x00000001)
MartinJohnson 0:404f5a4f1385 7877 #define RTC_TSDR_DU_1 ((uint32_t)0x00000002)
MartinJohnson 0:404f5a4f1385 7878 #define RTC_TSDR_DU_2 ((uint32_t)0x00000004)
MartinJohnson 0:404f5a4f1385 7879 #define RTC_TSDR_DU_3 ((uint32_t)0x00000008)
MartinJohnson 0:404f5a4f1385 7880
MartinJohnson 0:404f5a4f1385 7881 /******************** Bits definition for RTC_TSSSR register ****************/
MartinJohnson 0:404f5a4f1385 7882 #define RTC_TSSSR_SS ((uint32_t)0x0000FFFF)
MartinJohnson 0:404f5a4f1385 7883
MartinJohnson 0:404f5a4f1385 7884 /******************** Bits definition for RTC_CAL register *****************/
MartinJohnson 0:404f5a4f1385 7885 #define RTC_CALR_CALP ((uint32_t)0x00008000)
MartinJohnson 0:404f5a4f1385 7886 #define RTC_CALR_CALW8 ((uint32_t)0x00004000)
MartinJohnson 0:404f5a4f1385 7887 #define RTC_CALR_CALW16 ((uint32_t)0x00002000)
MartinJohnson 0:404f5a4f1385 7888 #define RTC_CALR_CALM ((uint32_t)0x000001FF)
MartinJohnson 0:404f5a4f1385 7889 #define RTC_CALR_CALM_0 ((uint32_t)0x00000001)
MartinJohnson 0:404f5a4f1385 7890 #define RTC_CALR_CALM_1 ((uint32_t)0x00000002)
MartinJohnson 0:404f5a4f1385 7891 #define RTC_CALR_CALM_2 ((uint32_t)0x00000004)
MartinJohnson 0:404f5a4f1385 7892 #define RTC_CALR_CALM_3 ((uint32_t)0x00000008)
MartinJohnson 0:404f5a4f1385 7893 #define RTC_CALR_CALM_4 ((uint32_t)0x00000010)
MartinJohnson 0:404f5a4f1385 7894 #define RTC_CALR_CALM_5 ((uint32_t)0x00000020)
MartinJohnson 0:404f5a4f1385 7895 #define RTC_CALR_CALM_6 ((uint32_t)0x00000040)
MartinJohnson 0:404f5a4f1385 7896 #define RTC_CALR_CALM_7 ((uint32_t)0x00000080)
MartinJohnson 0:404f5a4f1385 7897 #define RTC_CALR_CALM_8 ((uint32_t)0x00000100)
MartinJohnson 0:404f5a4f1385 7898
MartinJohnson 0:404f5a4f1385 7899 /******************** Bits definition for RTC_TAFCR register ****************/
MartinJohnson 0:404f5a4f1385 7900 #define RTC_TAFCR_ALARMOUTTYPE ((uint32_t)0x00040000)
MartinJohnson 0:404f5a4f1385 7901 #define RTC_TAFCR_TAMPPUDIS ((uint32_t)0x00008000)
MartinJohnson 0:404f5a4f1385 7902 #define RTC_TAFCR_TAMPPRCH ((uint32_t)0x00006000)
MartinJohnson 0:404f5a4f1385 7903 #define RTC_TAFCR_TAMPPRCH_0 ((uint32_t)0x00002000)
MartinJohnson 0:404f5a4f1385 7904 #define RTC_TAFCR_TAMPPRCH_1 ((uint32_t)0x00004000)
MartinJohnson 0:404f5a4f1385 7905 #define RTC_TAFCR_TAMPFLT ((uint32_t)0x00001800)
MartinJohnson 0:404f5a4f1385 7906 #define RTC_TAFCR_TAMPFLT_0 ((uint32_t)0x00000800)
MartinJohnson 0:404f5a4f1385 7907 #define RTC_TAFCR_TAMPFLT_1 ((uint32_t)0x00001000)
MartinJohnson 0:404f5a4f1385 7908 #define RTC_TAFCR_TAMPFREQ ((uint32_t)0x00000700)
MartinJohnson 0:404f5a4f1385 7909 #define RTC_TAFCR_TAMPFREQ_0 ((uint32_t)0x00000100)
MartinJohnson 0:404f5a4f1385 7910 #define RTC_TAFCR_TAMPFREQ_1 ((uint32_t)0x00000200)
MartinJohnson 0:404f5a4f1385 7911 #define RTC_TAFCR_TAMPFREQ_2 ((uint32_t)0x00000400)
MartinJohnson 0:404f5a4f1385 7912 #define RTC_TAFCR_TAMPTS ((uint32_t)0x00000080)
MartinJohnson 0:404f5a4f1385 7913 #define RTC_TAFCR_TAMP3TRG ((uint32_t)0x00000040)
MartinJohnson 0:404f5a4f1385 7914 #define RTC_TAFCR_TAMP3E ((uint32_t)0x00000020)
MartinJohnson 0:404f5a4f1385 7915 #define RTC_TAFCR_TAMP2TRG ((uint32_t)0x00000010)
MartinJohnson 0:404f5a4f1385 7916 #define RTC_TAFCR_TAMP2E ((uint32_t)0x00000008)
MartinJohnson 0:404f5a4f1385 7917 #define RTC_TAFCR_TAMPIE ((uint32_t)0x00000004)
MartinJohnson 0:404f5a4f1385 7918 #define RTC_TAFCR_TAMP1TRG ((uint32_t)0x00000002)
MartinJohnson 0:404f5a4f1385 7919 #define RTC_TAFCR_TAMP1E ((uint32_t)0x00000001)
MartinJohnson 0:404f5a4f1385 7920
MartinJohnson 0:404f5a4f1385 7921 /******************** Bits definition for RTC_ALRMASSR register *************/
MartinJohnson 0:404f5a4f1385 7922 #define RTC_ALRMASSR_MASKSS ((uint32_t)0x0F000000)
MartinJohnson 0:404f5a4f1385 7923 #define RTC_ALRMASSR_MASKSS_0 ((uint32_t)0x01000000)
MartinJohnson 0:404f5a4f1385 7924 #define RTC_ALRMASSR_MASKSS_1 ((uint32_t)0x02000000)
MartinJohnson 0:404f5a4f1385 7925 #define RTC_ALRMASSR_MASKSS_2 ((uint32_t)0x04000000)
MartinJohnson 0:404f5a4f1385 7926 #define RTC_ALRMASSR_MASKSS_3 ((uint32_t)0x08000000)
MartinJohnson 0:404f5a4f1385 7927 #define RTC_ALRMASSR_SS ((uint32_t)0x00007FFF)
MartinJohnson 0:404f5a4f1385 7928
MartinJohnson 0:404f5a4f1385 7929 /******************** Bits definition for RTC_ALRMBSSR register *************/
MartinJohnson 0:404f5a4f1385 7930 #define RTC_ALRMBSSR_MASKSS ((uint32_t)0x0F000000)
MartinJohnson 0:404f5a4f1385 7931 #define RTC_ALRMBSSR_MASKSS_0 ((uint32_t)0x01000000)
MartinJohnson 0:404f5a4f1385 7932 #define RTC_ALRMBSSR_MASKSS_1 ((uint32_t)0x02000000)
MartinJohnson 0:404f5a4f1385 7933 #define RTC_ALRMBSSR_MASKSS_2 ((uint32_t)0x04000000)
MartinJohnson 0:404f5a4f1385 7934 #define RTC_ALRMBSSR_MASKSS_3 ((uint32_t)0x08000000)
MartinJohnson 0:404f5a4f1385 7935 #define RTC_ALRMBSSR_SS ((uint32_t)0x00007FFF)
MartinJohnson 0:404f5a4f1385 7936
MartinJohnson 0:404f5a4f1385 7937 /******************** Bits definition for RTC_BKP0R register ****************/
MartinJohnson 0:404f5a4f1385 7938 #define RTC_BKP0R ((uint32_t)0xFFFFFFFF)
MartinJohnson 0:404f5a4f1385 7939
MartinJohnson 0:404f5a4f1385 7940 /******************** Bits definition for RTC_BKP1R register ****************/
MartinJohnson 0:404f5a4f1385 7941 #define RTC_BKP1R ((uint32_t)0xFFFFFFFF)
MartinJohnson 0:404f5a4f1385 7942
MartinJohnson 0:404f5a4f1385 7943 /******************** Bits definition for RTC_BKP2R register ****************/
MartinJohnson 0:404f5a4f1385 7944 #define RTC_BKP2R ((uint32_t)0xFFFFFFFF)
MartinJohnson 0:404f5a4f1385 7945
MartinJohnson 0:404f5a4f1385 7946 /******************** Bits definition for RTC_BKP3R register ****************/
MartinJohnson 0:404f5a4f1385 7947 #define RTC_BKP3R ((uint32_t)0xFFFFFFFF)
MartinJohnson 0:404f5a4f1385 7948
MartinJohnson 0:404f5a4f1385 7949 /******************** Bits definition for RTC_BKP4R register ****************/
MartinJohnson 0:404f5a4f1385 7950 #define RTC_BKP4R ((uint32_t)0xFFFFFFFF)
MartinJohnson 0:404f5a4f1385 7951
MartinJohnson 0:404f5a4f1385 7952 /******************** Bits definition for RTC_BKP5R register ****************/
MartinJohnson 0:404f5a4f1385 7953 #define RTC_BKP5R ((uint32_t)0xFFFFFFFF)
MartinJohnson 0:404f5a4f1385 7954
MartinJohnson 0:404f5a4f1385 7955 /******************** Bits definition for RTC_BKP6R register ****************/
MartinJohnson 0:404f5a4f1385 7956 #define RTC_BKP6R ((uint32_t)0xFFFFFFFF)
MartinJohnson 0:404f5a4f1385 7957
MartinJohnson 0:404f5a4f1385 7958 /******************** Bits definition for RTC_BKP7R register ****************/
MartinJohnson 0:404f5a4f1385 7959 #define RTC_BKP7R ((uint32_t)0xFFFFFFFF)
MartinJohnson 0:404f5a4f1385 7960
MartinJohnson 0:404f5a4f1385 7961 /******************** Bits definition for RTC_BKP8R register ****************/
MartinJohnson 0:404f5a4f1385 7962 #define RTC_BKP8R ((uint32_t)0xFFFFFFFF)
MartinJohnson 0:404f5a4f1385 7963
MartinJohnson 0:404f5a4f1385 7964 /******************** Bits definition for RTC_BKP9R register ****************/
MartinJohnson 0:404f5a4f1385 7965 #define RTC_BKP9R ((uint32_t)0xFFFFFFFF)
MartinJohnson 0:404f5a4f1385 7966
MartinJohnson 0:404f5a4f1385 7967 /******************** Bits definition for RTC_BKP10R register ***************/
MartinJohnson 0:404f5a4f1385 7968 #define RTC_BKP10R ((uint32_t)0xFFFFFFFF)
MartinJohnson 0:404f5a4f1385 7969
MartinJohnson 0:404f5a4f1385 7970 /******************** Bits definition for RTC_BKP11R register ***************/
MartinJohnson 0:404f5a4f1385 7971 #define RTC_BKP11R ((uint32_t)0xFFFFFFFF)
MartinJohnson 0:404f5a4f1385 7972
MartinJohnson 0:404f5a4f1385 7973 /******************** Bits definition for RTC_BKP12R register ***************/
MartinJohnson 0:404f5a4f1385 7974 #define RTC_BKP12R ((uint32_t)0xFFFFFFFF)
MartinJohnson 0:404f5a4f1385 7975
MartinJohnson 0:404f5a4f1385 7976 /******************** Bits definition for RTC_BKP13R register ***************/
MartinJohnson 0:404f5a4f1385 7977 #define RTC_BKP13R ((uint32_t)0xFFFFFFFF)
MartinJohnson 0:404f5a4f1385 7978
MartinJohnson 0:404f5a4f1385 7979 /******************** Bits definition for RTC_BKP14R register ***************/
MartinJohnson 0:404f5a4f1385 7980 #define RTC_BKP14R ((uint32_t)0xFFFFFFFF)
MartinJohnson 0:404f5a4f1385 7981
MartinJohnson 0:404f5a4f1385 7982 /******************** Bits definition for RTC_BKP15R register ***************/
MartinJohnson 0:404f5a4f1385 7983 #define RTC_BKP15R ((uint32_t)0xFFFFFFFF)
MartinJohnson 0:404f5a4f1385 7984
MartinJohnson 0:404f5a4f1385 7985 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 7986 /* */
MartinJohnson 0:404f5a4f1385 7987 /* Serial Peripheral Interface (SPI) */
MartinJohnson 0:404f5a4f1385 7988 /* */
MartinJohnson 0:404f5a4f1385 7989 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 7990 /******************* Bit definition for SPI_CR1 register ********************/
MartinJohnson 0:404f5a4f1385 7991 #define SPI_CR1_CPHA ((uint16_t)0x0001) /*!< Clock Phase */
MartinJohnson 0:404f5a4f1385 7992 #define SPI_CR1_CPOL ((uint16_t)0x0002) /*!< Clock Polarity */
MartinJohnson 0:404f5a4f1385 7993 #define SPI_CR1_MSTR ((uint16_t)0x0004) /*!< Master Selection */
MartinJohnson 0:404f5a4f1385 7994
MartinJohnson 0:404f5a4f1385 7995 #define SPI_CR1_BR ((uint16_t)0x0038) /*!< BR[2:0] bits (Baud Rate Control) */
MartinJohnson 0:404f5a4f1385 7996 #define SPI_CR1_BR_0 ((uint16_t)0x0008) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 7997 #define SPI_CR1_BR_1 ((uint16_t)0x0010) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 7998 #define SPI_CR1_BR_2 ((uint16_t)0x0020) /*!< Bit 2 */
MartinJohnson 0:404f5a4f1385 7999
MartinJohnson 0:404f5a4f1385 8000 #define SPI_CR1_SPE ((uint16_t)0x0040) /*!< SPI Enable */
MartinJohnson 0:404f5a4f1385 8001 #define SPI_CR1_LSBFIRST ((uint16_t)0x0080) /*!< Frame Format */
MartinJohnson 0:404f5a4f1385 8002 #define SPI_CR1_SSI ((uint16_t)0x0100) /*!< Internal slave select */
MartinJohnson 0:404f5a4f1385 8003 #define SPI_CR1_SSM ((uint16_t)0x0200) /*!< Software slave management */
MartinJohnson 0:404f5a4f1385 8004 #define SPI_CR1_RXONLY ((uint16_t)0x0400) /*!< Receive only */
MartinJohnson 0:404f5a4f1385 8005 #define SPI_CR1_CRCL ((uint16_t)0x0800) /*!< CRC Length */
MartinJohnson 0:404f5a4f1385 8006 #define SPI_CR1_CRCNEXT ((uint16_t)0x1000) /*!< Transmit CRC next */
MartinJohnson 0:404f5a4f1385 8007 #define SPI_CR1_CRCEN ((uint16_t)0x2000) /*!< Hardware CRC calculation enable */
MartinJohnson 0:404f5a4f1385 8008 #define SPI_CR1_BIDIOE ((uint16_t)0x4000) /*!< Output enable in bidirectional mode */
MartinJohnson 0:404f5a4f1385 8009 #define SPI_CR1_BIDIMODE ((uint16_t)0x8000) /*!< Bidirectional data mode enable */
MartinJohnson 0:404f5a4f1385 8010
MartinJohnson 0:404f5a4f1385 8011 /******************* Bit definition for SPI_CR2 register ********************/
MartinJohnson 0:404f5a4f1385 8012 #define SPI_CR2_RXDMAEN ((uint16_t)0x0001) /*!< Rx Buffer DMA Enable */
MartinJohnson 0:404f5a4f1385 8013 #define SPI_CR2_TXDMAEN ((uint16_t)0x0002) /*!< Tx Buffer DMA Enable */
MartinJohnson 0:404f5a4f1385 8014 #define SPI_CR2_SSOE ((uint16_t)0x0004) /*!< SS Output Enable */
MartinJohnson 0:404f5a4f1385 8015 #define SPI_CR2_NSSP ((uint16_t)0x0008) /*!< NSS pulse management Enable */
MartinJohnson 0:404f5a4f1385 8016 #define SPI_CR2_FRF ((uint16_t)0x0010) /*!< Frame Format Enable */
MartinJohnson 0:404f5a4f1385 8017 #define SPI_CR2_ERRIE ((uint16_t)0x0020) /*!< Error Interrupt Enable */
MartinJohnson 0:404f5a4f1385 8018 #define SPI_CR2_RXNEIE ((uint16_t)0x0040) /*!< RX buffer Not Empty Interrupt Enable */
MartinJohnson 0:404f5a4f1385 8019 #define SPI_CR2_TXEIE ((uint16_t)0x0080) /*!< Tx buffer Empty Interrupt Enable */
MartinJohnson 0:404f5a4f1385 8020
MartinJohnson 0:404f5a4f1385 8021 #define SPI_CR2_DS ((uint16_t)0x0F00) /*!< DS[3:0] Data Size */
MartinJohnson 0:404f5a4f1385 8022 #define SPI_CR2_DS_0 ((uint16_t)0x0100) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 8023 #define SPI_CR2_DS_1 ((uint16_t)0x0200) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 8024 #define SPI_CR2_DS_2 ((uint16_t)0x0400) /*!< Bit 2 */
MartinJohnson 0:404f5a4f1385 8025 #define SPI_CR2_DS_3 ((uint16_t)0x0800) /*!< Bit 3 */
MartinJohnson 0:404f5a4f1385 8026
MartinJohnson 0:404f5a4f1385 8027 #define SPI_CR2_FRXTH ((uint16_t)0x1000) /*!< FIFO reception Threshold */
MartinJohnson 0:404f5a4f1385 8028 #define SPI_CR2_LDMARX ((uint16_t)0x2000) /*!< Last DMA transfer for reception */
MartinJohnson 0:404f5a4f1385 8029 #define SPI_CR2_LDMATX ((uint16_t)0x4000) /*!< Last DMA transfer for transmission */
MartinJohnson 0:404f5a4f1385 8030
MartinJohnson 0:404f5a4f1385 8031 /******************** Bit definition for SPI_SR register ********************/
MartinJohnson 0:404f5a4f1385 8032 #define SPI_SR_RXNE ((uint16_t)0x0001) /*!< Receive buffer Not Empty */
MartinJohnson 0:404f5a4f1385 8033 #define SPI_SR_TXE ((uint16_t)0x0002) /*!< Transmit buffer Empty */
MartinJohnson 0:404f5a4f1385 8034 #define SPI_SR_CRCERR ((uint16_t)0x0010) /*!< CRC Error flag */
MartinJohnson 0:404f5a4f1385 8035 #define SPI_SR_MODF ((uint16_t)0x0020) /*!< Mode fault */
MartinJohnson 0:404f5a4f1385 8036 #define SPI_SR_OVR ((uint16_t)0x0040) /*!< Overrun flag */
MartinJohnson 0:404f5a4f1385 8037 #define SPI_SR_BSY ((uint16_t)0x0080) /*!< Busy flag */
MartinJohnson 0:404f5a4f1385 8038 #define SPI_SR_FRE ((uint16_t)0x0100) /*!< TI frame format error */
MartinJohnson 0:404f5a4f1385 8039 #define SPI_SR_FRLVL ((uint16_t)0x0600) /*!< FIFO Reception Level */
MartinJohnson 0:404f5a4f1385 8040 #define SPI_SR_FRLVL_0 ((uint16_t)0x0200) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 8041 #define SPI_SR_FRLVL_1 ((uint16_t)0x0400) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 8042 #define SPI_SR_FTLVL ((uint16_t)0x1800) /*!< FIFO Transmission Level */
MartinJohnson 0:404f5a4f1385 8043 #define SPI_SR_FTLVL_0 ((uint16_t)0x0800) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 8044 #define SPI_SR_FTLVL_1 ((uint16_t)0x1000) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 8045
MartinJohnson 0:404f5a4f1385 8046 /******************** Bit definition for SPI_DR register ********************/
MartinJohnson 0:404f5a4f1385 8047 #define SPI_DR_DR ((uint16_t)0xFFFF) /*!< Data Register */
MartinJohnson 0:404f5a4f1385 8048
MartinJohnson 0:404f5a4f1385 8049 /******************* Bit definition for SPI_CRCPR register ******************/
MartinJohnson 0:404f5a4f1385 8050 #define SPI_CRCPR_CRCPOLY ((uint16_t)0xFFFF) /*!< CRC polynomial register */
MartinJohnson 0:404f5a4f1385 8051
MartinJohnson 0:404f5a4f1385 8052 /****************** Bit definition for SPI_RXCRCR register ******************/
MartinJohnson 0:404f5a4f1385 8053 #define SPI_RXCRCR_RXCRC ((uint16_t)0xFFFF) /*!< Rx CRC Register */
MartinJohnson 0:404f5a4f1385 8054
MartinJohnson 0:404f5a4f1385 8055 /****************** Bit definition for SPI_TXCRCR register ******************/
MartinJohnson 0:404f5a4f1385 8056 #define SPI_TXCRCR_TXCRC ((uint16_t)0xFFFF) /*!< Tx CRC Register */
MartinJohnson 0:404f5a4f1385 8057
MartinJohnson 0:404f5a4f1385 8058 /****************** Bit definition for SPI_I2SCFGR register *****************/
MartinJohnson 0:404f5a4f1385 8059 #define SPI_I2SCFGR_CHLEN ((uint16_t)0x0001) /*!<Channel length (number of bits per audio channel) */
MartinJohnson 0:404f5a4f1385 8060
MartinJohnson 0:404f5a4f1385 8061 #define SPI_I2SCFGR_DATLEN ((uint16_t)0x0006) /*!<DATLEN[1:0] bits (Data length to be transferred) */
MartinJohnson 0:404f5a4f1385 8062 #define SPI_I2SCFGR_DATLEN_0 ((uint16_t)0x0002) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8063 #define SPI_I2SCFGR_DATLEN_1 ((uint16_t)0x0004) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8064
MartinJohnson 0:404f5a4f1385 8065 #define SPI_I2SCFGR_CKPOL ((uint16_t)0x0008) /*!<steady state clock polarity */
MartinJohnson 0:404f5a4f1385 8066
MartinJohnson 0:404f5a4f1385 8067 #define SPI_I2SCFGR_I2SSTD ((uint16_t)0x0030) /*!<I2SSTD[1:0] bits (I2S standard selection) */
MartinJohnson 0:404f5a4f1385 8068 #define SPI_I2SCFGR_I2SSTD_0 ((uint16_t)0x0010) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8069 #define SPI_I2SCFGR_I2SSTD_1 ((uint16_t)0x0020) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8070
MartinJohnson 0:404f5a4f1385 8071 #define SPI_I2SCFGR_PCMSYNC ((uint16_t)0x0080) /*!<PCM frame synchronization */
MartinJohnson 0:404f5a4f1385 8072
MartinJohnson 0:404f5a4f1385 8073 #define SPI_I2SCFGR_I2SCFG ((uint16_t)0x0300) /*!<I2SCFG[1:0] bits (I2S configuration mode) */
MartinJohnson 0:404f5a4f1385 8074 #define SPI_I2SCFGR_I2SCFG_0 ((uint16_t)0x0100) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8075 #define SPI_I2SCFGR_I2SCFG_1 ((uint16_t)0x0200) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8076
MartinJohnson 0:404f5a4f1385 8077 #define SPI_I2SCFGR_I2SE ((uint16_t)0x0400) /*!<I2S Enable */
MartinJohnson 0:404f5a4f1385 8078 #define SPI_I2SCFGR_I2SMOD ((uint16_t)0x0800) /*!<I2S mode selection */
MartinJohnson 0:404f5a4f1385 8079
MartinJohnson 0:404f5a4f1385 8080 /****************** Bit definition for SPI_I2SPR register *******************/
MartinJohnson 0:404f5a4f1385 8081 #define SPI_I2SPR_I2SDIV ((uint16_t)0x00FF) /*!<I2S Linear prescaler */
MartinJohnson 0:404f5a4f1385 8082 #define SPI_I2SPR_ODD ((uint16_t)0x0100) /*!<Odd factor for the prescaler */
MartinJohnson 0:404f5a4f1385 8083 #define SPI_I2SPR_MCKOE ((uint16_t)0x0200) /*!<Master Clock Output Enable */
MartinJohnson 0:404f5a4f1385 8084
MartinJohnson 0:404f5a4f1385 8085 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 8086 /* */
MartinJohnson 0:404f5a4f1385 8087 /* System Configuration(SYSCFG) */
MartinJohnson 0:404f5a4f1385 8088 /* */
MartinJohnson 0:404f5a4f1385 8089 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 8090 /***************** Bit definition for SYSCFG_CFGR1 register *****************/
MartinJohnson 0:404f5a4f1385 8091 #define SYSCFG_CFGR1_MEM_MODE ((uint32_t)0x00000007) /*!< SYSCFG_Memory Remap Config */
MartinJohnson 0:404f5a4f1385 8092 #define SYSCFG_CFGR1_MEM_MODE_0 ((uint32_t)0x00000001) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 8093 #define SYSCFG_CFGR1_MEM_MODE_1 ((uint32_t)0x00000002) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 8094 #define SYSCFG_CFGR1_MEM_MODE_2 ((uint32_t)0x00000004) /*!< Bit 2 */
MartinJohnson 0:404f5a4f1385 8095 #define SYSCFG_CFGR1_USB_IT_RMP ((uint32_t)0x00000020) /*!< USB interrupt remap */
MartinJohnson 0:404f5a4f1385 8096 #define SYSCFG_CFGR1_TIM1_ITR3_RMP ((uint32_t)0x00000040) /*!< Timer 1 ITR3 selection */
MartinJohnson 0:404f5a4f1385 8097 #define SYSCFG_CFGR1_DAC1_TRIG1_RMP ((uint32_t)0x00000080) /*!< DAC1 Trigger1 remap */
MartinJohnson 0:404f5a4f1385 8098 #define SYSCFG_CFGR1_ADC24_DMA_RMP ((uint32_t)0x00000100) /*!< ADC2 and ADC4 DMA remap */
MartinJohnson 0:404f5a4f1385 8099 #define SYSCFG_CFGR1_TIM16_DMA_RMP ((uint32_t)0x00000800) /*!< Timer 16 DMA remap */
MartinJohnson 0:404f5a4f1385 8100 #define SYSCFG_CFGR1_TIM17_DMA_RMP ((uint32_t)0x00001000) /*!< Timer 17 DMA remap */
MartinJohnson 0:404f5a4f1385 8101 #define SYSCFG_CFGR1_TIM6DAC1Ch1_DMA_RMP ((uint32_t)0x00002000) /*!< Timer 6 / DAC1 CH1 DMA remap */
MartinJohnson 0:404f5a4f1385 8102 #define SYSCFG_CFGR1_TIM7DAC1Ch2_DMA_RMP ((uint32_t)0x00004000) /*!< Timer 7 / DAC1 CH2 DMA remap */
MartinJohnson 0:404f5a4f1385 8103 #define SYSCFG_CFGR1_DAC2Ch1_DMA_RMP ((uint32_t)0x00008000) /*!< DAC2 CH1 DMA remap */
MartinJohnson 0:404f5a4f1385 8104 #define SYSCFG_CFGR1_I2C_PB6_FMP ((uint32_t)0x00010000) /*!< I2C PB6 Fast mode plus */
MartinJohnson 0:404f5a4f1385 8105 #define SYSCFG_CFGR1_I2C_PB7_FMP ((uint32_t)0x00020000) /*!< I2C PB7 Fast mode plus */
MartinJohnson 0:404f5a4f1385 8106 #define SYSCFG_CFGR1_I2C_PB8_FMP ((uint32_t)0x00040000) /*!< I2C PB8 Fast mode plus */
MartinJohnson 0:404f5a4f1385 8107 #define SYSCFG_CFGR1_I2C_PB9_FMP ((uint32_t)0x00080000) /*!< I2C PB9 Fast mode plus */
MartinJohnson 0:404f5a4f1385 8108 #define SYSCFG_CFGR1_I2C1_FMP ((uint32_t)0x00100000) /*!< I2C1 Fast mode plus */
MartinJohnson 0:404f5a4f1385 8109 #define SYSCFG_CFGR1_I2C2_FMP ((uint32_t)0x00200000) /*!< I2C2 Fast mode plus */
MartinJohnson 0:404f5a4f1385 8110 #define SYSCFG_CFGR1_ENCODER_MODE ((uint32_t)0x00C00000) /*!< Encoder Mode */
MartinJohnson 0:404f5a4f1385 8111 #define SYSCFG_CFGR1_ENCODER_MODE_0 ((uint32_t)0x00400000) /*!< Encoder Mode 0 */
MartinJohnson 0:404f5a4f1385 8112 #define SYSCFG_CFGR1_ENCODER_MODE_1 ((uint32_t)0x00800000) /*!< Encoder Mode 1 */
MartinJohnson 0:404f5a4f1385 8113 #define SYSCFG_CFGR1_I2C3_FMP ((uint32_t)0x01000000) /*!< I2C3 Fast mode plus */
MartinJohnson 0:404f5a4f1385 8114 #define SYSCFG_CFGR1_FPU_IE ((uint32_t)0xFC000000) /*!< Floating Point Unit Interrupt Enable */
MartinJohnson 0:404f5a4f1385 8115 #define SYSCFG_CFGR1_FPU_IE_0 ((uint32_t)0x04000000) /*!< Floating Point Unit Interrupt Enable 0 */
MartinJohnson 0:404f5a4f1385 8116 #define SYSCFG_CFGR1_FPU_IE_1 ((uint32_t)0x08000000) /*!< Floating Point Unit Interrupt Enable 1 */
MartinJohnson 0:404f5a4f1385 8117 #define SYSCFG_CFGR1_FPU_IE_2 ((uint32_t)0x10000000) /*!< Floating Point Unit Interrupt Enable 2 */
MartinJohnson 0:404f5a4f1385 8118 #define SYSCFG_CFGR1_FPU_IE_3 ((uint32_t)0x20000000) /*!< Floating Point Unit Interrupt Enable 3 */
MartinJohnson 0:404f5a4f1385 8119 #define SYSCFG_CFGR1_FPU_IE_4 ((uint32_t)0x40000000) /*!< Floating Point Unit Interrupt Enable 4 */
MartinJohnson 0:404f5a4f1385 8120 #define SYSCFG_CFGR1_FPU_IE_5 ((uint32_t)0x80000000) /*!< Floating Point Unit Interrupt Enable 5 */
MartinJohnson 0:404f5a4f1385 8121 #define SYSCFG_CFGR1_DAC_TRIG_RMP SYSCFG_CFGR1_DAC1_TRIG1_RMP /*!< Old define maintained for legacy purpose */
MartinJohnson 0:404f5a4f1385 8122 #define SYSCFG_CFGR1_TIM6DAC1 SYSCFG_CFGR1_TIM6DAC1Ch1_DMA_RMP /*!< Old define maintained for legacy purpose */
MartinJohnson 0:404f5a4f1385 8123 #define SYSCFG_CFGR1_TIM7DAC2 SYSCFG_CFGR1_TIM7DAC1Ch2_DMA_RMP /*!< Old define maintained for legacy purpose */
MartinJohnson 0:404f5a4f1385 8124 /***************** Bit definition for SYSCFG_RCR register *******************/
MartinJohnson 0:404f5a4f1385 8125 #define SYSCFG_RCR_PAGE0 ((uint32_t)0x00000001) /*!< ICODE SRAM Write protection page 0 */
MartinJohnson 0:404f5a4f1385 8126 #define SYSCFG_RCR_PAGE1 ((uint32_t)0x00000002) /*!< ICODE SRAM Write protection page 1 */
MartinJohnson 0:404f5a4f1385 8127 #define SYSCFG_RCR_PAGE2 ((uint32_t)0x00000004) /*!< ICODE SRAM Write protection page 2 */
MartinJohnson 0:404f5a4f1385 8128 #define SYSCFG_RCR_PAGE3 ((uint32_t)0x00000008) /*!< ICODE SRAM Write protection page 3 */
MartinJohnson 0:404f5a4f1385 8129 #define SYSCFG_RCR_PAGE4 ((uint32_t)0x00000010) /*!< ICODE SRAM Write protection page 4 */
MartinJohnson 0:404f5a4f1385 8130 #define SYSCFG_RCR_PAGE5 ((uint32_t)0x00000020) /*!< ICODE SRAM Write protection page 5 */
MartinJohnson 0:404f5a4f1385 8131 #define SYSCFG_RCR_PAGE6 ((uint32_t)0x00000040) /*!< ICODE SRAM Write protection page 6 */
MartinJohnson 0:404f5a4f1385 8132 #define SYSCFG_RCR_PAGE7 ((uint32_t)0x00000080) /*!< ICODE SRAM Write protection page 7 */
MartinJohnson 0:404f5a4f1385 8133 #define SYSCFG_RCR_PAGE8 ((uint32_t)0x00000100) /*!< ICODE SRAM Write protection page 8 */
MartinJohnson 0:404f5a4f1385 8134 #define SYSCFG_RCR_PAGE9 ((uint32_t)0x00000200) /*!< ICODE SRAM Write protection page 9 */
MartinJohnson 0:404f5a4f1385 8135 #define SYSCFG_RCR_PAGE10 ((uint32_t)0x00000400) /*!< ICODE SRAM Write protection page 10 */
MartinJohnson 0:404f5a4f1385 8136 #define SYSCFG_RCR_PAGE11 ((uint32_t)0x00000800) /*!< ICODE SRAM Write protection page 11 */
MartinJohnson 0:404f5a4f1385 8137 #define SYSCFG_RCR_PAGE12 ((uint32_t)0x00001000) /*!< ICODE SRAM Write protection page 12 */
MartinJohnson 0:404f5a4f1385 8138 #define SYSCFG_RCR_PAGE13 ((uint32_t)0x00002000) /*!< ICODE SRAM Write protection page 13 */
MartinJohnson 0:404f5a4f1385 8139 #define SYSCFG_RCR_PAGE14 ((uint32_t)0x00004000) /*!< ICODE SRAM Write protection page 14 */
MartinJohnson 0:404f5a4f1385 8140 #define SYSCFG_RCR_PAGE15 ((uint32_t)0x00008000) /*!< ICODE SRAM Write protection page 15 */
MartinJohnson 0:404f5a4f1385 8141
MartinJohnson 0:404f5a4f1385 8142
MartinJohnson 0:404f5a4f1385 8143 /***************** Bit definition for SYSCFG_EXTICR1 register ***************/
MartinJohnson 0:404f5a4f1385 8144 #define SYSCFG_EXTICR1_EXTI0 ((uint16_t)0x000F) /*!< EXTI 0 configuration */
MartinJohnson 0:404f5a4f1385 8145 #define SYSCFG_EXTICR1_EXTI1 ((uint16_t)0x00F0) /*!< EXTI 1 configuration */
MartinJohnson 0:404f5a4f1385 8146 #define SYSCFG_EXTICR1_EXTI2 ((uint16_t)0x0F00) /*!< EXTI 2 configuration */
MartinJohnson 0:404f5a4f1385 8147 #define SYSCFG_EXTICR1_EXTI3 ((uint16_t)0xF000) /*!< EXTI 3 configuration */
MartinJohnson 0:404f5a4f1385 8148
MartinJohnson 0:404f5a4f1385 8149 /**
MartinJohnson 0:404f5a4f1385 8150 * @brief EXTI0 configuration
MartinJohnson 0:404f5a4f1385 8151 */
MartinJohnson 0:404f5a4f1385 8152 #define SYSCFG_EXTICR1_EXTI0_PA ((uint16_t)0x0000) /*!< PA[0] pin */
MartinJohnson 0:404f5a4f1385 8153 #define SYSCFG_EXTICR1_EXTI0_PB ((uint16_t)0x0001) /*!< PB[0] pin */
MartinJohnson 0:404f5a4f1385 8154 #define SYSCFG_EXTICR1_EXTI0_PC ((uint16_t)0x0002) /*!< PC[0] pin */
MartinJohnson 0:404f5a4f1385 8155 #define SYSCFG_EXTICR1_EXTI0_PD ((uint16_t)0x0003) /*!< PD[0] pin */
MartinJohnson 0:404f5a4f1385 8156 #define SYSCFG_EXTICR1_EXTI0_PE ((uint16_t)0x0004) /*!< PE[0] pin */
MartinJohnson 0:404f5a4f1385 8157 #define SYSCFG_EXTICR1_EXTI0_PF ((uint16_t)0x0005) /*!< PF[0] pin */
MartinJohnson 0:404f5a4f1385 8158 #define SYSCFG_EXTICR1_EXTI0_PG ((uint16_t)0x0006) /*!< PG[0] pin */
MartinJohnson 0:404f5a4f1385 8159 #define SYSCFG_EXTICR1_EXTI0_PH ((uint16_t)0x0007) /*!< PH[0] pin */
MartinJohnson 0:404f5a4f1385 8160
MartinJohnson 0:404f5a4f1385 8161
MartinJohnson 0:404f5a4f1385 8162 /**
MartinJohnson 0:404f5a4f1385 8163 * @brief EXTI1 configuration
MartinJohnson 0:404f5a4f1385 8164 */
MartinJohnson 0:404f5a4f1385 8165 #define SYSCFG_EXTICR1_EXTI1_PA ((uint16_t)0x0000) /*!< PA[1] pin */
MartinJohnson 0:404f5a4f1385 8166 #define SYSCFG_EXTICR1_EXTI1_PB ((uint16_t)0x0010) /*!< PB[1] pin */
MartinJohnson 0:404f5a4f1385 8167 #define SYSCFG_EXTICR1_EXTI1_PC ((uint16_t)0x0020) /*!< PC[1] pin */
MartinJohnson 0:404f5a4f1385 8168 #define SYSCFG_EXTICR1_EXTI1_PD ((uint16_t)0x0030) /*!< PD[1] pin */
MartinJohnson 0:404f5a4f1385 8169 #define SYSCFG_EXTICR1_EXTI1_PE ((uint16_t)0x0040) /*!< PE[1] pin */
MartinJohnson 0:404f5a4f1385 8170 #define SYSCFG_EXTICR1_EXTI1_PF ((uint16_t)0x0050) /*!< PF[1] pin */
MartinJohnson 0:404f5a4f1385 8171 #define SYSCFG_EXTICR1_EXTI1_PG ((uint16_t)0x0060) /*!< PG[1] pin */
MartinJohnson 0:404f5a4f1385 8172 #define SYSCFG_EXTICR1_EXTI1_PH ((uint16_t)0x0070) /*!< PH[1] pin */
MartinJohnson 0:404f5a4f1385 8173
MartinJohnson 0:404f5a4f1385 8174 /**
MartinJohnson 0:404f5a4f1385 8175 * @brief EXTI2 configuration
MartinJohnson 0:404f5a4f1385 8176 */
MartinJohnson 0:404f5a4f1385 8177 #define SYSCFG_EXTICR1_EXTI2_PA ((uint16_t)0x0000) /*!< PA[2] pin */
MartinJohnson 0:404f5a4f1385 8178 #define SYSCFG_EXTICR1_EXTI2_PB ((uint16_t)0x0100) /*!< PB[2] pin */
MartinJohnson 0:404f5a4f1385 8179 #define SYSCFG_EXTICR1_EXTI2_PC ((uint16_t)0x0200) /*!< PC[2] pin */
MartinJohnson 0:404f5a4f1385 8180 #define SYSCFG_EXTICR1_EXTI2_PD ((uint16_t)0x0300) /*!< PD[2] pin */
MartinJohnson 0:404f5a4f1385 8181 #define SYSCFG_EXTICR1_EXTI2_PE ((uint16_t)0x0400) /*!< PE[2] pin */
MartinJohnson 0:404f5a4f1385 8182 #define SYSCFG_EXTICR1_EXTI2_PF ((uint16_t)0x0500) /*!< PF[2] pin */
MartinJohnson 0:404f5a4f1385 8183 #define SYSCFG_EXTICR1_EXTI2_PG ((uint16_t)0x0600) /*!< PG[2] pin */
MartinJohnson 0:404f5a4f1385 8184
MartinJohnson 0:404f5a4f1385 8185 /**
MartinJohnson 0:404f5a4f1385 8186 * @brief EXTI3 configuration
MartinJohnson 0:404f5a4f1385 8187 */
MartinJohnson 0:404f5a4f1385 8188 #define SYSCFG_EXTICR1_EXTI3_PA ((uint16_t)0x0000) /*!< PA[3] pin */
MartinJohnson 0:404f5a4f1385 8189 #define SYSCFG_EXTICR1_EXTI3_PB ((uint16_t)0x1000) /*!< PB[3] pin */
MartinJohnson 0:404f5a4f1385 8190 #define SYSCFG_EXTICR1_EXTI3_PC ((uint16_t)0x2000) /*!< PC[3] pin */
MartinJohnson 0:404f5a4f1385 8191 #define SYSCFG_EXTICR1_EXTI3_PD ((uint16_t)0x3000) /*!< PD[3] pin */
MartinJohnson 0:404f5a4f1385 8192 #define SYSCFG_EXTICR1_EXTI3_PE ((uint16_t)0x4000) /*!< PE[3] pin */
MartinJohnson 0:404f5a4f1385 8193 #define SYSCFG_EXTICR1_EXTI3_PF ((uint16_t)0x5000) /*!< PE[3] pin */
MartinJohnson 0:404f5a4f1385 8194 #define SYSCFG_EXTICR1_EXTI3_PG ((uint16_t)0x6000) /*!< PG[3] pin */
MartinJohnson 0:404f5a4f1385 8195
MartinJohnson 0:404f5a4f1385 8196 /***************** Bit definition for SYSCFG_EXTICR2 register ***************/
MartinJohnson 0:404f5a4f1385 8197 #define SYSCFG_EXTIRCR_EXTI4 ((uint16_t)0x000F) /*!< EXTI 4 configuration */
MartinJohnson 0:404f5a4f1385 8198 #define SYSCFG_EXTIRCR_EXTI5 ((uint16_t)0x00F0) /*!< EXTI 5 configuration */
MartinJohnson 0:404f5a4f1385 8199 #define SYSCFG_EXTIRCR_EXTI6 ((uint16_t)0x0F00) /*!< EXTI 6 configuration */
MartinJohnson 0:404f5a4f1385 8200 #define SYSCFG_EXTIRCR_EXTI7 ((uint16_t)0xF000) /*!< EXTI 7 configuration */
MartinJohnson 0:404f5a4f1385 8201
MartinJohnson 0:404f5a4f1385 8202 /**
MartinJohnson 0:404f5a4f1385 8203 * @brief EXTI4 configuration
MartinJohnson 0:404f5a4f1385 8204 */
MartinJohnson 0:404f5a4f1385 8205 #define SYSCFG_EXTIRCR_EXTI4_PA ((uint16_t)0x0000) /*!< PA[4] pin */
MartinJohnson 0:404f5a4f1385 8206 #define SYSCFG_EXTIRCR_EXTI4_PB ((uint16_t)0x0001) /*!< PB[4] pin */
MartinJohnson 0:404f5a4f1385 8207 #define SYSCFG_EXTIRCR_EXTI4_PC ((uint16_t)0x0002) /*!< PC[4] pin */
MartinJohnson 0:404f5a4f1385 8208 #define SYSCFG_EXTIRCR_EXTI4_PD ((uint16_t)0x0003) /*!< PD[4] pin */
MartinJohnson 0:404f5a4f1385 8209 #define SYSCFG_EXTIRCR_EXTI4_PE ((uint16_t)0x0004) /*!< PE[4] pin */
MartinJohnson 0:404f5a4f1385 8210 #define SYSCFG_EXTIRCR_EXTI4_PF ((uint16_t)0x0005) /*!< PF[4] pin */
MartinJohnson 0:404f5a4f1385 8211 #define SYSCFG_EXTIRCR_EXTI4_PG ((uint16_t)0x0006) /*!< PG[4] pin */
MartinJohnson 0:404f5a4f1385 8212 #define SYSCFG_EXTIRCR_EXTI4_PH ((uint16_t)0x0007) /*!< PH[4] pin */
MartinJohnson 0:404f5a4f1385 8213
MartinJohnson 0:404f5a4f1385 8214 /**
MartinJohnson 0:404f5a4f1385 8215 * @brief EXTI5 configuration
MartinJohnson 0:404f5a4f1385 8216 */
MartinJohnson 0:404f5a4f1385 8217 #define SYSCFG_EXTIRCR_EXTI5_PA ((uint16_t)0x0000) /*!< PA[5] pin */
MartinJohnson 0:404f5a4f1385 8218 #define SYSCFG_EXTIRCR_EXTI5_PB ((uint16_t)0x0010) /*!< PB[5] pin */
MartinJohnson 0:404f5a4f1385 8219 #define SYSCFG_EXTIRCR_EXTI5_PC ((uint16_t)0x0020) /*!< PC[5] pin */
MartinJohnson 0:404f5a4f1385 8220 #define SYSCFG_EXTIRCR_EXTI5_PD ((uint16_t)0x0030) /*!< PD[5] pin */
MartinJohnson 0:404f5a4f1385 8221 #define SYSCFG_EXTIRCR_EXTI5_PE ((uint16_t)0x0040) /*!< PE[5] pin */
MartinJohnson 0:404f5a4f1385 8222 #define SYSCFG_EXTIRCR_EXTI5_PF ((uint16_t)0x0050) /*!< PF[5] pin */
MartinJohnson 0:404f5a4f1385 8223 #define SYSCFG_EXTIRCR_EXTI5_PG ((uint16_t)0x0060) /*!< PG[5] pin */
MartinJohnson 0:404f5a4f1385 8224
MartinJohnson 0:404f5a4f1385 8225 /**
MartinJohnson 0:404f5a4f1385 8226 * @brief EXTI6 configuration
MartinJohnson 0:404f5a4f1385 8227 */
MartinJohnson 0:404f5a4f1385 8228 #define SYSCFG_EXTIRCR_EXTI6_PA ((uint16_t)0x0000) /*!< PA[6] pin */
MartinJohnson 0:404f5a4f1385 8229 #define SYSCFG_EXTIRCR_EXTI6_PB ((uint16_t)0x0100) /*!< PB[6] pin */
MartinJohnson 0:404f5a4f1385 8230 #define SYSCFG_EXTIRCR_EXTI6_PC ((uint16_t)0x0200) /*!< PC[6] pin */
MartinJohnson 0:404f5a4f1385 8231 #define SYSCFG_EXTIRCR_EXTI6_PD ((uint16_t)0x0300) /*!< PD[6] pin */
MartinJohnson 0:404f5a4f1385 8232 #define SYSCFG_EXTIRCR_EXTI6_PE ((uint16_t)0x0400) /*!< PE[6] pin */
MartinJohnson 0:404f5a4f1385 8233 #define SYSCFG_EXTIRCR_EXTI6_PF ((uint16_t)0x0500) /*!< PF[6] pin */
MartinJohnson 0:404f5a4f1385 8234 #define SYSCFG_EXTIRCR_EXTI6_PG ((uint16_t)0x0600) /*!< PG[6] pin */
MartinJohnson 0:404f5a4f1385 8235
MartinJohnson 0:404f5a4f1385 8236 /**
MartinJohnson 0:404f5a4f1385 8237 * @brief EXTI7 configuration
MartinJohnson 0:404f5a4f1385 8238 */
MartinJohnson 0:404f5a4f1385 8239 #define SYSCFG_EXTIRCR_EXTI7_PA ((uint16_t)0x0000) /*!< PA[7] pin */
MartinJohnson 0:404f5a4f1385 8240 #define SYSCFG_EXTIRCR_EXTI7_PB ((uint16_t)0x1000) /*!< PB[7] pin */
MartinJohnson 0:404f5a4f1385 8241 #define SYSCFG_EXTIRCR_EXTI7_PC ((uint16_t)0x2000) /*!< PC[7] pin */
MartinJohnson 0:404f5a4f1385 8242 #define SYSCFG_EXTIRCR_EXTI7_PD ((uint16_t)0x3000) /*!< PD[7] pin */
MartinJohnson 0:404f5a4f1385 8243 #define SYSCFG_EXTIRCR_EXTI7_PE ((uint16_t)0x4000) /*!< PE[7] pin */
MartinJohnson 0:404f5a4f1385 8244 #define SYSCFG_EXTIRCR_EXTI7_PF ((uint16_t)0x5000) /*!< PF[7] pin */
MartinJohnson 0:404f5a4f1385 8245 #define SYSCFG_EXTIRCR_EXTI7_PG ((uint16_t)0x6000) /*!< PG[7] pin */
MartinJohnson 0:404f5a4f1385 8246
MartinJohnson 0:404f5a4f1385 8247 /***************** Bit definition for SYSCFG_EXTICR3 register ***************/
MartinJohnson 0:404f5a4f1385 8248 #define SYSCFG_EXTICR3_EXTI8 ((uint16_t)0x000F) /*!< EXTI 8 configuration */
MartinJohnson 0:404f5a4f1385 8249 #define SYSCFG_EXTICR3_EXTI9 ((uint16_t)0x00F0) /*!< EXTI 9 configuration */
MartinJohnson 0:404f5a4f1385 8250 #define SYSCFG_EXTICR3_EXTI10 ((uint16_t)0x0F00) /*!< EXTI 10 configuration */
MartinJohnson 0:404f5a4f1385 8251 #define SYSCFG_EXTICR3_EXTI11 ((uint16_t)0xF000) /*!< EXTI 11 configuration */
MartinJohnson 0:404f5a4f1385 8252
MartinJohnson 0:404f5a4f1385 8253 /**
MartinJohnson 0:404f5a4f1385 8254 * @brief EXTI8 configuration
MartinJohnson 0:404f5a4f1385 8255 */
MartinJohnson 0:404f5a4f1385 8256 #define SYSCFG_EXTICR3_EXTI8_PA ((uint16_t)0x0000) /*!< PA[8] pin */
MartinJohnson 0:404f5a4f1385 8257 #define SYSCFG_EXTICR3_EXTI8_PB ((uint16_t)0x0001) /*!< PB[8] pin */
MartinJohnson 0:404f5a4f1385 8258 #define SYSCFG_EXTICR3_EXTI8_PC ((uint16_t)0x0002) /*!< PC[8] pin */
MartinJohnson 0:404f5a4f1385 8259 #define SYSCFG_EXTICR3_EXTI8_PD ((uint16_t)0x0003) /*!< PD[8] pin */
MartinJohnson 0:404f5a4f1385 8260 #define SYSCFG_EXTICR3_EXTI8_PE ((uint16_t)0x0004) /*!< PE[8] pin */
MartinJohnson 0:404f5a4f1385 8261 #define SYSCFG_EXTICR3_EXTI8_PF ((uint16_t)0x0005) /*!< PF[8] pin */
MartinJohnson 0:404f5a4f1385 8262 #define SYSCFG_EXTICR3_EXTI8_PG ((uint16_t)0x0006) /*!< PG[8] pin */
MartinJohnson 0:404f5a4f1385 8263 /**
MartinJohnson 0:404f5a4f1385 8264 * @brief EXTI9 configuration
MartinJohnson 0:404f5a4f1385 8265 */
MartinJohnson 0:404f5a4f1385 8266 #define SYSCFG_EXTICR3_EXTI9_PA ((uint16_t)0x0000) /*!< PA[9] pin */
MartinJohnson 0:404f5a4f1385 8267 #define SYSCFG_EXTICR3_EXTI9_PB ((uint16_t)0x0010) /*!< PB[9] pin */
MartinJohnson 0:404f5a4f1385 8268 #define SYSCFG_EXTICR3_EXTI9_PC ((uint16_t)0x0020) /*!< PC[9] pin */
MartinJohnson 0:404f5a4f1385 8269 #define SYSCFG_EXTICR3_EXTI9_PD ((uint16_t)0x0030) /*!< PD[9] pin */
MartinJohnson 0:404f5a4f1385 8270 #define SYSCFG_EXTICR3_EXTI9_PE ((uint16_t)0x0040) /*!< PE[9] pin */
MartinJohnson 0:404f5a4f1385 8271 #define SYSCFG_EXTICR3_EXTI9_PF ((uint16_t)0x0050) /*!< PF[9] pin */
MartinJohnson 0:404f5a4f1385 8272 #define SYSCFG_EXTICR3_EXTI9_PG ((uint16_t)0x0060) /*!< PG[9] pin */
MartinJohnson 0:404f5a4f1385 8273
MartinJohnson 0:404f5a4f1385 8274 /**
MartinJohnson 0:404f5a4f1385 8275 * @brief EXTI10 configuration
MartinJohnson 0:404f5a4f1385 8276 */
MartinJohnson 0:404f5a4f1385 8277 #define SYSCFG_EXTICR3_EXTI10_PA ((uint16_t)0x0000) /*!< PA[10] pin */
MartinJohnson 0:404f5a4f1385 8278 #define SYSCFG_EXTICR3_EXTI10_PB ((uint16_t)0x0100) /*!< PB[10] pin */
MartinJohnson 0:404f5a4f1385 8279 #define SYSCFG_EXTICR3_EXTI10_PC ((uint16_t)0x0200) /*!< PC[10] pin */
MartinJohnson 0:404f5a4f1385 8280 #define SYSCFG_EXTICR3_EXTI10_PD ((uint16_t)0x0300) /*!< PD[10] pin */
MartinJohnson 0:404f5a4f1385 8281 #define SYSCFG_EXTICR3_EXTI10_PE ((uint16_t)0x0400) /*!< PE[10] pin */
MartinJohnson 0:404f5a4f1385 8282 #define SYSCFG_EXTICR3_EXTI10_PF ((uint16_t)0x0500) /*!< PF[10] pin */
MartinJohnson 0:404f5a4f1385 8283 #define SYSCFG_EXTICR3_EXTI10_PG ((uint16_t)0x0600) /*!< PG[10] pin */
MartinJohnson 0:404f5a4f1385 8284
MartinJohnson 0:404f5a4f1385 8285 /**
MartinJohnson 0:404f5a4f1385 8286 * @brief EXTI11 configuration
MartinJohnson 0:404f5a4f1385 8287 */
MartinJohnson 0:404f5a4f1385 8288 #define SYSCFG_EXTICR3_EXTI11_PA ((uint16_t)0x0000) /*!< PA[11] pin */
MartinJohnson 0:404f5a4f1385 8289 #define SYSCFG_EXTICR3_EXTI11_PB ((uint16_t)0x1000) /*!< PB[11] pin */
MartinJohnson 0:404f5a4f1385 8290 #define SYSCFG_EXTICR3_EXTI11_PC ((uint16_t)0x2000) /*!< PC[11] pin */
MartinJohnson 0:404f5a4f1385 8291 #define SYSCFG_EXTICR3_EXTI11_PD ((uint16_t)0x3000) /*!< PD[11] pin */
MartinJohnson 0:404f5a4f1385 8292 #define SYSCFG_EXTICR3_EXTI11_PE ((uint16_t)0x4000) /*!< PE[11] pin */
MartinJohnson 0:404f5a4f1385 8293 #define SYSCFG_EXTICR3_EXTI11_PF ((uint16_t)0x5000) /*!< PF[11] pin */
MartinJohnson 0:404f5a4f1385 8294 #define SYSCFG_EXTICR3_EXTI11_PG ((uint16_t)0x6000) /*!< PG[11] pin */
MartinJohnson 0:404f5a4f1385 8295
MartinJohnson 0:404f5a4f1385 8296 /***************** Bit definition for SYSCFG_EXTICR4 register *****************/
MartinJohnson 0:404f5a4f1385 8297 #define SYSCFG_EXTICR4_EXTI12 ((uint16_t)0x000F) /*!< EXTI 12 configuration */
MartinJohnson 0:404f5a4f1385 8298 #define SYSCFG_EXTICR4_EXTI13 ((uint16_t)0x00F0) /*!< EXTI 13 configuration */
MartinJohnson 0:404f5a4f1385 8299 #define SYSCFG_EXTICR4_EXTI14 ((uint16_t)0x0F00) /*!< EXTI 14 configuration */
MartinJohnson 0:404f5a4f1385 8300 #define SYSCFG_EXTICR4_EXTI15 ((uint16_t)0xF000) /*!< EXTI 15 configuration */
MartinJohnson 0:404f5a4f1385 8301
MartinJohnson 0:404f5a4f1385 8302 /**
MartinJohnson 0:404f5a4f1385 8303 * @brief EXTI12 configuration
MartinJohnson 0:404f5a4f1385 8304 */
MartinJohnson 0:404f5a4f1385 8305 #define SYSCFG_EXTICR4_EXTI12_PA ((uint16_t)0x0000) /*!< PA[12] pin */
MartinJohnson 0:404f5a4f1385 8306 #define SYSCFG_EXTICR4_EXTI12_PB ((uint16_t)0x0001) /*!< PB[12] pin */
MartinJohnson 0:404f5a4f1385 8307 #define SYSCFG_EXTICR4_EXTI12_PC ((uint16_t)0x0002) /*!< PC[12] pin */
MartinJohnson 0:404f5a4f1385 8308 #define SYSCFG_EXTICR4_EXTI12_PD ((uint16_t)0x0003) /*!< PD[12] pin */
MartinJohnson 0:404f5a4f1385 8309 #define SYSCFG_EXTICR4_EXTI12_PE ((uint16_t)0x0004) /*!< PE[12] pin */
MartinJohnson 0:404f5a4f1385 8310 #define SYSCFG_EXTICR4_EXTI12_PF ((uint16_t)0x0005) /*!< PF[12] pin */
MartinJohnson 0:404f5a4f1385 8311 #define SYSCFG_EXTICR4_EXTI12_PG ((uint16_t)0x0006) /*!< PG[12] pin */
MartinJohnson 0:404f5a4f1385 8312
MartinJohnson 0:404f5a4f1385 8313 /**
MartinJohnson 0:404f5a4f1385 8314 * @brief EXTI13 configuration
MartinJohnson 0:404f5a4f1385 8315 */
MartinJohnson 0:404f5a4f1385 8316 #define SYSCFG_EXTICR4_EXTI13_PA ((uint16_t)0x0000) /*!< PA[13] pin */
MartinJohnson 0:404f5a4f1385 8317 #define SYSCFG_EXTICR4_EXTI13_PB ((uint16_t)0x0010) /*!< PB[13] pin */
MartinJohnson 0:404f5a4f1385 8318 #define SYSCFG_EXTICR4_EXTI13_PC ((uint16_t)0x0020) /*!< PC[13] pin */
MartinJohnson 0:404f5a4f1385 8319 #define SYSCFG_EXTICR4_EXTI13_PD ((uint16_t)0x0030) /*!< PD[13] pin */
MartinJohnson 0:404f5a4f1385 8320 #define SYSCFG_EXTICR4_EXTI13_PE ((uint16_t)0x0040) /*!< PE[13] pin */
MartinJohnson 0:404f5a4f1385 8321 #define SYSCFG_EXTICR4_EXTI13_PF ((uint16_t)0x0050) /*!< PF[13] pin */
MartinJohnson 0:404f5a4f1385 8322 #define SYSCFG_EXTICR4_EXTI13_PG ((uint16_t)0x0060) /*!< PG[13] pin */
MartinJohnson 0:404f5a4f1385 8323
MartinJohnson 0:404f5a4f1385 8324 /**
MartinJohnson 0:404f5a4f1385 8325 * @brief EXTI14 configuration
MartinJohnson 0:404f5a4f1385 8326 */
MartinJohnson 0:404f5a4f1385 8327 #define SYSCFG_EXTICR4_EXTI14_PA ((uint16_t)0x0000) /*!< PA[14] pin */
MartinJohnson 0:404f5a4f1385 8328 #define SYSCFG_EXTICR4_EXTI14_PB ((uint16_t)0x0100) /*!< PB[14] pin */
MartinJohnson 0:404f5a4f1385 8329 #define SYSCFG_EXTICR4_EXTI14_PC ((uint16_t)0x0200) /*!< PC[14] pin */
MartinJohnson 0:404f5a4f1385 8330 #define SYSCFG_EXTICR4_EXTI14_PD ((uint16_t)0x0300) /*!< PD[14] pin */
MartinJohnson 0:404f5a4f1385 8331 #define SYSCFG_EXTICR4_EXTI14_PE ((uint16_t)0x0400) /*!< PE[14] pin */
MartinJohnson 0:404f5a4f1385 8332 #define SYSCFG_EXTICR4_EXTI14_PF ((uint16_t)0x0500) /*!< PF[14] pin */
MartinJohnson 0:404f5a4f1385 8333 #define SYSCFG_EXTICR4_EXTI14_PG ((uint16_t)0x0600) /*!< PG[14] pin */
MartinJohnson 0:404f5a4f1385 8334
MartinJohnson 0:404f5a4f1385 8335 /**
MartinJohnson 0:404f5a4f1385 8336 * @brief EXTI15 configuration
MartinJohnson 0:404f5a4f1385 8337 */
MartinJohnson 0:404f5a4f1385 8338 #define SYSCFG_EXTICR4_EXTI15_PA ((uint16_t)0x0000) /*!< PA[15] pin */
MartinJohnson 0:404f5a4f1385 8339 #define SYSCFG_EXTICR4_EXTI15_PB ((uint16_t)0x1000) /*!< PB[15] pin */
MartinJohnson 0:404f5a4f1385 8340 #define SYSCFG_EXTICR4_EXTI15_PC ((uint16_t)0x2000) /*!< PC[15] pin */
MartinJohnson 0:404f5a4f1385 8341 #define SYSCFG_EXTICR4_EXTI15_PD ((uint16_t)0x3000) /*!< PD[15] pin */
MartinJohnson 0:404f5a4f1385 8342 #define SYSCFG_EXTICR4_EXTI15_PE ((uint16_t)0x4000) /*!< PE[15] pin */
MartinJohnson 0:404f5a4f1385 8343 #define SYSCFG_EXTICR4_EXTI15_PF ((uint16_t)0x5000) /*!< PF[15] pin */
MartinJohnson 0:404f5a4f1385 8344 #define SYSCFG_EXTICR4_EXTI15_PG ((uint16_t)0x6000) /*!< PG[15] pin */
MartinJohnson 0:404f5a4f1385 8345
MartinJohnson 0:404f5a4f1385 8346 /***************** Bit definition for SYSCFG_CFGR2 register *****************/
MartinJohnson 0:404f5a4f1385 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:404f5a4f1385 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:404f5a4f1385 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:404f5a4f1385 8350 #define SYSCFG_CFGR2_BYP_ADDR_PAR ((uint32_t)0x00000010) /*!< Disables the address parity check on RAM */
MartinJohnson 0:404f5a4f1385 8351 #define SYSCFG_CFGR2_SRAM_PE ((uint32_t)0x00000100) /*!< SRAM Parity error flag */
MartinJohnson 0:404f5a4f1385 8352
MartinJohnson 0:404f5a4f1385 8353 /***************** Bit definition for SYSCFG_CFGR3 register *****************/
MartinJohnson 0:404f5a4f1385 8354 #define SYSCFG_CFGR3_SPI1_RX_DMA_RMP ((uint32_t)0x00000003) /*!< SPI1 RX DMA remap */
MartinJohnson 0:404f5a4f1385 8355 #define SYSCFG_CFGR3_SPI1_RX_DMA_RMP_0 ((uint32_t)0x00000001) /*!< SPI1 RX DMA remap bit 0 */
MartinJohnson 0:404f5a4f1385 8356 #define SYSCFG_CFGR3_SPI1_RX_DMA_RMP_1 ((uint32_t)0x00000002) /*!< SPI1 RX DMA remap bit 1 */
MartinJohnson 0:404f5a4f1385 8357 #define SYSCFG_CFGR3_SPI1_TX_DMA_RMP ((uint32_t)0x0000000C) /*!< SPI1 TX DMA remap */
MartinJohnson 0:404f5a4f1385 8358 #define SYSCFG_CFGR3_SPI1_TX_DMA_RMP_0 ((uint32_t)0x00000004) /*!< SPI1 TX DMA remap bit 0 */
MartinJohnson 0:404f5a4f1385 8359 #define SYSCFG_CFGR3_SPI1_TX_DMA_RMP_1 ((uint32_t)0x00000008) /*!< SPI1 TX DMA remap bit 1 */
MartinJohnson 0:404f5a4f1385 8360 #define SYSCFG_CFGR3_I2C1_RX_DMA_RMP ((uint32_t)0x00000030) /*!< I2C1 RX DMA remap */
MartinJohnson 0:404f5a4f1385 8361 #define SYSCFG_CFGR3_I2C1_RX_DMA_RMP_0 ((uint32_t)0x00000010) /*!< I2C1 RX DMA remap bit 0 */
MartinJohnson 0:404f5a4f1385 8362 #define SYSCFG_CFGR3_I2C1_RX_DMA_RMP_1 ((uint32_t)0x00000020) /*!< I2C1 RX DMA remap bit 1 */
MartinJohnson 0:404f5a4f1385 8363 #define SYSCFG_CFGR3_I2C1_TX_DMA_RMP ((uint32_t)0x000000C0) /*!< I2C1 RX DMA remap */
MartinJohnson 0:404f5a4f1385 8364 #define SYSCFG_CFGR3_I2C1_TX_DMA_RMP_0 ((uint32_t)0x00000040) /*!< I2C1 TX DMA remap bit 0 */
MartinJohnson 0:404f5a4f1385 8365 #define SYSCFG_CFGR3_I2C1_TX_DMA_RMP_1 ((uint32_t)0x00000080) /*!< I2C1 TX DMA remap bit 1 */
MartinJohnson 0:404f5a4f1385 8366 #define SYSCFG_CFGR3_ADC2_DMA_RMP ((uint32_t)0x00000300) /*!< ADC2 DMA remap */
MartinJohnson 0:404f5a4f1385 8367 #define SYSCFG_CFGR3_ADC2_DMA_RMP_0 ((uint32_t)0x00000100) /*!< ADC2 DMA remap bit 0 */
MartinJohnson 0:404f5a4f1385 8368 #define SYSCFG_CFGR3_ADC2_DMA_RMP_1 ((uint32_t)0x00000200) /*!< ADC2 DMA remap bit 1 */
MartinJohnson 0:404f5a4f1385 8369 #define SYSCFG_CFGR3_DAC1_TRG3_RMP ((uint32_t)0x00010000) /*!< DAC1 TRG3 remap */
MartinJohnson 0:404f5a4f1385 8370 #define SYSCFG_CFGR3_DAC1_TRG5_RMP ((uint32_t)0x00020000) /*!< DAC1 TRG5 remap */
MartinJohnson 0:404f5a4f1385 8371
MartinJohnson 0:404f5a4f1385 8372 /***************** Bit definition for SYSCFG_CFGR4 register *****************/
MartinJohnson 0:404f5a4f1385 8373 #define SYSCFG_CFGR4_ADC12_EXT2_RMP ((uint32_t)0x00000001) /*!< ADC12 regular channel EXT2 remap */
MartinJohnson 0:404f5a4f1385 8374 #define SYSCFG_CFGR4_ADC12_EXT3_RMP ((uint32_t)0x00000002) /*!< ADC12 regular channel EXT3 remap */
MartinJohnson 0:404f5a4f1385 8375 #define SYSCFG_CFGR4_ADC12_EXT5_RMP ((uint32_t)0x00000004) /*!< ADC12 regular channel EXT5 remap */
MartinJohnson 0:404f5a4f1385 8376 #define SYSCFG_CFGR4_ADC12_EXT13_RMP ((uint32_t)0x00000008) /*!< ADC12 regular channel EXT13 remap */
MartinJohnson 0:404f5a4f1385 8377 #define SYSCFG_CFGR4_ADC12_EXT15_RMP ((uint32_t)0x00000010) /*!< ADC12 regular channel EXT15 remap */
MartinJohnson 0:404f5a4f1385 8378 #define SYSCFG_CFGR4_ADC12_JEXT3_RMP ((uint32_t)0x00000020) /*!< ADC12 injected channel JEXT3 remap */
MartinJohnson 0:404f5a4f1385 8379 #define SYSCFG_CFGR4_ADC12_JEXT6_RMP ((uint32_t)0x00000040) /*!< ADC12 injected channel JEXT6 remap */
MartinJohnson 0:404f5a4f1385 8380 #define SYSCFG_CFGR4_ADC12_JEXT13_RMP ((uint32_t)0x00000080) /*!< ADC12 injected channel JEXT13 remap */
MartinJohnson 0:404f5a4f1385 8381 #define SYSCFG_CFGR4_ADC34_EXT5_RMP ((uint32_t)0x00000100) /*!< ADC34 regular channel EXT5 remap */
MartinJohnson 0:404f5a4f1385 8382 #define SYSCFG_CFGR4_ADC34_EXT6_RMP ((uint32_t)0x00000200) /*!< ADC34 regular channel EXT6 remap */
MartinJohnson 0:404f5a4f1385 8383 #define SYSCFG_CFGR4_ADC34_EXT15_RMP ((uint32_t)0x00000400) /*!< ADC34 regular channel EXT15 remap */
MartinJohnson 0:404f5a4f1385 8384 #define SYSCFG_CFGR4_ADC34_JEXT5_RMP ((uint32_t)0x00000800) /*!< ADC34 injected channel JEXT5 remap */
MartinJohnson 0:404f5a4f1385 8385 #define SYSCFG_CFGR4_ADC34_JEXT11_RMP ((uint32_t)0x00001000) /*!< ADC34 injected channel JEXT11 remap */
MartinJohnson 0:404f5a4f1385 8386 #define SYSCFG_CFGR4_ADC34_JEXT14_RMP ((uint32_t)0x00002000) /*!< ADC34 injected channel JEXT14 remap */
MartinJohnson 0:404f5a4f1385 8387
MartinJohnson 0:404f5a4f1385 8388 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 8389 /* */
MartinJohnson 0:404f5a4f1385 8390 /* TIM */
MartinJohnson 0:404f5a4f1385 8391 /* */
MartinJohnson 0:404f5a4f1385 8392 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 8393 /******************* Bit definition for TIM_CR1 register ********************/
MartinJohnson 0:404f5a4f1385 8394 #define TIM_CR1_CEN ((uint16_t)0x0001) /*!<Counter enable */
MartinJohnson 0:404f5a4f1385 8395 #define TIM_CR1_UDIS ((uint16_t)0x0002) /*!<Update disable */
MartinJohnson 0:404f5a4f1385 8396 #define TIM_CR1_URS ((uint16_t)0x0004) /*!<Update request source */
MartinJohnson 0:404f5a4f1385 8397 #define TIM_CR1_OPM ((uint16_t)0x0008) /*!<One pulse mode */
MartinJohnson 0:404f5a4f1385 8398 #define TIM_CR1_DIR ((uint16_t)0x0010) /*!<Direction */
MartinJohnson 0:404f5a4f1385 8399
MartinJohnson 0:404f5a4f1385 8400 #define TIM_CR1_CMS ((uint16_t)0x0060) /*!<CMS[1:0] bits (Center-aligned mode selection) */
MartinJohnson 0:404f5a4f1385 8401 #define TIM_CR1_CMS_0 ((uint16_t)0x0020) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8402 #define TIM_CR1_CMS_1 ((uint16_t)0x0040) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8403
MartinJohnson 0:404f5a4f1385 8404 #define TIM_CR1_ARPE ((uint16_t)0x0080) /*!<Auto-reload preload enable */
MartinJohnson 0:404f5a4f1385 8405
MartinJohnson 0:404f5a4f1385 8406 #define TIM_CR1_CKD ((uint16_t)0x0300) /*!<CKD[1:0] bits (clock division) */
MartinJohnson 0:404f5a4f1385 8407 #define TIM_CR1_CKD_0 ((uint16_t)0x0100) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8408 #define TIM_CR1_CKD_1 ((uint16_t)0x0200) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8409
MartinJohnson 0:404f5a4f1385 8410 #define TIM_CR1_UIFREMAP ((uint16_t)0x0800) /*!<Update interrupt flag remap */
MartinJohnson 0:404f5a4f1385 8411
MartinJohnson 0:404f5a4f1385 8412 /******************* Bit definition for TIM_CR2 register ********************/
MartinJohnson 0:404f5a4f1385 8413 #define TIM_CR2_CCPC ((uint32_t)0x00000001) /*!<Capture/Compare Preloaded Control */
MartinJohnson 0:404f5a4f1385 8414 #define TIM_CR2_CCUS ((uint32_t)0x00000004) /*!<Capture/Compare Control Update Selection */
MartinJohnson 0:404f5a4f1385 8415 #define TIM_CR2_CCDS ((uint32_t)0x00000008) /*!<Capture/Compare DMA Selection */
MartinJohnson 0:404f5a4f1385 8416
MartinJohnson 0:404f5a4f1385 8417 #define TIM_CR2_MMS ((uint32_t)0x00000070) /*!<MMS[2:0] bits (Master Mode Selection) */
MartinJohnson 0:404f5a4f1385 8418 #define TIM_CR2_MMS_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8419 #define TIM_CR2_MMS_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8420 #define TIM_CR2_MMS_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 8421
MartinJohnson 0:404f5a4f1385 8422 #define TIM_CR2_TI1S ((uint32_t)0x00000080) /*!<TI1 Selection */
MartinJohnson 0:404f5a4f1385 8423 #define TIM_CR2_OIS1 ((uint32_t)0x00000100) /*!<Output Idle state 1 (OC1 output) */
MartinJohnson 0:404f5a4f1385 8424 #define TIM_CR2_OIS1N ((uint32_t)0x00000200) /*!<Output Idle state 1 (OC1N output) */
MartinJohnson 0:404f5a4f1385 8425 #define TIM_CR2_OIS2 ((uint32_t)0x00000400) /*!<Output Idle state 2 (OC2 output) */
MartinJohnson 0:404f5a4f1385 8426 #define TIM_CR2_OIS2N ((uint32_t)0x00000800) /*!<Output Idle state 2 (OC2N output) */
MartinJohnson 0:404f5a4f1385 8427 #define TIM_CR2_OIS3 ((uint32_t)0x00001000) /*!<Output Idle state 3 (OC3 output) */
MartinJohnson 0:404f5a4f1385 8428 #define TIM_CR2_OIS3N ((uint32_t)0x00002000) /*!<Output Idle state 3 (OC3N output) */
MartinJohnson 0:404f5a4f1385 8429 #define TIM_CR2_OIS4 ((uint32_t)0x00004000) /*!<Output Idle state 4 (OC4 output) */
MartinJohnson 0:404f5a4f1385 8430 #define TIM_CR2_OIS5 ((uint32_t)0x00010000) /*!<Output Idle state 4 (OC4 output) */
MartinJohnson 0:404f5a4f1385 8431 #define TIM_CR2_OIS6 ((uint32_t)0x00020000) /*!<Output Idle state 4 (OC4 output) */
MartinJohnson 0:404f5a4f1385 8432
MartinJohnson 0:404f5a4f1385 8433 #define TIM_CR2_MMS2 ((uint32_t)0x00F00000) /*!<MMS[2:0] bits (Master Mode Selection) */
MartinJohnson 0:404f5a4f1385 8434 #define TIM_CR2_MMS2_0 ((uint32_t)0x00100000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8435 #define TIM_CR2_MMS2_1 ((uint32_t)0x00200000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8436 #define TIM_CR2_MMS2_2 ((uint32_t)0x00400000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 8437 #define TIM_CR2_MMS2_3 ((uint32_t)0x00800000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 8438
MartinJohnson 0:404f5a4f1385 8439 /******************* Bit definition for TIM_SMCR register *******************/
MartinJohnson 0:404f5a4f1385 8440 #define TIM_SMCR_SMS ((uint32_t)0x00010007) /*!<SMS[2:0] bits (Slave mode selection) */
MartinJohnson 0:404f5a4f1385 8441 #define TIM_SMCR_SMS_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8442 #define TIM_SMCR_SMS_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8443 #define TIM_SMCR_SMS_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 8444 #define TIM_SMCR_SMS_3 ((uint32_t)0x00010000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 8445
MartinJohnson 0:404f5a4f1385 8446 #define TIM_SMCR_OCCS ((uint32_t)0x00000008) /*!< OCREF clear selection */
MartinJohnson 0:404f5a4f1385 8447
MartinJohnson 0:404f5a4f1385 8448 #define TIM_SMCR_TS ((uint32_t)0x00000070) /*!<TS[2:0] bits (Trigger selection) */
MartinJohnson 0:404f5a4f1385 8449 #define TIM_SMCR_TS_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8450 #define TIM_SMCR_TS_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8451 #define TIM_SMCR_TS_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 8452
MartinJohnson 0:404f5a4f1385 8453 #define TIM_SMCR_MSM ((uint32_t)0x00000080) /*!<Master/slave mode */
MartinJohnson 0:404f5a4f1385 8454
MartinJohnson 0:404f5a4f1385 8455 #define TIM_SMCR_ETF ((uint32_t)0x00000F00) /*!<ETF[3:0] bits (External trigger filter) */
MartinJohnson 0:404f5a4f1385 8456 #define TIM_SMCR_ETF_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8457 #define TIM_SMCR_ETF_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8458 #define TIM_SMCR_ETF_2 ((uint32_t)0x00000400) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 8459 #define TIM_SMCR_ETF_3 ((uint32_t)0x00000800) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 8460
MartinJohnson 0:404f5a4f1385 8461 #define TIM_SMCR_ETPS ((uint32_t)0x00003000) /*!<ETPS[1:0] bits (External trigger prescaler) */
MartinJohnson 0:404f5a4f1385 8462 #define TIM_SMCR_ETPS_0 ((uint32_t)0x00001000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8463 #define TIM_SMCR_ETPS_1 ((uint32_t)0x00002000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8464
MartinJohnson 0:404f5a4f1385 8465 #define TIM_SMCR_ECE ((uint32_t)0x00004000) /*!<External clock enable */
MartinJohnson 0:404f5a4f1385 8466 #define TIM_SMCR_ETP ((uint32_t)0x00008000) /*!<External trigger polarity */
MartinJohnson 0:404f5a4f1385 8467
MartinJohnson 0:404f5a4f1385 8468 /******************* Bit definition for TIM_DIER register *******************/
MartinJohnson 0:404f5a4f1385 8469 #define TIM_DIER_UIE ((uint16_t)0x0001) /*!<Update interrupt enable */
MartinJohnson 0:404f5a4f1385 8470 #define TIM_DIER_CC1IE ((uint16_t)0x0002) /*!<Capture/Compare 1 interrupt enable */
MartinJohnson 0:404f5a4f1385 8471 #define TIM_DIER_CC2IE ((uint16_t)0x0004) /*!<Capture/Compare 2 interrupt enable */
MartinJohnson 0:404f5a4f1385 8472 #define TIM_DIER_CC3IE ((uint16_t)0x0008) /*!<Capture/Compare 3 interrupt enable */
MartinJohnson 0:404f5a4f1385 8473 #define TIM_DIER_CC4IE ((uint16_t)0x0010) /*!<Capture/Compare 4 interrupt enable */
MartinJohnson 0:404f5a4f1385 8474 #define TIM_DIER_COMIE ((uint16_t)0x0020) /*!<COM interrupt enable */
MartinJohnson 0:404f5a4f1385 8475 #define TIM_DIER_TIE ((uint16_t)0x0040) /*!<Trigger interrupt enable */
MartinJohnson 0:404f5a4f1385 8476 #define TIM_DIER_BIE ((uint16_t)0x0080) /*!<Break interrupt enable */
MartinJohnson 0:404f5a4f1385 8477 #define TIM_DIER_UDE ((uint16_t)0x0100) /*!<Update DMA request enable */
MartinJohnson 0:404f5a4f1385 8478 #define TIM_DIER_CC1DE ((uint16_t)0x0200) /*!<Capture/Compare 1 DMA request enable */
MartinJohnson 0:404f5a4f1385 8479 #define TIM_DIER_CC2DE ((uint16_t)0x0400) /*!<Capture/Compare 2 DMA request enable */
MartinJohnson 0:404f5a4f1385 8480 #define TIM_DIER_CC3DE ((uint16_t)0x0800) /*!<Capture/Compare 3 DMA request enable */
MartinJohnson 0:404f5a4f1385 8481 #define TIM_DIER_CC4DE ((uint16_t)0x1000) /*!<Capture/Compare 4 DMA request enable */
MartinJohnson 0:404f5a4f1385 8482 #define TIM_DIER_COMDE ((uint16_t)0x2000) /*!<COM DMA request enable */
MartinJohnson 0:404f5a4f1385 8483 #define TIM_DIER_TDE ((uint16_t)0x4000) /*!<Trigger DMA request enable */
MartinJohnson 0:404f5a4f1385 8484
MartinJohnson 0:404f5a4f1385 8485 /******************** Bit definition for TIM_SR register ********************/
MartinJohnson 0:404f5a4f1385 8486 #define TIM_SR_UIF ((uint32_t)0x00000001) /*!<Update interrupt Flag */
MartinJohnson 0:404f5a4f1385 8487 #define TIM_SR_CC1IF ((uint32_t)0x00000002) /*!<Capture/Compare 1 interrupt Flag */
MartinJohnson 0:404f5a4f1385 8488 #define TIM_SR_CC2IF ((uint32_t)0x00000004) /*!<Capture/Compare 2 interrupt Flag */
MartinJohnson 0:404f5a4f1385 8489 #define TIM_SR_CC3IF ((uint32_t)0x00000008) /*!<Capture/Compare 3 interrupt Flag */
MartinJohnson 0:404f5a4f1385 8490 #define TIM_SR_CC4IF ((uint32_t)0x00000010) /*!<Capture/Compare 4 interrupt Flag */
MartinJohnson 0:404f5a4f1385 8491 #define TIM_SR_COMIF ((uint32_t)0x00000020) /*!<COM interrupt Flag */
MartinJohnson 0:404f5a4f1385 8492 #define TIM_SR_TIF ((uint32_t)0x00000040) /*!<Trigger interrupt Flag */
MartinJohnson 0:404f5a4f1385 8493 #define TIM_SR_BIF ((uint32_t)0x00000080) /*!<Break interrupt Flag */
MartinJohnson 0:404f5a4f1385 8494 #define TIM_SR_B2IF ((uint32_t)0x00000100) /*!<Break2 interrupt Flag */
MartinJohnson 0:404f5a4f1385 8495 #define TIM_SR_CC1OF ((uint32_t)0x00000200) /*!<Capture/Compare 1 Over capture Flag */
MartinJohnson 0:404f5a4f1385 8496 #define TIM_SR_CC2OF ((uint32_t)0x00000400) /*!<Capture/Compare 2 Over capture Flag */
MartinJohnson 0:404f5a4f1385 8497 #define TIM_SR_CC3OF ((uint32_t)0x00000800) /*!<Capture/Compare 3 Over capture Flag */
MartinJohnson 0:404f5a4f1385 8498 #define TIM_SR_CC4OF ((uint32_t)0x00001000) /*!<Capture/Compare 4 Over capture Flag */
MartinJohnson 0:404f5a4f1385 8499 #define TIM_SR_CC5IF ((uint32_t)0x00010000) /*!<Capture/Compare 5 interrupt Flag */
MartinJohnson 0:404f5a4f1385 8500 #define TIM_SR_CC6IF ((uint32_t)0x00020000) /*!<Capture/Compare 6 interrupt Flag */
MartinJohnson 0:404f5a4f1385 8501
MartinJohnson 0:404f5a4f1385 8502
MartinJohnson 0:404f5a4f1385 8503 /******************* Bit definition for TIM_EGR register ********************/
MartinJohnson 0:404f5a4f1385 8504 #define TIM_EGR_UG ((uint16_t)0x0001) /*!<Update Generation */
MartinJohnson 0:404f5a4f1385 8505 #define TIM_EGR_CC1G ((uint16_t)0x0002) /*!<Capture/Compare 1 Generation */
MartinJohnson 0:404f5a4f1385 8506 #define TIM_EGR_CC2G ((uint16_t)0x0004) /*!<Capture/Compare 2 Generation */
MartinJohnson 0:404f5a4f1385 8507 #define TIM_EGR_CC3G ((uint16_t)0x0008) /*!<Capture/Compare 3 Generation */
MartinJohnson 0:404f5a4f1385 8508 #define TIM_EGR_CC4G ((uint16_t)0x0010) /*!<Capture/Compare 4 Generation */
MartinJohnson 0:404f5a4f1385 8509 #define TIM_EGR_COMG ((uint16_t)0x0020) /*!<Capture/Compare Control Update Generation */
MartinJohnson 0:404f5a4f1385 8510 #define TIM_EGR_TG ((uint16_t)0x0040) /*!<Trigger Generation */
MartinJohnson 0:404f5a4f1385 8511 #define TIM_EGR_BG ((uint16_t)0x0080) /*!<Break Generation */
MartinJohnson 0:404f5a4f1385 8512 #define TIM_EGR_B2G ((uint16_t)0x0100) /*!<Break Generation */
MartinJohnson 0:404f5a4f1385 8513
MartinJohnson 0:404f5a4f1385 8514
MartinJohnson 0:404f5a4f1385 8515 /****************** Bit definition for TIM_CCMR1 register *******************/
MartinJohnson 0:404f5a4f1385 8516 #define TIM_CCMR1_CC1S ((uint32_t)0x00000003) /*!<CC1S[1:0] bits (Capture/Compare 1 Selection) */
MartinJohnson 0:404f5a4f1385 8517 #define TIM_CCMR1_CC1S_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8518 #define TIM_CCMR1_CC1S_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8519
MartinJohnson 0:404f5a4f1385 8520 #define TIM_CCMR1_OC1FE ((uint32_t)0x00000004) /*!<Output Compare 1 Fast enable */
MartinJohnson 0:404f5a4f1385 8521 #define TIM_CCMR1_OC1PE ((uint32_t)0x00000008) /*!<Output Compare 1 Preload enable */
MartinJohnson 0:404f5a4f1385 8522
MartinJohnson 0:404f5a4f1385 8523 #define TIM_CCMR1_OC1M ((uint32_t)0x00010070) /*!<OC1M[2:0] bits (Output Compare 1 Mode) */
MartinJohnson 0:404f5a4f1385 8524 #define TIM_CCMR1_OC1M_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8525 #define TIM_CCMR1_OC1M_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8526 #define TIM_CCMR1_OC1M_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 8527 #define TIM_CCMR1_OC1M_3 ((uint32_t)0x00010000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 8528
MartinJohnson 0:404f5a4f1385 8529 #define TIM_CCMR1_OC1CE ((uint32_t)0x00000080) /*!<Output Compare 1Clear Enable */
MartinJohnson 0:404f5a4f1385 8530
MartinJohnson 0:404f5a4f1385 8531 #define TIM_CCMR1_CC2S ((uint32_t)0x00000300) /*!<CC2S[1:0] bits (Capture/Compare 2 Selection) */
MartinJohnson 0:404f5a4f1385 8532 #define TIM_CCMR1_CC2S_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8533 #define TIM_CCMR1_CC2S_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8534
MartinJohnson 0:404f5a4f1385 8535 #define TIM_CCMR1_OC2FE ((uint32_t)0x00000400) /*!<Output Compare 2 Fast enable */
MartinJohnson 0:404f5a4f1385 8536 #define TIM_CCMR1_OC2PE ((uint32_t)0x00000800) /*!<Output Compare 2 Preload enable */
MartinJohnson 0:404f5a4f1385 8537
MartinJohnson 0:404f5a4f1385 8538 #define TIM_CCMR1_OC2M ((uint32_t)0x01007000) /*!<OC2M[2:0] bits (Output Compare 2 Mode) */
MartinJohnson 0:404f5a4f1385 8539 #define TIM_CCMR1_OC2M_0 ((uint32_t)0x00001000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8540 #define TIM_CCMR1_OC2M_1 ((uint32_t)0x00002000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8541 #define TIM_CCMR1_OC2M_2 ((uint32_t)0x00004000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 8542 #define TIM_CCMR1_OC2M_3 ((uint32_t)0x01000000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 8543
MartinJohnson 0:404f5a4f1385 8544 #define TIM_CCMR1_OC2CE ((uint32_t)0x00008000) /*!<Output Compare 2 Clear Enable */
MartinJohnson 0:404f5a4f1385 8545
MartinJohnson 0:404f5a4f1385 8546 /*----------------------------------------------------------------------------*/
MartinJohnson 0:404f5a4f1385 8547
MartinJohnson 0:404f5a4f1385 8548 #define TIM_CCMR1_IC1PSC ((uint32_t)0x0000000C) /*!<IC1PSC[1:0] bits (Input Capture 1 Prescaler) */
MartinJohnson 0:404f5a4f1385 8549 #define TIM_CCMR1_IC1PSC_0 ((uint32_t)0x00000004) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8550 #define TIM_CCMR1_IC1PSC_1 ((uint32_t)0x00000008) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8551
MartinJohnson 0:404f5a4f1385 8552 #define TIM_CCMR1_IC1F ((uint32_t)0x000000F0) /*!<IC1F[3:0] bits (Input Capture 1 Filter) */
MartinJohnson 0:404f5a4f1385 8553 #define TIM_CCMR1_IC1F_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8554 #define TIM_CCMR1_IC1F_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8555 #define TIM_CCMR1_IC1F_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 8556 #define TIM_CCMR1_IC1F_3 ((uint32_t)0x00000080) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 8557
MartinJohnson 0:404f5a4f1385 8558 #define TIM_CCMR1_IC2PSC ((uint32_t)0x00000C00) /*!<IC2PSC[1:0] bits (Input Capture 2 Prescaler) */
MartinJohnson 0:404f5a4f1385 8559 #define TIM_CCMR1_IC2PSC_0 ((uint32_t)0x00000400) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8560 #define TIM_CCMR1_IC2PSC_1 ((uint32_t)0x00000800) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8561
MartinJohnson 0:404f5a4f1385 8562 #define TIM_CCMR1_IC2F ((uint32_t)0x0000F000) /*!<IC2F[3:0] bits (Input Capture 2 Filter) */
MartinJohnson 0:404f5a4f1385 8563 #define TIM_CCMR1_IC2F_0 ((uint32_t)0x00001000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8564 #define TIM_CCMR1_IC2F_1 ((uint32_t)0x00002000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8565 #define TIM_CCMR1_IC2F_2 ((uint32_t)0x00004000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 8566 #define TIM_CCMR1_IC2F_3 ((uint32_t)0x00008000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 8567
MartinJohnson 0:404f5a4f1385 8568 /****************** Bit definition for TIM_CCMR2 register *******************/
MartinJohnson 0:404f5a4f1385 8569 #define TIM_CCMR2_CC3S ((uint32_t)0x00000003) /*!<CC3S[1:0] bits (Capture/Compare 3 Selection) */
MartinJohnson 0:404f5a4f1385 8570 #define TIM_CCMR2_CC3S_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8571 #define TIM_CCMR2_CC3S_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8572
MartinJohnson 0:404f5a4f1385 8573 #define TIM_CCMR2_OC3FE ((uint32_t)0x00000004) /*!<Output Compare 3 Fast enable */
MartinJohnson 0:404f5a4f1385 8574 #define TIM_CCMR2_OC3PE ((uint32_t)0x00000008) /*!<Output Compare 3 Preload enable */
MartinJohnson 0:404f5a4f1385 8575
MartinJohnson 0:404f5a4f1385 8576 #define TIM_CCMR2_OC3M ((uint32_t)0x00000070) /*!<OC3M[2:0] bits (Output Compare 3 Mode) */
MartinJohnson 0:404f5a4f1385 8577 #define TIM_CCMR2_OC3M_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8578 #define TIM_CCMR2_OC3M_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8579 #define TIM_CCMR2_OC3M_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 8580 #define TIM_CCMR2_OC3M_3 ((uint32_t)0x00010000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 8581
MartinJohnson 0:404f5a4f1385 8582 #define TIM_CCMR2_OC3CE ((uint32_t)0x00000080) /*!<Output Compare 3 Clear Enable */
MartinJohnson 0:404f5a4f1385 8583
MartinJohnson 0:404f5a4f1385 8584 #define TIM_CCMR2_CC4S ((uint32_t)0x00000300) /*!<CC4S[1:0] bits (Capture/Compare 4 Selection) */
MartinJohnson 0:404f5a4f1385 8585 #define TIM_CCMR2_CC4S_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8586 #define TIM_CCMR2_CC4S_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8587
MartinJohnson 0:404f5a4f1385 8588 #define TIM_CCMR2_OC4FE ((uint32_t)0x00000400) /*!<Output Compare 4 Fast enable */
MartinJohnson 0:404f5a4f1385 8589 #define TIM_CCMR2_OC4PE ((uint32_t)0x00000800) /*!<Output Compare 4 Preload enable */
MartinJohnson 0:404f5a4f1385 8590
MartinJohnson 0:404f5a4f1385 8591 #define TIM_CCMR2_OC4M ((uint32_t)0x00007000) /*!<OC4M[2:0] bits (Output Compare 4 Mode) */
MartinJohnson 0:404f5a4f1385 8592 #define TIM_CCMR2_OC4M_0 ((uint32_t)0x00001000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8593 #define TIM_CCMR2_OC4M_1 ((uint32_t)0x00002000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8594 #define TIM_CCMR2_OC4M_2 ((uint32_t)0x00004000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 8595 #define TIM_CCMR2_OC4M_3 ((uint32_t)0x00100000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 8596
MartinJohnson 0:404f5a4f1385 8597 #define TIM_CCMR2_OC4CE ((uint32_t)0x00008000) /*!<Output Compare 4 Clear Enable */
MartinJohnson 0:404f5a4f1385 8598
MartinJohnson 0:404f5a4f1385 8599 /*----------------------------------------------------------------------------*/
MartinJohnson 0:404f5a4f1385 8600
MartinJohnson 0:404f5a4f1385 8601 #define TIM_CCMR2_IC3PSC ((uint16_t)0x0000000C) /*!<IC3PSC[1:0] bits (Input Capture 3 Prescaler) */
MartinJohnson 0:404f5a4f1385 8602 #define TIM_CCMR2_IC3PSC_0 ((uint16_t)0x00000004) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8603 #define TIM_CCMR2_IC3PSC_1 ((uint16_t)0x00000008) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8604
MartinJohnson 0:404f5a4f1385 8605 #define TIM_CCMR2_IC3F ((uint16_t)0x000000F0) /*!<IC3F[3:0] bits (Input Capture 3 Filter) */
MartinJohnson 0:404f5a4f1385 8606 #define TIM_CCMR2_IC3F_0 ((uint16_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8607 #define TIM_CCMR2_IC3F_1 ((uint16_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8608 #define TIM_CCMR2_IC3F_2 ((uint16_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 8609 #define TIM_CCMR2_IC3F_3 ((uint16_t)0x00000080) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 8610
MartinJohnson 0:404f5a4f1385 8611 #define TIM_CCMR2_IC4PSC ((uint16_t)0x00000C00) /*!<IC4PSC[1:0] bits (Input Capture 4 Prescaler) */
MartinJohnson 0:404f5a4f1385 8612 #define TIM_CCMR2_IC4PSC_0 ((uint16_t)0x00000400) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8613 #define TIM_CCMR2_IC4PSC_1 ((uint16_t)0x00000800) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8614
MartinJohnson 0:404f5a4f1385 8615 #define TIM_CCMR2_IC4F ((uint16_t)0x0000F000) /*!<IC4F[3:0] bits (Input Capture 4 Filter) */
MartinJohnson 0:404f5a4f1385 8616 #define TIM_CCMR2_IC4F_0 ((uint16_t)0x00001000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8617 #define TIM_CCMR2_IC4F_1 ((uint16_t)0x00002000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8618 #define TIM_CCMR2_IC4F_2 ((uint16_t)0x00004000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 8619 #define TIM_CCMR2_IC4F_3 ((uint16_t)0x00008000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 8620
MartinJohnson 0:404f5a4f1385 8621 /******************* Bit definition for TIM_CCER register *******************/
MartinJohnson 0:404f5a4f1385 8622 #define TIM_CCER_CC1E ((uint32_t)0x00000001) /*!<Capture/Compare 1 output enable */
MartinJohnson 0:404f5a4f1385 8623 #define TIM_CCER_CC1P ((uint32_t)0x00000002) /*!<Capture/Compare 1 output Polarity */
MartinJohnson 0:404f5a4f1385 8624 #define TIM_CCER_CC1NE ((uint32_t)0x00000004) /*!<Capture/Compare 1 Complementary output enable */
MartinJohnson 0:404f5a4f1385 8625 #define TIM_CCER_CC1NP ((uint32_t)0x00000008) /*!<Capture/Compare 1 Complementary output Polarity */
MartinJohnson 0:404f5a4f1385 8626 #define TIM_CCER_CC2E ((uint32_t)0x00000010) /*!<Capture/Compare 2 output enable */
MartinJohnson 0:404f5a4f1385 8627 #define TIM_CCER_CC2P ((uint32_t)0x00000020) /*!<Capture/Compare 2 output Polarity */
MartinJohnson 0:404f5a4f1385 8628 #define TIM_CCER_CC2NE ((uint32_t)0x00000040) /*!<Capture/Compare 2 Complementary output enable */
MartinJohnson 0:404f5a4f1385 8629 #define TIM_CCER_CC2NP ((uint32_t)0x00000080) /*!<Capture/Compare 2 Complementary output Polarity */
MartinJohnson 0:404f5a4f1385 8630 #define TIM_CCER_CC3E ((uint32_t)0x00000100) /*!<Capture/Compare 3 output enable */
MartinJohnson 0:404f5a4f1385 8631 #define TIM_CCER_CC3P ((uint32_t)0x00000200) /*!<Capture/Compare 3 output Polarity */
MartinJohnson 0:404f5a4f1385 8632 #define TIM_CCER_CC3NE ((uint32_t)0x00000400) /*!<Capture/Compare 3 Complementary output enable */
MartinJohnson 0:404f5a4f1385 8633 #define TIM_CCER_CC3NP ((uint32_t)0x00000800) /*!<Capture/Compare 3 Complementary output Polarity */
MartinJohnson 0:404f5a4f1385 8634 #define TIM_CCER_CC4E ((uint32_t)0x00001000) /*!<Capture/Compare 4 output enable */
MartinJohnson 0:404f5a4f1385 8635 #define TIM_CCER_CC4P ((uint32_t)0x00002000) /*!<Capture/Compare 4 output Polarity */
MartinJohnson 0:404f5a4f1385 8636 #define TIM_CCER_CC4NP ((uint32_t)0x00008000) /*!<Capture/Compare 4 Complementary output Polarity */
MartinJohnson 0:404f5a4f1385 8637 #define TIM_CCER_CC5E ((uint32_t)0x00010000) /*!<Capture/Compare 5 output enable */
MartinJohnson 0:404f5a4f1385 8638 #define TIM_CCER_CC5P ((uint32_t)0x00020000) /*!<Capture/Compare 5 output Polarity */
MartinJohnson 0:404f5a4f1385 8639 #define TIM_CCER_CC6E ((uint32_t)0x00100000) /*!<Capture/Compare 6 output enable */
MartinJohnson 0:404f5a4f1385 8640 #define TIM_CCER_CC6P ((uint32_t)0x00200000) /*!<Capture/Compare 6 output Polarity */
MartinJohnson 0:404f5a4f1385 8641 /******************* Bit definition for TIM_CNT register ********************/
MartinJohnson 0:404f5a4f1385 8642 #define TIM_CNT_CNT ((uint32_t)0xFFFFFFFF) /*!<Counter Value */
MartinJohnson 0:404f5a4f1385 8643 #define TIM_CNT_UIFCPY ((uint32_t)0x80000000) /*!<Update interrupt flag copy */
MartinJohnson 0:404f5a4f1385 8644 /******************* Bit definition for TIM_PSC register ********************/
MartinJohnson 0:404f5a4f1385 8645 #define TIM_PSC_PSC ((uint16_t)0xFFFF) /*!<Prescaler Value */
MartinJohnson 0:404f5a4f1385 8646
MartinJohnson 0:404f5a4f1385 8647 /******************* Bit definition for TIM_ARR register ********************/
MartinJohnson 0:404f5a4f1385 8648 #define TIM_ARR_ARR ((uint32_t)0xFFFFFFFF) /*!<actual auto-reload Value */
MartinJohnson 0:404f5a4f1385 8649
MartinJohnson 0:404f5a4f1385 8650 /******************* Bit definition for TIM_RCR register ********************/
MartinJohnson 0:404f5a4f1385 8651 #define TIM_RCR_REP ((uint8_t)0xFF) /*!<Repetition Counter Value */
MartinJohnson 0:404f5a4f1385 8652
MartinJohnson 0:404f5a4f1385 8653 /******************* Bit definition for TIM_CCR1 register *******************/
MartinJohnson 0:404f5a4f1385 8654 #define TIM_CCR1_CCR1 ((uint16_t)0xFFFF) /*!<Capture/Compare 1 Value */
MartinJohnson 0:404f5a4f1385 8655
MartinJohnson 0:404f5a4f1385 8656 /******************* Bit definition for TIM_CCR2 register *******************/
MartinJohnson 0:404f5a4f1385 8657 #define TIM_CCR2_CCR2 ((uint16_t)0xFFFF) /*!<Capture/Compare 2 Value */
MartinJohnson 0:404f5a4f1385 8658
MartinJohnson 0:404f5a4f1385 8659 /******************* Bit definition for TIM_CCR3 register *******************/
MartinJohnson 0:404f5a4f1385 8660 #define TIM_CCR3_CCR3 ((uint16_t)0xFFFF) /*!<Capture/Compare 3 Value */
MartinJohnson 0:404f5a4f1385 8661
MartinJohnson 0:404f5a4f1385 8662 /******************* Bit definition for TIM_CCR4 register *******************/
MartinJohnson 0:404f5a4f1385 8663 #define TIM_CCR4_CCR4 ((uint16_t)0xFFFF) /*!<Capture/Compare 4 Value */
MartinJohnson 0:404f5a4f1385 8664
MartinJohnson 0:404f5a4f1385 8665 /******************* Bit definition for TIM_CCR5 register *******************/
MartinJohnson 0:404f5a4f1385 8666 #define TIM_CCR5_CCR5 ((uint32_t)0xFFFFFFFF) /*!<Capture/Compare 5 Value */
MartinJohnson 0:404f5a4f1385 8667 #define TIM_CCR5_GC5C1 ((uint32_t)0x20000000) /*!<Group Channel 5 and Channel 1 */
MartinJohnson 0:404f5a4f1385 8668 #define TIM_CCR5_GC5C2 ((uint32_t)0x40000000) /*!<Group Channel 5 and Channel 2 */
MartinJohnson 0:404f5a4f1385 8669 #define TIM_CCR5_GC5C3 ((uint32_t)0x80000000) /*!<Group Channel 5 and Channel 3 */
MartinJohnson 0:404f5a4f1385 8670
MartinJohnson 0:404f5a4f1385 8671 /******************* Bit definition for TIM_CCR6 register *******************/
MartinJohnson 0:404f5a4f1385 8672 #define TIM_CCR6_CCR6 ((uint16_t)0xFFFF) /*!<Capture/Compare 6 Value */
MartinJohnson 0:404f5a4f1385 8673
MartinJohnson 0:404f5a4f1385 8674 /******************* Bit definition for TIM_BDTR register *******************/
MartinJohnson 0:404f5a4f1385 8675 #define TIM_BDTR_DTG ((uint32_t)0x000000FF) /*!<DTG[0:7] bits (Dead-Time Generator set-up) */
MartinJohnson 0:404f5a4f1385 8676 #define TIM_BDTR_DTG_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8677 #define TIM_BDTR_DTG_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8678 #define TIM_BDTR_DTG_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 8679 #define TIM_BDTR_DTG_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 8680 #define TIM_BDTR_DTG_4 ((uint32_t)0x00000010) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 8681 #define TIM_BDTR_DTG_5 ((uint32_t)0x00000020) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 8682 #define TIM_BDTR_DTG_6 ((uint32_t)0x00000040) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 8683 #define TIM_BDTR_DTG_7 ((uint32_t)0x00000080) /*!<Bit 7 */
MartinJohnson 0:404f5a4f1385 8684
MartinJohnson 0:404f5a4f1385 8685 #define TIM_BDTR_LOCK ((uint32_t)0x00000300) /*!<LOCK[1:0] bits (Lock Configuration) */
MartinJohnson 0:404f5a4f1385 8686 #define TIM_BDTR_LOCK_0 ((uint32_t)0x00000100) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8687 #define TIM_BDTR_LOCK_1 ((uint32_t)0x00000200) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8688
MartinJohnson 0:404f5a4f1385 8689 #define TIM_BDTR_OSSI ((uint32_t)0x00000400) /*!<Off-State Selection for Idle mode */
MartinJohnson 0:404f5a4f1385 8690 #define TIM_BDTR_OSSR ((uint32_t)0x00000800) /*!<Off-State Selection for Run mode */
MartinJohnson 0:404f5a4f1385 8691 #define TIM_BDTR_BKE ((uint32_t)0x00001000) /*!<Break enable for Break1 */
MartinJohnson 0:404f5a4f1385 8692 #define TIM_BDTR_BKP ((uint32_t)0x00002000) /*!<Break Polarity for Break1 */
MartinJohnson 0:404f5a4f1385 8693 #define TIM_BDTR_AOE ((uint32_t)0x00004000) /*!<Automatic Output enable */
MartinJohnson 0:404f5a4f1385 8694 #define TIM_BDTR_MOE ((uint32_t)0x00008000) /*!<Main Output enable */
MartinJohnson 0:404f5a4f1385 8695
MartinJohnson 0:404f5a4f1385 8696 #define TIM_BDTR_BKF ((uint32_t)0x000F0000) /*!<Break Filter for Break1 */
MartinJohnson 0:404f5a4f1385 8697 #define TIM_BDTR_BK2F ((uint32_t)0x00F00000) /*!<Break Filter for Break2 */
MartinJohnson 0:404f5a4f1385 8698
MartinJohnson 0:404f5a4f1385 8699 #define TIM_BDTR_BK2E ((uint32_t)0x01000000) /*!<Break enable for Break2 */
MartinJohnson 0:404f5a4f1385 8700 #define TIM_BDTR_BK2P ((uint32_t)0x02000000) /*!<Break Polarity for Break2 */
MartinJohnson 0:404f5a4f1385 8701
MartinJohnson 0:404f5a4f1385 8702 /******************* Bit definition for TIM_DCR register ********************/
MartinJohnson 0:404f5a4f1385 8703 #define TIM_DCR_DBA ((uint16_t)0x001F) /*!<DBA[4:0] bits (DMA Base Address) */
MartinJohnson 0:404f5a4f1385 8704 #define TIM_DCR_DBA_0 ((uint16_t)0x0001) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8705 #define TIM_DCR_DBA_1 ((uint16_t)0x0002) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8706 #define TIM_DCR_DBA_2 ((uint16_t)0x0004) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 8707 #define TIM_DCR_DBA_3 ((uint16_t)0x0008) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 8708 #define TIM_DCR_DBA_4 ((uint16_t)0x0010) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 8709
MartinJohnson 0:404f5a4f1385 8710 #define TIM_DCR_DBL ((uint16_t)0x1F00) /*!<DBL[4:0] bits (DMA Burst Length) */
MartinJohnson 0:404f5a4f1385 8711 #define TIM_DCR_DBL_0 ((uint16_t)0x0100) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8712 #define TIM_DCR_DBL_1 ((uint16_t)0x0200) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8713 #define TIM_DCR_DBL_2 ((uint16_t)0x0400) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 8714 #define TIM_DCR_DBL_3 ((uint16_t)0x0800) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 8715 #define TIM_DCR_DBL_4 ((uint16_t)0x1000) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 8716
MartinJohnson 0:404f5a4f1385 8717 /******************* Bit definition for TIM_DMAR register *******************/
MartinJohnson 0:404f5a4f1385 8718 #define TIM_DMAR_DMAB ((uint16_t)0xFFFF) /*!<DMA register for burst accesses */
MartinJohnson 0:404f5a4f1385 8719
MartinJohnson 0:404f5a4f1385 8720 /******************* Bit definition for TIM16_OR register *********************/
MartinJohnson 0:404f5a4f1385 8721 #define TIM16_OR_TI1_RMP ((uint16_t)0x00C0) /*!<TI1_RMP[1:0] bits (TIM16 Input 1 remap) */
MartinJohnson 0:404f5a4f1385 8722 #define TIM16_OR_TI1_RMP_0 ((uint16_t)0x0040) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8723 #define TIM16_OR_TI1_RMP_1 ((uint16_t)0x0080) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8724
MartinJohnson 0:404f5a4f1385 8725 /******************* Bit definition for TIM1_OR register *********************/
MartinJohnson 0:404f5a4f1385 8726 #define TIM1_OR_ETR_RMP ((uint16_t)0x000F) /*!<ETR_RMP[3:0] bits (TIM1 ETR remap) */
MartinJohnson 0:404f5a4f1385 8727 #define TIM1_OR_ETR_RMP_0 ((uint16_t)0x0001) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8728 #define TIM1_OR_ETR_RMP_1 ((uint16_t)0x0002) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8729 #define TIM1_OR_ETR_RMP_2 ((uint16_t)0x0004) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 8730 #define TIM1_OR_ETR_RMP_3 ((uint16_t)0x0008) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 8731
MartinJohnson 0:404f5a4f1385 8732 /******************* Bit definition for TIM8_OR register *********************/
MartinJohnson 0:404f5a4f1385 8733 #define TIM8_OR_ETR_RMP ((uint16_t)0x000F) /*!<ETR_RMP[3:0] bits (TIM8 ETR remap) */
MartinJohnson 0:404f5a4f1385 8734 #define TIM8_OR_ETR_RMP_0 ((uint16_t)0x0001) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8735 #define TIM8_OR_ETR_RMP_1 ((uint16_t)0x0002) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8736 #define TIM8_OR_ETR_RMP_2 ((uint16_t)0x0004) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 8737 #define TIM8_OR_ETR_RMP_3 ((uint16_t)0x0008) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 8738
MartinJohnson 0:404f5a4f1385 8739 /******************* Bit definition for TIM20_OR register *******************/
MartinJohnson 0:404f5a4f1385 8740 #define TIM20_OR_ETR_RMP ((uint32_t)0x0000000F) /*!<ETR_RMP[3:0] bits (TIM20 ETR remap) */
MartinJohnson 0:404f5a4f1385 8741 #define TIM20_OR_ETR_RMP_0 ((uint32_t)0x00000001) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8742 #define TIM20_OR_ETR_RMP_1 ((uint32_t)0x00000002) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8743 #define TIM20_OR_ETR_RMP_2 ((uint32_t)0x00000004) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 8744 #define TIM20_OR_ETR_RMP_3 ((uint32_t)0x00000008) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 8745
MartinJohnson 0:404f5a4f1385 8746 /****************** Bit definition for TIM_CCMR3 register *******************/
MartinJohnson 0:404f5a4f1385 8747 #define TIM_CCMR3_OC5FE ((uint32_t)0x00000004) /*!<Output Compare 5 Fast enable */
MartinJohnson 0:404f5a4f1385 8748 #define TIM_CCMR3_OC5PE ((uint32_t)0x00000008) /*!<Output Compare 5 Preload enable */
MartinJohnson 0:404f5a4f1385 8749
MartinJohnson 0:404f5a4f1385 8750 #define TIM_CCMR3_OC5M ((uint32_t)0x00000070) /*!<OC5M[2:0] bits (Output Compare 5 Mode) */
MartinJohnson 0:404f5a4f1385 8751 #define TIM_CCMR3_OC5M_0 ((uint32_t)0x00000010) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8752 #define TIM_CCMR3_OC5M_1 ((uint32_t)0x00000020) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8753 #define TIM_CCMR3_OC5M_2 ((uint32_t)0x00000040) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 8754 #define TIM_CCMR3_OC5M_3 ((uint32_t)0x00010000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 8755
MartinJohnson 0:404f5a4f1385 8756 #define TIM_CCMR3_OC5CE ((uint32_t)0x00000080) /*!<Output Compare 5 Clear Enable */
MartinJohnson 0:404f5a4f1385 8757
MartinJohnson 0:404f5a4f1385 8758 #define TIM_CCMR3_OC6FE ((uint32_t)0x00000400) /*!<Output Compare 4 Fast enable */
MartinJohnson 0:404f5a4f1385 8759 #define TIM_CCMR3_OC6PE ((uint32_t)0x00000800) /*!<Output Compare 4 Preload enable */
MartinJohnson 0:404f5a4f1385 8760
MartinJohnson 0:404f5a4f1385 8761 #define TIM_CCMR3_OC6M ((uint32_t)0x00007000) /*!<OC4M[2:0] bits (Output Compare 4 Mode) */
MartinJohnson 0:404f5a4f1385 8762 #define TIM_CCMR3_OC6M_0 ((uint32_t)0x00001000) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8763 #define TIM_CCMR3_OC6M_1 ((uint32_t)0x00002000) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8764 #define TIM_CCMR3_OC6M_2 ((uint32_t)0x00004000) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 8765 #define TIM_CCMR3_OC6M_3 ((uint32_t)0x00100000) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 8766
MartinJohnson 0:404f5a4f1385 8767 #define TIM_CCMR3_OC6CE ((uint32_t)0x00008000) /*!<Output Compare 4 Clear Enable */
MartinJohnson 0:404f5a4f1385 8768
MartinJohnson 0:404f5a4f1385 8769 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 8770 /* */
MartinJohnson 0:404f5a4f1385 8771 /* Universal Synchronous Asynchronous Receiver Transmitter (USART) */
MartinJohnson 0:404f5a4f1385 8772 /* */
MartinJohnson 0:404f5a4f1385 8773 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 8774 /****************** Bit definition for USART_CR1 register *******************/
MartinJohnson 0:404f5a4f1385 8775 #define USART_CR1_UE ((uint32_t)0x00000001) /*!< USART Enable */
MartinJohnson 0:404f5a4f1385 8776 #define USART_CR1_UESM ((uint32_t)0x00000002) /*!< USART Enable in STOP Mode */
MartinJohnson 0:404f5a4f1385 8777 #define USART_CR1_RE ((uint32_t)0x00000004) /*!< Receiver Enable */
MartinJohnson 0:404f5a4f1385 8778 #define USART_CR1_TE ((uint32_t)0x00000008) /*!< Transmitter Enable */
MartinJohnson 0:404f5a4f1385 8779 #define USART_CR1_IDLEIE ((uint32_t)0x00000010) /*!< IDLE Interrupt Enable */
MartinJohnson 0:404f5a4f1385 8780 #define USART_CR1_RXNEIE ((uint32_t)0x00000020) /*!< RXNE Interrupt Enable */
MartinJohnson 0:404f5a4f1385 8781 #define USART_CR1_TCIE ((uint32_t)0x00000040) /*!< Transmission Complete Interrupt Enable */
MartinJohnson 0:404f5a4f1385 8782 #define USART_CR1_TXEIE ((uint32_t)0x00000080) /*!< TXE Interrupt Enable */
MartinJohnson 0:404f5a4f1385 8783 #define USART_CR1_PEIE ((uint32_t)0x00000100) /*!< PE Interrupt Enable */
MartinJohnson 0:404f5a4f1385 8784 #define USART_CR1_PS ((uint32_t)0x00000200) /*!< Parity Selection */
MartinJohnson 0:404f5a4f1385 8785 #define USART_CR1_PCE ((uint32_t)0x00000400) /*!< Parity Control Enable */
MartinJohnson 0:404f5a4f1385 8786 #define USART_CR1_WAKE ((uint32_t)0x00000800) /*!< Receiver Wakeup method */
MartinJohnson 0:404f5a4f1385 8787 #define USART_CR1_M ((uint32_t)0x00001000) /*!< Word length */
MartinJohnson 0:404f5a4f1385 8788 #define USART_CR1_MME ((uint32_t)0x00002000) /*!< Mute Mode Enable */
MartinJohnson 0:404f5a4f1385 8789 #define USART_CR1_CMIE ((uint32_t)0x00004000) /*!< Character match interrupt enable */
MartinJohnson 0:404f5a4f1385 8790 #define USART_CR1_OVER8 ((uint32_t)0x00008000) /*!< Oversampling by 8-bit or 16-bit mode */
MartinJohnson 0:404f5a4f1385 8791 #define USART_CR1_DEDT ((uint32_t)0x001F0000) /*!< DEDT[4:0] bits (Driver Enable Deassertion Time) */
MartinJohnson 0:404f5a4f1385 8792 #define USART_CR1_DEDT_0 ((uint32_t)0x00010000) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 8793 #define USART_CR1_DEDT_1 ((uint32_t)0x00020000) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 8794 #define USART_CR1_DEDT_2 ((uint32_t)0x00040000) /*!< Bit 2 */
MartinJohnson 0:404f5a4f1385 8795 #define USART_CR1_DEDT_3 ((uint32_t)0x00080000) /*!< Bit 3 */
MartinJohnson 0:404f5a4f1385 8796 #define USART_CR1_DEDT_4 ((uint32_t)0x00100000) /*!< Bit 4 */
MartinJohnson 0:404f5a4f1385 8797 #define USART_CR1_DEAT ((uint32_t)0x03E00000) /*!< DEAT[4:0] bits (Driver Enable Assertion Time) */
MartinJohnson 0:404f5a4f1385 8798 #define USART_CR1_DEAT_0 ((uint32_t)0x00200000) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 8799 #define USART_CR1_DEAT_1 ((uint32_t)0x00400000) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 8800 #define USART_CR1_DEAT_2 ((uint32_t)0x00800000) /*!< Bit 2 */
MartinJohnson 0:404f5a4f1385 8801 #define USART_CR1_DEAT_3 ((uint32_t)0x01000000) /*!< Bit 3 */
MartinJohnson 0:404f5a4f1385 8802 #define USART_CR1_DEAT_4 ((uint32_t)0x02000000) /*!< Bit 4 */
MartinJohnson 0:404f5a4f1385 8803 #define USART_CR1_RTOIE ((uint32_t)0x04000000) /*!< Receive Time Out interrupt enable */
MartinJohnson 0:404f5a4f1385 8804 #define USART_CR1_EOBIE ((uint32_t)0x08000000) /*!< End of Block interrupt enable */
MartinJohnson 0:404f5a4f1385 8805
MartinJohnson 0:404f5a4f1385 8806 /****************** Bit definition for USART_CR2 register *******************/
MartinJohnson 0:404f5a4f1385 8807 #define USART_CR2_ADDM7 ((uint32_t)0x00000010) /*!< 7-bit or 4-bit Address Detection */
MartinJohnson 0:404f5a4f1385 8808 #define USART_CR2_LBDL ((uint32_t)0x00000020) /*!< LIN Break Detection Length */
MartinJohnson 0:404f5a4f1385 8809 #define USART_CR2_LBDIE ((uint32_t)0x00000040) /*!< LIN Break Detection Interrupt Enable */
MartinJohnson 0:404f5a4f1385 8810 #define USART_CR2_LBCL ((uint32_t)0x00000100) /*!< Last Bit Clock pulse */
MartinJohnson 0:404f5a4f1385 8811 #define USART_CR2_CPHA ((uint32_t)0x00000200) /*!< Clock Phase */
MartinJohnson 0:404f5a4f1385 8812 #define USART_CR2_CPOL ((uint32_t)0x00000400) /*!< Clock Polarity */
MartinJohnson 0:404f5a4f1385 8813 #define USART_CR2_CLKEN ((uint32_t)0x00000800) /*!< Clock Enable */
MartinJohnson 0:404f5a4f1385 8814 #define USART_CR2_STOP ((uint32_t)0x00003000) /*!< STOP[1:0] bits (STOP bits) */
MartinJohnson 0:404f5a4f1385 8815 #define USART_CR2_STOP_0 ((uint32_t)0x00001000) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 8816 #define USART_CR2_STOP_1 ((uint32_t)0x00002000) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 8817 #define USART_CR2_LINEN ((uint32_t)0x00004000) /*!< LIN mode enable */
MartinJohnson 0:404f5a4f1385 8818 #define USART_CR2_SWAP ((uint32_t)0x00008000) /*!< SWAP TX/RX pins */
MartinJohnson 0:404f5a4f1385 8819 #define USART_CR2_RXINV ((uint32_t)0x00010000) /*!< RX pin active level inversion */
MartinJohnson 0:404f5a4f1385 8820 #define USART_CR2_TXINV ((uint32_t)0x00020000) /*!< TX pin active level inversion */
MartinJohnson 0:404f5a4f1385 8821 #define USART_CR2_DATAINV ((uint32_t)0x00040000) /*!< Binary data inversion */
MartinJohnson 0:404f5a4f1385 8822 #define USART_CR2_MSBFIRST ((uint32_t)0x00080000) /*!< Most Significant Bit First */
MartinJohnson 0:404f5a4f1385 8823 #define USART_CR2_ABREN ((uint32_t)0x00100000) /*!< Auto Baud-Rate Enable*/
MartinJohnson 0:404f5a4f1385 8824 #define USART_CR2_ABRMODE ((uint32_t)0x00600000) /*!< ABRMOD[1:0] bits (Auto Baud-Rate Mode) */
MartinJohnson 0:404f5a4f1385 8825 #define USART_CR2_ABRMODE_0 ((uint32_t)0x00200000) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 8826 #define USART_CR2_ABRMODE_1 ((uint32_t)0x00400000) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 8827 #define USART_CR2_RTOEN ((uint32_t)0x00800000) /*!< Receiver Time-Out enable */
MartinJohnson 0:404f5a4f1385 8828 #define USART_CR2_ADD ((uint32_t)0xFF000000) /*!< Address of the USART node */
MartinJohnson 0:404f5a4f1385 8829
MartinJohnson 0:404f5a4f1385 8830 /****************** Bit definition for USART_CR3 register *******************/
MartinJohnson 0:404f5a4f1385 8831 #define USART_CR3_EIE ((uint32_t)0x00000001) /*!< Error Interrupt Enable */
MartinJohnson 0:404f5a4f1385 8832 #define USART_CR3_IREN ((uint32_t)0x00000002) /*!< IrDA mode Enable */
MartinJohnson 0:404f5a4f1385 8833 #define USART_CR3_IRLP ((uint32_t)0x00000004) /*!< IrDA Low-Power */
MartinJohnson 0:404f5a4f1385 8834 #define USART_CR3_HDSEL ((uint32_t)0x00000008) /*!< Half-Duplex Selection */
MartinJohnson 0:404f5a4f1385 8835 #define USART_CR3_NACK ((uint32_t)0x00000010) /*!< SmartCard NACK enable */
MartinJohnson 0:404f5a4f1385 8836 #define USART_CR3_SCEN ((uint32_t)0x00000020) /*!< SmartCard mode enable */
MartinJohnson 0:404f5a4f1385 8837 #define USART_CR3_DMAR ((uint32_t)0x00000040) /*!< DMA Enable Receiver */
MartinJohnson 0:404f5a4f1385 8838 #define USART_CR3_DMAT ((uint32_t)0x00000080) /*!< DMA Enable Transmitter */
MartinJohnson 0:404f5a4f1385 8839 #define USART_CR3_RTSE ((uint32_t)0x00000100) /*!< RTS Enable */
MartinJohnson 0:404f5a4f1385 8840 #define USART_CR3_CTSE ((uint32_t)0x00000200) /*!< CTS Enable */
MartinJohnson 0:404f5a4f1385 8841 #define USART_CR3_CTSIE ((uint32_t)0x00000400) /*!< CTS Interrupt Enable */
MartinJohnson 0:404f5a4f1385 8842 #define USART_CR3_ONEBIT ((uint32_t)0x00000800) /*!< One sample bit method enable */
MartinJohnson 0:404f5a4f1385 8843 #define USART_CR3_OVRDIS ((uint32_t)0x00001000) /*!< Overrun Disable */
MartinJohnson 0:404f5a4f1385 8844 #define USART_CR3_DDRE ((uint32_t)0x00002000) /*!< DMA Disable on Reception Error */
MartinJohnson 0:404f5a4f1385 8845 #define USART_CR3_DEM ((uint32_t)0x00004000) /*!< Driver Enable Mode */
MartinJohnson 0:404f5a4f1385 8846 #define USART_CR3_DEP ((uint32_t)0x00008000) /*!< Driver Enable Polarity Selection */
MartinJohnson 0:404f5a4f1385 8847 #define USART_CR3_SCARCNT ((uint32_t)0x000E0000) /*!< SCARCNT[2:0] bits (SmartCard Auto-Retry Count) */
MartinJohnson 0:404f5a4f1385 8848 #define USART_CR3_SCARCNT_0 ((uint32_t)0x00020000) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 8849 #define USART_CR3_SCARCNT_1 ((uint32_t)0x00040000) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 8850 #define USART_CR3_SCARCNT_2 ((uint32_t)0x00080000) /*!< Bit 2 */
MartinJohnson 0:404f5a4f1385 8851 #define USART_CR3_WUS ((uint32_t)0x00300000) /*!< WUS[1:0] bits (Wake UP Interrupt Flag Selection) */
MartinJohnson 0:404f5a4f1385 8852 #define USART_CR3_WUS_0 ((uint32_t)0x00100000) /*!< Bit 0 */
MartinJohnson 0:404f5a4f1385 8853 #define USART_CR3_WUS_1 ((uint32_t)0x00200000) /*!< Bit 1 */
MartinJohnson 0:404f5a4f1385 8854 #define USART_CR3_WUFIE ((uint32_t)0x00400000) /*!< Wake Up Interrupt Enable */
MartinJohnson 0:404f5a4f1385 8855
MartinJohnson 0:404f5a4f1385 8856 /****************** Bit definition for USART_BRR register *******************/
MartinJohnson 0:404f5a4f1385 8857 #define USART_BRR_DIV_FRACTION ((uint16_t)0x000F) /*!< Fraction of USARTDIV */
MartinJohnson 0:404f5a4f1385 8858 #define USART_BRR_DIV_MANTISSA ((uint16_t)0xFFF0) /*!< Mantissa of USARTDIV */
MartinJohnson 0:404f5a4f1385 8859
MartinJohnson 0:404f5a4f1385 8860 /****************** Bit definition for USART_GTPR register ******************/
MartinJohnson 0:404f5a4f1385 8861 #define USART_GTPR_PSC ((uint16_t)0x00FF) /*!< PSC[7:0] bits (Prescaler value) */
MartinJohnson 0:404f5a4f1385 8862 #define USART_GTPR_GT ((uint16_t)0xFF00) /*!< GT[7:0] bits (Guard time value) */
MartinJohnson 0:404f5a4f1385 8863
MartinJohnson 0:404f5a4f1385 8864
MartinJohnson 0:404f5a4f1385 8865 /******************* Bit definition for USART_RTOR register *****************/
MartinJohnson 0:404f5a4f1385 8866 #define USART_RTOR_RTO ((uint32_t)0x00FFFFFF) /*!< Receiver Time Out Value */
MartinJohnson 0:404f5a4f1385 8867 #define USART_RTOR_BLEN ((uint32_t)0xFF000000) /*!< Block Length */
MartinJohnson 0:404f5a4f1385 8868
MartinJohnson 0:404f5a4f1385 8869 /******************* Bit definition for USART_RQR register ******************/
MartinJohnson 0:404f5a4f1385 8870 #define USART_RQR_ABRRQ ((uint16_t)0x0001) /*!< Auto-Baud Rate Request */
MartinJohnson 0:404f5a4f1385 8871 #define USART_RQR_SBKRQ ((uint16_t)0x0002) /*!< Send Break Request */
MartinJohnson 0:404f5a4f1385 8872 #define USART_RQR_MMRQ ((uint16_t)0x0004) /*!< Mute Mode Request */
MartinJohnson 0:404f5a4f1385 8873 #define USART_RQR_RXFRQ ((uint16_t)0x0008) /*!< Receive Data flush Request */
MartinJohnson 0:404f5a4f1385 8874 #define USART_RQR_TXFRQ ((uint16_t)0x0010) /*!< Transmit data flush Request */
MartinJohnson 0:404f5a4f1385 8875
MartinJohnson 0:404f5a4f1385 8876 /******************* Bit definition for USART_ISR register ******************/
MartinJohnson 0:404f5a4f1385 8877 #define USART_ISR_PE ((uint32_t)0x00000001) /*!< Parity Error */
MartinJohnson 0:404f5a4f1385 8878 #define USART_ISR_FE ((uint32_t)0x00000002) /*!< Framing Error */
MartinJohnson 0:404f5a4f1385 8879 #define USART_ISR_NE ((uint32_t)0x00000004) /*!< Noise detected Flag */
MartinJohnson 0:404f5a4f1385 8880 #define USART_ISR_ORE ((uint32_t)0x00000008) /*!< OverRun Error */
MartinJohnson 0:404f5a4f1385 8881 #define USART_ISR_IDLE ((uint32_t)0x00000010) /*!< IDLE line detected */
MartinJohnson 0:404f5a4f1385 8882 #define USART_ISR_RXNE ((uint32_t)0x00000020) /*!< Read Data Register Not Empty */
MartinJohnson 0:404f5a4f1385 8883 #define USART_ISR_TC ((uint32_t)0x00000040) /*!< Transmission Complete */
MartinJohnson 0:404f5a4f1385 8884 #define USART_ISR_TXE ((uint32_t)0x00000080) /*!< Transmit Data Register Empty */
MartinJohnson 0:404f5a4f1385 8885 #define USART_ISR_LBD ((uint32_t)0x00000100) /*!< LIN Break Detection Flag */
MartinJohnson 0:404f5a4f1385 8886 #define USART_ISR_CTSIF ((uint32_t)0x00000200) /*!< CTS interrupt flag */
MartinJohnson 0:404f5a4f1385 8887 #define USART_ISR_CTS ((uint32_t)0x00000400) /*!< CTS flag */
MartinJohnson 0:404f5a4f1385 8888 #define USART_ISR_RTOF ((uint32_t)0x00000800) /*!< Receiver Time Out */
MartinJohnson 0:404f5a4f1385 8889 #define USART_ISR_EOBF ((uint32_t)0x00001000) /*!< End Of Block Flag */
MartinJohnson 0:404f5a4f1385 8890 #define USART_ISR_ABRE ((uint32_t)0x00004000) /*!< Auto-Baud Rate Error */
MartinJohnson 0:404f5a4f1385 8891 #define USART_ISR_ABRF ((uint32_t)0x00008000) /*!< Auto-Baud Rate Flag */
MartinJohnson 0:404f5a4f1385 8892 #define USART_ISR_BUSY ((uint32_t)0x00010000) /*!< Busy Flag */
MartinJohnson 0:404f5a4f1385 8893 #define USART_ISR_CMF ((uint32_t)0x00020000) /*!< Character Match Flag */
MartinJohnson 0:404f5a4f1385 8894 #define USART_ISR_SBKF ((uint32_t)0x00040000) /*!< Send Break Flag */
MartinJohnson 0:404f5a4f1385 8895 #define USART_ISR_RWU ((uint32_t)0x00080000) /*!< Receive Wake Up from mute mode Flag */
MartinJohnson 0:404f5a4f1385 8896 #define USART_ISR_WUF ((uint32_t)0x00100000) /*!< Wake Up from stop mode Flag */
MartinJohnson 0:404f5a4f1385 8897 #define USART_ISR_TEACK ((uint32_t)0x00200000) /*!< Transmit Enable Acknowledge Flag */
MartinJohnson 0:404f5a4f1385 8898 #define USART_ISR_REACK ((uint32_t)0x00400000) /*!< Receive Enable Acknowledge Flag */
MartinJohnson 0:404f5a4f1385 8899
MartinJohnson 0:404f5a4f1385 8900 /******************* Bit definition for USART_ICR register ******************/
MartinJohnson 0:404f5a4f1385 8901 #define USART_ICR_PECF ((uint32_t)0x00000001) /*!< Parity Error Clear Flag */
MartinJohnson 0:404f5a4f1385 8902 #define USART_ICR_FECF ((uint32_t)0x00000002) /*!< Framing Error Clear Flag */
MartinJohnson 0:404f5a4f1385 8903 #define USART_ICR_NCF ((uint32_t)0x00000004) /*!< Noise detected Clear Flag */
MartinJohnson 0:404f5a4f1385 8904 #define USART_ICR_ORECF ((uint32_t)0x00000008) /*!< OverRun Error Clear Flag */
MartinJohnson 0:404f5a4f1385 8905 #define USART_ICR_IDLECF ((uint32_t)0x00000010) /*!< IDLE line detected Clear Flag */
MartinJohnson 0:404f5a4f1385 8906 #define USART_ICR_TCCF ((uint32_t)0x00000040) /*!< Transmission Complete Clear Flag */
MartinJohnson 0:404f5a4f1385 8907 #define USART_ICR_LBDCF ((uint32_t)0x00000100) /*!< LIN Break Detection Clear Flag */
MartinJohnson 0:404f5a4f1385 8908 #define USART_ICR_CTSCF ((uint32_t)0x00000200) /*!< CTS Interrupt Clear Flag */
MartinJohnson 0:404f5a4f1385 8909 #define USART_ICR_RTOCF ((uint32_t)0x00000800) /*!< Receiver Time Out Clear Flag */
MartinJohnson 0:404f5a4f1385 8910 #define USART_ICR_EOBCF ((uint32_t)0x00001000) /*!< End Of Block Clear Flag */
MartinJohnson 0:404f5a4f1385 8911 #define USART_ICR_CMCF ((uint32_t)0x00020000) /*!< Character Match Clear Flag */
MartinJohnson 0:404f5a4f1385 8912 #define USART_ICR_WUCF ((uint32_t)0x00100000) /*!< Wake Up from stop mode Clear Flag */
MartinJohnson 0:404f5a4f1385 8913
MartinJohnson 0:404f5a4f1385 8914 /******************* Bit definition for USART_RDR register ******************/
MartinJohnson 0:404f5a4f1385 8915 #define USART_RDR_RDR ((uint16_t)0x01FF) /*!< RDR[8:0] bits (Receive Data value) */
MartinJohnson 0:404f5a4f1385 8916
MartinJohnson 0:404f5a4f1385 8917 /******************* Bit definition for USART_TDR register ******************/
MartinJohnson 0:404f5a4f1385 8918 #define USART_TDR_TDR ((uint16_t)0x01FF) /*!< TDR[8:0] bits (Transmit Data value) */
MartinJohnson 0:404f5a4f1385 8919
MartinJohnson 0:404f5a4f1385 8920 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 8921 /* */
MartinJohnson 0:404f5a4f1385 8922 /* Window WATCHDOG */
MartinJohnson 0:404f5a4f1385 8923 /* */
MartinJohnson 0:404f5a4f1385 8924 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 8925 /******************* Bit definition for WWDG_CR register ********************/
MartinJohnson 0:404f5a4f1385 8926 #define WWDG_CR_T ((uint8_t)0x7F) /*!<T[6:0] bits (7-Bit counter (MSB to LSB)) */
MartinJohnson 0:404f5a4f1385 8927 #define WWDG_CR_T0 ((uint8_t)0x01) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8928 #define WWDG_CR_T1 ((uint8_t)0x02) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8929 #define WWDG_CR_T2 ((uint8_t)0x04) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 8930 #define WWDG_CR_T3 ((uint8_t)0x08) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 8931 #define WWDG_CR_T4 ((uint8_t)0x10) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 8932 #define WWDG_CR_T5 ((uint8_t)0x20) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 8933 #define WWDG_CR_T6 ((uint8_t)0x40) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 8934
MartinJohnson 0:404f5a4f1385 8935 #define WWDG_CR_WDGA ((uint8_t)0x80) /*!<Activation bit */
MartinJohnson 0:404f5a4f1385 8936
MartinJohnson 0:404f5a4f1385 8937 /******************* Bit definition for WWDG_CFR register *******************/
MartinJohnson 0:404f5a4f1385 8938 #define WWDG_CFR_W ((uint16_t)0x007F) /*!<W[6:0] bits (7-bit window value) */
MartinJohnson 0:404f5a4f1385 8939 #define WWDG_CFR_W0 ((uint16_t)0x0001) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8940 #define WWDG_CFR_W1 ((uint16_t)0x0002) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8941 #define WWDG_CFR_W2 ((uint16_t)0x0004) /*!<Bit 2 */
MartinJohnson 0:404f5a4f1385 8942 #define WWDG_CFR_W3 ((uint16_t)0x0008) /*!<Bit 3 */
MartinJohnson 0:404f5a4f1385 8943 #define WWDG_CFR_W4 ((uint16_t)0x0010) /*!<Bit 4 */
MartinJohnson 0:404f5a4f1385 8944 #define WWDG_CFR_W5 ((uint16_t)0x0020) /*!<Bit 5 */
MartinJohnson 0:404f5a4f1385 8945 #define WWDG_CFR_W6 ((uint16_t)0x0040) /*!<Bit 6 */
MartinJohnson 0:404f5a4f1385 8946
MartinJohnson 0:404f5a4f1385 8947 #define WWDG_CFR_WDGTB ((uint16_t)0x0180) /*!<WDGTB[1:0] bits (Timer Base) */
MartinJohnson 0:404f5a4f1385 8948 #define WWDG_CFR_WDGTB0 ((uint16_t)0x0080) /*!<Bit 0 */
MartinJohnson 0:404f5a4f1385 8949 #define WWDG_CFR_WDGTB1 ((uint16_t)0x0100) /*!<Bit 1 */
MartinJohnson 0:404f5a4f1385 8950
MartinJohnson 0:404f5a4f1385 8951 #define WWDG_CFR_EWI ((uint16_t)0x0200) /*!<Early Wakeup Interrupt */
MartinJohnson 0:404f5a4f1385 8952
MartinJohnson 0:404f5a4f1385 8953 /******************* Bit definition for WWDG_SR register ********************/
MartinJohnson 0:404f5a4f1385 8954 #define WWDG_SR_EWIF ((uint8_t)0x01) /*!<Early Wakeup Interrupt Flag */
MartinJohnson 0:404f5a4f1385 8955
MartinJohnson 0:404f5a4f1385 8956 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 8957 /* For a painless codes migration between the STM32F3xx device product */
MartinJohnson 0:404f5a4f1385 8958 /* lines, the aliases defined below are put in place to overcome the */
MartinJohnson 0:404f5a4f1385 8959 /* differences in the interrupt handlers and IRQn definitions. */
MartinJohnson 0:404f5a4f1385 8960 /* No need to update developed interrupt code when moving across */
MartinJohnson 0:404f5a4f1385 8961 /* product lines within the same STM32F3 Family */
MartinJohnson 0:404f5a4f1385 8962 /******************************************************************************/
MartinJohnson 0:404f5a4f1385 8963 #if defined (STM32F303xC)
MartinJohnson 0:404f5a4f1385 8964 /* Aliases for __IRQn */
MartinJohnson 0:404f5a4f1385 8965 #define ADC1_IRQn ADC1_2_IRQn
MartinJohnson 0:404f5a4f1385 8966 #define CAN1_TX_IRQn USB_HP_CAN1_TX_IRQn
MartinJohnson 0:404f5a4f1385 8967 #define CAN1_RX0_IRQn USB_LP_CAN1_RX0_IRQn
MartinJohnson 0:404f5a4f1385 8968 #define TIM6_DAC1_IRQn TIM6_DAC_IRQn
MartinJohnson 0:404f5a4f1385 8969 #define TIM7_DAC2_IRQn TIM7_IRQn
MartinJohnson 0:404f5a4f1385 8970 #define COMP2_IRQn COMP1_2_3_IRQn
MartinJohnson 0:404f5a4f1385 8971 #define COMP4_6_IRQn COMP4_5_6_IRQn
MartinJohnson 0:404f5a4f1385 8972
MartinJohnson 0:404f5a4f1385 8973 /* Aliases for __IRQHandler */
MartinJohnson 0:404f5a4f1385 8974 #define ADC1_IRQHandler ADC1_2_IRQHandler
MartinJohnson 0:404f5a4f1385 8975 #define CAN1_TX_IRQHandler USB_HP_CAN1_TX_IRQHandler
MartinJohnson 0:404f5a4f1385 8976 #define CAN1_RX0_IRQHandler USB_LP_CAN1_RX0_IRQHandler
MartinJohnson 0:404f5a4f1385 8977 #define TIM6_DAC1_IRQHandler TIM6_DAC_IRQHandler
MartinJohnson 0:404f5a4f1385 8978 #define TIM7_DAC2_IRQHandler TIM7_IRQHandler
MartinJohnson 0:404f5a4f1385 8979 #define COMP2_IRQHandler COMP1_2_3_IRQHandler
MartinJohnson 0:404f5a4f1385 8980 #define COMP4_6_IRQHandler COMP4_5_6_IRQHandler
MartinJohnson 0:404f5a4f1385 8981
MartinJohnson 0:404f5a4f1385 8982 #elif defined (STM32F334x8)
MartinJohnson 0:404f5a4f1385 8983 /* Aliases for __IRQn */
MartinJohnson 0:404f5a4f1385 8984 #define ADC1_IRQn ADC1_2_IRQn
MartinJohnson 0:404f5a4f1385 8985 #define USB_HP_CAN1_TX_IRQn CAN1_TX_IRQn
MartinJohnson 0:404f5a4f1385 8986 #define USB_LP_CAN1_RX0_IRQn CAN1_RX0_IRQn
MartinJohnson 0:404f5a4f1385 8987 #define TIM6_DAC_IRQn TIM6_DAC1_IRQn
MartinJohnson 0:404f5a4f1385 8988 #define TIM7_IRQn TIM7_DAC2_IRQn
MartinJohnson 0:404f5a4f1385 8989 #define COMP1_2_3_IRQn COMP2_IRQn
MartinJohnson 0:404f5a4f1385 8990 #define COMP4_5_6_IRQn COMP4_6_IRQn
MartinJohnson 0:404f5a4f1385 8991
MartinJohnson 0:404f5a4f1385 8992 /* Aliases for __IRQHandler */
MartinJohnson 0:404f5a4f1385 8993 #define ADC1_IRQHandler ADC1_2_IRQHandler
MartinJohnson 0:404f5a4f1385 8994 #define USB_HP_CAN1_TX_IRQHandler CAN1_TX_IRQHandler
MartinJohnson 0:404f5a4f1385 8995 #define USB_LP_CAN1_RX0_IRQHandler CAN1_RX0_IRQHandler
MartinJohnson 0:404f5a4f1385 8996 #define TIM6_DAC_IRQHandler TIM6_DAC1_IRQHandler
MartinJohnson 0:404f5a4f1385 8997 #define TIM7_IRQHandler TIM7_DAC2_IRQHandler
MartinJohnson 0:404f5a4f1385 8998 #define COMP1_2_3_IRQHandler COMP2_IRQHandler
MartinJohnson 0:404f5a4f1385 8999 #define COMP4_5_6_IRQHandler COMP4_6_IRQHandler
MartinJohnson 0:404f5a4f1385 9000
MartinJohnson 0:404f5a4f1385 9001 #elif defined (STM32F302x8)
MartinJohnson 0:404f5a4f1385 9002 /* Aliases for __IRQn */
MartinJohnson 0:404f5a4f1385 9003 #define ADC1_2_IRQn ADC1_IRQn
MartinJohnson 0:404f5a4f1385 9004 #define CAN1_TX_IRQn USB_HP_CAN1_TX_IRQn
MartinJohnson 0:404f5a4f1385 9005 #define CAN1_RX0_IRQn USB_LP_CAN1_RX0_IRQn
MartinJohnson 0:404f5a4f1385 9006 #define TIM6_DAC1_IRQn TIM6_DAC_IRQn
MartinJohnson 0:404f5a4f1385 9007 #define COMP1_2_3_IRQn COMP2_IRQn
MartinJohnson 0:404f5a4f1385 9008 #define COMP4_5_6_IRQn COMP4_6_IRQn
MartinJohnson 0:404f5a4f1385 9009
MartinJohnson 0:404f5a4f1385 9010 /* Aliases for __IRQHandler */
MartinJohnson 0:404f5a4f1385 9011 #define ADC1_2_IRQHandler ADC1_IRQHandler
MartinJohnson 0:404f5a4f1385 9012 #define CAN1_TX_IRQHandler USB_HP_CAN1_TX_IRQHandler
MartinJohnson 0:404f5a4f1385 9013 #define CAN1_RX0_IRQHandler USB_LP_CAN1_RX0_IRQHandler
MartinJohnson 0:404f5a4f1385 9014 #define TIM6_DAC1_IRQHandler TIM6_DAC_IRQHandler
MartinJohnson 0:404f5a4f1385 9015 #define COMP1_2_3_IRQHandler COMP2_IRQHandler
MartinJohnson 0:404f5a4f1385 9016 #define COMP4_5_6_IRQHandler COMP4_6_IRQHandler
MartinJohnson 0:404f5a4f1385 9017
MartinJohnson 0:404f5a4f1385 9018 #elif defined (STM32F303xE)
MartinJohnson 0:404f5a4f1385 9019 /* Aliases for __IRQn */
MartinJohnson 0:404f5a4f1385 9020 #define ADC1_IRQn ADC1_2_IRQn
MartinJohnson 0:404f5a4f1385 9021 #define CAN1_TX_IRQn USB_HP_CAN1_TX_IRQn
MartinJohnson 0:404f5a4f1385 9022 #define CAN1_RX0_IRQn USB_LP_CAN1_RX0_IRQn
MartinJohnson 0:404f5a4f1385 9023 #define TIM6_DAC1_IRQn TIM6_DAC_IRQn
MartinJohnson 0:404f5a4f1385 9024 #define TIM7_DAC2_IRQn TIM7_IRQn
MartinJohnson 0:404f5a4f1385 9025 #define COMP2_IRQn COMP1_2_3_IRQn
MartinJohnson 0:404f5a4f1385 9026 #define COMP4_6_IRQn COMP4_5_6_IRQn
MartinJohnson 0:404f5a4f1385 9027
MartinJohnson 0:404f5a4f1385 9028 /* Aliases for __IRQHandler */
MartinJohnson 0:404f5a4f1385 9029 #define ADC1_IRQHandler ADC1_2_IRQHandler
MartinJohnson 0:404f5a4f1385 9030 #define CAN1_TX_IRQHandler USB_HP_CAN1_TX_IRQHandler
MartinJohnson 0:404f5a4f1385 9031 #define CAN1_RX0_IRQHandler USB_LP_CAN1_RX0_IRQHandler
MartinJohnson 0:404f5a4f1385 9032 #define TIM6_DAC1_IRQHandler TIM6_DAC_IRQHandler
MartinJohnson 0:404f5a4f1385 9033 #define TIM7_DAC2_IRQHandler TIM7_IRQHandler
MartinJohnson 0:404f5a4f1385 9034 #define COMP2_IRQHandler COMP1_2_3_IRQHandler
MartinJohnson 0:404f5a4f1385 9035 #define COMP4_6_IRQHandler COMP4_5_6_IRQHandler
MartinJohnson 0:404f5a4f1385 9036
MartinJohnson 0:404f5a4f1385 9037 #endif /* STM32F303xC */
MartinJohnson 0:404f5a4f1385 9038 /**
MartinJohnson 0:404f5a4f1385 9039 * @}
MartinJohnson 0:404f5a4f1385 9040 */
MartinJohnson 0:404f5a4f1385 9041
MartinJohnson 0:404f5a4f1385 9042 /**
MartinJohnson 0:404f5a4f1385 9043 * @}
MartinJohnson 0:404f5a4f1385 9044 */
MartinJohnson 0:404f5a4f1385 9045
MartinJohnson 0:404f5a4f1385 9046 #ifdef USE_STDPERIPH_DRIVER
MartinJohnson 0:404f5a4f1385 9047 #include "stm32f30x_conf.h"
MartinJohnson 0:404f5a4f1385 9048 #endif /*!< USE_STDPERIPH_DRIVER */
MartinJohnson 0:404f5a4f1385 9049
MartinJohnson 0:404f5a4f1385 9050 /** @addtogroup Exported_macro
MartinJohnson 0:404f5a4f1385 9051 * @{
MartinJohnson 0:404f5a4f1385 9052 */
MartinJohnson 0:404f5a4f1385 9053
MartinJohnson 0:404f5a4f1385 9054 #define SET_BIT(REG, BIT) ((REG) |= (BIT))
MartinJohnson 0:404f5a4f1385 9055
MartinJohnson 0:404f5a4f1385 9056 #define CLEAR_BIT(REG, BIT) ((REG) &= ~(BIT))
MartinJohnson 0:404f5a4f1385 9057
MartinJohnson 0:404f5a4f1385 9058 #define READ_BIT(REG, BIT) ((REG) & (BIT))
MartinJohnson 0:404f5a4f1385 9059
MartinJohnson 0:404f5a4f1385 9060 #define CLEAR_REG(REG) ((REG) = (0x0))
MartinJohnson 0:404f5a4f1385 9061
MartinJohnson 0:404f5a4f1385 9062 #define WRITE_REG(REG, VAL) ((REG) = (VAL))
MartinJohnson 0:404f5a4f1385 9063
MartinJohnson 0:404f5a4f1385 9064 #define READ_REG(REG) ((REG))
MartinJohnson 0:404f5a4f1385 9065
MartinJohnson 0:404f5a4f1385 9066 #define MODIFY_REG(REG, CLEARMASK, SETMASK) WRITE_REG((REG), (((READ_REG(REG)) & (~(CLEARMASK))) | (SETMASK)))
MartinJohnson 0:404f5a4f1385 9067
MartinJohnson 0:404f5a4f1385 9068 /**
MartinJohnson 0:404f5a4f1385 9069 * @}
MartinJohnson 0:404f5a4f1385 9070 */
MartinJohnson 0:404f5a4f1385 9071
MartinJohnson 0:404f5a4f1385 9072 #ifdef __cplusplus
MartinJohnson 0:404f5a4f1385 9073 }
MartinJohnson 0:404f5a4f1385 9074 #endif /* __cplusplus */
MartinJohnson 0:404f5a4f1385 9075
MartinJohnson 0:404f5a4f1385 9076 #endif /* __STM32F30x_H */
MartinJohnson 0:404f5a4f1385 9077
MartinJohnson 0:404f5a4f1385 9078 /**
MartinJohnson 0:404f5a4f1385 9079 * @}
MartinJohnson 0:404f5a4f1385 9080 */
MartinJohnson 0:404f5a4f1385 9081
MartinJohnson 0:404f5a4f1385 9082 /**
MartinJohnson 0:404f5a4f1385 9083 * @}
MartinJohnson 0:404f5a4f1385 9084 */
MartinJohnson 0:404f5a4f1385 9085
MartinJohnson 0:404f5a4f1385 9086 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/