mbed library with additional peripherals for ST F401 board

Fork of mbed-src by mbed official

This mbed LIB has additional peripherals for ST F401 board

  • UART2 : PA_3 rx, PA_2 tx
  • UART3 : PC_7 rx, PC_6 tx
  • I2C2 : PB_3 SDA, PB_10 SCL
  • I2C3 : PB_4 SDA, PA_8 SCL
Committer:
mbed_official
Date:
Wed Feb 26 09:45:12 2014 +0000
Revision:
106:ced8cbb51063
Parent:
80:66393a7b209d
Synchronized with git revision 4222735eff5868389433f0e9271976b39c8115cd

Full URL: https://github.com/mbedmicro/mbed/commit/4222735eff5868389433f0e9271976b39c8115cd/

[NUCLEO_xxx] Update STM32CubeF4 driver V1.0.0 + update license

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 76:aeb1df146756 1 /**
mbed_official 76:aeb1df146756 2 ******************************************************************************
mbed_official 76:aeb1df146756 3 * @file stm32l1xx_tim.h
mbed_official 76:aeb1df146756 4 * @author MCD Application Team
mbed_official 80:66393a7b209d 5 * @version V1.3.0
mbed_official 80:66393a7b209d 6 * @date 31-January-2014
mbed_official 76:aeb1df146756 7 * @brief This file contains all the functions prototypes for the TIM firmware
mbed_official 76:aeb1df146756 8 * library.
mbed_official 76:aeb1df146756 9 ******************************************************************************
mbed_official 76:aeb1df146756 10 * @attention
mbed_official 76:aeb1df146756 11 *
mbed_official 106:ced8cbb51063 12 * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
mbed_official 76:aeb1df146756 13 *
mbed_official 106:ced8cbb51063 14 * Redistribution and use in source and binary forms, with or without modification,
mbed_official 106:ced8cbb51063 15 * are permitted provided that the following conditions are met:
mbed_official 106:ced8cbb51063 16 * 1. Redistributions of source code must retain the above copyright notice,
mbed_official 106:ced8cbb51063 17 * this list of conditions and the following disclaimer.
mbed_official 106:ced8cbb51063 18 * 2. Redistributions in binary form must reproduce the above copyright notice,
mbed_official 106:ced8cbb51063 19 * this list of conditions and the following disclaimer in the documentation
mbed_official 106:ced8cbb51063 20 * and/or other materials provided with the distribution.
mbed_official 106:ced8cbb51063 21 * 3. Neither the name of STMicroelectronics nor the names of its contributors
mbed_official 106:ced8cbb51063 22 * may be used to endorse or promote products derived from this software
mbed_official 106:ced8cbb51063 23 * without specific prior written permission.
mbed_official 76:aeb1df146756 24 *
mbed_official 106:ced8cbb51063 25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
mbed_official 106:ced8cbb51063 26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
mbed_official 106:ced8cbb51063 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
mbed_official 106:ced8cbb51063 28 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
mbed_official 106:ced8cbb51063 29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
mbed_official 106:ced8cbb51063 30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
mbed_official 106:ced8cbb51063 31 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
mbed_official 106:ced8cbb51063 32 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
mbed_official 106:ced8cbb51063 33 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
mbed_official 106:ced8cbb51063 34 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
mbed_official 76:aeb1df146756 35 *
mbed_official 76:aeb1df146756 36 ******************************************************************************
mbed_official 76:aeb1df146756 37 */
mbed_official 76:aeb1df146756 38
mbed_official 76:aeb1df146756 39 /* Define to prevent recursive inclusion -------------------------------------*/
mbed_official 76:aeb1df146756 40 #ifndef __STM32L1xx_TIM_H
mbed_official 76:aeb1df146756 41 #define __STM32L1xx_TIM_H
mbed_official 76:aeb1df146756 42
mbed_official 76:aeb1df146756 43 #ifdef __cplusplus
mbed_official 76:aeb1df146756 44 extern "C" {
mbed_official 76:aeb1df146756 45 #endif
mbed_official 76:aeb1df146756 46
mbed_official 76:aeb1df146756 47 /* Includes ------------------------------------------------------------------*/
mbed_official 76:aeb1df146756 48 #include "stm32l1xx.h"
mbed_official 76:aeb1df146756 49
mbed_official 76:aeb1df146756 50 /** @addtogroup STM32L1xx_StdPeriph_Driver
mbed_official 76:aeb1df146756 51 * @{
mbed_official 76:aeb1df146756 52 */
mbed_official 76:aeb1df146756 53
mbed_official 76:aeb1df146756 54 /** @addtogroup TIM
mbed_official 76:aeb1df146756 55 * @{
mbed_official 76:aeb1df146756 56 */
mbed_official 76:aeb1df146756 57
mbed_official 76:aeb1df146756 58 /* Exported types ------------------------------------------------------------*/
mbed_official 76:aeb1df146756 59
mbed_official 76:aeb1df146756 60 /**
mbed_official 76:aeb1df146756 61 * @brief TIM Time Base Init structure definition
mbed_official 76:aeb1df146756 62 * @note This structure is used with all TIMx except for TIM6 and TIM7.
mbed_official 76:aeb1df146756 63 */
mbed_official 76:aeb1df146756 64
mbed_official 76:aeb1df146756 65 typedef struct
mbed_official 76:aeb1df146756 66 {
mbed_official 76:aeb1df146756 67 uint16_t TIM_Prescaler; /*!< Specifies the prescaler value used to divide the TIM clock.
mbed_official 76:aeb1df146756 68 This parameter can be a number between 0x0000 and 0xFFFF */
mbed_official 76:aeb1df146756 69
mbed_official 76:aeb1df146756 70 uint16_t TIM_CounterMode; /*!< Specifies the counter mode.
mbed_official 76:aeb1df146756 71 This parameter can be a value of @ref TIM_Counter_Mode */
mbed_official 76:aeb1df146756 72
mbed_official 76:aeb1df146756 73 uint32_t TIM_Period; /*!< Specifies the period value to be loaded into the active
mbed_official 76:aeb1df146756 74 Auto-Reload Register at the next update event.
mbed_official 76:aeb1df146756 75 This parameter must be a number between 0x0000 and 0xFFFF. */
mbed_official 76:aeb1df146756 76
mbed_official 76:aeb1df146756 77 uint16_t TIM_ClockDivision; /*!< Specifies the clock division.
mbed_official 76:aeb1df146756 78 This parameter can be a value of @ref TIM_Clock_Division_CKD */
mbed_official 76:aeb1df146756 79
mbed_official 76:aeb1df146756 80 } TIM_TimeBaseInitTypeDef;
mbed_official 76:aeb1df146756 81
mbed_official 76:aeb1df146756 82 /**
mbed_official 76:aeb1df146756 83 * @brief TIM Output Compare Init structure definition
mbed_official 76:aeb1df146756 84 */
mbed_official 76:aeb1df146756 85
mbed_official 76:aeb1df146756 86 typedef struct
mbed_official 76:aeb1df146756 87 {
mbed_official 76:aeb1df146756 88 uint16_t TIM_OCMode; /*!< Specifies the TIM mode.
mbed_official 76:aeb1df146756 89 This parameter can be a value of @ref TIM_Output_Compare_and_PWM_modes */
mbed_official 76:aeb1df146756 90
mbed_official 76:aeb1df146756 91 uint16_t TIM_OutputState; /*!< Specifies the TIM Output Compare state.
mbed_official 76:aeb1df146756 92 This parameter can be a value of @ref TIM_Output_Compare_state */
mbed_official 76:aeb1df146756 93
mbed_official 76:aeb1df146756 94 uint32_t TIM_Pulse; /*!< Specifies the pulse value to be loaded into the Capture Compare Register.
mbed_official 76:aeb1df146756 95 This parameter can be a number between 0x0000 and 0xFFFF */
mbed_official 76:aeb1df146756 96
mbed_official 76:aeb1df146756 97 uint16_t TIM_OCPolarity; /*!< Specifies the output polarity.
mbed_official 76:aeb1df146756 98 This parameter can be a value of @ref TIM_Output_Compare_Polarity */
mbed_official 76:aeb1df146756 99
mbed_official 76:aeb1df146756 100 } TIM_OCInitTypeDef;
mbed_official 76:aeb1df146756 101
mbed_official 76:aeb1df146756 102 /**
mbed_official 76:aeb1df146756 103 * @brief TIM Input Capture Init structure definition
mbed_official 76:aeb1df146756 104 */
mbed_official 76:aeb1df146756 105
mbed_official 76:aeb1df146756 106 typedef struct
mbed_official 76:aeb1df146756 107 {
mbed_official 76:aeb1df146756 108
mbed_official 76:aeb1df146756 109 uint16_t TIM_Channel; /*!< Specifies the TIM channel.
mbed_official 76:aeb1df146756 110 This parameter can be a value of @ref TIM_Channel */
mbed_official 76:aeb1df146756 111
mbed_official 76:aeb1df146756 112 uint16_t TIM_ICPolarity; /*!< Specifies the active edge of the input signal.
mbed_official 76:aeb1df146756 113 This parameter can be a value of @ref TIM_Input_Capture_Polarity */
mbed_official 76:aeb1df146756 114
mbed_official 76:aeb1df146756 115 uint16_t TIM_ICSelection; /*!< Specifies the input.
mbed_official 76:aeb1df146756 116 This parameter can be a value of @ref TIM_Input_Capture_Selection */
mbed_official 76:aeb1df146756 117
mbed_official 76:aeb1df146756 118 uint16_t TIM_ICPrescaler; /*!< Specifies the Input Capture Prescaler.
mbed_official 76:aeb1df146756 119 This parameter can be a value of @ref TIM_Input_Capture_Prescaler */
mbed_official 76:aeb1df146756 120
mbed_official 76:aeb1df146756 121 uint16_t TIM_ICFilter; /*!< Specifies the input capture filter.
mbed_official 76:aeb1df146756 122 This parameter can be a number between 0x0 and 0xF */
mbed_official 76:aeb1df146756 123 } TIM_ICInitTypeDef;
mbed_official 76:aeb1df146756 124
mbed_official 76:aeb1df146756 125 /* Exported constants --------------------------------------------------------*/
mbed_official 76:aeb1df146756 126
mbed_official 76:aeb1df146756 127
mbed_official 76:aeb1df146756 128 /** @defgroup TIM_Exported_constants
mbed_official 76:aeb1df146756 129 * @{
mbed_official 76:aeb1df146756 130 */
mbed_official 76:aeb1df146756 131
mbed_official 76:aeb1df146756 132 #define IS_TIM_ALL_PERIPH(PERIPH) (((PERIPH) == TIM2) || \
mbed_official 76:aeb1df146756 133 ((PERIPH) == TIM3) || \
mbed_official 76:aeb1df146756 134 ((PERIPH) == TIM4) || \
mbed_official 76:aeb1df146756 135 ((PERIPH) == TIM5) || \
mbed_official 76:aeb1df146756 136 ((PERIPH) == TIM6) || \
mbed_official 76:aeb1df146756 137 ((PERIPH) == TIM7) || \
mbed_official 76:aeb1df146756 138 ((PERIPH) == TIM9) || \
mbed_official 76:aeb1df146756 139 ((PERIPH) == TIM10) || \
mbed_official 76:aeb1df146756 140 ((PERIPH) == TIM11))
mbed_official 76:aeb1df146756 141
mbed_official 76:aeb1df146756 142 /* LIST1: TIM2, TIM3, TIM4, TIM5, TIM9, TIM10 and TIM11 */
mbed_official 76:aeb1df146756 143 #define IS_TIM_LIST1_PERIPH(PERIPH) (((PERIPH) == TIM2) || \
mbed_official 76:aeb1df146756 144 ((PERIPH) == TIM3) || \
mbed_official 76:aeb1df146756 145 ((PERIPH) == TIM4) || \
mbed_official 76:aeb1df146756 146 ((PERIPH) == TIM5) || \
mbed_official 76:aeb1df146756 147 ((PERIPH) == TIM9) || \
mbed_official 76:aeb1df146756 148 ((PERIPH) == TIM10) || \
mbed_official 76:aeb1df146756 149 ((PERIPH) == TIM11))
mbed_official 76:aeb1df146756 150
mbed_official 76:aeb1df146756 151 /* LIST3: TIM2, TIM3, TIM4 and TIM5 */
mbed_official 76:aeb1df146756 152 #define IS_TIM_LIST3_PERIPH(PERIPH) (((PERIPH) == TIM2) || \
mbed_official 76:aeb1df146756 153 ((PERIPH) == TIM3) || \
mbed_official 76:aeb1df146756 154 ((PERIPH) == TIM4) || \
mbed_official 76:aeb1df146756 155 ((PERIPH) == TIM5))
mbed_official 76:aeb1df146756 156
mbed_official 76:aeb1df146756 157 /* LIST2: TIM2, TIM3, TIM4, TIM5 and TIM9 */
mbed_official 76:aeb1df146756 158 #define IS_TIM_LIST2_PERIPH(PERIPH) (((PERIPH) == TIM2) || \
mbed_official 76:aeb1df146756 159 ((PERIPH) == TIM3) || \
mbed_official 76:aeb1df146756 160 ((PERIPH) == TIM4) || \
mbed_official 76:aeb1df146756 161 ((PERIPH) == TIM5) || \
mbed_official 76:aeb1df146756 162 ((PERIPH) == TIM9))
mbed_official 76:aeb1df146756 163
mbed_official 76:aeb1df146756 164 /* LIST5: TIM2, TIM3, TIM4, TIM5, TIM6, TIM7 and TIM9 */
mbed_official 76:aeb1df146756 165 #define IS_TIM_LIST5_PERIPH(PERIPH) (((PERIPH) == TIM2) || \
mbed_official 76:aeb1df146756 166 ((PERIPH) == TIM3) || \
mbed_official 76:aeb1df146756 167 ((PERIPH) == TIM4) || \
mbed_official 76:aeb1df146756 168 ((PERIPH) == TIM5) ||\
mbed_official 76:aeb1df146756 169 ((PERIPH) == TIM6) || \
mbed_official 76:aeb1df146756 170 ((PERIPH) == TIM7) ||\
mbed_official 76:aeb1df146756 171 ((PERIPH) == TIM9))
mbed_official 76:aeb1df146756 172
mbed_official 76:aeb1df146756 173 /* LIST4: TIM2, TIM3, TIM4, TIM5, TIM6 and TIM7 */
mbed_official 76:aeb1df146756 174 #define IS_TIM_LIST4_PERIPH(PERIPH) (((PERIPH) == TIM2) || \
mbed_official 76:aeb1df146756 175 ((PERIPH) == TIM3) || \
mbed_official 76:aeb1df146756 176 ((PERIPH) == TIM4) || \
mbed_official 76:aeb1df146756 177 ((PERIPH) == TIM5) ||\
mbed_official 76:aeb1df146756 178 ((PERIPH) == TIM6) || \
mbed_official 76:aeb1df146756 179 ((PERIPH) == TIM7))
mbed_official 76:aeb1df146756 180
mbed_official 76:aeb1df146756 181 /* LIST6: TIM2, TIM3, TIM9, TIM10 and TIM11 */
mbed_official 76:aeb1df146756 182 #define IS_TIM_LIST6_PERIPH(PERIPH) (((PERIPH) == TIM2) || \
mbed_official 76:aeb1df146756 183 ((PERIPH) == TIM3) || \
mbed_official 76:aeb1df146756 184 ((PERIPH) == TIM9) || \
mbed_official 76:aeb1df146756 185 ((PERIPH) == TIM10) || \
mbed_official 76:aeb1df146756 186 ((PERIPH) == TIM11))
mbed_official 76:aeb1df146756 187
mbed_official 80:66393a7b209d 188 /* LIST3: TIM2, TIM3, TIM4, TIM5 and TIM9 */
mbed_official 80:66393a7b209d 189 #define IS_TIM_LIST7_PERIPH(PERIPH) (((PERIPH) == TIM2) || \
mbed_official 80:66393a7b209d 190 ((PERIPH) == TIM3) || \
mbed_official 80:66393a7b209d 191 ((PERIPH) == TIM4) || \
mbed_official 80:66393a7b209d 192 ((PERIPH) == TIM5) || \
mbed_official 80:66393a7b209d 193 ((PERIPH) == TIM9))
mbed_official 76:aeb1df146756 194
mbed_official 76:aeb1df146756 195 /** @defgroup TIM_Output_Compare_and_PWM_modes
mbed_official 76:aeb1df146756 196 * @{
mbed_official 76:aeb1df146756 197 */
mbed_official 76:aeb1df146756 198
mbed_official 76:aeb1df146756 199 #define TIM_OCMode_Timing ((uint16_t)0x0000)
mbed_official 76:aeb1df146756 200 #define TIM_OCMode_Active ((uint16_t)0x0010)
mbed_official 76:aeb1df146756 201 #define TIM_OCMode_Inactive ((uint16_t)0x0020)
mbed_official 76:aeb1df146756 202 #define TIM_OCMode_Toggle ((uint16_t)0x0030)
mbed_official 76:aeb1df146756 203 #define TIM_OCMode_PWM1 ((uint16_t)0x0060)
mbed_official 76:aeb1df146756 204 #define TIM_OCMode_PWM2 ((uint16_t)0x0070)
mbed_official 76:aeb1df146756 205 #define IS_TIM_OC_MODE(MODE) (((MODE) == TIM_OCMode_Timing) || \
mbed_official 76:aeb1df146756 206 ((MODE) == TIM_OCMode_Active) || \
mbed_official 76:aeb1df146756 207 ((MODE) == TIM_OCMode_Inactive) || \
mbed_official 76:aeb1df146756 208 ((MODE) == TIM_OCMode_Toggle)|| \
mbed_official 76:aeb1df146756 209 ((MODE) == TIM_OCMode_PWM1) || \
mbed_official 76:aeb1df146756 210 ((MODE) == TIM_OCMode_PWM2))
mbed_official 76:aeb1df146756 211 #define IS_TIM_OCM(MODE) (((MODE) == TIM_OCMode_Timing) || \
mbed_official 76:aeb1df146756 212 ((MODE) == TIM_OCMode_Active) || \
mbed_official 76:aeb1df146756 213 ((MODE) == TIM_OCMode_Inactive) || \
mbed_official 76:aeb1df146756 214 ((MODE) == TIM_OCMode_Toggle)|| \
mbed_official 76:aeb1df146756 215 ((MODE) == TIM_OCMode_PWM1) || \
mbed_official 76:aeb1df146756 216 ((MODE) == TIM_OCMode_PWM2) || \
mbed_official 76:aeb1df146756 217 ((MODE) == TIM_ForcedAction_Active) || \
mbed_official 76:aeb1df146756 218 ((MODE) == TIM_ForcedAction_InActive))
mbed_official 76:aeb1df146756 219 /**
mbed_official 76:aeb1df146756 220 * @}
mbed_official 76:aeb1df146756 221 */
mbed_official 76:aeb1df146756 222
mbed_official 76:aeb1df146756 223 /** @defgroup TIM_One_Pulse_Mode
mbed_official 76:aeb1df146756 224 * @{
mbed_official 76:aeb1df146756 225 */
mbed_official 76:aeb1df146756 226
mbed_official 76:aeb1df146756 227 #define TIM_OPMode_Single ((uint16_t)0x0008)
mbed_official 76:aeb1df146756 228 #define TIM_OPMode_Repetitive ((uint16_t)0x0000)
mbed_official 76:aeb1df146756 229 #define IS_TIM_OPM_MODE(MODE) (((MODE) == TIM_OPMode_Single) || \
mbed_official 76:aeb1df146756 230 ((MODE) == TIM_OPMode_Repetitive))
mbed_official 76:aeb1df146756 231 /**
mbed_official 76:aeb1df146756 232 * @}
mbed_official 76:aeb1df146756 233 */
mbed_official 76:aeb1df146756 234
mbed_official 76:aeb1df146756 235 /** @defgroup TIM_Channel
mbed_official 76:aeb1df146756 236 * @{
mbed_official 76:aeb1df146756 237 */
mbed_official 76:aeb1df146756 238
mbed_official 76:aeb1df146756 239 #define TIM_Channel_1 ((uint16_t)0x0000)
mbed_official 76:aeb1df146756 240 #define TIM_Channel_2 ((uint16_t)0x0004)
mbed_official 76:aeb1df146756 241 #define TIM_Channel_3 ((uint16_t)0x0008)
mbed_official 76:aeb1df146756 242 #define TIM_Channel_4 ((uint16_t)0x000C)
mbed_official 76:aeb1df146756 243
mbed_official 76:aeb1df146756 244 #define IS_TIM_CHANNEL(CHANNEL) (((CHANNEL) == TIM_Channel_1) || \
mbed_official 76:aeb1df146756 245 ((CHANNEL) == TIM_Channel_2) || \
mbed_official 76:aeb1df146756 246 ((CHANNEL) == TIM_Channel_3) || \
mbed_official 76:aeb1df146756 247 ((CHANNEL) == TIM_Channel_4))
mbed_official 76:aeb1df146756 248
mbed_official 76:aeb1df146756 249 #define IS_TIM_PWMI_CHANNEL(CHANNEL) (((CHANNEL) == TIM_Channel_1) || \
mbed_official 76:aeb1df146756 250 ((CHANNEL) == TIM_Channel_2))
mbed_official 76:aeb1df146756 251
mbed_official 76:aeb1df146756 252 /**
mbed_official 76:aeb1df146756 253 * @}
mbed_official 76:aeb1df146756 254 */
mbed_official 76:aeb1df146756 255
mbed_official 76:aeb1df146756 256 /** @defgroup TIM_Clock_Division_CKD
mbed_official 76:aeb1df146756 257 * @{
mbed_official 76:aeb1df146756 258 */
mbed_official 76:aeb1df146756 259
mbed_official 76:aeb1df146756 260 #define TIM_CKD_DIV1 ((uint16_t)0x0000)
mbed_official 76:aeb1df146756 261 #define TIM_CKD_DIV2 ((uint16_t)0x0100)
mbed_official 76:aeb1df146756 262 #define TIM_CKD_DIV4 ((uint16_t)0x0200)
mbed_official 76:aeb1df146756 263 #define IS_TIM_CKD_DIV(DIV) (((DIV) == TIM_CKD_DIV1) || \
mbed_official 76:aeb1df146756 264 ((DIV) == TIM_CKD_DIV2) || \
mbed_official 76:aeb1df146756 265 ((DIV) == TIM_CKD_DIV4))
mbed_official 76:aeb1df146756 266 /**
mbed_official 76:aeb1df146756 267 * @}
mbed_official 76:aeb1df146756 268 */
mbed_official 76:aeb1df146756 269
mbed_official 76:aeb1df146756 270 /** @defgroup TIM_Counter_Mode
mbed_official 76:aeb1df146756 271 * @{
mbed_official 76:aeb1df146756 272 */
mbed_official 76:aeb1df146756 273
mbed_official 76:aeb1df146756 274 #define TIM_CounterMode_Up ((uint16_t)0x0000)
mbed_official 76:aeb1df146756 275 #define TIM_CounterMode_Down ((uint16_t)0x0010)
mbed_official 76:aeb1df146756 276 #define TIM_CounterMode_CenterAligned1 ((uint16_t)0x0020)
mbed_official 76:aeb1df146756 277 #define TIM_CounterMode_CenterAligned2 ((uint16_t)0x0040)
mbed_official 76:aeb1df146756 278 #define TIM_CounterMode_CenterAligned3 ((uint16_t)0x0060)
mbed_official 76:aeb1df146756 279 #define IS_TIM_COUNTER_MODE(MODE) (((MODE) == TIM_CounterMode_Up) || \
mbed_official 76:aeb1df146756 280 ((MODE) == TIM_CounterMode_Down) || \
mbed_official 76:aeb1df146756 281 ((MODE) == TIM_CounterMode_CenterAligned1) || \
mbed_official 76:aeb1df146756 282 ((MODE) == TIM_CounterMode_CenterAligned2) || \
mbed_official 76:aeb1df146756 283 ((MODE) == TIM_CounterMode_CenterAligned3))
mbed_official 76:aeb1df146756 284 /**
mbed_official 76:aeb1df146756 285 * @}
mbed_official 76:aeb1df146756 286 */
mbed_official 76:aeb1df146756 287
mbed_official 76:aeb1df146756 288 /** @defgroup TIM_Output_Compare_Polarity
mbed_official 76:aeb1df146756 289 * @{
mbed_official 76:aeb1df146756 290 */
mbed_official 76:aeb1df146756 291
mbed_official 76:aeb1df146756 292 #define TIM_OCPolarity_High ((uint16_t)0x0000)
mbed_official 76:aeb1df146756 293 #define TIM_OCPolarity_Low ((uint16_t)0x0002)
mbed_official 76:aeb1df146756 294 #define IS_TIM_OC_POLARITY(POLARITY) (((POLARITY) == TIM_OCPolarity_High) || \
mbed_official 76:aeb1df146756 295 ((POLARITY) == TIM_OCPolarity_Low))
mbed_official 76:aeb1df146756 296 /**
mbed_official 76:aeb1df146756 297 * @}
mbed_official 76:aeb1df146756 298 */
mbed_official 76:aeb1df146756 299
mbed_official 76:aeb1df146756 300
mbed_official 76:aeb1df146756 301 /** @defgroup TIM_Output_Compare_state
mbed_official 76:aeb1df146756 302 * @{
mbed_official 76:aeb1df146756 303 */
mbed_official 76:aeb1df146756 304
mbed_official 76:aeb1df146756 305 #define TIM_OutputState_Disable ((uint16_t)0x0000)
mbed_official 76:aeb1df146756 306 #define TIM_OutputState_Enable ((uint16_t)0x0001)
mbed_official 76:aeb1df146756 307 #define IS_TIM_OUTPUT_STATE(STATE) (((STATE) == TIM_OutputState_Disable) || \
mbed_official 76:aeb1df146756 308 ((STATE) == TIM_OutputState_Enable))
mbed_official 76:aeb1df146756 309 /**
mbed_official 76:aeb1df146756 310 * @}
mbed_official 76:aeb1df146756 311 */
mbed_official 76:aeb1df146756 312
mbed_official 76:aeb1df146756 313
mbed_official 76:aeb1df146756 314 /** @defgroup TIM_Capture_Compare_state
mbed_official 76:aeb1df146756 315 * @{
mbed_official 76:aeb1df146756 316 */
mbed_official 76:aeb1df146756 317
mbed_official 76:aeb1df146756 318 #define TIM_CCx_Enable ((uint16_t)0x0001)
mbed_official 76:aeb1df146756 319 #define TIM_CCx_Disable ((uint16_t)0x0000)
mbed_official 76:aeb1df146756 320 #define IS_TIM_CCX(CCX) (((CCX) == TIM_CCx_Enable) || \
mbed_official 76:aeb1df146756 321 ((CCX) == TIM_CCx_Disable))
mbed_official 76:aeb1df146756 322 /**
mbed_official 76:aeb1df146756 323 * @}
mbed_official 76:aeb1df146756 324 */
mbed_official 76:aeb1df146756 325
mbed_official 76:aeb1df146756 326 /** @defgroup TIM_Input_Capture_Polarity
mbed_official 76:aeb1df146756 327 * @{
mbed_official 76:aeb1df146756 328 */
mbed_official 76:aeb1df146756 329
mbed_official 76:aeb1df146756 330 #define TIM_ICPolarity_Rising ((uint16_t)0x0000)
mbed_official 76:aeb1df146756 331 #define TIM_ICPolarity_Falling ((uint16_t)0x0002)
mbed_official 76:aeb1df146756 332 #define TIM_ICPolarity_BothEdge ((uint16_t)0x000A)
mbed_official 76:aeb1df146756 333 #define IS_TIM_IC_POLARITY(POLARITY) (((POLARITY) == TIM_ICPolarity_Rising) || \
mbed_official 76:aeb1df146756 334 ((POLARITY) == TIM_ICPolarity_Falling)|| \
mbed_official 76:aeb1df146756 335 ((POLARITY) == TIM_ICPolarity_BothEdge))
mbed_official 76:aeb1df146756 336 /**
mbed_official 76:aeb1df146756 337 * @}
mbed_official 76:aeb1df146756 338 */
mbed_official 76:aeb1df146756 339
mbed_official 76:aeb1df146756 340 /** @defgroup TIM_Input_Capture_Selection
mbed_official 76:aeb1df146756 341 * @{
mbed_official 76:aeb1df146756 342 */
mbed_official 76:aeb1df146756 343
mbed_official 76:aeb1df146756 344 #define TIM_ICSelection_DirectTI ((uint16_t)0x0001) /*!< TIM Input 1, 2, 3 or 4 is selected to be
mbed_official 76:aeb1df146756 345 connected to IC1, IC2, IC3 or IC4, respectively */
mbed_official 76:aeb1df146756 346 #define TIM_ICSelection_IndirectTI ((uint16_t)0x0002) /*!< TIM Input 1, 2, 3 or 4 is selected to be
mbed_official 76:aeb1df146756 347 connected to IC2, IC1, IC4 or IC3, respectively. */
mbed_official 76:aeb1df146756 348 #define TIM_ICSelection_TRC ((uint16_t)0x0003) /*!< TIM Input 1, 2, 3 or 4 is selected to be connected to TRC. */
mbed_official 76:aeb1df146756 349 #define IS_TIM_IC_SELECTION(SELECTION) (((SELECTION) == TIM_ICSelection_DirectTI) || \
mbed_official 76:aeb1df146756 350 ((SELECTION) == TIM_ICSelection_IndirectTI) || \
mbed_official 76:aeb1df146756 351 ((SELECTION) == TIM_ICSelection_TRC))
mbed_official 76:aeb1df146756 352 /**
mbed_official 76:aeb1df146756 353 * @}
mbed_official 76:aeb1df146756 354 */
mbed_official 76:aeb1df146756 355
mbed_official 76:aeb1df146756 356 /** @defgroup TIM_Input_Capture_Prescaler
mbed_official 76:aeb1df146756 357 * @{
mbed_official 76:aeb1df146756 358 */
mbed_official 76:aeb1df146756 359
mbed_official 76:aeb1df146756 360 #define TIM_ICPSC_DIV1 ((uint16_t)0x0000) /*!< Capture performed each time an edge is detected on the capture input. */
mbed_official 76:aeb1df146756 361 #define TIM_ICPSC_DIV2 ((uint16_t)0x0004) /*!< Capture performed once every 2 events. */
mbed_official 76:aeb1df146756 362 #define TIM_ICPSC_DIV4 ((uint16_t)0x0008) /*!< Capture performed once every 4 events. */
mbed_official 76:aeb1df146756 363 #define TIM_ICPSC_DIV8 ((uint16_t)0x000C) /*!< Capture performed once every 8 events. */
mbed_official 76:aeb1df146756 364 #define IS_TIM_IC_PRESCALER(PRESCALER) (((PRESCALER) == TIM_ICPSC_DIV1) || \
mbed_official 76:aeb1df146756 365 ((PRESCALER) == TIM_ICPSC_DIV2) || \
mbed_official 76:aeb1df146756 366 ((PRESCALER) == TIM_ICPSC_DIV4) || \
mbed_official 76:aeb1df146756 367 ((PRESCALER) == TIM_ICPSC_DIV8))
mbed_official 76:aeb1df146756 368 /**
mbed_official 76:aeb1df146756 369 * @}
mbed_official 76:aeb1df146756 370 */
mbed_official 76:aeb1df146756 371
mbed_official 76:aeb1df146756 372 /** @defgroup TIM_interrupt_sources
mbed_official 76:aeb1df146756 373 * @{
mbed_official 76:aeb1df146756 374 */
mbed_official 76:aeb1df146756 375
mbed_official 76:aeb1df146756 376 #define TIM_IT_Update ((uint16_t)0x0001)
mbed_official 76:aeb1df146756 377 #define TIM_IT_CC1 ((uint16_t)0x0002)
mbed_official 76:aeb1df146756 378 #define TIM_IT_CC2 ((uint16_t)0x0004)
mbed_official 76:aeb1df146756 379 #define TIM_IT_CC3 ((uint16_t)0x0008)
mbed_official 76:aeb1df146756 380 #define TIM_IT_CC4 ((uint16_t)0x0010)
mbed_official 76:aeb1df146756 381 #define TIM_IT_Trigger ((uint16_t)0x0040)
mbed_official 76:aeb1df146756 382 #define IS_TIM_IT(IT) ((((IT) & (uint16_t)0xFFA0) == 0x0000) && ((IT) != 0x0000))
mbed_official 76:aeb1df146756 383
mbed_official 76:aeb1df146756 384 #define IS_TIM_GET_IT(IT) (((IT) == TIM_IT_Update) || \
mbed_official 76:aeb1df146756 385 ((IT) == TIM_IT_CC1) || \
mbed_official 76:aeb1df146756 386 ((IT) == TIM_IT_CC2) || \
mbed_official 76:aeb1df146756 387 ((IT) == TIM_IT_CC3) || \
mbed_official 76:aeb1df146756 388 ((IT) == TIM_IT_CC4) || \
mbed_official 76:aeb1df146756 389 ((IT) == TIM_IT_Trigger))
mbed_official 76:aeb1df146756 390 /**
mbed_official 76:aeb1df146756 391 * @}
mbed_official 76:aeb1df146756 392 */
mbed_official 76:aeb1df146756 393
mbed_official 76:aeb1df146756 394 /** @defgroup TIM_DMA_Base_address
mbed_official 76:aeb1df146756 395 * @{
mbed_official 76:aeb1df146756 396 */
mbed_official 76:aeb1df146756 397
mbed_official 76:aeb1df146756 398 #define TIM_DMABase_CR1 ((uint16_t)0x0000)
mbed_official 76:aeb1df146756 399 #define TIM_DMABase_CR2 ((uint16_t)0x0001)
mbed_official 76:aeb1df146756 400 #define TIM_DMABase_SMCR ((uint16_t)0x0002)
mbed_official 76:aeb1df146756 401 #define TIM_DMABase_DIER ((uint16_t)0x0003)
mbed_official 76:aeb1df146756 402 #define TIM_DMABase_SR ((uint16_t)0x0004)
mbed_official 76:aeb1df146756 403 #define TIM_DMABase_EGR ((uint16_t)0x0005)
mbed_official 76:aeb1df146756 404 #define TIM_DMABase_CCMR1 ((uint16_t)0x0006)
mbed_official 76:aeb1df146756 405 #define TIM_DMABase_CCMR2 ((uint16_t)0x0007)
mbed_official 76:aeb1df146756 406 #define TIM_DMABase_CCER ((uint16_t)0x0008)
mbed_official 76:aeb1df146756 407 #define TIM_DMABase_CNT ((uint16_t)0x0009)
mbed_official 76:aeb1df146756 408 #define TIM_DMABase_PSC ((uint16_t)0x000A)
mbed_official 76:aeb1df146756 409 #define TIM_DMABase_ARR ((uint16_t)0x000B)
mbed_official 76:aeb1df146756 410 #define TIM_DMABase_CCR1 ((uint16_t)0x000D)
mbed_official 76:aeb1df146756 411 #define TIM_DMABase_CCR2 ((uint16_t)0x000E)
mbed_official 76:aeb1df146756 412 #define TIM_DMABase_CCR3 ((uint16_t)0x000F)
mbed_official 76:aeb1df146756 413 #define TIM_DMABase_CCR4 ((uint16_t)0x0010)
mbed_official 76:aeb1df146756 414 #define TIM_DMABase_DCR ((uint16_t)0x0012)
mbed_official 76:aeb1df146756 415 #define TIM_DMABase_OR ((uint16_t)0x0013)
mbed_official 76:aeb1df146756 416 #define IS_TIM_DMA_BASE(BASE) (((BASE) == TIM_DMABase_CR1) || \
mbed_official 76:aeb1df146756 417 ((BASE) == TIM_DMABase_CR2) || \
mbed_official 76:aeb1df146756 418 ((BASE) == TIM_DMABase_SMCR) || \
mbed_official 76:aeb1df146756 419 ((BASE) == TIM_DMABase_DIER) || \
mbed_official 76:aeb1df146756 420 ((BASE) == TIM_DMABase_SR) || \
mbed_official 76:aeb1df146756 421 ((BASE) == TIM_DMABase_EGR) || \
mbed_official 76:aeb1df146756 422 ((BASE) == TIM_DMABase_CCMR1) || \
mbed_official 76:aeb1df146756 423 ((BASE) == TIM_DMABase_CCMR2) || \
mbed_official 76:aeb1df146756 424 ((BASE) == TIM_DMABase_CCER) || \
mbed_official 76:aeb1df146756 425 ((BASE) == TIM_DMABase_CNT) || \
mbed_official 76:aeb1df146756 426 ((BASE) == TIM_DMABase_PSC) || \
mbed_official 76:aeb1df146756 427 ((BASE) == TIM_DMABase_ARR) || \
mbed_official 76:aeb1df146756 428 ((BASE) == TIM_DMABase_CCR1) || \
mbed_official 76:aeb1df146756 429 ((BASE) == TIM_DMABase_CCR2) || \
mbed_official 76:aeb1df146756 430 ((BASE) == TIM_DMABase_CCR3) || \
mbed_official 76:aeb1df146756 431 ((BASE) == TIM_DMABase_CCR4) || \
mbed_official 76:aeb1df146756 432 ((BASE) == TIM_DMABase_DCR) || \
mbed_official 76:aeb1df146756 433 ((BASE) == TIM_DMABase_OR))
mbed_official 76:aeb1df146756 434 /**
mbed_official 76:aeb1df146756 435 * @}
mbed_official 76:aeb1df146756 436 */
mbed_official 76:aeb1df146756 437
mbed_official 76:aeb1df146756 438 /** @defgroup TIM_DMA_Burst_Length
mbed_official 76:aeb1df146756 439 * @{
mbed_official 76:aeb1df146756 440 */
mbed_official 76:aeb1df146756 441
mbed_official 76:aeb1df146756 442 #define TIM_DMABurstLength_1Transfer ((uint16_t)0x0000)
mbed_official 76:aeb1df146756 443 #define TIM_DMABurstLength_2Transfers ((uint16_t)0x0100)
mbed_official 76:aeb1df146756 444 #define TIM_DMABurstLength_3Transfers ((uint16_t)0x0200)
mbed_official 76:aeb1df146756 445 #define TIM_DMABurstLength_4Transfers ((uint16_t)0x0300)
mbed_official 76:aeb1df146756 446 #define TIM_DMABurstLength_5Transfers ((uint16_t)0x0400)
mbed_official 76:aeb1df146756 447 #define TIM_DMABurstLength_6Transfers ((uint16_t)0x0500)
mbed_official 76:aeb1df146756 448 #define TIM_DMABurstLength_7Transfers ((uint16_t)0x0600)
mbed_official 76:aeb1df146756 449 #define TIM_DMABurstLength_8Transfers ((uint16_t)0x0700)
mbed_official 76:aeb1df146756 450 #define TIM_DMABurstLength_9Transfers ((uint16_t)0x0800)
mbed_official 76:aeb1df146756 451 #define TIM_DMABurstLength_10Transfers ((uint16_t)0x0900)
mbed_official 76:aeb1df146756 452 #define TIM_DMABurstLength_11Transfers ((uint16_t)0x0A00)
mbed_official 76:aeb1df146756 453 #define TIM_DMABurstLength_12Transfers ((uint16_t)0x0B00)
mbed_official 76:aeb1df146756 454 #define TIM_DMABurstLength_13Transfers ((uint16_t)0x0C00)
mbed_official 76:aeb1df146756 455 #define TIM_DMABurstLength_14Transfers ((uint16_t)0x0D00)
mbed_official 76:aeb1df146756 456 #define TIM_DMABurstLength_15Transfers ((uint16_t)0x0E00)
mbed_official 76:aeb1df146756 457 #define TIM_DMABurstLength_16Transfers ((uint16_t)0x0F00)
mbed_official 76:aeb1df146756 458 #define TIM_DMABurstLength_17Transfers ((uint16_t)0x1000)
mbed_official 76:aeb1df146756 459 #define TIM_DMABurstLength_18Transfers ((uint16_t)0x1100)
mbed_official 76:aeb1df146756 460 #define IS_TIM_DMA_LENGTH(LENGTH) (((LENGTH) == TIM_DMABurstLength_1Transfer) || \
mbed_official 76:aeb1df146756 461 ((LENGTH) == TIM_DMABurstLength_2Transfers) || \
mbed_official 76:aeb1df146756 462 ((LENGTH) == TIM_DMABurstLength_3Transfers) || \
mbed_official 76:aeb1df146756 463 ((LENGTH) == TIM_DMABurstLength_4Transfers) || \
mbed_official 76:aeb1df146756 464 ((LENGTH) == TIM_DMABurstLength_5Transfers) || \
mbed_official 76:aeb1df146756 465 ((LENGTH) == TIM_DMABurstLength_6Transfers) || \
mbed_official 76:aeb1df146756 466 ((LENGTH) == TIM_DMABurstLength_7Transfers) || \
mbed_official 76:aeb1df146756 467 ((LENGTH) == TIM_DMABurstLength_8Transfers) || \
mbed_official 76:aeb1df146756 468 ((LENGTH) == TIM_DMABurstLength_9Transfers) || \
mbed_official 76:aeb1df146756 469 ((LENGTH) == TIM_DMABurstLength_10Transfers) || \
mbed_official 76:aeb1df146756 470 ((LENGTH) == TIM_DMABurstLength_11Transfers) || \
mbed_official 76:aeb1df146756 471 ((LENGTH) == TIM_DMABurstLength_12Transfers) || \
mbed_official 76:aeb1df146756 472 ((LENGTH) == TIM_DMABurstLength_13Transfers) || \
mbed_official 76:aeb1df146756 473 ((LENGTH) == TIM_DMABurstLength_14Transfers) || \
mbed_official 76:aeb1df146756 474 ((LENGTH) == TIM_DMABurstLength_15Transfers) || \
mbed_official 76:aeb1df146756 475 ((LENGTH) == TIM_DMABurstLength_16Transfers) || \
mbed_official 76:aeb1df146756 476 ((LENGTH) == TIM_DMABurstLength_17Transfers) || \
mbed_official 76:aeb1df146756 477 ((LENGTH) == TIM_DMABurstLength_18Transfers))
mbed_official 76:aeb1df146756 478 /**
mbed_official 76:aeb1df146756 479 * @}
mbed_official 76:aeb1df146756 480 */
mbed_official 76:aeb1df146756 481
mbed_official 76:aeb1df146756 482 /** @defgroup TIM_DMA_sources
mbed_official 76:aeb1df146756 483 * @{
mbed_official 76:aeb1df146756 484 */
mbed_official 76:aeb1df146756 485
mbed_official 76:aeb1df146756 486 #define TIM_DMA_Update ((uint16_t)0x0100)
mbed_official 76:aeb1df146756 487 #define TIM_DMA_CC1 ((uint16_t)0x0200)
mbed_official 76:aeb1df146756 488 #define TIM_DMA_CC2 ((uint16_t)0x0400)
mbed_official 76:aeb1df146756 489 #define TIM_DMA_CC3 ((uint16_t)0x0800)
mbed_official 76:aeb1df146756 490 #define TIM_DMA_CC4 ((uint16_t)0x1000)
mbed_official 76:aeb1df146756 491 #define TIM_DMA_Trigger ((uint16_t)0x4000)
mbed_official 76:aeb1df146756 492 #define IS_TIM_DMA_SOURCE(SOURCE) ((((SOURCE) & (uint16_t)0xA0FF) == 0x0000) && ((SOURCE) != 0x0000))
mbed_official 76:aeb1df146756 493
mbed_official 76:aeb1df146756 494 /**
mbed_official 76:aeb1df146756 495 * @}
mbed_official 76:aeb1df146756 496 */
mbed_official 76:aeb1df146756 497
mbed_official 76:aeb1df146756 498 /** @defgroup TIM_External_Trigger_Prescaler
mbed_official 76:aeb1df146756 499 * @{
mbed_official 76:aeb1df146756 500 */
mbed_official 76:aeb1df146756 501
mbed_official 76:aeb1df146756 502 #define TIM_ExtTRGPSC_OFF ((uint16_t)0x0000)
mbed_official 76:aeb1df146756 503 #define TIM_ExtTRGPSC_DIV2 ((uint16_t)0x1000)
mbed_official 76:aeb1df146756 504 #define TIM_ExtTRGPSC_DIV4 ((uint16_t)0x2000)
mbed_official 76:aeb1df146756 505 #define TIM_ExtTRGPSC_DIV8 ((uint16_t)0x3000)
mbed_official 76:aeb1df146756 506 #define IS_TIM_EXT_PRESCALER(PRESCALER) (((PRESCALER) == TIM_ExtTRGPSC_OFF) || \
mbed_official 76:aeb1df146756 507 ((PRESCALER) == TIM_ExtTRGPSC_DIV2) || \
mbed_official 76:aeb1df146756 508 ((PRESCALER) == TIM_ExtTRGPSC_DIV4) || \
mbed_official 76:aeb1df146756 509 ((PRESCALER) == TIM_ExtTRGPSC_DIV8))
mbed_official 76:aeb1df146756 510 /**
mbed_official 76:aeb1df146756 511 * @}
mbed_official 76:aeb1df146756 512 */
mbed_official 76:aeb1df146756 513
mbed_official 76:aeb1df146756 514 /** @defgroup TIM_Internal_Trigger_Selection
mbed_official 76:aeb1df146756 515 * @{
mbed_official 76:aeb1df146756 516 */
mbed_official 76:aeb1df146756 517
mbed_official 76:aeb1df146756 518 #define TIM_TS_ITR0 ((uint16_t)0x0000)
mbed_official 76:aeb1df146756 519 #define TIM_TS_ITR1 ((uint16_t)0x0010)
mbed_official 76:aeb1df146756 520 #define TIM_TS_ITR2 ((uint16_t)0x0020)
mbed_official 76:aeb1df146756 521 #define TIM_TS_ITR3 ((uint16_t)0x0030)
mbed_official 76:aeb1df146756 522 #define TIM_TS_TI1F_ED ((uint16_t)0x0040)
mbed_official 76:aeb1df146756 523 #define TIM_TS_TI1FP1 ((uint16_t)0x0050)
mbed_official 76:aeb1df146756 524 #define TIM_TS_TI2FP2 ((uint16_t)0x0060)
mbed_official 76:aeb1df146756 525 #define TIM_TS_ETRF ((uint16_t)0x0070)
mbed_official 76:aeb1df146756 526 #define IS_TIM_TRIGGER_SELECTION(SELECTION) (((SELECTION) == TIM_TS_ITR0) || \
mbed_official 76:aeb1df146756 527 ((SELECTION) == TIM_TS_ITR1) || \
mbed_official 76:aeb1df146756 528 ((SELECTION) == TIM_TS_ITR2) || \
mbed_official 76:aeb1df146756 529 ((SELECTION) == TIM_TS_ITR3) || \
mbed_official 76:aeb1df146756 530 ((SELECTION) == TIM_TS_TI1F_ED) || \
mbed_official 76:aeb1df146756 531 ((SELECTION) == TIM_TS_TI1FP1) || \
mbed_official 76:aeb1df146756 532 ((SELECTION) == TIM_TS_TI2FP2) || \
mbed_official 76:aeb1df146756 533 ((SELECTION) == TIM_TS_ETRF))
mbed_official 76:aeb1df146756 534 #define IS_TIM_INTERNAL_TRIGGER_SELECTION(SELECTION) (((SELECTION) == TIM_TS_ITR0) || \
mbed_official 76:aeb1df146756 535 ((SELECTION) == TIM_TS_ITR1) || \
mbed_official 76:aeb1df146756 536 ((SELECTION) == TIM_TS_ITR2) || \
mbed_official 76:aeb1df146756 537 ((SELECTION) == TIM_TS_ITR3))
mbed_official 76:aeb1df146756 538 /**
mbed_official 76:aeb1df146756 539 * @}
mbed_official 76:aeb1df146756 540 */
mbed_official 76:aeb1df146756 541
mbed_official 76:aeb1df146756 542 /** @defgroup TIM_TIx_External_Clock_Source
mbed_official 76:aeb1df146756 543 * @{
mbed_official 76:aeb1df146756 544 */
mbed_official 76:aeb1df146756 545
mbed_official 76:aeb1df146756 546 #define TIM_TIxExternalCLK1Source_TI1 ((uint16_t)0x0050)
mbed_official 76:aeb1df146756 547 #define TIM_TIxExternalCLK1Source_TI2 ((uint16_t)0x0060)
mbed_official 76:aeb1df146756 548 #define TIM_TIxExternalCLK1Source_TI1ED ((uint16_t)0x0040)
mbed_official 76:aeb1df146756 549
mbed_official 76:aeb1df146756 550 /**
mbed_official 76:aeb1df146756 551 * @}
mbed_official 76:aeb1df146756 552 */
mbed_official 76:aeb1df146756 553
mbed_official 76:aeb1df146756 554 /** @defgroup TIM_External_Trigger_Polarity
mbed_official 76:aeb1df146756 555 * @{
mbed_official 76:aeb1df146756 556 */
mbed_official 76:aeb1df146756 557 #define TIM_ExtTRGPolarity_Inverted ((uint16_t)0x8000)
mbed_official 76:aeb1df146756 558 #define TIM_ExtTRGPolarity_NonInverted ((uint16_t)0x0000)
mbed_official 76:aeb1df146756 559 #define IS_TIM_EXT_POLARITY(POLARITY) (((POLARITY) == TIM_ExtTRGPolarity_Inverted) || \
mbed_official 76:aeb1df146756 560 ((POLARITY) == TIM_ExtTRGPolarity_NonInverted))
mbed_official 76:aeb1df146756 561 /**
mbed_official 76:aeb1df146756 562 * @}
mbed_official 76:aeb1df146756 563 */
mbed_official 76:aeb1df146756 564
mbed_official 76:aeb1df146756 565 /** @defgroup TIM_Prescaler_Reload_Mode
mbed_official 76:aeb1df146756 566 * @{
mbed_official 76:aeb1df146756 567 */
mbed_official 76:aeb1df146756 568
mbed_official 76:aeb1df146756 569 #define TIM_PSCReloadMode_Update ((uint16_t)0x0000)
mbed_official 76:aeb1df146756 570 #define TIM_PSCReloadMode_Immediate ((uint16_t)0x0001)
mbed_official 76:aeb1df146756 571 #define IS_TIM_PRESCALER_RELOAD(RELOAD) (((RELOAD) == TIM_PSCReloadMode_Update) || \
mbed_official 76:aeb1df146756 572 ((RELOAD) == TIM_PSCReloadMode_Immediate))
mbed_official 76:aeb1df146756 573 /**
mbed_official 76:aeb1df146756 574 * @}
mbed_official 76:aeb1df146756 575 */
mbed_official 76:aeb1df146756 576
mbed_official 76:aeb1df146756 577 /** @defgroup TIM_Forced_Action
mbed_official 76:aeb1df146756 578 * @{
mbed_official 76:aeb1df146756 579 */
mbed_official 76:aeb1df146756 580
mbed_official 76:aeb1df146756 581 #define TIM_ForcedAction_Active ((uint16_t)0x0050)
mbed_official 76:aeb1df146756 582 #define TIM_ForcedAction_InActive ((uint16_t)0x0040)
mbed_official 76:aeb1df146756 583 #define IS_TIM_FORCED_ACTION(ACTION) (((ACTION) == TIM_ForcedAction_Active) || \
mbed_official 76:aeb1df146756 584 ((ACTION) == TIM_ForcedAction_InActive))
mbed_official 76:aeb1df146756 585 /**
mbed_official 76:aeb1df146756 586 * @}
mbed_official 76:aeb1df146756 587 */
mbed_official 76:aeb1df146756 588
mbed_official 76:aeb1df146756 589 /** @defgroup TIM_Encoder_Mode
mbed_official 76:aeb1df146756 590 * @{
mbed_official 76:aeb1df146756 591 */
mbed_official 76:aeb1df146756 592
mbed_official 76:aeb1df146756 593 #define TIM_EncoderMode_TI1 ((uint16_t)0x0001)
mbed_official 76:aeb1df146756 594 #define TIM_EncoderMode_TI2 ((uint16_t)0x0002)
mbed_official 76:aeb1df146756 595 #define TIM_EncoderMode_TI12 ((uint16_t)0x0003)
mbed_official 76:aeb1df146756 596 #define IS_TIM_ENCODER_MODE(MODE) (((MODE) == TIM_EncoderMode_TI1) || \
mbed_official 76:aeb1df146756 597 ((MODE) == TIM_EncoderMode_TI2) || \
mbed_official 76:aeb1df146756 598 ((MODE) == TIM_EncoderMode_TI12))
mbed_official 76:aeb1df146756 599 /**
mbed_official 76:aeb1df146756 600 * @}
mbed_official 76:aeb1df146756 601 */
mbed_official 76:aeb1df146756 602
mbed_official 76:aeb1df146756 603
mbed_official 76:aeb1df146756 604 /** @defgroup TIM_Event_Source
mbed_official 76:aeb1df146756 605 * @{
mbed_official 76:aeb1df146756 606 */
mbed_official 76:aeb1df146756 607
mbed_official 76:aeb1df146756 608 #define TIM_EventSource_Update ((uint16_t)0x0001)
mbed_official 76:aeb1df146756 609 #define TIM_EventSource_CC1 ((uint16_t)0x0002)
mbed_official 76:aeb1df146756 610 #define TIM_EventSource_CC2 ((uint16_t)0x0004)
mbed_official 76:aeb1df146756 611 #define TIM_EventSource_CC3 ((uint16_t)0x0008)
mbed_official 76:aeb1df146756 612 #define TIM_EventSource_CC4 ((uint16_t)0x0010)
mbed_official 76:aeb1df146756 613 #define TIM_EventSource_Trigger ((uint16_t)0x0040)
mbed_official 76:aeb1df146756 614 #define IS_TIM_EVENT_SOURCE(SOURCE) ((((SOURCE) & (uint16_t)0xFFA0) == 0x0000) && ((SOURCE) != 0x0000))
mbed_official 76:aeb1df146756 615
mbed_official 76:aeb1df146756 616 /**
mbed_official 76:aeb1df146756 617 * @}
mbed_official 76:aeb1df146756 618 */
mbed_official 76:aeb1df146756 619
mbed_official 76:aeb1df146756 620 /** @defgroup TIM_Update_Source
mbed_official 76:aeb1df146756 621 * @{
mbed_official 76:aeb1df146756 622 */
mbed_official 76:aeb1df146756 623
mbed_official 76:aeb1df146756 624 #define TIM_UpdateSource_Global ((uint16_t)0x0000) /*!< Source of update is the counter overflow/underflow
mbed_official 76:aeb1df146756 625 or the setting of UG bit, or an update generation
mbed_official 76:aeb1df146756 626 through the slave mode controller. */
mbed_official 76:aeb1df146756 627 #define TIM_UpdateSource_Regular ((uint16_t)0x0001) /*!< Source of update is counter overflow/underflow. */
mbed_official 76:aeb1df146756 628 #define IS_TIM_UPDATE_SOURCE(SOURCE) (((SOURCE) == TIM_UpdateSource_Global) || \
mbed_official 76:aeb1df146756 629 ((SOURCE) == TIM_UpdateSource_Regular))
mbed_official 76:aeb1df146756 630 /**
mbed_official 76:aeb1df146756 631 * @}
mbed_official 76:aeb1df146756 632 */
mbed_official 76:aeb1df146756 633
mbed_official 76:aeb1df146756 634 /** @defgroup TIM_Output_Compare_Preload_State
mbed_official 76:aeb1df146756 635 * @{
mbed_official 76:aeb1df146756 636 */
mbed_official 76:aeb1df146756 637
mbed_official 76:aeb1df146756 638 #define TIM_OCPreload_Enable ((uint16_t)0x0008)
mbed_official 76:aeb1df146756 639 #define TIM_OCPreload_Disable ((uint16_t)0x0000)
mbed_official 76:aeb1df146756 640 #define IS_TIM_OCPRELOAD_STATE(STATE) (((STATE) == TIM_OCPreload_Enable) || \
mbed_official 76:aeb1df146756 641 ((STATE) == TIM_OCPreload_Disable))
mbed_official 76:aeb1df146756 642 /**
mbed_official 76:aeb1df146756 643 * @}
mbed_official 76:aeb1df146756 644 */
mbed_official 76:aeb1df146756 645
mbed_official 76:aeb1df146756 646 /** @defgroup TIM_Output_Compare_Fast_State
mbed_official 76:aeb1df146756 647 * @{
mbed_official 76:aeb1df146756 648 */
mbed_official 76:aeb1df146756 649
mbed_official 76:aeb1df146756 650 #define TIM_OCFast_Enable ((uint16_t)0x0004)
mbed_official 76:aeb1df146756 651 #define TIM_OCFast_Disable ((uint16_t)0x0000)
mbed_official 76:aeb1df146756 652 #define IS_TIM_OCFAST_STATE(STATE) (((STATE) == TIM_OCFast_Enable) || \
mbed_official 76:aeb1df146756 653 ((STATE) == TIM_OCFast_Disable))
mbed_official 76:aeb1df146756 654
mbed_official 76:aeb1df146756 655 /**
mbed_official 76:aeb1df146756 656 * @}
mbed_official 76:aeb1df146756 657 */
mbed_official 76:aeb1df146756 658
mbed_official 76:aeb1df146756 659 /** @defgroup TIM_Output_Compare_Clear_State
mbed_official 76:aeb1df146756 660 * @{
mbed_official 76:aeb1df146756 661 */
mbed_official 76:aeb1df146756 662
mbed_official 76:aeb1df146756 663 #define TIM_OCClear_Enable ((uint16_t)0x0080)
mbed_official 76:aeb1df146756 664 #define TIM_OCClear_Disable ((uint16_t)0x0000)
mbed_official 76:aeb1df146756 665 #define IS_TIM_OCCLEAR_STATE(STATE) (((STATE) == TIM_OCClear_Enable) || \
mbed_official 76:aeb1df146756 666 ((STATE) == TIM_OCClear_Disable))
mbed_official 76:aeb1df146756 667 /**
mbed_official 76:aeb1df146756 668 * @}
mbed_official 76:aeb1df146756 669 */
mbed_official 76:aeb1df146756 670
mbed_official 76:aeb1df146756 671 /** @defgroup TIM_Trigger_Output_Source
mbed_official 76:aeb1df146756 672 * @{
mbed_official 76:aeb1df146756 673 */
mbed_official 76:aeb1df146756 674
mbed_official 76:aeb1df146756 675 #define TIM_TRGOSource_Reset ((uint16_t)0x0000)
mbed_official 76:aeb1df146756 676 #define TIM_TRGOSource_Enable ((uint16_t)0x0010)
mbed_official 76:aeb1df146756 677 #define TIM_TRGOSource_Update ((uint16_t)0x0020)
mbed_official 76:aeb1df146756 678 #define TIM_TRGOSource_OC1 ((uint16_t)0x0030)
mbed_official 76:aeb1df146756 679 #define TIM_TRGOSource_OC1Ref ((uint16_t)0x0040)
mbed_official 76:aeb1df146756 680 #define TIM_TRGOSource_OC2Ref ((uint16_t)0x0050)
mbed_official 76:aeb1df146756 681 #define TIM_TRGOSource_OC3Ref ((uint16_t)0x0060)
mbed_official 76:aeb1df146756 682 #define TIM_TRGOSource_OC4Ref ((uint16_t)0x0070)
mbed_official 76:aeb1df146756 683 #define IS_TIM_TRGO_SOURCE(SOURCE) (((SOURCE) == TIM_TRGOSource_Reset) || \
mbed_official 76:aeb1df146756 684 ((SOURCE) == TIM_TRGOSource_Enable) || \
mbed_official 76:aeb1df146756 685 ((SOURCE) == TIM_TRGOSource_Update) || \
mbed_official 76:aeb1df146756 686 ((SOURCE) == TIM_TRGOSource_OC1) || \
mbed_official 76:aeb1df146756 687 ((SOURCE) == TIM_TRGOSource_OC1Ref) || \
mbed_official 76:aeb1df146756 688 ((SOURCE) == TIM_TRGOSource_OC2Ref) || \
mbed_official 76:aeb1df146756 689 ((SOURCE) == TIM_TRGOSource_OC3Ref) || \
mbed_official 76:aeb1df146756 690 ((SOURCE) == TIM_TRGOSource_OC4Ref))
mbed_official 76:aeb1df146756 691 /**
mbed_official 76:aeb1df146756 692 * @}
mbed_official 76:aeb1df146756 693 */
mbed_official 76:aeb1df146756 694
mbed_official 76:aeb1df146756 695 /** @defgroup TIM_Slave_Mode
mbed_official 76:aeb1df146756 696 * @{
mbed_official 76:aeb1df146756 697 */
mbed_official 76:aeb1df146756 698
mbed_official 76:aeb1df146756 699 #define TIM_SlaveMode_Reset ((uint16_t)0x0004)
mbed_official 76:aeb1df146756 700 #define TIM_SlaveMode_Gated ((uint16_t)0x0005)
mbed_official 76:aeb1df146756 701 #define TIM_SlaveMode_Trigger ((uint16_t)0x0006)
mbed_official 76:aeb1df146756 702 #define TIM_SlaveMode_External1 ((uint16_t)0x0007)
mbed_official 76:aeb1df146756 703 #define IS_TIM_SLAVE_MODE(MODE) (((MODE) == TIM_SlaveMode_Reset) || \
mbed_official 76:aeb1df146756 704 ((MODE) == TIM_SlaveMode_Gated) || \
mbed_official 76:aeb1df146756 705 ((MODE) == TIM_SlaveMode_Trigger) || \
mbed_official 76:aeb1df146756 706 ((MODE) == TIM_SlaveMode_External1))
mbed_official 76:aeb1df146756 707 /**
mbed_official 76:aeb1df146756 708 * @}
mbed_official 76:aeb1df146756 709 */
mbed_official 76:aeb1df146756 710
mbed_official 76:aeb1df146756 711 /** @defgroup TIM_Master_Slave_Mode
mbed_official 76:aeb1df146756 712 * @{
mbed_official 76:aeb1df146756 713 */
mbed_official 76:aeb1df146756 714
mbed_official 76:aeb1df146756 715 #define TIM_MasterSlaveMode_Enable ((uint16_t)0x0080)
mbed_official 76:aeb1df146756 716 #define TIM_MasterSlaveMode_Disable ((uint16_t)0x0000)
mbed_official 76:aeb1df146756 717 #define IS_TIM_MSM_STATE(STATE) (((STATE) == TIM_MasterSlaveMode_Enable) || \
mbed_official 76:aeb1df146756 718 ((STATE) == TIM_MasterSlaveMode_Disable))
mbed_official 76:aeb1df146756 719 /**
mbed_official 76:aeb1df146756 720 * @}
mbed_official 76:aeb1df146756 721 */
mbed_official 76:aeb1df146756 722
mbed_official 76:aeb1df146756 723 /** @defgroup TIM_Flags
mbed_official 76:aeb1df146756 724 * @{
mbed_official 76:aeb1df146756 725 */
mbed_official 76:aeb1df146756 726
mbed_official 76:aeb1df146756 727 #define TIM_FLAG_Update ((uint16_t)0x0001)
mbed_official 76:aeb1df146756 728 #define TIM_FLAG_CC1 ((uint16_t)0x0002)
mbed_official 76:aeb1df146756 729 #define TIM_FLAG_CC2 ((uint16_t)0x0004)
mbed_official 76:aeb1df146756 730 #define TIM_FLAG_CC3 ((uint16_t)0x0008)
mbed_official 76:aeb1df146756 731 #define TIM_FLAG_CC4 ((uint16_t)0x0010)
mbed_official 76:aeb1df146756 732 #define TIM_FLAG_Trigger ((uint16_t)0x0040)
mbed_official 76:aeb1df146756 733 #define TIM_FLAG_CC1OF ((uint16_t)0x0200)
mbed_official 76:aeb1df146756 734 #define TIM_FLAG_CC2OF ((uint16_t)0x0400)
mbed_official 76:aeb1df146756 735 #define TIM_FLAG_CC3OF ((uint16_t)0x0800)
mbed_official 76:aeb1df146756 736 #define TIM_FLAG_CC4OF ((uint16_t)0x1000)
mbed_official 76:aeb1df146756 737 #define IS_TIM_GET_FLAG(FLAG) (((FLAG) == TIM_FLAG_Update) || \
mbed_official 76:aeb1df146756 738 ((FLAG) == TIM_FLAG_CC1) || \
mbed_official 76:aeb1df146756 739 ((FLAG) == TIM_FLAG_CC2) || \
mbed_official 76:aeb1df146756 740 ((FLAG) == TIM_FLAG_CC3) || \
mbed_official 76:aeb1df146756 741 ((FLAG) == TIM_FLAG_CC4) || \
mbed_official 76:aeb1df146756 742 ((FLAG) == TIM_FLAG_Trigger) || \
mbed_official 76:aeb1df146756 743 ((FLAG) == TIM_FLAG_CC1OF) || \
mbed_official 76:aeb1df146756 744 ((FLAG) == TIM_FLAG_CC2OF) || \
mbed_official 76:aeb1df146756 745 ((FLAG) == TIM_FLAG_CC3OF) || \
mbed_official 76:aeb1df146756 746 ((FLAG) == TIM_FLAG_CC4OF))
mbed_official 76:aeb1df146756 747 #define IS_TIM_CLEAR_FLAG(TIM_FLAG) ((((TIM_FLAG) & (uint16_t)0xE1A0) == 0x0000) && ((TIM_FLAG) != 0x0000))
mbed_official 76:aeb1df146756 748
mbed_official 76:aeb1df146756 749 /**
mbed_official 76:aeb1df146756 750 * @}
mbed_official 76:aeb1df146756 751 */
mbed_official 76:aeb1df146756 752
mbed_official 76:aeb1df146756 753 /** @defgroup TIM_Input_Capture_Filer_Value
mbed_official 76:aeb1df146756 754 * @{
mbed_official 76:aeb1df146756 755 */
mbed_official 76:aeb1df146756 756
mbed_official 76:aeb1df146756 757 #define IS_TIM_IC_FILTER(ICFILTER) ((ICFILTER) <= 0xF)
mbed_official 76:aeb1df146756 758 /**
mbed_official 76:aeb1df146756 759 * @}
mbed_official 76:aeb1df146756 760 */
mbed_official 76:aeb1df146756 761
mbed_official 76:aeb1df146756 762 /** @defgroup TIM_External_Trigger_Filter
mbed_official 76:aeb1df146756 763 * @{
mbed_official 76:aeb1df146756 764 */
mbed_official 76:aeb1df146756 765
mbed_official 76:aeb1df146756 766 #define IS_TIM_EXT_FILTER(EXTFILTER) ((EXTFILTER) <= 0xF)
mbed_official 76:aeb1df146756 767 /**
mbed_official 76:aeb1df146756 768 * @}
mbed_official 76:aeb1df146756 769 */
mbed_official 76:aeb1df146756 770
mbed_official 76:aeb1df146756 771 /** @defgroup TIM_OCReferenceClear
mbed_official 76:aeb1df146756 772 * @{
mbed_official 76:aeb1df146756 773 */
mbed_official 76:aeb1df146756 774 #define TIM_OCReferenceClear_ETRF ((uint16_t)0x0008)
mbed_official 76:aeb1df146756 775 #define TIM_OCReferenceClear_OCREFCLR ((uint16_t)0x0000)
mbed_official 76:aeb1df146756 776 #define TIM_OCREFERENCECECLEAR_SOURCE(SOURCE) (((SOURCE) == TIM_OCReferenceClear_ETRF) || \
mbed_official 76:aeb1df146756 777 ((SOURCE) == TIM_OCReferenceClear_OCREFCLR))
mbed_official 76:aeb1df146756 778
mbed_official 76:aeb1df146756 779 /**
mbed_official 76:aeb1df146756 780 * @}
mbed_official 76:aeb1df146756 781 */
mbed_official 76:aeb1df146756 782
mbed_official 76:aeb1df146756 783 /** @defgroup TIM_Remap
mbed_official 76:aeb1df146756 784 * @{
mbed_official 76:aeb1df146756 785 */
mbed_official 76:aeb1df146756 786
mbed_official 76:aeb1df146756 787 #define TIM2_TIM10_OC ((uint32_t)0xFFFE0000)
mbed_official 76:aeb1df146756 788 #define TIM2_TIM5_TRGO ((uint32_t)0xFFFE0001)
mbed_official 76:aeb1df146756 789
mbed_official 76:aeb1df146756 790 #define TIM3_TIM11_OC ((uint32_t)0xFFFE0000)
mbed_official 76:aeb1df146756 791 #define TIM3_TIM5_TRGO ((uint32_t)0xFFFE0001)
mbed_official 76:aeb1df146756 792
mbed_official 76:aeb1df146756 793 #define TIM9_GPIO ((uint32_t)0xFFFC0000)
mbed_official 76:aeb1df146756 794 #define TIM9_LSE ((uint32_t)0xFFFC0001)
mbed_official 76:aeb1df146756 795
mbed_official 76:aeb1df146756 796 #define TIM9_TIM3_TRGO ((uint32_t)0xFFFB0000)
mbed_official 76:aeb1df146756 797 #define TIM9_TS_IO ((uint32_t)0xFFFB0004)
mbed_official 76:aeb1df146756 798
mbed_official 76:aeb1df146756 799 #define TIM10_GPIO ((uint32_t)0xFFF40000)
mbed_official 76:aeb1df146756 800 #define TIM10_LSI ((uint32_t)0xFFF40001)
mbed_official 76:aeb1df146756 801 #define TIM10_LSE ((uint32_t)0xFFF40002)
mbed_official 76:aeb1df146756 802 #define TIM10_RTC ((uint32_t)0xFFF40003)
mbed_official 76:aeb1df146756 803 #define TIM10_RI ((uint32_t)0xFFF40008)
mbed_official 76:aeb1df146756 804
mbed_official 76:aeb1df146756 805 #define TIM10_ETR_LSE ((uint32_t)0xFFFB0000)
mbed_official 76:aeb1df146756 806 #define TIM10_ETR_TIM9_TRGO ((uint32_t)0xFFFB0004)
mbed_official 76:aeb1df146756 807
mbed_official 76:aeb1df146756 808 #define TIM11_GPIO ((uint32_t)0xFFF40000)
mbed_official 76:aeb1df146756 809 #define TIM11_MSI ((uint32_t)0xFFF40001)
mbed_official 76:aeb1df146756 810 #define TIM11_HSE_RTC ((uint32_t)0xFFF40002)
mbed_official 76:aeb1df146756 811 #define TIM11_RI ((uint32_t)0xFFF40008)
mbed_official 76:aeb1df146756 812
mbed_official 76:aeb1df146756 813 #define TIM11_ETR_LSE ((uint32_t)0xFFFB0000)
mbed_official 76:aeb1df146756 814 #define TIM11_ETR_TIM9_TRGO ((uint32_t)0xFFFB0004)
mbed_official 76:aeb1df146756 815
mbed_official 76:aeb1df146756 816 #define IS_TIM_REMAP(TIM_REMAP) (((TIM_REMAP) == TIM2_TIM10_OC)|| \
mbed_official 76:aeb1df146756 817 ((TIM_REMAP) == TIM2_TIM5_TRGO)|| \
mbed_official 76:aeb1df146756 818 ((TIM_REMAP) == TIM3_TIM11_OC)|| \
mbed_official 76:aeb1df146756 819 ((TIM_REMAP) == TIM3_TIM5_TRGO)|| \
mbed_official 76:aeb1df146756 820 ((TIM_REMAP) == TIM9_GPIO)|| \
mbed_official 76:aeb1df146756 821 ((TIM_REMAP) == TIM9_LSE)|| \
mbed_official 76:aeb1df146756 822 ((TIM_REMAP) == TIM9_TIM3_TRGO)|| \
mbed_official 76:aeb1df146756 823 ((TIM_REMAP) == TIM9_TS_IO)|| \
mbed_official 76:aeb1df146756 824 ((TIM_REMAP) == TIM10_GPIO)|| \
mbed_official 76:aeb1df146756 825 ((TIM_REMAP) == TIM10_LSI)|| \
mbed_official 76:aeb1df146756 826 ((TIM_REMAP) == TIM10_LSE)|| \
mbed_official 76:aeb1df146756 827 ((TIM_REMAP) == TIM10_RTC)|| \
mbed_official 76:aeb1df146756 828 ((TIM_REMAP) == TIM10_RI)|| \
mbed_official 76:aeb1df146756 829 ((TIM_REMAP) == TIM10_ETR_LSE)|| \
mbed_official 76:aeb1df146756 830 ((TIM_REMAP) == TIM10_ETR_TIM9_TRGO)|| \
mbed_official 76:aeb1df146756 831 ((TIM_REMAP) == TIM11_GPIO)|| \
mbed_official 76:aeb1df146756 832 ((TIM_REMAP) == TIM11_MSI)|| \
mbed_official 76:aeb1df146756 833 ((TIM_REMAP) == TIM11_HSE_RTC)|| \
mbed_official 76:aeb1df146756 834 ((TIM_REMAP) == TIM11_RI)|| \
mbed_official 76:aeb1df146756 835 ((TIM_REMAP) == TIM11_ETR_LSE)|| \
mbed_official 76:aeb1df146756 836 ((TIM_REMAP) == TIM11_ETR_TIM9_TRGO))
mbed_official 76:aeb1df146756 837
mbed_official 76:aeb1df146756 838 /**
mbed_official 76:aeb1df146756 839 * @}
mbed_official 76:aeb1df146756 840 */
mbed_official 76:aeb1df146756 841
mbed_official 76:aeb1df146756 842 /** @defgroup TIM_Legacy
mbed_official 76:aeb1df146756 843 * @{
mbed_official 76:aeb1df146756 844 */
mbed_official 76:aeb1df146756 845
mbed_official 76:aeb1df146756 846 #define TIM_DMABurstLength_1Byte TIM_DMABurstLength_1Transfer
mbed_official 76:aeb1df146756 847 #define TIM_DMABurstLength_2Bytes TIM_DMABurstLength_2Transfers
mbed_official 76:aeb1df146756 848 #define TIM_DMABurstLength_3Bytes TIM_DMABurstLength_3Transfers
mbed_official 76:aeb1df146756 849 #define TIM_DMABurstLength_4Bytes TIM_DMABurstLength_4Transfers
mbed_official 76:aeb1df146756 850 #define TIM_DMABurstLength_5Bytes TIM_DMABurstLength_5Transfers
mbed_official 76:aeb1df146756 851 #define TIM_DMABurstLength_6Bytes TIM_DMABurstLength_6Transfers
mbed_official 76:aeb1df146756 852 #define TIM_DMABurstLength_7Bytes TIM_DMABurstLength_7Transfers
mbed_official 76:aeb1df146756 853 #define TIM_DMABurstLength_8Bytes TIM_DMABurstLength_8Transfers
mbed_official 76:aeb1df146756 854 #define TIM_DMABurstLength_9Bytes TIM_DMABurstLength_9Transfers
mbed_official 76:aeb1df146756 855 #define TIM_DMABurstLength_10Bytes TIM_DMABurstLength_10Transfers
mbed_official 76:aeb1df146756 856 #define TIM_DMABurstLength_11Bytes TIM_DMABurstLength_11Transfers
mbed_official 76:aeb1df146756 857 #define TIM_DMABurstLength_12Bytes TIM_DMABurstLength_12Transfers
mbed_official 76:aeb1df146756 858 #define TIM_DMABurstLength_13Bytes TIM_DMABurstLength_13Transfers
mbed_official 76:aeb1df146756 859 #define TIM_DMABurstLength_14Bytes TIM_DMABurstLength_14Transfers
mbed_official 76:aeb1df146756 860 #define TIM_DMABurstLength_15Bytes TIM_DMABurstLength_15Transfers
mbed_official 76:aeb1df146756 861 #define TIM_DMABurstLength_16Bytes TIM_DMABurstLength_16Transfers
mbed_official 76:aeb1df146756 862 #define TIM_DMABurstLength_17Bytes TIM_DMABurstLength_17Transfers
mbed_official 76:aeb1df146756 863 #define TIM_DMABurstLength_18Bytes TIM_DMABurstLength_18Transfers
mbed_official 76:aeb1df146756 864 /**
mbed_official 76:aeb1df146756 865 * @}
mbed_official 76:aeb1df146756 866 */
mbed_official 76:aeb1df146756 867
mbed_official 76:aeb1df146756 868 /**
mbed_official 76:aeb1df146756 869 * @}
mbed_official 76:aeb1df146756 870 */
mbed_official 76:aeb1df146756 871
mbed_official 76:aeb1df146756 872 /* Exported macro ------------------------------------------------------------*/
mbed_official 76:aeb1df146756 873 /* Exported functions ------------------------------------------------------- */
mbed_official 76:aeb1df146756 874
mbed_official 76:aeb1df146756 875 /* TimeBase management ********************************************************/
mbed_official 76:aeb1df146756 876 void TIM_DeInit(TIM_TypeDef* TIMx);
mbed_official 76:aeb1df146756 877 void TIM_TimeBaseInit(TIM_TypeDef* TIMx, TIM_TimeBaseInitTypeDef* TIM_TimeBaseInitStruct);
mbed_official 76:aeb1df146756 878 void TIM_TimeBaseStructInit(TIM_TimeBaseInitTypeDef* TIM_TimeBaseInitStruct);
mbed_official 76:aeb1df146756 879 void TIM_PrescalerConfig(TIM_TypeDef* TIMx, uint16_t Prescaler, uint16_t TIM_PSCReloadMode);
mbed_official 76:aeb1df146756 880 void TIM_CounterModeConfig(TIM_TypeDef* TIMx, uint16_t TIM_CounterMode);
mbed_official 76:aeb1df146756 881 void TIM_SetCounter(TIM_TypeDef* TIMx, uint32_t Counter);
mbed_official 76:aeb1df146756 882 void TIM_SetAutoreload(TIM_TypeDef* TIMx, uint32_t Autoreload);
mbed_official 76:aeb1df146756 883 uint32_t TIM_GetCounter(TIM_TypeDef* TIMx);
mbed_official 76:aeb1df146756 884 uint16_t TIM_GetPrescaler(TIM_TypeDef* TIMx);
mbed_official 76:aeb1df146756 885 void TIM_UpdateDisableConfig(TIM_TypeDef* TIMx, FunctionalState NewState);
mbed_official 76:aeb1df146756 886 void TIM_UpdateRequestConfig(TIM_TypeDef* TIMx, uint16_t TIM_UpdateSource);
mbed_official 76:aeb1df146756 887 void TIM_ARRPreloadConfig(TIM_TypeDef* TIMx, FunctionalState NewState);
mbed_official 76:aeb1df146756 888 void TIM_SelectOnePulseMode(TIM_TypeDef* TIMx, uint16_t TIM_OPMode);
mbed_official 76:aeb1df146756 889 void TIM_SetClockDivision(TIM_TypeDef* TIMx, uint16_t TIM_CKD);
mbed_official 76:aeb1df146756 890 void TIM_Cmd(TIM_TypeDef* TIMx, FunctionalState NewState);
mbed_official 76:aeb1df146756 891
mbed_official 76:aeb1df146756 892 /* Output Compare management **************************************************/
mbed_official 76:aeb1df146756 893 void TIM_OC1Init(TIM_TypeDef* TIMx, TIM_OCInitTypeDef* TIM_OCInitStruct);
mbed_official 76:aeb1df146756 894 void TIM_OC2Init(TIM_TypeDef* TIMx, TIM_OCInitTypeDef* TIM_OCInitStruct);
mbed_official 76:aeb1df146756 895 void TIM_OC3Init(TIM_TypeDef* TIMx, TIM_OCInitTypeDef* TIM_OCInitStruct);
mbed_official 76:aeb1df146756 896 void TIM_OC4Init(TIM_TypeDef* TIMx, TIM_OCInitTypeDef* TIM_OCInitStruct);
mbed_official 76:aeb1df146756 897 void TIM_OCStructInit(TIM_OCInitTypeDef* TIM_OCInitStruct);
mbed_official 76:aeb1df146756 898 void TIM_SelectOCxM(TIM_TypeDef* TIMx, uint16_t TIM_Channel, uint16_t TIM_OCMode);
mbed_official 76:aeb1df146756 899 void TIM_SetCompare1(TIM_TypeDef* TIMx, uint32_t Compare1);
mbed_official 76:aeb1df146756 900 void TIM_SetCompare2(TIM_TypeDef* TIMx, uint32_t Compare2);
mbed_official 76:aeb1df146756 901 void TIM_SetCompare3(TIM_TypeDef* TIMx, uint32_t Compare3);
mbed_official 76:aeb1df146756 902 void TIM_SetCompare4(TIM_TypeDef* TIMx, uint32_t Compare4);
mbed_official 76:aeb1df146756 903 void TIM_ForcedOC1Config(TIM_TypeDef* TIMx, uint16_t TIM_ForcedAction);
mbed_official 76:aeb1df146756 904 void TIM_ForcedOC2Config(TIM_TypeDef* TIMx, uint16_t TIM_ForcedAction);
mbed_official 76:aeb1df146756 905 void TIM_ForcedOC3Config(TIM_TypeDef* TIMx, uint16_t TIM_ForcedAction);
mbed_official 76:aeb1df146756 906 void TIM_ForcedOC4Config(TIM_TypeDef* TIMx, uint16_t TIM_ForcedAction);
mbed_official 76:aeb1df146756 907 void TIM_OC1PreloadConfig(TIM_TypeDef* TIMx, uint16_t TIM_OCPreload);
mbed_official 76:aeb1df146756 908 void TIM_OC2PreloadConfig(TIM_TypeDef* TIMx, uint16_t TIM_OCPreload);
mbed_official 76:aeb1df146756 909 void TIM_OC3PreloadConfig(TIM_TypeDef* TIMx, uint16_t TIM_OCPreload);
mbed_official 76:aeb1df146756 910 void TIM_OC4PreloadConfig(TIM_TypeDef* TIMx, uint16_t TIM_OCPreload);
mbed_official 76:aeb1df146756 911 void TIM_OC1FastConfig(TIM_TypeDef* TIMx, uint16_t TIM_OCFast);
mbed_official 76:aeb1df146756 912 void TIM_OC2FastConfig(TIM_TypeDef* TIMx, uint16_t TIM_OCFast);
mbed_official 76:aeb1df146756 913 void TIM_OC3FastConfig(TIM_TypeDef* TIMx, uint16_t TIM_OCFast);
mbed_official 76:aeb1df146756 914 void TIM_OC4FastConfig(TIM_TypeDef* TIMx, uint16_t TIM_OCFast);
mbed_official 76:aeb1df146756 915 void TIM_ClearOC1Ref(TIM_TypeDef* TIMx, uint16_t TIM_OCClear);
mbed_official 76:aeb1df146756 916 void TIM_ClearOC2Ref(TIM_TypeDef* TIMx, uint16_t TIM_OCClear);
mbed_official 76:aeb1df146756 917 void TIM_ClearOC3Ref(TIM_TypeDef* TIMx, uint16_t TIM_OCClear);
mbed_official 76:aeb1df146756 918 void TIM_ClearOC4Ref(TIM_TypeDef* TIMx, uint16_t TIM_OCClear);
mbed_official 76:aeb1df146756 919 void TIM_OC1PolarityConfig(TIM_TypeDef* TIMx, uint16_t TIM_OCPolarity);
mbed_official 76:aeb1df146756 920 void TIM_OC2PolarityConfig(TIM_TypeDef* TIMx, uint16_t TIM_OCPolarity);
mbed_official 76:aeb1df146756 921 void TIM_OC3PolarityConfig(TIM_TypeDef* TIMx, uint16_t TIM_OCPolarity);
mbed_official 76:aeb1df146756 922 void TIM_OC4PolarityConfig(TIM_TypeDef* TIMx, uint16_t TIM_OCPolarity);
mbed_official 76:aeb1df146756 923 void TIM_SelectOCREFClear(TIM_TypeDef* TIMx, uint16_t TIM_OCReferenceClear);
mbed_official 76:aeb1df146756 924 void TIM_CCxCmd(TIM_TypeDef* TIMx, uint16_t TIM_Channel, uint16_t TIM_CCx);
mbed_official 76:aeb1df146756 925
mbed_official 76:aeb1df146756 926 /* Input Capture management ***************************************************/
mbed_official 76:aeb1df146756 927 void TIM_ICInit(TIM_TypeDef* TIMx, TIM_ICInitTypeDef* TIM_ICInitStruct);
mbed_official 76:aeb1df146756 928 void TIM_ICStructInit(TIM_ICInitTypeDef* TIM_ICInitStruct);
mbed_official 76:aeb1df146756 929 void TIM_PWMIConfig(TIM_TypeDef* TIMx, TIM_ICInitTypeDef* TIM_ICInitStruct);
mbed_official 76:aeb1df146756 930 uint32_t TIM_GetCapture1(TIM_TypeDef* TIMx);
mbed_official 76:aeb1df146756 931 uint32_t TIM_GetCapture2(TIM_TypeDef* TIMx);
mbed_official 76:aeb1df146756 932 uint32_t TIM_GetCapture3(TIM_TypeDef* TIMx);
mbed_official 76:aeb1df146756 933 uint32_t TIM_GetCapture4(TIM_TypeDef* TIMx);
mbed_official 76:aeb1df146756 934 void TIM_SetIC1Prescaler(TIM_TypeDef* TIMx, uint16_t TIM_ICPSC);
mbed_official 76:aeb1df146756 935 void TIM_SetIC2Prescaler(TIM_TypeDef* TIMx, uint16_t TIM_ICPSC);
mbed_official 76:aeb1df146756 936 void TIM_SetIC3Prescaler(TIM_TypeDef* TIMx, uint16_t TIM_ICPSC);
mbed_official 76:aeb1df146756 937 void TIM_SetIC4Prescaler(TIM_TypeDef* TIMx, uint16_t TIM_ICPSC);
mbed_official 76:aeb1df146756 938
mbed_official 76:aeb1df146756 939 /* Interrupts, DMA and flags management ***************************************/
mbed_official 76:aeb1df146756 940 void TIM_ITConfig(TIM_TypeDef* TIMx, uint16_t TIM_IT, FunctionalState NewState);
mbed_official 76:aeb1df146756 941 void TIM_GenerateEvent(TIM_TypeDef* TIMx, uint16_t TIM_EventSource);
mbed_official 76:aeb1df146756 942 FlagStatus TIM_GetFlagStatus(TIM_TypeDef* TIMx, uint16_t TIM_FLAG);
mbed_official 76:aeb1df146756 943 void TIM_ClearFlag(TIM_TypeDef* TIMx, uint16_t TIM_FLAG);
mbed_official 76:aeb1df146756 944 ITStatus TIM_GetITStatus(TIM_TypeDef* TIMx, uint16_t TIM_IT);
mbed_official 76:aeb1df146756 945 void TIM_ClearITPendingBit(TIM_TypeDef* TIMx, uint16_t TIM_IT);
mbed_official 76:aeb1df146756 946 void TIM_DMAConfig(TIM_TypeDef* TIMx, uint16_t TIM_DMABase, uint16_t TIM_DMABurstLength);
mbed_official 76:aeb1df146756 947 void TIM_DMACmd(TIM_TypeDef* TIMx, uint16_t TIM_DMASource, FunctionalState NewState);
mbed_official 76:aeb1df146756 948 void TIM_SelectCCDMA(TIM_TypeDef* TIMx, FunctionalState NewState);
mbed_official 76:aeb1df146756 949
mbed_official 76:aeb1df146756 950 /* Clocks management **********************************************************/
mbed_official 76:aeb1df146756 951 void TIM_InternalClockConfig(TIM_TypeDef* TIMx);
mbed_official 76:aeb1df146756 952 void TIM_ITRxExternalClockConfig(TIM_TypeDef* TIMx, uint16_t TIM_InputTriggerSource);
mbed_official 76:aeb1df146756 953 void TIM_TIxExternalClockConfig(TIM_TypeDef* TIMx, uint16_t TIM_TIxExternalCLKSource,
mbed_official 76:aeb1df146756 954 uint16_t TIM_ICPolarity, uint16_t ICFilter);
mbed_official 76:aeb1df146756 955 void TIM_ETRClockMode1Config(TIM_TypeDef* TIMx, uint16_t TIM_ExtTRGPrescaler, uint16_t TIM_ExtTRGPolarity,
mbed_official 76:aeb1df146756 956 uint16_t ExtTRGFilter);
mbed_official 76:aeb1df146756 957 void TIM_ETRClockMode2Config(TIM_TypeDef* TIMx, uint16_t TIM_ExtTRGPrescaler,
mbed_official 76:aeb1df146756 958 uint16_t TIM_ExtTRGPolarity, uint16_t ExtTRGFilter);
mbed_official 76:aeb1df146756 959
mbed_official 76:aeb1df146756 960
mbed_official 76:aeb1df146756 961 /* Synchronization management *************************************************/
mbed_official 76:aeb1df146756 962 void TIM_SelectInputTrigger(TIM_TypeDef* TIMx, uint16_t TIM_InputTriggerSource);
mbed_official 76:aeb1df146756 963 void TIM_SelectOutputTrigger(TIM_TypeDef* TIMx, uint16_t TIM_TRGOSource);
mbed_official 76:aeb1df146756 964 void TIM_SelectSlaveMode(TIM_TypeDef* TIMx, uint16_t TIM_SlaveMode);
mbed_official 76:aeb1df146756 965 void TIM_SelectMasterSlaveMode(TIM_TypeDef* TIMx, uint16_t TIM_MasterSlaveMode);
mbed_official 76:aeb1df146756 966 void TIM_ETRConfig(TIM_TypeDef* TIMx, uint16_t TIM_ExtTRGPrescaler, uint16_t TIM_ExtTRGPolarity,
mbed_official 76:aeb1df146756 967 uint16_t ExtTRGFilter);
mbed_official 76:aeb1df146756 968
mbed_official 76:aeb1df146756 969 /* Specific interface management **********************************************/
mbed_official 76:aeb1df146756 970 void TIM_EncoderInterfaceConfig(TIM_TypeDef* TIMx, uint16_t TIM_EncoderMode,
mbed_official 76:aeb1df146756 971 uint16_t TIM_IC1Polarity, uint16_t TIM_IC2Polarity);
mbed_official 76:aeb1df146756 972 void TIM_SelectHallSensor(TIM_TypeDef* TIMx, FunctionalState NewState);
mbed_official 76:aeb1df146756 973
mbed_official 76:aeb1df146756 974 /* Specific remapping management **********************************************/
mbed_official 76:aeb1df146756 975 void TIM_RemapConfig(TIM_TypeDef* TIMx, uint32_t TIM_Remap);
mbed_official 76:aeb1df146756 976
mbed_official 76:aeb1df146756 977
mbed_official 76:aeb1df146756 978 #ifdef __cplusplus
mbed_official 76:aeb1df146756 979 }
mbed_official 76:aeb1df146756 980 #endif
mbed_official 76:aeb1df146756 981
mbed_official 76:aeb1df146756 982 #endif /*__STM32L1xx_TIM_H */
mbed_official 76:aeb1df146756 983
mbed_official 76:aeb1df146756 984 /**
mbed_official 76:aeb1df146756 985 * @}
mbed_official 76:aeb1df146756 986 */
mbed_official 76:aeb1df146756 987
mbed_official 76:aeb1df146756 988 /**
mbed_official 76:aeb1df146756 989 * @}
mbed_official 76:aeb1df146756 990 */
mbed_official 76:aeb1df146756 991
mbed_official 76:aeb1df146756 992 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/